From 418c54c0634313a2a9a1f27b62caacca993d17b4 Mon Sep 17 00:00:00 2001 From: Mark Skelton Date: Fri, 6 Jan 2023 22:43:12 -0600 Subject: [PATCH] Support `input` storage class --- grammar.js | 4 +- src/grammar.json | 39 +- src/node-types.json | 4 + src/parser.c | 609891 ++++++++++++++++++++-------------------- test/corpus/mql5.txt | 14 + 5 files changed, 305833 insertions(+), 304119 deletions(-) create mode 100644 test/corpus/mql5.txt diff --git a/grammar.js b/grammar.js index 4c0c5bb..96ed610 100644 --- a/grammar.js +++ b/grammar.js @@ -2,5 +2,7 @@ const CPP = require("tree-sitter-cpp/grammar") module.exports = grammar(CPP, { name: "mql5", - rules: {}, + rules: { + storage_class_specifier: ($, original) => choice(original, "input"), + }, }) diff --git a/src/grammar.json b/src/grammar.json index 2a0cdcf..ec60913 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3388,24 +3388,33 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "extern" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "extern" + }, + { + "type": "STRING", + "value": "static" + }, + { + "type": "STRING", + "value": "register" + }, + { + "type": "STRING", + "value": "inline" + }, + { + "type": "STRING", + "value": "thread_local" + } + ] }, { "type": "STRING", - "value": "static" - }, - { - "type": "STRING", - "value": "register" - }, - { - "type": "STRING", - "value": "inline" - }, - { - "type": "STRING", - "value": "thread_local" + "value": "input" } ] }, diff --git a/src/node-types.json b/src/node-types.json index 154f399..fa116ec 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -6587,6 +6587,10 @@ "type": "inline", "named": false }, + { + "type": "input", + "named": false + }, { "type": "literal_suffix", "named": true diff --git a/src/parser.c b/src/parser.c index 8d2a538..5c7463e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,10 +15,10 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 7231 -#define LARGE_STATE_COUNT 1812 -#define SYMBOL_COUNT 438 +#define LARGE_STATE_COUNT 1813 +#define SYMBOL_COUNT 439 #define ALIAS_COUNT 5 -#define TOKEN_COUNT 188 +#define TOKEN_COUNT 189 #define EXTERNAL_TOKEN_COUNT 2 #define FIELD_COUNT 38 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -92,381 +92,382 @@ enum { anon_sym_register = 65, anon_sym_inline = 66, anon_sym_thread_local = 67, - anon_sym_const = 68, - anon_sym_volatile = 69, - anon_sym_restrict = 70, - anon_sym__Atomic = 71, - anon_sym_mutable = 72, - anon_sym_constexpr = 73, - anon_sym_constinit = 74, - anon_sym_consteval = 75, - anon_sym_signed = 76, - anon_sym_unsigned = 77, - anon_sym_long = 78, - anon_sym_short = 79, - sym_primitive_type = 80, - anon_sym_enum = 81, - anon_sym_class = 82, - anon_sym_struct = 83, - anon_sym_union = 84, - anon_sym_COLON = 85, - anon_sym_if = 86, - anon_sym_else = 87, - anon_sym_switch = 88, - anon_sym_case = 89, - anon_sym_default = 90, - anon_sym_while = 91, - anon_sym_do = 92, - anon_sym_for = 93, - anon_sym_return = 94, - anon_sym_break = 95, - anon_sym_continue = 96, - anon_sym_goto = 97, - anon_sym_QMARK = 98, - anon_sym_STAR_EQ = 99, - anon_sym_SLASH_EQ = 100, - anon_sym_PERCENT_EQ = 101, - anon_sym_PLUS_EQ = 102, - anon_sym_DASH_EQ = 103, - anon_sym_LT_LT_EQ = 104, - anon_sym_GT_GT_EQ = 105, - anon_sym_AMP_EQ = 106, - anon_sym_CARET_EQ = 107, - anon_sym_PIPE_EQ = 108, - anon_sym_and_eq = 109, - anon_sym_or_eq = 110, - anon_sym_xor_eq = 111, - anon_sym_not = 112, - anon_sym_compl = 113, - anon_sym_LT_EQ_GT = 114, - anon_sym_or = 115, - anon_sym_and = 116, - anon_sym_bitor = 117, - anon_sym_xor = 118, - anon_sym_bitand = 119, - anon_sym_not_eq = 120, - anon_sym_DASH_DASH = 121, - anon_sym_PLUS_PLUS = 122, - anon_sym_sizeof = 123, - anon_sym_DOT = 124, - anon_sym_DASH_GT = 125, - sym_number_literal = 126, - anon_sym_L_SQUOTE = 127, - anon_sym_u_SQUOTE = 128, - anon_sym_U_SQUOTE = 129, - anon_sym_u8_SQUOTE = 130, - anon_sym_SQUOTE = 131, - aux_sym_char_literal_token1 = 132, - anon_sym_L_DQUOTE = 133, - anon_sym_u_DQUOTE = 134, - anon_sym_U_DQUOTE = 135, - anon_sym_u8_DQUOTE = 136, - anon_sym_DQUOTE = 137, - aux_sym_string_literal_token1 = 138, - sym_escape_sequence = 139, - sym_system_lib_string = 140, - sym_true = 141, - sym_false = 142, - sym_null = 143, - sym_comment = 144, - sym_auto = 145, - anon_sym_decltype = 146, - anon_sym_final = 147, - anon_sym_override = 148, - anon_sym_virtual = 149, - anon_sym_explicit = 150, - anon_sym_public = 151, - anon_sym_private = 152, - anon_sym_protected = 153, - anon_sym_typename = 154, - anon_sym_template = 155, - anon_sym_GT2 = 156, - anon_sym_operator = 157, - anon_sym_try = 158, - anon_sym_delete = 159, - anon_sym_friend = 160, - anon_sym_noexcept = 161, - anon_sym_throw = 162, - anon_sym_namespace = 163, - anon_sym_using = 164, - anon_sym_static_assert = 165, - anon_sym_concept = 166, - anon_sym_co_return = 167, - anon_sym_co_yield = 168, - anon_sym_catch = 169, - anon_sym_R_DQUOTE = 170, - anon_sym_LR_DQUOTE = 171, - anon_sym_uR_DQUOTE = 172, - anon_sym_UR_DQUOTE = 173, - anon_sym_u8R_DQUOTE = 174, - anon_sym_co_await = 175, - anon_sym_new = 176, - anon_sym_requires = 177, - anon_sym_DOT_STAR = 178, - anon_sym_DASH_GT_STAR = 179, - anon_sym_LPAREN_RPAREN = 180, - anon_sym_LBRACK_RBRACK = 181, - anon_sym_DQUOTE_DQUOTE = 182, - sym_this = 183, - sym_nullptr = 184, - sym_literal_suffix = 185, - sym_raw_string_delimiter = 186, - sym_raw_string_content = 187, - sym_translation_unit = 188, - sym_preproc_include = 189, - sym_preproc_def = 190, - sym_preproc_function_def = 191, - sym_preproc_params = 192, - sym_preproc_call = 193, - sym_preproc_if = 194, - sym_preproc_ifdef = 195, - sym_preproc_else = 196, - sym_preproc_elif = 197, - sym_preproc_if_in_field_declaration_list = 198, - sym_preproc_ifdef_in_field_declaration_list = 199, - sym_preproc_else_in_field_declaration_list = 200, - sym_preproc_elif_in_field_declaration_list = 201, - sym__preproc_expression = 202, - sym_preproc_parenthesized_expression = 203, - sym_preproc_defined = 204, - sym_preproc_unary_expression = 205, - sym_preproc_call_expression = 206, - sym_preproc_argument_list = 207, - sym_preproc_binary_expression = 208, - sym_function_definition = 209, - sym_declaration = 210, - sym_type_definition = 211, - sym__declaration_modifiers = 212, - sym__declaration_specifiers = 213, - sym_linkage_specification = 214, - sym_attribute_specifier = 215, - sym_attribute = 216, - sym_attribute_declaration = 217, - sym_ms_declspec_modifier = 218, - sym_ms_based_modifier = 219, - sym_ms_call_modifier = 220, - sym_ms_unaligned_ptr_modifier = 221, - sym_ms_pointer_modifier = 222, - sym_declaration_list = 223, - sym__declarator = 224, - sym__field_declarator = 225, - sym__type_declarator = 226, - sym__abstract_declarator = 227, - sym_parenthesized_declarator = 228, - sym_parenthesized_field_declarator = 229, - sym_parenthesized_type_declarator = 230, - sym_abstract_parenthesized_declarator = 231, - sym_attributed_declarator = 232, - sym_attributed_field_declarator = 233, - sym_attributed_type_declarator = 234, - sym_pointer_declarator = 235, - sym_pointer_field_declarator = 236, - sym_pointer_type_declarator = 237, - sym_abstract_pointer_declarator = 238, - sym_function_declarator = 239, - sym_function_field_declarator = 240, - sym_function_type_declarator = 241, - sym_abstract_function_declarator = 242, - sym_array_declarator = 243, - sym_array_field_declarator = 244, - sym_array_type_declarator = 245, - sym_abstract_array_declarator = 246, - sym_init_declarator = 247, - sym_compound_statement = 248, - sym_storage_class_specifier = 249, - sym_type_qualifier = 250, - sym__type_specifier = 251, - sym_sized_type_specifier = 252, - sym_enum_specifier = 253, - sym_enumerator_list = 254, - sym_struct_specifier = 255, - sym_union_specifier = 256, - sym_field_declaration_list = 257, - sym__field_declaration_list_item = 258, - sym_field_declaration = 259, - sym_bitfield_clause = 260, - sym_enumerator = 261, - sym_parameter_list = 262, - sym_parameter_declaration = 263, - sym_attributed_statement = 264, - sym_labeled_statement = 265, - sym_expression_statement = 266, - sym_if_statement = 267, - sym_switch_statement = 268, - sym_case_statement = 269, - sym_while_statement = 270, - sym_do_statement = 271, - sym_for_statement = 272, - sym_return_statement = 273, - sym_break_statement = 274, - sym_continue_statement = 275, - sym_goto_statement = 276, - sym__expression = 277, - sym_comma_expression = 278, - sym_conditional_expression = 279, - sym_assignment_expression = 280, - sym_pointer_expression = 281, - sym_unary_expression = 282, - sym_binary_expression = 283, - sym_update_expression = 284, - sym_cast_expression = 285, - sym_type_descriptor = 286, - sym_sizeof_expression = 287, - sym_subscript_expression = 288, - sym_call_expression = 289, - sym_argument_list = 290, - sym_field_expression = 291, - sym_compound_literal_expression = 292, - sym_parenthesized_expression = 293, - sym_initializer_list = 294, - sym_initializer_pair = 295, - sym_subscript_designator = 296, - sym_field_designator = 297, - sym_char_literal = 298, - sym_concatenated_string = 299, - sym_string_literal = 300, - sym__empty_declaration = 301, - sym_placeholder_type_specifier = 302, - sym_decltype_auto = 303, - sym_decltype = 304, - sym_class_specifier = 305, - sym__class_name = 306, - sym_virtual_specifier = 307, - sym_virtual_function_specifier = 308, - sym_explicit_function_specifier = 309, - sym_base_class_clause = 310, - sym__enum_base_clause = 311, - sym_dependent_type = 312, - sym_template_declaration = 313, - sym_template_instantiation = 314, - sym_template_parameter_list = 315, - sym_type_parameter_declaration = 316, - sym_variadic_type_parameter_declaration = 317, - sym_optional_type_parameter_declaration = 318, - sym_template_template_parameter_declaration = 319, - sym_optional_parameter_declaration = 320, - sym_variadic_parameter_declaration = 321, - sym_variadic_declarator = 322, - sym_variadic_reference_declarator = 323, - sym_operator_cast = 324, - sym_field_initializer_list = 325, - sym_field_initializer = 326, - sym_inline_method_definition = 327, - sym__constructor_specifiers = 328, - sym_operator_cast_definition = 329, - sym_operator_cast_declaration = 330, - sym_constructor_try_statement = 331, - sym_constructor_or_destructor_definition = 332, - sym_constructor_or_destructor_declaration = 333, - sym_default_method_clause = 334, - sym_delete_method_clause = 335, - sym_friend_declaration = 336, - sym_access_specifier = 337, - sym_reference_declarator = 338, - sym_reference_field_declarator = 339, - sym_abstract_reference_declarator = 340, - sym_structured_binding_declarator = 341, - sym_ref_qualifier = 342, - sym_trailing_return_type = 343, - sym_noexcept = 344, - sym_throw_specifier = 345, - sym_template_type = 346, - sym_template_method = 347, - sym_template_function = 348, - sym_template_argument_list = 349, - sym_namespace_definition = 350, - sym_namespace_alias_definition = 351, - sym_namespace_definition_name = 352, - sym_using_declaration = 353, - sym_alias_declaration = 354, - sym_static_assert_declaration = 355, - sym_concept_definition = 356, - sym_for_range_loop = 357, - sym_init_statement = 358, - sym_condition_clause = 359, - sym_condition_declaration = 360, - sym_co_return_statement = 361, - sym_co_yield_statement = 362, - sym_throw_statement = 363, - sym_try_statement = 364, - sym_catch_clause = 365, - sym_raw_string_literal = 366, - sym_co_await_expression = 367, - sym_new_expression = 368, - sym_new_declarator = 369, - sym_delete_expression = 370, - sym_type_requirement = 371, - sym_compound_requirement = 372, - sym__requirement = 373, - sym_requirement_seq = 374, - sym_constraint_conjunction = 375, - sym_constraint_disjunction = 376, - sym__requirement_clause_constraint = 377, - sym_requires_clause = 378, - sym_requires_parameter_list = 379, - sym_requires_expression = 380, - sym_lambda_expression = 381, - sym_lambda_capture_specifier = 382, - sym_lambda_default_capture = 383, - sym__fold_operator = 384, - sym__binary_fold_operator = 385, - sym__unary_left_fold = 386, - sym__unary_right_fold = 387, - sym__binary_fold = 388, - sym_fold_expression = 389, - sym_parameter_pack_expansion = 390, - sym_type_parameter_pack_expansion = 391, - sym_destructor_name = 392, - sym_dependent_identifier = 393, - sym_dependent_field_identifier = 394, - sym_dependent_type_identifier = 395, - sym__scope_resolution = 396, - sym_qualified_field_identifier = 397, - sym_qualified_identifier = 398, - sym_qualified_type_identifier = 399, - sym_qualified_operator_cast_identifier = 400, - sym_operator_name = 401, - sym_user_defined_literal = 402, - aux_sym_translation_unit_repeat1 = 403, - aux_sym_preproc_params_repeat1 = 404, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 405, - aux_sym_preproc_argument_list_repeat1 = 406, - aux_sym_declaration_repeat1 = 407, - aux_sym_type_definition_repeat1 = 408, - aux_sym_type_definition_repeat2 = 409, - aux_sym__declaration_specifiers_repeat1 = 410, - aux_sym_attribute_declaration_repeat1 = 411, - aux_sym_attributed_declarator_repeat1 = 412, - aux_sym_pointer_declarator_repeat1 = 413, - aux_sym_function_declarator_repeat1 = 414, - aux_sym_function_declarator_repeat2 = 415, - aux_sym_abstract_function_declarator_repeat1 = 416, - aux_sym_sized_type_specifier_repeat1 = 417, - aux_sym_enumerator_list_repeat1 = 418, - aux_sym_field_declaration_repeat1 = 419, - aux_sym_parameter_list_repeat1 = 420, - aux_sym_case_statement_repeat1 = 421, - aux_sym_argument_list_repeat1 = 422, - aux_sym_initializer_list_repeat1 = 423, - aux_sym_initializer_pair_repeat1 = 424, - aux_sym_concatenated_string_repeat1 = 425, - aux_sym_string_literal_repeat1 = 426, - aux_sym_base_class_clause_repeat1 = 427, - aux_sym_template_parameter_list_repeat1 = 428, - aux_sym_field_initializer_list_repeat1 = 429, - aux_sym_operator_cast_definition_repeat1 = 430, - aux_sym_constructor_try_statement_repeat1 = 431, - aux_sym_structured_binding_declarator_repeat1 = 432, - aux_sym_throw_specifier_repeat1 = 433, - aux_sym_template_argument_list_repeat1 = 434, - aux_sym_requirement_seq_repeat1 = 435, - aux_sym_requires_parameter_list_repeat1 = 436, - aux_sym_lambda_capture_specifier_repeat1 = 437, - alias_sym_field_identifier = 438, - alias_sym_namespace_identifier = 439, - alias_sym_simple_requirement = 440, - alias_sym_statement_identifier = 441, - alias_sym_type_identifier = 442, + anon_sym_input = 68, + anon_sym_const = 69, + anon_sym_volatile = 70, + anon_sym_restrict = 71, + anon_sym__Atomic = 72, + anon_sym_mutable = 73, + anon_sym_constexpr = 74, + anon_sym_constinit = 75, + anon_sym_consteval = 76, + anon_sym_signed = 77, + anon_sym_unsigned = 78, + anon_sym_long = 79, + anon_sym_short = 80, + sym_primitive_type = 81, + anon_sym_enum = 82, + anon_sym_class = 83, + anon_sym_struct = 84, + anon_sym_union = 85, + anon_sym_COLON = 86, + anon_sym_if = 87, + anon_sym_else = 88, + anon_sym_switch = 89, + anon_sym_case = 90, + anon_sym_default = 91, + anon_sym_while = 92, + anon_sym_do = 93, + anon_sym_for = 94, + anon_sym_return = 95, + anon_sym_break = 96, + anon_sym_continue = 97, + anon_sym_goto = 98, + anon_sym_QMARK = 99, + anon_sym_STAR_EQ = 100, + anon_sym_SLASH_EQ = 101, + anon_sym_PERCENT_EQ = 102, + anon_sym_PLUS_EQ = 103, + anon_sym_DASH_EQ = 104, + anon_sym_LT_LT_EQ = 105, + anon_sym_GT_GT_EQ = 106, + anon_sym_AMP_EQ = 107, + anon_sym_CARET_EQ = 108, + anon_sym_PIPE_EQ = 109, + anon_sym_and_eq = 110, + anon_sym_or_eq = 111, + anon_sym_xor_eq = 112, + anon_sym_not = 113, + anon_sym_compl = 114, + anon_sym_LT_EQ_GT = 115, + anon_sym_or = 116, + anon_sym_and = 117, + anon_sym_bitor = 118, + anon_sym_xor = 119, + anon_sym_bitand = 120, + anon_sym_not_eq = 121, + anon_sym_DASH_DASH = 122, + anon_sym_PLUS_PLUS = 123, + anon_sym_sizeof = 124, + anon_sym_DOT = 125, + anon_sym_DASH_GT = 126, + sym_number_literal = 127, + anon_sym_L_SQUOTE = 128, + anon_sym_u_SQUOTE = 129, + anon_sym_U_SQUOTE = 130, + anon_sym_u8_SQUOTE = 131, + anon_sym_SQUOTE = 132, + aux_sym_char_literal_token1 = 133, + anon_sym_L_DQUOTE = 134, + anon_sym_u_DQUOTE = 135, + anon_sym_U_DQUOTE = 136, + anon_sym_u8_DQUOTE = 137, + anon_sym_DQUOTE = 138, + aux_sym_string_literal_token1 = 139, + sym_escape_sequence = 140, + sym_system_lib_string = 141, + sym_true = 142, + sym_false = 143, + sym_null = 144, + sym_comment = 145, + sym_auto = 146, + anon_sym_decltype = 147, + anon_sym_final = 148, + anon_sym_override = 149, + anon_sym_virtual = 150, + anon_sym_explicit = 151, + anon_sym_public = 152, + anon_sym_private = 153, + anon_sym_protected = 154, + anon_sym_typename = 155, + anon_sym_template = 156, + anon_sym_GT2 = 157, + anon_sym_operator = 158, + anon_sym_try = 159, + anon_sym_delete = 160, + anon_sym_friend = 161, + anon_sym_noexcept = 162, + anon_sym_throw = 163, + anon_sym_namespace = 164, + anon_sym_using = 165, + anon_sym_static_assert = 166, + anon_sym_concept = 167, + anon_sym_co_return = 168, + anon_sym_co_yield = 169, + anon_sym_catch = 170, + anon_sym_R_DQUOTE = 171, + anon_sym_LR_DQUOTE = 172, + anon_sym_uR_DQUOTE = 173, + anon_sym_UR_DQUOTE = 174, + anon_sym_u8R_DQUOTE = 175, + anon_sym_co_await = 176, + anon_sym_new = 177, + anon_sym_requires = 178, + anon_sym_DOT_STAR = 179, + anon_sym_DASH_GT_STAR = 180, + anon_sym_LPAREN_RPAREN = 181, + anon_sym_LBRACK_RBRACK = 182, + anon_sym_DQUOTE_DQUOTE = 183, + sym_this = 184, + sym_nullptr = 185, + sym_literal_suffix = 186, + sym_raw_string_delimiter = 187, + sym_raw_string_content = 188, + sym_translation_unit = 189, + sym_preproc_include = 190, + sym_preproc_def = 191, + sym_preproc_function_def = 192, + sym_preproc_params = 193, + sym_preproc_call = 194, + sym_preproc_if = 195, + sym_preproc_ifdef = 196, + sym_preproc_else = 197, + sym_preproc_elif = 198, + sym_preproc_if_in_field_declaration_list = 199, + sym_preproc_ifdef_in_field_declaration_list = 200, + sym_preproc_else_in_field_declaration_list = 201, + sym_preproc_elif_in_field_declaration_list = 202, + sym__preproc_expression = 203, + sym_preproc_parenthesized_expression = 204, + sym_preproc_defined = 205, + sym_preproc_unary_expression = 206, + sym_preproc_call_expression = 207, + sym_preproc_argument_list = 208, + sym_preproc_binary_expression = 209, + sym_function_definition = 210, + sym_declaration = 211, + sym_type_definition = 212, + sym__declaration_modifiers = 213, + sym__declaration_specifiers = 214, + sym_linkage_specification = 215, + sym_attribute_specifier = 216, + sym_attribute = 217, + sym_attribute_declaration = 218, + sym_ms_declspec_modifier = 219, + sym_ms_based_modifier = 220, + sym_ms_call_modifier = 221, + sym_ms_unaligned_ptr_modifier = 222, + sym_ms_pointer_modifier = 223, + sym_declaration_list = 224, + sym__declarator = 225, + sym__field_declarator = 226, + sym__type_declarator = 227, + sym__abstract_declarator = 228, + sym_parenthesized_declarator = 229, + sym_parenthesized_field_declarator = 230, + sym_parenthesized_type_declarator = 231, + sym_abstract_parenthesized_declarator = 232, + sym_attributed_declarator = 233, + sym_attributed_field_declarator = 234, + sym_attributed_type_declarator = 235, + sym_pointer_declarator = 236, + sym_pointer_field_declarator = 237, + sym_pointer_type_declarator = 238, + sym_abstract_pointer_declarator = 239, + sym_function_declarator = 240, + sym_function_field_declarator = 241, + sym_function_type_declarator = 242, + sym_abstract_function_declarator = 243, + sym_array_declarator = 244, + sym_array_field_declarator = 245, + sym_array_type_declarator = 246, + sym_abstract_array_declarator = 247, + sym_init_declarator = 248, + sym_compound_statement = 249, + sym_storage_class_specifier = 250, + sym_type_qualifier = 251, + sym__type_specifier = 252, + sym_sized_type_specifier = 253, + sym_enum_specifier = 254, + sym_enumerator_list = 255, + sym_struct_specifier = 256, + sym_union_specifier = 257, + sym_field_declaration_list = 258, + sym__field_declaration_list_item = 259, + sym_field_declaration = 260, + sym_bitfield_clause = 261, + sym_enumerator = 262, + sym_parameter_list = 263, + sym_parameter_declaration = 264, + sym_attributed_statement = 265, + sym_labeled_statement = 266, + sym_expression_statement = 267, + sym_if_statement = 268, + sym_switch_statement = 269, + sym_case_statement = 270, + sym_while_statement = 271, + sym_do_statement = 272, + sym_for_statement = 273, + sym_return_statement = 274, + sym_break_statement = 275, + sym_continue_statement = 276, + sym_goto_statement = 277, + sym__expression = 278, + sym_comma_expression = 279, + sym_conditional_expression = 280, + sym_assignment_expression = 281, + sym_pointer_expression = 282, + sym_unary_expression = 283, + sym_binary_expression = 284, + sym_update_expression = 285, + sym_cast_expression = 286, + sym_type_descriptor = 287, + sym_sizeof_expression = 288, + sym_subscript_expression = 289, + sym_call_expression = 290, + sym_argument_list = 291, + sym_field_expression = 292, + sym_compound_literal_expression = 293, + sym_parenthesized_expression = 294, + sym_initializer_list = 295, + sym_initializer_pair = 296, + sym_subscript_designator = 297, + sym_field_designator = 298, + sym_char_literal = 299, + sym_concatenated_string = 300, + sym_string_literal = 301, + sym__empty_declaration = 302, + sym_placeholder_type_specifier = 303, + sym_decltype_auto = 304, + sym_decltype = 305, + sym_class_specifier = 306, + sym__class_name = 307, + sym_virtual_specifier = 308, + sym_virtual_function_specifier = 309, + sym_explicit_function_specifier = 310, + sym_base_class_clause = 311, + sym__enum_base_clause = 312, + sym_dependent_type = 313, + sym_template_declaration = 314, + sym_template_instantiation = 315, + sym_template_parameter_list = 316, + sym_type_parameter_declaration = 317, + sym_variadic_type_parameter_declaration = 318, + sym_optional_type_parameter_declaration = 319, + sym_template_template_parameter_declaration = 320, + sym_optional_parameter_declaration = 321, + sym_variadic_parameter_declaration = 322, + sym_variadic_declarator = 323, + sym_variadic_reference_declarator = 324, + sym_operator_cast = 325, + sym_field_initializer_list = 326, + sym_field_initializer = 327, + sym_inline_method_definition = 328, + sym__constructor_specifiers = 329, + sym_operator_cast_definition = 330, + sym_operator_cast_declaration = 331, + sym_constructor_try_statement = 332, + sym_constructor_or_destructor_definition = 333, + sym_constructor_or_destructor_declaration = 334, + sym_default_method_clause = 335, + sym_delete_method_clause = 336, + sym_friend_declaration = 337, + sym_access_specifier = 338, + sym_reference_declarator = 339, + sym_reference_field_declarator = 340, + sym_abstract_reference_declarator = 341, + sym_structured_binding_declarator = 342, + sym_ref_qualifier = 343, + sym_trailing_return_type = 344, + sym_noexcept = 345, + sym_throw_specifier = 346, + sym_template_type = 347, + sym_template_method = 348, + sym_template_function = 349, + sym_template_argument_list = 350, + sym_namespace_definition = 351, + sym_namespace_alias_definition = 352, + sym_namespace_definition_name = 353, + sym_using_declaration = 354, + sym_alias_declaration = 355, + sym_static_assert_declaration = 356, + sym_concept_definition = 357, + sym_for_range_loop = 358, + sym_init_statement = 359, + sym_condition_clause = 360, + sym_condition_declaration = 361, + sym_co_return_statement = 362, + sym_co_yield_statement = 363, + sym_throw_statement = 364, + sym_try_statement = 365, + sym_catch_clause = 366, + sym_raw_string_literal = 367, + sym_co_await_expression = 368, + sym_new_expression = 369, + sym_new_declarator = 370, + sym_delete_expression = 371, + sym_type_requirement = 372, + sym_compound_requirement = 373, + sym__requirement = 374, + sym_requirement_seq = 375, + sym_constraint_conjunction = 376, + sym_constraint_disjunction = 377, + sym__requirement_clause_constraint = 378, + sym_requires_clause = 379, + sym_requires_parameter_list = 380, + sym_requires_expression = 381, + sym_lambda_expression = 382, + sym_lambda_capture_specifier = 383, + sym_lambda_default_capture = 384, + sym__fold_operator = 385, + sym__binary_fold_operator = 386, + sym__unary_left_fold = 387, + sym__unary_right_fold = 388, + sym__binary_fold = 389, + sym_fold_expression = 390, + sym_parameter_pack_expansion = 391, + sym_type_parameter_pack_expansion = 392, + sym_destructor_name = 393, + sym_dependent_identifier = 394, + sym_dependent_field_identifier = 395, + sym_dependent_type_identifier = 396, + sym__scope_resolution = 397, + sym_qualified_field_identifier = 398, + sym_qualified_identifier = 399, + sym_qualified_type_identifier = 400, + sym_qualified_operator_cast_identifier = 401, + sym_operator_name = 402, + sym_user_defined_literal = 403, + aux_sym_translation_unit_repeat1 = 404, + aux_sym_preproc_params_repeat1 = 405, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 406, + aux_sym_preproc_argument_list_repeat1 = 407, + aux_sym_declaration_repeat1 = 408, + aux_sym_type_definition_repeat1 = 409, + aux_sym_type_definition_repeat2 = 410, + aux_sym__declaration_specifiers_repeat1 = 411, + aux_sym_attribute_declaration_repeat1 = 412, + aux_sym_attributed_declarator_repeat1 = 413, + aux_sym_pointer_declarator_repeat1 = 414, + aux_sym_function_declarator_repeat1 = 415, + aux_sym_function_declarator_repeat2 = 416, + aux_sym_abstract_function_declarator_repeat1 = 417, + aux_sym_sized_type_specifier_repeat1 = 418, + aux_sym_enumerator_list_repeat1 = 419, + aux_sym_field_declaration_repeat1 = 420, + aux_sym_parameter_list_repeat1 = 421, + aux_sym_case_statement_repeat1 = 422, + aux_sym_argument_list_repeat1 = 423, + aux_sym_initializer_list_repeat1 = 424, + aux_sym_initializer_pair_repeat1 = 425, + aux_sym_concatenated_string_repeat1 = 426, + aux_sym_string_literal_repeat1 = 427, + aux_sym_base_class_clause_repeat1 = 428, + aux_sym_template_parameter_list_repeat1 = 429, + aux_sym_field_initializer_list_repeat1 = 430, + aux_sym_operator_cast_definition_repeat1 = 431, + aux_sym_constructor_try_statement_repeat1 = 432, + aux_sym_structured_binding_declarator_repeat1 = 433, + aux_sym_throw_specifier_repeat1 = 434, + aux_sym_template_argument_list_repeat1 = 435, + aux_sym_requirement_seq_repeat1 = 436, + aux_sym_requires_parameter_list_repeat1 = 437, + aux_sym_lambda_capture_specifier_repeat1 = 438, + alias_sym_field_identifier = 439, + alias_sym_namespace_identifier = 440, + alias_sym_simple_requirement = 441, + alias_sym_statement_identifier = 442, + alias_sym_type_identifier = 443, }; static const char * const ts_symbol_names[] = { @@ -538,6 +539,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_register] = "register", [anon_sym_inline] = "inline", [anon_sym_thread_local] = "thread_local", + [anon_sym_input] = "input", [anon_sym_const] = "const", [anon_sym_volatile] = "volatile", [anon_sym_restrict] = "restrict", @@ -984,6 +986,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_register] = anon_sym_register, [anon_sym_inline] = anon_sym_inline, [anon_sym_thread_local] = anon_sym_thread_local, + [anon_sym_input] = anon_sym_input, [anon_sym_const] = anon_sym_const, [anon_sym_volatile] = anon_sym_volatile, [anon_sym_restrict] = anon_sym_restrict, @@ -1634,6 +1637,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_input] = { + .visible = true, + .named = false, + }, [anon_sym_const] = { .visible = true, .named = false, @@ -3952,96 +3959,96 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [9] = 2, [10] = 10, [11] = 11, - [12] = 10, - [13] = 11, + [12] = 12, + [13] = 10, [14] = 14, - [15] = 15, - [16] = 14, - [17] = 14, - [18] = 10, - [19] = 14, - [20] = 11, - [21] = 21, - [22] = 15, - [23] = 10, - [24] = 11, - [25] = 25, - [26] = 15, - [27] = 15, + [15] = 14, + [16] = 16, + [17] = 12, + [18] = 12, + [19] = 10, + [20] = 14, + [21] = 14, + [22] = 16, + [23] = 12, + [24] = 10, + [25] = 16, + [26] = 26, + [27] = 16, [28] = 28, [29] = 29, - [30] = 30, + [30] = 29, [31] = 29, - [32] = 29, - [33] = 33, - [34] = 29, - [35] = 33, - [36] = 29, - [37] = 33, - [38] = 38, - [39] = 33, - [40] = 29, + [32] = 32, + [33] = 29, + [34] = 32, + [35] = 29, + [36] = 32, + [37] = 29, + [38] = 32, + [39] = 29, + [40] = 32, [41] = 29, - [42] = 33, - [43] = 33, - [44] = 44, - [45] = 33, - [46] = 30, - [47] = 29, - [48] = 33, - [49] = 49, - [50] = 28, - [51] = 33, - [52] = 29, - [53] = 29, + [42] = 32, + [43] = 29, + [44] = 32, + [45] = 29, + [46] = 32, + [47] = 47, + [48] = 32, + [49] = 47, + [50] = 29, + [51] = 28, + [52] = 47, + [53] = 53, [54] = 29, - [55] = 28, - [56] = 33, - [57] = 33, - [58] = 29, + [55] = 32, + [56] = 32, + [57] = 32, + [58] = 58, [59] = 29, - [60] = 33, - [61] = 61, - [62] = 33, - [63] = 44, - [64] = 33, - [65] = 44, - [66] = 29, - [67] = 30, - [68] = 29, - [69] = 44, - [70] = 30, - [71] = 33, - [72] = 28, - [73] = 33, - [74] = 29, - [75] = 29, - [76] = 33, + [60] = 29, + [61] = 29, + [62] = 62, + [63] = 32, + [64] = 47, + [65] = 32, + [66] = 32, + [67] = 28, + [68] = 53, + [69] = 53, + [70] = 32, + [71] = 71, + [72] = 29, + [73] = 32, + [74] = 53, + [75] = 28, + [76] = 29, [77] = 77, [78] = 78, [79] = 79, [80] = 80, [81] = 81, - [82] = 78, - [83] = 77, - [84] = 81, + [82] = 77, + [83] = 78, + [84] = 80, [85] = 79, - [86] = 77, - [87] = 80, - [88] = 77, - [89] = 78, - [90] = 80, - [91] = 81, + [86] = 80, + [87] = 78, + [88] = 81, + [89] = 79, + [90] = 78, + [91] = 77, [92] = 81, - [93] = 79, + [93] = 80, [94] = 79, - [95] = 78, - [96] = 80, - [97] = 81, - [98] = 78, - [99] = 79, - [100] = 80, - [101] = 77, + [95] = 77, + [96] = 81, + [97] = 80, + [98] = 81, + [99] = 77, + [100] = 78, + [101] = 79, [102] = 102, [103] = 103, [104] = 103, @@ -4065,226 +4072,226 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [122] = 121, [123] = 123, [124] = 124, - [125] = 123, - [126] = 126, + [125] = 125, + [126] = 123, [127] = 127, - [128] = 124, + [128] = 128, [129] = 129, - [130] = 127, - [131] = 131, - [132] = 121, - [133] = 129, - [134] = 127, - [135] = 123, - [136] = 124, - [137] = 129, + [130] = 125, + [131] = 128, + [132] = 129, + [133] = 128, + [134] = 129, + [135] = 125, + [136] = 123, + [137] = 121, [138] = 121, - [139] = 121, - [140] = 140, + [139] = 139, + [140] = 121, [141] = 141, [142] = 142, [143] = 143, [144] = 144, [145] = 145, [146] = 146, - [147] = 147, - [148] = 148, - [149] = 149, - [150] = 150, - [151] = 151, - [152] = 141, - [153] = 153, + [147] = 146, + [148] = 143, + [149] = 144, + [150] = 145, + [151] = 144, + [152] = 144, + [153] = 145, [154] = 154, [155] = 155, - [156] = 156, + [156] = 144, [157] = 157, - [158] = 158, + [158] = 145, [159] = 159, - [160] = 142, - [161] = 145, - [162] = 162, - [163] = 143, + [160] = 160, + [161] = 161, + [162] = 145, + [163] = 163, [164] = 164, [165] = 165, - [166] = 144, - [167] = 159, - [168] = 147, - [169] = 142, - [170] = 148, + [166] = 166, + [167] = 144, + [168] = 168, + [169] = 169, + [170] = 142, [171] = 171, - [172] = 149, - [173] = 165, - [174] = 171, + [172] = 172, + [173] = 173, + [174] = 141, [175] = 175, - [176] = 150, - [177] = 151, + [176] = 145, + [177] = 177, [178] = 178, - [179] = 141, - [180] = 153, - [181] = 146, - [182] = 157, - [183] = 158, - [184] = 159, - [185] = 142, - [186] = 164, - [187] = 154, - [188] = 155, - [189] = 156, - [190] = 155, - [191] = 154, - [192] = 156, - [193] = 165, - [194] = 147, - [195] = 171, - [196] = 145, - [197] = 165, - [198] = 144, - [199] = 143, - [200] = 175, - [201] = 171, - [202] = 162, - [203] = 178, - [204] = 146, - [205] = 148, - [206] = 149, - [207] = 150, - [208] = 151, - [209] = 141, - [210] = 153, - [211] = 157, - [212] = 158, - [213] = 159, + [179] = 145, + [180] = 144, + [181] = 181, + [182] = 182, + [183] = 146, + [184] = 144, + [185] = 155, + [186] = 145, + [187] = 159, + [188] = 160, + [189] = 161, + [190] = 154, + [191] = 191, + [192] = 144, + [193] = 193, + [194] = 145, + [195] = 191, + [196] = 143, + [197] = 193, + [198] = 139, + [199] = 182, + [200] = 143, + [201] = 193, + [202] = 202, + [203] = 203, + [204] = 191, + [205] = 159, + [206] = 160, + [207] = 161, + [208] = 163, + [209] = 181, + [210] = 178, + [211] = 177, + [212] = 212, + [213] = 163, [214] = 164, - [215] = 164, - [216] = 162, - [217] = 159, - [218] = 158, - [219] = 157, - [220] = 156, - [221] = 155, - [222] = 154, - [223] = 175, - [224] = 146, - [225] = 147, - [226] = 145, - [227] = 144, - [228] = 143, - [229] = 162, - [230] = 178, - [231] = 148, - [232] = 149, - [233] = 150, - [234] = 151, - [235] = 153, - [236] = 157, - [237] = 158, - [238] = 159, - [239] = 142, - [240] = 153, - [241] = 141, - [242] = 151, - [243] = 150, - [244] = 149, - [245] = 165, - [246] = 171, - [247] = 146, - [248] = 175, - [249] = 148, - [250] = 162, - [251] = 143, - [252] = 144, - [253] = 178, - [254] = 145, - [255] = 175, - [256] = 147, - [257] = 178, - [258] = 164, - [259] = 146, - [260] = 154, - [261] = 155, - [262] = 156, - [263] = 263, - [264] = 164, - [265] = 175, - [266] = 171, - [267] = 165, - [268] = 263, - [269] = 156, - [270] = 155, - [271] = 154, - [272] = 147, - [273] = 145, - [274] = 144, - [275] = 263, - [276] = 143, - [277] = 162, - [278] = 263, - [279] = 142, - [280] = 148, - [281] = 263, - [282] = 149, - [283] = 150, - [284] = 151, - [285] = 141, - [286] = 153, - [287] = 157, - [288] = 158, - [289] = 178, - [290] = 290, - [291] = 291, - [292] = 291, - [293] = 140, - [294] = 290, - [295] = 290, - [296] = 291, - [297] = 291, - [298] = 290, - [299] = 299, - [300] = 291, - [301] = 290, - [302] = 140, - [303] = 303, - [304] = 304, - [305] = 291, - [306] = 306, - [307] = 291, - [308] = 290, - [309] = 291, - [310] = 290, - [311] = 290, - [312] = 291, - [313] = 290, + [215] = 165, + [216] = 168, + [217] = 169, + [218] = 175, + [219] = 173, + [220] = 172, + [221] = 171, + [222] = 171, + [223] = 172, + [224] = 154, + [225] = 173, + [226] = 141, + [227] = 175, + [228] = 142, + [229] = 169, + [230] = 168, + [231] = 165, + [232] = 161, + [233] = 160, + [234] = 159, + [235] = 143, + [236] = 177, + [237] = 163, + [238] = 164, + [239] = 178, + [240] = 165, + [241] = 168, + [242] = 169, + [243] = 193, + [244] = 191, + [245] = 142, + [246] = 181, + [247] = 154, + [248] = 171, + [249] = 172, + [250] = 173, + [251] = 164, + [252] = 141, + [253] = 175, + [254] = 155, + [255] = 146, + [256] = 202, + [257] = 182, + [258] = 182, + [259] = 202, + [260] = 177, + [261] = 178, + [262] = 159, + [263] = 160, + [264] = 181, + [265] = 193, + [266] = 191, + [267] = 154, + [268] = 161, + [269] = 181, + [270] = 178, + [271] = 177, + [272] = 202, + [273] = 146, + [274] = 182, + [275] = 175, + [276] = 141, + [277] = 139, + [278] = 173, + [279] = 181, + [280] = 155, + [281] = 172, + [282] = 171, + [283] = 178, + [284] = 142, + [285] = 169, + [286] = 168, + [287] = 165, + [288] = 177, + [289] = 164, + [290] = 182, + [291] = 163, + [292] = 161, + [293] = 160, + [294] = 202, + [295] = 159, + [296] = 143, + [297] = 146, + [298] = 163, + [299] = 155, + [300] = 175, + [301] = 141, + [302] = 155, + [303] = 164, + [304] = 173, + [305] = 172, + [306] = 171, + [307] = 165, + [308] = 168, + [309] = 169, + [310] = 142, + [311] = 154, + [312] = 193, + [313] = 191, [314] = 314, [315] = 315, - [316] = 314, - [317] = 315, + [316] = 316, + [317] = 317, [318] = 318, - [319] = 314, - [320] = 315, - [321] = 314, - [322] = 314, - [323] = 315, - [324] = 314, - [325] = 314, - [326] = 315, - [327] = 314, - [328] = 315, - [329] = 315, - [330] = 330, - [331] = 315, - [332] = 315, - [333] = 314, - [334] = 334, - [335] = 335, - [336] = 318, - [337] = 330, - [338] = 330, - [339] = 306, - [340] = 340, - [341] = 318, - [342] = 330, - [343] = 303, - [344] = 318, + [319] = 317, + [320] = 317, + [321] = 317, + [322] = 317, + [323] = 316, + [324] = 316, + [325] = 317, + [326] = 316, + [327] = 316, + [328] = 328, + [329] = 317, + [330] = 316, + [331] = 316, + [332] = 317, + [333] = 317, + [334] = 316, + [335] = 316, + [336] = 315, + [337] = 337, + [338] = 315, + [339] = 166, + [340] = 314, + [341] = 314, + [342] = 315, + [343] = 157, + [344] = 314, [345] = 345, [346] = 346, [347] = 347, @@ -4292,16 +4299,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [349] = 349, [350] = 350, [351] = 351, - [352] = 352, + [352] = 318, [353] = 353, [354] = 354, - [355] = 355, + [355] = 328, [356] = 356, [357] = 357, [358] = 358, [359] = 359, [360] = 360, - [361] = 361, + [361] = 318, [362] = 362, [363] = 363, [364] = 364, @@ -4323,53 +4330,53 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [380] = 380, [381] = 381, [382] = 382, - [383] = 378, + [383] = 383, [384] = 384, [385] = 385, - [386] = 378, + [386] = 386, [387] = 387, [388] = 388, [389] = 389, - [390] = 334, + [390] = 390, [391] = 391, [392] = 392, [393] = 393, [394] = 394, [395] = 395, - [396] = 396, + [396] = 328, [397] = 397, [398] = 398, [399] = 399, [400] = 400, - [401] = 378, - [402] = 335, + [401] = 401, + [402] = 402, [403] = 403, - [404] = 378, - [405] = 405, - [406] = 378, + [404] = 404, + [405] = 318, + [406] = 406, [407] = 407, - [408] = 378, - [409] = 378, + [408] = 408, + [409] = 409, [410] = 410, - [411] = 378, + [411] = 411, [412] = 412, [413] = 413, - [414] = 378, + [414] = 414, [415] = 415, - [416] = 334, + [416] = 416, [417] = 417, [418] = 418, [419] = 419, - [420] = 378, + [420] = 420, [421] = 421, - [422] = 335, + [422] = 422, [423] = 423, [424] = 424, [425] = 425, [426] = 426, [427] = 427, [428] = 428, - [429] = 378, + [429] = 429, [430] = 430, [431] = 431, [432] = 432, @@ -4382,19 +4389,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [439] = 439, [440] = 440, [441] = 441, - [442] = 378, + [442] = 442, [443] = 443, [444] = 444, [445] = 445, - [446] = 334, + [446] = 446, [447] = 447, [448] = 448, - [449] = 378, + [449] = 449, [450] = 450, [451] = 451, [452] = 452, [453] = 453, - [454] = 454, + [454] = 328, [455] = 455, [456] = 456, [457] = 457, @@ -4402,22 +4409,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [459] = 459, [460] = 460, [461] = 461, - [462] = 378, + [462] = 462, [463] = 463, - [464] = 378, + [464] = 464, [465] = 465, [466] = 466, [467] = 467, [468] = 468, [469] = 469, - [470] = 470, - [471] = 471, + [470] = 469, + [471] = 469, [472] = 472, - [473] = 473, + [473] = 469, [474] = 474, [475] = 475, [476] = 476, - [477] = 335, + [477] = 477, [478] = 478, [479] = 479, [480] = 480, @@ -4441,7 +4448,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [498] = 498, [499] = 499, [500] = 500, - [501] = 501, + [501] = 469, [502] = 502, [503] = 503, [504] = 504, @@ -4455,580 +4462,580 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [512] = 512, [513] = 513, [514] = 514, - [515] = 306, + [515] = 515, [516] = 516, [517] = 517, [518] = 518, [519] = 519, [520] = 520, - [521] = 340, - [522] = 306, + [521] = 521, + [522] = 522, [523] = 523, - [524] = 524, + [524] = 337, [525] = 525, - [526] = 303, + [526] = 157, [527] = 527, - [528] = 528, - [529] = 529, - [530] = 530, - [531] = 531, - [532] = 532, - [533] = 533, - [534] = 534, - [535] = 340, - [536] = 303, - [537] = 537, - [538] = 340, - [539] = 539, - [540] = 540, - [541] = 541, - [542] = 542, - [543] = 543, - [544] = 544, - [545] = 366, - [546] = 441, - [547] = 472, - [548] = 478, - [549] = 480, - [550] = 476, - [551] = 475, - [552] = 474, - [553] = 467, - [554] = 465, - [555] = 458, - [556] = 450, - [557] = 447, - [558] = 445, - [559] = 443, - [560] = 441, - [561] = 481, - [562] = 479, - [563] = 439, - [564] = 473, - [565] = 437, - [566] = 434, - [567] = 463, - [568] = 430, - [569] = 427, - [570] = 424, - [571] = 454, - [572] = 421, - [573] = 347, - [574] = 348, - [575] = 349, - [576] = 469, - [577] = 468, - [578] = 350, - [579] = 460, - [580] = 351, - [581] = 352, - [582] = 353, - [583] = 354, - [584] = 355, - [585] = 356, - [586] = 357, - [587] = 358, - [588] = 359, - [589] = 360, - [590] = 361, - [591] = 362, - [592] = 363, - [593] = 364, - [594] = 365, - [595] = 461, - [596] = 367, - [597] = 368, - [598] = 466, - [599] = 369, - [600] = 370, - [601] = 371, - [602] = 372, - [603] = 373, - [604] = 374, - [605] = 461, - [606] = 375, - [607] = 376, - [608] = 377, - [609] = 379, - [610] = 380, - [611] = 381, - [612] = 382, - [613] = 384, - [614] = 385, - [615] = 387, - [616] = 388, - [617] = 389, - [618] = 391, - [619] = 392, - [620] = 393, - [621] = 394, - [622] = 395, - [623] = 484, - [624] = 483, - [625] = 396, - [626] = 459, - [627] = 456, - [628] = 405, - [629] = 451, - [630] = 407, - [631] = 482, - [632] = 481, - [633] = 345, - [634] = 440, - [635] = 479, - [636] = 438, - [637] = 473, - [638] = 412, - [639] = 413, - [640] = 436, - [641] = 431, - [642] = 469, - [643] = 468, - [644] = 345, - [645] = 432, - [646] = 433, - [647] = 426, - [648] = 455, - [649] = 428, - [650] = 346, - [651] = 448, - [652] = 435, - [653] = 425, - [654] = 461, - [655] = 466, - [656] = 468, - [657] = 469, - [658] = 473, - [659] = 423, - [660] = 479, - [661] = 346, - [662] = 345, - [663] = 481, - [664] = 482, - [665] = 483, - [666] = 484, - [667] = 418, - [668] = 458, - [669] = 417, - [670] = 415, - [671] = 457, - [672] = 470, - [673] = 410, - [674] = 403, - [675] = 457, - [676] = 455, - [677] = 454, - [678] = 453, - [679] = 452, - [680] = 444, - [681] = 407, - [682] = 405, - [683] = 453, - [684] = 452, - [685] = 400, - [686] = 399, - [687] = 435, - [688] = 419, - [689] = 397, - [690] = 398, - [691] = 399, - [692] = 444, - [693] = 400, - [694] = 403, - [695] = 410, - [696] = 415, - [697] = 417, - [698] = 418, - [699] = 423, - [700] = 425, - [701] = 428, - [702] = 431, - [703] = 436, - [704] = 438, - [705] = 440, - [706] = 451, - [707] = 456, - [708] = 459, - [709] = 460, - [710] = 463, - [711] = 471, - [712] = 472, - [713] = 478, - [714] = 480, - [715] = 447, - [716] = 476, - [717] = 475, - [718] = 474, - [719] = 467, - [720] = 465, - [721] = 398, - [722] = 445, - [723] = 443, - [724] = 471, - [725] = 439, - [726] = 437, - [727] = 434, - [728] = 430, - [729] = 427, - [730] = 424, - [731] = 421, - [732] = 347, - [733] = 348, - [734] = 349, - [735] = 397, - [736] = 350, - [737] = 351, - [738] = 352, - [739] = 353, - [740] = 354, - [741] = 355, - [742] = 356, - [743] = 357, - [744] = 358, - [745] = 419, - [746] = 359, - [747] = 360, - [748] = 361, - [749] = 362, - [750] = 363, - [751] = 482, - [752] = 483, - [753] = 364, - [754] = 365, - [755] = 448, - [756] = 366, - [757] = 367, - [758] = 484, - [759] = 759, - [760] = 368, - [761] = 369, - [762] = 370, - [763] = 371, - [764] = 372, - [765] = 373, - [766] = 470, - [767] = 374, - [768] = 375, - [769] = 376, - [770] = 377, - [771] = 379, - [772] = 380, - [773] = 381, - [774] = 382, + [528] = 469, + [529] = 166, + [530] = 337, + [531] = 469, + [532] = 337, + [533] = 166, + [534] = 469, + [535] = 157, + [536] = 469, + [537] = 469, + [538] = 469, + [539] = 469, + [540] = 469, + [541] = 469, + [542] = 469, + [543] = 469, + [544] = 453, + [545] = 462, + [546] = 360, + [547] = 463, + [548] = 465, + [549] = 391, + [550] = 389, + [551] = 464, + [552] = 359, + [553] = 398, + [554] = 459, + [555] = 457, + [556] = 459, + [557] = 448, + [558] = 468, + [559] = 467, + [560] = 466, + [561] = 462, + [562] = 461, + [563] = 460, + [564] = 406, + [565] = 458, + [566] = 456, + [567] = 455, + [568] = 453, + [569] = 452, + [570] = 450, + [571] = 449, + [572] = 446, + [573] = 445, + [574] = 444, + [575] = 443, + [576] = 347, + [577] = 348, + [578] = 442, + [579] = 441, + [580] = 440, + [581] = 439, + [582] = 438, + [583] = 437, + [584] = 436, + [585] = 435, + [586] = 434, + [587] = 433, + [588] = 432, + [589] = 431, + [590] = 430, + [591] = 429, + [592] = 428, + [593] = 427, + [594] = 426, + [595] = 425, + [596] = 424, + [597] = 423, + [598] = 349, + [599] = 422, + [600] = 421, + [601] = 420, + [602] = 418, + [603] = 417, + [604] = 416, + [605] = 350, + [606] = 415, + [607] = 413, + [608] = 411, + [609] = 410, + [610] = 409, + [611] = 408, + [612] = 407, + [613] = 404, + [614] = 403, + [615] = 402, + [616] = 401, + [617] = 400, + [618] = 399, + [619] = 398, + [620] = 397, + [621] = 395, + [622] = 394, + [623] = 393, + [624] = 389, + [625] = 392, + [626] = 390, + [627] = 345, + [628] = 388, + [629] = 387, + [630] = 386, + [631] = 385, + [632] = 384, + [633] = 391, + [634] = 465, + [635] = 383, + [636] = 382, + [637] = 381, + [638] = 380, + [639] = 379, + [640] = 378, + [641] = 377, + [642] = 376, + [643] = 375, + [644] = 374, + [645] = 373, + [646] = 372, + [647] = 451, + [648] = 447, + [649] = 419, + [650] = 414, + [651] = 412, + [652] = 346, + [653] = 406, + [654] = 371, + [655] = 370, + [656] = 369, + [657] = 368, + [658] = 367, + [659] = 347, + [660] = 348, + [661] = 363, + [662] = 365, + [663] = 353, + [664] = 349, + [665] = 366, + [666] = 350, + [667] = 448, + [668] = 367, + [669] = 368, + [670] = 351, + [671] = 366, + [672] = 464, + [673] = 369, + [674] = 365, + [675] = 363, + [676] = 353, + [677] = 370, + [678] = 371, + [679] = 364, + [680] = 364, + [681] = 354, + [682] = 356, + [683] = 372, + [684] = 373, + [685] = 374, + [686] = 362, + [687] = 375, + [688] = 376, + [689] = 377, + [690] = 378, + [691] = 357, + [692] = 379, + [693] = 380, + [694] = 358, + [695] = 381, + [696] = 463, + [697] = 348, + [698] = 347, + [699] = 406, + [700] = 382, + [701] = 383, + [702] = 346, + [703] = 384, + [704] = 412, + [705] = 385, + [706] = 386, + [707] = 414, + [708] = 412, + [709] = 359, + [710] = 387, + [711] = 388, + [712] = 360, + [713] = 345, + [714] = 390, + [715] = 392, + [716] = 393, + [717] = 419, + [718] = 394, + [719] = 395, + [720] = 397, + [721] = 360, + [722] = 362, + [723] = 359, + [724] = 724, + [725] = 414, + [726] = 399, + [727] = 400, + [728] = 401, + [729] = 402, + [730] = 403, + [731] = 389, + [732] = 447, + [733] = 404, + [734] = 391, + [735] = 465, + [736] = 407, + [737] = 451, + [738] = 408, + [739] = 409, + [740] = 363, + [741] = 410, + [742] = 365, + [743] = 366, + [744] = 457, + [745] = 367, + [746] = 368, + [747] = 369, + [748] = 370, + [749] = 354, + [750] = 356, + [751] = 371, + [752] = 464, + [753] = 372, + [754] = 373, + [755] = 351, + [756] = 374, + [757] = 375, + [758] = 351, + [759] = 411, + [760] = 376, + [761] = 377, + [762] = 413, + [763] = 378, + [764] = 415, + [765] = 416, + [766] = 379, + [767] = 417, + [768] = 418, + [769] = 420, + [770] = 380, + [771] = 381, + [772] = 364, + [773] = 382, + [774] = 383, [775] = 384, - [776] = 385, - [777] = 759, - [778] = 426, - [779] = 387, - [780] = 388, - [781] = 389, - [782] = 391, - [783] = 392, - [784] = 395, - [785] = 394, - [786] = 393, - [787] = 392, - [788] = 393, - [789] = 391, - [790] = 455, - [791] = 394, - [792] = 395, - [793] = 389, - [794] = 388, - [795] = 426, - [796] = 387, - [797] = 454, - [798] = 385, - [799] = 396, - [800] = 384, - [801] = 382, - [802] = 381, - [803] = 457, - [804] = 380, - [805] = 379, - [806] = 377, - [807] = 376, - [808] = 375, - [809] = 374, - [810] = 373, - [811] = 372, - [812] = 371, - [813] = 432, - [814] = 433, - [815] = 370, - [816] = 369, - [817] = 450, - [818] = 368, - [819] = 367, - [820] = 366, - [821] = 365, - [822] = 364, - [823] = 363, - [824] = 362, - [825] = 361, - [826] = 405, - [827] = 360, - [828] = 407, - [829] = 453, - [830] = 359, - [831] = 358, - [832] = 357, - [833] = 356, - [834] = 355, - [835] = 354, - [836] = 353, - [837] = 352, - [838] = 351, - [839] = 350, - [840] = 448, - [841] = 349, - [842] = 348, - [843] = 347, - [844] = 421, - [845] = 424, - [846] = 427, - [847] = 430, - [848] = 434, - [849] = 437, + [776] = 421, + [777] = 724, + [778] = 422, + [779] = 385, + [780] = 386, + [781] = 387, + [782] = 463, + [783] = 423, + [784] = 388, + [785] = 424, + [786] = 345, + [787] = 425, + [788] = 426, + [789] = 390, + [790] = 392, + [791] = 393, + [792] = 394, + [793] = 395, + [794] = 397, + [795] = 398, + [796] = 399, + [797] = 400, + [798] = 401, + [799] = 358, + [800] = 402, + [801] = 357, + [802] = 403, + [803] = 404, + [804] = 407, + [805] = 408, + [806] = 409, + [807] = 410, + [808] = 411, + [809] = 357, + [810] = 358, + [811] = 413, + [812] = 427, + [813] = 428, + [814] = 415, + [815] = 429, + [816] = 430, + [817] = 431, + [818] = 432, + [819] = 433, + [820] = 434, + [821] = 435, + [822] = 436, + [823] = 437, + [824] = 451, + [825] = 447, + [826] = 438, + [827] = 439, + [828] = 440, + [829] = 416, + [830] = 459, + [831] = 417, + [832] = 418, + [833] = 420, + [834] = 421, + [835] = 422, + [836] = 457, + [837] = 423, + [838] = 362, + [839] = 424, + [840] = 425, + [841] = 426, + [842] = 441, + [843] = 442, + [844] = 443, + [845] = 444, + [846] = 445, + [847] = 446, + [848] = 449, + [849] = 450, [850] = 452, - [851] = 439, - [852] = 346, - [853] = 441, - [854] = 443, - [855] = 445, - [856] = 412, - [857] = 413, - [858] = 413, - [859] = 412, - [860] = 447, - [861] = 450, - [862] = 458, - [863] = 465, - [864] = 467, - [865] = 474, - [866] = 475, - [867] = 476, - [868] = 480, - [869] = 478, - [870] = 472, - [871] = 471, - [872] = 463, - [873] = 460, - [874] = 396, - [875] = 459, - [876] = 444, - [877] = 456, - [878] = 435, - [879] = 451, - [880] = 440, - [881] = 438, - [882] = 436, - [883] = 431, - [884] = 428, - [885] = 425, - [886] = 423, - [887] = 418, - [888] = 466, - [889] = 417, - [890] = 415, - [891] = 410, - [892] = 403, - [893] = 400, - [894] = 399, - [895] = 432, - [896] = 433, - [897] = 426, - [898] = 398, - [899] = 397, - [900] = 419, - [901] = 470, - [902] = 516, - [903] = 510, - [904] = 529, - [905] = 499, - [906] = 498, - [907] = 907, - [908] = 544, - [909] = 507, - [910] = 512, - [911] = 485, - [912] = 511, - [913] = 510, + [851] = 453, + [852] = 353, + [853] = 419, + [854] = 455, + [855] = 456, + [856] = 458, + [857] = 427, + [858] = 428, + [859] = 460, + [860] = 429, + [861] = 430, + [862] = 431, + [863] = 432, + [864] = 433, + [865] = 461, + [866] = 462, + [867] = 434, + [868] = 435, + [869] = 356, + [870] = 436, + [871] = 354, + [872] = 437, + [873] = 438, + [874] = 439, + [875] = 364, + [876] = 440, + [877] = 466, + [878] = 878, + [879] = 441, + [880] = 442, + [881] = 443, + [882] = 467, + [883] = 444, + [884] = 445, + [885] = 448, + [886] = 446, + [887] = 449, + [888] = 349, + [889] = 450, + [890] = 452, + [891] = 461, + [892] = 460, + [893] = 350, + [894] = 458, + [895] = 456, + [896] = 455, + [897] = 468, + [898] = 468, + [899] = 467, + [900] = 346, + [901] = 466, + [902] = 521, + [903] = 475, + [904] = 492, + [905] = 522, + [906] = 472, + [907] = 513, + [908] = 521, + [909] = 514, + [910] = 479, + [911] = 518, + [912] = 518, + [913] = 523, [914] = 517, - [915] = 543, - [916] = 493, - [917] = 492, - [918] = 491, - [919] = 518, - [920] = 497, - [921] = 513, - [922] = 502, - [923] = 504, - [924] = 907, - [925] = 541, - [926] = 505, - [927] = 537, - [928] = 516, - [929] = 524, - [930] = 509, - [931] = 508, - [932] = 505, - [933] = 518, - [934] = 504, - [935] = 506, - [936] = 503, - [937] = 486, - [938] = 524, - [939] = 488, - [940] = 501, - [941] = 505, - [942] = 504, - [943] = 502, - [944] = 500, - [945] = 486, - [946] = 525, - [947] = 527, - [948] = 502, - [949] = 529, - [950] = 499, - [951] = 528, - [952] = 519, - [953] = 523, - [954] = 498, - [955] = 534, - [956] = 530, - [957] = 533, - [958] = 531, - [959] = 532, - [960] = 543, - [961] = 493, - [962] = 492, - [963] = 523, - [964] = 519, - [965] = 491, - [966] = 542, - [967] = 513, - [968] = 488, - [969] = 525, - [970] = 527, - [971] = 517, - [972] = 507, - [973] = 500, - [974] = 540, - [975] = 516, - [976] = 520, - [977] = 542, + [915] = 480, + [916] = 511, + [917] = 481, + [918] = 493, + [919] = 482, + [920] = 492, + [921] = 516, + [922] = 515, + [923] = 491, + [924] = 476, + [925] = 488, + [926] = 514, + [927] = 513, + [928] = 490, + [929] = 504, + [930] = 489, + [931] = 512, + [932] = 474, + [933] = 491, + [934] = 510, + [935] = 509, + [936] = 517, + [937] = 508, + [938] = 507, + [939] = 515, + [940] = 512, + [941] = 506, + [942] = 493, + [943] = 505, + [944] = 513, + [945] = 504, + [946] = 503, + [947] = 511, + [948] = 510, + [949] = 472, + [950] = 509, + [951] = 489, + [952] = 488, + [953] = 519, + [954] = 508, + [955] = 507, + [956] = 517, + [957] = 521, + [958] = 523, + [959] = 507, + [960] = 506, + [961] = 505, + [962] = 504, + [963] = 502, + [964] = 500, + [965] = 518, + [966] = 503, + [967] = 502, + [968] = 487, + [969] = 486, + [970] = 500, + [971] = 499, + [972] = 498, + [973] = 497, + [974] = 496, + [975] = 495, + [976] = 494, + [977] = 525, [978] = 514, - [979] = 487, - [980] = 490, - [981] = 514, - [982] = 494, - [983] = 493, - [984] = 495, - [985] = 491, - [986] = 496, - [987] = 497, - [988] = 528, - [989] = 501, - [990] = 503, + [979] = 494, + [980] = 495, + [981] = 496, + [982] = 503, + [983] = 525, + [984] = 516, + [985] = 499, + [986] = 498, + [987] = 485, + [988] = 497, + [989] = 475, + [990] = 502, [991] = 500, - [992] = 501, - [993] = 503, - [994] = 506, - [995] = 508, - [996] = 539, - [997] = 509, - [998] = 512, - [999] = 488, - [1000] = 544, - [1001] = 511, - [1002] = 541, - [1003] = 540, - [1004] = 512, - [1005] = 539, - [1006] = 537, - [1007] = 511, - [1008] = 530, - [1009] = 486, - [1010] = 510, - [1011] = 529, - [1012] = 506, - [1013] = 508, - [1014] = 494, - [1015] = 509, - [1016] = 531, - [1017] = 496, - [1018] = 532, - [1019] = 533, - [1020] = 495, - [1021] = 507, - [1022] = 534, - [1023] = 485, - [1024] = 517, - [1025] = 518, - [1026] = 519, - [1027] = 523, - [1028] = 525, - [1029] = 527, - [1030] = 485, - [1031] = 528, - [1032] = 530, - [1033] = 531, - [1034] = 532, - [1035] = 533, - [1036] = 520, - [1037] = 514, - [1038] = 534, - [1039] = 490, - [1040] = 487, - [1041] = 487, - [1042] = 524, - [1043] = 490, - [1044] = 494, - [1045] = 520, - [1046] = 497, - [1047] = 537, - [1048] = 539, - [1049] = 495, - [1050] = 496, - [1051] = 540, - [1052] = 541, - [1053] = 542, - [1054] = 544, - [1055] = 543, - [1056] = 513, - [1057] = 499, - [1058] = 492, - [1059] = 498, - [1060] = 121, + [992] = 477, + [993] = 522, + [994] = 505, + [995] = 478, + [996] = 493, + [997] = 492, + [998] = 506, + [999] = 491, + [1000] = 490, + [1001] = 489, + [1002] = 488, + [1003] = 498, + [1004] = 497, + [1005] = 487, + [1006] = 486, + [1007] = 484, + [1008] = 527, + [1009] = 485, + [1010] = 474, + [1011] = 475, + [1012] = 484, + [1013] = 483, + [1014] = 482, + [1015] = 483, + [1016] = 519, + [1017] = 482, + [1018] = 481, + [1019] = 481, + [1020] = 480, + [1021] = 480, + [1022] = 520, + [1023] = 496, + [1024] = 512, + [1025] = 523, + [1026] = 510, + [1027] = 508, + [1028] = 527, + [1029] = 509, + [1030] = 515, + [1031] = 511, + [1032] = 495, + [1033] = 476, + [1034] = 477, + [1035] = 494, + [1036] = 483, + [1037] = 478, + [1038] = 484, + [1039] = 479, + [1040] = 516, + [1041] = 479, + [1042] = 485, + [1043] = 478, + [1044] = 477, + [1045] = 476, + [1046] = 525, + [1047] = 520, + [1048] = 499, + [1049] = 474, + [1050] = 486, + [1051] = 519, + [1052] = 527, + [1053] = 487, + [1054] = 490, + [1055] = 522, + [1056] = 520, + [1057] = 472, + [1058] = 1058, + [1059] = 1058, + [1060] = 1060, [1061] = 1061, - [1062] = 1062, - [1063] = 1063, - [1064] = 1061, - [1065] = 1062, - [1066] = 1063, + [1062] = 1060, + [1063] = 1061, + [1064] = 1064, + [1065] = 1064, + [1066] = 1060, [1067] = 1061, - [1068] = 1063, - [1069] = 1061, - [1070] = 1063, - [1071] = 1062, - [1072] = 1063, - [1073] = 1061, - [1074] = 1062, - [1075] = 1063, - [1076] = 1061, - [1077] = 1062, - [1078] = 1062, + [1068] = 1064, + [1069] = 1060, + [1070] = 121, + [1071] = 1061, + [1072] = 1061, + [1073] = 1064, + [1074] = 1060, + [1075] = 1064, + [1076] = 1060, + [1077] = 1061, + [1078] = 1064, [1079] = 121, [1080] = 121, - [1081] = 121, - [1082] = 1082, - [1083] = 1082, - [1084] = 1082, - [1085] = 1082, - [1086] = 1082, - [1087] = 1082, - [1088] = 1082, + [1081] = 1081, + [1082] = 1081, + [1083] = 121, + [1084] = 1081, + [1085] = 1081, + [1086] = 1081, + [1087] = 1081, + [1088] = 1081, [1089] = 1089, [1090] = 1089, [1091] = 1089, @@ -5039,1044 +5046,1044 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1096] = 1096, [1097] = 1097, [1098] = 1098, - [1099] = 1098, - [1100] = 1100, - [1101] = 330, - [1102] = 318, + [1099] = 1099, + [1100] = 1099, + [1101] = 315, + [1102] = 314, [1103] = 1103, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 340, - [1108] = 1108, - [1109] = 1109, + [1104] = 337, + [1105] = 166, + [1106] = 157, + [1107] = 426, + [1108] = 370, + [1109] = 390, [1110] = 1110, - [1111] = 1111, - [1112] = 303, - [1113] = 1113, - [1114] = 1114, + [1111] = 368, + [1112] = 447, + [1113] = 347, + [1114] = 448, [1115] = 1115, [1116] = 1116, - [1117] = 306, - [1118] = 1113, - [1119] = 1109, - [1120] = 1106, - [1121] = 1110, - [1122] = 415, - [1123] = 394, - [1124] = 445, - [1125] = 447, - [1126] = 450, - [1127] = 458, - [1128] = 465, - [1129] = 473, - [1130] = 467, - [1131] = 474, - [1132] = 475, - [1133] = 481, - [1134] = 1134, - [1135] = 482, - [1136] = 476, - [1137] = 480, - [1138] = 478, - [1139] = 472, - [1140] = 435, - [1141] = 368, - [1142] = 471, - [1143] = 463, - [1144] = 460, - [1145] = 459, - [1146] = 456, - [1147] = 367, - [1148] = 371, - [1149] = 372, - [1150] = 451, - [1151] = 466, - [1152] = 373, - [1153] = 440, - [1154] = 438, - [1155] = 452, - [1156] = 374, - [1157] = 461, - [1158] = 448, - [1159] = 375, - [1160] = 376, - [1161] = 377, - [1162] = 436, - [1163] = 431, - [1164] = 428, - [1165] = 425, - [1166] = 379, - [1167] = 423, - [1168] = 418, - [1169] = 417, - [1170] = 484, - [1171] = 410, - [1172] = 380, - [1173] = 469, - [1174] = 366, - [1175] = 403, - [1176] = 381, - [1177] = 382, - [1178] = 384, - [1179] = 385, - [1180] = 400, - [1181] = 399, - [1182] = 398, - [1183] = 397, - [1184] = 419, - [1185] = 369, - [1186] = 365, - [1187] = 364, - [1188] = 387, - [1189] = 441, - [1190] = 439, - [1191] = 388, - [1192] = 389, - [1193] = 391, - [1194] = 392, - [1195] = 470, - [1196] = 393, - [1197] = 437, - [1198] = 1198, - [1199] = 1096, - [1200] = 345, - [1201] = 443, - [1202] = 395, - [1203] = 396, - [1204] = 1134, - [1205] = 1198, - [1206] = 434, - [1207] = 346, - [1208] = 363, - [1209] = 468, - [1210] = 1134, - [1211] = 362, - [1212] = 405, - [1213] = 433, - [1214] = 453, - [1215] = 430, - [1216] = 407, - [1217] = 432, - [1218] = 412, - [1219] = 413, - [1220] = 1198, - [1221] = 427, - [1222] = 1134, - [1223] = 361, - [1224] = 1198, - [1225] = 424, - [1226] = 1097, - [1227] = 457, - [1228] = 370, - [1229] = 455, - [1230] = 1198, - [1231] = 1198, - [1232] = 479, - [1233] = 1134, + [1117] = 367, + [1118] = 391, + [1119] = 366, + [1120] = 468, + [1121] = 463, + [1122] = 389, + [1123] = 393, + [1124] = 414, + [1125] = 467, + [1126] = 372, + [1127] = 412, + [1128] = 1128, + [1129] = 466, + [1130] = 394, + [1131] = 1110, + [1132] = 462, + [1133] = 373, + [1134] = 395, + [1135] = 451, + [1136] = 461, + [1137] = 397, + [1138] = 1138, + [1139] = 386, + [1140] = 430, + [1141] = 398, + [1142] = 399, + [1143] = 400, + [1144] = 401, + [1145] = 464, + [1146] = 375, + [1147] = 402, + [1148] = 431, + [1149] = 403, + [1150] = 376, + [1151] = 404, + [1152] = 460, + [1153] = 407, + [1154] = 408, + [1155] = 409, + [1156] = 377, + [1157] = 378, + [1158] = 379, + [1159] = 458, + [1160] = 459, + [1161] = 410, + [1162] = 411, + [1163] = 456, + [1164] = 413, + [1165] = 392, + [1166] = 415, + [1167] = 380, + [1168] = 381, + [1169] = 382, + [1170] = 383, + [1171] = 1171, + [1172] = 371, + [1173] = 384, + [1174] = 453, + [1175] = 1098, + [1176] = 356, + [1177] = 1097, + [1178] = 452, + [1179] = 450, + [1180] = 348, + [1181] = 354, + [1182] = 449, + [1183] = 1096, + [1184] = 1184, + [1185] = 446, + [1186] = 465, + [1187] = 365, + [1188] = 445, + [1189] = 363, + [1190] = 362, + [1191] = 387, + [1192] = 351, + [1193] = 416, + [1194] = 388, + [1195] = 353, + [1196] = 417, + [1197] = 418, + [1198] = 444, + [1199] = 1199, + [1200] = 443, + [1201] = 1201, + [1202] = 350, + [1203] = 442, + [1204] = 1171, + [1205] = 455, + [1206] = 357, + [1207] = 420, + [1208] = 358, + [1209] = 441, + [1210] = 359, + [1211] = 1116, + [1212] = 440, + [1213] = 360, + [1214] = 349, + [1215] = 369, + [1216] = 385, + [1217] = 421, + [1218] = 422, + [1219] = 423, + [1220] = 424, + [1221] = 425, + [1222] = 1222, + [1223] = 1128, + [1224] = 427, + [1225] = 428, + [1226] = 429, + [1227] = 374, + [1228] = 345, + [1229] = 439, + [1230] = 432, + [1231] = 438, + [1232] = 419, + [1233] = 437, [1234] = 1234, - [1235] = 1198, - [1236] = 1198, - [1237] = 1134, - [1238] = 1198, - [1239] = 483, - [1240] = 1134, - [1241] = 421, - [1242] = 347, - [1243] = 348, - [1244] = 1100, - [1245] = 349, - [1246] = 1134, - [1247] = 360, - [1248] = 359, - [1249] = 350, - [1250] = 351, - [1251] = 358, - [1252] = 454, - [1253] = 352, - [1254] = 353, - [1255] = 354, - [1256] = 444, - [1257] = 355, - [1258] = 356, - [1259] = 357, - [1260] = 1134, + [1235] = 406, + [1236] = 346, + [1237] = 457, + [1238] = 433, + [1239] = 436, + [1240] = 435, + [1241] = 434, + [1242] = 1242, + [1243] = 1243, + [1244] = 1243, + [1245] = 1243, + [1246] = 1242, + [1247] = 1243, + [1248] = 1242, + [1249] = 1249, + [1250] = 1243, + [1251] = 1243, + [1252] = 1242, + [1253] = 1242, + [1254] = 1242, + [1255] = 1242, + [1256] = 1243, + [1257] = 1243, + [1258] = 1242, + [1259] = 1242, + [1260] = 1243, [1261] = 1261, - [1262] = 1261, + [1262] = 1262, [1263] = 1261, [1264] = 1261, [1265] = 1261, [1266] = 1261, - [1267] = 1267, + [1267] = 1261, [1268] = 1268, [1269] = 1269, [1270] = 1269, - [1271] = 1269, - [1272] = 1268, + [1271] = 1268, + [1272] = 1269, [1273] = 1269, [1274] = 1268, [1275] = 1268, [1276] = 1268, [1277] = 1269, - [1278] = 1269, - [1279] = 1268, + [1278] = 1268, + [1279] = 1269, [1280] = 1280, [1281] = 1281, [1282] = 1282, - [1283] = 1281, + [1283] = 1282, [1284] = 1281, - [1285] = 1282, - [1286] = 1282, - [1287] = 1281, - [1288] = 1282, - [1289] = 1282, - [1290] = 1282, + [1285] = 1281, + [1286] = 1281, + [1287] = 1282, + [1288] = 1281, + [1289] = 1281, + [1290] = 1281, [1291] = 1282, [1292] = 1282, [1293] = 1281, - [1294] = 1282, + [1294] = 1281, [1295] = 1295, - [1296] = 1295, + [1296] = 1296, [1297] = 1297, - [1298] = 1295, + [1298] = 1296, [1299] = 1299, [1300] = 1297, - [1301] = 1295, + [1301] = 1296, [1302] = 1302, [1303] = 1303, - [1304] = 1297, - [1305] = 1305, - [1306] = 1302, + [1304] = 1303, + [1305] = 1303, + [1306] = 1296, [1307] = 1295, - [1308] = 1303, - [1309] = 1303, - [1310] = 1297, - [1311] = 1297, - [1312] = 1295, + [1308] = 1308, + [1309] = 1309, + [1310] = 1295, + [1311] = 1299, + [1312] = 1312, [1313] = 1295, - [1314] = 1297, - [1315] = 1302, - [1316] = 1305, - [1317] = 1302, - [1318] = 1318, - [1319] = 1303, - [1320] = 1305, - [1321] = 1305, - [1322] = 1297, - [1323] = 1318, - [1324] = 1305, - [1325] = 1302, - [1326] = 1305, - [1327] = 1297, - [1328] = 1305, - [1329] = 1305, - [1330] = 1303, + [1314] = 1308, + [1315] = 1315, + [1316] = 1299, + [1317] = 1296, + [1318] = 1297, + [1319] = 1308, + [1320] = 1303, + [1321] = 1303, + [1322] = 1295, + [1323] = 1296, + [1324] = 1299, + [1325] = 1303, + [1326] = 1303, + [1327] = 1308, + [1328] = 1308, + [1329] = 1303, + [1330] = 1330, [1331] = 1295, - [1332] = 1318, - [1333] = 1303, - [1334] = 1305, - [1335] = 1303, - [1336] = 1302, - [1337] = 1337, - [1338] = 1303, - [1339] = 1295, - [1340] = 1302, - [1341] = 1303, - [1342] = 1342, + [1332] = 1308, + [1333] = 1296, + [1334] = 1309, + [1335] = 1296, + [1336] = 1295, + [1337] = 1308, + [1338] = 1299, + [1339] = 1299, + [1340] = 1303, + [1341] = 1309, + [1342] = 1299, [1343] = 1297, - [1344] = 1344, - [1345] = 1345, - [1346] = 1346, - [1347] = 1347, - [1348] = 1348, - [1349] = 1348, - [1350] = 1348, + [1344] = 1295, + [1345] = 1299, + [1346] = 1296, + [1347] = 1299, + [1348] = 1295, + [1349] = 1349, + [1350] = 1350, [1351] = 1351, - [1352] = 1345, - [1353] = 1348, + [1352] = 1349, + [1353] = 1353, [1354] = 1354, [1355] = 1355, - [1356] = 1356, + [1356] = 1349, [1357] = 1357, [1358] = 1358, - [1359] = 1351, - [1360] = 1360, - [1361] = 1345, - [1362] = 1362, - [1363] = 1363, + [1359] = 1357, + [1360] = 1357, + [1361] = 1361, + [1362] = 1350, + [1363] = 1353, [1364] = 1364, [1365] = 1365, - [1366] = 1366, - [1367] = 1357, - [1368] = 1354, - [1369] = 1347, - [1370] = 1358, - [1371] = 1355, - [1372] = 1362, - [1373] = 1356, - [1374] = 1362, - [1375] = 1347, - [1376] = 1357, - [1377] = 1356, - [1378] = 1348, - [1379] = 1348, - [1380] = 1380, - [1381] = 1357, - [1382] = 1345, - [1383] = 1356, - [1384] = 1355, - [1385] = 1355, - [1386] = 1354, - [1387] = 1363, - [1388] = 1388, - [1389] = 1362, - [1390] = 1354, - [1391] = 1363, - [1392] = 1357, - [1393] = 1348, - [1394] = 1357, - [1395] = 1351, - [1396] = 1345, - [1397] = 1363, - [1398] = 1346, - [1399] = 1356, - [1400] = 1400, - [1401] = 1348, - [1402] = 1347, - [1403] = 1363, - [1404] = 1355, - [1405] = 1354, - [1406] = 1363, - [1407] = 1362, - [1408] = 1380, - [1409] = 1355, - [1410] = 1351, - [1411] = 1354, - [1412] = 1380, - [1413] = 1348, - [1414] = 1345, - [1415] = 1362, - [1416] = 1356, - [1417] = 1358, + [1366] = 1351, + [1367] = 1367, + [1368] = 1361, + [1369] = 1365, + [1370] = 1370, + [1371] = 1357, + [1372] = 1365, + [1373] = 1373, + [1374] = 1353, + [1375] = 1350, + [1376] = 1351, + [1377] = 1377, + [1378] = 1350, + [1379] = 1361, + [1380] = 1357, + [1381] = 1373, + [1382] = 1355, + [1383] = 1351, + [1384] = 1351, + [1385] = 1373, + [1386] = 1353, + [1387] = 1351, + [1388] = 1365, + [1389] = 1377, + [1390] = 1390, + [1391] = 1367, + [1392] = 1367, + [1393] = 1351, + [1394] = 1373, + [1395] = 1355, + [1396] = 1351, + [1397] = 1355, + [1398] = 1349, + [1399] = 1365, + [1400] = 1349, + [1401] = 1367, + [1402] = 1402, + [1403] = 1355, + [1404] = 1370, + [1405] = 1373, + [1406] = 1365, + [1407] = 1407, + [1408] = 1353, + [1409] = 1409, + [1410] = 1350, + [1411] = 1357, + [1412] = 1373, + [1413] = 1350, + [1414] = 1367, + [1415] = 1415, + [1416] = 1416, + [1417] = 1377, [1418] = 1351, - [1419] = 1351, - [1420] = 1346, - [1421] = 1421, - [1422] = 1422, - [1423] = 1423, + [1419] = 1349, + [1420] = 1353, + [1421] = 1355, + [1422] = 1370, + [1423] = 1367, [1424] = 1424, [1425] = 1425, [1426] = 1426, - [1427] = 1423, + [1427] = 1427, [1428] = 1428, [1429] = 1429, [1430] = 1430, [1431] = 1431, - [1432] = 1429, + [1432] = 1425, [1433] = 1433, [1434] = 1434, - [1435] = 1424, + [1435] = 1435, [1436] = 1436, [1437] = 1437, - [1438] = 1438, - [1439] = 1424, - [1440] = 1423, - [1441] = 1423, - [1442] = 1442, + [1438] = 1424, + [1439] = 1439, + [1440] = 1440, + [1441] = 1441, + [1442] = 1424, [1443] = 1443, - [1444] = 1444, - [1445] = 1423, - [1446] = 1434, - [1447] = 1436, - [1448] = 1436, + [1444] = 1390, + [1445] = 1445, + [1446] = 1446, + [1447] = 1441, + [1448] = 1424, [1449] = 1449, - [1450] = 1424, - [1451] = 1451, + [1450] = 1446, + [1451] = 1445, [1452] = 1452, - [1453] = 1449, - [1454] = 1443, - [1455] = 1436, + [1453] = 1453, + [1454] = 1424, + [1455] = 1455, [1456] = 1456, - [1457] = 1433, - [1458] = 1458, - [1459] = 1444, - [1460] = 1424, - [1461] = 1449, - [1462] = 1462, - [1463] = 1463, - [1464] = 1424, - [1465] = 1424, - [1466] = 1466, - [1467] = 1467, - [1468] = 1423, + [1457] = 1424, + [1458] = 1446, + [1459] = 1407, + [1460] = 1460, + [1461] = 1461, + [1462] = 1424, + [1463] = 1425, + [1464] = 1464, + [1465] = 1445, + [1466] = 1460, + [1467] = 1441, + [1468] = 1468, [1469] = 1469, - [1470] = 1436, - [1471] = 1444, - [1472] = 1442, - [1473] = 1424, - [1474] = 1474, - [1475] = 1423, - [1476] = 1476, + [1470] = 1441, + [1471] = 1471, + [1472] = 1429, + [1473] = 1390, + [1474] = 1429, + [1475] = 1364, + [1476] = 1424, [1477] = 1477, - [1478] = 1449, - [1479] = 1423, - [1480] = 1424, + [1478] = 1441, + [1479] = 1439, + [1480] = 1480, [1481] = 1481, - [1482] = 1449, - [1483] = 1483, - [1484] = 1484, + [1482] = 1445, + [1483] = 1441, + [1484] = 1429, [1485] = 1485, - [1486] = 1486, - [1487] = 1487, + [1486] = 1426, + [1487] = 1440, [1488] = 1488, - [1489] = 1423, - [1490] = 1490, - [1491] = 1491, + [1489] = 1489, + [1490] = 1477, + [1491] = 1441, [1492] = 1492, - [1493] = 1493, - [1494] = 1494, - [1495] = 1421, - [1496] = 1494, + [1493] = 1488, + [1494] = 1480, + [1495] = 1495, + [1496] = 1496, [1497] = 1497, - [1498] = 1498, + [1498] = 1407, [1499] = 1499, - [1500] = 1500, - [1501] = 1501, - [1502] = 1502, + [1500] = 1446, + [1501] = 1427, + [1502] = 1428, [1503] = 1503, [1504] = 1504, - [1505] = 1503, - [1506] = 1506, - [1507] = 1507, - [1508] = 1506, - [1509] = 1509, + [1505] = 1446, + [1506] = 1469, + [1507] = 1429, + [1508] = 1508, + [1509] = 1445, [1510] = 1510, - [1511] = 1511, - [1512] = 1512, - [1513] = 1513, - [1514] = 1514, - [1515] = 1515, - [1516] = 1516, + [1511] = 1441, + [1512] = 1424, + [1513] = 1390, + [1514] = 1471, + [1515] = 1508, + [1516] = 1441, [1517] = 1517, [1518] = 1518, - [1519] = 1519, + [1519] = 1517, [1520] = 1520, [1521] = 1521, [1522] = 1522, [1523] = 1523, [1524] = 1524, - [1525] = 1510, + [1525] = 1489, [1526] = 1526, [1527] = 1527, [1528] = 1528, - [1529] = 1516, + [1529] = 1517, [1530] = 1530, - [1531] = 1521, + [1531] = 1531, [1532] = 1520, [1533] = 1533, - [1534] = 1492, - [1535] = 1516, - [1536] = 1512, + [1534] = 1521, + [1535] = 1535, + [1536] = 1536, [1537] = 1537, - [1538] = 1513, - [1539] = 1515, - [1540] = 1527, - [1541] = 1530, - [1542] = 1492, + [1538] = 1538, + [1539] = 1539, + [1540] = 1540, + [1541] = 1535, + [1542] = 1518, [1543] = 1543, - [1544] = 1544, - [1545] = 1518, - [1546] = 1511, - [1547] = 1528, - [1548] = 1498, - [1549] = 1516, - [1550] = 1526, - [1551] = 1516, - [1552] = 1537, - [1553] = 1553, - [1554] = 1506, - [1555] = 1522, - [1556] = 1521, - [1557] = 1533, - [1558] = 1513, - [1559] = 1527, - [1560] = 1530, - [1561] = 1492, - [1562] = 1537, - [1563] = 1518, - [1564] = 1511, - [1565] = 1501, - [1566] = 1553, - [1567] = 1515, - [1568] = 1503, - [1569] = 1569, - [1570] = 1543, - [1571] = 1494, - [1572] = 1522, - [1573] = 1533, - [1574] = 1513, - [1575] = 1516, - [1576] = 1527, - [1577] = 1530, - [1578] = 1553, - [1579] = 1492, - [1580] = 1512, - [1581] = 1537, - [1582] = 1512, - [1583] = 1553, - [1584] = 1512, - [1585] = 1494, - [1586] = 1477, - [1587] = 1528, - [1588] = 1569, - [1589] = 1528, - [1590] = 1543, - [1591] = 1569, - [1592] = 1515, - [1593] = 1511, - [1594] = 1543, - [1595] = 1595, - [1596] = 1553, - [1597] = 1526, - [1598] = 1512, - [1599] = 1510, - [1600] = 1600, - [1601] = 1528, - [1602] = 1521, - [1603] = 1491, - [1604] = 1509, - [1605] = 1522, - [1606] = 1526, - [1607] = 1511, - [1608] = 1528, - [1609] = 1553, - [1610] = 1553, - [1611] = 1533, - [1612] = 1521, - [1613] = 1522, - [1614] = 1537, - [1615] = 1526, - [1616] = 1543, - [1617] = 1492, - [1618] = 1530, - [1619] = 1527, - [1620] = 1513, - [1621] = 1533, - [1622] = 1451, - [1623] = 1569, - [1624] = 1624, - [1625] = 1521, - [1626] = 1518, - [1627] = 1511, - [1628] = 1501, - [1629] = 1510, - [1630] = 1528, - [1631] = 1518, - [1632] = 1511, - [1633] = 1537, - [1634] = 1510, - [1635] = 1492, - [1636] = 1512, - [1637] = 1498, - [1638] = 1516, - [1639] = 1530, - [1640] = 1527, - [1641] = 1500, - [1642] = 1518, - [1643] = 1507, - [1644] = 1501, + [1544] = 1537, + [1545] = 1538, + [1546] = 1535, + [1547] = 1518, + [1548] = 1548, + [1549] = 1530, + [1550] = 1523, + [1551] = 1551, + [1552] = 1531, + [1553] = 1540, + [1554] = 1537, + [1555] = 1555, + [1556] = 1556, + [1557] = 1557, + [1558] = 1558, + [1559] = 1559, + [1560] = 1560, + [1561] = 1522, + [1562] = 1538, + [1563] = 1535, + [1564] = 1564, + [1565] = 1536, + [1566] = 1526, + [1567] = 1518, + [1568] = 1548, + [1569] = 1536, + [1570] = 1556, + [1571] = 1571, + [1572] = 1572, + [1573] = 1555, + [1574] = 1517, + [1575] = 1575, + [1576] = 1537, + [1577] = 1555, + [1578] = 1548, + [1579] = 1538, + [1580] = 1535, + [1581] = 1548, + [1582] = 1531, + [1583] = 1530, + [1584] = 1528, + [1585] = 1518, + [1586] = 1548, + [1587] = 1524, + [1588] = 1560, + [1589] = 1518, + [1590] = 1571, + [1591] = 1539, + [1592] = 1592, + [1593] = 1523, + [1594] = 1572, + [1595] = 1571, + [1596] = 1539, + [1597] = 1535, + [1598] = 1540, + [1599] = 1599, + [1600] = 1575, + [1601] = 1527, + [1602] = 1517, + [1603] = 1575, + [1604] = 1530, + [1605] = 1551, + [1606] = 1531, + [1607] = 1556, + [1608] = 1540, + [1609] = 1526, + [1610] = 1528, + [1611] = 1538, + [1612] = 1540, + [1613] = 1536, + [1614] = 1523, + [1615] = 1528, + [1616] = 1517, + [1617] = 1522, + [1618] = 1560, + [1619] = 1559, + [1620] = 1558, + [1621] = 1557, + [1622] = 1556, + [1623] = 1537, + [1624] = 1555, + [1625] = 1575, + [1626] = 1538, + [1627] = 1522, + [1628] = 1535, + [1629] = 1523, + [1630] = 1560, + [1631] = 1536, + [1632] = 1572, + [1633] = 1559, + [1634] = 1558, + [1635] = 1524, + [1636] = 1528, + [1637] = 1548, + [1638] = 1526, + [1639] = 1548, + [1640] = 1537, + [1641] = 1521, + [1642] = 1540, + [1643] = 1522, + [1644] = 1536, [1645] = 1517, - [1646] = 1519, - [1647] = 1537, - [1648] = 1520, - [1649] = 1512, - [1650] = 1533, - [1651] = 1526, - [1652] = 1526, - [1653] = 1510, - [1654] = 1509, - [1655] = 1513, - [1656] = 1491, - [1657] = 1527, - [1658] = 1658, - [1659] = 1530, - [1660] = 1515, - [1661] = 1491, - [1662] = 1498, - [1663] = 1492, - [1664] = 1537, - [1665] = 1492, - [1666] = 1501, - [1667] = 1494, - [1668] = 1511, - [1669] = 1503, - [1670] = 1527, - [1671] = 1518, - [1672] = 1506, - [1673] = 1509, - [1674] = 1543, - [1675] = 1510, - [1676] = 1521, - [1677] = 1569, - [1678] = 1421, - [1679] = 1514, - [1680] = 1680, - [1681] = 1658, - [1682] = 1515, - [1683] = 1506, - [1684] = 1421, - [1685] = 1513, - [1686] = 1513, - [1687] = 1522, - [1688] = 1503, - [1689] = 1501, - [1690] = 1500, - [1691] = 1691, - [1692] = 1506, - [1693] = 1514, - [1694] = 1533, - [1695] = 1521, - [1696] = 1506, - [1697] = 1522, - [1698] = 1494, - [1699] = 1512, - [1700] = 1520, - [1701] = 1503, - [1702] = 1494, - [1703] = 1504, - [1704] = 1520, - [1705] = 1506, - [1706] = 1501, - [1707] = 1503, - [1708] = 1500, - [1709] = 1709, - [1710] = 1494, - [1711] = 1477, - [1712] = 1533, - [1713] = 1569, - [1714] = 1506, - [1715] = 1502, - [1716] = 1499, - [1717] = 1498, - [1718] = 1510, - [1719] = 1518, - [1720] = 1500, - [1721] = 1522, - [1722] = 1501, - [1723] = 1544, - [1724] = 1501, - [1725] = 1553, - [1726] = 1510, - [1727] = 1727, - [1728] = 1491, - [1729] = 1543, - [1730] = 1526, - [1731] = 1503, - [1732] = 1553, - [1733] = 1494, - [1734] = 1530, - [1735] = 1511, - [1736] = 1503, - [1737] = 1518, - [1738] = 1515, - [1739] = 1537, - [1740] = 1514, - [1741] = 1530, - [1742] = 1527, - [1743] = 1513, - [1744] = 1624, - [1745] = 1533, - [1746] = 1746, - [1747] = 1521, - [1748] = 1526, - [1749] = 1522, - [1750] = 1477, - [1751] = 1524, - [1752] = 1524, - [1753] = 1451, - [1754] = 1524, - [1755] = 1517, - [1756] = 1502, - [1757] = 1499, - [1758] = 1519, - [1759] = 1507, - [1760] = 1524, - [1761] = 1504, - [1762] = 1658, + [1646] = 1555, + [1647] = 1523, + [1648] = 1560, + [1649] = 1559, + [1650] = 1526, + [1651] = 1530, + [1652] = 1571, + [1653] = 1522, + [1654] = 1531, + [1655] = 1524, + [1656] = 1524, + [1657] = 1530, + [1658] = 1560, + [1659] = 1559, + [1660] = 1558, + [1661] = 1557, + [1662] = 1556, + [1663] = 1528, + [1664] = 1526, + [1665] = 1540, + [1666] = 1521, + [1667] = 1555, + [1668] = 1668, + [1669] = 1537, + [1670] = 1539, + [1671] = 1575, + [1672] = 1521, + [1673] = 1531, + [1674] = 1528, + [1675] = 1517, + [1676] = 1575, + [1677] = 1527, + [1678] = 1575, + [1679] = 1526, + [1680] = 1524, + [1681] = 1527, + [1682] = 1521, + [1683] = 1683, + [1684] = 1530, + [1685] = 1685, + [1686] = 1539, + [1687] = 1687, + [1688] = 1364, + [1689] = 1571, + [1690] = 1531, + [1691] = 1559, + [1692] = 1551, + [1693] = 1528, + [1694] = 1557, + [1695] = 1548, + [1696] = 1557, + [1697] = 1521, + [1698] = 1558, + [1699] = 1572, + [1700] = 1559, + [1701] = 1560, + [1702] = 1555, + [1703] = 1522, + [1704] = 1523, + [1705] = 1575, + [1706] = 1575, + [1707] = 1526, + [1708] = 1557, + [1709] = 1556, + [1710] = 1489, + [1711] = 1556, + [1712] = 1557, + [1713] = 1558, + [1714] = 1521, + [1715] = 1559, + [1716] = 1531, + [1717] = 1557, + [1718] = 1560, + [1719] = 1522, + [1720] = 1556, + [1721] = 1523, + [1722] = 1536, + [1723] = 1536, + [1724] = 1540, + [1725] = 1531, + [1726] = 1572, + [1727] = 1668, + [1728] = 1407, + [1729] = 1526, + [1730] = 1555, + [1731] = 1528, + [1732] = 1548, + [1733] = 1517, + [1734] = 1518, + [1735] = 1524, + [1736] = 1530, + [1737] = 1558, + [1738] = 1555, + [1739] = 1530, + [1740] = 1556, + [1741] = 1551, + [1742] = 1742, + [1743] = 1557, + [1744] = 1744, + [1745] = 1558, + [1746] = 1559, + [1747] = 1560, + [1748] = 1522, + [1749] = 1523, + [1750] = 1558, + [1751] = 1521, + [1752] = 1536, + [1753] = 1540, + [1754] = 1489, + [1755] = 1439, + [1756] = 1427, + [1757] = 1471, + [1758] = 1489, + [1759] = 1477, + [1760] = 1428, + [1761] = 1469, + [1762] = 1480, [1763] = 1763, [1764] = 1763, - [1765] = 539, + [1765] = 478, [1766] = 1766, - [1767] = 1517, - [1768] = 1507, - [1769] = 1504, - [1770] = 1519, - [1771] = 1499, - [1772] = 1658, - [1773] = 1502, + [1767] = 1428, + [1768] = 1427, + [1769] = 1477, + [1770] = 1439, + [1771] = 1471, + [1772] = 1480, + [1773] = 1469, [1774] = 1774, [1775] = 1774, [1776] = 1774, - [1777] = 1777, - [1778] = 1774, + [1777] = 1774, + [1778] = 1778, [1779] = 1779, [1780] = 1780, - [1781] = 1658, - [1782] = 1782, - [1783] = 1782, - [1784] = 1507, - [1785] = 1504, - [1786] = 1502, - [1787] = 1499, - [1788] = 1517, - [1789] = 1519, - [1790] = 1782, + [1781] = 1780, + [1782] = 1780, + [1783] = 1783, + [1784] = 1428, + [1785] = 1469, + [1786] = 1477, + [1787] = 1427, + [1788] = 1439, + [1789] = 1480, + [1790] = 1471, [1791] = 1791, - [1792] = 1777, - [1793] = 1779, - [1794] = 1477, - [1795] = 1780, - [1796] = 1658, - [1797] = 1504, - [1798] = 1798, - [1799] = 1799, + [1792] = 1783, + [1793] = 1407, + [1794] = 1794, + [1795] = 1779, + [1796] = 1778, + [1797] = 1791, + [1798] = 1469, + [1799] = 1480, [1800] = 1800, - [1801] = 1451, - [1802] = 1517, - [1803] = 1507, - [1804] = 1477, - [1805] = 1799, - [1806] = 1806, - [1807] = 1807, - [1808] = 1519, - [1809] = 1502, - [1810] = 1499, - [1811] = 1524, - [1812] = 1502, - [1813] = 1813, - [1814] = 1658, - [1815] = 1517, - [1816] = 1519, - [1817] = 1817, - [1818] = 1777, - [1819] = 1499, - [1820] = 1780, - [1821] = 1504, - [1822] = 1524, - [1823] = 1779, - [1824] = 1507, - [1825] = 1825, - [1826] = 1451, - [1827] = 1524, - [1828] = 1524, - [1829] = 1807, - [1830] = 1798, - [1831] = 1800, - [1832] = 1779, - [1833] = 1777, - [1834] = 1780, - [1835] = 1477, - [1836] = 1806, - [1837] = 1524, - [1838] = 1524, - [1839] = 1839, - [1840] = 1840, - [1841] = 1841, + [1801] = 1801, + [1802] = 1802, + [1803] = 1489, + [1804] = 1804, + [1805] = 1471, + [1806] = 1407, + [1807] = 1364, + [1808] = 1427, + [1809] = 1439, + [1810] = 1477, + [1811] = 1811, + [1812] = 1428, + [1813] = 1469, + [1814] = 1489, + [1815] = 1783, + [1816] = 1816, + [1817] = 1489, + [1818] = 1818, + [1819] = 1428, + [1820] = 1489, + [1821] = 1427, + [1822] = 1477, + [1823] = 1489, + [1824] = 1439, + [1825] = 1480, + [1826] = 1471, + [1827] = 1778, + [1828] = 1779, + [1829] = 1829, + [1830] = 1779, + [1831] = 1364, + [1832] = 1811, + [1833] = 1804, + [1834] = 1829, + [1835] = 1783, + [1836] = 1407, + [1837] = 1489, + [1838] = 1800, + [1839] = 1802, + [1840] = 1778, + [1841] = 1816, [1842] = 1842, [1843] = 1843, - [1844] = 1825, - [1845] = 1845, - [1846] = 1817, - [1847] = 1524, + [1844] = 1844, + [1845] = 1489, + [1846] = 1846, + [1847] = 1847, [1848] = 1848, [1849] = 1849, [1850] = 1850, - [1851] = 1841, + [1851] = 1818, [1852] = 1852, [1853] = 1853, - [1854] = 1807, - [1855] = 1852, - [1856] = 1524, - [1857] = 1848, - [1858] = 1843, - [1859] = 1839, - [1860] = 1860, - [1861] = 1806, - [1862] = 1862, - [1863] = 1845, - [1864] = 1864, + [1854] = 1854, + [1855] = 1843, + [1856] = 1849, + [1857] = 1857, + [1858] = 1858, + [1859] = 318, + [1860] = 1800, + [1861] = 314, + [1862] = 328, + [1863] = 1852, + [1864] = 1811, [1865] = 1865, - [1866] = 1850, - [1867] = 1867, - [1868] = 1798, - [1869] = 1869, + [1866] = 1866, + [1867] = 1848, + [1868] = 315, + [1869] = 1804, [1870] = 1870, - [1871] = 1800, - [1872] = 1849, + [1871] = 1871, + [1872] = 1872, [1873] = 1873, - [1874] = 1840, - [1875] = 1875, - [1876] = 1842, - [1877] = 1817, - [1878] = 1878, - [1879] = 1864, - [1880] = 334, - [1881] = 1519, - [1882] = 1882, - [1883] = 1807, - [1884] = 1873, - [1885] = 1825, - [1886] = 1886, - [1887] = 1887, - [1888] = 1658, - [1889] = 1889, - [1890] = 1806, - [1891] = 1891, - [1892] = 335, - [1893] = 1499, - [1894] = 1504, - [1895] = 1502, - [1896] = 1800, - [1897] = 1517, - [1898] = 1507, - [1899] = 330, - [1900] = 1798, - [1901] = 318, + [1874] = 1850, + [1875] = 1854, + [1876] = 1876, + [1877] = 1853, + [1878] = 1844, + [1879] = 1802, + [1880] = 1842, + [1881] = 1489, + [1882] = 1471, + [1883] = 1883, + [1884] = 1427, + [1885] = 1428, + [1886] = 1477, + [1887] = 1439, + [1888] = 1480, + [1889] = 1469, + [1890] = 1816, + [1891] = 1800, + [1892] = 1892, + [1893] = 1893, + [1894] = 1894, + [1895] = 1895, + [1896] = 1896, + [1897] = 364, + [1898] = 1898, + [1899] = 1811, + [1900] = 1900, + [1901] = 1818, [1902] = 1902, [1903] = 1903, [1904] = 1904, [1905] = 1905, - [1906] = 1825, + [1906] = 1804, [1907] = 1907, [1908] = 1908, - [1909] = 1825, - [1910] = 1875, - [1911] = 1911, + [1909] = 1858, + [1910] = 1910, + [1911] = 1873, [1912] = 1912, [1913] = 1913, [1914] = 1914, - [1915] = 1852, + [1915] = 1915, [1916] = 1916, - [1917] = 1817, - [1918] = 1918, - [1919] = 1869, - [1920] = 1865, - [1921] = 1921, - [1922] = 1922, - [1923] = 1882, - [1924] = 1924, - [1925] = 1925, - [1926] = 1850, - [1927] = 426, - [1928] = 1928, - [1929] = 1817, - [1930] = 1878, - [1931] = 1849, - [1932] = 1842, - [1933] = 1843, - [1934] = 1853, - [1935] = 1935, - [1936] = 1891, - [1937] = 1937, - [1938] = 1845, - [1939] = 1840, + [1917] = 1802, + [1918] = 1857, + [1919] = 1854, + [1920] = 1920, + [1921] = 1818, + [1922] = 1816, + [1923] = 315, + [1924] = 1912, + [1925] = 318, + [1926] = 1926, + [1927] = 1902, + [1928] = 314, + [1929] = 1876, + [1930] = 1926, + [1931] = 328, + [1932] = 1920, + [1933] = 1866, + [1934] = 1904, + [1935] = 1818, + [1936] = 1926, + [1937] = 1920, + [1938] = 1842, + [1939] = 328, [1940] = 1940, [1941] = 1848, - [1942] = 1887, - [1943] = 1889, - [1944] = 1839, - [1945] = 1882, - [1946] = 1864, - [1947] = 1947, - [1948] = 1842, - [1949] = 1949, - [1950] = 318, - [1951] = 1878, - [1952] = 1952, - [1953] = 1953, - [1954] = 1889, - [1955] = 1952, - [1956] = 1882, - [1957] = 1957, - [1958] = 1845, - [1959] = 1840, - [1960] = 1952, - [1961] = 1961, - [1962] = 1952, - [1963] = 306, - [1964] = 1922, - [1965] = 1903, - [1966] = 318, - [1967] = 330, - [1968] = 1843, - [1969] = 1952, - [1970] = 334, - [1971] = 1952, - [1972] = 1887, - [1973] = 1852, - [1974] = 1848, - [1975] = 1850, - [1976] = 1839, - [1977] = 1849, - [1978] = 340, - [1979] = 1957, - [1980] = 1957, - [1981] = 335, - [1982] = 334, - [1983] = 335, - [1984] = 1957, - [1985] = 303, - [1986] = 1873, - [1987] = 1924, - [1988] = 1952, - [1989] = 330, - [1990] = 499, + [1942] = 314, + [1943] = 337, + [1944] = 1849, + [1945] = 1843, + [1946] = 1852, + [1947] = 1903, + [1948] = 1926, + [1949] = 1844, + [1950] = 1926, + [1951] = 1850, + [1952] = 318, + [1953] = 1926, + [1954] = 1954, + [1955] = 1905, + [1956] = 1816, + [1957] = 166, + [1958] = 1853, + [1959] = 1959, + [1960] = 1926, + [1961] = 315, + [1962] = 1962, + [1963] = 1920, + [1964] = 1964, + [1965] = 1870, + [1966] = 157, + [1967] = 1967, + [1968] = 488, + [1969] = 1969, + [1970] = 1844, + [1971] = 1971, + [1972] = 1972, + [1973] = 1973, + [1974] = 1850, + [1975] = 1842, + [1976] = 1849, + [1977] = 1977, + [1978] = 1848, + [1979] = 500, + [1980] = 499, + [1981] = 498, + [1982] = 497, + [1983] = 484, + [1984] = 507, + [1985] = 1985, + [1986] = 1986, + [1987] = 1987, + [1988] = 1988, + [1989] = 1989, + [1990] = 1990, [1991] = 1991, - [1992] = 1992, + [1992] = 1873, [1993] = 1993, [1994] = 1994, [1995] = 1995, [1996] = 1996, - [1997] = 1997, + [1997] = 1991, [1998] = 1998, - [1999] = 1999, + [1999] = 1854, [2000] = 2000, [2001] = 2001, - [2002] = 2002, - [2003] = 2003, - [2004] = 2004, - [2005] = 2005, - [2006] = 525, - [2007] = 1937, - [2008] = 1869, - [2009] = 2009, - [2010] = 2010, - [2011] = 2011, - [2012] = 2012, - [2013] = 2013, - [2014] = 2014, - [2015] = 2015, - [2016] = 2016, - [2017] = 509, - [2018] = 508, - [2019] = 506, - [2020] = 2020, - [2021] = 503, + [2002] = 2001, + [2003] = 2001, + [2004] = 350, + [2005] = 354, + [2006] = 356, + [2007] = 492, + [2008] = 2001, + [2009] = 510, + [2010] = 521, + [2011] = 2001, + [2012] = 520, + [2013] = 2001, + [2014] = 349, + [2015] = 502, + [2016] = 490, + [2017] = 2017, + [2018] = 527, + [2019] = 1843, + [2020] = 503, + [2021] = 489, [2022] = 2022, - [2023] = 2023, - [2024] = 2024, - [2025] = 501, + [2023] = 487, + [2024] = 486, + [2025] = 1852, [2026] = 2026, - [2027] = 2027, - [2028] = 433, - [2029] = 2029, - [2030] = 432, - [2031] = 412, + [2027] = 485, + [2028] = 523, + [2029] = 483, + [2030] = 2030, + [2031] = 519, [2032] = 2032, - [2033] = 540, + [2033] = 2033, [2034] = 2034, - [2035] = 2035, - [2036] = 2036, + [2035] = 1904, + [2036] = 1991, [2037] = 2037, - [2038] = 1902, - [2039] = 505, - [2040] = 541, - [2041] = 1873, - [2042] = 500, - [2043] = 2043, - [2044] = 2043, - [2045] = 2043, - [2046] = 485, - [2047] = 2047, - [2048] = 413, - [2049] = 518, + [2038] = 1954, + [2039] = 475, + [2040] = 476, + [2041] = 1912, + [2042] = 1905, + [2043] = 1991, + [2044] = 1902, + [2045] = 2045, + [2046] = 1858, + [2047] = 513, + [2048] = 515, + [2049] = 477, [2050] = 2050, [2051] = 2051, - [2052] = 2052, - [2053] = 426, - [2054] = 2054, - [2055] = 2055, - [2056] = 2056, + [2052] = 1962, + [2053] = 518, + [2054] = 517, + [2055] = 351, + [2056] = 525, [2057] = 2057, - [2058] = 497, - [2059] = 2043, - [2060] = 461, - [2061] = 2061, - [2062] = 496, - [2063] = 495, - [2064] = 466, - [2065] = 2065, - [2066] = 2066, - [2067] = 1875, - [2068] = 2068, - [2069] = 494, - [2070] = 1843, - [2071] = 2071, - [2072] = 2072, - [2073] = 2073, + [2058] = 2058, + [2059] = 2059, + [2060] = 472, + [2061] = 1853, + [2062] = 2062, + [2063] = 364, + [2064] = 478, + [2065] = 506, + [2066] = 364, + [2067] = 1991, + [2068] = 1964, + [2069] = 1904, + [2070] = 1991, + [2071] = 362, + [2072] = 357, + [2073] = 504, [2074] = 2074, - [2075] = 2043, - [2076] = 2076, - [2077] = 2077, + [2075] = 505, + [2076] = 1991, + [2077] = 358, [2078] = 2078, [2079] = 2079, - [2080] = 539, + [2080] = 1873, [2081] = 2081, [2082] = 2082, [2083] = 2083, - [2084] = 519, + [2084] = 1959, [2085] = 2085, - [2086] = 523, + [2086] = 1844, [2087] = 2087, - [2088] = 527, - [2089] = 528, - [2090] = 530, - [2091] = 2091, + [2088] = 2088, + [2089] = 2089, + [2090] = 1848, + [2091] = 2088, [2092] = 2092, - [2093] = 531, - [2094] = 514, - [2095] = 529, + [2093] = 2093, + [2094] = 2094, + [2095] = 2095, [2096] = 2096, [2097] = 2097, - [2098] = 2098, + [2098] = 337, [2099] = 2099, - [2100] = 2100, - [2101] = 502, - [2102] = 504, - [2103] = 1864, - [2104] = 516, - [2105] = 1845, - [2106] = 1840, + [2100] = 1903, + [2101] = 2088, + [2102] = 1849, + [2103] = 2103, + [2104] = 166, + [2105] = 2105, + [2106] = 1940, [2107] = 2107, - [2108] = 1853, + [2108] = 2108, [2109] = 2109, - [2110] = 2043, - [2111] = 2111, - [2112] = 2112, - [2113] = 2113, - [2114] = 1842, + [2110] = 2110, + [2111] = 1964, + [2112] = 1850, + [2113] = 157, + [2114] = 2114, [2115] = 2115, - [2116] = 1848, - [2117] = 1849, - [2118] = 2055, - [2119] = 2055, - [2120] = 1839, - [2121] = 448, - [2122] = 1850, + [2116] = 2116, + [2117] = 2117, + [2118] = 2118, + [2119] = 2119, + [2120] = 2120, + [2121] = 2121, + [2122] = 2122, [2123] = 2123, [2124] = 2124, - [2125] = 1852, + [2125] = 2125, [2126] = 2126, [2127] = 2127, [2128] = 2128, [2129] = 2129, [2130] = 2130, [2131] = 2131, - [2132] = 426, - [2133] = 2133, - [2134] = 1865, + [2132] = 157, + [2133] = 166, + [2134] = 2134, [2135] = 2135, - [2136] = 2055, + [2136] = 2136, [2137] = 2137, [2138] = 2138, [2139] = 2139, @@ -6085,2379 +6092,2379 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2142] = 2142, [2143] = 2143, [2144] = 2144, - [2145] = 2055, + [2145] = 2145, [2146] = 2146, - [2147] = 544, + [2147] = 2147, [2148] = 2148, - [2149] = 542, - [2150] = 2150, - [2151] = 513, - [2152] = 1891, + [2149] = 2149, + [2150] = 1876, + [2151] = 2151, + [2152] = 2152, [2153] = 2153, - [2154] = 492, + [2154] = 2088, [2155] = 2155, [2156] = 2156, - [2157] = 2157, + [2157] = 1857, [2158] = 2158, - [2159] = 2159, - [2160] = 2055, - [2161] = 396, - [2162] = 498, - [2163] = 524, - [2164] = 1477, - [2165] = 1903, - [2166] = 2055, - [2167] = 306, - [2168] = 1887, - [2169] = 1889, + [2159] = 1866, + [2160] = 2160, + [2161] = 2161, + [2162] = 1870, + [2163] = 1852, + [2164] = 1407, + [2165] = 2165, + [2166] = 1843, + [2167] = 337, + [2168] = 2168, + [2169] = 2169, [2170] = 2170, - [2171] = 306, - [2172] = 1903, - [2173] = 1853, - [2174] = 1869, - [2175] = 1524, - [2176] = 303, + [2171] = 2171, + [2172] = 1854, + [2173] = 1858, + [2174] = 2174, + [2175] = 1853, + [2176] = 1842, [2177] = 2177, - [2178] = 2178, - [2179] = 1477, - [2180] = 2180, - [2181] = 2181, - [2182] = 1949, - [2183] = 1922, - [2184] = 1524, - [2185] = 1878, - [2186] = 1924, - [2187] = 2178, - [2188] = 2181, - [2189] = 1947, - [2190] = 340, - [2191] = 1891, - [2192] = 1875, - [2193] = 2181, - [2194] = 2181, - [2195] = 1953, - [2196] = 2196, - [2197] = 1961, - [2198] = 1865, - [2199] = 2199, - [2200] = 303, - [2201] = 2201, - [2202] = 2202, - [2203] = 2203, - [2204] = 340, - [2205] = 2133, - [2206] = 2076, - [2207] = 2129, - [2208] = 2056, - [2209] = 2057, - [2210] = 542, - [2211] = 2211, - [2212] = 2061, - [2213] = 513, - [2214] = 2083, - [2215] = 2158, - [2216] = 2065, - [2217] = 2077, - [2218] = 2066, - [2219] = 492, - [2220] = 2087, - [2221] = 2096, - [2222] = 2107, - [2223] = 2128, - [2224] = 2140, - [2225] = 2141, - [2226] = 2156, - [2227] = 2227, - [2228] = 2157, - [2229] = 2229, - [2230] = 2037, - [2231] = 448, - [2232] = 2100, - [2233] = 2068, - [2234] = 2111, - [2235] = 541, - [2236] = 2112, - [2237] = 2113, - [2238] = 2115, - [2239] = 2143, - [2240] = 2047, - [2241] = 2109, - [2242] = 1658, - [2243] = 2097, - [2244] = 485, - [2245] = 2099, - [2246] = 2153, - [2247] = 2138, - [2248] = 2229, - [2249] = 527, - [2250] = 2098, - [2251] = 1994, - [2252] = 2126, - [2253] = 2229, - [2254] = 1878, - [2255] = 529, - [2256] = 485, - [2257] = 2257, - [2258] = 495, - [2259] = 496, - [2260] = 2123, - [2261] = 544, - [2262] = 2130, - [2263] = 518, - [2264] = 514, - [2265] = 2010, - [2266] = 2011, - [2267] = 519, - [2268] = 523, - [2269] = 525, - [2270] = 396, - [2271] = 531, - [2272] = 1992, - [2273] = 2082, - [2274] = 1477, - [2275] = 498, - [2276] = 2131, - [2277] = 2081, - [2278] = 509, - [2279] = 2076, - [2280] = 499, - [2281] = 2054, - [2282] = 2074, - [2283] = 528, - [2284] = 1524, - [2285] = 2073, - [2286] = 1477, - [2287] = 525, - [2288] = 527, - [2289] = 2135, - [2290] = 528, - [2291] = 432, - [2292] = 2137, - [2293] = 2177, - [2294] = 508, - [2295] = 1993, - [2296] = 1995, - [2297] = 530, - [2298] = 531, - [2299] = 1997, - [2300] = 1996, - [2301] = 2001, - [2302] = 502, - [2303] = 2052, - [2304] = 2139, - [2305] = 506, - [2306] = 2142, - [2307] = 1889, - [2308] = 413, - [2309] = 412, - [2310] = 2124, - [2311] = 1887, - [2312] = 2129, - [2313] = 2127, - [2314] = 2126, - [2315] = 2315, - [2316] = 2051, - [2317] = 2150, - [2318] = 2005, - [2319] = 1817, - [2320] = 2050, - [2321] = 433, - [2322] = 2072, - [2323] = 504, - [2324] = 540, - [2325] = 505, - [2326] = 2155, - [2327] = 448, - [2328] = 2071, - [2329] = 2013, - [2330] = 2012, - [2331] = 2009, - [2332] = 2146, - [2333] = 523, - [2334] = 529, - [2335] = 524, - [2336] = 2148, - [2337] = 1519, - [2338] = 1517, - [2339] = 1507, - [2340] = 1924, - [2341] = 1825, - [2342] = 516, - [2343] = 1882, - [2344] = 503, - [2345] = 501, - [2346] = 2085, - [2347] = 1991, - [2348] = 500, - [2349] = 497, - [2350] = 1902, - [2351] = 496, - [2352] = 461, - [2353] = 495, - [2354] = 530, - [2355] = 2355, - [2356] = 466, - [2357] = 539, + [2178] = 2037, + [2179] = 2017, + [2180] = 362, + [2181] = 486, + [2182] = 487, + [2183] = 362, + [2184] = 488, + [2185] = 2185, + [2186] = 489, + [2187] = 490, + [2188] = 492, + [2189] = 2189, + [2190] = 1998, + [2191] = 1902, + [2192] = 350, + [2193] = 513, + [2194] = 2074, + [2195] = 1973, + [2196] = 504, + [2197] = 503, + [2198] = 1995, + [2199] = 2032, + [2200] = 2033, + [2201] = 502, + [2202] = 2037, + [2203] = 515, + [2204] = 500, + [2205] = 499, + [2206] = 525, + [2207] = 2078, + [2208] = 1994, + [2209] = 484, + [2210] = 1993, + [2211] = 498, + [2212] = 497, + [2213] = 2045, + [2214] = 2050, + [2215] = 2051, + [2216] = 476, + [2217] = 2057, + [2218] = 497, + [2219] = 2058, + [2220] = 2059, + [2221] = 490, + [2222] = 1996, + [2223] = 1962, + [2224] = 1489, + [2225] = 1857, + [2226] = 2226, + [2227] = 483, + [2228] = 1954, + [2229] = 492, + [2230] = 510, + [2231] = 1912, + [2232] = 2232, + [2233] = 478, + [2234] = 2026, + [2235] = 1986, + [2236] = 498, + [2237] = 351, + [2238] = 2000, + [2239] = 507, + [2240] = 499, + [2241] = 2030, + [2242] = 527, + [2243] = 358, + [2244] = 2022, + [2245] = 477, + [2246] = 476, + [2247] = 2034, + [2248] = 527, + [2249] = 2249, + [2250] = 1985, + [2251] = 1969, + [2252] = 354, + [2253] = 357, + [2254] = 2254, + [2255] = 2000, + [2256] = 356, + [2257] = 500, + [2258] = 502, + [2259] = 2032, + [2260] = 2022, + [2261] = 503, + [2262] = 504, + [2263] = 2033, + [2264] = 1964, + [2265] = 2265, + [2266] = 1905, + [2267] = 505, + [2268] = 506, + [2269] = 349, + [2270] = 519, + [2271] = 2034, + [2272] = 2030, + [2273] = 2026, + [2274] = 475, + [2275] = 507, + [2276] = 1969, + [2277] = 2017, + [2278] = 1870, + [2279] = 2279, + [2280] = 1996, + [2281] = 525, + [2282] = 1993, + [2283] = 1994, + [2284] = 472, + [2285] = 1967, + [2286] = 1995, + [2287] = 2045, + [2288] = 2050, + [2289] = 1971, + [2290] = 2051, + [2291] = 1972, + [2292] = 1990, + [2293] = 1973, + [2294] = 1998, + [2295] = 2062, + [2296] = 1977, + [2297] = 2057, + [2298] = 1489, + [2299] = 1989, + [2300] = 523, + [2301] = 2058, + [2302] = 2059, + [2303] = 472, + [2304] = 513, + [2305] = 517, + [2306] = 518, + [2307] = 2307, + [2308] = 351, + [2309] = 1876, + [2310] = 475, + [2311] = 515, + [2312] = 1988, + [2313] = 1989, + [2314] = 1990, + [2315] = 1988, + [2316] = 1985, + [2317] = 1986, + [2318] = 1987, + [2319] = 477, + [2320] = 2189, + [2321] = 506, + [2322] = 349, + [2323] = 505, + [2324] = 1407, + [2325] = 520, + [2326] = 521, + [2327] = 1987, + [2328] = 517, + [2329] = 1967, + [2330] = 518, + [2331] = 488, + [2332] = 519, + [2333] = 520, + [2334] = 1971, + [2335] = 1972, + [2336] = 487, + [2337] = 521, + [2338] = 354, + [2339] = 486, + [2340] = 358, + [2341] = 523, + [2342] = 485, + [2343] = 1866, + [2344] = 485, + [2345] = 2345, + [2346] = 484, + [2347] = 489, + [2348] = 478, + [2349] = 1903, + [2350] = 483, + [2351] = 356, + [2352] = 357, + [2353] = 350, + [2354] = 510, + [2355] = 1940, + [2356] = 2168, + [2357] = 2357, [2358] = 2358, - [2359] = 2036, - [2360] = 1998, - [2361] = 2361, - [2362] = 396, - [2363] = 2229, - [2364] = 509, - [2365] = 519, - [2366] = 494, - [2367] = 1999, - [2368] = 2229, - [2369] = 2000, - [2370] = 508, - [2371] = 2079, + [2359] = 2148, + [2360] = 1480, + [2361] = 2143, + [2362] = 2139, + [2363] = 2156, + [2364] = 1439, + [2365] = 1477, + [2366] = 2145, + [2367] = 2146, + [2368] = 1954, + [2369] = 2358, + [2370] = 2089, + [2371] = 2149, [2372] = 2372, - [2373] = 2229, - [2374] = 2374, - [2375] = 506, - [2376] = 466, - [2377] = 461, - [2378] = 503, - [2379] = 2178, - [2380] = 2000, - [2381] = 1999, - [2382] = 1998, - [2383] = 433, - [2384] = 501, - [2385] = 541, - [2386] = 2078, - [2387] = 1922, - [2388] = 2091, - [2389] = 2083, - [2390] = 2082, - [2391] = 2081, - [2392] = 1903, - [2393] = 2074, - [2394] = 2073, - [2395] = 2072, - [2396] = 2071, - [2397] = 514, - [2398] = 2004, - [2399] = 500, - [2400] = 2003, - [2401] = 432, - [2402] = 524, - [2403] = 2024, - [2404] = 2002, - [2405] = 497, - [2406] = 2014, - [2407] = 412, - [2408] = 1937, - [2409] = 505, - [2410] = 504, - [2411] = 2015, - [2412] = 2178, - [2413] = 2413, - [2414] = 2035, - [2415] = 2144, - [2416] = 2026, - [2417] = 1504, - [2418] = 1502, - [2419] = 1499, - [2420] = 502, - [2421] = 499, - [2422] = 1891, - [2423] = 413, - [2424] = 2085, - [2425] = 2016, - [2426] = 498, - [2427] = 518, - [2428] = 2020, - [2429] = 2315, - [2430] = 2034, - [2431] = 2001, - [2432] = 492, - [2433] = 2022, - [2434] = 544, - [2435] = 1996, - [2436] = 513, - [2437] = 2036, - [2438] = 2035, - [2439] = 2034, - [2440] = 2032, - [2441] = 2029, - [2442] = 2027, - [2443] = 2026, - [2444] = 2024, - [2445] = 2023, - [2446] = 539, - [2447] = 540, - [2448] = 2092, - [2449] = 2159, - [2450] = 2032, - [2451] = 1995, - [2452] = 2023, - [2453] = 2085, - [2454] = 516, - [2455] = 542, - [2456] = 2091, - [2457] = 494, - [2458] = 1993, - [2459] = 2029, - [2460] = 2027, - [2461] = 1992, - [2462] = 2127, - [2463] = 2011, + [2373] = 1818, + [2374] = 1959, + [2375] = 2083, + [2376] = 2087, + [2377] = 2158, + [2378] = 2093, + [2379] = 2085, + [2380] = 2171, + [2381] = 2155, + [2382] = 2097, + [2383] = 2185, + [2384] = 2144, + [2385] = 2358, + [2386] = 2386, + [2387] = 2152, + [2388] = 2388, + [2389] = 2136, + [2390] = 2390, + [2391] = 2160, + [2392] = 2161, + [2393] = 1407, + [2394] = 1962, + [2395] = 2120, + [2396] = 1903, + [2397] = 2089, + [2398] = 1904, + [2399] = 2141, + [2400] = 2140, + [2401] = 2126, + [2402] = 1816, + [2403] = 2169, + [2404] = 2170, + [2405] = 1912, + [2406] = 2142, + [2407] = 2082, + [2408] = 2358, + [2409] = 2092, + [2410] = 2131, + [2411] = 2081, + [2412] = 1905, + [2413] = 2129, + [2414] = 2135, + [2415] = 2415, + [2416] = 2079, + [2417] = 1469, + [2418] = 1428, + [2419] = 1427, + [2420] = 2134, + [2421] = 2128, + [2422] = 2125, + [2423] = 2147, + [2424] = 2358, + [2425] = 1471, + [2426] = 2123, + [2427] = 2137, + [2428] = 2122, + [2429] = 2138, + [2430] = 2118, + [2431] = 2189, + [2432] = 2432, + [2433] = 2130, + [2434] = 2117, + [2435] = 2127, + [2436] = 2116, + [2437] = 2114, + [2438] = 2110, + [2439] = 2432, + [2440] = 2109, + [2441] = 1407, + [2442] = 2108, + [2443] = 2096, + [2444] = 2124, + [2445] = 2121, + [2446] = 2151, + [2447] = 2358, + [2448] = 1489, + [2449] = 2119, + [2450] = 2095, + [2451] = 2115, + [2452] = 1902, + [2453] = 2165, + [2454] = 2174, + [2455] = 2189, + [2456] = 2105, + [2457] = 2153, + [2458] = 2103, + [2459] = 1964, + [2460] = 2107, + [2461] = 2461, + [2462] = 2099, + [2463] = 2089, [2464] = 2464, - [2465] = 2010, - [2466] = 2466, - [2467] = 1947, - [2468] = 2257, + [2465] = 2094, + [2466] = 1907, + [2467] = 2467, + [2468] = 2386, [2469] = 2469, - [2470] = 2470, - [2471] = 1907, - [2472] = 1902, - [2473] = 2473, + [2470] = 2279, + [2471] = 2471, + [2472] = 2472, + [2473] = 1900, [2474] = 2474, - [2475] = 1839, - [2476] = 2476, - [2477] = 2477, - [2478] = 2478, - [2479] = 2479, - [2480] = 1953, - [2481] = 1842, - [2482] = 2482, - [2483] = 2483, + [2475] = 2078, + [2476] = 2226, + [2477] = 2461, + [2478] = 2265, + [2479] = 2177, + [2480] = 2480, + [2481] = 2254, + [2482] = 1778, + [2483] = 1977, [2484] = 2484, - [2485] = 1949, - [2486] = 2486, + [2485] = 2485, + [2486] = 2232, [2487] = 2487, [2488] = 2488, [2489] = 2489, [2490] = 2490, - [2491] = 2469, - [2492] = 1524, - [2493] = 2493, - [2494] = 1908, - [2495] = 1913, - [2496] = 2496, - [2497] = 303, - [2498] = 1935, - [2499] = 2499, - [2500] = 2500, - [2501] = 2501, + [2491] = 1913, + [2492] = 1914, + [2493] = 1915, + [2494] = 2494, + [2495] = 2495, + [2496] = 1783, + [2497] = 2497, + [2498] = 2498, + [2499] = 1954, + [2500] = 2357, + [2501] = 2074, [2502] = 2502, - [2503] = 2372, - [2504] = 2180, - [2505] = 1840, - [2506] = 1845, - [2507] = 1843, - [2508] = 2469, - [2509] = 1916, + [2503] = 2503, + [2504] = 1959, + [2505] = 1892, + [2506] = 2506, + [2507] = 2507, + [2508] = 2508, + [2509] = 2509, [2510] = 2510, - [2511] = 1928, - [2512] = 1918, + [2511] = 2511, + [2512] = 2512, [2513] = 2513, [2514] = 2514, - [2515] = 2515, - [2516] = 2516, + [2515] = 1853, + [2516] = 1844, [2517] = 2517, - [2518] = 2518, - [2519] = 1777, - [2520] = 1848, - [2521] = 2521, - [2522] = 2469, - [2523] = 2469, + [2518] = 1883, + [2519] = 1854, + [2520] = 2507, + [2521] = 1908, + [2522] = 2522, + [2523] = 2523, [2524] = 2524, - [2525] = 1852, - [2526] = 2526, + [2525] = 2432, + [2526] = 2388, [2527] = 2527, - [2528] = 1850, - [2529] = 1849, - [2530] = 1912, - [2531] = 2170, - [2532] = 1905, - [2533] = 1904, - [2534] = 2203, - [2535] = 2202, + [2528] = 2528, + [2529] = 2529, + [2530] = 2530, + [2531] = 1852, + [2532] = 1843, + [2533] = 1842, + [2534] = 1962, + [2535] = 2535, [2536] = 2536, - [2537] = 1922, + [2537] = 1910, [2538] = 2538, - [2539] = 2539, - [2540] = 2540, - [2541] = 2541, - [2542] = 2542, - [2543] = 2543, + [2539] = 1850, + [2540] = 1849, + [2541] = 1848, + [2542] = 1873, + [2543] = 1916, [2544] = 2544, - [2545] = 2545, + [2545] = 2307, [2546] = 2546, - [2547] = 2547, + [2547] = 2507, [2548] = 2548, - [2549] = 2469, - [2550] = 2201, - [2551] = 1940, - [2552] = 2199, - [2553] = 1925, - [2554] = 2554, + [2549] = 2549, + [2550] = 2550, + [2551] = 2551, + [2552] = 2552, + [2553] = 1940, + [2554] = 1489, [2555] = 2555, - [2556] = 2227, + [2556] = 166, [2557] = 2557, - [2558] = 2315, + [2558] = 157, [2559] = 2559, - [2560] = 2361, - [2561] = 1779, - [2562] = 2562, + [2560] = 2560, + [2561] = 2561, + [2562] = 1858, [2563] = 2563, [2564] = 2564, - [2565] = 2565, - [2566] = 2566, - [2567] = 1937, - [2568] = 1780, - [2569] = 2569, - [2570] = 306, - [2571] = 1921, - [2572] = 1914, - [2573] = 1911, + [2565] = 1893, + [2566] = 2062, + [2567] = 2507, + [2568] = 2568, + [2569] = 1898, + [2570] = 1894, + [2571] = 1779, + [2572] = 1895, + [2573] = 1896, [2574] = 2574, - [2575] = 1961, - [2576] = 1924, + [2575] = 2575, + [2576] = 2576, [2577] = 2577, - [2578] = 2196, - [2579] = 2478, - [2580] = 2555, - [2581] = 2557, - [2582] = 2085, - [2583] = 2358, - [2584] = 2361, - [2585] = 1477, + [2578] = 2507, + [2579] = 2507, + [2580] = 2580, + [2581] = 2552, + [2582] = 2484, + [2583] = 2510, + [2584] = 2089, + [2585] = 2388, [2586] = 2586, [2587] = 2587, - [2588] = 2092, - [2589] = 2085, - [2590] = 1864, - [2591] = 2009, - [2592] = 2479, - [2593] = 2012, - [2594] = 2013, - [2595] = 2050, - [2596] = 2051, - [2597] = 2052, - [2598] = 2054, - [2599] = 2056, - [2600] = 2057, - [2601] = 2061, - [2602] = 2065, - [2603] = 2066, - [2604] = 2068, - [2605] = 2123, - [2606] = 2130, - [2607] = 2131, - [2608] = 2133, - [2609] = 2135, - [2610] = 2137, - [2611] = 2139, - [2612] = 2142, - [2613] = 2143, - [2614] = 2144, - [2615] = 2482, - [2616] = 2483, - [2617] = 2146, - [2618] = 2148, - [2619] = 1991, - [2620] = 2155, - [2621] = 2098, - [2622] = 2077, - [2623] = 2087, - [2624] = 2490, - [2625] = 2096, - [2626] = 2107, - [2627] = 2128, - [2628] = 2493, - [2629] = 2100, - [2630] = 2141, - [2631] = 2156, - [2632] = 2157, - [2633] = 2037, - [2634] = 2047, - [2635] = 2109, - [2636] = 2097, - [2637] = 2099, - [2638] = 2022, - [2639] = 2020, - [2640] = 2016, - [2641] = 2015, - [2642] = 2014, - [2643] = 1961, - [2644] = 2002, - [2645] = 2003, - [2646] = 2004, - [2647] = 2078, - [2648] = 2079, - [2649] = 1873, - [2650] = 2005, - [2651] = 2150, - [2652] = 2153, - [2653] = 2115, - [2654] = 2113, - [2655] = 2112, - [2656] = 2111, - [2657] = 1997, - [2658] = 2140, - [2659] = 2124, - [2660] = 2138, - [2661] = 1994, - [2662] = 1947, - [2663] = 2464, - [2664] = 2159, - [2665] = 2158, - [2666] = 2473, - [2667] = 2355, + [2588] = 2415, + [2589] = 1407, + [2590] = 2095, + [2591] = 2089, + [2592] = 2508, + [2593] = 2156, + [2594] = 2139, + [2595] = 2136, + [2596] = 2094, + [2597] = 2092, + [2598] = 2158, + [2599] = 2085, + [2600] = 2171, + [2601] = 2144, + [2602] = 2152, + [2603] = 2160, + [2604] = 2161, + [2605] = 2120, + [2606] = 2126, + [2607] = 2142, + [2608] = 2155, + [2609] = 2079, + [2610] = 2147, + [2611] = 2137, + [2612] = 2130, + [2613] = 2127, + [2614] = 2124, + [2615] = 2490, + [2616] = 2489, + [2617] = 2121, + [2618] = 2119, + [2619] = 2115, + [2620] = 2105, + [2621] = 2103, + [2622] = 2174, + [2623] = 2096, + [2624] = 2480, + [2625] = 2108, + [2626] = 2109, + [2627] = 2110, + [2628] = 2474, + [2629] = 2114, + [2630] = 2116, + [2631] = 2165, + [2632] = 2118, + [2633] = 2122, + [2634] = 2123, + [2635] = 2125, + [2636] = 2128, + [2637] = 2134, + [2638] = 2135, + [2639] = 2138, + [2640] = 2140, + [2641] = 2141, + [2642] = 2143, + [2643] = 2145, + [2644] = 2146, + [2645] = 2083, + [2646] = 2078, + [2647] = 2087, + [2648] = 2093, + [2649] = 2097, + [2650] = 2169, + [2651] = 2168, + [2652] = 2107, + [2653] = 2148, + [2654] = 2149, + [2655] = 2151, + [2656] = 2170, + [2657] = 2082, + [2658] = 2117, + [2659] = 2131, + [2660] = 2099, + [2661] = 2081, + [2662] = 2464, + [2663] = 2153, + [2664] = 1977, + [2665] = 2129, + [2666] = 2372, + [2667] = 2506, [2668] = 2587, - [2669] = 2543, - [2670] = 1949, - [2671] = 1953, - [2672] = 2566, - [2673] = 2203, - [2674] = 2202, - [2675] = 2489, - [2676] = 2361, - [2677] = 2201, - [2678] = 2199, - [2679] = 1953, - [2680] = 2196, - [2681] = 2565, - [2682] = 2516, - [2683] = 2500, - [2684] = 2501, - [2685] = 1961, - [2686] = 1949, - [2687] = 2085, - [2688] = 2170, - [2689] = 2527, - [2690] = 2536, - [2691] = 1947, - [2692] = 2538, - [2693] = 2539, - [2694] = 2540, - [2695] = 2541, - [2696] = 2542, - [2697] = 2544, - [2698] = 2545, - [2699] = 2546, - [2700] = 2547, - [2701] = 2548, - [2702] = 2559, - [2703] = 2078, - [2704] = 2066, - [2705] = 2068, - [2706] = 2496, - [2707] = 2555, - [2708] = 2123, - [2709] = 2502, - [2710] = 2564, - [2711] = 2131, - [2712] = 2133, - [2713] = 2135, - [2714] = 2137, - [2715] = 2113, - [2716] = 2139, - [2717] = 2142, - [2718] = 2143, - [2719] = 2196, - [2720] = 2144, - [2721] = 2146, - [2722] = 2148, - [2723] = 1991, - [2724] = 2155, - [2725] = 2124, - [2726] = 2199, - [2727] = 2211, - [2728] = 2554, - [2729] = 2574, - [2730] = 2201, - [2731] = 1925, - [2732] = 2202, - [2733] = 2138, - [2734] = 1940, - [2735] = 2203, - [2736] = 2098, - [2737] = 2100, - [2738] = 2077, - [2739] = 2087, + [2669] = 2575, + [2670] = 2074, + [2671] = 2062, + [2672] = 2563, + [2673] = 2279, + [2674] = 2226, + [2675] = 2265, + [2676] = 2177, + [2677] = 2560, + [2678] = 2254, + [2679] = 2388, + [2680] = 2580, + [2681] = 2495, + [2682] = 2062, + [2683] = 2551, + [2684] = 2498, + [2685] = 2074, + [2686] = 2078, + [2687] = 2089, + [2688] = 2307, + [2689] = 2548, + [2690] = 2538, + [2691] = 1977, + [2692] = 2536, + [2693] = 2535, + [2694] = 2561, + [2695] = 2530, + [2696] = 2529, + [2697] = 2528, + [2698] = 2527, + [2699] = 2524, + [2700] = 2523, + [2701] = 2522, + [2702] = 2544, + [2703] = 2160, + [2704] = 2152, + [2705] = 2160, + [2706] = 2161, + [2707] = 2120, + [2708] = 2513, + [2709] = 2503, + [2710] = 2136, + [2711] = 2126, + [2712] = 2142, + [2713] = 2155, + [2714] = 2079, + [2715] = 2551, + [2716] = 2147, + [2717] = 2137, + [2718] = 2130, + [2719] = 1904, + [2720] = 2127, + [2721] = 2124, + [2722] = 2121, + [2723] = 2119, + [2724] = 2115, + [2725] = 2105, + [2726] = 2103, + [2727] = 2131, + [2728] = 2517, + [2729] = 2484, + [2730] = 2390, + [2731] = 1883, + [2732] = 2254, + [2733] = 2546, + [2734] = 1908, + [2735] = 2177, + [2736] = 2099, + [2737] = 2265, + [2738] = 2174, + [2739] = 2165, [2740] = 2096, - [2741] = 2061, - [2742] = 2057, - [2743] = 2056, - [2744] = 2054, - [2745] = 2052, - [2746] = 2051, - [2747] = 2050, - [2748] = 2130, - [2749] = 2013, - [2750] = 2012, - [2751] = 2009, - [2752] = 2107, - [2753] = 2128, - [2754] = 1904, - [2755] = 2140, - [2756] = 1905, - [2757] = 2141, - [2758] = 2156, - [2759] = 2157, - [2760] = 2037, - [2761] = 2047, - [2762] = 2109, - [2763] = 2097, - [2764] = 2099, - [2765] = 2158, - [2766] = 2496, - [2767] = 1994, - [2768] = 2526, - [2769] = 2587, - [2770] = 2770, - [2771] = 2476, - [2772] = 2085, + [2741] = 2171, + [2742] = 2085, + [2743] = 2158, + [2744] = 2092, + [2745] = 2094, + [2746] = 2226, + [2747] = 2136, + [2748] = 2139, + [2749] = 2156, + [2750] = 2081, + [2751] = 2279, + [2752] = 2108, + [2753] = 2109, + [2754] = 1910, + [2755] = 2110, + [2756] = 1916, + [2757] = 2114, + [2758] = 2116, + [2759] = 2117, + [2760] = 2118, + [2761] = 2122, + [2762] = 2123, + [2763] = 2125, + [2764] = 2128, + [2765] = 2134, + [2766] = 2135, + [2767] = 2586, + [2768] = 2550, + [2769] = 2129, + [2770] = 2512, + [2771] = 2555, + [2772] = 2587, [2773] = 2773, - [2774] = 2586, - [2775] = 2413, - [2776] = 1891, - [2777] = 2587, - [2778] = 2500, - [2779] = 2092, - [2780] = 2517, - [2781] = 2773, - [2782] = 2773, - [2783] = 2773, - [2784] = 2773, - [2785] = 2773, - [2786] = 2773, - [2787] = 2773, - [2788] = 2770, - [2789] = 2770, - [2790] = 2773, - [2791] = 2566, - [2792] = 2009, - [2793] = 2012, - [2794] = 1499, - [2795] = 2159, - [2796] = 1502, - [2797] = 1504, - [2798] = 2111, - [2799] = 2065, - [2800] = 2077, - [2801] = 2518, - [2802] = 2022, - [2803] = 2020, - [2804] = 2016, - [2805] = 1507, - [2806] = 2015, - [2807] = 2014, - [2808] = 1517, - [2809] = 2002, - [2810] = 2003, - [2811] = 2112, - [2812] = 2004, - [2813] = 1912, - [2814] = 2514, - [2815] = 2513, - [2816] = 2079, - [2817] = 1918, - [2818] = 1928, - [2819] = 2510, - [2820] = 1916, - [2821] = 1519, - [2822] = 1658, - [2823] = 2486, - [2824] = 1882, - [2825] = 1878, - [2826] = 1889, - [2827] = 1887, - [2828] = 1524, - [2829] = 303, - [2830] = 2050, - [2831] = 306, - [2832] = 2170, - [2833] = 1913, - [2834] = 1908, - [2835] = 2051, - [2836] = 2005, - [2837] = 2150, - [2838] = 2052, - [2839] = 1935, - [2840] = 2115, - [2841] = 2500, - [2842] = 2054, - [2843] = 2488, - [2844] = 2487, - [2845] = 2153, - [2846] = 2056, - [2847] = 1921, - [2848] = 2057, - [2849] = 2562, - [2850] = 1914, - [2851] = 2061, - [2852] = 2153, - [2853] = 2065, - [2854] = 2066, - [2855] = 2068, - [2856] = 2123, - [2857] = 2130, - [2858] = 2131, - [2859] = 1911, - [2860] = 2133, - [2861] = 2135, - [2862] = 2115, - [2863] = 2113, - [2864] = 2112, - [2865] = 2111, - [2866] = 2577, - [2867] = 2477, - [2868] = 2524, - [2869] = 2092, - [2870] = 2137, - [2871] = 2150, - [2872] = 2139, - [2873] = 2005, - [2874] = 2142, - [2875] = 2143, - [2876] = 2496, - [2877] = 1997, - [2878] = 2144, - [2879] = 2474, - [2880] = 1994, - [2881] = 2555, - [2882] = 1907, - [2883] = 2146, - [2884] = 2148, - [2885] = 1997, - [2886] = 2470, - [2887] = 1991, - [2888] = 2079, - [2889] = 2484, - [2890] = 2155, - [2891] = 2257, - [2892] = 2098, - [2893] = 2100, - [2894] = 2227, - [2895] = 2087, - [2896] = 2013, - [2897] = 2499, - [2898] = 2096, - [2899] = 2107, - [2900] = 2128, - [2901] = 2180, - [2902] = 2140, - [2903] = 2372, - [2904] = 2466, - [2905] = 2563, - [2906] = 2078, - [2907] = 2099, - [2908] = 2521, - [2909] = 2097, - [2910] = 2109, - [2911] = 2004, - [2912] = 2014, - [2913] = 2015, - [2914] = 2047, - [2915] = 2037, - [2916] = 2003, - [2917] = 2016, - [2918] = 2020, - [2919] = 2022, - [2920] = 2157, - [2921] = 2566, - [2922] = 2156, - [2923] = 2141, - [2924] = 2002, - [2925] = 2515, - [2926] = 2490, - [2927] = 2557, - [2928] = 2536, - [2929] = 2180, - [2930] = 1882, - [2931] = 2358, - [2932] = 2527, - [2933] = 1800, - [2934] = 2479, - [2935] = 2543, - [2936] = 2516, - [2937] = 2937, - [2938] = 1807, - [2939] = 1499, - [2940] = 2510, - [2941] = 1502, - [2942] = 1504, - [2943] = 2489, - [2944] = 1507, - [2945] = 1517, - [2946] = 1519, - [2947] = 1658, - [2948] = 2482, - [2949] = 2473, - [2950] = 303, - [2951] = 306, - [2952] = 2483, - [2953] = 2464, - [2954] = 1798, - [2955] = 2955, - [2956] = 1891, - [2957] = 1903, - [2958] = 1903, - [2959] = 2501, - [2960] = 2493, - [2961] = 2499, - [2962] = 2542, - [2963] = 2539, - [2964] = 2540, - [2965] = 2541, - [2966] = 1889, - [2967] = 2544, - [2968] = 2545, - [2969] = 2546, - [2970] = 2547, - [2971] = 2361, - [2972] = 1887, - [2973] = 2973, - [2974] = 1878, - [2975] = 2565, + [2774] = 2089, + [2775] = 2587, + [2776] = 2776, + [2777] = 2249, + [2778] = 2551, + [2779] = 1903, + [2780] = 2170, + [2781] = 2095, + [2782] = 2497, + [2783] = 2151, + [2784] = 2776, + [2785] = 2776, + [2786] = 2776, + [2787] = 2776, + [2788] = 2776, + [2789] = 2789, + [2790] = 2776, + [2791] = 2776, + [2792] = 2773, + [2793] = 2773, + [2794] = 2169, + [2795] = 2776, + [2796] = 1427, + [2797] = 2153, + [2798] = 1428, + [2799] = 1469, + [2800] = 2149, + [2801] = 2564, + [2802] = 1477, + [2803] = 1439, + [2804] = 2138, + [2805] = 2140, + [2806] = 2141, + [2807] = 2563, + [2808] = 2143, + [2809] = 2145, + [2810] = 2471, + [2811] = 2148, + [2812] = 2146, + [2813] = 2083, + [2814] = 2577, + [2815] = 2574, + [2816] = 2087, + [2817] = 1894, + [2818] = 1898, + [2819] = 2568, + [2820] = 1893, + [2821] = 2093, + [2822] = 2097, + [2823] = 1480, + [2824] = 1471, + [2825] = 2576, + [2826] = 2156, + [2827] = 157, + [2828] = 166, + [2829] = 1912, + [2830] = 2139, + [2831] = 1427, + [2832] = 2307, + [2833] = 1896, + [2834] = 1895, + [2835] = 1428, + [2836] = 1469, + [2837] = 1905, + [2838] = 1902, + [2839] = 2168, + [2840] = 2096, + [2841] = 2461, + [2842] = 2107, + [2843] = 2559, + [2844] = 2557, + [2845] = 1477, + [2846] = 1439, + [2847] = 1480, + [2848] = 2168, + [2849] = 1915, + [2850] = 1471, + [2851] = 2485, + [2852] = 1914, + [2853] = 1904, + [2854] = 2107, + [2855] = 1902, + [2856] = 1905, + [2857] = 1912, + [2858] = 2858, + [2859] = 1489, + [2860] = 157, + [2861] = 1913, + [2862] = 166, + [2863] = 2094, + [2864] = 2148, + [2865] = 2149, + [2866] = 2151, + [2867] = 2514, + [2868] = 2511, + [2869] = 2170, + [2870] = 2549, + [2871] = 2095, + [2872] = 2169, + [2873] = 2092, + [2874] = 2158, + [2875] = 2484, + [2876] = 2085, + [2877] = 2171, + [2878] = 2512, + [2879] = 2509, + [2880] = 2082, + [2881] = 2082, + [2882] = 1892, + [2883] = 2097, + [2884] = 2081, + [2885] = 2144, + [2886] = 2502, + [2887] = 2152, + [2888] = 2093, + [2889] = 2144, + [2890] = 2087, + [2891] = 2161, + [2892] = 2120, + [2893] = 2126, + [2894] = 2142, + [2895] = 2155, + [2896] = 2079, + [2897] = 2147, + [2898] = 2137, + [2899] = 2130, + [2900] = 2127, + [2901] = 2124, + [2902] = 2121, + [2903] = 2119, + [2904] = 2488, + [2905] = 2472, + [2906] = 2083, + [2907] = 2115, + [2908] = 2105, + [2909] = 2103, + [2910] = 2386, + [2911] = 2174, + [2912] = 2165, + [2913] = 2146, + [2914] = 1900, + [2915] = 2471, + [2916] = 2512, + [2917] = 2108, + [2918] = 2145, + [2919] = 2109, + [2920] = 2568, + [2921] = 2110, + [2922] = 2469, + [2923] = 2114, + [2924] = 2116, + [2925] = 2117, + [2926] = 2143, + [2927] = 2118, + [2928] = 2122, + [2929] = 2232, + [2930] = 2123, + [2931] = 2125, + [2932] = 2128, + [2933] = 2487, + [2934] = 2467, + [2935] = 2134, + [2936] = 2135, + [2937] = 2141, + [2938] = 2140, + [2939] = 2939, + [2940] = 1903, + [2941] = 2138, + [2942] = 1907, + [2943] = 2563, + [2944] = 2357, + [2945] = 1964, + [2946] = 2536, + [2947] = 2232, + [2948] = 2498, + [2949] = 2415, + [2950] = 1811, + [2951] = 2464, + [2952] = 1800, + [2953] = 2575, + [2954] = 2508, + [2955] = 2506, + [2956] = 1804, + [2957] = 2490, + [2958] = 2489, + [2959] = 2480, + [2960] = 2474, + [2961] = 2560, + [2962] = 1964, + [2963] = 2535, + [2964] = 2561, + [2965] = 2530, + [2966] = 2529, + [2967] = 2580, + [2968] = 2528, + [2969] = 2527, + [2970] = 2524, + [2971] = 2523, + [2972] = 2522, + [2973] = 1802, + [2974] = 2388, + [2975] = 2495, [2976] = 2548, - [2977] = 1806, - [2978] = 2538, - [2979] = 2355, - [2980] = 1524, - [2981] = 1916, - [2982] = 1908, - [2983] = 2564, - [2984] = 2211, - [2985] = 1940, - [2986] = 1925, - [2987] = 2554, - [2988] = 2358, - [2989] = 2486, - [2990] = 2559, - [2991] = 2586, - [2992] = 2479, - [2993] = 2562, - [2994] = 2482, - [2995] = 2483, - [2996] = 2490, - [2997] = 2493, - [2998] = 2227, - [2999] = 1921, - [3000] = 1914, - [3001] = 1911, - [3002] = 2196, - [3003] = 1777, - [3004] = 2555, - [3005] = 2473, - [3006] = 2201, - [3007] = 2499, - [3008] = 2574, - [3009] = 2202, - [3010] = 2203, - [3011] = 1904, - [3012] = 1912, - [3013] = 2466, - [3014] = 2521, - [3015] = 2515, - [3016] = 2496, - [3017] = 1780, - [3018] = 2565, - [3019] = 1918, - [3020] = 2510, - [3021] = 1935, - [3022] = 2257, - [3023] = 2557, - [3024] = 2484, - [3025] = 2517, - [3026] = 2355, - [3027] = 306, - [3028] = 303, - [3029] = 2563, - [3030] = 2470, - [3031] = 1907, - [3032] = 2474, - [3033] = 2524, - [3034] = 2199, - [3035] = 2477, - [3036] = 2487, - [3037] = 2488, - [3038] = 2500, - [3039] = 1913, - [3040] = 2547, - [3041] = 2546, - [3042] = 1928, - [3043] = 2545, - [3044] = 2544, - [3045] = 2542, - [3046] = 2513, - [3047] = 2541, - [3048] = 2540, - [3049] = 2539, - [3050] = 2538, - [3051] = 2536, - [3052] = 2577, - [3053] = 2514, - [3054] = 2518, - [3055] = 2501, - [3056] = 2476, - [3057] = 2543, - [3058] = 2496, - [3059] = 2464, - [3060] = 2479, - [3061] = 2496, - [3062] = 2482, - [3063] = 2483, - [3064] = 2490, - [3065] = 2493, - [3066] = 2565, - [3067] = 2557, - [3068] = 2502, - [3069] = 2548, - [3070] = 2547, - [3071] = 2546, - [3072] = 2545, - [3073] = 2544, - [3074] = 1779, - [3075] = 2542, - [3076] = 2541, - [3077] = 2526, - [3078] = 2527, - [3079] = 2516, - [3080] = 2372, - [3081] = 2540, - [3082] = 2548, - [3083] = 2489, - [3084] = 2539, - [3085] = 2538, - [3086] = 2536, - [3087] = 2527, - [3088] = 2516, - [3089] = 2489, - [3090] = 2473, - [3091] = 2566, - [3092] = 2170, - [3093] = 1905, - [3094] = 1928, - [3095] = 2372, - [3096] = 1949, - [3097] = 2496, - [3098] = 2502, - [3099] = 2484, - [3100] = 2499, - [3101] = 2515, - [3102] = 2521, - [3103] = 2466, - [3104] = 1912, - [3105] = 1911, - [3106] = 1914, - [3107] = 1921, - [3108] = 2559, - [3109] = 303, - [3110] = 1935, - [3111] = 2554, - [3112] = 1925, - [3113] = 1940, - [3114] = 1953, - [3115] = 1904, - [3116] = 1905, - [3117] = 1873, - [3118] = 2526, - [3119] = 2476, - [3120] = 2518, - [3121] = 2514, - [3122] = 1918, - [3123] = 2510, - [3124] = 1916, - [3125] = 1913, - [3126] = 1908, - [3127] = 2488, - [3128] = 2487, - [3129] = 2477, - [3130] = 2524, - [3131] = 2474, - [3132] = 1907, - [3133] = 2470, - [3134] = 2513, - [3135] = 2563, - [3136] = 1864, - [3137] = 1658, - [3138] = 1519, - [3139] = 1517, - [3140] = 1507, - [3141] = 1504, - [3142] = 1502, - [3143] = 1499, - [3144] = 306, - [3145] = 2227, - [3146] = 2257, - [3147] = 2135, - [3148] = 2157, - [3149] = 2100, - [3150] = 3150, - [3151] = 3150, - [3152] = 1994, - [3153] = 1997, - [3154] = 1524, - [3155] = 3150, - [3156] = 2009, - [3157] = 2012, - [3158] = 2013, - [3159] = 2050, - [3160] = 2051, - [3161] = 2052, - [3162] = 2054, - [3163] = 2056, - [3164] = 2057, - [3165] = 2061, - [3166] = 2065, - [3167] = 2092, - [3168] = 2111, - [3169] = 2066, - [3170] = 2112, - [3171] = 2113, - [3172] = 2115, - [3173] = 2153, - [3174] = 2068, - [3175] = 2150, - [3176] = 2005, - [3177] = 2123, - [3178] = 2079, - [3179] = 2078, - [3180] = 2004, - [3181] = 2003, - [3182] = 2002, - [3183] = 2014, - [3184] = 2015, - [3185] = 2016, - [3186] = 2020, - [3187] = 2022, - [3188] = 2130, - [3189] = 2099, - [3190] = 2097, - [3191] = 2109, - [3192] = 2047, - [3193] = 2037, - [3194] = 3150, - [3195] = 2156, - [3196] = 2141, - [3197] = 2140, - [3198] = 2128, - [3199] = 2107, - [3200] = 2096, - [3201] = 2087, - [3202] = 2077, - [3203] = 2131, - [3204] = 2098, - [3205] = 2155, - [3206] = 1991, - [3207] = 2148, - [3208] = 2146, - [3209] = 2144, - [3210] = 2143, - [3211] = 2142, - [3212] = 2139, - [3213] = 2137, - [3214] = 2133, - [3215] = 1889, - [3216] = 3216, + [2977] = 1489, + [2978] = 2372, + [2979] = 2510, + [2980] = 2538, + [2981] = 2568, + [2982] = 2488, + [2983] = 1898, + [2984] = 2574, + [2985] = 2577, + [2986] = 2564, + [2987] = 2555, + [2988] = 2550, + [2989] = 2544, + [2990] = 2390, + [2991] = 1894, + [2992] = 2551, + [2993] = 2307, + [2994] = 1916, + [2995] = 1910, + [2996] = 1908, + [2997] = 1883, + [2998] = 2517, + [2999] = 2415, + [3000] = 2503, + [3001] = 2586, + [3002] = 2508, + [3003] = 2576, + [3004] = 2490, + [3005] = 2489, + [3006] = 2471, + [3007] = 2480, + [3008] = 1893, + [3009] = 2474, + [3010] = 2461, + [3011] = 1915, + [3012] = 1914, + [3013] = 1913, + [3014] = 2254, + [3015] = 2485, + [3016] = 2512, + [3017] = 1779, + [3018] = 1783, + [3019] = 2484, + [3020] = 2497, + [3021] = 2177, + [3022] = 2265, + [3023] = 2226, + [3024] = 2279, + [3025] = 2386, + [3026] = 2546, + [3027] = 166, + [3028] = 157, + [3029] = 1907, + [3030] = 2467, + [3031] = 2487, + [3032] = 2469, + [3033] = 2495, + [3034] = 1900, + [3035] = 1895, + [3036] = 2559, + [3037] = 2510, + [3038] = 1896, + [3039] = 2557, + [3040] = 2514, + [3041] = 2523, + [3042] = 2511, + [3043] = 2524, + [3044] = 2527, + [3045] = 2528, + [3046] = 2529, + [3047] = 2530, + [3048] = 2561, + [3049] = 2535, + [3050] = 2536, + [3051] = 2538, + [3052] = 2549, + [3053] = 2509, + [3054] = 1892, + [3055] = 2498, + [3056] = 2502, + [3057] = 2575, + [3058] = 2512, + [3059] = 2512, + [3060] = 2508, + [3061] = 2513, + [3062] = 2490, + [3063] = 2489, + [3064] = 2480, + [3065] = 2474, + [3066] = 2495, + [3067] = 2510, + [3068] = 2472, + [3069] = 2522, + [3070] = 2523, + [3071] = 2524, + [3072] = 2527, + [3073] = 2528, + [3074] = 1778, + [3075] = 2529, + [3076] = 2530, + [3077] = 2548, + [3078] = 2464, + [3079] = 2372, + [3080] = 2580, + [3081] = 2561, + [3082] = 2522, + [3083] = 2357, + [3084] = 2535, + [3085] = 2536, + [3086] = 2538, + [3087] = 2548, + [3088] = 2580, + [3089] = 2560, + [3090] = 2506, + [3091] = 2560, + [3092] = 2563, + [3093] = 2506, + [3094] = 1898, + [3095] = 2062, + [3096] = 1471, + [3097] = 1480, + [3098] = 1439, + [3099] = 1477, + [3100] = 2074, + [3101] = 1469, + [3102] = 1428, + [3103] = 1427, + [3104] = 3104, + [3105] = 1873, + [3106] = 3104, + [3107] = 2472, + [3108] = 2512, + [3109] = 157, + [3110] = 2574, + [3111] = 2513, + [3112] = 2502, + [3113] = 1892, + [3114] = 2509, + [3115] = 2488, + [3116] = 2511, + [3117] = 2514, + [3118] = 2471, + [3119] = 3104, + [3120] = 2469, + [3121] = 2487, + [3122] = 2467, + [3123] = 1907, + [3124] = 2557, + [3125] = 2559, + [3126] = 1913, + [3127] = 1914, + [3128] = 1915, + [3129] = 1895, + [3130] = 1896, + [3131] = 2461, + [3132] = 1893, + [3133] = 3104, + [3134] = 2568, + [3135] = 1894, + [3136] = 2503, + [3137] = 2577, + [3138] = 2564, + [3139] = 2555, + [3140] = 1900, + [3141] = 1910, + [3142] = 2386, + [3143] = 2357, + [3144] = 166, + [3145] = 2517, + [3146] = 1883, + [3147] = 1858, + [3148] = 1908, + [3149] = 1916, + [3150] = 2550, + [3151] = 2095, + [3152] = 2085, + [3153] = 2136, + [3154] = 2170, + [3155] = 2151, + [3156] = 2149, + [3157] = 2148, + [3158] = 2139, + [3159] = 2156, + [3160] = 2094, + [3161] = 2107, + [3162] = 2092, + [3163] = 2168, + [3164] = 1489, + [3165] = 2169, + [3166] = 2097, + [3167] = 2093, + [3168] = 2087, + [3169] = 2083, + [3170] = 2146, + [3171] = 2158, + [3172] = 2145, + [3173] = 2143, + [3174] = 2171, + [3175] = 2141, + [3176] = 2144, + [3177] = 2140, + [3178] = 2138, + [3179] = 2152, + [3180] = 2160, + [3181] = 2135, + [3182] = 2161, + [3183] = 2134, + [3184] = 2120, + [3185] = 2128, + [3186] = 2125, + [3187] = 2126, + [3188] = 2123, + [3189] = 2142, + [3190] = 2122, + [3191] = 2155, + [3192] = 2079, + [3193] = 2147, + [3194] = 2082, + [3195] = 2081, + [3196] = 2118, + [3197] = 2137, + [3198] = 2117, + [3199] = 2130, + [3200] = 2116, + [3201] = 2114, + [3202] = 2110, + [3203] = 2109, + [3204] = 2108, + [3205] = 2096, + [3206] = 2127, + [3207] = 2124, + [3208] = 2121, + [3209] = 2165, + [3210] = 2174, + [3211] = 2119, + [3212] = 2115, + [3213] = 2105, + [3214] = 2103, + [3215] = 1471, + [3216] = 1873, [3217] = 3217, - [3218] = 1903, - [3219] = 457, - [3220] = 1891, - [3221] = 1806, - [3222] = 1873, + [3218] = 1873, + [3219] = 3219, + [3220] = 1858, + [3221] = 1800, + [3222] = 459, [3223] = 3223, - [3224] = 1882, - [3225] = 1807, - [3226] = 1864, + [3224] = 1912, + [3225] = 1804, + [3226] = 1480, [3227] = 3227, - [3228] = 1878, - [3229] = 1887, - [3230] = 3230, - [3231] = 1800, - [3232] = 3217, - [3233] = 1798, - [3234] = 3234, - [3235] = 1499, - [3236] = 1502, - [3237] = 1504, - [3238] = 1507, - [3239] = 1517, - [3240] = 435, - [3241] = 1519, - [3242] = 1658, - [3243] = 1864, - [3244] = 3244, - [3245] = 3245, - [3246] = 3245, - [3247] = 1873, + [3228] = 1903, + [3229] = 3229, + [3230] = 1811, + [3231] = 1905, + [3232] = 1439, + [3233] = 1477, + [3234] = 448, + [3235] = 1816, + [3236] = 3219, + [3237] = 1964, + [3238] = 3238, + [3239] = 1469, + [3240] = 1858, + [3241] = 1802, + [3242] = 1428, + [3243] = 1904, + [3244] = 1902, + [3245] = 1427, + [3246] = 3246, + [3247] = 3246, [3248] = 3248, - [3249] = 3248, - [3250] = 3248, - [3251] = 3251, - [3252] = 3244, - [3253] = 3244, - [3254] = 3245, - [3255] = 3244, - [3256] = 3251, - [3257] = 3248, - [3258] = 3251, - [3259] = 3244, - [3260] = 3248, - [3261] = 1817, - [3262] = 3217, - [3263] = 3244, - [3264] = 3251, - [3265] = 3245, - [3266] = 3251, - [3267] = 3245, - [3268] = 3248, - [3269] = 3245, - [3270] = 3251, - [3271] = 1869, - [3272] = 1937, - [3273] = 1902, - [3274] = 3274, - [3275] = 1865, - [3276] = 1924, - [3277] = 1875, - [3278] = 1853, - [3279] = 3279, - [3280] = 1922, - [3281] = 1873, - [3282] = 1889, - [3283] = 1504, - [3284] = 1878, - [3285] = 1845, - [3286] = 1839, - [3287] = 1502, - [3288] = 1843, - [3289] = 1825, - [3290] = 1864, - [3291] = 1849, - [3292] = 1842, - [3293] = 1873, - [3294] = 1840, - [3295] = 1853, - [3296] = 1864, - [3297] = 1903, - [3298] = 1875, - [3299] = 1882, - [3300] = 1852, - [3301] = 1887, - [3302] = 1850, - [3303] = 1869, - [3304] = 1658, - [3305] = 1848, - [3306] = 1499, - [3307] = 1519, - [3308] = 1517, - [3309] = 1507, - [3310] = 1865, - [3311] = 1891, - [3312] = 1937, - [3313] = 3313, - [3314] = 1869, + [3249] = 3249, + [3250] = 3250, + [3251] = 3246, + [3252] = 3246, + [3253] = 3248, + [3254] = 3249, + [3255] = 3249, + [3256] = 3249, + [3257] = 3219, + [3258] = 3248, + [3259] = 3248, + [3260] = 3250, + [3261] = 3249, + [3262] = 3250, + [3263] = 3263, + [3264] = 3248, + [3265] = 3250, + [3266] = 3246, + [3267] = 3246, + [3268] = 3250, + [3269] = 3249, + [3270] = 3250, + [3271] = 3248, + [3272] = 3272, + [3273] = 1876, + [3274] = 1857, + [3275] = 1903, + [3276] = 1854, + [3277] = 1818, + [3278] = 1940, + [3279] = 1873, + [3280] = 1480, + [3281] = 1477, + [3282] = 1904, + [3283] = 1469, + [3284] = 1428, + [3285] = 1427, + [3286] = 1844, + [3287] = 1848, + [3288] = 1849, + [3289] = 1842, + [3290] = 1902, + [3291] = 1850, + [3292] = 1959, + [3293] = 1439, + [3294] = 1858, + [3295] = 1962, + [3296] = 1866, + [3297] = 1853, + [3298] = 1843, + [3299] = 1870, + [3300] = 1471, + [3301] = 1912, + [3302] = 1964, + [3303] = 1954, + [3304] = 1852, + [3305] = 1905, + [3306] = 1866, + [3307] = 1870, + [3308] = 1940, + [3309] = 1876, + [3310] = 1857, + [3311] = 1858, + [3312] = 1873, + [3313] = 1959, + [3314] = 3314, [3315] = 3315, - [3316] = 1865, - [3317] = 1853, - [3318] = 1875, - [3319] = 1902, - [3320] = 3313, - [3321] = 1912, + [3316] = 1096, + [3317] = 1097, + [3318] = 3318, + [3319] = 3319, + [3320] = 1866, + [3321] = 3321, [3322] = 3322, - [3323] = 1524, + [3323] = 1870, [3324] = 3324, - [3325] = 1904, - [3326] = 1940, - [3327] = 3327, - [3328] = 3324, - [3329] = 1918, - [3330] = 3327, - [3331] = 306, + [3325] = 3319, + [3326] = 3326, + [3327] = 1876, + [3328] = 3328, + [3329] = 1857, + [3330] = 3330, + [3331] = 1883, [3332] = 3332, - [3333] = 1928, - [3334] = 3334, - [3335] = 3327, - [3336] = 1905, - [3337] = 3337, - [3338] = 3327, - [3339] = 3324, - [3340] = 3324, - [3341] = 3341, - [3342] = 3327, - [3343] = 1925, - [3344] = 1916, - [3345] = 3324, - [3346] = 1914, - [3347] = 3327, - [3348] = 3324, - [3349] = 303, - [3350] = 1922, - [3351] = 3327, - [3352] = 1911, - [3353] = 1908, - [3354] = 1935, - [3355] = 1096, - [3356] = 3324, - [3357] = 1913, - [3358] = 3327, - [3359] = 3327, - [3360] = 3360, - [3361] = 3361, - [3362] = 1924, - [3363] = 2180, - [3364] = 3364, - [3365] = 1097, - [3366] = 1921, - [3367] = 1907, - [3368] = 3324, - [3369] = 3324, - [3370] = 3324, - [3371] = 3324, - [3372] = 2358, - [3373] = 2158, - [3374] = 3374, - [3375] = 3375, - [3376] = 1953, - [3377] = 3374, - [3378] = 3374, - [3379] = 3375, - [3380] = 3375, - [3381] = 2124, - [3382] = 2159, - [3383] = 3374, - [3384] = 2138, + [3333] = 1916, + [3334] = 1892, + [3335] = 3335, + [3336] = 2074, + [3337] = 1489, + [3338] = 3338, + [3339] = 3330, + [3340] = 3330, + [3341] = 3330, + [3342] = 3335, + [3343] = 3330, + [3344] = 2232, + [3345] = 3345, + [3346] = 3330, + [3347] = 1954, + [3348] = 1816, + [3349] = 166, + [3350] = 3335, + [3351] = 1962, + [3352] = 3335, + [3353] = 1910, + [3354] = 2062, + [3355] = 1913, + [3356] = 3345, + [3357] = 3335, + [3358] = 3330, + [3359] = 1915, + [3360] = 1914, + [3361] = 1895, + [3362] = 1896, + [3363] = 1900, + [3364] = 3345, + [3365] = 3335, + [3366] = 3335, + [3367] = 3335, + [3368] = 1894, + [3369] = 3345, + [3370] = 3345, + [3371] = 1898, + [3372] = 3335, + [3373] = 3335, + [3374] = 1893, + [3375] = 3324, + [3376] = 157, + [3377] = 3345, + [3378] = 1907, + [3379] = 3335, + [3380] = 1908, + [3381] = 3345, + [3382] = 3330, + [3383] = 3330, + [3384] = 1854, [3385] = 3385, - [3386] = 3385, - [3387] = 1817, - [3388] = 3385, - [3389] = 1937, - [3390] = 3385, - [3391] = 3374, - [3392] = 3392, - [3393] = 3375, - [3394] = 3375, - [3395] = 3374, - [3396] = 3375, - [3397] = 3392, - [3398] = 3398, - [3399] = 3398, - [3400] = 3385, - [3401] = 2563, - [3402] = 3392, - [3403] = 3392, - [3404] = 3385, - [3405] = 3385, - [3406] = 3374, - [3407] = 2477, - [3408] = 3408, - [3409] = 3375, - [3410] = 2518, - [3411] = 3322, - [3412] = 3392, - [3413] = 3392, - [3414] = 3375, - [3415] = 3375, - [3416] = 3374, - [3417] = 3392, - [3418] = 1949, - [3419] = 3385, - [3420] = 3385, - [3421] = 3374, - [3422] = 2559, - [3423] = 2355, - [3424] = 2464, - [3425] = 1902, - [3426] = 3385, - [3427] = 1947, - [3428] = 2096, - [3429] = 2513, - [3430] = 2014, - [3431] = 2015, - [3432] = 1903, - [3433] = 2016, - [3434] = 2138, - [3435] = 1961, - [3436] = 2061, - [3437] = 2057, - [3438] = 2020, - [3439] = 2022, - [3440] = 2056, - [3441] = 2526, - [3442] = 2527, - [3443] = 1922, - [3444] = 2479, - [3445] = 2054, - [3446] = 2052, - [3447] = 2051, - [3448] = 1924, - [3449] = 2493, - [3450] = 2050, - [3451] = 1842, - [3452] = 2066, - [3453] = 1848, - [3454] = 1839, - [3455] = 2153, - [3456] = 2499, - [3457] = 2068, - [3458] = 2476, - [3459] = 2047, - [3460] = 2470, - [3461] = 1840, - [3462] = 1922, - [3463] = 2514, - [3464] = 2158, - [3465] = 2115, - [3466] = 2150, - [3467] = 2510, - [3468] = 2037, - [3469] = 2488, - [3470] = 2487, - [3471] = 1924, - [3472] = 2157, - [3473] = 2155, - [3474] = 1800, - [3475] = 1991, - [3476] = 2156, - [3477] = 2141, - [3478] = 2003, - [3479] = 2092, - [3480] = 1947, - [3481] = 1845, - [3482] = 2140, - [3483] = 1807, - [3484] = 2004, - [3485] = 2078, - [3486] = 1843, - [3487] = 1852, - [3488] = 2484, - [3489] = 2148, - [3490] = 1850, - [3491] = 2159, - [3492] = 2079, - [3493] = 2065, - [3494] = 2146, - [3495] = 2144, - [3496] = 2547, - [3497] = 2143, - [3498] = 1849, + [3386] = 3386, + [3387] = 3387, + [3388] = 3386, + [3389] = 2094, + [3390] = 3387, + [3391] = 3385, + [3392] = 2097, + [3393] = 2093, + [3394] = 3386, + [3395] = 2087, + [3396] = 1977, + [3397] = 3385, + [3398] = 2083, + [3399] = 3387, + [3400] = 3386, + [3401] = 2161, + [3402] = 3387, + [3403] = 3386, + [3404] = 2129, + [3405] = 2160, + [3406] = 2117, + [3407] = 2146, + [3408] = 2099, + [3409] = 2145, + [3410] = 2143, + [3411] = 2141, + [3412] = 2140, + [3413] = 2138, + [3414] = 2152, + [3415] = 2144, + [3416] = 2171, + [3417] = 2085, + [3418] = 2158, + [3419] = 2092, + [3420] = 2503, + [3421] = 2372, + [3422] = 3263, + [3423] = 2472, + [3424] = 3424, + [3425] = 3385, + [3426] = 2120, + [3427] = 1954, + [3428] = 3385, + [3429] = 2153, + [3430] = 2165, + [3431] = 2464, + [3432] = 3424, + [3433] = 1959, + [3434] = 3272, + [3435] = 3387, + [3436] = 3386, + [3437] = 1848, + [3438] = 3385, + [3439] = 1962, + [3440] = 2564, + [3441] = 3387, + [3442] = 2122, + [3443] = 2095, + [3444] = 3387, + [3445] = 3386, + [3446] = 2116, + [3447] = 2123, + [3448] = 2082, + [3449] = 2168, + [3450] = 1804, + [3451] = 2107, + [3452] = 1964, + [3453] = 2170, + [3454] = 1800, + [3455] = 1849, + [3456] = 2114, + [3457] = 3386, + [3458] = 2151, + [3459] = 1850, + [3460] = 2136, + [3461] = 2139, + [3462] = 2156, + [3463] = 2118, + [3464] = 1842, + [3465] = 2149, + [3466] = 2135, + [3467] = 2148, + [3468] = 2169, + [3469] = 1843, + [3470] = 2110, + [3471] = 3386, + [3472] = 1852, + [3473] = 2131, + [3474] = 2514, + [3475] = 2103, + [3476] = 2096, + [3477] = 2105, + [3478] = 2108, + [3479] = 1818, + [3480] = 2174, + [3481] = 2081, + [3482] = 3385, + [3483] = 2134, + [3484] = 1940, + [3485] = 3387, + [3486] = 2078, + [3487] = 3385, + [3488] = 2128, + [3489] = 1844, + [3490] = 2125, + [3491] = 3387, + [3492] = 2109, + [3493] = 1853, + [3494] = 2115, + [3495] = 3495, + [3496] = 2119, + [3497] = 2121, + [3498] = 2126, [3499] = 2142, - [3500] = 2482, - [3501] = 2139, - [3502] = 2137, - [3503] = 2128, - [3504] = 1997, - [3505] = 1825, - [3506] = 2135, - [3507] = 2133, - [3508] = 2515, - [3509] = 2107, - [3510] = 3510, - [3511] = 2131, - [3512] = 2130, - [3513] = 2123, - [3514] = 2474, - [3515] = 2099, - [3516] = 2111, - [3517] = 2002, - [3518] = 3274, - [3519] = 2554, - [3520] = 2097, - [3521] = 2502, - [3522] = 1994, - [3523] = 1961, - [3524] = 2087, - [3525] = 2124, - [3526] = 2521, - [3527] = 2466, - [3528] = 3279, - [3529] = 2098, - [3530] = 2524, - [3531] = 2100, - [3532] = 2113, - [3533] = 2112, - [3534] = 2013, - [3535] = 2109, - [3536] = 2005, - [3537] = 2077, - [3538] = 2012, - [3539] = 2009, - [3540] = 2159, - [3541] = 3541, - [3542] = 3541, - [3543] = 1843, - [3544] = 3544, - [3545] = 1852, - [3546] = 2138, - [3547] = 1845, - [3548] = 1850, - [3549] = 2565, - [3550] = 1849, - [3551] = 1840, - [3552] = 2516, - [3553] = 2541, - [3554] = 2538, - [3555] = 2483, - [3556] = 2548, - [3557] = 2546, - [3558] = 2545, - [3559] = 2544, - [3560] = 2473, - [3561] = 3561, - [3562] = 3562, - [3563] = 1902, - [3564] = 2490, - [3565] = 2542, - [3566] = 2124, - [3567] = 2489, - [3568] = 2540, - [3569] = 3561, - [3570] = 1839, - [3571] = 3544, - [3572] = 2539, - [3573] = 1096, - [3574] = 3562, - [3575] = 3541, - [3576] = 1848, - [3577] = 1842, - [3578] = 2557, - [3579] = 3561, - [3580] = 3562, - [3581] = 3581, - [3582] = 2158, - [3583] = 1097, - [3584] = 3334, - [3585] = 2536, - [3586] = 3586, - [3587] = 3586, - [3588] = 2374, - [3589] = 3586, - [3590] = 3586, + [3500] = 2124, + [3501] = 2127, + [3502] = 2155, + [3503] = 2130, + [3504] = 2415, + [3505] = 2137, + [3506] = 2079, + [3507] = 3385, + [3508] = 2147, + [3509] = 3385, + [3510] = 2153, + [3511] = 1096, + [3512] = 3512, + [3513] = 2490, + [3514] = 2577, + [3515] = 3515, + [3516] = 2574, + [3517] = 2488, + [3518] = 2131, + [3519] = 1842, + [3520] = 2099, + [3521] = 2513, + [3522] = 2555, + [3523] = 3512, + [3524] = 1843, + [3525] = 3515, + [3526] = 3328, + [3527] = 1097, + [3528] = 2557, + [3529] = 2559, + [3530] = 2508, + [3531] = 2568, + [3532] = 2511, + [3533] = 1853, + [3534] = 1844, + [3535] = 2078, + [3536] = 3536, + [3537] = 1854, + [3538] = 2550, + [3539] = 2548, + [3540] = 2517, + [3541] = 2502, + [3542] = 1852, + [3543] = 2467, + [3544] = 2471, + [3545] = 1954, + [3546] = 2487, + [3547] = 2469, + [3548] = 1977, + [3549] = 3536, + [3550] = 3512, + [3551] = 2509, + [3552] = 2523, + [3553] = 1848, + [3554] = 3536, + [3555] = 1959, + [3556] = 1849, + [3557] = 2474, + [3558] = 1850, + [3559] = 2129, + [3560] = 3515, + [3561] = 1962, + [3562] = 2529, + [3563] = 3563, + [3564] = 2524, + [3565] = 2345, + [3566] = 2153, + [3567] = 2522, + [3568] = 2530, + [3569] = 2249, + [3570] = 3570, + [3571] = 3563, + [3572] = 2527, + [3573] = 2536, + [3574] = 2131, + [3575] = 2506, + [3576] = 2561, + [3577] = 2510, + [3578] = 2489, + [3579] = 2495, + [3580] = 2099, + [3581] = 2560, + [3582] = 2129, + [3583] = 2480, + [3584] = 2535, + [3585] = 2538, + [3586] = 2580, + [3587] = 2528, + [3588] = 3588, + [3589] = 3589, + [3590] = 3588, [3591] = 3591, - [3592] = 3586, - [3593] = 1524, - [3594] = 3586, + [3592] = 3592, + [3593] = 3314, + [3594] = 3588, [3595] = 3595, - [3596] = 3586, + [3596] = 3588, [3597] = 3597, - [3598] = 3586, + [3598] = 1489, [3599] = 3599, - [3600] = 3600, - [3601] = 3586, + [3600] = 3588, + [3601] = 3588, [3602] = 3602, [3603] = 3602, - [3604] = 2413, - [3605] = 3586, - [3606] = 3586, - [3607] = 3597, + [3604] = 3588, + [3605] = 3588, + [3606] = 1818, + [3607] = 3588, [3608] = 3595, - [3609] = 3609, - [3610] = 3595, - [3611] = 3600, - [3612] = 3586, - [3613] = 3597, - [3614] = 3609, - [3615] = 3615, - [3616] = 3597, - [3617] = 3609, - [3618] = 3600, - [3619] = 3602, - [3620] = 3586, - [3621] = 3586, - [3622] = 3602, - [3623] = 3595, - [3624] = 3609, - [3625] = 3609, - [3626] = 3600, - [3627] = 3627, - [3628] = 2180, - [3629] = 3595, - [3630] = 3600, - [3631] = 3597, - [3632] = 3586, - [3633] = 3600, - [3634] = 3634, - [3635] = 3602, - [3636] = 3636, - [3637] = 2586, - [3638] = 3609, + [3609] = 3591, + [3610] = 3588, + [3611] = 3591, + [3612] = 3597, + [3613] = 3595, + [3614] = 3614, + [3615] = 3588, + [3616] = 3588, + [3617] = 3617, + [3618] = 3595, + [3619] = 3619, + [3620] = 2232, + [3621] = 3614, + [3622] = 3597, + [3623] = 3588, + [3624] = 3614, + [3625] = 3315, + [3626] = 3602, + [3627] = 3588, + [3628] = 3597, + [3629] = 3602, + [3630] = 3591, + [3631] = 3631, + [3632] = 1954, + [3633] = 3597, + [3634] = 3324, + [3635] = 3635, + [3636] = 1407, + [3637] = 3591, + [3638] = 3588, [3639] = 3602, - [3640] = 3600, - [3641] = 3586, - [3642] = 3597, + [3640] = 3595, + [3641] = 1962, + [3642] = 3642, [3643] = 3643, - [3644] = 3595, - [3645] = 2557, - [3646] = 3646, - [3647] = 2372, - [3648] = 2565, - [3649] = 3649, - [3650] = 1921, - [3651] = 2483, - [3652] = 3652, - [3653] = 3653, - [3654] = 1908, - [3655] = 3655, - [3656] = 3656, + [3644] = 3588, + [3645] = 3595, + [3646] = 3614, + [3647] = 3647, + [3648] = 3648, + [3649] = 3597, + [3650] = 3614, + [3651] = 2586, + [3652] = 3597, + [3653] = 3591, + [3654] = 3654, + [3655] = 3602, + [3656] = 3614, [3657] = 3657, - [3658] = 2490, - [3659] = 3659, - [3660] = 3660, - [3661] = 2565, - [3662] = 3649, - [3663] = 3663, - [3664] = 3664, - [3665] = 3665, - [3666] = 1914, - [3667] = 3667, - [3668] = 3652, - [3669] = 3649, - [3670] = 1907, - [3671] = 2548, - [3672] = 2546, - [3673] = 2545, - [3674] = 3667, - [3675] = 2544, - [3676] = 2542, - [3677] = 2541, - [3678] = 2483, + [3658] = 3658, + [3659] = 2489, + [3660] = 1914, + [3661] = 1915, + [3662] = 2580, + [3663] = 166, + [3664] = 2495, + [3665] = 2078, + [3666] = 2510, + [3667] = 2357, + [3668] = 3668, + [3669] = 3669, + [3670] = 1954, + [3671] = 3671, + [3672] = 3672, + [3673] = 2495, + [3674] = 3674, + [3675] = 3675, + [3676] = 3669, + [3677] = 3677, + [3678] = 3678, [3679] = 3679, - [3680] = 2540, - [3681] = 2539, - [3682] = 3682, - [3683] = 306, - [3684] = 2473, - [3685] = 1924, - [3686] = 3686, - [3687] = 3665, - [3688] = 3660, - [3689] = 3655, - [3690] = 3653, - [3691] = 2538, - [3692] = 3657, - [3693] = 3649, - [3694] = 3694, - [3695] = 2536, - [3696] = 3653, - [3697] = 3686, - [3698] = 1925, - [3699] = 3699, - [3700] = 3655, - [3701] = 2516, - [3702] = 3702, - [3703] = 3703, - [3704] = 1911, - [3705] = 3652, - [3706] = 3322, - [3707] = 1477, + [3680] = 3669, + [3681] = 3671, + [3682] = 3658, + [3683] = 3683, + [3684] = 1962, + [3685] = 2522, + [3686] = 2489, + [3687] = 2524, + [3688] = 3688, + [3689] = 2527, + [3690] = 3690, + [3691] = 2528, + [3692] = 2529, + [3693] = 2530, + [3694] = 2561, + [3695] = 2535, + [3696] = 3674, + [3697] = 3672, + [3698] = 3669, + [3699] = 3657, + [3700] = 3675, + [3701] = 3701, + [3702] = 2536, + [3703] = 2538, + [3704] = 3704, + [3705] = 3672, + [3706] = 1883, + [3707] = 3674, [3708] = 3708, - [3709] = 2489, - [3710] = 3667, - [3711] = 2527, - [3712] = 3712, - [3713] = 3713, - [3714] = 3679, - [3715] = 3665, - [3716] = 3665, - [3717] = 3679, - [3718] = 3667, - [3719] = 3657, + [3709] = 3677, + [3710] = 3683, + [3711] = 1892, + [3712] = 2580, + [3713] = 3671, + [3714] = 3688, + [3715] = 2560, + [3716] = 3658, + [3717] = 3683, + [3718] = 3683, + [3719] = 3719, [3720] = 3720, - [3721] = 2473, - [3722] = 3659, - [3723] = 1922, - [3724] = 3660, - [3725] = 3664, - [3726] = 3679, - [3727] = 3655, - [3728] = 3653, - [3729] = 3665, - [3730] = 2464, - [3731] = 3667, - [3732] = 3712, - [3733] = 3664, - [3734] = 3649, - [3735] = 2257, - [3736] = 3686, - [3737] = 2355, - [3738] = 3332, - [3739] = 1905, - [3740] = 3712, - [3741] = 3712, - [3742] = 1913, - [3743] = 303, - [3744] = 3744, - [3745] = 3660, - [3746] = 3659, - [3747] = 3657, - [3748] = 3652, - [3749] = 1904, - [3750] = 2227, - [3751] = 3751, - [3752] = 3703, - [3753] = 2516, - [3754] = 3754, - [3755] = 1918, - [3756] = 3659, - [3757] = 3652, - [3758] = 1928, - [3759] = 3653, - [3760] = 3682, - [3761] = 2536, - [3762] = 2538, - [3763] = 3686, - [3764] = 2539, - [3765] = 1935, - [3766] = 3649, - [3767] = 3712, - [3768] = 2540, - [3769] = 3655, - [3770] = 2493, - [3771] = 2541, - [3772] = 2542, - [3773] = 1916, - [3774] = 2544, - [3775] = 3652, - [3776] = 2545, - [3777] = 2546, - [3778] = 3679, - [3779] = 2490, - [3780] = 2547, - [3781] = 2548, - [3782] = 2489, - [3783] = 2358, - [3784] = 3657, + [3721] = 2548, + [3722] = 2464, + [3723] = 2506, + [3724] = 157, + [3725] = 3658, + [3726] = 3688, + [3727] = 3674, + [3728] = 3672, + [3729] = 3688, + [3730] = 3675, + [3731] = 2506, + [3732] = 3677, + [3733] = 3678, + [3734] = 3669, + [3735] = 3679, + [3736] = 3657, + [3737] = 2372, + [3738] = 2480, + [3739] = 3683, + [3740] = 3658, + [3741] = 3741, + [3742] = 1977, + [3743] = 3719, + [3744] = 3679, + [3745] = 1896, + [3746] = 3678, + [3747] = 3671, + [3748] = 3719, + [3749] = 1913, + [3750] = 3719, + [3751] = 3678, + [3752] = 2461, + [3753] = 2386, + [3754] = 3677, + [3755] = 3671, + [3756] = 3675, + [3757] = 1916, + [3758] = 3758, + [3759] = 1910, + [3760] = 3741, + [3761] = 3761, + [3762] = 1894, + [3763] = 3690, + [3764] = 1900, + [3765] = 1898, + [3766] = 3677, + [3767] = 1893, + [3768] = 2538, + [3769] = 3657, + [3770] = 2474, + [3771] = 2536, + [3772] = 3669, + [3773] = 3719, + [3774] = 2535, + [3775] = 3619, + [3776] = 2561, + [3777] = 2530, + [3778] = 3688, + [3779] = 3672, + [3780] = 2529, + [3781] = 2480, + [3782] = 3671, + [3783] = 2528, + [3784] = 2062, [3785] = 3785, - [3786] = 3659, - [3787] = 3655, - [3788] = 3653, - [3789] = 3660, - [3790] = 3664, + [3786] = 2527, + [3787] = 3674, + [3788] = 3672, + [3789] = 2524, + [3790] = 2523, [3791] = 3791, - [3792] = 1825, - [3793] = 1940, - [3794] = 3794, - [3795] = 3686, - [3796] = 3744, - [3797] = 2557, - [3798] = 3712, - [3799] = 3664, - [3800] = 3665, - [3801] = 3667, - [3802] = 1912, - [3803] = 3679, - [3804] = 3804, - [3805] = 2482, - [3806] = 2479, - [3807] = 3657, - [3808] = 3360, - [3809] = 3664, - [3810] = 3660, - [3811] = 3659, + [3792] = 2522, + [3793] = 2415, + [3794] = 3675, + [3795] = 1489, + [3796] = 3677, + [3797] = 3657, + [3798] = 3678, + [3799] = 3679, + [3800] = 3674, + [3801] = 3719, + [3802] = 1908, + [3803] = 3803, + [3804] = 3761, + [3805] = 2510, + [3806] = 3658, + [3807] = 2560, + [3808] = 3683, + [3809] = 1907, + [3810] = 2490, + [3811] = 3679, [3812] = 3812, - [3813] = 3649, - [3814] = 3814, - [3815] = 3814, - [3816] = 2548, - [3817] = 2257, + [3813] = 3669, + [3814] = 2508, + [3815] = 3688, + [3816] = 3675, + [3817] = 3679, [3818] = 3818, - [3819] = 3819, - [3820] = 2514, + [3819] = 3678, + [3820] = 1895, [3821] = 3821, - [3822] = 2557, + [3822] = 3822, [3823] = 3823, - [3824] = 2565, - [3825] = 3804, + [3824] = 2495, + [3825] = 3825, [3826] = 3826, - [3827] = 3827, - [3828] = 3812, - [3829] = 3829, - [3830] = 2488, + [3827] = 2148, + [3828] = 2149, + [3829] = 2151, + [3830] = 2116, [3831] = 3831, - [3832] = 3818, - [3833] = 2487, - [3834] = 3751, + [3832] = 3832, + [3833] = 3812, + [3834] = 2577, [3835] = 3835, - [3836] = 3836, + [3836] = 3818, [3837] = 3837, [3838] = 3838, [3839] = 3839, - [3840] = 3840, - [3841] = 2510, - [3842] = 3836, - [3843] = 2527, - [3844] = 3836, + [3840] = 2093, + [3841] = 3841, + [3842] = 2559, + [3843] = 2557, + [3844] = 2103, [3845] = 3845, - [3846] = 3814, + [3846] = 2170, [3847] = 3847, - [3848] = 3827, - [3849] = 3849, - [3850] = 2477, - [3851] = 2524, - [3852] = 2513, + [3848] = 2105, + [3849] = 3825, + [3850] = 3850, + [3851] = 3851, + [3852] = 3851, [3853] = 3826, - [3854] = 3854, - [3855] = 3831, - [3856] = 3854, - [3857] = 3857, - [3858] = 3847, - [3859] = 3836, - [3860] = 3826, - [3861] = 2554, - [3862] = 2545, - [3863] = 3863, - [3864] = 3814, - [3865] = 2547, + [3854] = 2082, + [3855] = 3855, + [3856] = 2115, + [3857] = 3832, + [3858] = 3858, + [3859] = 3859, + [3860] = 3821, + [3861] = 3831, + [3862] = 3826, + [3863] = 2517, + [3864] = 3845, + [3865] = 3865, [3866] = 3866, - [3867] = 3821, - [3868] = 3868, - [3869] = 2544, - [3870] = 3870, - [3871] = 2474, - [3872] = 3839, + [3867] = 3867, + [3868] = 3855, + [3869] = 2119, + [3870] = 2548, + [3871] = 3839, + [3872] = 2121, [3873] = 3873, - [3874] = 3874, - [3875] = 2542, - [3876] = 3876, + [3874] = 2386, + [3875] = 2522, + [3876] = 2524, [3877] = 3877, - [3878] = 2541, - [3879] = 3826, - [3880] = 3819, - [3881] = 2484, - [3882] = 2540, - [3883] = 2470, - [3884] = 3847, - [3885] = 3814, - [3886] = 2539, - [3887] = 3839, - [3888] = 3857, - [3889] = 3845, - [3890] = 2538, - [3891] = 2536, - [3892] = 3821, - [3893] = 2559, - [3894] = 3854, - [3895] = 3838, - [3896] = 2516, - [3897] = 3873, - [3898] = 3847, - [3899] = 3814, - [3900] = 3836, - [3901] = 2502, - [3902] = 1524, - [3903] = 1961, - [3904] = 3829, - [3905] = 2489, - [3906] = 2546, + [3878] = 2124, + [3879] = 3879, + [3880] = 3865, + [3881] = 2127, + [3882] = 2527, + [3883] = 2130, + [3884] = 3851, + [3885] = 2528, + [3886] = 3821, + [3887] = 3850, + [3888] = 3858, + [3889] = 3889, + [3890] = 2137, + [3891] = 3847, + [3892] = 2529, + [3893] = 2530, + [3894] = 3825, + [3895] = 2488, + [3896] = 3841, + [3897] = 2147, + [3898] = 2503, + [3899] = 3822, + [3900] = 2568, + [3901] = 2081, + [3902] = 2079, + [3903] = 2513, + [3904] = 2155, + [3905] = 2561, + [3906] = 2535, [3907] = 3907, - [3908] = 2521, - [3909] = 3909, - [3910] = 2518, - [3911] = 1922, - [3912] = 3873, - [3913] = 3849, - [3914] = 1953, - [3915] = 3836, - [3916] = 3845, - [3917] = 3821, - [3918] = 2466, - [3919] = 3826, - [3920] = 2473, - [3921] = 3921, - [3922] = 3857, - [3923] = 3854, - [3924] = 3924, - [3925] = 3814, - [3926] = 1924, - [3927] = 3863, - [3928] = 3928, - [3929] = 3847, - [3930] = 3863, - [3931] = 3928, - [3932] = 3838, - [3933] = 3933, - [3934] = 3921, - [3935] = 3909, - [3936] = 3857, - [3937] = 3814, - [3938] = 3819, - [3939] = 3831, - [3940] = 3818, - [3941] = 3854, - [3942] = 3909, - [3943] = 3847, - [3944] = 3836, - [3945] = 2372, - [3946] = 3744, - [3947] = 3947, - [3948] = 3873, - [3949] = 3823, - [3950] = 3818, - [3951] = 3831, - [3952] = 3873, - [3953] = 3836, - [3954] = 3854, - [3955] = 2479, - [3956] = 3956, - [3957] = 3837, - [3958] = 3836, - [3959] = 3814, - [3960] = 2499, - [3961] = 3821, - [3962] = 3857, - [3963] = 3847, - [3964] = 2482, - [3965] = 2493, - [3966] = 1947, - [3967] = 3854, - [3968] = 3857, - [3969] = 2490, + [3908] = 3859, + [3909] = 2536, + [3910] = 2538, + [3911] = 3845, + [3912] = 2117, + [3913] = 2142, + [3914] = 3914, + [3915] = 3845, + [3916] = 2580, + [3917] = 3851, + [3918] = 2126, + [3919] = 3919, + [3920] = 2345, + [3921] = 2114, + [3922] = 2560, + [3923] = 3850, + [3924] = 2514, + [3925] = 2095, + [3926] = 3847, + [3927] = 3927, + [3928] = 2511, + [3929] = 2087, + [3930] = 3826, + [3931] = 2523, + [3932] = 2506, + [3933] = 3859, + [3934] = 3825, + [3935] = 3841, + [3936] = 3821, + [3937] = 3850, + [3938] = 3914, + [3939] = 3919, + [3940] = 3865, + [3941] = 3859, + [3942] = 3831, + [3943] = 3832, + [3944] = 3851, + [3945] = 3855, + [3946] = 2574, + [3947] = 3845, + [3948] = 3948, + [3949] = 3850, + [3950] = 3950, + [3951] = 2135, + [3952] = 3950, + [3953] = 2118, + [3954] = 2138, + [3955] = 3845, + [3956] = 3761, + [3957] = 2357, + [3958] = 2508, + [3959] = 3959, + [3960] = 2094, + [3961] = 3845, + [3962] = 2461, + [3963] = 3963, + [3964] = 3964, + [3965] = 3850, + [3966] = 2249, + [3967] = 2509, + [3968] = 3858, + [3969] = 3822, [3970] = 3826, - [3971] = 2483, - [3972] = 3909, - [3973] = 3876, + [3971] = 2502, + [3972] = 3825, + [3973] = 2083, [3974] = 3821, - [3975] = 2227, - [3976] = 2563, - [3977] = 3873, - [3978] = 3835, - [3979] = 3979, - [3980] = 3826, - [3981] = 2526, - [3982] = 3982, - [3983] = 2476, - [3984] = 3909, - [3985] = 3818, - [3986] = 3831, - [3987] = 2515, - [3988] = 3819, - [3989] = 3819, - [3990] = 2056, - [3991] = 2157, - [3992] = 2012, - [3993] = 2013, - [3994] = 2115, - [3995] = 2113, - [3996] = 2112, - [3997] = 2155, - [3998] = 1991, - [3999] = 2153, - [4000] = 2148, - [4001] = 2146, - [4002] = 3337, - [4003] = 3341, - [4004] = 2413, - [4005] = 2144, - [4006] = 3694, - [4007] = 2143, - [4008] = 1477, - [4009] = 2020, - [4010] = 2142, - [4011] = 2139, - [4012] = 2137, - [4013] = 2135, - [4014] = 2111, - [4015] = 2133, - [4016] = 2131, - [4017] = 2130, - [4018] = 2123, - [4019] = 1997, - [4020] = 2016, - [4021] = 2015, - [4022] = 3812, - [4023] = 2098, - [4024] = 2068, - [4025] = 2100, - [4026] = 1994, - [4027] = 2066, - [4028] = 2065, - [4029] = 2061, - [4030] = 3804, - [4031] = 2057, - [4032] = 2009, - [4033] = 2014, - [4034] = 2077, - [4035] = 2099, - [4036] = 2097, - [4037] = 2150, - [4038] = 2128, - [4039] = 2052, - [4040] = 2022, - [4041] = 2092, - [4042] = 2107, - [4043] = 2005, - [4044] = 2050, - [4045] = 2156, - [4046] = 2079, - [4047] = 4047, - [4048] = 2002, - [4049] = 2078, - [4050] = 2141, - [4051] = 2109, - [4052] = 2054, - [4053] = 2087, - [4054] = 2374, - [4055] = 2051, - [4056] = 2003, - [4057] = 2004, - [4058] = 2096, - [4059] = 2140, - [4060] = 2047, - [4061] = 2037, - [4062] = 4062, - [4063] = 4063, - [4064] = 4064, - [4065] = 4065, - [4066] = 3274, - [4067] = 4067, + [3975] = 2120, + [3976] = 3643, + [3977] = 2490, + [3978] = 2110, + [3979] = 2474, + [3980] = 3851, + [3981] = 2161, + [3982] = 2122, + [3983] = 2160, + [3984] = 2123, + [3985] = 3850, + [3986] = 3859, + [3987] = 3821, + [3988] = 3859, + [3989] = 3859, + [3990] = 2471, + [3991] = 3826, + [3992] = 2140, + [3993] = 2156, + [3994] = 2480, + [3995] = 2139, + [3996] = 2174, + [3997] = 2489, + [3998] = 3851, + [3999] = 3914, + [4000] = 3825, + [4001] = 2141, + [4002] = 3850, + [4003] = 3914, + [4004] = 3877, + [4005] = 2136, + [4006] = 3822, + [4007] = 2152, + [4008] = 1407, + [4009] = 3326, + [4010] = 3322, + [4011] = 2144, + [4012] = 3845, + [4013] = 3838, + [4014] = 2171, + [4015] = 4015, + [4016] = 2097, + [4017] = 2107, + [4018] = 2510, + [4019] = 2165, + [4020] = 2472, + [4021] = 2550, + [4022] = 2555, + [4023] = 3837, + [4024] = 3835, + [4025] = 3826, + [4026] = 2487, + [4027] = 2168, + [4028] = 2085, + [4029] = 2158, + [4030] = 3914, + [4031] = 2169, + [4032] = 3832, + [4033] = 3831, + [4034] = 2143, + [4035] = 3845, + [4036] = 2134, + [4037] = 2564, + [4038] = 3865, + [4039] = 2146, + [4040] = 3865, + [4041] = 3831, + [4042] = 3823, + [4043] = 2096, + [4044] = 3822, + [4045] = 4045, + [4046] = 3832, + [4047] = 2108, + [4048] = 3850, + [4049] = 2128, + [4050] = 3873, + [4051] = 2145, + [4052] = 2092, + [4053] = 2125, + [4054] = 2467, + [4055] = 2109, + [4056] = 3822, + [4057] = 2469, + [4058] = 4058, + [4059] = 3643, + [4060] = 4060, + [4061] = 3818, + [4062] = 3643, + [4063] = 3812, + [4064] = 1407, + [4065] = 3272, + [4066] = 3263, + [4067] = 1407, [4068] = 4068, - [4069] = 1477, - [4070] = 1477, - [4071] = 4071, - [4072] = 3694, + [4069] = 4069, + [4070] = 4070, + [4071] = 351, + [4072] = 362, [4073] = 4073, - [4074] = 3279, - [4075] = 3694, - [4076] = 4076, - [4077] = 412, - [4078] = 4076, - [4079] = 4073, - [4080] = 4080, - [4081] = 4068, - [4082] = 4062, - [4083] = 4080, - [4084] = 4076, - [4085] = 4076, - [4086] = 4086, - [4087] = 4080, - [4088] = 4088, - [4089] = 539, - [4090] = 4076, - [4091] = 3804, - [4092] = 3804, - [4093] = 4080, - [4094] = 1524, - [4095] = 3812, - [4096] = 4080, - [4097] = 4076, - [4098] = 413, - [4099] = 4076, - [4100] = 396, - [4101] = 4080, - [4102] = 4080, - [4103] = 4076, - [4104] = 4080, - [4105] = 448, - [4106] = 4065, - [4107] = 4080, - [4108] = 3812, - [4109] = 4076, - [4110] = 1766, - [4111] = 4086, - [4112] = 4062, - [4113] = 3804, - [4114] = 3656, - [4115] = 1922, - [4116] = 4068, - [4117] = 1924, - [4118] = 4073, - [4119] = 1096, - [4120] = 1097, - [4121] = 4065, - [4122] = 3812, - [4123] = 2413, - [4124] = 1524, - [4125] = 3663, - [4126] = 4126, - [4127] = 4127, - [4128] = 4127, - [4129] = 4129, - [4130] = 4127, + [4074] = 358, + [4075] = 4075, + [4076] = 357, + [4077] = 1489, + [4078] = 478, + [4079] = 4079, + [4080] = 1766, + [4081] = 4081, + [4082] = 4082, + [4083] = 4083, + [4084] = 4084, + [4085] = 1954, + [4086] = 4081, + [4087] = 4083, + [4088] = 4079, + [4089] = 1489, + [4090] = 4090, + [4091] = 4084, + [4092] = 4084, + [4093] = 1096, + [4094] = 4084, + [4095] = 3818, + [4096] = 4090, + [4097] = 4090, + [4098] = 4084, + [4099] = 3812, + [4100] = 4084, + [4101] = 4084, + [4102] = 3642, + [4103] = 4090, + [4104] = 4090, + [4105] = 4069, + [4106] = 4084, + [4107] = 1962, + [4108] = 3654, + [4109] = 3812, + [4110] = 3818, + [4111] = 4084, + [4112] = 4090, + [4113] = 1097, + [4114] = 4114, + [4115] = 4090, + [4116] = 4090, + [4117] = 4090, + [4118] = 4069, + [4119] = 4083, + [4120] = 3818, + [4121] = 4081, + [4122] = 4122, + [4123] = 3324, + [4124] = 4079, + [4125] = 3314, + [4126] = 2249, + [4127] = 4114, + [4128] = 3812, + [4129] = 3315, + [4130] = 4130, [4131] = 4131, - [4132] = 4127, - [4133] = 4131, - [4134] = 4127, - [4135] = 4131, - [4136] = 3360, - [4137] = 4127, - [4138] = 3322, - [4139] = 4073, - [4140] = 4127, - [4141] = 4141, - [4142] = 4127, - [4143] = 4127, - [4144] = 4127, - [4145] = 4131, - [4146] = 4129, - [4147] = 4127, - [4148] = 4129, - [4149] = 4149, + [4132] = 4130, + [4133] = 4130, + [4134] = 4134, + [4135] = 4135, + [4136] = 4130, + [4137] = 4131, + [4138] = 4130, + [4139] = 4130, + [4140] = 1818, + [4141] = 4131, + [4142] = 4142, + [4143] = 4143, + [4144] = 4142, + [4145] = 4130, + [4146] = 4083, + [4147] = 4147, + [4148] = 4131, + [4149] = 4130, [4150] = 4131, - [4151] = 4127, - [4152] = 4129, + [4151] = 4130, + [4152] = 4142, [4153] = 4131, - [4154] = 4127, - [4155] = 4155, - [4156] = 4127, - [4157] = 4127, - [4158] = 4127, - [4159] = 4159, - [4160] = 4160, - [4161] = 4161, - [4162] = 4131, - [4163] = 4127, - [4164] = 4127, - [4165] = 4165, - [4166] = 4129, - [4167] = 4127, - [4168] = 4127, - [4169] = 4169, - [4170] = 4129, - [4171] = 4171, - [4172] = 4172, - [4173] = 4129, + [4154] = 4154, + [4155] = 4142, + [4156] = 4156, + [4157] = 4130, + [4158] = 4130, + [4159] = 4069, + [4160] = 4131, + [4161] = 4130, + [4162] = 4142, + [4163] = 4163, + [4164] = 4142, + [4165] = 4131, + [4166] = 4130, + [4167] = 4167, + [4168] = 4168, + [4169] = 4130, + [4170] = 4130, + [4171] = 4142, + [4172] = 4130, + [4173] = 4173, [4174] = 4131, - [4175] = 1825, - [4176] = 4129, - [4177] = 3332, - [4178] = 4127, - [4179] = 4065, - [4180] = 4131, - [4181] = 4129, - [4182] = 4127, - [4183] = 4159, - [4184] = 4184, - [4185] = 4141, - [4186] = 4065, - [4187] = 4172, + [4175] = 4130, + [4176] = 4130, + [4177] = 4130, + [4178] = 4178, + [4179] = 4130, + [4180] = 4142, + [4181] = 4181, + [4182] = 4130, + [4183] = 4142, + [4184] = 4130, + [4185] = 4185, + [4186] = 4167, + [4187] = 3322, [4188] = 4188, - [4189] = 4189, - [4190] = 4190, - [4191] = 4073, + [4189] = 4081, + [4190] = 4069, + [4191] = 4069, [4192] = 4192, - [4193] = 4149, - [4194] = 4188, - [4195] = 4195, - [4196] = 4065, - [4197] = 4068, - [4198] = 4073, - [4199] = 4171, - [4200] = 4062, - [4201] = 4068, - [4202] = 4062, - [4203] = 4065, + [4193] = 4173, + [4194] = 4163, + [4195] = 4083, + [4196] = 3328, + [4197] = 4197, + [4198] = 4083, + [4199] = 4079, + [4200] = 4069, + [4201] = 4201, + [4202] = 4147, + [4203] = 4079, [4204] = 4204, - [4205] = 4073, - [4206] = 4161, - [4207] = 4165, - [4208] = 4155, - [4209] = 4065, - [4210] = 4210, - [4211] = 4073, - [4212] = 4212, - [4213] = 4149, - [4214] = 4214, + [4205] = 4083, + [4206] = 4181, + [4207] = 3326, + [4208] = 4154, + [4209] = 4081, + [4210] = 4178, + [4211] = 4168, + [4212] = 4197, + [4213] = 4083, + [4214] = 4069, [4215] = 4215, - [4216] = 4165, - [4217] = 4155, - [4218] = 4159, - [4219] = 4141, - [4220] = 4172, - [4221] = 3334, - [4222] = 4073, - [4223] = 4223, - [4224] = 4188, - [4225] = 4071, - [4226] = 4065, - [4227] = 4223, - [4228] = 4228, - [4229] = 4067, - [4230] = 3337, - [4231] = 4231, - [4232] = 4231, - [4233] = 4231, - [4234] = 4195, - [4235] = 4223, - [4236] = 4223, - [4237] = 4212, - [4238] = 4231, - [4239] = 4231, - [4240] = 4068, - [4241] = 3341, - [4242] = 4242, - [4243] = 4161, - [4244] = 4062, - [4245] = 4231, - [4246] = 4223, - [4247] = 4212, - [4248] = 4212, - [4249] = 4212, + [4216] = 4216, + [4217] = 4217, + [4218] = 4163, + [4219] = 4167, + [4220] = 4215, + [4221] = 4216, + [4222] = 4083, + [4223] = 4079, + [4224] = 4215, + [4225] = 4225, + [4226] = 4215, + [4227] = 4173, + [4228] = 4154, + [4229] = 4178, + [4230] = 4147, + [4231] = 4215, + [4232] = 4232, + [4233] = 4233, + [4234] = 4181, + [4235] = 4235, + [4236] = 4168, + [4237] = 4216, + [4238] = 4232, + [4239] = 4216, + [4240] = 4215, + [4241] = 4197, + [4242] = 4069, + [4243] = 4232, + [4244] = 4073, + [4245] = 4216, + [4246] = 4082, + [4247] = 4081, + [4248] = 4232, + [4249] = 4232, [4250] = 4250, - [4251] = 4171, - [4252] = 4212, - [4253] = 4212, - [4254] = 4172, + [4251] = 4204, + [4252] = 4215, + [4253] = 4232, + [4254] = 1816, [4255] = 4255, - [4256] = 4255, - [4257] = 4171, + [4256] = 4256, + [4257] = 4257, [4258] = 4258, [4259] = 4259, - [4260] = 1864, - [4261] = 1873, - [4262] = 4262, - [4263] = 4155, - [4264] = 1817, - [4265] = 4149, - [4266] = 4065, + [4260] = 1873, + [4261] = 4261, + [4262] = 4069, + [4263] = 1858, + [4264] = 4264, + [4265] = 4178, + [4266] = 4173, [4267] = 4267, - [4268] = 4268, - [4269] = 4269, - [4270] = 4268, - [4271] = 4267, - [4272] = 4272, - [4273] = 4141, - [4274] = 4274, - [4275] = 4268, - [4276] = 4073, - [4277] = 4255, - [4278] = 4159, - [4279] = 1825, - [4280] = 4165, - [4281] = 1937, + [4268] = 1873, + [4269] = 1818, + [4270] = 4154, + [4271] = 4271, + [4272] = 4261, + [4273] = 4257, + [4274] = 4167, + [4275] = 4259, + [4276] = 1858, + [4277] = 4261, + [4278] = 4147, + [4279] = 4083, + [4280] = 4259, + [4281] = 4281, [4282] = 4282, - [4283] = 1864, - [4284] = 4259, - [4285] = 4255, - [4286] = 1873, - [4287] = 4267, - [4288] = 4255, - [4289] = 4289, - [4290] = 4290, - [4291] = 4291, - [4292] = 4292, - [4293] = 4258, - [4294] = 4294, - [4295] = 4295, - [4296] = 4259, - [4297] = 4268, - [4298] = 4262, - [4299] = 4268, - [4300] = 4300, - [4301] = 4259, - [4302] = 4259, - [4303] = 4267, - [4304] = 4161, - [4305] = 4289, - [4306] = 4268, - [4307] = 4255, - [4308] = 4268, - [4309] = 4309, - [4310] = 4259, - [4311] = 4171, - [4312] = 1845, - [4313] = 4313, - [4314] = 4172, - [4315] = 4159, - [4316] = 1873, - [4317] = 4141, - [4318] = 4149, - [4319] = 4141, - [4320] = 4172, - [4321] = 1842, - [4322] = 4159, - [4323] = 4141, - [4324] = 4141, - [4325] = 1848, - [4326] = 1849, - [4327] = 4159, - [4328] = 4155, - [4329] = 1839, - [4330] = 4159, - [4331] = 4161, - [4332] = 4161, - [4333] = 4171, - [4334] = 4149, - [4335] = 4161, - [4336] = 1850, - [4337] = 4165, - [4338] = 1852, - [4339] = 4155, - [4340] = 1864, - [4341] = 4172, - [4342] = 4165, - [4343] = 1840, - [4344] = 4171, - [4345] = 4155, - [4346] = 4161, - [4347] = 4172, - [4348] = 4149, - [4349] = 1843, - [4350] = 4155, - [4351] = 4165, - [4352] = 4171, - [4353] = 4149, - [4354] = 4165, - [4355] = 1882, - [4356] = 1517, - [4357] = 4161, - [4358] = 2569, - [4359] = 1924, - [4360] = 4149, - [4361] = 1924, - [4362] = 1922, - [4363] = 1504, - [4364] = 1889, - [4365] = 1499, - [4366] = 1922, - [4367] = 4171, - [4368] = 1878, - [4369] = 1502, - [4370] = 1887, - [4371] = 1891, - [4372] = 1507, - [4373] = 4155, - [4374] = 4159, - [4375] = 4141, - [4376] = 4165, - [4377] = 1519, - [4378] = 1658, - [4379] = 4172, - [4380] = 4292, - [4381] = 4171, - [4382] = 4141, - [4383] = 4172, - [4384] = 4274, - [4385] = 4159, - [4386] = 2569, - [4387] = 4269, - [4388] = 1903, - [4389] = 4215, - [4390] = 4390, - [4391] = 4214, - [4392] = 4165, - [4393] = 2569, - [4394] = 4161, - [4395] = 4155, - [4396] = 2569, - [4397] = 4309, - [4398] = 4282, - [4399] = 4149, - [4400] = 4250, - [4401] = 4401, - [4402] = 4294, - [4403] = 4295, - [4404] = 4404, - [4405] = 1922, - [4406] = 1924, - [4407] = 4404, - [4408] = 4408, - [4409] = 1902, - [4410] = 1924, - [4411] = 1902, - [4412] = 1924, - [4413] = 4413, - [4414] = 4404, - [4415] = 4408, - [4416] = 1961, - [4417] = 1947, - [4418] = 1922, - [4419] = 4404, - [4420] = 1922, - [4421] = 4404, - [4422] = 4408, - [4423] = 4404, - [4424] = 2569, - [4425] = 1902, - [4426] = 1924, - [4427] = 4427, - [4428] = 1922, - [4429] = 1953, - [4430] = 1961, - [4431] = 1947, - [4432] = 4432, - [4433] = 1947, - [4434] = 4434, - [4435] = 4435, - [4436] = 1949, - [4437] = 1947, - [4438] = 4427, - [4439] = 1961, - [4440] = 4434, - [4441] = 4441, - [4442] = 4442, - [4443] = 1924, - [4444] = 3663, - [4445] = 4435, - [4446] = 1961, - [4447] = 1922, - [4448] = 2148, + [4283] = 4168, + [4284] = 4284, + [4285] = 4258, + [4286] = 4286, + [4287] = 4258, + [4288] = 4288, + [4289] = 4257, + [4290] = 4261, + [4291] = 4258, + [4292] = 4256, + [4293] = 4261, + [4294] = 4259, + [4295] = 4261, + [4296] = 4257, + [4297] = 4297, + [4298] = 1940, + [4299] = 4299, + [4300] = 4282, + [4301] = 4181, + [4302] = 4302, + [4303] = 4257, + [4304] = 4257, + [4305] = 4261, + [4306] = 4306, + [4307] = 4163, + [4308] = 4258, + [4309] = 4258, + [4310] = 4267, + [4311] = 4154, + [4312] = 1848, + [4313] = 4168, + [4314] = 4167, + [4315] = 4147, + [4316] = 4167, + [4317] = 4173, + [4318] = 4163, + [4319] = 4168, + [4320] = 4168, + [4321] = 1858, + [4322] = 4167, + [4323] = 4173, + [4324] = 4147, + [4325] = 1853, + [4326] = 4181, + [4327] = 4181, + [4328] = 4181, + [4329] = 1844, + [4330] = 4330, + [4331] = 1854, + [4332] = 4163, + [4333] = 4181, + [4334] = 4167, + [4335] = 4173, + [4336] = 4163, + [4337] = 4147, + [4338] = 1873, + [4339] = 4147, + [4340] = 4154, + [4341] = 4168, + [4342] = 4173, + [4343] = 4178, + [4344] = 1852, + [4345] = 4178, + [4346] = 1849, + [4347] = 1843, + [4348] = 4154, + [4349] = 1850, + [4350] = 4178, + [4351] = 1842, + [4352] = 4154, + [4353] = 4178, + [4354] = 4163, + [4355] = 1428, + [4356] = 1427, + [4357] = 1954, + [4358] = 1962, + [4359] = 1903, + [4360] = 1477, + [4361] = 1439, + [4362] = 4167, + [4363] = 1904, + [4364] = 4173, + [4365] = 4163, + [4366] = 1902, + [4367] = 1480, + [4368] = 1471, + [4369] = 1954, + [4370] = 2494, + [4371] = 4168, + [4372] = 4181, + [4373] = 1469, + [4374] = 1962, + [4375] = 1905, + [4376] = 1912, + [4377] = 4147, + [4378] = 4178, + [4379] = 4154, + [4380] = 4288, + [4381] = 4167, + [4382] = 2494, + [4383] = 4383, + [4384] = 4299, + [4385] = 4302, + [4386] = 1964, + [4387] = 2494, + [4388] = 4181, + [4389] = 4147, + [4390] = 4225, + [4391] = 4391, + [4392] = 4168, + [4393] = 4154, + [4394] = 4163, + [4395] = 4217, + [4396] = 4306, + [4397] = 4284, + [4398] = 4255, + [4399] = 4173, + [4400] = 4286, + [4401] = 2494, + [4402] = 4178, + [4403] = 4233, + [4404] = 1977, + [4405] = 4405, + [4406] = 4406, + [4407] = 4405, + [4408] = 1954, + [4409] = 4406, + [4410] = 1959, + [4411] = 1954, + [4412] = 2078, + [4413] = 1954, + [4414] = 2494, + [4415] = 4405, + [4416] = 1962, + [4417] = 1962, + [4418] = 4418, + [4419] = 4405, + [4420] = 4406, + [4421] = 1962, + [4422] = 4405, + [4423] = 4405, + [4424] = 1959, + [4425] = 4425, + [4426] = 1962, + [4427] = 1954, + [4428] = 1959, + [4429] = 1954, + [4430] = 2078, + [4431] = 4431, + [4432] = 1977, + [4433] = 4433, + [4434] = 2074, + [4435] = 2078, + [4436] = 3654, + [4437] = 1977, + [4438] = 4438, + [4439] = 1962, + [4440] = 4431, + [4441] = 4425, + [4442] = 1977, + [4443] = 4438, + [4444] = 4444, + [4445] = 2062, + [4446] = 4446, + [4447] = 2078, + [4448] = 4448, [4449] = 4449, [4450] = 4450, - [4451] = 4450, - [4452] = 4449, - [4453] = 4453, + [4451] = 4451, + [4452] = 4450, + [4453] = 4451, [4454] = 4454, [4455] = 4455, - [4456] = 4450, - [4457] = 4449, + [4456] = 4451, + [4457] = 4450, [4458] = 4458, [4459] = 4459, - [4460] = 4450, + [4460] = 4460, [4461] = 4461, - [4462] = 4462, - [4463] = 4449, - [4464] = 4464, + [4462] = 4451, + [4463] = 4463, + [4464] = 4450, [4465] = 4465, [4466] = 4466, - [4467] = 4450, + [4467] = 4467, [4468] = 4468, - [4469] = 4469, - [4470] = 4449, - [4471] = 4471, - [4472] = 4449, - [4473] = 4473, - [4474] = 4450, - [4475] = 4471, - [4476] = 4471, - [4477] = 4449, - [4478] = 4450, + [4469] = 4451, + [4470] = 4450, + [4471] = 4448, + [4472] = 4472, + [4473] = 4450, + [4474] = 4451, + [4475] = 4448, + [4476] = 4448, + [4477] = 4450, + [4478] = 4451, [4479] = 4479, - [4480] = 4471, + [4480] = 4448, [4481] = 4481, - [4482] = 2015, - [4483] = 4471, - [4484] = 4484, - [4485] = 3656, - [4486] = 1994, - [4487] = 4450, - [4488] = 1997, - [4489] = 2092, - [4490] = 2111, - [4491] = 2112, - [4492] = 4449, - [4493] = 4450, - [4494] = 4471, - [4495] = 4473, - [4496] = 2113, - [4497] = 2115, - [4498] = 2153, - [4499] = 2150, - [4500] = 2005, - [4501] = 2079, - [4502] = 2004, - [4503] = 2003, - [4504] = 2002, - [4505] = 2014, - [4506] = 4506, - [4507] = 2016, - [4508] = 2020, - [4509] = 4509, - [4510] = 4510, - [4511] = 4506, + [4482] = 4450, + [4483] = 4483, + [4484] = 4451, + [4485] = 2081, + [4486] = 2082, + [4487] = 4472, + [4488] = 2095, + [4489] = 2170, + [4490] = 2151, + [4491] = 2149, + [4492] = 4450, + [4493] = 4451, + [4494] = 4448, + [4495] = 2148, + [4496] = 2107, + [4497] = 2168, + [4498] = 2169, + [4499] = 2097, + [4500] = 2093, + [4501] = 2087, + [4502] = 2146, + [4503] = 2145, + [4504] = 2143, + [4505] = 4505, + [4506] = 2141, + [4507] = 2140, + [4508] = 4508, + [4509] = 2138, + [4510] = 4505, + [4511] = 4511, [4512] = 4512, [4513] = 4513, - [4514] = 2022, + [4514] = 4514, [4515] = 4515, - [4516] = 2355, - [4517] = 4517, + [4516] = 2372, + [4517] = 4451, [4518] = 4518, [4519] = 4519, [4520] = 4520, @@ -8467,96 +8474,96 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4524] = 4524, [4525] = 4525, [4526] = 4450, - [4527] = 4449, - [4528] = 2099, - [4529] = 4529, - [4530] = 2097, - [4531] = 2109, - [4532] = 2047, - [4533] = 2037, - [4534] = 2157, - [4535] = 2156, - [4536] = 2141, - [4537] = 2140, - [4538] = 4449, - [4539] = 4450, - [4540] = 2128, - [4541] = 4541, - [4542] = 2107, - [4543] = 2096, - [4544] = 2087, - [4545] = 2077, - [4546] = 2100, - [4547] = 2098, - [4548] = 2155, - [4549] = 1991, - [4550] = 2146, - [4551] = 2144, - [4552] = 2143, - [4553] = 2142, - [4554] = 2139, - [4555] = 2137, - [4556] = 2135, - [4557] = 4450, - [4558] = 2133, - [4559] = 1922, - [4560] = 1924, - [4561] = 4473, - [4562] = 2131, - [4563] = 2130, - [4564] = 2123, - [4565] = 2068, - [4566] = 2066, - [4567] = 2065, - [4568] = 2061, - [4569] = 2057, - [4570] = 2056, - [4571] = 4471, - [4572] = 2054, - [4573] = 2052, - [4574] = 4541, - [4575] = 2051, - [4576] = 2050, - [4577] = 2013, - [4578] = 4473, - [4579] = 2012, - [4580] = 2009, - [4581] = 2078, - [4582] = 4582, - [4583] = 4450, - [4584] = 4471, - [4585] = 4449, - [4586] = 1947, + [4527] = 2135, + [4528] = 4528, + [4529] = 2134, + [4530] = 2128, + [4531] = 2125, + [4532] = 2123, + [4533] = 2122, + [4534] = 2118, + [4535] = 2117, + [4536] = 4450, + [4537] = 2116, + [4538] = 4451, + [4539] = 4539, + [4540] = 2114, + [4541] = 2110, + [4542] = 2109, + [4543] = 3642, + [4544] = 2108, + [4545] = 2096, + [4546] = 2165, + [4547] = 2174, + [4548] = 2103, + [4549] = 2105, + [4550] = 2115, + [4551] = 4451, + [4552] = 2119, + [4553] = 2121, + [4554] = 2124, + [4555] = 2127, + [4556] = 4450, + [4557] = 2130, + [4558] = 2137, + [4559] = 1954, + [4560] = 1962, + [4561] = 2147, + [4562] = 2079, + [4563] = 2155, + [4564] = 2142, + [4565] = 2126, + [4566] = 2120, + [4567] = 2161, + [4568] = 2160, + [4569] = 2152, + [4570] = 2144, + [4571] = 4448, + [4572] = 2171, + [4573] = 2085, + [4574] = 2158, + [4575] = 2092, + [4576] = 4539, + [4577] = 4472, + [4578] = 2094, + [4579] = 2136, + [4580] = 2139, + [4581] = 2156, + [4582] = 2083, + [4583] = 4583, + [4584] = 4448, + [4585] = 4585, + [4586] = 4451, [4587] = 4450, - [4588] = 4588, - [4589] = 4449, - [4590] = 1961, - [4591] = 4521, - [4592] = 4449, - [4593] = 4520, - [4594] = 4594, - [4595] = 4519, - [4596] = 4582, - [4597] = 4541, - [4598] = 4449, + [4588] = 4585, + [4589] = 4589, + [4590] = 1977, + [4591] = 4451, + [4592] = 4450, + [4593] = 2078, + [4594] = 4521, + [4595] = 4520, + [4596] = 4519, + [4597] = 4539, + [4598] = 4472, [4599] = 4518, - [4600] = 4471, - [4601] = 4450, - [4602] = 4449, - [4603] = 4517, - [4604] = 4594, - [4605] = 4515, + [4600] = 4448, + [4601] = 4451, + [4602] = 4450, + [4603] = 4515, + [4604] = 4583, + [4605] = 4514, [4606] = 4513, [4607] = 4512, [4608] = 4608, - [4609] = 4510, + [4609] = 4508, [4610] = 4610, [4611] = 4611, [4612] = 4612, [4613] = 4610, [4614] = 4614, [4615] = 4615, - [4616] = 4453, + [4616] = 4449, [4617] = 4611, [4618] = 4611, [4619] = 4454, @@ -8565,17 +8572,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4622] = 4622, [4623] = 4623, [4624] = 4458, - [4625] = 4484, + [4625] = 4483, [4626] = 4626, [4627] = 4627, [4628] = 4628, [4629] = 4629, [4630] = 4610, [4631] = 4459, - [4632] = 4461, + [4632] = 4460, [4633] = 4629, - [4634] = 4462, - [4635] = 4464, + [4634] = 4461, + [4635] = 4463, [4636] = 4626, [4637] = 4622, [4638] = 4465, @@ -8589,16 +8596,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4646] = 4611, [4647] = 4610, [4648] = 4623, - [4649] = 4468, + [4649] = 4467, [4650] = 4614, [4651] = 4651, [4652] = 4611, [4653] = 4629, [4654] = 4611, [4655] = 4623, - [4656] = 4469, + [4656] = 4468, [4657] = 4626, - [4658] = 3751, + [4658] = 3619, [4659] = 4610, [4660] = 4651, [4661] = 4610, @@ -8623,7 +8630,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4680] = 4611, [4681] = 4623, [4682] = 4627, - [4683] = 4525, + [4683] = 4524, [4684] = 4610, [4685] = 4610, [4686] = 4623, @@ -8636,13 +8643,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4693] = 4651, [4694] = 4610, [4695] = 4623, - [4696] = 4529, + [4696] = 4528, [4697] = 4610, [4698] = 4623, [4699] = 4611, [4700] = 4623, - [4701] = 2355, - [4702] = 4529, + [4701] = 2372, + [4702] = 4528, [4703] = 4703, [4704] = 4704, [4705] = 4705, @@ -8666,7 +8673,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4723] = 4703, [4724] = 4703, [4725] = 4703, - [4726] = 4529, + [4726] = 4528, [4727] = 4705, [4728] = 4705, [4729] = 4729, @@ -8692,12 +8699,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4749] = 4704, [4750] = 4705, [4751] = 4704, - [4752] = 3751, + [4752] = 3619, [4753] = 4703, [4754] = 4703, [4755] = 4755, [4756] = 4705, - [4757] = 4529, + [4757] = 4528, [4758] = 4758, [4759] = 4759, [4760] = 4758, @@ -8708,10 +8715,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4765] = 4759, [4766] = 4762, [4767] = 4762, - [4768] = 4529, + [4768] = 4528, [4769] = 4759, [4770] = 4758, - [4771] = 4529, + [4771] = 4528, [4772] = 4762, [4773] = 4759, [4774] = 4774, @@ -8720,7 +8727,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4777] = 4759, [4778] = 4774, [4779] = 4762, - [4780] = 4529, + [4780] = 4528, [4781] = 4774, [4782] = 4759, [4783] = 4762, @@ -8752,7 +8759,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4809] = 4796, [4810] = 4794, [4811] = 4794, - [4812] = 4529, + [4812] = 4528, [4813] = 4813, [4814] = 4791, [4815] = 4799, @@ -8871,7 +8878,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4928] = 4892, [4929] = 4893, [4930] = 4891, - [4931] = 4529, + [4931] = 4528, [4932] = 4890, [4933] = 4891, [4934] = 4898, @@ -8887,16 +8894,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4944] = 4898, [4945] = 4890, [4946] = 4946, - [4947] = 1840, + [4947] = 1852, [4948] = 4946, [4949] = 4949, - [4950] = 1839, - [4951] = 1848, - [4952] = 1842, + [4950] = 1854, + [4951] = 1844, + [4952] = 1853, [4953] = 4953, [4954] = 4954, - [4955] = 1845, - [4956] = 1843, + [4955] = 1843, + [4956] = 1842, [4957] = 4953, [4958] = 4946, [4959] = 4946, @@ -8904,11 +8911,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4961] = 4953, [4962] = 4962, [4963] = 4954, - [4964] = 1852, + [4964] = 1850, [4965] = 4946, - [4966] = 1850, + [4966] = 1849, [4967] = 4949, - [4968] = 1849, + [4968] = 1848, [4969] = 4946, [4970] = 4949, [4971] = 4971, @@ -8916,8 +8923,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4973] = 4962, [4974] = 4960, [4975] = 4960, - [4976] = 2510, - [4977] = 2499, + [4976] = 2568, + [4977] = 2471, [4978] = 4946, [4979] = 4960, [4980] = 4953, @@ -8942,41 +8949,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4999] = 4946, [5000] = 4953, [5001] = 5001, - [5002] = 2510, - [5003] = 1921, + [5002] = 2568, + [5003] = 1915, [5004] = 1914, [5005] = 5005, [5006] = 5005, [5007] = 5007, [5008] = 5008, - [5009] = 1913, - [5010] = 1912, - [5011] = 1904, - [5012] = 1940, + [5009] = 1896, + [5010] = 1907, + [5011] = 1910, + [5012] = 1908, [5013] = 5013, [5014] = 5014, - [5015] = 1925, + [5015] = 1883, [5016] = 5016, [5017] = 5017, [5018] = 5001, - [5019] = 1928, - [5020] = 1908, + [5019] = 1898, + [5020] = 1895, [5021] = 5021, - [5022] = 2499, + [5022] = 2471, [5023] = 5023, [5024] = 5005, [5025] = 5005, - [5026] = 1935, + [5026] = 1900, [5027] = 5027, [5028] = 5014, [5029] = 5029, [5030] = 5030, [5031] = 5005, - [5032] = 1907, - [5033] = 1524, + [5032] = 1892, + [5033] = 1489, [5034] = 5005, - [5035] = 2361, - [5036] = 1911, + [5035] = 2388, + [5036] = 1913, [5037] = 5037, [5038] = 5038, [5039] = 5039, @@ -8985,20 +8992,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5042] = 5042, [5043] = 5043, [5044] = 5005, - [5045] = 1918, + [5045] = 1894, [5046] = 5001, [5047] = 5047, [5048] = 5005, - [5049] = 306, + [5049] = 166, [5050] = 5050, [5051] = 5005, [5052] = 5052, [5053] = 5014, [5054] = 5005, - [5055] = 1864, + [5055] = 1873, [5056] = 5005, [5057] = 5057, - [5058] = 1873, + [5058] = 1858, [5059] = 5059, [5060] = 5060, [5061] = 5005, @@ -9006,13 +9013,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5063] = 5005, [5064] = 5005, [5065] = 5005, - [5066] = 303, + [5066] = 157, [5067] = 5067, [5068] = 5068, [5069] = 5005, [5070] = 5005, [5071] = 5071, - [5072] = 1905, + [5072] = 1916, [5073] = 5005, [5074] = 5074, [5075] = 5075, @@ -9024,27 +9031,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5081] = 5001, [5082] = 5082, [5083] = 5014, - [5084] = 1916, + [5084] = 1893, [5085] = 5085, [5086] = 5068, - [5087] = 2555, + [5087] = 2484, [5088] = 5088, - [5089] = 2196, - [5090] = 2199, - [5091] = 2201, + [5089] = 2254, + [5090] = 2177, + [5091] = 2265, [5092] = 5040, - [5093] = 2202, + [5093] = 2226, [5094] = 5094, [5095] = 5095, - [5096] = 2203, + [5096] = 2279, [5097] = 5038, - [5098] = 1864, + [5098] = 1873, [5099] = 5099, [5100] = 5100, [5101] = 5101, [5102] = 5102, [5103] = 5103, - [5104] = 1873, + [5104] = 1858, [5105] = 5105, [5106] = 5030, [5107] = 5050, @@ -9072,14 +9079,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5129] = 5043, [5130] = 5075, [5131] = 5131, - [5132] = 2500, + [5132] = 2551, [5133] = 5080, [5134] = 5134, [5135] = 5135, - [5136] = 2566, + [5136] = 2563, [5137] = 5047, [5138] = 5042, - [5139] = 2170, + [5139] = 2307, [5140] = 5095, [5141] = 5141, [5142] = 5142, @@ -9115,9 +9122,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5172] = 5172, [5173] = 5173, [5174] = 5174, - [5175] = 2574, + [5175] = 2546, [5176] = 5176, - [5177] = 1922, + [5177] = 1954, [5178] = 5178, [5179] = 5160, [5180] = 5102, @@ -9126,7 +9133,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5183] = 5160, [5184] = 5160, [5185] = 5160, - [5186] = 2499, + [5186] = 2471, [5187] = 5134, [5188] = 5176, [5189] = 5160, @@ -9135,7 +9142,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5192] = 5176, [5193] = 5160, [5194] = 5126, - [5195] = 1924, + [5195] = 1962, [5196] = 5160, [5197] = 5160, [5198] = 5117, @@ -9150,12 +9157,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5207] = 5150, [5208] = 5160, [5209] = 5176, - [5210] = 2510, + [5210] = 2568, [5211] = 5211, [5212] = 5160, [5213] = 5160, [5214] = 5160, - [5215] = 1504, + [5215] = 1469, [5216] = 5216, [5217] = 5040, [5218] = 5218, @@ -9165,11 +9172,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5222] = 5222, [5223] = 5223, [5224] = 5224, - [5225] = 1911, - [5226] = 1912, - [5227] = 2499, + [5225] = 1913, + [5226] = 1907, + [5227] = 2471, [5228] = 5126, - [5229] = 1921, + [5229] = 1915, [5230] = 5218, [5231] = 5150, [5232] = 5232, @@ -9188,32 +9195,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5245] = 5085, [5246] = 5216, [5247] = 5039, - [5248] = 1925, + [5248] = 1883, [5249] = 5216, - [5250] = 1940, - [5251] = 1904, + [5250] = 1908, + [5251] = 1910, [5252] = 5222, - [5253] = 2510, + [5253] = 2568, [5254] = 5254, - [5255] = 1905, - [5256] = 1918, - [5257] = 1928, + [5255] = 1916, + [5256] = 1894, + [5257] = 1898, [5258] = 5224, - [5259] = 1913, + [5259] = 1896, [5260] = 5222, - [5261] = 1908, + [5261] = 1895, [5262] = 5254, [5263] = 5030, - [5264] = 1907, + [5264] = 1892, [5265] = 5222, [5266] = 5218, - [5267] = 1916, + [5267] = 1893, [5268] = 5218, [5269] = 5216, [5270] = 4941, [5271] = 5271, [5272] = 5218, - [5273] = 1935, + [5273] = 1900, [5274] = 5222, [5275] = 5222, [5276] = 5224, @@ -9224,21 +9231,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5281] = 5216, [5282] = 5216, [5283] = 5224, - [5284] = 1517, + [5284] = 1439, [5285] = 5222, [5286] = 4921, - [5287] = 1502, - [5288] = 306, - [5289] = 1507, - [5290] = 2510, - [5291] = 1499, - [5292] = 2499, + [5287] = 1428, + [5288] = 166, + [5289] = 1477, + [5290] = 2568, + [5291] = 1427, + [5292] = 2471, [5293] = 5293, - [5294] = 303, - [5295] = 1658, + [5294] = 157, + [5295] = 1471, [5296] = 5218, [5297] = 5297, - [5298] = 1519, + [5298] = 1480, [5299] = 5299, [5300] = 5300, [5301] = 5109, @@ -9249,14 +9256,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5306] = 5102, [5307] = 5307, [5308] = 5308, - [5309] = 2499, + [5309] = 2471, [5310] = 5037, [5311] = 5311, [5312] = 4941, [5313] = 5112, [5314] = 5150, [5315] = 5085, - [5316] = 2510, + [5316] = 2568, [5317] = 5317, [5318] = 5062, [5319] = 5095, @@ -9278,7 +9285,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5335] = 5134, [5336] = 5336, [5337] = 5150, - [5338] = 2510, + [5338] = 2568, [5339] = 5117, [5340] = 5142, [5341] = 5341, @@ -9295,7 +9302,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5352] = 5336, [5353] = 5353, [5354] = 5336, - [5355] = 2499, + [5355] = 2471, [5356] = 5356, [5357] = 5102, [5358] = 5127, @@ -9322,9 +9329,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5379] = 5342, [5380] = 5370, [5381] = 5336, - [5382] = 2937, + [5382] = 2789, [5383] = 5336, - [5384] = 2973, + [5384] = 2858, [5385] = 5336, [5386] = 5353, [5387] = 5367, @@ -9334,13 +9341,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5391] = 5391, [5392] = 5392, [5393] = 5342, - [5394] = 2499, + [5394] = 2471, [5395] = 5356, [5396] = 5336, [5397] = 5134, [5398] = 5356, - [5399] = 2955, - [5400] = 2510, + [5399] = 2939, + [5400] = 2568, [5401] = 5336, [5402] = 5117, [5403] = 5403, @@ -10274,7 +10281,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6331] = 6118, [6332] = 6121, [6333] = 6200, - [6334] = 484, + [6334] = 451, [6335] = 6335, [6336] = 6116, [6337] = 6142, @@ -10316,7 +10323,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6373] = 6116, [6374] = 6126, [6375] = 6127, - [6376] = 346, + [6376] = 353, [6377] = 6200, [6378] = 6121, [6379] = 6130, @@ -10995,7 +11002,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7052] = 6658, [7053] = 6643, [7054] = 6972, - [7055] = 1807, + [7055] = 1804, [7056] = 6908, [7057] = 6651, [7058] = 6858, @@ -11315,10 +11322,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(23) END_STATE(); case 25: - if (lookahead == '\n') SKIP(163) + if (lookahead == '\n') SKIP(155) END_STATE(); case 26: - if (lookahead == '\n') SKIP(163) + if (lookahead == '\n') SKIP(155) if (lookahead == '\r') SKIP(25) END_STATE(); case 27: @@ -11329,24 +11336,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(27) END_STATE(); case 29: - if (lookahead == '\n') SKIP(155) + if (lookahead == '\n') SKIP(165) END_STATE(); case 30: - if (lookahead == '\n') SKIP(155) + if (lookahead == '\n') SKIP(165) if (lookahead == '\r') SKIP(29) END_STATE(); case 31: - if (lookahead == '\n') SKIP(165) + if (lookahead == '\n') SKIP(167) END_STATE(); case 32: - if (lookahead == '\n') SKIP(165) + if (lookahead == '\n') SKIP(167) if (lookahead == '\r') SKIP(31) END_STATE(); case 33: - if (lookahead == '\n') SKIP(167) + if (lookahead == '\n') SKIP(159) END_STATE(); case 34: - if (lookahead == '\n') SKIP(167) + if (lookahead == '\n') SKIP(159) if (lookahead == '\r') SKIP(33) END_STATE(); case 35: @@ -11357,132 +11364,125 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(35) END_STATE(); case 37: - if (lookahead == '\n') SKIP(159) + if (lookahead == '\n') SKIP(174) END_STATE(); case 38: - if (lookahead == '\n') SKIP(159) + if (lookahead == '\n') SKIP(174) if (lookahead == '\r') SKIP(37) END_STATE(); case 39: - if (lookahead == '\n') SKIP(174) + if (lookahead == '\n') SKIP(172) END_STATE(); case 40: - if (lookahead == '\n') SKIP(174) + if (lookahead == '\n') SKIP(172) if (lookahead == '\r') SKIP(39) END_STATE(); case 41: - if (lookahead == '\n') SKIP(172) + if (lookahead == '\n') SKIP(166) END_STATE(); case 42: - if (lookahead == '\n') SKIP(172) + if (lookahead == '\n') SKIP(166) if (lookahead == '\r') SKIP(41) END_STATE(); case 43: - if (lookahead == '\n') SKIP(166) + if (lookahead == '\n') SKIP(137) END_STATE(); case 44: - if (lookahead == '\n') SKIP(166) + if (lookahead == '\n') SKIP(137) if (lookahead == '\r') SKIP(43) END_STATE(); case 45: - if (lookahead == '\n') SKIP(137) + if (lookahead == '\n') SKIP(180) END_STATE(); case 46: - if (lookahead == '\n') SKIP(137) + if (lookahead == '\n') SKIP(180) if (lookahead == '\r') SKIP(45) END_STATE(); case 47: - if (lookahead == '\n') SKIP(180) + if (lookahead == '\n') SKIP(181) END_STATE(); case 48: - if (lookahead == '\n') SKIP(180) + if (lookahead == '\n') SKIP(181) if (lookahead == '\r') SKIP(47) END_STATE(); case 49: - if (lookahead == '\n') SKIP(181) + if (lookahead == '\n') SKIP(158) END_STATE(); case 50: - if (lookahead == '\n') SKIP(181) + if (lookahead == '\n') SKIP(158) if (lookahead == '\r') SKIP(49) END_STATE(); case 51: - if (lookahead == '\n') SKIP(158) + if (lookahead == '\n') SKIP(173) END_STATE(); case 52: - if (lookahead == '\n') SKIP(158) + if (lookahead == '\n') SKIP(173) if (lookahead == '\r') SKIP(51) END_STATE(); case 53: - if (lookahead == '\n') SKIP(173) + if (lookahead == '\n') SKIP(191) END_STATE(); case 54: - if (lookahead == '\n') SKIP(173) + if (lookahead == '\n') SKIP(191) if (lookahead == '\r') SKIP(53) END_STATE(); case 55: - if (lookahead == '\n') SKIP(191) + if (lookahead == '\n') SKIP(197) END_STATE(); case 56: - if (lookahead == '\n') SKIP(191) + if (lookahead == '\n') SKIP(197) if (lookahead == '\r') SKIP(55) END_STATE(); case 57: - if (lookahead == '\n') SKIP(197) + if (lookahead == '\n') SKIP(200) END_STATE(); case 58: - if (lookahead == '\n') SKIP(197) + if (lookahead == '\n') SKIP(200) if (lookahead == '\r') SKIP(57) END_STATE(); case 59: - if (lookahead == '\n') SKIP(200) + if (lookahead == '\n') SKIP(199) END_STATE(); case 60: - if (lookahead == '\n') SKIP(200) + if (lookahead == '\n') SKIP(199) if (lookahead == '\r') SKIP(59) END_STATE(); case 61: - if (lookahead == '\n') SKIP(199) + if (lookahead == '\n') SKIP(178) END_STATE(); case 62: - if (lookahead == '\n') SKIP(199) + if (lookahead == '\n') SKIP(178) if (lookahead == '\r') SKIP(61) END_STATE(); case 63: - if (lookahead == '\n') SKIP(178) + if (lookahead == '\n') SKIP(202) END_STATE(); case 64: - if (lookahead == '\n') SKIP(178) + if (lookahead == '\n') SKIP(202) if (lookahead == '\r') SKIP(63) END_STATE(); case 65: - if (lookahead == '\n') SKIP(202) + if (lookahead == '\n') SKIP(201) END_STATE(); case 66: - if (lookahead == '\n') SKIP(202) + if (lookahead == '\n') SKIP(201) if (lookahead == '\r') SKIP(65) END_STATE(); case 67: - if (lookahead == '\n') SKIP(201) + if (lookahead == '\n') SKIP(143) END_STATE(); case 68: - if (lookahead == '\n') SKIP(201) + if (lookahead == '\n') SKIP(143) if (lookahead == '\r') SKIP(67) END_STATE(); case 69: - if (lookahead == '\n') SKIP(143) + if (lookahead == '\n') SKIP(71) END_STATE(); case 70: - if (lookahead == '\n') SKIP(143) + if (lookahead == '\n') SKIP(71) if (lookahead == '\r') SKIP(69) END_STATE(); case 71: - if (lookahead == '\n') SKIP(73) - END_STATE(); - case 72: - if (lookahead == '\n') SKIP(73) - if (lookahead == '\r') SKIP(71) - END_STATE(); - case 73: if (lookahead == '\n') ADVANCE(264); if (lookahead == '!') ADVANCE(218); if (lookahead == '%') ADVANCE(341); @@ -11495,38 +11495,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(365); if (lookahead == '=') ADVANCE(219); if (lookahead == '>') ADVANCE(356); - if (lookahead == '\\') SKIP(72) + if (lookahead == '\\') SKIP(70) if (lookahead == '^') ADVANCE(348); if (lookahead == '|') ADVANCE(347); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(73) + lookahead == ' ') SKIP(71) + END_STATE(); + case 72: + if (lookahead == '\n') SKIP(203) + END_STATE(); + case 73: + if (lookahead == '\n') SKIP(203) + if (lookahead == '\r') SKIP(72) END_STATE(); case 74: - if (lookahead == '\n') SKIP(203) + if (lookahead == '\n') SKIP(192) END_STATE(); case 75: - if (lookahead == '\n') SKIP(203) + if (lookahead == '\n') SKIP(192) if (lookahead == '\r') SKIP(74) END_STATE(); case 76: - if (lookahead == '\n') SKIP(192) - END_STATE(); - case 77: - if (lookahead == '\n') SKIP(192) - if (lookahead == '\r') SKIP(76) - END_STATE(); - case 78: if (lookahead == '\n') SKIP(193) if (lookahead == '"') ADVANCE(436); if (lookahead == '/') ADVANCE(437); - if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\\') ADVANCE(77); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') ADVANCE(440); if (lookahead != 0) ADVANCE(441); END_STATE(); - case 79: + case 77: if (lookahead == '\n') ADVANCE(443); if (lookahead == '\r') ADVANCE(442); if (lookahead == 'U') ADVANCE(254); @@ -11535,7 +11535,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9')) ADVANCE(445); if (lookahead != 0) ADVANCE(442); END_STATE(); - case 80: + case 78: if (lookahead == '\n') ADVANCE(265); if (lookahead == '(') ADVANCE(267); if (lookahead == '/') ADVANCE(309); @@ -11545,7 +11545,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(306); if (lookahead != 0) ADVANCE(310); END_STATE(); - case 81: + case 79: if (lookahead == '\n') ADVANCE(265); if (lookahead == '/') ADVANCE(309); if (lookahead == '\\') ADVANCE(307); @@ -11554,7 +11554,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(306); if (lookahead != 0) ADVANCE(310); END_STATE(); - case 82: + case 80: if (lookahead == '\n') SKIP(215) if (lookahead == '/') ADVANCE(430); if (lookahead == '\\') ADVANCE(429); @@ -11564,46 +11564,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\'') ADVANCE(428); END_STATE(); - case 83: + case 81: if (lookahead == '\n') SKIP(134) END_STATE(); - case 84: + case 82: if (lookahead == '\n') SKIP(134) + if (lookahead == '\r') SKIP(81) + END_STATE(); + case 83: + if (lookahead == '\n') SKIP(135) + END_STATE(); + case 84: + if (lookahead == '\n') SKIP(135) if (lookahead == '\r') SKIP(83) END_STATE(); case 85: - if (lookahead == '\n') SKIP(135) + if (lookahead == '\n') SKIP(163) END_STATE(); case 86: - if (lookahead == '\n') SKIP(135) + if (lookahead == '\n') SKIP(163) if (lookahead == '\r') SKIP(85) END_STATE(); case 87: - if (lookahead == '\n') SKIP(179) + if (lookahead == '\n') SKIP(147) END_STATE(); case 88: - if (lookahead == '\n') SKIP(179) + if (lookahead == '\n') SKIP(147) if (lookahead == '\r') SKIP(87) END_STATE(); case 89: - if (lookahead == '\n') SKIP(147) + if (lookahead == '\n') SKIP(145) END_STATE(); case 90: - if (lookahead == '\n') SKIP(147) + if (lookahead == '\n') SKIP(145) if (lookahead == '\r') SKIP(89) END_STATE(); case 91: - if (lookahead == '\n') SKIP(145) + if (lookahead == '\n') SKIP(157) END_STATE(); case 92: - if (lookahead == '\n') SKIP(145) + if (lookahead == '\n') SKIP(157) if (lookahead == '\r') SKIP(91) END_STATE(); case 93: - if (lookahead == '\n') SKIP(157) + if (lookahead == '\n') SKIP(149) END_STATE(); case 94: - if (lookahead == '\n') SKIP(157) + if (lookahead == '\n') SKIP(149) if (lookahead == '\r') SKIP(93) END_STATE(); case 95: @@ -11614,59 +11621,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(95) END_STATE(); case 97: - if (lookahead == '\n') SKIP(149) + if (lookahead == '\n') SKIP(164) END_STATE(); case 98: - if (lookahead == '\n') SKIP(149) + if (lookahead == '\n') SKIP(164) if (lookahead == '\r') SKIP(97) END_STATE(); case 99: - if (lookahead == '\n') SKIP(164) + if (lookahead == '\n') SKIP(188) END_STATE(); case 100: - if (lookahead == '\n') SKIP(164) + if (lookahead == '\n') SKIP(188) if (lookahead == '\r') SKIP(99) END_STATE(); case 101: - if (lookahead == '\n') SKIP(188) + if (lookahead == '\n') SKIP(187) END_STATE(); case 102: - if (lookahead == '\n') SKIP(188) + if (lookahead == '\n') SKIP(187) if (lookahead == '\r') SKIP(101) END_STATE(); case 103: - if (lookahead == '\n') SKIP(187) + if (lookahead == '\n') SKIP(169) END_STATE(); case 104: - if (lookahead == '\n') SKIP(187) + if (lookahead == '\n') SKIP(169) if (lookahead == '\r') SKIP(103) END_STATE(); case 105: - if (lookahead == '\n') SKIP(169) + if (lookahead == '\n') SKIP(151) END_STATE(); case 106: - if (lookahead == '\n') SKIP(169) + if (lookahead == '\n') SKIP(151) if (lookahead == '\r') SKIP(105) END_STATE(); case 107: - if (lookahead == '\n') SKIP(151) + if (lookahead == '\n') SKIP(175) END_STATE(); case 108: - if (lookahead == '\n') SKIP(151) + if (lookahead == '\n') SKIP(175) if (lookahead == '\r') SKIP(107) END_STATE(); case 109: - if (lookahead == '\n') SKIP(175) + if (lookahead == '\n') SKIP(198) END_STATE(); case 110: - if (lookahead == '\n') SKIP(175) + if (lookahead == '\n') SKIP(198) if (lookahead == '\r') SKIP(109) END_STATE(); case 111: - if (lookahead == '\n') SKIP(198) + if (lookahead == '\n') SKIP(179) END_STATE(); case 112: - if (lookahead == '\n') SKIP(198) + if (lookahead == '\n') SKIP(179) if (lookahead == '\r') SKIP(111) END_STATE(); case 113: @@ -11907,7 +11914,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(480); if (lookahead == 'U') ADVANCE(454); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(84) + if (lookahead == '\\') SKIP(82) if (lookahead == ']') ADVANCE(380); if (lookahead == '^') ADVANCE(348); if (lookahead == 'b') ADVANCE(509); @@ -11956,7 +11963,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(480); if (lookahead == 'U') ADVANCE(454); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(86) + if (lookahead == '\\') SKIP(84) if (lookahead == '^') ADVANCE(348); if (lookahead == 'b') ADVANCE(509); if (lookahead == 'c') ADVANCE(494); @@ -12030,7 +12037,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(382); if (lookahead == '>') ADVANCE(357); if (lookahead == '[') ADVANCE(227); - if (lookahead == '\\') SKIP(46) + if (lookahead == '\\') SKIP(44) if (lookahead == '^') ADVANCE(349); if (lookahead == '|') ADVANCE(346); if (lookahead == '~') ADVANCE(319); @@ -12282,7 +12289,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(412); if (lookahead == 'L') ADVANCE(468); if (lookahead == 'U') ADVANCE(469); - if (lookahead == '\\') SKIP(70) + if (lookahead == '\\') SKIP(68) if (lookahead == 'u') ADVANCE(470); if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || @@ -12315,7 +12322,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'R') ADVANCE(540); if (lookahead == 'U') ADVANCE(541); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(92) + if (lookahead == '\\') SKIP(90) if (lookahead == '^') ADVANCE(349); if (lookahead == 'u') ADVANCE(542); if (lookahead == '|') ADVANCE(346); @@ -12348,7 +12355,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'R') ADVANCE(453); if (lookahead == 'U') ADVANCE(455); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(92) + if (lookahead == '\\') SKIP(90) if (lookahead == '^') ADVANCE(349); if (lookahead == 'u') ADVANCE(458); if (lookahead == '|') ADVANCE(346); @@ -12383,7 +12390,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'R') ADVANCE(540); if (lookahead == 'U') ADVANCE(541); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(90) + if (lookahead == '\\') SKIP(88) if (lookahead == ']') ADVANCE(380); if (lookahead == '^') ADVANCE(349); if (lookahead == 'u') ADVANCE(542); @@ -12420,7 +12427,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'R') ADVANCE(453); if (lookahead == 'U') ADVANCE(455); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(90) + if (lookahead == '\\') SKIP(88) if (lookahead == ']') ADVANCE(380); if (lookahead == '^') ADVANCE(349); if (lookahead == 'u') ADVANCE(458); @@ -12454,7 +12461,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'R') ADVANCE(540); if (lookahead == 'U') ADVANCE(541); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(98) + if (lookahead == '\\') SKIP(94) if (lookahead == '^') ADVANCE(349); if (lookahead == 'u') ADVANCE(542); if (lookahead == '|') ADVANCE(346); @@ -12486,7 +12493,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'R') ADVANCE(453); if (lookahead == 'U') ADVANCE(455); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(98) + if (lookahead == '\\') SKIP(94) if (lookahead == '^') ADVANCE(349); if (lookahead == 'u') ADVANCE(458); if (lookahead == '|') ADVANCE(346); @@ -12521,7 +12528,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'R') ADVANCE(540); if (lookahead == 'U') ADVANCE(541); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(108) + if (lookahead == '\\') SKIP(106) if (lookahead == ']') ADVANCE(380); if (lookahead == '^') ADVANCE(348); if (lookahead == 'u') ADVANCE(542); @@ -12557,7 +12564,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'R') ADVANCE(453); if (lookahead == 'U') ADVANCE(455); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(108) + if (lookahead == '\\') SKIP(106) if (lookahead == ']') ADVANCE(380); if (lookahead == '^') ADVANCE(348); if (lookahead == 'u') ADVANCE(458); @@ -12691,11 +12698,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(382); if (lookahead == '>') ADVANCE(357); if (lookahead == '?') ADVANCE(387); - if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(30) + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(26) if (lookahead == '^') ADVANCE(349); if (lookahead == '{') ADVANCE(374); if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -12716,18 +12725,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(325); if (lookahead == '.') ADVANCE(401); if (lookahead == '/') ADVANCE(340); - if (lookahead == ':') ADVANCE(216); + if (lookahead == ':') ADVANCE(386); if (lookahead == ';') ADVANCE(370); if (lookahead == '<') ADVANCE(362); if (lookahead == '=') ADVANCE(382); if (lookahead == '>') ADVANCE(357); if (lookahead == '?') ADVANCE(387); - if (lookahead == '[') ADVANCE(377); + if (lookahead == '[') ADVANCE(376); if (lookahead == '\\') SKIP(28) if (lookahead == '^') ADVANCE(349); if (lookahead == '{') ADVANCE(374); if (lookahead == '|') ADVANCE(346); - if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -12754,7 +12762,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(357); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(94) + if (lookahead == '\\') SKIP(92) if (lookahead == '^') ADVANCE(349); if (lookahead == '{') ADVANCE(374); if (lookahead == '|') ADVANCE(346); @@ -12783,7 +12791,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(357); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(378); - if (lookahead == '\\') SKIP(52) + if (lookahead == '\\') SKIP(50) if (lookahead == '^') ADVANCE(349); if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || @@ -12811,7 +12819,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(357); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(38) + if (lookahead == '\\') SKIP(34) if (lookahead == '^') ADVANCE(349); if (lookahead == 'b') ADVANCE(509); if (lookahead == 'c') ADVANCE(494); @@ -12934,7 +12942,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(357); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(377); - if (lookahead == '\\') SKIP(26) + if (lookahead == '\\') SKIP(86) if (lookahead == '^') ADVANCE(349); if (lookahead == '{') ADVANCE(374); if (lookahead == '|') ADVANCE(346); @@ -12967,7 +12975,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(357); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(100) + if (lookahead == '\\') SKIP(98) if (lookahead == ']') ADVANCE(380); if (lookahead == '^') ADVANCE(349); if (lookahead == '{') ADVANCE(374); @@ -12998,7 +13006,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(528); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(32) + if (lookahead == '\\') SKIP(30) if (lookahead == '^') ADVANCE(349); if (lookahead == '{') ADVANCE(374); if (lookahead == '|') ADVANCE(346); @@ -13029,7 +13037,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(357); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(377); - if (lookahead == '\\') SKIP(44) + if (lookahead == '\\') SKIP(42) if (lookahead == '^') ADVANCE(349); if (lookahead == '{') ADVANCE(374); if (lookahead == '|') ADVANCE(346); @@ -13061,7 +13069,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(357); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(34) + if (lookahead == '\\') SKIP(32) if (lookahead == ']') ADVANCE(380); if (lookahead == '^') ADVANCE(349); if (lookahead == 'b') ADVANCE(509); @@ -13133,7 +13141,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(357); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(106) + if (lookahead == '\\') SKIP(104) if (lookahead == ']') ADVANCE(380); if (lookahead == '^') ADVANCE(349); if (lookahead == '|') ADVANCE(346); @@ -13164,7 +13172,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(357); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(106) + if (lookahead == '\\') SKIP(104) if (lookahead == ']') ADVANCE(380); if (lookahead == '^') ADVANCE(349); if (lookahead == '|') ADVANCE(346); @@ -13224,7 +13232,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(528); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(42) + if (lookahead == '\\') SKIP(40) if (lookahead == '^') ADVANCE(349); if (lookahead == '{') ADVANCE(374); if (lookahead == '|') ADVANCE(346); @@ -13253,7 +13261,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(357); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(378); - if (lookahead == '\\') SKIP(54) + if (lookahead == '\\') SKIP(52) if (lookahead == '^') ADVANCE(349); if (lookahead == '|') ADVANCE(346); if (lookahead == '}') ADVANCE(375); @@ -13281,7 +13289,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(528); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(40) + if (lookahead == '\\') SKIP(38) if (lookahead == '^') ADVANCE(349); if (lookahead == 'b') ADVANCE(509); if (lookahead == 'c') ADVANCE(494); @@ -13317,7 +13325,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(528); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(110) + if (lookahead == '\\') SKIP(108) if (lookahead == '^') ADVANCE(349); if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || @@ -13344,7 +13352,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(528); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(110) + if (lookahead == '\\') SKIP(108) if (lookahead == '^') ADVANCE(349); if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || @@ -13400,7 +13408,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'F') ADVANCE(476); if (lookahead == 'T') ADVANCE(480); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(64) + if (lookahead == '\\') SKIP(62) if (lookahead == '^') ADVANCE(349); if (lookahead == 'f') ADVANCE(485); if (lookahead == 't') ADVANCE(512); @@ -13433,7 +13441,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(356); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(377); - if (lookahead == '\\') SKIP(88) + if (lookahead == '\\') SKIP(112) if (lookahead == '^') ADVANCE(348); if (lookahead == '{') ADVANCE(374); if (lookahead == '|') ADVANCE(347); @@ -13466,7 +13474,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(356); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(48) + if (lookahead == '\\') SKIP(46) if (lookahead == ']') ADVANCE(380); if (lookahead == '^') ADVANCE(348); if (lookahead == '{') ADVANCE(374); @@ -13498,7 +13506,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(528); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(50) + if (lookahead == '\\') SKIP(48) if (lookahead == '^') ADVANCE(348); if (lookahead == '{') ADVANCE(374); if (lookahead == '|') ADVANCE(347); @@ -13702,7 +13710,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(528); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(104) + if (lookahead == '\\') SKIP(102) if (lookahead == '^') ADVANCE(348); if (lookahead == '{') ADVANCE(374); if (lookahead == '|') ADVANCE(347); @@ -13730,7 +13738,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(528); if (lookahead == '?') ADVANCE(387); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(102) + if (lookahead == '\\') SKIP(100) if (lookahead == '^') ADVANCE(348); if (lookahead == 'b') ADVANCE(509); if (lookahead == 'c') ADVANCE(494); @@ -13814,7 +13822,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'L') ADVANCE(452); if (lookahead == 'U') ADVANCE(456); if (lookahead == '[') ADVANCE(377); - if (lookahead == '\\') SKIP(56) + if (lookahead == '\\') SKIP(54) if (lookahead == 'b') ADVANCE(509); if (lookahead == 'c') ADVANCE(494); if (lookahead == 'd') ADVANCE(505); @@ -13838,7 +13846,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(224); if (lookahead == 'L') ADVANCE(452); if (lookahead == 'U') ADVANCE(456); - if (lookahead == '\\') SKIP(77) + if (lookahead == '\\') SKIP(75) if (lookahead == 'u') ADVANCE(460); if (lookahead == '\t' || lookahead == '\n' || @@ -13851,7 +13859,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 193: if (lookahead == '"') ADVANCE(436); if (lookahead == '/') ADVANCE(206); - if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\\') ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -13940,7 +13948,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(381); if (lookahead == '>') ADVANCE(528); if (lookahead == '[') ADVANCE(377); - if (lookahead == '\\') SKIP(58) + if (lookahead == '\\') SKIP(56) if (lookahead == '{') ADVANCE(374); if (lookahead == '|') ADVANCE(240); if (lookahead == '~') ADVANCE(319); @@ -13967,7 +13975,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(381); if (lookahead == '>') ADVANCE(528); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(112) + if (lookahead == '\\') SKIP(110) if (lookahead == '{') ADVANCE(374); if (lookahead == '|') ADVANCE(240); if (lookahead == '~') ADVANCE(319); @@ -13993,7 +14001,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(381); if (lookahead == '>') ADVANCE(528); if (lookahead == '[') ADVANCE(377); - if (lookahead == '\\') SKIP(62) + if (lookahead == '\\') SKIP(60) if (lookahead == '{') ADVANCE(374); if (lookahead == '|') ADVANCE(240); if (lookahead == '\t' || @@ -14014,7 +14022,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(370); if (lookahead == '=') ADVANCE(381); if (lookahead == '[') ADVANCE(377); - if (lookahead == '\\') SKIP(60) + if (lookahead == '\\') SKIP(58) if (lookahead == 'b') ADVANCE(509); if (lookahead == 'c') ADVANCE(494); if (lookahead == 'd') ADVANCE(505); @@ -14041,7 +14049,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(370); if (lookahead == '=') ADVANCE(381); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(68) + if (lookahead == '\\') SKIP(66) if (lookahead == '{') ADVANCE(374); if (lookahead == '|') ADVANCE(240); if (lookahead == '\t' || @@ -14060,7 +14068,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(370); if (lookahead == '=') ADVANCE(381); if (lookahead == '[') ADVANCE(376); - if (lookahead == '\\') SKIP(66) + if (lookahead == '\\') SKIP(64) if (lookahead == 'b') ADVANCE(509); if (lookahead == 'c') ADVANCE(494); if (lookahead == 'd') ADVANCE(505); @@ -14088,7 +14096,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(381); if (lookahead == '>') ADVANCE(528); if (lookahead == '[') ADVANCE(378); - if (lookahead == '\\') SKIP(75) + if (lookahead == '\\') SKIP(73) if (lookahead == '{') ADVANCE(374); if (lookahead == '\t' || lookahead == '\n' || @@ -14144,7 +14152,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 215: if (lookahead == '/') ADVANCE(206); - if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\\') ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -15523,7 +15531,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 431: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\\') ADVANCE(77); END_STATE(); case 432: ACCEPT_TOKEN(anon_sym_L_DQUOTE); @@ -15589,7 +15597,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 443: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\\') ADVANCE(77); END_STATE(); case 444: ACCEPT_TOKEN(sym_escape_sequence); @@ -16590,1287 +16598,1297 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 46: if (lookahead == 'l') ADVANCE(107); + if (lookahead == 'p') ADVANCE(108); END_STATE(); case 47: - if (lookahead == 'n') ADVANCE(108); + if (lookahead == 'n') ADVANCE(109); END_STATE(); case 48: - if (lookahead == 't') ADVANCE(109); + if (lookahead == 't') ADVANCE(110); END_STATE(); case 49: - if (lookahead == 'm') ADVANCE(110); + if (lookahead == 'm') ADVANCE(111); END_STATE(); case 50: - if (lookahead == 'w') ADVANCE(111); + if (lookahead == 'w') ADVANCE(112); END_STATE(); case 51: - if (lookahead == 'e') ADVANCE(112); - if (lookahead == 't') ADVANCE(113); + if (lookahead == 'e') ADVANCE(113); + if (lookahead == 't') ADVANCE(114); END_STATE(); case 52: - if (lookahead == 'l') ADVANCE(114); + if (lookahead == 'l') ADVANCE(115); END_STATE(); case 53: - if (lookahead == 'e') ADVANCE(115); + if (lookahead == 'e') ADVANCE(116); END_STATE(); case 54: ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '_') ADVANCE(116); + if (lookahead == '_') ADVANCE(117); END_STATE(); case 55: - if (lookahead == 'e') ADVANCE(117); + if (lookahead == 'e') ADVANCE(118); END_STATE(); case 56: - if (lookahead == 'i') ADVANCE(118); - if (lookahead == 'o') ADVANCE(119); + if (lookahead == 'i') ADVANCE(119); + if (lookahead == 'o') ADVANCE(120); END_STATE(); case 57: - if (lookahead == 'b') ADVANCE(120); + if (lookahead == 'b') ADVANCE(121); END_STATE(); case 58: - if (lookahead == 'g') ADVANCE(121); - if (lookahead == 'q') ADVANCE(122); - if (lookahead == 's') ADVANCE(123); - if (lookahead == 't') ADVANCE(124); + if (lookahead == 'g') ADVANCE(122); + if (lookahead == 'q') ADVANCE(123); + if (lookahead == 's') ADVANCE(124); + if (lookahead == 't') ADVANCE(125); END_STATE(); case 59: - if (lookahead == 'o') ADVANCE(125); + if (lookahead == 'o') ADVANCE(126); END_STATE(); case 60: - if (lookahead == 'g') ADVANCE(126); - if (lookahead == 'z') ADVANCE(127); + if (lookahead == 'g') ADVANCE(127); + if (lookahead == 'z') ADVANCE(128); END_STATE(); case 61: - if (lookahead == 'a') ADVANCE(128); - if (lookahead == 'r') ADVANCE(129); + if (lookahead == 'a') ADVANCE(129); + if (lookahead == 'r') ADVANCE(130); END_STATE(); case 62: - if (lookahead == 'i') ADVANCE(130); + if (lookahead == 'i') ADVANCE(131); END_STATE(); case 63: - if (lookahead == 'm') ADVANCE(131); + if (lookahead == 'm') ADVANCE(132); END_STATE(); case 64: - if (lookahead == 'i') ADVANCE(132); - if (lookahead == 'r') ADVANCE(133); + if (lookahead == 'i') ADVANCE(133); + if (lookahead == 'r') ADVANCE(134); END_STATE(); case 65: - if (lookahead == 'y') ADVANCE(134); + if (lookahead == 'y') ADVANCE(135); END_STATE(); case 66: - if (lookahead == 'p') ADVANCE(135); + if (lookahead == 'p') ADVANCE(136); END_STATE(); case 67: - if (lookahead == 'i') ADVANCE(136); - if (lookahead == 's') ADVANCE(137); + if (lookahead == 'i') ADVANCE(137); + if (lookahead == 's') ADVANCE(138); END_STATE(); case 68: - if (lookahead == 'i') ADVANCE(138); + if (lookahead == 'i') ADVANCE(139); END_STATE(); case 69: - if (lookahead == 'r') ADVANCE(139); + if (lookahead == 'r') ADVANCE(140); END_STATE(); case 70: - if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'l') ADVANCE(141); END_STATE(); case 71: - if (lookahead == 'i') ADVANCE(141); + if (lookahead == 'i') ADVANCE(142); END_STATE(); case 72: - if (lookahead == 'r') ADVANCE(142); + if (lookahead == 'r') ADVANCE(143); END_STATE(); case 73: - if (lookahead == 'L') ADVANCE(143); + if (lookahead == 'L') ADVANCE(144); END_STATE(); case 74: - if (lookahead == 'o') ADVANCE(144); + if (lookahead == 'o') ADVANCE(145); END_STATE(); case 75: - if (lookahead == 't') ADVANCE(145); + if (lookahead == 't') ADVANCE(146); END_STATE(); case 76: - if (lookahead == 'a') ADVANCE(146); + if (lookahead == 'a') ADVANCE(147); END_STATE(); case 77: - if (lookahead == 'd') ADVANCE(147); - if (lookahead == 'l') ADVANCE(148); + if (lookahead == 'd') ADVANCE(148); + if (lookahead == 'l') ADVANCE(149); END_STATE(); case 78: - if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 79: - if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'a') ADVANCE(151); END_STATE(); case 80: - if (lookahead == 'e') ADVANCE(151); + if (lookahead == 'e') ADVANCE(152); END_STATE(); case 81: - if (lookahead == 'p') ADVANCE(152); - if (lookahead == 't') ADVANCE(153); + if (lookahead == 'p') ADVANCE(153); + if (lookahead == 't') ADVANCE(154); END_STATE(); case 82: - if (lookahead == 'h') ADVANCE(154); + if (lookahead == 'h') ADVANCE(155); END_STATE(); case 83: - if (lookahead == 'n') ADVANCE(155); - if (lookahead == 'p') ADVANCE(156); + if (lookahead == 'n') ADVANCE(156); + if (lookahead == 'p') ADVANCE(157); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(157); + if (lookahead == 'e') ADVANCE(158); END_STATE(); case 85: - if (lookahead == 'a') ADVANCE(158); + if (lookahead == 'a') ADVANCE(159); END_STATE(); case 86: ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '_') ADVANCE(159); + if (lookahead == '_') ADVANCE(160); END_STATE(); case 87: - if (lookahead == 'o') ADVANCE(160); + if (lookahead == 'o') ADVANCE(161); END_STATE(); case 88: - if (lookahead == 'a') ADVANCE(161); - if (lookahead == 'o') ADVANCE(162); + if (lookahead == 'a') ADVANCE(162); + if (lookahead == 'o') ADVANCE(163); END_STATE(); case 89: - if (lookahead == 'a') ADVANCE(163); + if (lookahead == 'a') ADVANCE(164); END_STATE(); case 90: - if (lookahead == 'e') ADVANCE(164); + if (lookahead == 'e') ADVANCE(165); END_STATE(); case 91: - if (lookahead == 'c') ADVANCE(165); + if (lookahead == 'c') ADVANCE(166); END_STATE(); case 92: - if (lookahead == 's') ADVANCE(166); + if (lookahead == 's') ADVANCE(167); END_STATE(); case 93: - if (lookahead == 'a') ADVANCE(167); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == 'y') ADVANCE(169); + if (lookahead == 'a') ADVANCE(168); + if (lookahead == 'r') ADVANCE(169); + if (lookahead == 'y') ADVANCE(170); END_STATE(); case 94: - if (lookahead == 'p') ADVANCE(170); + if (lookahead == 'p') ADVANCE(171); END_STATE(); case 95: - if (lookahead == 'c') ADVANCE(171); - if (lookahead == 's') ADVANCE(172); - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'c') ADVANCE(172); + if (lookahead == 's') ADVANCE(173); + if (lookahead == 't') ADVANCE(174); END_STATE(); case 96: - if (lookahead == 'l') ADVANCE(174); + if (lookahead == 'l') ADVANCE(175); END_STATE(); case 97: - if (lookahead == 'a') ADVANCE(175); - if (lookahead == 'i') ADVANCE(176); + if (lookahead == 'a') ADVANCE(176); + if (lookahead == 'i') ADVANCE(177); END_STATE(); case 98: - if (lookahead == 'e') ADVANCE(177); - END_STATE(); - case 99: if (lookahead == 'e') ADVANCE(178); END_STATE(); + case 99: + if (lookahead == 'e') ADVANCE(179); + END_STATE(); case 100: - if (lookahead == 'm') ADVANCE(179); + if (lookahead == 'm') ADVANCE(180); END_STATE(); case 101: - if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'l') ADVANCE(181); END_STATE(); case 102: - if (lookahead == 'e') ADVANCE(181); + if (lookahead == 'e') ADVANCE(182); END_STATE(); case 103: - if (lookahead == 'a') ADVANCE(182); + if (lookahead == 'a') ADVANCE(183); END_STATE(); case 104: ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(183); + if (lookahead == 'e') ADVANCE(184); END_STATE(); case 106: - if (lookahead == 'o') ADVANCE(184); + if (lookahead == 'o') ADVANCE(185); END_STATE(); case 107: - if (lookahead == 'i') ADVANCE(185); + if (lookahead == 'i') ADVANCE(186); END_STATE(); case 108: - if (lookahead == 'g') ADVANCE(186); + if (lookahead == 'u') ADVANCE(187); END_STATE(); case 109: - if (lookahead == 'a') ADVANCE(187); + if (lookahead == 'g') ADVANCE(188); END_STATE(); case 110: - if (lookahead == 'e') ADVANCE(188); + if (lookahead == 'a') ADVANCE(189); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_new); + if (lookahead == 'e') ADVANCE(190); END_STATE(); case 112: - if (lookahead == 'x') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '_') ADVANCE(190); + if (lookahead == 'x') ADVANCE(191); END_STATE(); case 114: - if (lookahead == 'l') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_not); + if (lookahead == '_') ADVANCE(192); END_STATE(); case 115: - if (lookahead == 'r') ADVANCE(192); + if (lookahead == 'l') ADVANCE(193); END_STATE(); case 116: - if (lookahead == 'e') ADVANCE(193); - END_STATE(); - case 117: if (lookahead == 'r') ADVANCE(194); END_STATE(); + case 117: + if (lookahead == 'e') ADVANCE(195); + END_STATE(); case 118: - if (lookahead == 'v') ADVANCE(195); + if (lookahead == 'r') ADVANCE(196); END_STATE(); case 119: - if (lookahead == 't') ADVANCE(196); + if (lookahead == 'v') ADVANCE(197); END_STATE(); case 120: - if (lookahead == 'l') ADVANCE(197); + if (lookahead == 't') ADVANCE(198); END_STATE(); case 121: - if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'l') ADVANCE(199); END_STATE(); case 122: - if (lookahead == 'u') ADVANCE(199); + if (lookahead == 'i') ADVANCE(200); END_STATE(); case 123: - if (lookahead == 't') ADVANCE(200); - END_STATE(); - case 124: if (lookahead == 'u') ADVANCE(201); END_STATE(); + case 124: + if (lookahead == 't') ADVANCE(202); + END_STATE(); case 125: - if (lookahead == 'r') ADVANCE(202); + if (lookahead == 'u') ADVANCE(203); END_STATE(); case 126: - if (lookahead == 'n') ADVANCE(203); + if (lookahead == 'r') ADVANCE(204); END_STATE(); case 127: - if (lookahead == 'e') ADVANCE(204); + if (lookahead == 'n') ADVANCE(205); END_STATE(); case 128: - if (lookahead == 't') ADVANCE(205); + if (lookahead == 'e') ADVANCE(206); END_STATE(); case 129: - if (lookahead == 'u') ADVANCE(206); - END_STATE(); - case 130: if (lookahead == 't') ADVANCE(207); END_STATE(); + case 130: + if (lookahead == 'u') ADVANCE(208); + END_STATE(); case 131: - if (lookahead == 'p') ADVANCE(208); + if (lookahead == 't') ADVANCE(209); END_STATE(); case 132: - if (lookahead == 's') ADVANCE(209); + if (lookahead == 'p') ADVANCE(210); END_STATE(); case 133: - if (lookahead == 'e') ADVANCE(210); - if (lookahead == 'o') ADVANCE(211); + if (lookahead == 's') ADVANCE(211); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_try); - END_STATE(); - case 135: if (lookahead == 'e') ADVANCE(212); - END_STATE(); - case 136: if (lookahead == 'o') ADVANCE(213); END_STATE(); + case 135: + ACCEPT_TOKEN(anon_sym_try); + END_STATE(); + case 136: + if (lookahead == 'e') ADVANCE(214); + END_STATE(); case 137: - if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(215); END_STATE(); case 138: - if (lookahead == 'n') ADVANCE(215); + if (lookahead == 'i') ADVANCE(216); END_STATE(); case 139: - if (lookahead == 't') ADVANCE(216); + if (lookahead == 'n') ADVANCE(217); END_STATE(); case 140: - if (lookahead == 'a') ADVANCE(217); + if (lookahead == 't') ADVANCE(218); END_STATE(); case 141: - if (lookahead == 'l') ADVANCE(218); + if (lookahead == 'a') ADVANCE(219); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '_') ADVANCE(219); + if (lookahead == 'l') ADVANCE(220); END_STATE(); case 143: - ACCEPT_TOKEN(sym_null); + ACCEPT_TOKEN(anon_sym_xor); + if (lookahead == '_') ADVANCE(221); END_STATE(); case 144: - if (lookahead == 'm') ADVANCE(220); + ACCEPT_TOKEN(sym_null); END_STATE(); case 145: - if (lookahead == 't') ADVANCE(221); + if (lookahead == 'm') ADVANCE(222); END_STATE(); case 146: - if (lookahead == 's') ADVANCE(222); + if (lookahead == 't') ADVANCE(223); END_STATE(); case 147: - if (lookahead == 'e') ADVANCE(223); + if (lookahead == 's') ADVANCE(224); END_STATE(); case 148: - if (lookahead == 'r') ADVANCE(224); + if (lookahead == 'e') ADVANCE(225); END_STATE(); case 149: - if (lookahead == 'c') ADVANCE(225); + if (lookahead == 'r') ADVANCE(226); END_STATE(); case 150: - if (lookahead == 's') ADVANCE(226); + if (lookahead == 'c') ADVANCE(227); END_STATE(); case 151: - if (lookahead == 's') ADVANCE(227); + if (lookahead == 's') ADVANCE(228); END_STATE(); case 152: - if (lookahead == 't') ADVANCE(228); + if (lookahead == 's') ADVANCE(229); END_STATE(); case 153: - if (lookahead == 'd') ADVANCE(229); + if (lookahead == 't') ADVANCE(230); END_STATE(); case 154: - if (lookahead == 'i') ADVANCE(230); + if (lookahead == 'd') ADVANCE(231); END_STATE(); case 155: - if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'i') ADVANCE(232); END_STATE(); case 156: - if (lookahead == 't') ADVANCE(232); + if (lookahead == 'a') ADVANCE(233); END_STATE(); case 157: - if (lookahead == 'c') ADVANCE(233); + if (lookahead == 't') ADVANCE(234); END_STATE(); case 158: - if (lookahead == 'l') ADVANCE(234); + if (lookahead == 'c') ADVANCE(235); END_STATE(); case 159: - if (lookahead == 'e') ADVANCE(235); + if (lookahead == 'l') ADVANCE(236); END_STATE(); case 160: - ACCEPT_TOKEN(sym_auto); + if (lookahead == 'e') ADVANCE(237); END_STATE(); case 161: - if (lookahead == 'n') ADVANCE(236); + ACCEPT_TOKEN(sym_auto); END_STATE(); case 162: - if (lookahead == 'r') ADVANCE(237); + if (lookahead == 'n') ADVANCE(238); END_STATE(); case 163: - if (lookahead == 'k') ADVANCE(238); + if (lookahead == 'r') ADVANCE(239); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'k') ADVANCE(240); END_STATE(); case 165: - if (lookahead == 'h') ADVANCE(239); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 166: - if (lookahead == 's') ADVANCE(240); + if (lookahead == 'h') ADVANCE(241); END_STATE(); case 167: - if (lookahead == 'w') ADVANCE(241); + if (lookahead == 's') ADVANCE(242); END_STATE(); case 168: - if (lookahead == 'e') ADVANCE(242); + if (lookahead == 'w') ADVANCE(243); END_STATE(); case 169: - if (lookahead == 'i') ADVANCE(243); + if (lookahead == 'e') ADVANCE(244); END_STATE(); case 170: - if (lookahead == 'l') ADVANCE(244); + if (lookahead == 'i') ADVANCE(245); END_STATE(); case 171: - if (lookahead == 'e') ADVANCE(245); + if (lookahead == 'l') ADVANCE(246); END_STATE(); case 172: - if (lookahead == 't') ADVANCE(246); + if (lookahead == 'e') ADVANCE(247); END_STATE(); case 173: - if (lookahead == 'i') ADVANCE(247); - END_STATE(); - case 174: if (lookahead == 't') ADVANCE(248); END_STATE(); + case 174: + if (lookahead == 'i') ADVANCE(249); + END_STATE(); case 175: - if (lookahead == 'u') ADVANCE(249); + if (lookahead == 't') ADVANCE(250); END_STATE(); case 176: - if (lookahead == 'n') ADVANCE(250); + if (lookahead == 'u') ADVANCE(251); END_STATE(); case 177: - if (lookahead == 't') ADVANCE(251); + if (lookahead == 'n') ADVANCE(252); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 't') ADVANCE(253); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_enum); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 180: - if (lookahead == 'i') ADVANCE(252); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 181: - if (lookahead == 'r') ADVANCE(253); + if (lookahead == 'i') ADVANCE(254); END_STATE(); case 182: - if (lookahead == 'l') ADVANCE(254); + if (lookahead == 'r') ADVANCE(255); END_STATE(); case 183: - if (lookahead == 'n') ADVANCE(255); + if (lookahead == 'l') ADVANCE(256); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_goto); + if (lookahead == 'n') ADVANCE(257); END_STATE(); case 185: - if (lookahead == 'n') ADVANCE(256); + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_long); + if (lookahead == 'n') ADVANCE(258); END_STATE(); case 187: - if (lookahead == 'b') ADVANCE(257); + if (lookahead == 't') ADVANCE(259); END_STATE(); case 188: - if (lookahead == 's') ADVANCE(258); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 189: - if (lookahead == 'c') ADVANCE(259); + if (lookahead == 'b') ADVANCE(260); END_STATE(); case 190: - if (lookahead == 'e') ADVANCE(260); + if (lookahead == 's') ADVANCE(261); END_STATE(); case 191: - if (lookahead == 'p') ADVANCE(261); + if (lookahead == 'c') ADVANCE(262); END_STATE(); case 192: - if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'e') ADVANCE(263); END_STATE(); case 193: - if (lookahead == 'q') ADVANCE(263); + if (lookahead == 'p') ADVANCE(264); END_STATE(); case 194: - if (lookahead == 'r') ADVANCE(264); - END_STATE(); - case 195: if (lookahead == 'a') ADVANCE(265); END_STATE(); + case 195: + if (lookahead == 'q') ADVANCE(266); + END_STATE(); case 196: - if (lookahead == 'e') ADVANCE(266); + if (lookahead == 'r') ADVANCE(267); END_STATE(); case 197: - if (lookahead == 'i') ADVANCE(267); + if (lookahead == 'a') ADVANCE(268); END_STATE(); case 198: - if (lookahead == 's') ADVANCE(268); + if (lookahead == 'e') ADVANCE(269); END_STATE(); case 199: - if (lookahead == 'i') ADVANCE(269); + if (lookahead == 'i') ADVANCE(270); END_STATE(); case 200: - if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); END_STATE(); case 201: - if (lookahead == 'r') ADVANCE(271); + if (lookahead == 'i') ADVANCE(272); END_STATE(); case 202: - if (lookahead == 't') ADVANCE(272); + if (lookahead == 'r') ADVANCE(273); END_STATE(); case 203: - if (lookahead == 'e') ADVANCE(273); + if (lookahead == 'r') ADVANCE(274); END_STATE(); case 204: - if (lookahead == 'o') ADVANCE(274); + if (lookahead == 't') ADVANCE(275); END_STATE(); case 205: - if (lookahead == 'i') ADVANCE(275); + if (lookahead == 'e') ADVANCE(276); END_STATE(); case 206: - if (lookahead == 'c') ADVANCE(276); + if (lookahead == 'o') ADVANCE(277); END_STATE(); case 207: - if (lookahead == 'c') ADVANCE(277); + if (lookahead == 'i') ADVANCE(278); END_STATE(); case 208: - if (lookahead == 'l') ADVANCE(278); + if (lookahead == 'c') ADVANCE(279); END_STATE(); case 209: - ACCEPT_TOKEN(sym_this); + if (lookahead == 'c') ADVANCE(280); END_STATE(); case 210: - if (lookahead == 'a') ADVANCE(279); + if (lookahead == 'l') ADVANCE(281); END_STATE(); case 211: - if (lookahead == 'w') ADVANCE(280); + ACCEPT_TOKEN(sym_this); END_STATE(); case 212: - if (lookahead == 'd') ADVANCE(281); - if (lookahead == 'n') ADVANCE(282); + if (lookahead == 'a') ADVANCE(282); END_STATE(); case 213: - if (lookahead == 'n') ADVANCE(283); + if (lookahead == 'w') ADVANCE(283); END_STATE(); case 214: - if (lookahead == 'g') ADVANCE(284); + if (lookahead == 'd') ADVANCE(284); + if (lookahead == 'n') ADVANCE(285); END_STATE(); case 215: - if (lookahead == 'g') ADVANCE(285); + if (lookahead == 'n') ADVANCE(286); END_STATE(); case 216: - if (lookahead == 'u') ADVANCE(286); + if (lookahead == 'g') ADVANCE(287); END_STATE(); case 217: - if (lookahead == 't') ADVANCE(287); + if (lookahead == 'g') ADVANCE(288); END_STATE(); case 218: - if (lookahead == 'e') ADVANCE(288); + if (lookahead == 'u') ADVANCE(289); END_STATE(); case 219: - if (lookahead == 'e') ADVANCE(289); + if (lookahead == 't') ADVANCE(290); END_STATE(); case 220: - if (lookahead == 'i') ADVANCE(290); + if (lookahead == 'e') ADVANCE(291); END_STATE(); case 221: - if (lookahead == 'r') ADVANCE(291); - END_STATE(); - case 222: if (lookahead == 'e') ADVANCE(292); END_STATE(); + case 222: + if (lookahead == 'i') ADVANCE(293); + END_STATE(); case 223: - if (lookahead == 'c') ADVANCE(293); + if (lookahead == 'r') ADVANCE(294); END_STATE(); case 224: - if (lookahead == 'c') ADVANCE(294); + if (lookahead == 'e') ADVANCE(295); END_STATE(); case 225: - if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'c') ADVANCE(296); END_STATE(); case 226: - if (lookahead == 't') ADVANCE(296); + if (lookahead == 'c') ADVANCE(297); END_STATE(); case 227: - if (lookahead == 't') ADVANCE(297); + if (lookahead == 'l') ADVANCE(298); END_STATE(); case 228: - if (lookahead == 'r') ADVANCE(298); + if (lookahead == 't') ADVANCE(299); END_STATE(); case 229: - if (lookahead == 'c') ADVANCE(299); + if (lookahead == 't') ADVANCE(300); END_STATE(); case 230: - if (lookahead == 's') ADVANCE(300); + if (lookahead == 'r') ADVANCE(301); END_STATE(); case 231: - if (lookahead == 'l') ADVANCE(301); + if (lookahead == 'c') ADVANCE(302); END_STATE(); case 232: - if (lookahead == 'r') ADVANCE(302); + if (lookahead == 's') ADVANCE(303); END_STATE(); case 233: - if (lookahead == 't') ADVANCE(303); + if (lookahead == 'l') ADVANCE(304); END_STATE(); case 234: - if (lookahead == 'i') ADVANCE(304); + if (lookahead == 'r') ADVANCE(305); END_STATE(); case 235: - if (lookahead == 'q') ADVANCE(305); + if (lookahead == 't') ADVANCE(306); END_STATE(); case 236: - if (lookahead == 'd') ADVANCE(306); + if (lookahead == 'i') ADVANCE(307); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_bitor); + if (lookahead == 'q') ADVANCE(308); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'd') ADVANCE(309); END_STATE(); case 239: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_bitor); END_STATE(); case 240: - ACCEPT_TOKEN(anon_sym_class); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 241: - if (lookahead == 'a') ADVANCE(307); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 242: - if (lookahead == 't') ADVANCE(308); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 243: - if (lookahead == 'e') ADVANCE(309); + if (lookahead == 'a') ADVANCE(310); END_STATE(); case 244: - ACCEPT_TOKEN(anon_sym_compl); + if (lookahead == 't') ADVANCE(311); END_STATE(); case 245: - if (lookahead == 'p') ADVANCE(310); + if (lookahead == 'e') ADVANCE(312); END_STATE(); case 246: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == 'e') ADVANCE(311); - if (lookahead == 'i') ADVANCE(312); + ACCEPT_TOKEN(anon_sym_compl); END_STATE(); case 247: - if (lookahead == 'n') ADVANCE(313); + if (lookahead == 'p') ADVANCE(313); END_STATE(); case 248: - if (lookahead == 'y') ADVANCE(314); + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(314); + if (lookahead == 'i') ADVANCE(315); END_STATE(); case 249: - if (lookahead == 'l') ADVANCE(315); + if (lookahead == 'n') ADVANCE(316); END_STATE(); case 250: - if (lookahead == 'e') ADVANCE(316); + if (lookahead == 'y') ADVANCE(317); END_STATE(); case 251: - if (lookahead == 'e') ADVANCE(317); + if (lookahead == 'l') ADVANCE(318); END_STATE(); case 252: - if (lookahead == 'c') ADVANCE(318); + if (lookahead == 'e') ADVANCE(319); END_STATE(); case 253: - if (lookahead == 'n') ADVANCE(319); + if (lookahead == 'e') ADVANCE(320); END_STATE(); case 254: - ACCEPT_TOKEN(anon_sym_final); + if (lookahead == 'c') ADVANCE(321); END_STATE(); case 255: - if (lookahead == 'd') ADVANCE(320); + if (lookahead == 'n') ADVANCE(322); END_STATE(); case 256: - if (lookahead == 'e') ADVANCE(321); + ACCEPT_TOKEN(anon_sym_final); END_STATE(); case 257: - if (lookahead == 'l') ADVANCE(322); + if (lookahead == 'd') ADVANCE(323); END_STATE(); case 258: - if (lookahead == 'p') ADVANCE(323); - END_STATE(); - case 259: if (lookahead == 'e') ADVANCE(324); END_STATE(); + case 259: + ACCEPT_TOKEN(anon_sym_input); + END_STATE(); case 260: - if (lookahead == 'q') ADVANCE(325); + if (lookahead == 'l') ADVANCE(325); END_STATE(); case 261: - if (lookahead == 't') ADVANCE(326); + if (lookahead == 'p') ADVANCE(326); END_STATE(); case 262: - if (lookahead == 't') ADVANCE(327); + if (lookahead == 'e') ADVANCE(327); END_STATE(); case 263: - ACCEPT_TOKEN(anon_sym_or_eq); + if (lookahead == 'q') ADVANCE(328); END_STATE(); case 264: - if (lookahead == 'i') ADVANCE(328); - END_STATE(); - case 265: if (lookahead == 't') ADVANCE(329); END_STATE(); + case 265: + if (lookahead == 't') ADVANCE(330); + END_STATE(); case 266: - if (lookahead == 'c') ADVANCE(330); + ACCEPT_TOKEN(anon_sym_or_eq); END_STATE(); case 267: - if (lookahead == 'c') ADVANCE(331); + if (lookahead == 'i') ADVANCE(331); END_STATE(); case 268: if (lookahead == 't') ADVANCE(332); END_STATE(); case 269: - if (lookahead == 'r') ADVANCE(333); + if (lookahead == 'c') ADVANCE(333); END_STATE(); case 270: - if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'c') ADVANCE(334); END_STATE(); case 271: - if (lookahead == 'n') ADVANCE(335); + if (lookahead == 't') ADVANCE(335); END_STATE(); case 272: - ACCEPT_TOKEN(anon_sym_short); + if (lookahead == 'r') ADVANCE(336); END_STATE(); case 273: - if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'i') ADVANCE(337); END_STATE(); case 274: - if (lookahead == 'f') ADVANCE(337); + if (lookahead == 'n') ADVANCE(338); END_STATE(); case 275: - if (lookahead == 'c') ADVANCE(338); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 276: - if (lookahead == 't') ADVANCE(339); + if (lookahead == 'd') ADVANCE(339); END_STATE(); case 277: - if (lookahead == 'h') ADVANCE(340); + if (lookahead == 'f') ADVANCE(340); END_STATE(); case 278: - if (lookahead == 'a') ADVANCE(341); + if (lookahead == 'c') ADVANCE(341); END_STATE(); case 279: - if (lookahead == 'd') ADVANCE(342); + if (lookahead == 't') ADVANCE(342); END_STATE(); case 280: - ACCEPT_TOKEN(anon_sym_throw); + if (lookahead == 'h') ADVANCE(343); END_STATE(); case 281: - if (lookahead == 'e') ADVANCE(343); - END_STATE(); - case 282: if (lookahead == 'a') ADVANCE(344); END_STATE(); + case 282: + if (lookahead == 'd') ADVANCE(345); + END_STATE(); case 283: - ACCEPT_TOKEN(anon_sym_union); + ACCEPT_TOKEN(anon_sym_throw); END_STATE(); case 284: - if (lookahead == 'n') ADVANCE(345); + if (lookahead == 'e') ADVANCE(346); END_STATE(); case 285: - ACCEPT_TOKEN(anon_sym_using); + if (lookahead == 'a') ADVANCE(347); END_STATE(); case 286: - if (lookahead == 'a') ADVANCE(346); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 287: - if (lookahead == 'i') ADVANCE(347); + if (lookahead == 'n') ADVANCE(348); END_STATE(); case 288: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_using); END_STATE(); case 289: - if (lookahead == 'q') ADVANCE(348); + if (lookahead == 'a') ADVANCE(349); END_STATE(); case 290: - if (lookahead == 'c') ADVANCE(349); - END_STATE(); - case 291: if (lookahead == 'i') ADVANCE(350); END_STATE(); + case 291: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); case 292: - if (lookahead == 'd') ADVANCE(351); + if (lookahead == 'q') ADVANCE(351); END_STATE(); case 293: - if (lookahead == 'l') ADVANCE(352); + if (lookahead == 'c') ADVANCE(352); END_STATE(); case 294: - if (lookahead == 'a') ADVANCE(353); + if (lookahead == 'i') ADVANCE(353); END_STATE(); case 295: - if (lookahead == 's') ADVANCE(354); + if (lookahead == 'd') ADVANCE(354); END_STATE(); case 296: - if (lookahead == 'c') ADVANCE(355); + if (lookahead == 'l') ADVANCE(355); END_STATE(); case 297: - if (lookahead == 'r') ADVANCE(356); + if (lookahead == 'a') ADVANCE(356); END_STATE(); case 298: - ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + if (lookahead == 's') ADVANCE(357); END_STATE(); case 299: - if (lookahead == 'a') ADVANCE(357); - END_STATE(); - case 300: if (lookahead == 'c') ADVANCE(358); END_STATE(); + case 300: + if (lookahead == 'r') ADVANCE(359); + END_STATE(); case 301: - if (lookahead == 'i') ADVANCE(359); + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); END_STATE(); case 302: - ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + if (lookahead == 'a') ADVANCE(360); END_STATE(); case 303: - if (lookahead == 'o') ADVANCE(360); + if (lookahead == 'c') ADVANCE(361); END_STATE(); case 304: - if (lookahead == 'g') ADVANCE(361); - END_STATE(); - case 305: - ACCEPT_TOKEN(anon_sym_and_eq); - END_STATE(); - case 306: - ACCEPT_TOKEN(anon_sym_bitand); - END_STATE(); - case 307: if (lookahead == 'i') ADVANCE(362); END_STATE(); + case 305: + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + END_STATE(); + case 306: + if (lookahead == 'o') ADVANCE(363); + END_STATE(); + case 307: + if (lookahead == 'g') ADVANCE(364); + END_STATE(); case 308: - if (lookahead == 'u') ADVANCE(363); + ACCEPT_TOKEN(anon_sym_and_eq); END_STATE(); case 309: - if (lookahead == 'l') ADVANCE(364); + ACCEPT_TOKEN(anon_sym_bitand); END_STATE(); case 310: - if (lookahead == 't') ADVANCE(365); + if (lookahead == 'i') ADVANCE(365); END_STATE(); case 311: - if (lookahead == 'v') ADVANCE(366); - if (lookahead == 'x') ADVANCE(367); + if (lookahead == 'u') ADVANCE(366); END_STATE(); case 312: - if (lookahead == 'n') ADVANCE(368); + if (lookahead == 'l') ADVANCE(367); END_STATE(); case 313: - if (lookahead == 'u') ADVANCE(369); + if (lookahead == 't') ADVANCE(368); END_STATE(); case 314: - if (lookahead == 'p') ADVANCE(370); + if (lookahead == 'v') ADVANCE(369); + if (lookahead == 'x') ADVANCE(370); END_STATE(); case 315: - if (lookahead == 't') ADVANCE(371); + if (lookahead == 'n') ADVANCE(371); END_STATE(); case 316: - if (lookahead == 'd') ADVANCE(372); + if (lookahead == 'u') ADVANCE(372); END_STATE(); case 317: - ACCEPT_TOKEN(anon_sym_delete); + if (lookahead == 'p') ADVANCE(373); END_STATE(); case 318: - if (lookahead == 'i') ADVANCE(373); + if (lookahead == 't') ADVANCE(374); END_STATE(); case 319: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 'd') ADVANCE(375); END_STATE(); case 320: - ACCEPT_TOKEN(anon_sym_friend); + ACCEPT_TOKEN(anon_sym_delete); END_STATE(); case 321: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == 'i') ADVANCE(376); END_STATE(); case 322: - if (lookahead == 'e') ADVANCE(374); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 323: - if (lookahead == 'a') ADVANCE(375); + ACCEPT_TOKEN(anon_sym_friend); END_STATE(); case 324: - if (lookahead == 'p') ADVANCE(376); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 325: - ACCEPT_TOKEN(anon_sym_not_eq); + if (lookahead == 'e') ADVANCE(377); END_STATE(); case 326: - if (lookahead == 'r') ADVANCE(377); + if (lookahead == 'a') ADVANCE(378); END_STATE(); case 327: - if (lookahead == 'o') ADVANCE(378); + if (lookahead == 'p') ADVANCE(379); END_STATE(); case 328: - if (lookahead == 'd') ADVANCE(379); + ACCEPT_TOKEN(anon_sym_not_eq); END_STATE(); case 329: - if (lookahead == 'e') ADVANCE(380); + if (lookahead == 'r') ADVANCE(380); END_STATE(); case 330: - if (lookahead == 't') ADVANCE(381); + if (lookahead == 'o') ADVANCE(381); END_STATE(); case 331: - ACCEPT_TOKEN(anon_sym_public); + if (lookahead == 'd') ADVANCE(382); END_STATE(); case 332: - if (lookahead == 'e') ADVANCE(382); - END_STATE(); - case 333: if (lookahead == 'e') ADVANCE(383); END_STATE(); + case 333: + if (lookahead == 't') ADVANCE(384); + END_STATE(); case 334: - if (lookahead == 'c') ADVANCE(384); + ACCEPT_TOKEN(anon_sym_public); END_STATE(); case 335: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'e') ADVANCE(385); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_signed); + if (lookahead == 'e') ADVANCE(386); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_sizeof); + if (lookahead == 'c') ADVANCE(387); END_STATE(); case 338: - ACCEPT_TOKEN(anon_sym_static); - if (lookahead == '_') ADVANCE(385); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 339: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 340: - ACCEPT_TOKEN(anon_sym_switch); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 341: - if (lookahead == 't') ADVANCE(386); + ACCEPT_TOKEN(anon_sym_static); + if (lookahead == '_') ADVANCE(388); END_STATE(); case 342: - if (lookahead == '_') ADVANCE(387); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 343: - if (lookahead == 'f') ADVANCE(388); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 344: - if (lookahead == 'm') ADVANCE(389); + if (lookahead == 't') ADVANCE(389); END_STATE(); case 345: - if (lookahead == 'e') ADVANCE(390); + if (lookahead == '_') ADVANCE(390); END_STATE(); case 346: - if (lookahead == 'l') ADVANCE(391); + if (lookahead == 'f') ADVANCE(391); END_STATE(); case 347: - if (lookahead == 'l') ADVANCE(392); + if (lookahead == 'm') ADVANCE(392); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_xor_eq); + if (lookahead == 'e') ADVANCE(393); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym__Atomic); - END_STATE(); - case 350: - if (lookahead == 'b') ADVANCE(393); - END_STATE(); - case 351: - ACCEPT_TOKEN(anon_sym___based); - END_STATE(); - case 352: - ACCEPT_TOKEN(anon_sym___cdecl); - END_STATE(); - case 353: if (lookahead == 'l') ADVANCE(394); END_STATE(); + case 350: + if (lookahead == 'l') ADVANCE(395); + END_STATE(); + case 351: + ACCEPT_TOKEN(anon_sym_xor_eq); + END_STATE(); + case 352: + ACCEPT_TOKEN(anon_sym__Atomic); + END_STATE(); + case 353: + if (lookahead == 'b') ADVANCE(396); + END_STATE(); case 354: - if (lookahead == 'p') ADVANCE(395); + ACCEPT_TOKEN(anon_sym___based); END_STATE(); case 355: - if (lookahead == 'a') ADVANCE(396); + ACCEPT_TOKEN(anon_sym___cdecl); END_STATE(); case 356: - if (lookahead == 'i') ADVANCE(397); + if (lookahead == 'l') ADVANCE(397); END_STATE(); case 357: - if (lookahead == 'l') ADVANCE(398); + if (lookahead == 'p') ADVANCE(398); END_STATE(); case 358: if (lookahead == 'a') ADVANCE(399); END_STATE(); case 359: - if (lookahead == 'g') ADVANCE(400); + if (lookahead == 'i') ADVANCE(400); END_STATE(); case 360: - if (lookahead == 'r') ADVANCE(401); + if (lookahead == 'l') ADVANCE(401); END_STATE(); case 361: - if (lookahead == 'n') ADVANCE(402); + if (lookahead == 'a') ADVANCE(402); END_STATE(); case 362: - if (lookahead == 't') ADVANCE(403); + if (lookahead == 'g') ADVANCE(403); END_STATE(); case 363: if (lookahead == 'r') ADVANCE(404); END_STATE(); case 364: - if (lookahead == 'd') ADVANCE(405); + if (lookahead == 'n') ADVANCE(405); END_STATE(); case 365: - ACCEPT_TOKEN(anon_sym_concept); + if (lookahead == 't') ADVANCE(406); END_STATE(); case 366: - if (lookahead == 'a') ADVANCE(406); + if (lookahead == 'r') ADVANCE(407); END_STATE(); case 367: - if (lookahead == 'p') ADVANCE(407); + if (lookahead == 'd') ADVANCE(408); END_STATE(); case 368: - if (lookahead == 'i') ADVANCE(408); + ACCEPT_TOKEN(anon_sym_concept); END_STATE(); case 369: - if (lookahead == 'e') ADVANCE(409); + if (lookahead == 'a') ADVANCE(409); END_STATE(); case 370: - if (lookahead == 'e') ADVANCE(410); + if (lookahead == 'p') ADVANCE(410); END_STATE(); case 371: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'i') ADVANCE(411); END_STATE(); case 372: - ACCEPT_TOKEN(anon_sym_defined); + if (lookahead == 'e') ADVANCE(412); END_STATE(); case 373: - if (lookahead == 't') ADVANCE(411); + if (lookahead == 'e') ADVANCE(413); END_STATE(); case 374: - ACCEPT_TOKEN(anon_sym_mutable); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 375: - if (lookahead == 'c') ADVANCE(412); + ACCEPT_TOKEN(anon_sym_defined); END_STATE(); case 376: - if (lookahead == 't') ADVANCE(413); + if (lookahead == 't') ADVANCE(414); END_STATE(); case 377: - ACCEPT_TOKEN(sym_nullptr); + ACCEPT_TOKEN(anon_sym_mutable); END_STATE(); case 378: - if (lookahead == 'r') ADVANCE(414); + if (lookahead == 'c') ADVANCE(415); END_STATE(); case 379: - if (lookahead == 'e') ADVANCE(415); + if (lookahead == 't') ADVANCE(416); END_STATE(); case 380: - ACCEPT_TOKEN(anon_sym_private); + ACCEPT_TOKEN(sym_nullptr); END_STATE(); case 381: - if (lookahead == 'e') ADVANCE(416); - END_STATE(); - case 382: if (lookahead == 'r') ADVANCE(417); END_STATE(); + case 382: + if (lookahead == 'e') ADVANCE(418); + END_STATE(); case 383: - if (lookahead == 's') ADVANCE(418); + ACCEPT_TOKEN(anon_sym_private); END_STATE(); case 384: - if (lookahead == 't') ADVANCE(419); + if (lookahead == 'e') ADVANCE(419); END_STATE(); case 385: - if (lookahead == 'a') ADVANCE(420); + if (lookahead == 'r') ADVANCE(420); END_STATE(); case 386: - if (lookahead == 'e') ADVANCE(421); + if (lookahead == 's') ADVANCE(421); END_STATE(); case 387: - if (lookahead == 'l') ADVANCE(422); + if (lookahead == 't') ADVANCE(422); END_STATE(); case 388: - ACCEPT_TOKEN(anon_sym_typedef); + if (lookahead == 'a') ADVANCE(423); END_STATE(); case 389: - if (lookahead == 'e') ADVANCE(423); + if (lookahead == 'e') ADVANCE(424); END_STATE(); case 390: - if (lookahead == 'd') ADVANCE(424); + if (lookahead == 'l') ADVANCE(425); END_STATE(); case 391: - ACCEPT_TOKEN(anon_sym_virtual); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 392: - if (lookahead == 'e') ADVANCE(425); + if (lookahead == 'e') ADVANCE(426); END_STATE(); case 393: - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'd') ADVANCE(427); END_STATE(); case 394: - if (lookahead == 'l') ADVANCE(427); + ACCEPT_TOKEN(anon_sym_virtual); END_STATE(); case 395: if (lookahead == 'e') ADVANCE(428); END_STATE(); case 396: - if (lookahead == 'l') ADVANCE(429); + if (lookahead == 'u') ADVANCE(429); END_STATE(); case 397: - if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'l') ADVANCE(430); END_STATE(); case 398: - if (lookahead == 'l') ADVANCE(431); + if (lookahead == 'e') ADVANCE(431); END_STATE(); case 399: if (lookahead == 'l') ADVANCE(432); END_STATE(); case 400: - if (lookahead == 'n') ADVANCE(433); + if (lookahead == 'c') ADVANCE(433); END_STATE(); case 401: - if (lookahead == 'c') ADVANCE(434); + if (lookahead == 'l') ADVANCE(434); END_STATE(); case 402: - if (lookahead == 'e') ADVANCE(435); + if (lookahead == 'l') ADVANCE(435); END_STATE(); case 403: - ACCEPT_TOKEN(anon_sym_co_await); - END_STATE(); - case 404: if (lookahead == 'n') ADVANCE(436); END_STATE(); + case 404: + if (lookahead == 'c') ADVANCE(437); + END_STATE(); case 405: - ACCEPT_TOKEN(anon_sym_co_yield); + if (lookahead == 'e') ADVANCE(438); END_STATE(); case 406: - if (lookahead == 'l') ADVANCE(437); + ACCEPT_TOKEN(anon_sym_co_await); END_STATE(); case 407: - if (lookahead == 'r') ADVANCE(438); + if (lookahead == 'n') ADVANCE(439); END_STATE(); case 408: - if (lookahead == 't') ADVANCE(439); + ACCEPT_TOKEN(anon_sym_co_yield); END_STATE(); case 409: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'l') ADVANCE(440); END_STATE(); case 410: - ACCEPT_TOKEN(anon_sym_decltype); + if (lookahead == 'r') ADVANCE(441); END_STATE(); case 411: - ACCEPT_TOKEN(anon_sym_explicit); + if (lookahead == 't') ADVANCE(442); END_STATE(); case 412: - if (lookahead == 'e') ADVANCE(440); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 413: - ACCEPT_TOKEN(anon_sym_noexcept); + ACCEPT_TOKEN(anon_sym_decltype); END_STATE(); case 414: - ACCEPT_TOKEN(anon_sym_operator); + ACCEPT_TOKEN(anon_sym_explicit); END_STATE(); case 415: - ACCEPT_TOKEN(anon_sym_override); + if (lookahead == 'e') ADVANCE(443); END_STATE(); case 416: - if (lookahead == 'd') ADVANCE(441); + ACCEPT_TOKEN(anon_sym_noexcept); END_STATE(); case 417: - ACCEPT_TOKEN(anon_sym_register); + ACCEPT_TOKEN(anon_sym_operator); END_STATE(); case 418: - ACCEPT_TOKEN(anon_sym_requires); + ACCEPT_TOKEN(anon_sym_override); END_STATE(); case 419: - ACCEPT_TOKEN(anon_sym_restrict); + if (lookahead == 'd') ADVANCE(444); END_STATE(); case 420: - if (lookahead == 's') ADVANCE(442); + ACCEPT_TOKEN(anon_sym_register); END_STATE(); case 421: - ACCEPT_TOKEN(anon_sym_template); + ACCEPT_TOKEN(anon_sym_requires); END_STATE(); case 422: - if (lookahead == 'o') ADVANCE(443); + ACCEPT_TOKEN(anon_sym_restrict); END_STATE(); case 423: - ACCEPT_TOKEN(anon_sym_typename); + if (lookahead == 's') ADVANCE(445); END_STATE(); case 424: - ACCEPT_TOKEN(anon_sym_unsigned); + ACCEPT_TOKEN(anon_sym_template); END_STATE(); case 425: - ACCEPT_TOKEN(anon_sym_volatile); + if (lookahead == 'o') ADVANCE(446); END_STATE(); case 426: - if (lookahead == 't') ADVANCE(444); + ACCEPT_TOKEN(anon_sym_typename); END_STATE(); case 427: - ACCEPT_TOKEN(anon_sym___clrcall); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 428: - if (lookahead == 'c') ADVANCE(445); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 429: - if (lookahead == 'l') ADVANCE(446); - END_STATE(); - case 430: if (lookahead == 't') ADVANCE(447); END_STATE(); + case 430: + ACCEPT_TOKEN(anon_sym___clrcall); + END_STATE(); case 431: - ACCEPT_TOKEN(anon_sym___stdcall); + if (lookahead == 'c') ADVANCE(448); END_STATE(); case 432: - if (lookahead == 'l') ADVANCE(448); + if (lookahead == 'l') ADVANCE(449); END_STATE(); case 433: - if (lookahead == 'e') ADVANCE(449); + if (lookahead == 't') ADVANCE(450); END_STATE(); case 434: - if (lookahead == 'a') ADVANCE(450); + ACCEPT_TOKEN(anon_sym___stdcall); END_STATE(); case 435: - if (lookahead == 'd') ADVANCE(451); + if (lookahead == 'l') ADVANCE(451); END_STATE(); case 436: - ACCEPT_TOKEN(anon_sym_co_return); + if (lookahead == 'e') ADVANCE(452); END_STATE(); case 437: - ACCEPT_TOKEN(anon_sym_consteval); + if (lookahead == 'a') ADVANCE(453); END_STATE(); case 438: - ACCEPT_TOKEN(anon_sym_constexpr); + if (lookahead == 'd') ADVANCE(454); END_STATE(); case 439: - ACCEPT_TOKEN(anon_sym_constinit); + ACCEPT_TOKEN(anon_sym_co_return); END_STATE(); case 440: - ACCEPT_TOKEN(anon_sym_namespace); + ACCEPT_TOKEN(anon_sym_consteval); END_STATE(); case 441: - ACCEPT_TOKEN(anon_sym_protected); + ACCEPT_TOKEN(anon_sym_constexpr); END_STATE(); case 442: - if (lookahead == 's') ADVANCE(452); + ACCEPT_TOKEN(anon_sym_constinit); END_STATE(); case 443: - if (lookahead == 'c') ADVANCE(453); + ACCEPT_TOKEN(anon_sym_namespace); END_STATE(); case 444: - if (lookahead == 'e') ADVANCE(454); + ACCEPT_TOKEN(anon_sym_protected); END_STATE(); case 445: - ACCEPT_TOKEN(anon_sym___declspec); + if (lookahead == 's') ADVANCE(455); END_STATE(); case 446: - ACCEPT_TOKEN(anon_sym___fastcall); + if (lookahead == 'c') ADVANCE(456); END_STATE(); case 447: - ACCEPT_TOKEN(sym_ms_restrict_modifier); - END_STATE(); - case 448: - ACCEPT_TOKEN(anon_sym___thiscall); - END_STATE(); - case 449: - if (lookahead == 'd') ADVANCE(455); - END_STATE(); - case 450: - if (lookahead == 'l') ADVANCE(456); - END_STATE(); - case 451: - ACCEPT_TOKEN(anon_sym__unaligned); - END_STATE(); - case 452: if (lookahead == 'e') ADVANCE(457); END_STATE(); + case 448: + ACCEPT_TOKEN(anon_sym___declspec); + END_STATE(); + case 449: + ACCEPT_TOKEN(anon_sym___fastcall); + END_STATE(); + case 450: + ACCEPT_TOKEN(sym_ms_restrict_modifier); + END_STATE(); + case 451: + ACCEPT_TOKEN(anon_sym___thiscall); + END_STATE(); + case 452: + if (lookahead == 'd') ADVANCE(458); + END_STATE(); case 453: - if (lookahead == 'a') ADVANCE(458); + if (lookahead == 'l') ADVANCE(459); END_STATE(); case 454: - if (lookahead == '_') ADVANCE(459); + ACCEPT_TOKEN(anon_sym__unaligned); END_STATE(); case 455: - ACCEPT_TOKEN(anon_sym___unaligned); + if (lookahead == 'e') ADVANCE(460); END_STATE(); case 456: - if (lookahead == 'l') ADVANCE(460); + if (lookahead == 'a') ADVANCE(461); END_STATE(); case 457: - if (lookahead == 'r') ADVANCE(461); + if (lookahead == '_') ADVANCE(462); END_STATE(); case 458: - if (lookahead == 'l') ADVANCE(462); + ACCEPT_TOKEN(anon_sym___unaligned); END_STATE(); case 459: - if (lookahead == '_') ADVANCE(463); + if (lookahead == 'l') ADVANCE(463); END_STATE(); case 460: - ACCEPT_TOKEN(anon_sym___vectorcall); + if (lookahead == 'r') ADVANCE(464); END_STATE(); case 461: - if (lookahead == 't') ADVANCE(464); + if (lookahead == 'l') ADVANCE(465); END_STATE(); case 462: - ACCEPT_TOKEN(anon_sym_thread_local); + if (lookahead == '_') ADVANCE(466); END_STATE(); case 463: - ACCEPT_TOKEN(anon_sym___attribute__); + ACCEPT_TOKEN(anon_sym___vectorcall); END_STATE(); case 464: + if (lookahead == 't') ADVANCE(467); + END_STATE(); + case 465: + ACCEPT_TOKEN(anon_sym_thread_local); + END_STATE(); + case 466: + ACCEPT_TOKEN(anon_sym___attribute__); + END_STATE(); + case 467: ACCEPT_TOKEN(anon_sym_static_assert); END_STATE(); default: @@ -17917,7 +17935,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [35] = {.lex_state = 261}, [36] = {.lex_state = 261}, [37] = {.lex_state = 261}, - [38] = {.lex_state = 140}, + [38] = {.lex_state = 261}, [39] = {.lex_state = 261}, [40] = {.lex_state = 261}, [41] = {.lex_state = 261}, @@ -17928,20 +17946,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [46] = {.lex_state = 261}, [47] = {.lex_state = 261}, [48] = {.lex_state = 261}, - [49] = {.lex_state = 140}, + [49] = {.lex_state = 261}, [50] = {.lex_state = 261}, - [51] = {.lex_state = 261}, + [51] = {.lex_state = 140}, [52] = {.lex_state = 261}, [53] = {.lex_state = 261}, [54] = {.lex_state = 261}, - [55] = {.lex_state = 140}, + [55] = {.lex_state = 261}, [56] = {.lex_state = 261}, [57] = {.lex_state = 261}, - [58] = {.lex_state = 261}, + [58] = {.lex_state = 140}, [59] = {.lex_state = 261}, [60] = {.lex_state = 261}, [61] = {.lex_state = 261}, - [62] = {.lex_state = 261}, + [62] = {.lex_state = 140}, [63] = {.lex_state = 261}, [64] = {.lex_state = 261}, [65] = {.lex_state = 261}, @@ -17962,20 +17980,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [80] = {.lex_state = 138}, [81] = {.lex_state = 138}, [82] = {.lex_state = 140}, - [83] = {.lex_state = 140}, - [84] = {.lex_state = 261}, - [85] = {.lex_state = 261}, + [83] = {.lex_state = 261}, + [84] = {.lex_state = 140}, + [85] = {.lex_state = 140}, [86] = {.lex_state = 261}, - [87] = {.lex_state = 261}, + [87] = {.lex_state = 140}, [88] = {.lex_state = 261}, [89] = {.lex_state = 261}, - [90] = {.lex_state = 140}, - [91] = {.lex_state = 140}, + [90] = {.lex_state = 261}, + [91] = {.lex_state = 261}, [92] = {.lex_state = 261}, [93] = {.lex_state = 261}, - [94] = {.lex_state = 140}, + [94] = {.lex_state = 261}, [95] = {.lex_state = 261}, - [96] = {.lex_state = 261}, + [96] = {.lex_state = 140}, [97] = {.lex_state = 139}, [98] = {.lex_state = 139}, [99] = {.lex_state = 139}, @@ -18011,42 +18029,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [129] = {.lex_state = 195}, [130] = {.lex_state = 195}, [131] = {.lex_state = 195}, - [132] = {.lex_state = 133}, + [132] = {.lex_state = 195}, [133] = {.lex_state = 195}, [134] = {.lex_state = 195}, [135] = {.lex_state = 195}, [136] = {.lex_state = 195}, - [137] = {.lex_state = 195}, + [137] = {.lex_state = 133}, [138] = {.lex_state = 132}, - [139] = {.lex_state = 131}, - [140] = {.lex_state = 195}, + [139] = {.lex_state = 195}, + [140] = {.lex_state = 131}, [141] = {.lex_state = 139}, [142] = {.lex_state = 139}, [143] = {.lex_state = 139}, - [144] = {.lex_state = 139}, - [145] = {.lex_state = 139}, + [144] = {.lex_state = 154}, + [145] = {.lex_state = 154}, [146] = {.lex_state = 139}, [147] = {.lex_state = 139}, [148] = {.lex_state = 139}, - [149] = {.lex_state = 139}, - [150] = {.lex_state = 139}, - [151] = {.lex_state = 139}, - [152] = {.lex_state = 139}, - [153] = {.lex_state = 139}, + [149] = {.lex_state = 154}, + [150] = {.lex_state = 154}, + [151] = {.lex_state = 154}, + [152] = {.lex_state = 154}, + [153] = {.lex_state = 154}, [154] = {.lex_state = 139}, [155] = {.lex_state = 139}, - [156] = {.lex_state = 139}, - [157] = {.lex_state = 139}, - [158] = {.lex_state = 139}, + [156] = {.lex_state = 154}, + [157] = {.lex_state = 261}, + [158] = {.lex_state = 154}, [159] = {.lex_state = 139}, [160] = {.lex_state = 139}, [161] = {.lex_state = 139}, - [162] = {.lex_state = 139}, + [162] = {.lex_state = 154}, [163] = {.lex_state = 139}, [164] = {.lex_state = 139}, [165] = {.lex_state = 139}, - [166] = {.lex_state = 139}, - [167] = {.lex_state = 139}, + [166] = {.lex_state = 261}, + [167] = {.lex_state = 154}, [168] = {.lex_state = 139}, [169] = {.lex_state = 139}, [170] = {.lex_state = 139}, @@ -18055,34 +18073,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [173] = {.lex_state = 139}, [174] = {.lex_state = 139}, [175] = {.lex_state = 139}, - [176] = {.lex_state = 139}, + [176] = {.lex_state = 154}, [177] = {.lex_state = 139}, [178] = {.lex_state = 139}, - [179] = {.lex_state = 139}, - [180] = {.lex_state = 139}, + [179] = {.lex_state = 154}, + [180] = {.lex_state = 154}, [181] = {.lex_state = 139}, [182] = {.lex_state = 139}, [183] = {.lex_state = 139}, - [184] = {.lex_state = 139}, + [184] = {.lex_state = 154}, [185] = {.lex_state = 139}, - [186] = {.lex_state = 139}, + [186] = {.lex_state = 154}, [187] = {.lex_state = 139}, [188] = {.lex_state = 139}, [189] = {.lex_state = 139}, [190] = {.lex_state = 139}, [191] = {.lex_state = 139}, - [192] = {.lex_state = 139}, + [192] = {.lex_state = 154}, [193] = {.lex_state = 139}, - [194] = {.lex_state = 139}, + [194] = {.lex_state = 154}, [195] = {.lex_state = 139}, [196] = {.lex_state = 139}, [197] = {.lex_state = 139}, - [198] = {.lex_state = 139}, + [198] = {.lex_state = 154}, [199] = {.lex_state = 139}, [200] = {.lex_state = 139}, [201] = {.lex_state = 139}, [202] = {.lex_state = 139}, - [203] = {.lex_state = 139}, + [203] = {.lex_state = 196}, [204] = {.lex_state = 139}, [205] = {.lex_state = 139}, [206] = {.lex_state = 139}, @@ -18091,7 +18109,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [209] = {.lex_state = 139}, [210] = {.lex_state = 139}, [211] = {.lex_state = 139}, - [212] = {.lex_state = 139}, + [212] = {.lex_state = 196}, [213] = {.lex_state = 139}, [214] = {.lex_state = 139}, [215] = {.lex_state = 139}, @@ -18156,7 +18174,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [274] = {.lex_state = 139}, [275] = {.lex_state = 139}, [276] = {.lex_state = 139}, - [277] = {.lex_state = 139}, + [277] = {.lex_state = 196}, [278] = {.lex_state = 139}, [279] = {.lex_state = 139}, [280] = {.lex_state = 139}, @@ -18169,32 +18187,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [287] = {.lex_state = 139}, [288] = {.lex_state = 139}, [289] = {.lex_state = 139}, - [290] = {.lex_state = 154}, - [291] = {.lex_state = 154}, - [292] = {.lex_state = 154}, - [293] = {.lex_state = 154}, - [294] = {.lex_state = 154}, - [295] = {.lex_state = 154}, - [296] = {.lex_state = 154}, - [297] = {.lex_state = 154}, - [298] = {.lex_state = 154}, - [299] = {.lex_state = 196}, - [300] = {.lex_state = 154}, - [301] = {.lex_state = 154}, - [302] = {.lex_state = 196}, - [303] = {.lex_state = 261}, - [304] = {.lex_state = 196}, - [305] = {.lex_state = 154}, - [306] = {.lex_state = 261}, - [307] = {.lex_state = 154}, - [308] = {.lex_state = 154}, - [309] = {.lex_state = 154}, - [310] = {.lex_state = 154}, - [311] = {.lex_state = 154}, - [312] = {.lex_state = 154}, - [313] = {.lex_state = 154}, - [314] = {.lex_state = 142}, - [315] = {.lex_state = 142}, + [290] = {.lex_state = 139}, + [291] = {.lex_state = 139}, + [292] = {.lex_state = 139}, + [293] = {.lex_state = 139}, + [294] = {.lex_state = 139}, + [295] = {.lex_state = 139}, + [296] = {.lex_state = 139}, + [297] = {.lex_state = 139}, + [298] = {.lex_state = 139}, + [299] = {.lex_state = 139}, + [300] = {.lex_state = 139}, + [301] = {.lex_state = 139}, + [302] = {.lex_state = 139}, + [303] = {.lex_state = 139}, + [304] = {.lex_state = 139}, + [305] = {.lex_state = 139}, + [306] = {.lex_state = 139}, + [307] = {.lex_state = 139}, + [308] = {.lex_state = 139}, + [309] = {.lex_state = 139}, + [310] = {.lex_state = 139}, + [311] = {.lex_state = 139}, + [312] = {.lex_state = 139}, + [313] = {.lex_state = 139}, + [314] = {.lex_state = 138}, + [315] = {.lex_state = 138}, [316] = {.lex_state = 142}, [317] = {.lex_state = 142}, [318] = {.lex_state = 138}, @@ -18207,21 +18225,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [325] = {.lex_state = 142}, [326] = {.lex_state = 142}, [327] = {.lex_state = 142}, - [328] = {.lex_state = 142}, + [328] = {.lex_state = 138}, [329] = {.lex_state = 142}, - [330] = {.lex_state = 138}, + [330] = {.lex_state = 142}, [331] = {.lex_state = 142}, [332] = {.lex_state = 142}, [333] = {.lex_state = 142}, - [334] = {.lex_state = 138}, - [335] = {.lex_state = 138}, + [334] = {.lex_state = 142}, + [335] = {.lex_state = 142}, [336] = {.lex_state = 140}, - [337] = {.lex_state = 261}, + [337] = {.lex_state = 138}, [338] = {.lex_state = 261}, [339] = {.lex_state = 138}, - [340] = {.lex_state = 138}, - [341] = {.lex_state = 261}, - [342] = {.lex_state = 140}, + [340] = {.lex_state = 261}, + [341] = {.lex_state = 140}, + [342] = {.lex_state = 261}, [343] = {.lex_state = 138}, [344] = {.lex_state = 261}, [345] = {.lex_state = 138}, @@ -18231,16 +18249,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [349] = {.lex_state = 138}, [350] = {.lex_state = 138}, [351] = {.lex_state = 138}, - [352] = {.lex_state = 138}, + [352] = {.lex_state = 140}, [353] = {.lex_state = 138}, [354] = {.lex_state = 138}, - [355] = {.lex_state = 138}, + [355] = {.lex_state = 261}, [356] = {.lex_state = 138}, [357] = {.lex_state = 138}, [358] = {.lex_state = 138}, [359] = {.lex_state = 138}, [360] = {.lex_state = 138}, - [361] = {.lex_state = 138}, + [361] = {.lex_state = 261}, [362] = {.lex_state = 138}, [363] = {.lex_state = 138}, [364] = {.lex_state = 138}, @@ -18257,58 +18275,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [375] = {.lex_state = 138}, [376] = {.lex_state = 138}, [377] = {.lex_state = 138}, - [378] = {.lex_state = 142}, + [378] = {.lex_state = 138}, [379] = {.lex_state = 138}, [380] = {.lex_state = 138}, [381] = {.lex_state = 138}, [382] = {.lex_state = 138}, - [383] = {.lex_state = 142}, + [383] = {.lex_state = 138}, [384] = {.lex_state = 138}, [385] = {.lex_state = 138}, - [386] = {.lex_state = 142}, + [386] = {.lex_state = 138}, [387] = {.lex_state = 138}, [388] = {.lex_state = 138}, [389] = {.lex_state = 138}, - [390] = {.lex_state = 261}, + [390] = {.lex_state = 138}, [391] = {.lex_state = 138}, [392] = {.lex_state = 138}, [393] = {.lex_state = 138}, [394] = {.lex_state = 138}, [395] = {.lex_state = 138}, - [396] = {.lex_state = 138}, + [396] = {.lex_state = 261}, [397] = {.lex_state = 138}, [398] = {.lex_state = 138}, [399] = {.lex_state = 138}, [400] = {.lex_state = 138}, - [401] = {.lex_state = 142}, - [402] = {.lex_state = 261}, + [401] = {.lex_state = 138}, + [402] = {.lex_state = 138}, [403] = {.lex_state = 138}, - [404] = {.lex_state = 142}, - [405] = {.lex_state = 138}, - [406] = {.lex_state = 142}, + [404] = {.lex_state = 138}, + [405] = {.lex_state = 261}, + [406] = {.lex_state = 138}, [407] = {.lex_state = 138}, - [408] = {.lex_state = 142}, - [409] = {.lex_state = 142}, + [408] = {.lex_state = 138}, + [409] = {.lex_state = 138}, [410] = {.lex_state = 138}, - [411] = {.lex_state = 142}, + [411] = {.lex_state = 138}, [412] = {.lex_state = 138}, [413] = {.lex_state = 138}, - [414] = {.lex_state = 142}, + [414] = {.lex_state = 138}, [415] = {.lex_state = 138}, - [416] = {.lex_state = 261}, + [416] = {.lex_state = 138}, [417] = {.lex_state = 138}, [418] = {.lex_state = 138}, [419] = {.lex_state = 138}, - [420] = {.lex_state = 142}, + [420] = {.lex_state = 138}, [421] = {.lex_state = 138}, - [422] = {.lex_state = 261}, + [422] = {.lex_state = 138}, [423] = {.lex_state = 138}, [424] = {.lex_state = 138}, [425] = {.lex_state = 138}, [426] = {.lex_state = 138}, [427] = {.lex_state = 138}, [428] = {.lex_state = 138}, - [429] = {.lex_state = 142}, + [429] = {.lex_state = 138}, [430] = {.lex_state = 138}, [431] = {.lex_state = 138}, [432] = {.lex_state = 138}, @@ -18321,19 +18339,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [439] = {.lex_state = 138}, [440] = {.lex_state = 138}, [441] = {.lex_state = 138}, - [442] = {.lex_state = 142}, + [442] = {.lex_state = 138}, [443] = {.lex_state = 138}, [444] = {.lex_state = 138}, [445] = {.lex_state = 138}, - [446] = {.lex_state = 140}, + [446] = {.lex_state = 138}, [447] = {.lex_state = 138}, [448] = {.lex_state = 138}, - [449] = {.lex_state = 142}, + [449] = {.lex_state = 138}, [450] = {.lex_state = 138}, [451] = {.lex_state = 138}, [452] = {.lex_state = 138}, [453] = {.lex_state = 138}, - [454] = {.lex_state = 138}, + [454] = {.lex_state = 140}, [455] = {.lex_state = 138}, [456] = {.lex_state = 138}, [457] = {.lex_state = 138}, @@ -18341,22 +18359,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [459] = {.lex_state = 138}, [460] = {.lex_state = 138}, [461] = {.lex_state = 138}, - [462] = {.lex_state = 142}, + [462] = {.lex_state = 138}, [463] = {.lex_state = 138}, - [464] = {.lex_state = 142}, + [464] = {.lex_state = 138}, [465] = {.lex_state = 138}, [466] = {.lex_state = 138}, [467] = {.lex_state = 138}, [468] = {.lex_state = 138}, - [469] = {.lex_state = 138}, - [470] = {.lex_state = 138}, - [471] = {.lex_state = 138}, + [469] = {.lex_state = 142}, + [470] = {.lex_state = 142}, + [471] = {.lex_state = 142}, [472] = {.lex_state = 138}, - [473] = {.lex_state = 138}, + [473] = {.lex_state = 142}, [474] = {.lex_state = 138}, [475] = {.lex_state = 138}, [476] = {.lex_state = 138}, - [477] = {.lex_state = 140}, + [477] = {.lex_state = 138}, [478] = {.lex_state = 138}, [479] = {.lex_state = 138}, [480] = {.lex_state = 138}, @@ -18368,7 +18386,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [486] = {.lex_state = 138}, [487] = {.lex_state = 138}, [488] = {.lex_state = 138}, - [489] = {.lex_state = 142}, + [489] = {.lex_state = 138}, [490] = {.lex_state = 138}, [491] = {.lex_state = 138}, [492] = {.lex_state = 138}, @@ -18380,7 +18398,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [498] = {.lex_state = 138}, [499] = {.lex_state = 138}, [500] = {.lex_state = 138}, - [501] = {.lex_state = 138}, + [501] = {.lex_state = 142}, [502] = {.lex_state = 138}, [503] = {.lex_state = 138}, [504] = {.lex_state = 138}, @@ -18394,48 +18412,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [512] = {.lex_state = 138}, [513] = {.lex_state = 138}, [514] = {.lex_state = 138}, - [515] = {.lex_state = 140}, + [515] = {.lex_state = 138}, [516] = {.lex_state = 138}, [517] = {.lex_state = 138}, [518] = {.lex_state = 138}, [519] = {.lex_state = 138}, [520] = {.lex_state = 138}, - [521] = {.lex_state = 140}, - [522] = {.lex_state = 261}, + [521] = {.lex_state = 138}, + [522] = {.lex_state = 138}, [523] = {.lex_state = 138}, - [524] = {.lex_state = 138}, + [524] = {.lex_state = 261}, [525] = {.lex_state = 138}, [526] = {.lex_state = 261}, [527] = {.lex_state = 138}, - [528] = {.lex_state = 138}, - [529] = {.lex_state = 138}, - [530] = {.lex_state = 138}, - [531] = {.lex_state = 138}, - [532] = {.lex_state = 138}, - [533] = {.lex_state = 138}, - [534] = {.lex_state = 138}, - [535] = {.lex_state = 261}, - [536] = {.lex_state = 140}, - [537] = {.lex_state = 138}, - [538] = {.lex_state = 261}, - [539] = {.lex_state = 138}, - [540] = {.lex_state = 138}, - [541] = {.lex_state = 138}, - [542] = {.lex_state = 138}, - [543] = {.lex_state = 138}, - [544] = {.lex_state = 138}, + [528] = {.lex_state = 142}, + [529] = {.lex_state = 261}, + [530] = {.lex_state = 140}, + [531] = {.lex_state = 142}, + [532] = {.lex_state = 261}, + [533] = {.lex_state = 140}, + [534] = {.lex_state = 142}, + [535] = {.lex_state = 140}, + [536] = {.lex_state = 142}, + [537] = {.lex_state = 142}, + [538] = {.lex_state = 142}, + [539] = {.lex_state = 142}, + [540] = {.lex_state = 142}, + [541] = {.lex_state = 142}, + [542] = {.lex_state = 142}, + [543] = {.lex_state = 142}, + [544] = {.lex_state = 261}, [545] = {.lex_state = 261}, - [546] = {.lex_state = 261}, + [546] = {.lex_state = 140}, [547] = {.lex_state = 261}, [548] = {.lex_state = 261}, [549] = {.lex_state = 261}, [550] = {.lex_state = 261}, [551] = {.lex_state = 261}, - [552] = {.lex_state = 261}, - [553] = {.lex_state = 261}, + [552] = {.lex_state = 140}, + [553] = {.lex_state = 140}, [554] = {.lex_state = 261}, [555] = {.lex_state = 261}, - [556] = {.lex_state = 261}, + [556] = {.lex_state = 140}, [557] = {.lex_state = 261}, [558] = {.lex_state = 261}, [559] = {.lex_state = 261}, @@ -18474,7 +18492,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [592] = {.lex_state = 261}, [593] = {.lex_state = 261}, [594] = {.lex_state = 261}, - [595] = {.lex_state = 140}, + [595] = {.lex_state = 261}, [596] = {.lex_state = 261}, [597] = {.lex_state = 261}, [598] = {.lex_state = 261}, @@ -18502,27 +18520,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [620] = {.lex_state = 261}, [621] = {.lex_state = 261}, [622] = {.lex_state = 261}, - [623] = {.lex_state = 140}, - [624] = {.lex_state = 140}, + [623] = {.lex_state = 261}, + [624] = {.lex_state = 261}, [625] = {.lex_state = 261}, [626] = {.lex_state = 261}, [627] = {.lex_state = 261}, [628] = {.lex_state = 261}, [629] = {.lex_state = 261}, [630] = {.lex_state = 261}, - [631] = {.lex_state = 140}, - [632] = {.lex_state = 140}, - [633] = {.lex_state = 140}, + [631] = {.lex_state = 261}, + [632] = {.lex_state = 261}, + [633] = {.lex_state = 261}, [634] = {.lex_state = 261}, - [635] = {.lex_state = 140}, + [635] = {.lex_state = 261}, [636] = {.lex_state = 261}, - [637] = {.lex_state = 140}, + [637] = {.lex_state = 261}, [638] = {.lex_state = 261}, [639] = {.lex_state = 261}, [640] = {.lex_state = 261}, [641] = {.lex_state = 261}, - [642] = {.lex_state = 140}, - [643] = {.lex_state = 140}, + [642] = {.lex_state = 261}, + [643] = {.lex_state = 261}, [644] = {.lex_state = 261}, [645] = {.lex_state = 261}, [646] = {.lex_state = 261}, @@ -18531,7 +18549,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [649] = {.lex_state = 261}, [650] = {.lex_state = 261}, [651] = {.lex_state = 261}, - [652] = {.lex_state = 140}, + [652] = {.lex_state = 261}, [653] = {.lex_state = 261}, [654] = {.lex_state = 261}, [655] = {.lex_state = 261}, @@ -18541,86 +18559,86 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [659] = {.lex_state = 261}, [660] = {.lex_state = 261}, [661] = {.lex_state = 140}, - [662] = {.lex_state = 261}, - [663] = {.lex_state = 261}, + [662] = {.lex_state = 140}, + [663] = {.lex_state = 140}, [664] = {.lex_state = 261}, - [665] = {.lex_state = 261}, + [665] = {.lex_state = 140}, [666] = {.lex_state = 261}, - [667] = {.lex_state = 261}, - [668] = {.lex_state = 261}, - [669] = {.lex_state = 261}, + [667] = {.lex_state = 140}, + [668] = {.lex_state = 140}, + [669] = {.lex_state = 140}, [670] = {.lex_state = 261}, - [671] = {.lex_state = 140}, + [671] = {.lex_state = 261}, [672] = {.lex_state = 261}, - [673] = {.lex_state = 261}, + [673] = {.lex_state = 140}, [674] = {.lex_state = 261}, [675] = {.lex_state = 261}, [676] = {.lex_state = 261}, - [677] = {.lex_state = 261}, - [678] = {.lex_state = 261}, - [679] = {.lex_state = 261}, + [677] = {.lex_state = 140}, + [678] = {.lex_state = 140}, + [679] = {.lex_state = 140}, [680] = {.lex_state = 261}, - [681] = {.lex_state = 140}, - [682] = {.lex_state = 140}, - [683] = {.lex_state = 261}, - [684] = {.lex_state = 261}, - [685] = {.lex_state = 261}, + [681] = {.lex_state = 261}, + [682] = {.lex_state = 261}, + [683] = {.lex_state = 140}, + [684] = {.lex_state = 140}, + [685] = {.lex_state = 140}, [686] = {.lex_state = 261}, - [687] = {.lex_state = 261}, - [688] = {.lex_state = 261}, - [689] = {.lex_state = 261}, - [690] = {.lex_state = 261}, + [687] = {.lex_state = 140}, + [688] = {.lex_state = 140}, + [689] = {.lex_state = 140}, + [690] = {.lex_state = 140}, [691] = {.lex_state = 261}, - [692] = {.lex_state = 261}, - [693] = {.lex_state = 261}, + [692] = {.lex_state = 140}, + [693] = {.lex_state = 140}, [694] = {.lex_state = 261}, - [695] = {.lex_state = 261}, + [695] = {.lex_state = 140}, [696] = {.lex_state = 261}, - [697] = {.lex_state = 261}, - [698] = {.lex_state = 261}, - [699] = {.lex_state = 261}, - [700] = {.lex_state = 261}, - [701] = {.lex_state = 261}, - [702] = {.lex_state = 261}, - [703] = {.lex_state = 261}, - [704] = {.lex_state = 261}, - [705] = {.lex_state = 261}, - [706] = {.lex_state = 261}, - [707] = {.lex_state = 261}, + [697] = {.lex_state = 140}, + [698] = {.lex_state = 140}, + [699] = {.lex_state = 140}, + [700] = {.lex_state = 140}, + [701] = {.lex_state = 140}, + [702] = {.lex_state = 140}, + [703] = {.lex_state = 140}, + [704] = {.lex_state = 140}, + [705] = {.lex_state = 140}, + [706] = {.lex_state = 140}, + [707] = {.lex_state = 140}, [708] = {.lex_state = 261}, [709] = {.lex_state = 261}, - [710] = {.lex_state = 261}, - [711] = {.lex_state = 261}, + [710] = {.lex_state = 140}, + [711] = {.lex_state = 140}, [712] = {.lex_state = 261}, - [713] = {.lex_state = 261}, - [714] = {.lex_state = 261}, - [715] = {.lex_state = 261}, - [716] = {.lex_state = 261}, - [717] = {.lex_state = 261}, - [718] = {.lex_state = 261}, - [719] = {.lex_state = 261}, - [720] = {.lex_state = 261}, + [713] = {.lex_state = 140}, + [714] = {.lex_state = 140}, + [715] = {.lex_state = 140}, + [716] = {.lex_state = 140}, + [717] = {.lex_state = 140}, + [718] = {.lex_state = 140}, + [719] = {.lex_state = 140}, + [720] = {.lex_state = 140}, [721] = {.lex_state = 261}, [722] = {.lex_state = 261}, [723] = {.lex_state = 261}, - [724] = {.lex_state = 261}, + [724] = {.lex_state = 136}, [725] = {.lex_state = 261}, - [726] = {.lex_state = 261}, - [727] = {.lex_state = 261}, - [728] = {.lex_state = 261}, - [729] = {.lex_state = 261}, - [730] = {.lex_state = 261}, - [731] = {.lex_state = 261}, - [732] = {.lex_state = 261}, - [733] = {.lex_state = 261}, - [734] = {.lex_state = 261}, - [735] = {.lex_state = 261}, - [736] = {.lex_state = 261}, - [737] = {.lex_state = 261}, - [738] = {.lex_state = 261}, - [739] = {.lex_state = 261}, + [726] = {.lex_state = 140}, + [727] = {.lex_state = 140}, + [728] = {.lex_state = 140}, + [729] = {.lex_state = 140}, + [730] = {.lex_state = 140}, + [731] = {.lex_state = 140}, + [732] = {.lex_state = 140}, + [733] = {.lex_state = 140}, + [734] = {.lex_state = 140}, + [735] = {.lex_state = 140}, + [736] = {.lex_state = 140}, + [737] = {.lex_state = 140}, + [738] = {.lex_state = 140}, + [739] = {.lex_state = 140}, [740] = {.lex_state = 261}, - [741] = {.lex_state = 261}, + [741] = {.lex_state = 140}, [742] = {.lex_state = 261}, [743] = {.lex_state = 261}, [744] = {.lex_state = 261}, @@ -18628,99 +18646,99 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [746] = {.lex_state = 261}, [747] = {.lex_state = 261}, [748] = {.lex_state = 261}, - [749] = {.lex_state = 261}, - [750] = {.lex_state = 261}, + [749] = {.lex_state = 140}, + [750] = {.lex_state = 140}, [751] = {.lex_state = 261}, - [752] = {.lex_state = 261}, + [752] = {.lex_state = 140}, [753] = {.lex_state = 261}, [754] = {.lex_state = 261}, [755] = {.lex_state = 261}, [756] = {.lex_state = 261}, [757] = {.lex_state = 261}, - [758] = {.lex_state = 261}, - [759] = {.lex_state = 136}, + [758] = {.lex_state = 140}, + [759] = {.lex_state = 140}, [760] = {.lex_state = 261}, [761] = {.lex_state = 261}, - [762] = {.lex_state = 261}, + [762] = {.lex_state = 140}, [763] = {.lex_state = 261}, - [764] = {.lex_state = 261}, - [765] = {.lex_state = 261}, - [766] = {.lex_state = 140}, - [767] = {.lex_state = 261}, - [768] = {.lex_state = 261}, - [769] = {.lex_state = 261}, + [764] = {.lex_state = 140}, + [765] = {.lex_state = 140}, + [766] = {.lex_state = 261}, + [767] = {.lex_state = 140}, + [768] = {.lex_state = 140}, + [769] = {.lex_state = 140}, [770] = {.lex_state = 261}, [771] = {.lex_state = 261}, [772] = {.lex_state = 261}, [773] = {.lex_state = 261}, [774] = {.lex_state = 261}, [775] = {.lex_state = 261}, - [776] = {.lex_state = 261}, + [776] = {.lex_state = 140}, [777] = {.lex_state = 136}, - [778] = {.lex_state = 261}, + [778] = {.lex_state = 140}, [779] = {.lex_state = 261}, [780] = {.lex_state = 261}, [781] = {.lex_state = 261}, - [782] = {.lex_state = 261}, - [783] = {.lex_state = 261}, - [784] = {.lex_state = 140}, + [782] = {.lex_state = 140}, + [783] = {.lex_state = 140}, + [784] = {.lex_state = 261}, [785] = {.lex_state = 140}, - [786] = {.lex_state = 140}, + [786] = {.lex_state = 261}, [787] = {.lex_state = 140}, - [788] = {.lex_state = 261}, - [789] = {.lex_state = 140}, - [790] = {.lex_state = 140}, + [788] = {.lex_state = 140}, + [789] = {.lex_state = 261}, + [790] = {.lex_state = 261}, [791] = {.lex_state = 261}, [792] = {.lex_state = 261}, - [793] = {.lex_state = 140}, - [794] = {.lex_state = 140}, - [795] = {.lex_state = 140}, - [796] = {.lex_state = 140}, - [797] = {.lex_state = 140}, - [798] = {.lex_state = 140}, + [793] = {.lex_state = 261}, + [794] = {.lex_state = 261}, + [795] = {.lex_state = 261}, + [796] = {.lex_state = 261}, + [797] = {.lex_state = 261}, + [798] = {.lex_state = 261}, [799] = {.lex_state = 261}, - [800] = {.lex_state = 140}, - [801] = {.lex_state = 140}, - [802] = {.lex_state = 140}, + [800] = {.lex_state = 261}, + [801] = {.lex_state = 261}, + [802] = {.lex_state = 261}, [803] = {.lex_state = 261}, - [804] = {.lex_state = 140}, - [805] = {.lex_state = 140}, - [806] = {.lex_state = 140}, - [807] = {.lex_state = 140}, - [808] = {.lex_state = 140}, + [804] = {.lex_state = 261}, + [805] = {.lex_state = 261}, + [806] = {.lex_state = 261}, + [807] = {.lex_state = 261}, + [808] = {.lex_state = 261}, [809] = {.lex_state = 140}, [810] = {.lex_state = 140}, - [811] = {.lex_state = 140}, + [811] = {.lex_state = 261}, [812] = {.lex_state = 140}, [813] = {.lex_state = 140}, - [814] = {.lex_state = 140}, + [814] = {.lex_state = 261}, [815] = {.lex_state = 140}, [816] = {.lex_state = 140}, - [817] = {.lex_state = 261}, + [817] = {.lex_state = 140}, [818] = {.lex_state = 140}, [819] = {.lex_state = 140}, [820] = {.lex_state = 140}, [821] = {.lex_state = 140}, [822] = {.lex_state = 140}, [823] = {.lex_state = 140}, - [824] = {.lex_state = 140}, - [825] = {.lex_state = 140}, - [826] = {.lex_state = 261}, + [824] = {.lex_state = 261}, + [825] = {.lex_state = 261}, + [826] = {.lex_state = 140}, [827] = {.lex_state = 140}, - [828] = {.lex_state = 261}, - [829] = {.lex_state = 140}, - [830] = {.lex_state = 140}, - [831] = {.lex_state = 140}, - [832] = {.lex_state = 140}, - [833] = {.lex_state = 140}, - [834] = {.lex_state = 140}, - [835] = {.lex_state = 140}, + [828] = {.lex_state = 140}, + [829] = {.lex_state = 261}, + [830] = {.lex_state = 261}, + [831] = {.lex_state = 261}, + [832] = {.lex_state = 261}, + [833] = {.lex_state = 261}, + [834] = {.lex_state = 261}, + [835] = {.lex_state = 261}, [836] = {.lex_state = 140}, - [837] = {.lex_state = 140}, + [837] = {.lex_state = 261}, [838] = {.lex_state = 140}, - [839] = {.lex_state = 140}, - [840] = {.lex_state = 140}, - [841] = {.lex_state = 140}, + [839] = {.lex_state = 261}, + [840] = {.lex_state = 261}, + [841] = {.lex_state = 261}, [842] = {.lex_state = 140}, [843] = {.lex_state = 140}, [844] = {.lex_state = 140}, @@ -18732,110 +18750,110 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [850] = {.lex_state = 140}, [851] = {.lex_state = 140}, [852] = {.lex_state = 261}, - [853] = {.lex_state = 140}, + [853] = {.lex_state = 261}, [854] = {.lex_state = 140}, [855] = {.lex_state = 140}, - [856] = {.lex_state = 261}, + [856] = {.lex_state = 140}, [857] = {.lex_state = 261}, - [858] = {.lex_state = 140}, + [858] = {.lex_state = 261}, [859] = {.lex_state = 140}, - [860] = {.lex_state = 140}, - [861] = {.lex_state = 140}, - [862] = {.lex_state = 140}, - [863] = {.lex_state = 140}, - [864] = {.lex_state = 140}, + [860] = {.lex_state = 261}, + [861] = {.lex_state = 261}, + [862] = {.lex_state = 261}, + [863] = {.lex_state = 261}, + [864] = {.lex_state = 261}, [865] = {.lex_state = 140}, [866] = {.lex_state = 140}, - [867] = {.lex_state = 140}, - [868] = {.lex_state = 140}, - [869] = {.lex_state = 140}, - [870] = {.lex_state = 140}, - [871] = {.lex_state = 140}, - [872] = {.lex_state = 140}, - [873] = {.lex_state = 140}, - [874] = {.lex_state = 140}, - [875] = {.lex_state = 140}, - [876] = {.lex_state = 140}, + [867] = {.lex_state = 261}, + [868] = {.lex_state = 261}, + [869] = {.lex_state = 261}, + [870] = {.lex_state = 261}, + [871] = {.lex_state = 261}, + [872] = {.lex_state = 261}, + [873] = {.lex_state = 261}, + [874] = {.lex_state = 261}, + [875] = {.lex_state = 261}, + [876] = {.lex_state = 261}, [877] = {.lex_state = 140}, - [878] = {.lex_state = 261}, - [879] = {.lex_state = 140}, - [880] = {.lex_state = 140}, - [881] = {.lex_state = 140}, + [878] = {.lex_state = 142}, + [879] = {.lex_state = 261}, + [880] = {.lex_state = 261}, + [881] = {.lex_state = 261}, [882] = {.lex_state = 140}, - [883] = {.lex_state = 140}, - [884] = {.lex_state = 140}, - [885] = {.lex_state = 140}, - [886] = {.lex_state = 140}, - [887] = {.lex_state = 140}, + [883] = {.lex_state = 261}, + [884] = {.lex_state = 261}, + [885] = {.lex_state = 261}, + [886] = {.lex_state = 261}, + [887] = {.lex_state = 261}, [888] = {.lex_state = 140}, - [889] = {.lex_state = 140}, - [890] = {.lex_state = 140}, - [891] = {.lex_state = 140}, - [892] = {.lex_state = 140}, + [889] = {.lex_state = 261}, + [890] = {.lex_state = 261}, + [891] = {.lex_state = 261}, + [892] = {.lex_state = 261}, [893] = {.lex_state = 140}, - [894] = {.lex_state = 140}, + [894] = {.lex_state = 261}, [895] = {.lex_state = 261}, [896] = {.lex_state = 261}, - [897] = {.lex_state = 261}, - [898] = {.lex_state = 140}, - [899] = {.lex_state = 140}, - [900] = {.lex_state = 140}, + [897] = {.lex_state = 140}, + [898] = {.lex_state = 261}, + [899] = {.lex_state = 261}, + [900] = {.lex_state = 261}, [901] = {.lex_state = 261}, - [902] = {.lex_state = 140}, + [902] = {.lex_state = 261}, [903] = {.lex_state = 261}, [904] = {.lex_state = 140}, [905] = {.lex_state = 261}, - [906] = {.lex_state = 261}, - [907] = {.lex_state = 141}, + [906] = {.lex_state = 140}, + [907] = {.lex_state = 261}, [908] = {.lex_state = 261}, [909] = {.lex_state = 261}, - [910] = {.lex_state = 261}, - [911] = {.lex_state = 261}, + [910] = {.lex_state = 140}, + [911] = {.lex_state = 140}, [912] = {.lex_state = 261}, [913] = {.lex_state = 261}, [914] = {.lex_state = 261}, [915] = {.lex_state = 140}, [916] = {.lex_state = 261}, - [917] = {.lex_state = 261}, + [917] = {.lex_state = 140}, [918] = {.lex_state = 261}, - [919] = {.lex_state = 261}, - [920] = {.lex_state = 140}, + [919] = {.lex_state = 140}, + [920] = {.lex_state = 261}, [921] = {.lex_state = 261}, [922] = {.lex_state = 261}, [923] = {.lex_state = 261}, - [924] = {.lex_state = 141}, + [924] = {.lex_state = 140}, [925] = {.lex_state = 140}, [926] = {.lex_state = 261}, - [927] = {.lex_state = 140}, + [927] = {.lex_state = 261}, [928] = {.lex_state = 261}, - [929] = {.lex_state = 261}, - [930] = {.lex_state = 261}, + [929] = {.lex_state = 140}, + [930] = {.lex_state = 140}, [931] = {.lex_state = 261}, [932] = {.lex_state = 140}, [933] = {.lex_state = 140}, - [934] = {.lex_state = 140}, + [934] = {.lex_state = 261}, [935] = {.lex_state = 261}, - [936] = {.lex_state = 261}, + [936] = {.lex_state = 140}, [937] = {.lex_state = 261}, - [938] = {.lex_state = 140}, - [939] = {.lex_state = 261}, - [940] = {.lex_state = 261}, + [938] = {.lex_state = 261}, + [939] = {.lex_state = 140}, + [940] = {.lex_state = 140}, [941] = {.lex_state = 261}, - [942] = {.lex_state = 261}, + [942] = {.lex_state = 140}, [943] = {.lex_state = 261}, - [944] = {.lex_state = 261}, - [945] = {.lex_state = 140}, + [944] = {.lex_state = 140}, + [945] = {.lex_state = 261}, [946] = {.lex_state = 140}, - [947] = {.lex_state = 140}, - [948] = {.lex_state = 140}, + [947] = {.lex_state = 261}, + [948] = {.lex_state = 261}, [949] = {.lex_state = 261}, [950] = {.lex_state = 261}, - [951] = {.lex_state = 140}, + [951] = {.lex_state = 261}, [952] = {.lex_state = 261}, [953] = {.lex_state = 261}, [954] = {.lex_state = 261}, - [955] = {.lex_state = 140}, - [956] = {.lex_state = 140}, + [955] = {.lex_state = 261}, + [956] = {.lex_state = 261}, [957] = {.lex_state = 140}, [958] = {.lex_state = 140}, [959] = {.lex_state = 140}, @@ -18850,96 +18868,96 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [968] = {.lex_state = 261}, [969] = {.lex_state = 261}, [970] = {.lex_state = 261}, - [971] = {.lex_state = 140}, - [972] = {.lex_state = 140}, - [973] = {.lex_state = 140}, - [974] = {.lex_state = 140}, + [971] = {.lex_state = 261}, + [972] = {.lex_state = 261}, + [973] = {.lex_state = 261}, + [974] = {.lex_state = 261}, [975] = {.lex_state = 261}, [976] = {.lex_state = 261}, [977] = {.lex_state = 140}, - [978] = {.lex_state = 261}, - [979] = {.lex_state = 261}, - [980] = {.lex_state = 261}, + [978] = {.lex_state = 140}, + [979] = {.lex_state = 140}, + [980] = {.lex_state = 140}, [981] = {.lex_state = 140}, [982] = {.lex_state = 261}, - [983] = {.lex_state = 140}, - [984] = {.lex_state = 261}, + [983] = {.lex_state = 261}, + [984] = {.lex_state = 140}, [985] = {.lex_state = 140}, - [986] = {.lex_state = 261}, + [986] = {.lex_state = 140}, [987] = {.lex_state = 261}, - [988] = {.lex_state = 261}, + [988] = {.lex_state = 140}, [989] = {.lex_state = 140}, - [990] = {.lex_state = 140}, + [990] = {.lex_state = 261}, [991] = {.lex_state = 261}, - [992] = {.lex_state = 261}, + [992] = {.lex_state = 140}, [993] = {.lex_state = 261}, - [994] = {.lex_state = 261}, - [995] = {.lex_state = 261}, - [996] = {.lex_state = 140}, + [994] = {.lex_state = 140}, + [995] = {.lex_state = 140}, + [996] = {.lex_state = 261}, [997] = {.lex_state = 261}, [998] = {.lex_state = 140}, - [999] = {.lex_state = 140}, - [1000] = {.lex_state = 140}, + [999] = {.lex_state = 261}, + [1000] = {.lex_state = 261}, [1001] = {.lex_state = 261}, [1002] = {.lex_state = 261}, [1003] = {.lex_state = 261}, [1004] = {.lex_state = 261}, [1005] = {.lex_state = 261}, [1006] = {.lex_state = 261}, - [1007] = {.lex_state = 140}, - [1008] = {.lex_state = 261}, + [1007] = {.lex_state = 261}, + [1008] = {.lex_state = 140}, [1009] = {.lex_state = 261}, - [1010] = {.lex_state = 140}, + [1010] = {.lex_state = 261}, [1011] = {.lex_state = 261}, - [1012] = {.lex_state = 140}, - [1013] = {.lex_state = 140}, - [1014] = {.lex_state = 140}, - [1015] = {.lex_state = 140}, + [1012] = {.lex_state = 261}, + [1013] = {.lex_state = 261}, + [1014] = {.lex_state = 261}, + [1015] = {.lex_state = 261}, [1016] = {.lex_state = 261}, - [1017] = {.lex_state = 140}, + [1017] = {.lex_state = 261}, [1018] = {.lex_state = 261}, [1019] = {.lex_state = 261}, - [1020] = {.lex_state = 140}, + [1020] = {.lex_state = 261}, [1021] = {.lex_state = 261}, [1022] = {.lex_state = 261}, [1023] = {.lex_state = 261}, [1024] = {.lex_state = 261}, [1025] = {.lex_state = 261}, - [1026] = {.lex_state = 261}, - [1027] = {.lex_state = 261}, + [1026] = {.lex_state = 140}, + [1027] = {.lex_state = 140}, [1028] = {.lex_state = 261}, - [1029] = {.lex_state = 261}, - [1030] = {.lex_state = 140}, - [1031] = {.lex_state = 261}, + [1029] = {.lex_state = 140}, + [1030] = {.lex_state = 261}, + [1031] = {.lex_state = 140}, [1032] = {.lex_state = 261}, [1033] = {.lex_state = 261}, [1034] = {.lex_state = 261}, [1035] = {.lex_state = 261}, - [1036] = {.lex_state = 261}, + [1036] = {.lex_state = 140}, [1037] = {.lex_state = 261}, - [1038] = {.lex_state = 261}, - [1039] = {.lex_state = 140}, + [1038] = {.lex_state = 140}, + [1039] = {.lex_state = 261}, [1040] = {.lex_state = 261}, - [1041] = {.lex_state = 140}, - [1042] = {.lex_state = 261}, + [1041] = {.lex_state = 261}, + [1042] = {.lex_state = 140}, [1043] = {.lex_state = 261}, [1044] = {.lex_state = 261}, - [1045] = {.lex_state = 140}, + [1045] = {.lex_state = 261}, [1046] = {.lex_state = 261}, [1047] = {.lex_state = 261}, [1048] = {.lex_state = 261}, [1049] = {.lex_state = 261}, - [1050] = {.lex_state = 261}, - [1051] = {.lex_state = 261}, + [1050] = {.lex_state = 140}, + [1051] = {.lex_state = 140}, [1052] = {.lex_state = 261}, - [1053] = {.lex_state = 261}, - [1054] = {.lex_state = 261}, - [1055] = {.lex_state = 261}, + [1053] = {.lex_state = 140}, + [1054] = {.lex_state = 140}, + [1055] = {.lex_state = 140}, [1056] = {.lex_state = 140}, - [1057] = {.lex_state = 140}, - [1058] = {.lex_state = 140}, - [1059] = {.lex_state = 140}, - [1060] = {.lex_state = 134}, + [1057] = {.lex_state = 261}, + [1058] = {.lex_state = 141}, + [1059] = {.lex_state = 141}, + [1060] = {.lex_state = 139}, [1061] = {.lex_state = 139}, [1062] = {.lex_state = 139}, [1063] = {.lex_state = 139}, @@ -18949,7 +18967,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1067] = {.lex_state = 139}, [1068] = {.lex_state = 139}, [1069] = {.lex_state = 139}, - [1070] = {.lex_state = 139}, + [1070] = {.lex_state = 134}, [1071] = {.lex_state = 139}, [1072] = {.lex_state = 139}, [1073] = {.lex_state = 139}, @@ -18960,9 +18978,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1078] = {.lex_state = 139}, [1079] = {.lex_state = 134}, [1080] = {.lex_state = 135}, - [1081] = {.lex_state = 134}, + [1081] = {.lex_state = 195}, [1082] = {.lex_state = 195}, - [1083] = {.lex_state = 195}, + [1083] = {.lex_state = 134}, [1084] = {.lex_state = 195}, [1085] = {.lex_state = 195}, [1086] = {.lex_state = 195}, @@ -18977,47 +18995,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1095] = {.lex_state = 195}, [1096] = {.lex_state = 261}, [1097] = {.lex_state = 261}, - [1098] = {.lex_state = 141}, + [1098] = {.lex_state = 261}, [1099] = {.lex_state = 141}, - [1100] = {.lex_state = 261}, + [1100] = {.lex_state = 141}, [1101] = {.lex_state = 139}, [1102] = {.lex_state = 139}, [1103] = {.lex_state = 195}, - [1104] = {.lex_state = 142}, - [1105] = {.lex_state = 142}, - [1106] = {.lex_state = 142}, + [1104] = {.lex_state = 139}, + [1105] = {.lex_state = 139}, + [1106] = {.lex_state = 139}, [1107] = {.lex_state = 139}, - [1108] = {.lex_state = 142}, - [1109] = {.lex_state = 142}, + [1108] = {.lex_state = 139}, + [1109] = {.lex_state = 139}, [1110] = {.lex_state = 142}, - [1111] = {.lex_state = 142}, + [1111] = {.lex_state = 139}, [1112] = {.lex_state = 139}, - [1113] = {.lex_state = 142}, - [1114] = {.lex_state = 142}, + [1113] = {.lex_state = 139}, + [1114] = {.lex_state = 139}, [1115] = {.lex_state = 142}, [1116] = {.lex_state = 142}, [1117] = {.lex_state = 139}, - [1118] = {.lex_state = 142}, - [1119] = {.lex_state = 142}, - [1120] = {.lex_state = 142}, - [1121] = {.lex_state = 142}, + [1118] = {.lex_state = 139}, + [1119] = {.lex_state = 139}, + [1120] = {.lex_state = 139}, + [1121] = {.lex_state = 139}, [1122] = {.lex_state = 139}, [1123] = {.lex_state = 139}, [1124] = {.lex_state = 139}, [1125] = {.lex_state = 139}, [1126] = {.lex_state = 139}, [1127] = {.lex_state = 139}, - [1128] = {.lex_state = 139}, + [1128] = {.lex_state = 142}, [1129] = {.lex_state = 139}, [1130] = {.lex_state = 139}, - [1131] = {.lex_state = 139}, + [1131] = {.lex_state = 142}, [1132] = {.lex_state = 139}, [1133] = {.lex_state = 139}, - [1134] = {.lex_state = 142}, + [1134] = {.lex_state = 139}, [1135] = {.lex_state = 139}, [1136] = {.lex_state = 139}, [1137] = {.lex_state = 139}, - [1138] = {.lex_state = 139}, + [1138] = {.lex_state = 142}, [1139] = {.lex_state = 139}, [1140] = {.lex_state = 139}, [1141] = {.lex_state = 139}, @@ -19050,7 +19068,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1168] = {.lex_state = 139}, [1169] = {.lex_state = 139}, [1170] = {.lex_state = 139}, - [1171] = {.lex_state = 139}, + [1171] = {.lex_state = 142}, [1172] = {.lex_state = 139}, [1173] = {.lex_state = 139}, [1174] = {.lex_state = 139}, @@ -19063,7 +19081,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1181] = {.lex_state = 139}, [1182] = {.lex_state = 139}, [1183] = {.lex_state = 139}, - [1184] = {.lex_state = 139}, + [1184] = {.lex_state = 142}, [1185] = {.lex_state = 139}, [1186] = {.lex_state = 139}, [1187] = {.lex_state = 139}, @@ -19077,20 +19095,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1195] = {.lex_state = 139}, [1196] = {.lex_state = 139}, [1197] = {.lex_state = 139}, - [1198] = {.lex_state = 142}, - [1199] = {.lex_state = 139}, + [1198] = {.lex_state = 139}, + [1199] = {.lex_state = 142}, [1200] = {.lex_state = 139}, - [1201] = {.lex_state = 139}, + [1201] = {.lex_state = 142}, [1202] = {.lex_state = 139}, [1203] = {.lex_state = 139}, [1204] = {.lex_state = 142}, - [1205] = {.lex_state = 142}, + [1205] = {.lex_state = 139}, [1206] = {.lex_state = 139}, [1207] = {.lex_state = 139}, [1208] = {.lex_state = 139}, [1209] = {.lex_state = 139}, - [1210] = {.lex_state = 142}, - [1211] = {.lex_state = 139}, + [1210] = {.lex_state = 139}, + [1211] = {.lex_state = 142}, [1212] = {.lex_state = 139}, [1213] = {.lex_state = 139}, [1214] = {.lex_state = 139}, @@ -19099,46 +19117,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1217] = {.lex_state = 139}, [1218] = {.lex_state = 139}, [1219] = {.lex_state = 139}, - [1220] = {.lex_state = 142}, + [1220] = {.lex_state = 139}, [1221] = {.lex_state = 139}, [1222] = {.lex_state = 142}, - [1223] = {.lex_state = 139}, - [1224] = {.lex_state = 142}, + [1223] = {.lex_state = 142}, + [1224] = {.lex_state = 139}, [1225] = {.lex_state = 139}, [1226] = {.lex_state = 139}, [1227] = {.lex_state = 139}, [1228] = {.lex_state = 139}, [1229] = {.lex_state = 139}, - [1230] = {.lex_state = 142}, - [1231] = {.lex_state = 142}, + [1230] = {.lex_state = 139}, + [1231] = {.lex_state = 139}, [1232] = {.lex_state = 139}, - [1233] = {.lex_state = 142}, + [1233] = {.lex_state = 139}, [1234] = {.lex_state = 142}, - [1235] = {.lex_state = 142}, - [1236] = {.lex_state = 142}, - [1237] = {.lex_state = 142}, - [1238] = {.lex_state = 142}, + [1235] = {.lex_state = 139}, + [1236] = {.lex_state = 139}, + [1237] = {.lex_state = 139}, + [1238] = {.lex_state = 139}, [1239] = {.lex_state = 139}, - [1240] = {.lex_state = 142}, + [1240] = {.lex_state = 139}, [1241] = {.lex_state = 139}, - [1242] = {.lex_state = 139}, - [1243] = {.lex_state = 139}, - [1244] = {.lex_state = 139}, - [1245] = {.lex_state = 139}, + [1242] = {.lex_state = 142}, + [1243] = {.lex_state = 142}, + [1244] = {.lex_state = 142}, + [1245] = {.lex_state = 142}, [1246] = {.lex_state = 142}, - [1247] = {.lex_state = 139}, - [1248] = {.lex_state = 139}, - [1249] = {.lex_state = 139}, - [1250] = {.lex_state = 139}, - [1251] = {.lex_state = 139}, - [1252] = {.lex_state = 139}, - [1253] = {.lex_state = 139}, - [1254] = {.lex_state = 139}, - [1255] = {.lex_state = 139}, - [1256] = {.lex_state = 139}, - [1257] = {.lex_state = 139}, - [1258] = {.lex_state = 139}, - [1259] = {.lex_state = 139}, + [1247] = {.lex_state = 142}, + [1248] = {.lex_state = 142}, + [1249] = {.lex_state = 142}, + [1250] = {.lex_state = 142}, + [1251] = {.lex_state = 142}, + [1252] = {.lex_state = 142}, + [1253] = {.lex_state = 142}, + [1254] = {.lex_state = 142}, + [1255] = {.lex_state = 142}, + [1256] = {.lex_state = 142}, + [1257] = {.lex_state = 142}, + [1258] = {.lex_state = 142}, + [1259] = {.lex_state = 142}, [1260] = {.lex_state = 142}, [1261] = {.lex_state = 142}, [1262] = {.lex_state = 142}, @@ -19176,57 +19194,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1294] = {.lex_state = 142}, [1295] = {.lex_state = 142}, [1296] = {.lex_state = 142}, - [1297] = {.lex_state = 142}, + [1297] = {.lex_state = 195}, [1298] = {.lex_state = 142}, - [1299] = {.lex_state = 142}, - [1300] = {.lex_state = 142}, + [1299] = {.lex_state = 141}, + [1300] = {.lex_state = 195}, [1301] = {.lex_state = 142}, [1302] = {.lex_state = 142}, [1303] = {.lex_state = 141}, - [1304] = {.lex_state = 142}, + [1304] = {.lex_state = 141}, [1305] = {.lex_state = 141}, [1306] = {.lex_state = 142}, [1307] = {.lex_state = 142}, - [1308] = {.lex_state = 141}, - [1309] = {.lex_state = 141}, + [1308] = {.lex_state = 142}, + [1309] = {.lex_state = 142}, [1310] = {.lex_state = 142}, - [1311] = {.lex_state = 142}, + [1311] = {.lex_state = 141}, [1312] = {.lex_state = 142}, [1313] = {.lex_state = 142}, [1314] = {.lex_state = 142}, [1315] = {.lex_state = 142}, [1316] = {.lex_state = 141}, [1317] = {.lex_state = 142}, - [1318] = {.lex_state = 142}, - [1319] = {.lex_state = 141}, + [1318] = {.lex_state = 195}, + [1319] = {.lex_state = 142}, [1320] = {.lex_state = 141}, [1321] = {.lex_state = 141}, [1322] = {.lex_state = 142}, [1323] = {.lex_state = 142}, [1324] = {.lex_state = 141}, - [1325] = {.lex_state = 142}, + [1325] = {.lex_state = 141}, [1326] = {.lex_state = 141}, [1327] = {.lex_state = 142}, - [1328] = {.lex_state = 141}, + [1328] = {.lex_state = 142}, [1329] = {.lex_state = 141}, - [1330] = {.lex_state = 141}, + [1330] = {.lex_state = 142}, [1331] = {.lex_state = 142}, [1332] = {.lex_state = 142}, - [1333] = {.lex_state = 141}, - [1334] = {.lex_state = 141}, - [1335] = {.lex_state = 141}, + [1333] = {.lex_state = 142}, + [1334] = {.lex_state = 142}, + [1335] = {.lex_state = 142}, [1336] = {.lex_state = 142}, [1337] = {.lex_state = 142}, [1338] = {.lex_state = 141}, - [1339] = {.lex_state = 142}, - [1340] = {.lex_state = 142}, - [1341] = {.lex_state = 141}, - [1342] = {.lex_state = 142}, - [1343] = {.lex_state = 142}, + [1339] = {.lex_state = 141}, + [1340] = {.lex_state = 141}, + [1341] = {.lex_state = 142}, + [1342] = {.lex_state = 141}, + [1343] = {.lex_state = 195}, [1344] = {.lex_state = 142}, - [1345] = {.lex_state = 142}, + [1345] = {.lex_state = 141}, [1346] = {.lex_state = 142}, - [1347] = {.lex_state = 195}, + [1347] = {.lex_state = 141}, [1348] = {.lex_state = 142}, [1349] = {.lex_state = 142}, [1350] = {.lex_state = 142}, @@ -19243,18 +19261,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1361] = {.lex_state = 142}, [1362] = {.lex_state = 142}, [1363] = {.lex_state = 142}, - [1364] = {.lex_state = 142}, + [1364] = {.lex_state = 155}, [1365] = {.lex_state = 142}, [1366] = {.lex_state = 142}, [1367] = {.lex_state = 142}, [1368] = {.lex_state = 142}, - [1369] = {.lex_state = 195}, + [1369] = {.lex_state = 142}, [1370] = {.lex_state = 142}, [1371] = {.lex_state = 142}, [1372] = {.lex_state = 142}, [1373] = {.lex_state = 142}, [1374] = {.lex_state = 142}, - [1375] = {.lex_state = 195}, + [1375] = {.lex_state = 142}, [1376] = {.lex_state = 142}, [1377] = {.lex_state = 142}, [1378] = {.lex_state = 142}, @@ -19269,7 +19287,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1387] = {.lex_state = 142}, [1388] = {.lex_state = 142}, [1389] = {.lex_state = 142}, - [1390] = {.lex_state = 142}, + [1390] = {.lex_state = 163}, [1391] = {.lex_state = 142}, [1392] = {.lex_state = 142}, [1393] = {.lex_state = 142}, @@ -19281,12 +19299,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1399] = {.lex_state = 142}, [1400] = {.lex_state = 142}, [1401] = {.lex_state = 142}, - [1402] = {.lex_state = 195}, + [1402] = {.lex_state = 142}, [1403] = {.lex_state = 142}, [1404] = {.lex_state = 142}, [1405] = {.lex_state = 142}, [1406] = {.lex_state = 142}, - [1407] = {.lex_state = 142}, + [1407] = {.lex_state = 155}, [1408] = {.lex_state = 142}, [1409] = {.lex_state = 142}, [1410] = {.lex_state = 142}, @@ -19300,15 +19318,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1418] = {.lex_state = 142}, [1419] = {.lex_state = 142}, [1420] = {.lex_state = 142}, - [1421] = {.lex_state = 163}, + [1421] = {.lex_state = 142}, [1422] = {.lex_state = 142}, [1423] = {.lex_state = 142}, [1424] = {.lex_state = 142}, [1425] = {.lex_state = 142}, [1426] = {.lex_state = 142}, - [1427] = {.lex_state = 142}, - [1428] = {.lex_state = 142}, - [1429] = {.lex_state = 142}, + [1427] = {.lex_state = 155}, + [1428] = {.lex_state = 155}, + [1429] = {.lex_state = 163}, [1430] = {.lex_state = 142}, [1431] = {.lex_state = 142}, [1432] = {.lex_state = 142}, @@ -19318,19 +19336,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1436] = {.lex_state = 142}, [1437] = {.lex_state = 142}, [1438] = {.lex_state = 142}, - [1439] = {.lex_state = 142}, + [1439] = {.lex_state = 155}, [1440] = {.lex_state = 142}, [1441] = {.lex_state = 142}, [1442] = {.lex_state = 142}, [1443] = {.lex_state = 142}, - [1444] = {.lex_state = 142}, + [1444] = {.lex_state = 163}, [1445] = {.lex_state = 142}, [1446] = {.lex_state = 142}, [1447] = {.lex_state = 142}, [1448] = {.lex_state = 142}, [1449] = {.lex_state = 142}, [1450] = {.lex_state = 142}, - [1451] = {.lex_state = 156}, + [1451] = {.lex_state = 142}, [1452] = {.lex_state = 142}, [1453] = {.lex_state = 142}, [1454] = {.lex_state = 142}, @@ -19338,7 +19356,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1456] = {.lex_state = 142}, [1457] = {.lex_state = 142}, [1458] = {.lex_state = 142}, - [1459] = {.lex_state = 142}, + [1459] = {.lex_state = 163}, [1460] = {.lex_state = 142}, [1461] = {.lex_state = 142}, [1462] = {.lex_state = 142}, @@ -19348,63 +19366,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1466] = {.lex_state = 142}, [1467] = {.lex_state = 142}, [1468] = {.lex_state = 142}, - [1469] = {.lex_state = 142}, + [1469] = {.lex_state = 155}, [1470] = {.lex_state = 142}, - [1471] = {.lex_state = 142}, - [1472] = {.lex_state = 142}, - [1473] = {.lex_state = 142}, - [1474] = {.lex_state = 142}, - [1475] = {.lex_state = 142}, + [1471] = {.lex_state = 163}, + [1472] = {.lex_state = 163}, + [1473] = {.lex_state = 163}, + [1474] = {.lex_state = 163}, + [1475] = {.lex_state = 163}, [1476] = {.lex_state = 142}, - [1477] = {.lex_state = 156}, + [1477] = {.lex_state = 163}, [1478] = {.lex_state = 142}, - [1479] = {.lex_state = 142}, - [1480] = {.lex_state = 142}, + [1479] = {.lex_state = 163}, + [1480] = {.lex_state = 163}, [1481] = {.lex_state = 142}, [1482] = {.lex_state = 142}, [1483] = {.lex_state = 142}, - [1484] = {.lex_state = 142}, + [1484] = {.lex_state = 163}, [1485] = {.lex_state = 142}, [1486] = {.lex_state = 142}, [1487] = {.lex_state = 142}, [1488] = {.lex_state = 142}, - [1489] = {.lex_state = 142}, - [1490] = {.lex_state = 142}, - [1491] = {.lex_state = 163}, + [1489] = {.lex_state = 155}, + [1490] = {.lex_state = 155}, + [1491] = {.lex_state = 142}, [1492] = {.lex_state = 142}, [1493] = {.lex_state = 142}, - [1494] = {.lex_state = 142}, - [1495] = {.lex_state = 163}, + [1494] = {.lex_state = 155}, + [1495] = {.lex_state = 142}, [1496] = {.lex_state = 142}, [1497] = {.lex_state = 142}, - [1498] = {.lex_state = 142}, - [1499] = {.lex_state = 163}, + [1498] = {.lex_state = 163}, + [1499] = {.lex_state = 142}, [1500] = {.lex_state = 142}, - [1501] = {.lex_state = 142}, + [1501] = {.lex_state = 163}, [1502] = {.lex_state = 163}, [1503] = {.lex_state = 142}, - [1504] = {.lex_state = 163}, + [1504] = {.lex_state = 142}, [1505] = {.lex_state = 142}, - [1506] = {.lex_state = 142}, - [1507] = {.lex_state = 156}, + [1506] = {.lex_state = 163}, + [1507] = {.lex_state = 163}, [1508] = {.lex_state = 142}, [1509] = {.lex_state = 142}, [1510] = {.lex_state = 142}, [1511] = {.lex_state = 142}, [1512] = {.lex_state = 142}, - [1513] = {.lex_state = 142}, - [1514] = {.lex_state = 142}, + [1513] = {.lex_state = 163}, + [1514] = {.lex_state = 155}, [1515] = {.lex_state = 142}, [1516] = {.lex_state = 142}, - [1517] = {.lex_state = 156}, + [1517] = {.lex_state = 142}, [1518] = {.lex_state = 142}, - [1519] = {.lex_state = 156}, + [1519] = {.lex_state = 142}, [1520] = {.lex_state = 142}, [1521] = {.lex_state = 142}, [1522] = {.lex_state = 142}, [1523] = {.lex_state = 142}, - [1524] = {.lex_state = 156}, - [1525] = {.lex_state = 142}, + [1524] = {.lex_state = 142}, + [1525] = {.lex_state = 163}, [1526] = {.lex_state = 142}, [1527] = {.lex_state = 142}, [1528] = {.lex_state = 142}, @@ -19465,7 +19483,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1583] = {.lex_state = 142}, [1584] = {.lex_state = 142}, [1585] = {.lex_state = 142}, - [1586] = {.lex_state = 163}, + [1586] = {.lex_state = 142}, [1587] = {.lex_state = 142}, [1588] = {.lex_state = 142}, [1589] = {.lex_state = 142}, @@ -19482,7 +19500,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1600] = {.lex_state = 142}, [1601] = {.lex_state = 142}, [1602] = {.lex_state = 142}, - [1603] = {.lex_state = 163}, + [1603] = {.lex_state = 142}, [1604] = {.lex_state = 142}, [1605] = {.lex_state = 142}, [1606] = {.lex_state = 142}, @@ -19501,7 +19519,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1619] = {.lex_state = 142}, [1620] = {.lex_state = 142}, [1621] = {.lex_state = 142}, - [1622] = {.lex_state = 163}, + [1622] = {.lex_state = 142}, [1623] = {.lex_state = 142}, [1624] = {.lex_state = 142}, [1625] = {.lex_state = 142}, @@ -19522,10 +19540,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1640] = {.lex_state = 142}, [1641] = {.lex_state = 142}, [1642] = {.lex_state = 142}, - [1643] = {.lex_state = 163}, + [1643] = {.lex_state = 142}, [1644] = {.lex_state = 142}, - [1645] = {.lex_state = 163}, - [1646] = {.lex_state = 163}, + [1645] = {.lex_state = 142}, + [1646] = {.lex_state = 142}, [1647] = {.lex_state = 142}, [1648] = {.lex_state = 142}, [1649] = {.lex_state = 142}, @@ -19535,12 +19553,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1653] = {.lex_state = 142}, [1654] = {.lex_state = 142}, [1655] = {.lex_state = 142}, - [1656] = {.lex_state = 163}, + [1656] = {.lex_state = 142}, [1657] = {.lex_state = 142}, - [1658] = {.lex_state = 163}, + [1658] = {.lex_state = 142}, [1659] = {.lex_state = 142}, [1660] = {.lex_state = 142}, - [1661] = {.lex_state = 163}, + [1661] = {.lex_state = 142}, [1662] = {.lex_state = 142}, [1663] = {.lex_state = 142}, [1664] = {.lex_state = 142}, @@ -19557,17 +19575,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1675] = {.lex_state = 142}, [1676] = {.lex_state = 142}, [1677] = {.lex_state = 142}, - [1678] = {.lex_state = 163}, + [1678] = {.lex_state = 142}, [1679] = {.lex_state = 142}, [1680] = {.lex_state = 142}, - [1681] = {.lex_state = 156}, + [1681] = {.lex_state = 142}, [1682] = {.lex_state = 142}, [1683] = {.lex_state = 142}, - [1684] = {.lex_state = 163}, + [1684] = {.lex_state = 142}, [1685] = {.lex_state = 142}, [1686] = {.lex_state = 142}, [1687] = {.lex_state = 142}, - [1688] = {.lex_state = 142}, + [1688] = {.lex_state = 163}, [1689] = {.lex_state = 142}, [1690] = {.lex_state = 142}, [1691] = {.lex_state = 142}, @@ -19582,20 +19600,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1700] = {.lex_state = 142}, [1701] = {.lex_state = 142}, [1702] = {.lex_state = 142}, - [1703] = {.lex_state = 156}, + [1703] = {.lex_state = 142}, [1704] = {.lex_state = 142}, [1705] = {.lex_state = 142}, [1706] = {.lex_state = 142}, [1707] = {.lex_state = 142}, [1708] = {.lex_state = 142}, [1709] = {.lex_state = 142}, - [1710] = {.lex_state = 142}, - [1711] = {.lex_state = 163}, + [1710] = {.lex_state = 163}, + [1711] = {.lex_state = 142}, [1712] = {.lex_state = 142}, [1713] = {.lex_state = 142}, [1714] = {.lex_state = 142}, - [1715] = {.lex_state = 156}, - [1716] = {.lex_state = 156}, + [1715] = {.lex_state = 142}, + [1716] = {.lex_state = 142}, [1717] = {.lex_state = 142}, [1718] = {.lex_state = 142}, [1719] = {.lex_state = 142}, @@ -19629,19 +19647,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1747] = {.lex_state = 142}, [1748] = {.lex_state = 142}, [1749] = {.lex_state = 142}, - [1750] = {.lex_state = 163}, - [1751] = {.lex_state = 163}, - [1752] = {.lex_state = 163}, - [1753] = {.lex_state = 163}, + [1750] = {.lex_state = 142}, + [1751] = {.lex_state = 142}, + [1752] = {.lex_state = 142}, + [1753] = {.lex_state = 142}, [1754] = {.lex_state = 163}, - [1755] = {.lex_state = 156}, - [1756] = {.lex_state = 156}, - [1757] = {.lex_state = 156}, - [1758] = {.lex_state = 156}, - [1759] = {.lex_state = 156}, - [1760] = {.lex_state = 156}, - [1761] = {.lex_state = 156}, - [1762] = {.lex_state = 156}, + [1755] = {.lex_state = 155}, + [1756] = {.lex_state = 155}, + [1757] = {.lex_state = 155}, + [1758] = {.lex_state = 155}, + [1759] = {.lex_state = 155}, + [1760] = {.lex_state = 155}, + [1761] = {.lex_state = 155}, + [1762] = {.lex_state = 155}, [1763] = {.lex_state = 195}, [1764] = {.lex_state = 195}, [1765] = {.lex_state = 139}, @@ -19656,255 +19674,255 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1774] = {.lex_state = 195}, [1775] = {.lex_state = 195}, [1776] = {.lex_state = 195}, - [1777] = {.lex_state = 146}, - [1778] = {.lex_state = 195}, + [1777] = {.lex_state = 195}, + [1778] = {.lex_state = 146}, [1779] = {.lex_state = 146}, - [1780] = {.lex_state = 146}, - [1781] = {.lex_state = 155}, + [1780] = {.lex_state = 195}, + [1781] = {.lex_state = 195}, [1782] = {.lex_state = 195}, - [1783] = {.lex_state = 195}, - [1784] = {.lex_state = 155}, - [1785] = {.lex_state = 155}, - [1786] = {.lex_state = 155}, - [1787] = {.lex_state = 155}, - [1788] = {.lex_state = 155}, - [1789] = {.lex_state = 155}, - [1790] = {.lex_state = 195}, - [1791] = {.lex_state = 156}, + [1783] = {.lex_state = 146}, + [1784] = {.lex_state = 156}, + [1785] = {.lex_state = 156}, + [1786] = {.lex_state = 156}, + [1787] = {.lex_state = 156}, + [1788] = {.lex_state = 156}, + [1789] = {.lex_state = 156}, + [1790] = {.lex_state = 156}, + [1791] = {.lex_state = 195}, [1792] = {.lex_state = 144}, - [1793] = {.lex_state = 144}, - [1794] = {.lex_state = 156}, + [1793] = {.lex_state = 155}, + [1794] = {.lex_state = 155}, [1795] = {.lex_state = 144}, - [1796] = {.lex_state = 165}, - [1797] = {.lex_state = 165}, - [1798] = {.lex_state = 146}, - [1799] = {.lex_state = 195}, + [1796] = {.lex_state = 144}, + [1797] = {.lex_state = 195}, + [1798] = {.lex_state = 165}, + [1799] = {.lex_state = 165}, [1800] = {.lex_state = 146}, - [1801] = {.lex_state = 155}, - [1802] = {.lex_state = 165}, - [1803] = {.lex_state = 165}, - [1804] = {.lex_state = 155}, - [1805] = {.lex_state = 195}, - [1806] = {.lex_state = 146}, - [1807] = {.lex_state = 146}, + [1801] = {.lex_state = 195}, + [1802] = {.lex_state = 146}, + [1803] = {.lex_state = 155}, + [1804] = {.lex_state = 146}, + [1805] = {.lex_state = 165}, + [1806] = {.lex_state = 156}, + [1807] = {.lex_state = 156}, [1808] = {.lex_state = 165}, [1809] = {.lex_state = 165}, [1810] = {.lex_state = 165}, - [1811] = {.lex_state = 156}, - [1812] = {.lex_state = 155}, - [1813] = {.lex_state = 195}, - [1814] = {.lex_state = 155}, - [1815] = {.lex_state = 155}, - [1816] = {.lex_state = 155}, - [1817] = {.lex_state = 167}, - [1818] = {.lex_state = 148}, - [1819] = {.lex_state = 155}, - [1820] = {.lex_state = 148}, - [1821] = {.lex_state = 155}, - [1822] = {.lex_state = 155}, - [1823] = {.lex_state = 148}, - [1824] = {.lex_state = 155}, - [1825] = {.lex_state = 167}, - [1826] = {.lex_state = 165}, - [1827] = {.lex_state = 156}, - [1828] = {.lex_state = 179}, - [1829] = {.lex_state = 144}, + [1811] = {.lex_state = 146}, + [1812] = {.lex_state = 165}, + [1813] = {.lex_state = 156}, + [1814] = {.lex_state = 179}, + [1815] = {.lex_state = 148}, + [1816] = {.lex_state = 167}, + [1817] = {.lex_state = 179}, + [1818] = {.lex_state = 167}, + [1819] = {.lex_state = 156}, + [1820] = {.lex_state = 179}, + [1821] = {.lex_state = 156}, + [1822] = {.lex_state = 156}, + [1823] = {.lex_state = 156}, + [1824] = {.lex_state = 156}, + [1825] = {.lex_state = 156}, + [1826] = {.lex_state = 156}, + [1827] = {.lex_state = 148}, + [1828] = {.lex_state = 148}, + [1829] = {.lex_state = 195}, [1830] = {.lex_state = 144}, - [1831] = {.lex_state = 144}, + [1831] = {.lex_state = 165}, [1832] = {.lex_state = 144}, [1833] = {.lex_state = 144}, - [1834] = {.lex_state = 144}, - [1835] = {.lex_state = 165}, - [1836] = {.lex_state = 144}, - [1837] = {.lex_state = 179}, - [1838] = {.lex_state = 179}, - [1839] = {.lex_state = 168}, - [1840] = {.lex_state = 168}, - [1841] = {.lex_state = 195}, + [1834] = {.lex_state = 195}, + [1835] = {.lex_state = 144}, + [1836] = {.lex_state = 165}, + [1837] = {.lex_state = 155}, + [1838] = {.lex_state = 144}, + [1839] = {.lex_state = 144}, + [1840] = {.lex_state = 144}, + [1841] = {.lex_state = 159}, [1842] = {.lex_state = 168}, [1843] = {.lex_state = 168}, - [1844] = {.lex_state = 159}, - [1845] = {.lex_state = 168}, - [1846] = {.lex_state = 159}, - [1847] = {.lex_state = 165}, + [1844] = {.lex_state = 168}, + [1845] = {.lex_state = 165}, + [1846] = {.lex_state = 195}, + [1847] = {.lex_state = 195}, [1848] = {.lex_state = 168}, [1849] = {.lex_state = 168}, [1850] = {.lex_state = 168}, - [1851] = {.lex_state = 195}, + [1851] = {.lex_state = 159}, [1852] = {.lex_state = 168}, [1853] = {.lex_state = 168}, - [1854] = {.lex_state = 148}, + [1854] = {.lex_state = 168}, [1855] = {.lex_state = 157}, - [1856] = {.lex_state = 155}, - [1857] = {.lex_state = 157}, - [1858] = {.lex_state = 157}, - [1859] = {.lex_state = 157}, - [1860] = {.lex_state = 195}, - [1861] = {.lex_state = 148}, - [1862] = {.lex_state = 139}, + [1856] = {.lex_state = 157}, + [1857] = {.lex_state = 168}, + [1858] = {.lex_state = 164}, + [1859] = {.lex_state = 195}, + [1860] = {.lex_state = 148}, + [1861] = {.lex_state = 195}, + [1862] = {.lex_state = 195}, [1863] = {.lex_state = 157}, - [1864] = {.lex_state = 164}, - [1865] = {.lex_state = 168}, - [1866] = {.lex_state = 157}, - [1867] = {.lex_state = 195}, - [1868] = {.lex_state = 148}, - [1869] = {.lex_state = 168}, - [1870] = {.lex_state = 139}, - [1871] = {.lex_state = 148}, - [1872] = {.lex_state = 157}, + [1864] = {.lex_state = 148}, + [1865] = {.lex_state = 139}, + [1866] = {.lex_state = 168}, + [1867] = {.lex_state = 157}, + [1868] = {.lex_state = 195}, + [1869] = {.lex_state = 148}, + [1870] = {.lex_state = 168}, + [1871] = {.lex_state = 195}, + [1872] = {.lex_state = 139}, [1873] = {.lex_state = 164}, [1874] = {.lex_state = 157}, - [1875] = {.lex_state = 168}, - [1876] = {.lex_state = 157}, - [1877] = {.lex_state = 174}, - [1878] = {.lex_state = 164}, - [1879] = {.lex_state = 155}, - [1880] = {.lex_state = 195}, - [1881] = {.lex_state = 164}, + [1875] = {.lex_state = 157}, + [1876] = {.lex_state = 168}, + [1877] = {.lex_state = 157}, + [1878] = {.lex_state = 157}, + [1879] = {.lex_state = 148}, + [1880] = {.lex_state = 157}, + [1881] = {.lex_state = 156}, [1882] = {.lex_state = 164}, - [1883] = {.lex_state = 144}, - [1884] = {.lex_state = 155}, - [1885] = {.lex_state = 174}, - [1886] = {.lex_state = 195}, + [1883] = {.lex_state = 195}, + [1884] = {.lex_state = 164}, + [1885] = {.lex_state = 164}, + [1886] = {.lex_state = 164}, [1887] = {.lex_state = 164}, [1888] = {.lex_state = 164}, [1889] = {.lex_state = 164}, - [1890] = {.lex_state = 144}, - [1891] = {.lex_state = 164}, + [1890] = {.lex_state = 174}, + [1891] = {.lex_state = 144}, [1892] = {.lex_state = 195}, - [1893] = {.lex_state = 164}, - [1894] = {.lex_state = 164}, - [1895] = {.lex_state = 164}, - [1896] = {.lex_state = 144}, - [1897] = {.lex_state = 164}, - [1898] = {.lex_state = 164}, - [1899] = {.lex_state = 195}, - [1900] = {.lex_state = 144}, - [1901] = {.lex_state = 195}, + [1893] = {.lex_state = 195}, + [1894] = {.lex_state = 195}, + [1895] = {.lex_state = 195}, + [1896] = {.lex_state = 195}, + [1897] = {.lex_state = 195}, + [1898] = {.lex_state = 195}, + [1899] = {.lex_state = 144}, + [1900] = {.lex_state = 195}, + [1901] = {.lex_state = 174}, [1902] = {.lex_state = 164}, - [1903] = {.lex_state = 168}, - [1904] = {.lex_state = 195}, - [1905] = {.lex_state = 195}, - [1906] = {.lex_state = 159}, + [1903] = {.lex_state = 164}, + [1904] = {.lex_state = 164}, + [1905] = {.lex_state = 164}, + [1906] = {.lex_state = 144}, [1907] = {.lex_state = 195}, [1908] = {.lex_state = 195}, - [1909] = {.lex_state = 183}, - [1910] = {.lex_state = 155}, - [1911] = {.lex_state = 195}, - [1912] = {.lex_state = 195}, + [1909] = {.lex_state = 156}, + [1910] = {.lex_state = 195}, + [1911] = {.lex_state = 156}, + [1912] = {.lex_state = 164}, [1913] = {.lex_state = 195}, [1914] = {.lex_state = 195}, - [1915] = {.lex_state = 172}, + [1915] = {.lex_state = 195}, [1916] = {.lex_state = 195}, - [1917] = {.lex_state = 183}, - [1918] = {.lex_state = 195}, - [1919] = {.lex_state = 155}, - [1920] = {.lex_state = 155}, - [1921] = {.lex_state = 195}, - [1922] = {.lex_state = 168}, - [1923] = {.lex_state = 155}, - [1924] = {.lex_state = 168}, - [1925] = {.lex_state = 195}, - [1926] = {.lex_state = 172}, - [1927] = {.lex_state = 195}, - [1928] = {.lex_state = 195}, - [1929] = {.lex_state = 159}, - [1930] = {.lex_state = 155}, - [1931] = {.lex_state = 172}, - [1932] = {.lex_state = 172}, - [1933] = {.lex_state = 172}, - [1934] = {.lex_state = 155}, - [1935] = {.lex_state = 195}, - [1936] = {.lex_state = 155}, - [1937] = {.lex_state = 164}, + [1917] = {.lex_state = 144}, + [1918] = {.lex_state = 156}, + [1919] = {.lex_state = 172}, + [1920] = {.lex_state = 179}, + [1921] = {.lex_state = 183}, + [1922] = {.lex_state = 183}, + [1923] = {.lex_state = 196}, + [1924] = {.lex_state = 156}, + [1925] = {.lex_state = 154}, + [1926] = {.lex_state = 179}, + [1927] = {.lex_state = 156}, + [1928] = {.lex_state = 196}, + [1929] = {.lex_state = 156}, + [1930] = {.lex_state = 179}, + [1931] = {.lex_state = 154}, + [1932] = {.lex_state = 179}, + [1933] = {.lex_state = 156}, + [1934] = {.lex_state = 156}, + [1935] = {.lex_state = 159}, + [1936] = {.lex_state = 179}, + [1937] = {.lex_state = 179}, [1938] = {.lex_state = 172}, - [1939] = {.lex_state = 172}, - [1940] = {.lex_state = 195}, + [1939] = {.lex_state = 196}, + [1940] = {.lex_state = 164}, [1941] = {.lex_state = 172}, - [1942] = {.lex_state = 155}, - [1943] = {.lex_state = 155}, + [1942] = {.lex_state = 154}, + [1943] = {.lex_state = 195}, [1944] = {.lex_state = 172}, - [1945] = {.lex_state = 155}, - [1946] = {.lex_state = 165}, - [1947] = {.lex_state = 168}, - [1948] = {.lex_state = 157}, - [1949] = {.lex_state = 164}, - [1950] = {.lex_state = 154}, - [1951] = {.lex_state = 165}, - [1952] = {.lex_state = 179}, - [1953] = {.lex_state = 168}, - [1954] = {.lex_state = 165}, - [1955] = {.lex_state = 179}, - [1956] = {.lex_state = 165}, - [1957] = {.lex_state = 179}, - [1958] = {.lex_state = 157}, - [1959] = {.lex_state = 157}, + [1945] = {.lex_state = 172}, + [1946] = {.lex_state = 172}, + [1947] = {.lex_state = 156}, + [1948] = {.lex_state = 179}, + [1949] = {.lex_state = 172}, + [1950] = {.lex_state = 179}, + [1951] = {.lex_state = 172}, + [1952] = {.lex_state = 196}, + [1953] = {.lex_state = 179}, + [1954] = {.lex_state = 168}, + [1955] = {.lex_state = 156}, + [1956] = {.lex_state = 159}, + [1957] = {.lex_state = 195}, + [1958] = {.lex_state = 172}, + [1959] = {.lex_state = 164}, [1960] = {.lex_state = 179}, - [1961] = {.lex_state = 168}, - [1962] = {.lex_state = 179}, - [1963] = {.lex_state = 195}, - [1964] = {.lex_state = 157}, - [1965] = {.lex_state = 157}, - [1966] = {.lex_state = 196}, - [1967] = {.lex_state = 154}, - [1968] = {.lex_state = 157}, - [1969] = {.lex_state = 179}, - [1970] = {.lex_state = 196}, - [1971] = {.lex_state = 179}, - [1972] = {.lex_state = 165}, - [1973] = {.lex_state = 157}, + [1961] = {.lex_state = 154}, + [1962] = {.lex_state = 168}, + [1963] = {.lex_state = 179}, + [1964] = {.lex_state = 168}, + [1965] = {.lex_state = 156}, + [1966] = {.lex_state = 195}, + [1967] = {.lex_state = 195}, + [1968] = {.lex_state = 195}, + [1969] = {.lex_state = 195}, + [1970] = {.lex_state = 157}, + [1971] = {.lex_state = 195}, + [1972] = {.lex_state = 195}, + [1973] = {.lex_state = 195}, [1974] = {.lex_state = 157}, [1975] = {.lex_state = 157}, [1976] = {.lex_state = 157}, - [1977] = {.lex_state = 157}, - [1978] = {.lex_state = 195}, - [1979] = {.lex_state = 179}, - [1980] = {.lex_state = 179}, - [1981] = {.lex_state = 196}, - [1982] = {.lex_state = 154}, - [1983] = {.lex_state = 154}, - [1984] = {.lex_state = 179}, + [1977] = {.lex_state = 168}, + [1978] = {.lex_state = 157}, + [1979] = {.lex_state = 195}, + [1980] = {.lex_state = 195}, + [1981] = {.lex_state = 195}, + [1982] = {.lex_state = 195}, + [1983] = {.lex_state = 195}, + [1984] = {.lex_state = 195}, [1985] = {.lex_state = 195}, - [1986] = {.lex_state = 165}, - [1987] = {.lex_state = 157}, - [1988] = {.lex_state = 179}, - [1989] = {.lex_state = 196}, + [1986] = {.lex_state = 195}, + [1987] = {.lex_state = 195}, + [1988] = {.lex_state = 195}, + [1989] = {.lex_state = 195}, [1990] = {.lex_state = 195}, - [1991] = {.lex_state = 168}, - [1992] = {.lex_state = 195}, + [1991] = {.lex_state = 195}, + [1992] = {.lex_state = 165}, [1993] = {.lex_state = 195}, - [1994] = {.lex_state = 168}, + [1994] = {.lex_state = 195}, [1995] = {.lex_state = 195}, [1996] = {.lex_state = 195}, - [1997] = {.lex_state = 168}, + [1997] = {.lex_state = 195}, [1998] = {.lex_state = 195}, - [1999] = {.lex_state = 195}, + [1999] = {.lex_state = 157}, [2000] = {.lex_state = 195}, [2001] = {.lex_state = 195}, - [2002] = {.lex_state = 168}, - [2003] = {.lex_state = 168}, - [2004] = {.lex_state = 168}, - [2005] = {.lex_state = 168}, + [2002] = {.lex_state = 195}, + [2003] = {.lex_state = 195}, + [2004] = {.lex_state = 195}, + [2005] = {.lex_state = 195}, [2006] = {.lex_state = 195}, - [2007] = {.lex_state = 155}, - [2008] = {.lex_state = 165}, - [2009] = {.lex_state = 168}, + [2007] = {.lex_state = 195}, + [2008] = {.lex_state = 195}, + [2009] = {.lex_state = 195}, [2010] = {.lex_state = 195}, [2011] = {.lex_state = 195}, - [2012] = {.lex_state = 168}, - [2013] = {.lex_state = 168}, - [2014] = {.lex_state = 168}, - [2015] = {.lex_state = 168}, - [2016] = {.lex_state = 168}, + [2012] = {.lex_state = 195}, + [2013] = {.lex_state = 195}, + [2014] = {.lex_state = 195}, + [2015] = {.lex_state = 195}, + [2016] = {.lex_state = 195}, [2017] = {.lex_state = 195}, [2018] = {.lex_state = 195}, - [2019] = {.lex_state = 195}, - [2020] = {.lex_state = 168}, + [2019] = {.lex_state = 157}, + [2020] = {.lex_state = 195}, [2021] = {.lex_state = 195}, - [2022] = {.lex_state = 168}, + [2022] = {.lex_state = 195}, [2023] = {.lex_state = 195}, [2024] = {.lex_state = 195}, - [2025] = {.lex_state = 195}, + [2025] = {.lex_state = 157}, [2026] = {.lex_state = 195}, [2027] = {.lex_state = 195}, [2028] = {.lex_state = 195}, @@ -19914,108 +19932,108 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2032] = {.lex_state = 195}, [2033] = {.lex_state = 195}, [2034] = {.lex_state = 195}, - [2035] = {.lex_state = 195}, + [2035] = {.lex_state = 156}, [2036] = {.lex_state = 195}, - [2037] = {.lex_state = 168}, - [2038] = {.lex_state = 155}, + [2037] = {.lex_state = 195}, + [2038] = {.lex_state = 157}, [2039] = {.lex_state = 195}, [2040] = {.lex_state = 195}, - [2041] = {.lex_state = 155}, - [2042] = {.lex_state = 195}, + [2041] = {.lex_state = 165}, + [2042] = {.lex_state = 165}, [2043] = {.lex_state = 195}, - [2044] = {.lex_state = 195}, + [2044] = {.lex_state = 165}, [2045] = {.lex_state = 195}, - [2046] = {.lex_state = 195}, - [2047] = {.lex_state = 168}, + [2046] = {.lex_state = 165}, + [2047] = {.lex_state = 195}, [2048] = {.lex_state = 195}, [2049] = {.lex_state = 195}, - [2050] = {.lex_state = 168}, - [2051] = {.lex_state = 168}, - [2052] = {.lex_state = 168}, - [2053] = {.lex_state = 196}, - [2054] = {.lex_state = 168}, + [2050] = {.lex_state = 195}, + [2051] = {.lex_state = 195}, + [2052] = {.lex_state = 157}, + [2053] = {.lex_state = 195}, + [2054] = {.lex_state = 195}, [2055] = {.lex_state = 195}, - [2056] = {.lex_state = 168}, - [2057] = {.lex_state = 168}, + [2056] = {.lex_state = 195}, + [2057] = {.lex_state = 195}, [2058] = {.lex_state = 195}, [2059] = {.lex_state = 195}, [2060] = {.lex_state = 195}, - [2061] = {.lex_state = 168}, - [2062] = {.lex_state = 195}, - [2063] = {.lex_state = 195}, + [2061] = {.lex_state = 157}, + [2062] = {.lex_state = 168}, + [2063] = {.lex_state = 154}, [2064] = {.lex_state = 195}, - [2065] = {.lex_state = 168}, - [2066] = {.lex_state = 168}, - [2067] = {.lex_state = 165}, - [2068] = {.lex_state = 168}, - [2069] = {.lex_state = 195}, - [2070] = {.lex_state = 184}, + [2065] = {.lex_state = 195}, + [2066] = {.lex_state = 196}, + [2067] = {.lex_state = 195}, + [2068] = {.lex_state = 157}, + [2069] = {.lex_state = 165}, + [2070] = {.lex_state = 195}, [2071] = {.lex_state = 195}, [2072] = {.lex_state = 195}, [2073] = {.lex_state = 195}, - [2074] = {.lex_state = 195}, + [2074] = {.lex_state = 164}, [2075] = {.lex_state = 195}, [2076] = {.lex_state = 195}, - [2077] = {.lex_state = 168}, + [2077] = {.lex_state = 195}, [2078] = {.lex_state = 168}, [2079] = {.lex_state = 168}, - [2080] = {.lex_state = 195}, - [2081] = {.lex_state = 195}, - [2082] = {.lex_state = 195}, - [2083] = {.lex_state = 195}, - [2084] = {.lex_state = 195}, - [2085] = {.lex_state = 164}, - [2086] = {.lex_state = 195}, + [2080] = {.lex_state = 156}, + [2081] = {.lex_state = 168}, + [2082] = {.lex_state = 168}, + [2083] = {.lex_state = 168}, + [2084] = {.lex_state = 156}, + [2085] = {.lex_state = 168}, + [2086] = {.lex_state = 184}, [2087] = {.lex_state = 168}, [2088] = {.lex_state = 195}, - [2089] = {.lex_state = 195}, - [2090] = {.lex_state = 195}, + [2089] = {.lex_state = 164}, + [2090] = {.lex_state = 184}, [2091] = {.lex_state = 195}, [2092] = {.lex_state = 168}, - [2093] = {.lex_state = 195}, - [2094] = {.lex_state = 195}, - [2095] = {.lex_state = 195}, + [2093] = {.lex_state = 168}, + [2094] = {.lex_state = 168}, + [2095] = {.lex_state = 168}, [2096] = {.lex_state = 168}, [2097] = {.lex_state = 168}, - [2098] = {.lex_state = 168}, + [2098] = {.lex_state = 196}, [2099] = {.lex_state = 168}, - [2100] = {.lex_state = 168}, + [2100] = {.lex_state = 165}, [2101] = {.lex_state = 195}, - [2102] = {.lex_state = 195}, - [2103] = {.lex_state = 155}, - [2104] = {.lex_state = 195}, - [2105] = {.lex_state = 184}, - [2106] = {.lex_state = 184}, + [2102] = {.lex_state = 184}, + [2103] = {.lex_state = 168}, + [2104] = {.lex_state = 154}, + [2105] = {.lex_state = 168}, + [2106] = {.lex_state = 156}, [2107] = {.lex_state = 168}, - [2108] = {.lex_state = 165}, + [2108] = {.lex_state = 168}, [2109] = {.lex_state = 168}, - [2110] = {.lex_state = 195}, - [2111] = {.lex_state = 168}, - [2112] = {.lex_state = 168}, - [2113] = {.lex_state = 168}, - [2114] = {.lex_state = 184}, + [2110] = {.lex_state = 168}, + [2111] = {.lex_state = 172}, + [2112] = {.lex_state = 184}, + [2113] = {.lex_state = 154}, + [2114] = {.lex_state = 168}, [2115] = {.lex_state = 168}, - [2116] = {.lex_state = 184}, - [2117] = {.lex_state = 184}, - [2118] = {.lex_state = 195}, - [2119] = {.lex_state = 195}, - [2120] = {.lex_state = 184}, - [2121] = {.lex_state = 195}, - [2122] = {.lex_state = 184}, + [2116] = {.lex_state = 168}, + [2117] = {.lex_state = 168}, + [2118] = {.lex_state = 168}, + [2119] = {.lex_state = 168}, + [2120] = {.lex_state = 168}, + [2121] = {.lex_state = 168}, + [2122] = {.lex_state = 168}, [2123] = {.lex_state = 168}, [2124] = {.lex_state = 168}, - [2125] = {.lex_state = 184}, - [2126] = {.lex_state = 195}, - [2127] = {.lex_state = 195}, + [2125] = {.lex_state = 168}, + [2126] = {.lex_state = 168}, + [2127] = {.lex_state = 168}, [2128] = {.lex_state = 168}, - [2129] = {.lex_state = 195}, + [2129] = {.lex_state = 168}, [2130] = {.lex_state = 168}, [2131] = {.lex_state = 168}, - [2132] = {.lex_state = 154}, - [2133] = {.lex_state = 168}, - [2134] = {.lex_state = 165}, + [2132] = {.lex_state = 196}, + [2133] = {.lex_state = 196}, + [2134] = {.lex_state = 168}, [2135] = {.lex_state = 168}, - [2136] = {.lex_state = 195}, + [2136] = {.lex_state = 168}, [2137] = {.lex_state = 168}, [2138] = {.lex_state = 168}, [2139] = {.lex_state = 168}, @@ -20024,454 +20042,454 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2142] = {.lex_state = 168}, [2143] = {.lex_state = 168}, [2144] = {.lex_state = 168}, - [2145] = {.lex_state = 195}, + [2145] = {.lex_state = 168}, [2146] = {.lex_state = 168}, - [2147] = {.lex_state = 195}, + [2147] = {.lex_state = 168}, [2148] = {.lex_state = 168}, - [2149] = {.lex_state = 195}, - [2150] = {.lex_state = 168}, - [2151] = {.lex_state = 195}, - [2152] = {.lex_state = 165}, + [2149] = {.lex_state = 168}, + [2150] = {.lex_state = 165}, + [2151] = {.lex_state = 168}, + [2152] = {.lex_state = 168}, [2153] = {.lex_state = 168}, [2154] = {.lex_state = 195}, [2155] = {.lex_state = 168}, [2156] = {.lex_state = 168}, - [2157] = {.lex_state = 168}, + [2157] = {.lex_state = 165}, [2158] = {.lex_state = 168}, - [2159] = {.lex_state = 168}, - [2160] = {.lex_state = 195}, - [2161] = {.lex_state = 195}, - [2162] = {.lex_state = 195}, - [2163] = {.lex_state = 195}, + [2159] = {.lex_state = 165}, + [2160] = {.lex_state = 168}, + [2161] = {.lex_state = 168}, + [2162] = {.lex_state = 165}, + [2163] = {.lex_state = 184}, [2164] = {.lex_state = 164}, - [2165] = {.lex_state = 172}, - [2166] = {.lex_state = 195}, - [2167] = {.lex_state = 196}, - [2168] = {.lex_state = 155}, - [2169] = {.lex_state = 155}, - [2170] = {.lex_state = 166}, - [2171] = {.lex_state = 154}, + [2165] = {.lex_state = 168}, + [2166] = {.lex_state = 184}, + [2167] = {.lex_state = 154}, + [2168] = {.lex_state = 168}, + [2169] = {.lex_state = 168}, + [2170] = {.lex_state = 168}, + [2171] = {.lex_state = 168}, [2172] = {.lex_state = 184}, - [2173] = {.lex_state = 155}, - [2174] = {.lex_state = 155}, - [2175] = {.lex_state = 163}, - [2176] = {.lex_state = 196}, - [2177] = {.lex_state = 156}, - [2178] = {.lex_state = 156}, - [2179] = {.lex_state = 156}, - [2180] = {.lex_state = 168}, - [2181] = {.lex_state = 195}, - [2182] = {.lex_state = 155}, - [2183] = {.lex_state = 172}, - [2184] = {.lex_state = 164}, + [2173] = {.lex_state = 156}, + [2174] = {.lex_state = 168}, + [2175] = {.lex_state = 184}, + [2176] = {.lex_state = 184}, + [2177] = {.lex_state = 166}, + [2178] = {.lex_state = 154}, + [2179] = {.lex_state = 154}, + [2180] = {.lex_state = 154}, + [2181] = {.lex_state = 196}, + [2182] = {.lex_state = 196}, + [2183] = {.lex_state = 196}, + [2184] = {.lex_state = 196}, [2185] = {.lex_state = 155}, - [2186] = {.lex_state = 172}, - [2187] = {.lex_state = 156}, - [2188] = {.lex_state = 195}, + [2186] = {.lex_state = 196}, + [2187] = {.lex_state = 196}, + [2188] = {.lex_state = 196}, [2189] = {.lex_state = 155}, [2190] = {.lex_state = 154}, - [2191] = {.lex_state = 155}, - [2192] = {.lex_state = 155}, - [2193] = {.lex_state = 195}, - [2194] = {.lex_state = 195}, - [2195] = {.lex_state = 155}, - [2196] = {.lex_state = 166}, - [2197] = {.lex_state = 155}, - [2198] = {.lex_state = 155}, - [2199] = {.lex_state = 166}, - [2200] = {.lex_state = 154}, - [2201] = {.lex_state = 166}, - [2202] = {.lex_state = 166}, - [2203] = {.lex_state = 166}, - [2204] = {.lex_state = 196}, - [2205] = {.lex_state = 155}, + [2191] = {.lex_state = 156}, + [2192] = {.lex_state = 196}, + [2193] = {.lex_state = 154}, + [2194] = {.lex_state = 156}, + [2195] = {.lex_state = 154}, + [2196] = {.lex_state = 154}, + [2197] = {.lex_state = 154}, + [2198] = {.lex_state = 154}, + [2199] = {.lex_state = 196}, + [2200] = {.lex_state = 196}, + [2201] = {.lex_state = 154}, + [2202] = {.lex_state = 196}, + [2203] = {.lex_state = 154}, + [2204] = {.lex_state = 154}, + [2205] = {.lex_state = 154}, [2206] = {.lex_state = 196}, - [2207] = {.lex_state = 154}, - [2208] = {.lex_state = 155}, - [2209] = {.lex_state = 155}, - [2210] = {.lex_state = 196}, - [2211] = {.lex_state = 168}, - [2212] = {.lex_state = 155}, - [2213] = {.lex_state = 154}, - [2214] = {.lex_state = 154}, - [2215] = {.lex_state = 155}, - [2216] = {.lex_state = 155}, - [2217] = {.lex_state = 155}, - [2218] = {.lex_state = 155}, - [2219] = {.lex_state = 154}, - [2220] = {.lex_state = 155}, - [2221] = {.lex_state = 155}, - [2222] = {.lex_state = 155}, - [2223] = {.lex_state = 155}, - [2224] = {.lex_state = 155}, - [2225] = {.lex_state = 155}, - [2226] = {.lex_state = 155}, - [2227] = {.lex_state = 182}, - [2228] = {.lex_state = 155}, - [2229] = {.lex_state = 137}, - [2230] = {.lex_state = 155}, - [2231] = {.lex_state = 196}, - [2232] = {.lex_state = 155}, - [2233] = {.lex_state = 155}, - [2234] = {.lex_state = 155}, + [2207] = {.lex_state = 156}, + [2208] = {.lex_state = 154}, + [2209] = {.lex_state = 196}, + [2210] = {.lex_state = 154}, + [2211] = {.lex_state = 154}, + [2212] = {.lex_state = 154}, + [2213] = {.lex_state = 196}, + [2214] = {.lex_state = 196}, + [2215] = {.lex_state = 196}, + [2216] = {.lex_state = 154}, + [2217] = {.lex_state = 196}, + [2218] = {.lex_state = 196}, + [2219] = {.lex_state = 196}, + [2220] = {.lex_state = 196}, + [2221] = {.lex_state = 154}, + [2222] = {.lex_state = 154}, + [2223] = {.lex_state = 172}, + [2224] = {.lex_state = 164}, + [2225] = {.lex_state = 156}, + [2226] = {.lex_state = 166}, + [2227] = {.lex_state = 196}, + [2228] = {.lex_state = 172}, + [2229] = {.lex_state = 154}, + [2230] = {.lex_state = 196}, + [2231] = {.lex_state = 156}, + [2232] = {.lex_state = 168}, + [2233] = {.lex_state = 196}, + [2234] = {.lex_state = 154}, [2235] = {.lex_state = 154}, - [2236] = {.lex_state = 155}, - [2237] = {.lex_state = 155}, - [2238] = {.lex_state = 155}, - [2239] = {.lex_state = 155}, - [2240] = {.lex_state = 155}, - [2241] = {.lex_state = 155}, - [2242] = {.lex_state = 180}, - [2243] = {.lex_state = 155}, - [2244] = {.lex_state = 154}, - [2245] = {.lex_state = 155}, - [2246] = {.lex_state = 155}, - [2247] = {.lex_state = 155}, - [2248] = {.lex_state = 137}, - [2249] = {.lex_state = 196}, - [2250] = {.lex_state = 155}, - [2251] = {.lex_state = 155}, + [2236] = {.lex_state = 196}, + [2237] = {.lex_state = 154}, + [2238] = {.lex_state = 196}, + [2239] = {.lex_state = 154}, + [2240] = {.lex_state = 196}, + [2241] = {.lex_state = 154}, + [2242] = {.lex_state = 196}, + [2243] = {.lex_state = 196}, + [2244] = {.lex_state = 196}, + [2245] = {.lex_state = 196}, + [2246] = {.lex_state = 196}, + [2247] = {.lex_state = 154}, + [2248] = {.lex_state = 154}, + [2249] = {.lex_state = 195}, + [2250] = {.lex_state = 154}, + [2251] = {.lex_state = 196}, [2252] = {.lex_state = 154}, - [2253] = {.lex_state = 137}, - [2254] = {.lex_state = 180}, - [2255] = {.lex_state = 196}, - [2256] = {.lex_state = 196}, - [2257] = {.lex_state = 182}, - [2258] = {.lex_state = 154}, + [2253] = {.lex_state = 196}, + [2254] = {.lex_state = 166}, + [2255] = {.lex_state = 154}, + [2256] = {.lex_state = 154}, + [2257] = {.lex_state = 196}, + [2258] = {.lex_state = 196}, [2259] = {.lex_state = 154}, - [2260] = {.lex_state = 155}, + [2260] = {.lex_state = 154}, [2261] = {.lex_state = 196}, - [2262] = {.lex_state = 155}, - [2263] = {.lex_state = 196}, - [2264] = {.lex_state = 154}, - [2265] = {.lex_state = 154}, - [2266] = {.lex_state = 154}, + [2262] = {.lex_state = 196}, + [2263] = {.lex_state = 154}, + [2264] = {.lex_state = 184}, + [2265] = {.lex_state = 166}, + [2266] = {.lex_state = 156}, [2267] = {.lex_state = 196}, [2268] = {.lex_state = 196}, - [2269] = {.lex_state = 196}, - [2270] = {.lex_state = 196}, + [2269] = {.lex_state = 154}, + [2270] = {.lex_state = 154}, [2271] = {.lex_state = 196}, - [2272] = {.lex_state = 154}, - [2273] = {.lex_state = 154}, - [2274] = {.lex_state = 163}, - [2275] = {.lex_state = 154}, - [2276] = {.lex_state = 155}, - [2277] = {.lex_state = 154}, - [2278] = {.lex_state = 196}, - [2279] = {.lex_state = 154}, - [2280] = {.lex_state = 154}, - [2281] = {.lex_state = 155}, - [2282] = {.lex_state = 154}, + [2272] = {.lex_state = 196}, + [2273] = {.lex_state = 196}, + [2274] = {.lex_state = 196}, + [2275] = {.lex_state = 196}, + [2276] = {.lex_state = 154}, + [2277] = {.lex_state = 196}, + [2278] = {.lex_state = 156}, + [2279] = {.lex_state = 166}, + [2280] = {.lex_state = 196}, + [2281] = {.lex_state = 154}, + [2282] = {.lex_state = 196}, [2283] = {.lex_state = 196}, - [2284] = {.lex_state = 156}, - [2285] = {.lex_state = 154}, - [2286] = {.lex_state = 155}, + [2284] = {.lex_state = 154}, + [2285] = {.lex_state = 196}, + [2286] = {.lex_state = 196}, [2287] = {.lex_state = 154}, [2288] = {.lex_state = 154}, - [2289] = {.lex_state = 155}, + [2289] = {.lex_state = 196}, [2290] = {.lex_state = 154}, [2291] = {.lex_state = 196}, - [2292] = {.lex_state = 155}, - [2293] = {.lex_state = 163}, + [2292] = {.lex_state = 154}, + [2293] = {.lex_state = 196}, [2294] = {.lex_state = 196}, - [2295] = {.lex_state = 154}, - [2296] = {.lex_state = 154}, + [2295] = {.lex_state = 156}, + [2296] = {.lex_state = 156}, [2297] = {.lex_state = 154}, - [2298] = {.lex_state = 154}, - [2299] = {.lex_state = 155}, + [2298] = {.lex_state = 163}, + [2299] = {.lex_state = 154}, [2300] = {.lex_state = 154}, [2301] = {.lex_state = 154}, [2302] = {.lex_state = 154}, - [2303] = {.lex_state = 155}, - [2304] = {.lex_state = 155}, - [2305] = {.lex_state = 196}, - [2306] = {.lex_state = 155}, - [2307] = {.lex_state = 180}, - [2308] = {.lex_state = 154}, - [2309] = {.lex_state = 154}, - [2310] = {.lex_state = 155}, - [2311] = {.lex_state = 180}, + [2303] = {.lex_state = 196}, + [2304] = {.lex_state = 196}, + [2305] = {.lex_state = 154}, + [2306] = {.lex_state = 154}, + [2307] = {.lex_state = 166}, + [2308] = {.lex_state = 196}, + [2309] = {.lex_state = 156}, + [2310] = {.lex_state = 154}, + [2311] = {.lex_state = 196}, [2312] = {.lex_state = 196}, [2313] = {.lex_state = 196}, [2314] = {.lex_state = 196}, - [2315] = {.lex_state = 181}, - [2316] = {.lex_state = 155}, - [2317] = {.lex_state = 155}, - [2318] = {.lex_state = 155}, - [2319] = {.lex_state = 188}, + [2315] = {.lex_state = 154}, + [2316] = {.lex_state = 196}, + [2317] = {.lex_state = 196}, + [2318] = {.lex_state = 196}, + [2319] = {.lex_state = 154}, [2320] = {.lex_state = 155}, - [2321] = {.lex_state = 196}, - [2322] = {.lex_state = 154}, + [2321] = {.lex_state = 154}, + [2322] = {.lex_state = 196}, [2323] = {.lex_state = 154}, - [2324] = {.lex_state = 196}, + [2324] = {.lex_state = 155}, [2325] = {.lex_state = 154}, - [2326] = {.lex_state = 155}, + [2326] = {.lex_state = 154}, [2327] = {.lex_state = 154}, - [2328] = {.lex_state = 154}, - [2329] = {.lex_state = 155}, - [2330] = {.lex_state = 155}, - [2331] = {.lex_state = 155}, - [2332] = {.lex_state = 155}, - [2333] = {.lex_state = 154}, + [2328] = {.lex_state = 196}, + [2329] = {.lex_state = 154}, + [2330] = {.lex_state = 196}, + [2331] = {.lex_state = 154}, + [2332] = {.lex_state = 196}, + [2333] = {.lex_state = 196}, [2334] = {.lex_state = 154}, [2335] = {.lex_state = 154}, - [2336] = {.lex_state = 155}, - [2337] = {.lex_state = 180}, - [2338] = {.lex_state = 180}, - [2339] = {.lex_state = 180}, - [2340] = {.lex_state = 157}, - [2341] = {.lex_state = 188}, + [2336] = {.lex_state = 154}, + [2337] = {.lex_state = 196}, + [2338] = {.lex_state = 196}, + [2339] = {.lex_state = 154}, + [2340] = {.lex_state = 154}, + [2341] = {.lex_state = 196}, [2342] = {.lex_state = 196}, - [2343] = {.lex_state = 180}, - [2344] = {.lex_state = 196}, - [2345] = {.lex_state = 196}, - [2346] = {.lex_state = 164}, - [2347] = {.lex_state = 155}, - [2348] = {.lex_state = 196}, - [2349] = {.lex_state = 196}, - [2350] = {.lex_state = 165}, + [2343] = {.lex_state = 156}, + [2344] = {.lex_state = 154}, + [2345] = {.lex_state = 195}, + [2346] = {.lex_state = 154}, + [2347] = {.lex_state = 154}, + [2348] = {.lex_state = 154}, + [2349] = {.lex_state = 156}, + [2350] = {.lex_state = 154}, [2351] = {.lex_state = 196}, [2352] = {.lex_state = 154}, - [2353] = {.lex_state = 196}, - [2354] = {.lex_state = 196}, - [2355] = {.lex_state = 170}, - [2356] = {.lex_state = 154}, - [2357] = {.lex_state = 196}, - [2358] = {.lex_state = 170}, - [2359] = {.lex_state = 154}, - [2360] = {.lex_state = 154}, - [2361] = {.lex_state = 171}, - [2362] = {.lex_state = 154}, - [2363] = {.lex_state = 137}, - [2364] = {.lex_state = 154}, - [2365] = {.lex_state = 154}, - [2366] = {.lex_state = 196}, - [2367] = {.lex_state = 154}, - [2368] = {.lex_state = 137}, - [2369] = {.lex_state = 154}, - [2370] = {.lex_state = 154}, - [2371] = {.lex_state = 155}, - [2372] = {.lex_state = 182}, - [2373] = {.lex_state = 137}, - [2374] = {.lex_state = 195}, - [2375] = {.lex_state = 154}, - [2376] = {.lex_state = 196}, - [2377] = {.lex_state = 196}, - [2378] = {.lex_state = 154}, - [2379] = {.lex_state = 163}, - [2380] = {.lex_state = 196}, - [2381] = {.lex_state = 196}, - [2382] = {.lex_state = 196}, - [2383] = {.lex_state = 154}, - [2384] = {.lex_state = 154}, - [2385] = {.lex_state = 196}, - [2386] = {.lex_state = 155}, - [2387] = {.lex_state = 157}, - [2388] = {.lex_state = 196}, - [2389] = {.lex_state = 196}, - [2390] = {.lex_state = 196}, - [2391] = {.lex_state = 196}, - [2392] = {.lex_state = 157}, - [2393] = {.lex_state = 196}, - [2394] = {.lex_state = 196}, - [2395] = {.lex_state = 196}, - [2396] = {.lex_state = 196}, - [2397] = {.lex_state = 196}, - [2398] = {.lex_state = 155}, - [2399] = {.lex_state = 154}, - [2400] = {.lex_state = 155}, - [2401] = {.lex_state = 154}, - [2402] = {.lex_state = 196}, - [2403] = {.lex_state = 154}, - [2404] = {.lex_state = 155}, - [2405] = {.lex_state = 154}, - [2406] = {.lex_state = 155}, - [2407] = {.lex_state = 196}, - [2408] = {.lex_state = 165}, - [2409] = {.lex_state = 196}, - [2410] = {.lex_state = 196}, - [2411] = {.lex_state = 155}, - [2412] = {.lex_state = 163}, - [2413] = {.lex_state = 195}, - [2414] = {.lex_state = 154}, - [2415] = {.lex_state = 155}, - [2416] = {.lex_state = 154}, + [2353] = {.lex_state = 154}, + [2354] = {.lex_state = 154}, + [2355] = {.lex_state = 165}, + [2356] = {.lex_state = 156}, + [2357] = {.lex_state = 182}, + [2358] = {.lex_state = 137}, + [2359] = {.lex_state = 156}, + [2360] = {.lex_state = 180}, + [2361] = {.lex_state = 156}, + [2362] = {.lex_state = 156}, + [2363] = {.lex_state = 156}, + [2364] = {.lex_state = 180}, + [2365] = {.lex_state = 180}, + [2366] = {.lex_state = 156}, + [2367] = {.lex_state = 156}, + [2368] = {.lex_state = 157}, + [2369] = {.lex_state = 137}, + [2370] = {.lex_state = 164}, + [2371] = {.lex_state = 156}, + [2372] = {.lex_state = 170}, + [2373] = {.lex_state = 188}, + [2374] = {.lex_state = 165}, + [2375] = {.lex_state = 156}, + [2376] = {.lex_state = 156}, + [2377] = {.lex_state = 156}, + [2378] = {.lex_state = 156}, + [2379] = {.lex_state = 156}, + [2380] = {.lex_state = 156}, + [2381] = {.lex_state = 156}, + [2382] = {.lex_state = 156}, + [2383] = {.lex_state = 163}, + [2384] = {.lex_state = 156}, + [2385] = {.lex_state = 137}, + [2386] = {.lex_state = 182}, + [2387] = {.lex_state = 156}, + [2388] = {.lex_state = 171}, + [2389] = {.lex_state = 156}, + [2390] = {.lex_state = 168}, + [2391] = {.lex_state = 156}, + [2392] = {.lex_state = 156}, + [2393] = {.lex_state = 163}, + [2394] = {.lex_state = 157}, + [2395] = {.lex_state = 156}, + [2396] = {.lex_state = 180}, + [2397] = {.lex_state = 156}, + [2398] = {.lex_state = 180}, + [2399] = {.lex_state = 156}, + [2400] = {.lex_state = 156}, + [2401] = {.lex_state = 156}, + [2402] = {.lex_state = 188}, + [2403] = {.lex_state = 156}, + [2404] = {.lex_state = 156}, + [2405] = {.lex_state = 180}, + [2406] = {.lex_state = 156}, + [2407] = {.lex_state = 156}, + [2408] = {.lex_state = 137}, + [2409] = {.lex_state = 156}, + [2410] = {.lex_state = 156}, + [2411] = {.lex_state = 156}, + [2412] = {.lex_state = 180}, + [2413] = {.lex_state = 156}, + [2414] = {.lex_state = 156}, + [2415] = {.lex_state = 170}, + [2416] = {.lex_state = 156}, [2417] = {.lex_state = 180}, [2418] = {.lex_state = 180}, [2419] = {.lex_state = 180}, - [2420] = {.lex_state = 196}, - [2421] = {.lex_state = 196}, - [2422] = {.lex_state = 180}, - [2423] = {.lex_state = 196}, - [2424] = {.lex_state = 155}, - [2425] = {.lex_state = 155}, - [2426] = {.lex_state = 196}, - [2427] = {.lex_state = 154}, - [2428] = {.lex_state = 155}, - [2429] = {.lex_state = 180}, - [2430] = {.lex_state = 154}, - [2431] = {.lex_state = 196}, - [2432] = {.lex_state = 196}, - [2433] = {.lex_state = 155}, - [2434] = {.lex_state = 154}, - [2435] = {.lex_state = 196}, - [2436] = {.lex_state = 196}, - [2437] = {.lex_state = 196}, - [2438] = {.lex_state = 196}, - [2439] = {.lex_state = 196}, - [2440] = {.lex_state = 196}, - [2441] = {.lex_state = 196}, - [2442] = {.lex_state = 196}, - [2443] = {.lex_state = 196}, - [2444] = {.lex_state = 196}, - [2445] = {.lex_state = 196}, - [2446] = {.lex_state = 154}, - [2447] = {.lex_state = 154}, + [2420] = {.lex_state = 156}, + [2421] = {.lex_state = 156}, + [2422] = {.lex_state = 156}, + [2423] = {.lex_state = 156}, + [2424] = {.lex_state = 137}, + [2425] = {.lex_state = 180}, + [2426] = {.lex_state = 156}, + [2427] = {.lex_state = 156}, + [2428] = {.lex_state = 156}, + [2429] = {.lex_state = 156}, + [2430] = {.lex_state = 156}, + [2431] = {.lex_state = 163}, + [2432] = {.lex_state = 180}, + [2433] = {.lex_state = 156}, + [2434] = {.lex_state = 156}, + [2435] = {.lex_state = 156}, + [2436] = {.lex_state = 156}, + [2437] = {.lex_state = 156}, + [2438] = {.lex_state = 156}, + [2439] = {.lex_state = 181}, + [2440] = {.lex_state = 156}, + [2441] = {.lex_state = 156}, + [2442] = {.lex_state = 156}, + [2443] = {.lex_state = 156}, + [2444] = {.lex_state = 156}, + [2445] = {.lex_state = 156}, + [2446] = {.lex_state = 156}, + [2447] = {.lex_state = 137}, [2448] = {.lex_state = 155}, - [2449] = {.lex_state = 155}, - [2450] = {.lex_state = 154}, - [2451] = {.lex_state = 196}, - [2452] = {.lex_state = 154}, - [2453] = {.lex_state = 155}, - [2454] = {.lex_state = 154}, - [2455] = {.lex_state = 154}, - [2456] = {.lex_state = 154}, - [2457] = {.lex_state = 154}, - [2458] = {.lex_state = 196}, - [2459] = {.lex_state = 154}, - [2460] = {.lex_state = 154}, - [2461] = {.lex_state = 196}, - [2462] = {.lex_state = 154}, - [2463] = {.lex_state = 196}, + [2449] = {.lex_state = 156}, + [2450] = {.lex_state = 156}, + [2451] = {.lex_state = 156}, + [2452] = {.lex_state = 180}, + [2453] = {.lex_state = 156}, + [2454] = {.lex_state = 156}, + [2455] = {.lex_state = 163}, + [2456] = {.lex_state = 156}, + [2457] = {.lex_state = 156}, + [2458] = {.lex_state = 156}, + [2459] = {.lex_state = 157}, + [2460] = {.lex_state = 156}, + [2461] = {.lex_state = 182}, + [2462] = {.lex_state = 156}, + [2463] = {.lex_state = 156}, [2464] = {.lex_state = 168}, - [2465] = {.lex_state = 196}, + [2465] = {.lex_state = 156}, [2466] = {.lex_state = 168}, - [2467] = {.lex_state = 165}, + [2467] = {.lex_state = 168}, [2468] = {.lex_state = 168}, - [2469] = {.lex_state = 164}, + [2469] = {.lex_state = 168}, [2470] = {.lex_state = 168}, [2471] = {.lex_state = 168}, - [2472] = {.lex_state = 155}, + [2472] = {.lex_state = 168}, [2473] = {.lex_state = 168}, [2474] = {.lex_state = 168}, - [2475] = {.lex_state = 187}, + [2475] = {.lex_state = 165}, [2476] = {.lex_state = 168}, [2477] = {.lex_state = 168}, - [2478] = {.lex_state = 164}, + [2478] = {.lex_state = 168}, [2479] = {.lex_state = 168}, - [2480] = {.lex_state = 165}, - [2481] = {.lex_state = 187}, - [2482] = {.lex_state = 168}, - [2483] = {.lex_state = 168}, + [2480] = {.lex_state = 168}, + [2481] = {.lex_state = 168}, + [2482] = {.lex_state = 150}, + [2483] = {.lex_state = 165}, [2484] = {.lex_state = 168}, - [2485] = {.lex_state = 165}, - [2486] = {.lex_state = 168}, + [2485] = {.lex_state = 168}, + [2486] = {.lex_state = 156}, [2487] = {.lex_state = 168}, [2488] = {.lex_state = 168}, [2489] = {.lex_state = 168}, [2490] = {.lex_state = 168}, - [2491] = {.lex_state = 164}, - [2492] = {.lex_state = 155}, + [2491] = {.lex_state = 168}, + [2492] = {.lex_state = 168}, [2493] = {.lex_state = 168}, - [2494] = {.lex_state = 168}, + [2494] = {.lex_state = 142}, [2495] = {.lex_state = 168}, - [2496] = {.lex_state = 168}, + [2496] = {.lex_state = 150}, [2497] = {.lex_state = 168}, [2498] = {.lex_state = 168}, [2499] = {.lex_state = 168}, [2500] = {.lex_state = 168}, - [2501] = {.lex_state = 168}, + [2501] = {.lex_state = 165}, [2502] = {.lex_state = 168}, [2503] = {.lex_state = 168}, - [2504] = {.lex_state = 155}, - [2505] = {.lex_state = 187}, - [2506] = {.lex_state = 187}, - [2507] = {.lex_state = 187}, - [2508] = {.lex_state = 164}, + [2504] = {.lex_state = 156}, + [2505] = {.lex_state = 168}, + [2506] = {.lex_state = 168}, + [2507] = {.lex_state = 164}, + [2508] = {.lex_state = 168}, [2509] = {.lex_state = 168}, [2510] = {.lex_state = 168}, [2511] = {.lex_state = 168}, [2512] = {.lex_state = 168}, [2513] = {.lex_state = 168}, [2514] = {.lex_state = 168}, - [2515] = {.lex_state = 168}, - [2516] = {.lex_state = 168}, + [2515] = {.lex_state = 187}, + [2516] = {.lex_state = 187}, [2517] = {.lex_state = 168}, [2518] = {.lex_state = 168}, - [2519] = {.lex_state = 150}, - [2520] = {.lex_state = 187}, + [2519] = {.lex_state = 187}, + [2520] = {.lex_state = 164}, [2521] = {.lex_state = 168}, - [2522] = {.lex_state = 164}, - [2523] = {.lex_state = 164}, + [2522] = {.lex_state = 168}, + [2523] = {.lex_state = 168}, [2524] = {.lex_state = 168}, - [2525] = {.lex_state = 187}, - [2526] = {.lex_state = 168}, + [2525] = {.lex_state = 180}, + [2526] = {.lex_state = 158}, [2527] = {.lex_state = 168}, - [2528] = {.lex_state = 187}, - [2529] = {.lex_state = 187}, + [2528] = {.lex_state = 168}, + [2529] = {.lex_state = 168}, [2530] = {.lex_state = 168}, - [2531] = {.lex_state = 168}, - [2532] = {.lex_state = 168}, - [2533] = {.lex_state = 168}, + [2531] = {.lex_state = 187}, + [2532] = {.lex_state = 187}, + [2533] = {.lex_state = 187}, [2534] = {.lex_state = 168}, [2535] = {.lex_state = 168}, [2536] = {.lex_state = 168}, [2537] = {.lex_state = 168}, [2538] = {.lex_state = 168}, - [2539] = {.lex_state = 168}, - [2540] = {.lex_state = 168}, - [2541] = {.lex_state = 168}, - [2542] = {.lex_state = 168}, + [2539] = {.lex_state = 187}, + [2540] = {.lex_state = 187}, + [2541] = {.lex_state = 187}, + [2542] = {.lex_state = 195}, [2543] = {.lex_state = 168}, [2544] = {.lex_state = 168}, [2545] = {.lex_state = 168}, [2546] = {.lex_state = 168}, - [2547] = {.lex_state = 168}, + [2547] = {.lex_state = 164}, [2548] = {.lex_state = 168}, - [2549] = {.lex_state = 164}, + [2549] = {.lex_state = 168}, [2550] = {.lex_state = 168}, [2551] = {.lex_state = 168}, - [2552] = {.lex_state = 168}, - [2553] = {.lex_state = 168}, - [2554] = {.lex_state = 168}, + [2552] = {.lex_state = 164}, + [2553] = {.lex_state = 156}, + [2554] = {.lex_state = 156}, [2555] = {.lex_state = 168}, [2556] = {.lex_state = 168}, [2557] = {.lex_state = 168}, - [2558] = {.lex_state = 180}, + [2558] = {.lex_state = 168}, [2559] = {.lex_state = 168}, - [2560] = {.lex_state = 158}, - [2561] = {.lex_state = 150}, - [2562] = {.lex_state = 168}, + [2560] = {.lex_state = 168}, + [2561] = {.lex_state = 168}, + [2562] = {.lex_state = 195}, [2563] = {.lex_state = 168}, [2564] = {.lex_state = 168}, [2565] = {.lex_state = 168}, - [2566] = {.lex_state = 168}, - [2567] = {.lex_state = 155}, - [2568] = {.lex_state = 150}, - [2569] = {.lex_state = 142}, + [2566] = {.lex_state = 165}, + [2567] = {.lex_state = 164}, + [2568] = {.lex_state = 168}, + [2569] = {.lex_state = 168}, [2570] = {.lex_state = 168}, - [2571] = {.lex_state = 168}, + [2571] = {.lex_state = 150}, [2572] = {.lex_state = 168}, [2573] = {.lex_state = 168}, [2574] = {.lex_state = 168}, - [2575] = {.lex_state = 165}, + [2575] = {.lex_state = 168}, [2576] = {.lex_state = 168}, [2577] = {.lex_state = 168}, - [2578] = {.lex_state = 168}, + [2578] = {.lex_state = 164}, [2579] = {.lex_state = 164}, - [2580] = {.lex_state = 156}, - [2581] = {.lex_state = 155}, - [2582] = {.lex_state = 164}, - [2583] = {.lex_state = 161}, - [2584] = {.lex_state = 173}, - [2585] = {.lex_state = 165}, - [2586] = {.lex_state = 156}, - [2587] = {.lex_state = 156}, - [2588] = {.lex_state = 165}, + [2580] = {.lex_state = 168}, + [2581] = {.lex_state = 164}, + [2582] = {.lex_state = 155}, + [2583] = {.lex_state = 156}, + [2584] = {.lex_state = 164}, + [2585] = {.lex_state = 173}, + [2586] = {.lex_state = 155}, + [2587] = {.lex_state = 155}, + [2588] = {.lex_state = 161}, [2589] = {.lex_state = 165}, - [2590] = {.lex_state = 195}, + [2590] = {.lex_state = 165}, [2591] = {.lex_state = 165}, - [2592] = {.lex_state = 155}, + [2592] = {.lex_state = 156}, [2593] = {.lex_state = 165}, [2594] = {.lex_state = 165}, [2595] = {.lex_state = 165}, @@ -20494,8 +20512,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2612] = {.lex_state = 165}, [2613] = {.lex_state = 165}, [2614] = {.lex_state = 165}, - [2615] = {.lex_state = 155}, - [2616] = {.lex_state = 155}, + [2615] = {.lex_state = 156}, + [2616] = {.lex_state = 156}, [2617] = {.lex_state = 165}, [2618] = {.lex_state = 165}, [2619] = {.lex_state = 165}, @@ -20503,11 +20521,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2621] = {.lex_state = 165}, [2622] = {.lex_state = 165}, [2623] = {.lex_state = 165}, - [2624] = {.lex_state = 155}, + [2624] = {.lex_state = 156}, [2625] = {.lex_state = 165}, [2626] = {.lex_state = 165}, [2627] = {.lex_state = 165}, - [2628] = {.lex_state = 155}, + [2628] = {.lex_state = 156}, [2629] = {.lex_state = 165}, [2630] = {.lex_state = 165}, [2631] = {.lex_state = 165}, @@ -20522,13 +20540,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2640] = {.lex_state = 165}, [2641] = {.lex_state = 165}, [2642] = {.lex_state = 165}, - [2643] = {.lex_state = 184}, + [2643] = {.lex_state = 165}, [2644] = {.lex_state = 165}, [2645] = {.lex_state = 165}, - [2646] = {.lex_state = 165}, + [2646] = {.lex_state = 184}, [2647] = {.lex_state = 165}, [2648] = {.lex_state = 165}, - [2649] = {.lex_state = 195}, + [2649] = {.lex_state = 165}, [2650] = {.lex_state = 165}, [2651] = {.lex_state = 165}, [2652] = {.lex_state = 165}, @@ -20541,82 +20559,82 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2659] = {.lex_state = 165}, [2660] = {.lex_state = 165}, [2661] = {.lex_state = 165}, - [2662] = {.lex_state = 184}, - [2663] = {.lex_state = 155}, - [2664] = {.lex_state = 165}, + [2662] = {.lex_state = 156}, + [2663] = {.lex_state = 165}, + [2664] = {.lex_state = 184}, [2665] = {.lex_state = 165}, - [2666] = {.lex_state = 155}, - [2667] = {.lex_state = 161}, - [2668] = {.lex_state = 156}, - [2669] = {.lex_state = 155}, - [2670] = {.lex_state = 155}, + [2666] = {.lex_state = 161}, + [2667] = {.lex_state = 156}, + [2668] = {.lex_state = 155}, + [2669] = {.lex_state = 156}, + [2670] = {.lex_state = 156}, [2671] = {.lex_state = 184}, - [2672] = {.lex_state = 156}, - [2673] = {.lex_state = 156}, - [2674] = {.lex_state = 156}, + [2672] = {.lex_state = 155}, + [2673] = {.lex_state = 155}, + [2674] = {.lex_state = 155}, [2675] = {.lex_state = 155}, - [2676] = {.lex_state = 162}, + [2676] = {.lex_state = 155}, [2677] = {.lex_state = 156}, - [2678] = {.lex_state = 156}, - [2679] = {.lex_state = 155}, + [2678] = {.lex_state = 155}, + [2679] = {.lex_state = 162}, [2680] = {.lex_state = 156}, - [2681] = {.lex_state = 155}, - [2682] = {.lex_state = 155}, - [2683] = {.lex_state = 156}, - [2684] = {.lex_state = 155}, - [2685] = {.lex_state = 155}, - [2686] = {.lex_state = 180}, + [2681] = {.lex_state = 156}, + [2682] = {.lex_state = 156}, + [2683] = {.lex_state = 155}, + [2684] = {.lex_state = 156}, + [2685] = {.lex_state = 180}, + [2686] = {.lex_state = 156}, [2687] = {.lex_state = 165}, - [2688] = {.lex_state = 156}, - [2689] = {.lex_state = 155}, - [2690] = {.lex_state = 155}, - [2691] = {.lex_state = 155}, - [2692] = {.lex_state = 155}, - [2693] = {.lex_state = 155}, - [2694] = {.lex_state = 155}, - [2695] = {.lex_state = 155}, - [2696] = {.lex_state = 155}, - [2697] = {.lex_state = 155}, - [2698] = {.lex_state = 155}, - [2699] = {.lex_state = 155}, - [2700] = {.lex_state = 155}, - [2701] = {.lex_state = 155}, - [2702] = {.lex_state = 155}, - [2703] = {.lex_state = 184}, + [2688] = {.lex_state = 155}, + [2689] = {.lex_state = 156}, + [2690] = {.lex_state = 156}, + [2691] = {.lex_state = 156}, + [2692] = {.lex_state = 156}, + [2693] = {.lex_state = 156}, + [2694] = {.lex_state = 156}, + [2695] = {.lex_state = 156}, + [2696] = {.lex_state = 156}, + [2697] = {.lex_state = 156}, + [2698] = {.lex_state = 156}, + [2699] = {.lex_state = 156}, + [2700] = {.lex_state = 156}, + [2701] = {.lex_state = 156}, + [2702] = {.lex_state = 156}, + [2703] = {.lex_state = 156}, [2704] = {.lex_state = 184}, [2705] = {.lex_state = 184}, - [2706] = {.lex_state = 155}, - [2707] = {.lex_state = 163}, - [2708] = {.lex_state = 184}, - [2709] = {.lex_state = 155}, - [2710] = {.lex_state = 155}, + [2706] = {.lex_state = 184}, + [2707] = {.lex_state = 184}, + [2708] = {.lex_state = 156}, + [2709] = {.lex_state = 156}, + [2710] = {.lex_state = 156}, [2711] = {.lex_state = 184}, [2712] = {.lex_state = 184}, [2713] = {.lex_state = 184}, [2714] = {.lex_state = 184}, - [2715] = {.lex_state = 155}, + [2715] = {.lex_state = 156}, [2716] = {.lex_state = 184}, [2717] = {.lex_state = 184}, [2718] = {.lex_state = 184}, - [2719] = {.lex_state = 155}, + [2719] = {.lex_state = 195}, [2720] = {.lex_state = 184}, [2721] = {.lex_state = 184}, [2722] = {.lex_state = 184}, [2723] = {.lex_state = 184}, [2724] = {.lex_state = 184}, - [2725] = {.lex_state = 155}, - [2726] = {.lex_state = 155}, - [2727] = {.lex_state = 155}, - [2728] = {.lex_state = 155}, - [2729] = {.lex_state = 155}, - [2730] = {.lex_state = 155}, - [2731] = {.lex_state = 155}, - [2732] = {.lex_state = 155}, - [2733] = {.lex_state = 155}, - [2734] = {.lex_state = 155}, - [2735] = {.lex_state = 155}, - [2736] = {.lex_state = 184}, - [2737] = {.lex_state = 184}, + [2725] = {.lex_state = 184}, + [2726] = {.lex_state = 184}, + [2727] = {.lex_state = 156}, + [2728] = {.lex_state = 156}, + [2729] = {.lex_state = 163}, + [2730] = {.lex_state = 156}, + [2731] = {.lex_state = 156}, + [2732] = {.lex_state = 156}, + [2733] = {.lex_state = 156}, + [2734] = {.lex_state = 156}, + [2735] = {.lex_state = 156}, + [2736] = {.lex_state = 156}, + [2737] = {.lex_state = 156}, [2738] = {.lex_state = 184}, [2739] = {.lex_state = 184}, [2740] = {.lex_state = 184}, @@ -20625,17 +20643,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2743] = {.lex_state = 184}, [2744] = {.lex_state = 184}, [2745] = {.lex_state = 184}, - [2746] = {.lex_state = 184}, + [2746] = {.lex_state = 156}, [2747] = {.lex_state = 184}, [2748] = {.lex_state = 184}, [2749] = {.lex_state = 184}, - [2750] = {.lex_state = 184}, - [2751] = {.lex_state = 184}, + [2750] = {.lex_state = 156}, + [2751] = {.lex_state = 156}, [2752] = {.lex_state = 184}, [2753] = {.lex_state = 184}, - [2754] = {.lex_state = 155}, + [2754] = {.lex_state = 156}, [2755] = {.lex_state = 184}, - [2756] = {.lex_state = 155}, + [2756] = {.lex_state = 156}, [2757] = {.lex_state = 184}, [2758] = {.lex_state = 184}, [2759] = {.lex_state = 184}, @@ -20644,222 +20662,222 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2762] = {.lex_state = 184}, [2763] = {.lex_state = 184}, [2764] = {.lex_state = 184}, - [2765] = {.lex_state = 155}, - [2766] = {.lex_state = 168}, - [2767] = {.lex_state = 155}, - [2768] = {.lex_state = 155}, - [2769] = {.lex_state = 163}, - [2770] = {.lex_state = 155}, - [2771] = {.lex_state = 155}, - [2772] = {.lex_state = 164}, - [2773] = {.lex_state = 155}, - [2774] = {.lex_state = 163}, - [2775] = {.lex_state = 142}, - [2776] = {.lex_state = 181}, - [2777] = {.lex_state = 163}, + [2765] = {.lex_state = 184}, + [2766] = {.lex_state = 184}, + [2767] = {.lex_state = 163}, + [2768] = {.lex_state = 156}, + [2769] = {.lex_state = 156}, + [2770] = {.lex_state = 168}, + [2771] = {.lex_state = 156}, + [2772] = {.lex_state = 163}, + [2773] = {.lex_state = 156}, + [2774] = {.lex_state = 164}, + [2775] = {.lex_state = 163}, + [2776] = {.lex_state = 156}, + [2777] = {.lex_state = 142}, [2778] = {.lex_state = 163}, - [2779] = {.lex_state = 184}, - [2780] = {.lex_state = 155}, - [2781] = {.lex_state = 155}, - [2782] = {.lex_state = 155}, - [2783] = {.lex_state = 155}, - [2784] = {.lex_state = 155}, - [2785] = {.lex_state = 155}, - [2786] = {.lex_state = 155}, - [2787] = {.lex_state = 155}, - [2788] = {.lex_state = 155}, - [2789] = {.lex_state = 155}, - [2790] = {.lex_state = 155}, - [2791] = {.lex_state = 163}, - [2792] = {.lex_state = 155}, - [2793] = {.lex_state = 155}, - [2794] = {.lex_state = 181}, - [2795] = {.lex_state = 155}, - [2796] = {.lex_state = 181}, - [2797] = {.lex_state = 181}, - [2798] = {.lex_state = 155}, - [2799] = {.lex_state = 184}, - [2800] = {.lex_state = 155}, - [2801] = {.lex_state = 155}, - [2802] = {.lex_state = 184}, - [2803] = {.lex_state = 184}, + [2779] = {.lex_state = 181}, + [2780] = {.lex_state = 156}, + [2781] = {.lex_state = 184}, + [2782] = {.lex_state = 156}, + [2783] = {.lex_state = 156}, + [2784] = {.lex_state = 156}, + [2785] = {.lex_state = 156}, + [2786] = {.lex_state = 156}, + [2787] = {.lex_state = 156}, + [2788] = {.lex_state = 156}, + [2789] = {.lex_state = 195}, + [2790] = {.lex_state = 156}, + [2791] = {.lex_state = 156}, + [2792] = {.lex_state = 156}, + [2793] = {.lex_state = 156}, + [2794] = {.lex_state = 184}, + [2795] = {.lex_state = 156}, + [2796] = {.lex_state = 195}, + [2797] = {.lex_state = 156}, + [2798] = {.lex_state = 195}, + [2799] = {.lex_state = 195}, + [2800] = {.lex_state = 156}, + [2801] = {.lex_state = 156}, + [2802] = {.lex_state = 195}, + [2803] = {.lex_state = 195}, [2804] = {.lex_state = 184}, - [2805] = {.lex_state = 181}, + [2805] = {.lex_state = 184}, [2806] = {.lex_state = 184}, - [2807] = {.lex_state = 184}, - [2808] = {.lex_state = 181}, + [2807] = {.lex_state = 163}, + [2808] = {.lex_state = 184}, [2809] = {.lex_state = 184}, - [2810] = {.lex_state = 184}, - [2811] = {.lex_state = 155}, + [2810] = {.lex_state = 195}, + [2811] = {.lex_state = 156}, [2812] = {.lex_state = 184}, - [2813] = {.lex_state = 155}, - [2814] = {.lex_state = 155}, - [2815] = {.lex_state = 155}, + [2813] = {.lex_state = 184}, + [2814] = {.lex_state = 156}, + [2815] = {.lex_state = 156}, [2816] = {.lex_state = 184}, - [2817] = {.lex_state = 155}, - [2818] = {.lex_state = 155}, - [2819] = {.lex_state = 155}, - [2820] = {.lex_state = 155}, - [2821] = {.lex_state = 181}, - [2822] = {.lex_state = 181}, - [2823] = {.lex_state = 155}, - [2824] = {.lex_state = 181}, - [2825] = {.lex_state = 181}, - [2826] = {.lex_state = 181}, - [2827] = {.lex_state = 181}, - [2828] = {.lex_state = 165}, - [2829] = {.lex_state = 155}, - [2830] = {.lex_state = 155}, - [2831] = {.lex_state = 155}, - [2832] = {.lex_state = 155}, - [2833] = {.lex_state = 155}, - [2834] = {.lex_state = 155}, - [2835] = {.lex_state = 155}, - [2836] = {.lex_state = 184}, - [2837] = {.lex_state = 184}, - [2838] = {.lex_state = 155}, - [2839] = {.lex_state = 155}, - [2840] = {.lex_state = 155}, - [2841] = {.lex_state = 155}, - [2842] = {.lex_state = 155}, - [2843] = {.lex_state = 155}, - [2844] = {.lex_state = 155}, - [2845] = {.lex_state = 155}, - [2846] = {.lex_state = 155}, - [2847] = {.lex_state = 155}, - [2848] = {.lex_state = 155}, - [2849] = {.lex_state = 155}, - [2850] = {.lex_state = 155}, - [2851] = {.lex_state = 155}, - [2852] = {.lex_state = 184}, - [2853] = {.lex_state = 155}, - [2854] = {.lex_state = 155}, - [2855] = {.lex_state = 155}, - [2856] = {.lex_state = 155}, - [2857] = {.lex_state = 155}, - [2858] = {.lex_state = 155}, - [2859] = {.lex_state = 155}, - [2860] = {.lex_state = 155}, - [2861] = {.lex_state = 155}, - [2862] = {.lex_state = 184}, - [2863] = {.lex_state = 184}, + [2817] = {.lex_state = 156}, + [2818] = {.lex_state = 156}, + [2819] = {.lex_state = 156}, + [2820] = {.lex_state = 156}, + [2821] = {.lex_state = 184}, + [2822] = {.lex_state = 184}, + [2823] = {.lex_state = 195}, + [2824] = {.lex_state = 195}, + [2825] = {.lex_state = 156}, + [2826] = {.lex_state = 156}, + [2827] = {.lex_state = 195}, + [2828] = {.lex_state = 195}, + [2829] = {.lex_state = 195}, + [2830] = {.lex_state = 156}, + [2831] = {.lex_state = 181}, + [2832] = {.lex_state = 156}, + [2833] = {.lex_state = 156}, + [2834] = {.lex_state = 156}, + [2835] = {.lex_state = 181}, + [2836] = {.lex_state = 181}, + [2837] = {.lex_state = 195}, + [2838] = {.lex_state = 195}, + [2839] = {.lex_state = 184}, + [2840] = {.lex_state = 156}, + [2841] = {.lex_state = 156}, + [2842] = {.lex_state = 156}, + [2843] = {.lex_state = 156}, + [2844] = {.lex_state = 156}, + [2845] = {.lex_state = 181}, + [2846] = {.lex_state = 181}, + [2847] = {.lex_state = 181}, + [2848] = {.lex_state = 156}, + [2849] = {.lex_state = 156}, + [2850] = {.lex_state = 181}, + [2851] = {.lex_state = 156}, + [2852] = {.lex_state = 156}, + [2853] = {.lex_state = 181}, + [2854] = {.lex_state = 184}, + [2855] = {.lex_state = 181}, + [2856] = {.lex_state = 181}, + [2857] = {.lex_state = 181}, + [2858] = {.lex_state = 195}, + [2859] = {.lex_state = 165}, + [2860] = {.lex_state = 156}, + [2861] = {.lex_state = 156}, + [2862] = {.lex_state = 156}, + [2863] = {.lex_state = 156}, [2864] = {.lex_state = 184}, [2865] = {.lex_state = 184}, - [2866] = {.lex_state = 155}, - [2867] = {.lex_state = 155}, - [2868] = {.lex_state = 155}, - [2869] = {.lex_state = 155}, - [2870] = {.lex_state = 155}, - [2871] = {.lex_state = 155}, - [2872] = {.lex_state = 155}, - [2873] = {.lex_state = 155}, - [2874] = {.lex_state = 155}, - [2875] = {.lex_state = 155}, - [2876] = {.lex_state = 155}, - [2877] = {.lex_state = 184}, - [2878] = {.lex_state = 155}, - [2879] = {.lex_state = 155}, + [2866] = {.lex_state = 184}, + [2867] = {.lex_state = 156}, + [2868] = {.lex_state = 156}, + [2869] = {.lex_state = 184}, + [2870] = {.lex_state = 156}, + [2871] = {.lex_state = 156}, + [2872] = {.lex_state = 156}, + [2873] = {.lex_state = 156}, + [2874] = {.lex_state = 156}, + [2875] = {.lex_state = 156}, + [2876] = {.lex_state = 156}, + [2877] = {.lex_state = 156}, + [2878] = {.lex_state = 156}, + [2879] = {.lex_state = 156}, [2880] = {.lex_state = 184}, - [2881] = {.lex_state = 155}, - [2882] = {.lex_state = 155}, - [2883] = {.lex_state = 155}, - [2884] = {.lex_state = 155}, - [2885] = {.lex_state = 155}, - [2886] = {.lex_state = 155}, - [2887] = {.lex_state = 155}, - [2888] = {.lex_state = 155}, - [2889] = {.lex_state = 155}, - [2890] = {.lex_state = 155}, - [2891] = {.lex_state = 155}, - [2892] = {.lex_state = 155}, - [2893] = {.lex_state = 155}, - [2894] = {.lex_state = 155}, - [2895] = {.lex_state = 155}, - [2896] = {.lex_state = 155}, - [2897] = {.lex_state = 155}, - [2898] = {.lex_state = 155}, - [2899] = {.lex_state = 155}, - [2900] = {.lex_state = 155}, - [2901] = {.lex_state = 165}, - [2902] = {.lex_state = 155}, - [2903] = {.lex_state = 155}, - [2904] = {.lex_state = 155}, - [2905] = {.lex_state = 155}, - [2906] = {.lex_state = 155}, - [2907] = {.lex_state = 155}, - [2908] = {.lex_state = 155}, - [2909] = {.lex_state = 155}, - [2910] = {.lex_state = 155}, - [2911] = {.lex_state = 155}, - [2912] = {.lex_state = 155}, - [2913] = {.lex_state = 155}, - [2914] = {.lex_state = 155}, - [2915] = {.lex_state = 155}, - [2916] = {.lex_state = 155}, - [2917] = {.lex_state = 155}, - [2918] = {.lex_state = 155}, - [2919] = {.lex_state = 155}, - [2920] = {.lex_state = 155}, - [2921] = {.lex_state = 155}, - [2922] = {.lex_state = 155}, - [2923] = {.lex_state = 155}, - [2924] = {.lex_state = 155}, - [2925] = {.lex_state = 155}, - [2926] = {.lex_state = 165}, - [2927] = {.lex_state = 165}, - [2928] = {.lex_state = 165}, - [2929] = {.lex_state = 155}, - [2930] = {.lex_state = 195}, - [2931] = {.lex_state = 176}, - [2932] = {.lex_state = 165}, - [2933] = {.lex_state = 150}, - [2934] = {.lex_state = 165}, - [2935] = {.lex_state = 165}, - [2936] = {.lex_state = 165}, - [2937] = {.lex_state = 195}, - [2938] = {.lex_state = 150}, + [2881] = {.lex_state = 156}, + [2882] = {.lex_state = 156}, + [2883] = {.lex_state = 156}, + [2884] = {.lex_state = 184}, + [2885] = {.lex_state = 156}, + [2886] = {.lex_state = 156}, + [2887] = {.lex_state = 156}, + [2888] = {.lex_state = 156}, + [2889] = {.lex_state = 184}, + [2890] = {.lex_state = 156}, + [2891] = {.lex_state = 156}, + [2892] = {.lex_state = 156}, + [2893] = {.lex_state = 156}, + [2894] = {.lex_state = 156}, + [2895] = {.lex_state = 156}, + [2896] = {.lex_state = 156}, + [2897] = {.lex_state = 156}, + [2898] = {.lex_state = 156}, + [2899] = {.lex_state = 156}, + [2900] = {.lex_state = 156}, + [2901] = {.lex_state = 156}, + [2902] = {.lex_state = 156}, + [2903] = {.lex_state = 156}, + [2904] = {.lex_state = 156}, + [2905] = {.lex_state = 156}, + [2906] = {.lex_state = 156}, + [2907] = {.lex_state = 156}, + [2908] = {.lex_state = 156}, + [2909] = {.lex_state = 156}, + [2910] = {.lex_state = 156}, + [2911] = {.lex_state = 156}, + [2912] = {.lex_state = 156}, + [2913] = {.lex_state = 156}, + [2914] = {.lex_state = 156}, + [2915] = {.lex_state = 156}, + [2916] = {.lex_state = 156}, + [2917] = {.lex_state = 156}, + [2918] = {.lex_state = 156}, + [2919] = {.lex_state = 156}, + [2920] = {.lex_state = 195}, + [2921] = {.lex_state = 156}, + [2922] = {.lex_state = 156}, + [2923] = {.lex_state = 156}, + [2924] = {.lex_state = 156}, + [2925] = {.lex_state = 156}, + [2926] = {.lex_state = 156}, + [2927] = {.lex_state = 156}, + [2928] = {.lex_state = 156}, + [2929] = {.lex_state = 165}, + [2930] = {.lex_state = 156}, + [2931] = {.lex_state = 156}, + [2932] = {.lex_state = 156}, + [2933] = {.lex_state = 156}, + [2934] = {.lex_state = 156}, + [2935] = {.lex_state = 156}, + [2936] = {.lex_state = 156}, + [2937] = {.lex_state = 156}, + [2938] = {.lex_state = 156}, [2939] = {.lex_state = 195}, [2940] = {.lex_state = 195}, - [2941] = {.lex_state = 195}, - [2942] = {.lex_state = 195}, - [2943] = {.lex_state = 165}, - [2944] = {.lex_state = 195}, + [2941] = {.lex_state = 156}, + [2942] = {.lex_state = 156}, + [2943] = {.lex_state = 156}, + [2944] = {.lex_state = 156}, [2945] = {.lex_state = 195}, - [2946] = {.lex_state = 195}, - [2947] = {.lex_state = 195}, + [2946] = {.lex_state = 165}, + [2947] = {.lex_state = 156}, [2948] = {.lex_state = 165}, - [2949] = {.lex_state = 165}, - [2950] = {.lex_state = 195}, - [2951] = {.lex_state = 195}, - [2952] = {.lex_state = 165}, + [2949] = {.lex_state = 176}, + [2950] = {.lex_state = 150}, + [2951] = {.lex_state = 165}, + [2952] = {.lex_state = 150}, [2953] = {.lex_state = 165}, - [2954] = {.lex_state = 150}, - [2955] = {.lex_state = 195}, - [2956] = {.lex_state = 195}, - [2957] = {.lex_state = 187}, - [2958] = {.lex_state = 195}, + [2954] = {.lex_state = 165}, + [2955] = {.lex_state = 165}, + [2956] = {.lex_state = 150}, + [2957] = {.lex_state = 165}, + [2958] = {.lex_state = 165}, [2959] = {.lex_state = 165}, [2960] = {.lex_state = 165}, - [2961] = {.lex_state = 195}, - [2962] = {.lex_state = 165}, + [2961] = {.lex_state = 165}, + [2962] = {.lex_state = 187}, [2963] = {.lex_state = 165}, [2964] = {.lex_state = 165}, [2965] = {.lex_state = 165}, - [2966] = {.lex_state = 195}, + [2966] = {.lex_state = 165}, [2967] = {.lex_state = 165}, [2968] = {.lex_state = 165}, [2969] = {.lex_state = 165}, [2970] = {.lex_state = 165}, - [2971] = {.lex_state = 177}, - [2972] = {.lex_state = 195}, - [2973] = {.lex_state = 195}, - [2974] = {.lex_state = 195}, + [2971] = {.lex_state = 165}, + [2972] = {.lex_state = 165}, + [2973] = {.lex_state = 150}, + [2974] = {.lex_state = 177}, [2975] = {.lex_state = 165}, [2976] = {.lex_state = 165}, - [2977] = {.lex_state = 150}, - [2978] = {.lex_state = 165}, - [2979] = {.lex_state = 176}, - [2980] = {.lex_state = 155}, + [2977] = {.lex_state = 156}, + [2978] = {.lex_state = 176}, + [2979] = {.lex_state = 165}, + [2980] = {.lex_state = 165}, [2981] = {.lex_state = 165}, [2982] = {.lex_state = 165}, [2983] = {.lex_state = 165}, @@ -20867,28 +20885,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2985] = {.lex_state = 165}, [2986] = {.lex_state = 165}, [2987] = {.lex_state = 165}, - [2988] = {.lex_state = 161}, + [2988] = {.lex_state = 165}, [2989] = {.lex_state = 165}, [2990] = {.lex_state = 165}, - [2991] = {.lex_state = 156}, - [2992] = {.lex_state = 155}, + [2991] = {.lex_state = 165}, + [2992] = {.lex_state = 165}, [2993] = {.lex_state = 165}, - [2994] = {.lex_state = 155}, - [2995] = {.lex_state = 155}, - [2996] = {.lex_state = 155}, - [2997] = {.lex_state = 155}, + [2994] = {.lex_state = 165}, + [2995] = {.lex_state = 165}, + [2996] = {.lex_state = 165}, + [2997] = {.lex_state = 165}, [2998] = {.lex_state = 165}, - [2999] = {.lex_state = 165}, + [2999] = {.lex_state = 161}, [3000] = {.lex_state = 165}, - [3001] = {.lex_state = 165}, - [3002] = {.lex_state = 165}, - [3003] = {.lex_state = 152}, - [3004] = {.lex_state = 165}, - [3005] = {.lex_state = 155}, + [3001] = {.lex_state = 155}, + [3002] = {.lex_state = 156}, + [3003] = {.lex_state = 165}, + [3004] = {.lex_state = 156}, + [3005] = {.lex_state = 156}, [3006] = {.lex_state = 165}, - [3007] = {.lex_state = 165}, + [3007] = {.lex_state = 156}, [3008] = {.lex_state = 165}, - [3009] = {.lex_state = 165}, + [3009] = {.lex_state = 156}, [3010] = {.lex_state = 165}, [3011] = {.lex_state = 165}, [3012] = {.lex_state = 165}, @@ -20897,40 +20915,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3015] = {.lex_state = 165}, [3016] = {.lex_state = 165}, [3017] = {.lex_state = 152}, - [3018] = {.lex_state = 155}, + [3018] = {.lex_state = 152}, [3019] = {.lex_state = 165}, [3020] = {.lex_state = 165}, [3021] = {.lex_state = 165}, [3022] = {.lex_state = 165}, - [3023] = {.lex_state = 155}, + [3023] = {.lex_state = 165}, [3024] = {.lex_state = 165}, [3025] = {.lex_state = 165}, - [3026] = {.lex_state = 161}, + [3026] = {.lex_state = 165}, [3027] = {.lex_state = 165}, [3028] = {.lex_state = 165}, [3029] = {.lex_state = 165}, [3030] = {.lex_state = 165}, [3031] = {.lex_state = 165}, [3032] = {.lex_state = 165}, - [3033] = {.lex_state = 165}, + [3033] = {.lex_state = 156}, [3034] = {.lex_state = 165}, [3035] = {.lex_state = 165}, [3036] = {.lex_state = 165}, - [3037] = {.lex_state = 165}, + [3037] = {.lex_state = 156}, [3038] = {.lex_state = 165}, [3039] = {.lex_state = 165}, - [3040] = {.lex_state = 155}, - [3041] = {.lex_state = 155}, + [3040] = {.lex_state = 165}, + [3041] = {.lex_state = 156}, [3042] = {.lex_state = 165}, - [3043] = {.lex_state = 155}, - [3044] = {.lex_state = 155}, - [3045] = {.lex_state = 155}, - [3046] = {.lex_state = 165}, - [3047] = {.lex_state = 155}, - [3048] = {.lex_state = 155}, - [3049] = {.lex_state = 155}, - [3050] = {.lex_state = 155}, - [3051] = {.lex_state = 155}, + [3043] = {.lex_state = 156}, + [3044] = {.lex_state = 156}, + [3045] = {.lex_state = 156}, + [3046] = {.lex_state = 156}, + [3047] = {.lex_state = 156}, + [3048] = {.lex_state = 156}, + [3049] = {.lex_state = 156}, + [3050] = {.lex_state = 156}, + [3051] = {.lex_state = 156}, [3052] = {.lex_state = 165}, [3053] = {.lex_state = 165}, [3054] = {.lex_state = 165}, @@ -20938,7 +20956,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3056] = {.lex_state = 165}, [3057] = {.lex_state = 168}, [3058] = {.lex_state = 168}, - [3059] = {.lex_state = 155}, + [3059] = {.lex_state = 165}, [3060] = {.lex_state = 168}, [3061] = {.lex_state = 165}, [3062] = {.lex_state = 168}, @@ -20956,13 +20974,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3074] = {.lex_state = 152}, [3075] = {.lex_state = 168}, [3076] = {.lex_state = 168}, - [3077] = {.lex_state = 165}, - [3078] = {.lex_state = 155}, - [3079] = {.lex_state = 155}, - [3080] = {.lex_state = 165}, + [3077] = {.lex_state = 156}, + [3078] = {.lex_state = 156}, + [3079] = {.lex_state = 161}, + [3080] = {.lex_state = 156}, [3081] = {.lex_state = 168}, - [3082] = {.lex_state = 155}, - [3083] = {.lex_state = 155}, + [3082] = {.lex_state = 156}, + [3083] = {.lex_state = 165}, [3084] = {.lex_state = 168}, [3085] = {.lex_state = 168}, [3086] = {.lex_state = 168}, @@ -20970,71 +20988,71 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3088] = {.lex_state = 168}, [3089] = {.lex_state = 168}, [3090] = {.lex_state = 168}, - [3091] = {.lex_state = 165}, + [3091] = {.lex_state = 156}, [3092] = {.lex_state = 165}, - [3093] = {.lex_state = 165}, - [3094] = {.lex_state = 155}, - [3095] = {.lex_state = 155}, - [3096] = {.lex_state = 181}, + [3093] = {.lex_state = 156}, + [3094] = {.lex_state = 156}, + [3095] = {.lex_state = 181}, + [3096] = {.lex_state = 168}, [3097] = {.lex_state = 168}, - [3098] = {.lex_state = 155}, - [3099] = {.lex_state = 155}, - [3100] = {.lex_state = 155}, - [3101] = {.lex_state = 155}, - [3102] = {.lex_state = 155}, - [3103] = {.lex_state = 155}, - [3104] = {.lex_state = 155}, - [3105] = {.lex_state = 155}, - [3106] = {.lex_state = 155}, - [3107] = {.lex_state = 155}, - [3108] = {.lex_state = 155}, - [3109] = {.lex_state = 155}, - [3110] = {.lex_state = 155}, - [3111] = {.lex_state = 155}, - [3112] = {.lex_state = 155}, - [3113] = {.lex_state = 155}, - [3114] = {.lex_state = 181}, - [3115] = {.lex_state = 155}, - [3116] = {.lex_state = 155}, - [3117] = {.lex_state = 142}, - [3118] = {.lex_state = 155}, - [3119] = {.lex_state = 155}, - [3120] = {.lex_state = 155}, - [3121] = {.lex_state = 155}, - [3122] = {.lex_state = 155}, - [3123] = {.lex_state = 155}, - [3124] = {.lex_state = 155}, - [3125] = {.lex_state = 155}, - [3126] = {.lex_state = 155}, - [3127] = {.lex_state = 155}, - [3128] = {.lex_state = 155}, - [3129] = {.lex_state = 155}, - [3130] = {.lex_state = 155}, - [3131] = {.lex_state = 155}, - [3132] = {.lex_state = 155}, - [3133] = {.lex_state = 155}, - [3134] = {.lex_state = 155}, - [3135] = {.lex_state = 155}, - [3136] = {.lex_state = 142}, - [3137] = {.lex_state = 168}, - [3138] = {.lex_state = 168}, - [3139] = {.lex_state = 168}, - [3140] = {.lex_state = 168}, - [3141] = {.lex_state = 168}, - [3142] = {.lex_state = 168}, - [3143] = {.lex_state = 168}, - [3144] = {.lex_state = 155}, - [3145] = {.lex_state = 155}, - [3146] = {.lex_state = 155}, - [3147] = {.lex_state = 181}, - [3148] = {.lex_state = 181}, - [3149] = {.lex_state = 181}, - [3150] = {.lex_state = 191}, - [3151] = {.lex_state = 191}, + [3098] = {.lex_state = 168}, + [3099] = {.lex_state = 168}, + [3100] = {.lex_state = 181}, + [3101] = {.lex_state = 168}, + [3102] = {.lex_state = 168}, + [3103] = {.lex_state = 168}, + [3104] = {.lex_state = 191}, + [3105] = {.lex_state = 142}, + [3106] = {.lex_state = 191}, + [3107] = {.lex_state = 156}, + [3108] = {.lex_state = 168}, + [3109] = {.lex_state = 156}, + [3110] = {.lex_state = 156}, + [3111] = {.lex_state = 156}, + [3112] = {.lex_state = 156}, + [3113] = {.lex_state = 156}, + [3114] = {.lex_state = 156}, + [3115] = {.lex_state = 156}, + [3116] = {.lex_state = 156}, + [3117] = {.lex_state = 156}, + [3118] = {.lex_state = 156}, + [3119] = {.lex_state = 191}, + [3120] = {.lex_state = 156}, + [3121] = {.lex_state = 156}, + [3122] = {.lex_state = 156}, + [3123] = {.lex_state = 156}, + [3124] = {.lex_state = 156}, + [3125] = {.lex_state = 156}, + [3126] = {.lex_state = 156}, + [3127] = {.lex_state = 156}, + [3128] = {.lex_state = 156}, + [3129] = {.lex_state = 156}, + [3130] = {.lex_state = 156}, + [3131] = {.lex_state = 156}, + [3132] = {.lex_state = 156}, + [3133] = {.lex_state = 191}, + [3134] = {.lex_state = 156}, + [3135] = {.lex_state = 156}, + [3136] = {.lex_state = 156}, + [3137] = {.lex_state = 156}, + [3138] = {.lex_state = 156}, + [3139] = {.lex_state = 156}, + [3140] = {.lex_state = 156}, + [3141] = {.lex_state = 156}, + [3142] = {.lex_state = 156}, + [3143] = {.lex_state = 156}, + [3144] = {.lex_state = 156}, + [3145] = {.lex_state = 156}, + [3146] = {.lex_state = 156}, + [3147] = {.lex_state = 142}, + [3148] = {.lex_state = 156}, + [3149] = {.lex_state = 156}, + [3150] = {.lex_state = 156}, + [3151] = {.lex_state = 181}, [3152] = {.lex_state = 181}, [3153] = {.lex_state = 181}, [3154] = {.lex_state = 181}, - [3155] = {.lex_state = 191}, + [3155] = {.lex_state = 181}, [3156] = {.lex_state = 181}, [3157] = {.lex_state = 181}, [3158] = {.lex_state = 181}, @@ -21073,7 +21091,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3191] = {.lex_state = 181}, [3192] = {.lex_state = 181}, [3193] = {.lex_state = 181}, - [3194] = {.lex_state = 191}, + [3194] = {.lex_state = 181}, [3195] = {.lex_state = 181}, [3196] = {.lex_state = 181}, [3197] = {.lex_state = 181}, @@ -21095,38 +21113,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3213] = {.lex_state = 181}, [3214] = {.lex_state = 181}, [3215] = {.lex_state = 142}, - [3216] = {.lex_state = 142}, - [3217] = {.lex_state = 180}, - [3218] = {.lex_state = 142}, - [3219] = {.lex_state = 142}, - [3220] = {.lex_state = 142}, + [3216] = {.lex_state = 180}, + [3217] = {.lex_state = 142}, + [3218] = {.lex_state = 197}, + [3219] = {.lex_state = 181}, + [3220] = {.lex_state = 180}, [3221] = {.lex_state = 152}, - [3222] = {.lex_state = 180}, + [3222] = {.lex_state = 142}, [3223] = {.lex_state = 142}, [3224] = {.lex_state = 142}, [3225] = {.lex_state = 152}, - [3226] = {.lex_state = 180}, + [3226] = {.lex_state = 142}, [3227] = {.lex_state = 142}, [3228] = {.lex_state = 142}, [3229] = {.lex_state = 142}, - [3230] = {.lex_state = 142}, - [3231] = {.lex_state = 152}, - [3232] = {.lex_state = 181}, - [3233] = {.lex_state = 152}, + [3230] = {.lex_state = 152}, + [3231] = {.lex_state = 142}, + [3232] = {.lex_state = 142}, + [3233] = {.lex_state = 142}, [3234] = {.lex_state = 142}, - [3235] = {.lex_state = 142}, - [3236] = {.lex_state = 142}, + [3235] = {.lex_state = 195}, + [3236] = {.lex_state = 180}, [3237] = {.lex_state = 142}, [3238] = {.lex_state = 142}, [3239] = {.lex_state = 142}, - [3240] = {.lex_state = 142}, - [3241] = {.lex_state = 142}, + [3240] = {.lex_state = 197}, + [3241] = {.lex_state = 152}, [3242] = {.lex_state = 142}, - [3243] = {.lex_state = 197}, - [3244] = {.lex_state = 180}, - [3245] = {.lex_state = 180}, + [3243] = {.lex_state = 142}, + [3244] = {.lex_state = 142}, + [3245] = {.lex_state = 142}, [3246] = {.lex_state = 180}, - [3247] = {.lex_state = 197}, + [3247] = {.lex_state = 180}, [3248] = {.lex_state = 180}, [3249] = {.lex_state = 180}, [3250] = {.lex_state = 180}, @@ -21140,9 +21158,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3258] = {.lex_state = 180}, [3259] = {.lex_state = 180}, [3260] = {.lex_state = 180}, - [3261] = {.lex_state = 195}, + [3261] = {.lex_state = 180}, [3262] = {.lex_state = 180}, - [3263] = {.lex_state = 180}, + [3263] = {.lex_state = 197}, [3264] = {.lex_state = 180}, [3265] = {.lex_state = 180}, [3266] = {.lex_state = 180}, @@ -21150,17 +21168,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3268] = {.lex_state = 180}, [3269] = {.lex_state = 180}, [3270] = {.lex_state = 180}, - [3271] = {.lex_state = 184}, - [3272] = {.lex_state = 180}, - [3273] = {.lex_state = 180}, - [3274] = {.lex_state = 197}, - [3275] = {.lex_state = 184}, - [3276] = {.lex_state = 184}, - [3277] = {.lex_state = 184}, - [3278] = {.lex_state = 184}, + [3271] = {.lex_state = 180}, + [3272] = {.lex_state = 197}, + [3273] = {.lex_state = 184}, + [3274] = {.lex_state = 184}, + [3275] = {.lex_state = 197}, + [3276] = {.lex_state = 197}, + [3277] = {.lex_state = 195}, + [3278] = {.lex_state = 180}, [3279] = {.lex_state = 197}, - [3280] = {.lex_state = 184}, - [3281] = {.lex_state = 181}, + [3280] = {.lex_state = 197}, + [3281] = {.lex_state = 197}, [3282] = {.lex_state = 197}, [3283] = {.lex_state = 197}, [3284] = {.lex_state = 197}, @@ -21168,431 +21186,431 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3286] = {.lex_state = 197}, [3287] = {.lex_state = 197}, [3288] = {.lex_state = 197}, - [3289] = {.lex_state = 195}, - [3290] = {.lex_state = 181}, + [3289] = {.lex_state = 197}, + [3290] = {.lex_state = 197}, [3291] = {.lex_state = 197}, - [3292] = {.lex_state = 197}, + [3292] = {.lex_state = 180}, [3293] = {.lex_state = 197}, [3294] = {.lex_state = 197}, [3295] = {.lex_state = 184}, - [3296] = {.lex_state = 197}, + [3296] = {.lex_state = 184}, [3297] = {.lex_state = 197}, - [3298] = {.lex_state = 184}, - [3299] = {.lex_state = 197}, + [3298] = {.lex_state = 197}, + [3299] = {.lex_state = 184}, [3300] = {.lex_state = 197}, [3301] = {.lex_state = 197}, [3302] = {.lex_state = 197}, [3303] = {.lex_state = 184}, [3304] = {.lex_state = 197}, [3305] = {.lex_state = 197}, - [3306] = {.lex_state = 197}, - [3307] = {.lex_state = 197}, + [3306] = {.lex_state = 184}, + [3307] = {.lex_state = 184}, [3308] = {.lex_state = 197}, - [3309] = {.lex_state = 197}, + [3309] = {.lex_state = 184}, [3310] = {.lex_state = 184}, - [3311] = {.lex_state = 197}, - [3312] = {.lex_state = 197}, - [3313] = {.lex_state = 195}, - [3314] = {.lex_state = 181}, - [3315] = {.lex_state = 142}, - [3316] = {.lex_state = 181}, - [3317] = {.lex_state = 181}, - [3318] = {.lex_state = 181}, - [3319] = {.lex_state = 197}, - [3320] = {.lex_state = 195}, - [3321] = {.lex_state = 184}, - [3322] = {.lex_state = 197}, - [3323] = {.lex_state = 180}, - [3324] = {.lex_state = 195}, - [3325] = {.lex_state = 184}, - [3326] = {.lex_state = 184}, - [3327] = {.lex_state = 195}, + [3311] = {.lex_state = 181}, + [3312] = {.lex_state = 181}, + [3313] = {.lex_state = 197}, + [3314] = {.lex_state = 197}, + [3315] = {.lex_state = 197}, + [3316] = {.lex_state = 195}, + [3317] = {.lex_state = 195}, + [3318] = {.lex_state = 195}, + [3319] = {.lex_state = 195}, + [3320] = {.lex_state = 181}, + [3321] = {.lex_state = 142}, + [3322] = {.lex_state = 195}, + [3323] = {.lex_state = 181}, + [3324] = {.lex_state = 197}, + [3325] = {.lex_state = 195}, + [3326] = {.lex_state = 195}, + [3327] = {.lex_state = 181}, [3328] = {.lex_state = 195}, - [3329] = {.lex_state = 184}, + [3329] = {.lex_state = 181}, [3330] = {.lex_state = 195}, [3331] = {.lex_state = 184}, [3332] = {.lex_state = 197}, [3333] = {.lex_state = 184}, - [3334] = {.lex_state = 195}, + [3334] = {.lex_state = 184}, [3335] = {.lex_state = 195}, - [3336] = {.lex_state = 184}, - [3337] = {.lex_state = 195}, + [3336] = {.lex_state = 197}, + [3337] = {.lex_state = 180}, [3338] = {.lex_state = 195}, [3339] = {.lex_state = 195}, [3340] = {.lex_state = 195}, [3341] = {.lex_state = 195}, [3342] = {.lex_state = 195}, - [3343] = {.lex_state = 184}, + [3343] = {.lex_state = 195}, [3344] = {.lex_state = 184}, - [3345] = {.lex_state = 195}, - [3346] = {.lex_state = 184}, - [3347] = {.lex_state = 195}, - [3348] = {.lex_state = 195}, + [3345] = {.lex_state = 179}, + [3346] = {.lex_state = 195}, + [3347] = {.lex_state = 187}, + [3348] = {.lex_state = 200}, [3349] = {.lex_state = 184}, - [3350] = {.lex_state = 187}, - [3351] = {.lex_state = 195}, - [3352] = {.lex_state = 184}, + [3350] = {.lex_state = 195}, + [3351] = {.lex_state = 187}, + [3352] = {.lex_state = 195}, [3353] = {.lex_state = 184}, - [3354] = {.lex_state = 184}, - [3355] = {.lex_state = 195}, - [3356] = {.lex_state = 195}, - [3357] = {.lex_state = 184}, + [3354] = {.lex_state = 197}, + [3355] = {.lex_state = 184}, + [3356] = {.lex_state = 179}, + [3357] = {.lex_state = 195}, [3358] = {.lex_state = 195}, - [3359] = {.lex_state = 195}, - [3360] = {.lex_state = 197}, - [3361] = {.lex_state = 195}, - [3362] = {.lex_state = 187}, + [3359] = {.lex_state = 184}, + [3360] = {.lex_state = 184}, + [3361] = {.lex_state = 184}, + [3362] = {.lex_state = 184}, [3363] = {.lex_state = 184}, - [3364] = {.lex_state = 195}, + [3364] = {.lex_state = 179}, [3365] = {.lex_state = 195}, - [3366] = {.lex_state = 184}, - [3367] = {.lex_state = 184}, - [3368] = {.lex_state = 195}, - [3369] = {.lex_state = 195}, - [3370] = {.lex_state = 195}, - [3371] = {.lex_state = 195}, - [3372] = {.lex_state = 186}, - [3373] = {.lex_state = 184}, - [3374] = {.lex_state = 195}, + [3366] = {.lex_state = 195}, + [3367] = {.lex_state = 195}, + [3368] = {.lex_state = 184}, + [3369] = {.lex_state = 179}, + [3370] = {.lex_state = 179}, + [3371] = {.lex_state = 184}, + [3372] = {.lex_state = 195}, + [3373] = {.lex_state = 195}, + [3374] = {.lex_state = 184}, [3375] = {.lex_state = 195}, - [3376] = {.lex_state = 197}, - [3377] = {.lex_state = 195}, - [3378] = {.lex_state = 195}, + [3376] = {.lex_state = 184}, + [3377] = {.lex_state = 179}, + [3378] = {.lex_state = 184}, [3379] = {.lex_state = 195}, - [3380] = {.lex_state = 195}, - [3381] = {.lex_state = 184}, - [3382] = {.lex_state = 184}, + [3380] = {.lex_state = 184}, + [3381] = {.lex_state = 179}, + [3382] = {.lex_state = 195}, [3383] = {.lex_state = 195}, - [3384] = {.lex_state = 184}, + [3384] = {.lex_state = 199}, [3385] = {.lex_state = 195}, [3386] = {.lex_state = 195}, - [3387] = {.lex_state = 200}, + [3387] = {.lex_state = 195}, [3388] = {.lex_state = 195}, - [3389] = {.lex_state = 181}, + [3389] = {.lex_state = 197}, [3390] = {.lex_state = 195}, [3391] = {.lex_state = 195}, - [3392] = {.lex_state = 179}, - [3393] = {.lex_state = 195}, + [3392] = {.lex_state = 197}, + [3393] = {.lex_state = 197}, [3394] = {.lex_state = 195}, - [3395] = {.lex_state = 195}, - [3396] = {.lex_state = 195}, - [3397] = {.lex_state = 179}, - [3398] = {.lex_state = 198}, - [3399] = {.lex_state = 198}, + [3395] = {.lex_state = 197}, + [3396] = {.lex_state = 197}, + [3397] = {.lex_state = 195}, + [3398] = {.lex_state = 197}, + [3399] = {.lex_state = 195}, [3400] = {.lex_state = 195}, - [3401] = {.lex_state = 184}, - [3402] = {.lex_state = 179}, - [3403] = {.lex_state = 179}, - [3404] = {.lex_state = 195}, - [3405] = {.lex_state = 195}, - [3406] = {.lex_state = 195}, - [3407] = {.lex_state = 184}, - [3408] = {.lex_state = 197}, - [3409] = {.lex_state = 195}, - [3410] = {.lex_state = 184}, - [3411] = {.lex_state = 195}, - [3412] = {.lex_state = 179}, - [3413] = {.lex_state = 179}, - [3414] = {.lex_state = 195}, - [3415] = {.lex_state = 195}, - [3416] = {.lex_state = 195}, - [3417] = {.lex_state = 179}, + [3401] = {.lex_state = 197}, + [3402] = {.lex_state = 195}, + [3403] = {.lex_state = 195}, + [3404] = {.lex_state = 184}, + [3405] = {.lex_state = 197}, + [3406] = {.lex_state = 197}, + [3407] = {.lex_state = 197}, + [3408] = {.lex_state = 184}, + [3409] = {.lex_state = 197}, + [3410] = {.lex_state = 197}, + [3411] = {.lex_state = 197}, + [3412] = {.lex_state = 197}, + [3413] = {.lex_state = 197}, + [3414] = {.lex_state = 197}, + [3415] = {.lex_state = 197}, + [3416] = {.lex_state = 197}, + [3417] = {.lex_state = 197}, [3418] = {.lex_state = 197}, - [3419] = {.lex_state = 195}, - [3420] = {.lex_state = 195}, - [3421] = {.lex_state = 195}, - [3422] = {.lex_state = 184}, - [3423] = {.lex_state = 186}, - [3424] = {.lex_state = 184}, - [3425] = {.lex_state = 181}, - [3426] = {.lex_state = 195}, - [3427] = {.lex_state = 181}, - [3428] = {.lex_state = 197}, + [3419] = {.lex_state = 197}, + [3420] = {.lex_state = 184}, + [3421] = {.lex_state = 186}, + [3422] = {.lex_state = 199}, + [3423] = {.lex_state = 184}, + [3424] = {.lex_state = 198}, + [3425] = {.lex_state = 195}, + [3426] = {.lex_state = 197}, + [3427] = {.lex_state = 197}, + [3428] = {.lex_state = 195}, [3429] = {.lex_state = 184}, [3430] = {.lex_state = 197}, - [3431] = {.lex_state = 197}, - [3432] = {.lex_state = 199}, - [3433] = {.lex_state = 197}, - [3434] = {.lex_state = 184}, - [3435] = {.lex_state = 181}, - [3436] = {.lex_state = 197}, - [3437] = {.lex_state = 197}, - [3438] = {.lex_state = 197}, + [3431] = {.lex_state = 184}, + [3432] = {.lex_state = 198}, + [3433] = {.lex_state = 181}, + [3434] = {.lex_state = 199}, + [3435] = {.lex_state = 195}, + [3436] = {.lex_state = 195}, + [3437] = {.lex_state = 199}, + [3438] = {.lex_state = 195}, [3439] = {.lex_state = 197}, - [3440] = {.lex_state = 197}, - [3441] = {.lex_state = 184}, - [3442] = {.lex_state = 184}, - [3443] = {.lex_state = 184}, - [3444] = {.lex_state = 184}, - [3445] = {.lex_state = 197}, + [3440] = {.lex_state = 184}, + [3441] = {.lex_state = 195}, + [3442] = {.lex_state = 197}, + [3443] = {.lex_state = 197}, + [3444] = {.lex_state = 195}, + [3445] = {.lex_state = 195}, [3446] = {.lex_state = 197}, [3447] = {.lex_state = 197}, - [3448] = {.lex_state = 184}, - [3449] = {.lex_state = 184}, - [3450] = {.lex_state = 197}, - [3451] = {.lex_state = 199}, - [3452] = {.lex_state = 197}, - [3453] = {.lex_state = 199}, - [3454] = {.lex_state = 199}, - [3455] = {.lex_state = 197}, - [3456] = {.lex_state = 184}, - [3457] = {.lex_state = 197}, - [3458] = {.lex_state = 184}, - [3459] = {.lex_state = 197}, - [3460] = {.lex_state = 184}, - [3461] = {.lex_state = 199}, + [3448] = {.lex_state = 197}, + [3449] = {.lex_state = 197}, + [3450] = {.lex_state = 195}, + [3451] = {.lex_state = 197}, + [3452] = {.lex_state = 199}, + [3453] = {.lex_state = 197}, + [3454] = {.lex_state = 195}, + [3455] = {.lex_state = 199}, + [3456] = {.lex_state = 197}, + [3457] = {.lex_state = 195}, + [3458] = {.lex_state = 197}, + [3459] = {.lex_state = 199}, + [3460] = {.lex_state = 197}, + [3461] = {.lex_state = 197}, [3462] = {.lex_state = 197}, - [3463] = {.lex_state = 184}, - [3464] = {.lex_state = 184}, + [3463] = {.lex_state = 197}, + [3464] = {.lex_state = 199}, [3465] = {.lex_state = 197}, [3466] = {.lex_state = 197}, - [3467] = {.lex_state = 184}, + [3467] = {.lex_state = 197}, [3468] = {.lex_state = 197}, - [3469] = {.lex_state = 184}, - [3470] = {.lex_state = 184}, - [3471] = {.lex_state = 197}, - [3472] = {.lex_state = 197}, - [3473] = {.lex_state = 197}, - [3474] = {.lex_state = 195}, + [3469] = {.lex_state = 199}, + [3470] = {.lex_state = 197}, + [3471] = {.lex_state = 195}, + [3472] = {.lex_state = 199}, + [3473] = {.lex_state = 184}, + [3474] = {.lex_state = 184}, [3475] = {.lex_state = 197}, [3476] = {.lex_state = 197}, [3477] = {.lex_state = 197}, [3478] = {.lex_state = 197}, - [3479] = {.lex_state = 197}, + [3479] = {.lex_state = 195}, [3480] = {.lex_state = 197}, - [3481] = {.lex_state = 199}, - [3482] = {.lex_state = 197}, - [3483] = {.lex_state = 195}, - [3484] = {.lex_state = 197}, - [3485] = {.lex_state = 197}, - [3486] = {.lex_state = 199}, - [3487] = {.lex_state = 199}, - [3488] = {.lex_state = 184}, - [3489] = {.lex_state = 197}, - [3490] = {.lex_state = 199}, - [3491] = {.lex_state = 184}, + [3481] = {.lex_state = 197}, + [3482] = {.lex_state = 195}, + [3483] = {.lex_state = 197}, + [3484] = {.lex_state = 181}, + [3485] = {.lex_state = 195}, + [3486] = {.lex_state = 197}, + [3487] = {.lex_state = 195}, + [3488] = {.lex_state = 197}, + [3489] = {.lex_state = 199}, + [3490] = {.lex_state = 197}, + [3491] = {.lex_state = 195}, [3492] = {.lex_state = 197}, - [3493] = {.lex_state = 197}, + [3493] = {.lex_state = 199}, [3494] = {.lex_state = 197}, - [3495] = {.lex_state = 197}, - [3496] = {.lex_state = 184}, + [3495] = {.lex_state = 179}, + [3496] = {.lex_state = 197}, [3497] = {.lex_state = 197}, - [3498] = {.lex_state = 199}, + [3498] = {.lex_state = 197}, [3499] = {.lex_state = 197}, - [3500] = {.lex_state = 184}, + [3500] = {.lex_state = 197}, [3501] = {.lex_state = 197}, [3502] = {.lex_state = 197}, [3503] = {.lex_state = 197}, - [3504] = {.lex_state = 197}, - [3505] = {.lex_state = 195}, + [3504] = {.lex_state = 186}, + [3505] = {.lex_state = 197}, [3506] = {.lex_state = 197}, - [3507] = {.lex_state = 197}, - [3508] = {.lex_state = 184}, - [3509] = {.lex_state = 197}, - [3510] = {.lex_state = 179}, + [3507] = {.lex_state = 195}, + [3508] = {.lex_state = 197}, + [3509] = {.lex_state = 195}, + [3510] = {.lex_state = 184}, [3511] = {.lex_state = 197}, - [3512] = {.lex_state = 197}, - [3513] = {.lex_state = 197}, + [3512] = {.lex_state = 179}, + [3513] = {.lex_state = 184}, [3514] = {.lex_state = 184}, - [3515] = {.lex_state = 197}, - [3516] = {.lex_state = 197}, - [3517] = {.lex_state = 197}, - [3518] = {.lex_state = 199}, - [3519] = {.lex_state = 184}, - [3520] = {.lex_state = 197}, + [3515] = {.lex_state = 179}, + [3516] = {.lex_state = 184}, + [3517] = {.lex_state = 184}, + [3518] = {.lex_state = 184}, + [3519] = {.lex_state = 199}, + [3520] = {.lex_state = 184}, [3521] = {.lex_state = 184}, - [3522] = {.lex_state = 197}, - [3523] = {.lex_state = 197}, - [3524] = {.lex_state = 197}, - [3525] = {.lex_state = 184}, - [3526] = {.lex_state = 184}, - [3527] = {.lex_state = 184}, - [3528] = {.lex_state = 199}, - [3529] = {.lex_state = 197}, + [3522] = {.lex_state = 184}, + [3523] = {.lex_state = 179}, + [3524] = {.lex_state = 199}, + [3525] = {.lex_state = 179}, + [3526] = {.lex_state = 197}, + [3527] = {.lex_state = 197}, + [3528] = {.lex_state = 184}, + [3529] = {.lex_state = 184}, [3530] = {.lex_state = 184}, - [3531] = {.lex_state = 197}, - [3532] = {.lex_state = 197}, - [3533] = {.lex_state = 197}, - [3534] = {.lex_state = 197}, - [3535] = {.lex_state = 197}, - [3536] = {.lex_state = 197}, - [3537] = {.lex_state = 197}, - [3538] = {.lex_state = 197}, - [3539] = {.lex_state = 197}, - [3540] = {.lex_state = 181}, - [3541] = {.lex_state = 179}, - [3542] = {.lex_state = 179}, - [3543] = {.lex_state = 199}, - [3544] = {.lex_state = 181}, - [3545] = {.lex_state = 199}, - [3546] = {.lex_state = 181}, - [3547] = {.lex_state = 199}, - [3548] = {.lex_state = 199}, - [3549] = {.lex_state = 184}, - [3550] = {.lex_state = 199}, - [3551] = {.lex_state = 199}, + [3531] = {.lex_state = 184}, + [3532] = {.lex_state = 184}, + [3533] = {.lex_state = 199}, + [3534] = {.lex_state = 199}, + [3535] = {.lex_state = 181}, + [3536] = {.lex_state = 179}, + [3537] = {.lex_state = 199}, + [3538] = {.lex_state = 184}, + [3539] = {.lex_state = 184}, + [3540] = {.lex_state = 184}, + [3541] = {.lex_state = 184}, + [3542] = {.lex_state = 199}, + [3543] = {.lex_state = 184}, + [3544] = {.lex_state = 184}, + [3545] = {.lex_state = 184}, + [3546] = {.lex_state = 184}, + [3547] = {.lex_state = 184}, + [3548] = {.lex_state = 181}, + [3549] = {.lex_state = 179}, + [3550] = {.lex_state = 179}, + [3551] = {.lex_state = 184}, [3552] = {.lex_state = 184}, - [3553] = {.lex_state = 184}, - [3554] = {.lex_state = 184}, - [3555] = {.lex_state = 184}, - [3556] = {.lex_state = 184}, + [3553] = {.lex_state = 199}, + [3554] = {.lex_state = 179}, + [3555] = {.lex_state = 197}, + [3556] = {.lex_state = 199}, [3557] = {.lex_state = 184}, - [3558] = {.lex_state = 184}, + [3558] = {.lex_state = 199}, [3559] = {.lex_state = 184}, - [3560] = {.lex_state = 184}, - [3561] = {.lex_state = 179}, - [3562] = {.lex_state = 179}, - [3563] = {.lex_state = 197}, + [3560] = {.lex_state = 179}, + [3561] = {.lex_state = 184}, + [3562] = {.lex_state = 184}, + [3563] = {.lex_state = 180}, [3564] = {.lex_state = 184}, - [3565] = {.lex_state = 184}, + [3565] = {.lex_state = 199}, [3566] = {.lex_state = 181}, [3567] = {.lex_state = 184}, [3568] = {.lex_state = 184}, - [3569] = {.lex_state = 179}, - [3570] = {.lex_state = 199}, - [3571] = {.lex_state = 180}, + [3569] = {.lex_state = 199}, + [3570] = {.lex_state = 184}, + [3571] = {.lex_state = 181}, [3572] = {.lex_state = 184}, - [3573] = {.lex_state = 197}, - [3574] = {.lex_state = 179}, - [3575] = {.lex_state = 179}, - [3576] = {.lex_state = 199}, - [3577] = {.lex_state = 199}, + [3573] = {.lex_state = 184}, + [3574] = {.lex_state = 181}, + [3575] = {.lex_state = 184}, + [3576] = {.lex_state = 184}, + [3577] = {.lex_state = 184}, [3578] = {.lex_state = 184}, - [3579] = {.lex_state = 179}, - [3580] = {.lex_state = 179}, + [3579] = {.lex_state = 184}, + [3580] = {.lex_state = 181}, [3581] = {.lex_state = 184}, [3582] = {.lex_state = 181}, - [3583] = {.lex_state = 197}, - [3584] = {.lex_state = 197}, + [3583] = {.lex_state = 184}, + [3584] = {.lex_state = 184}, [3585] = {.lex_state = 184}, - [3586] = {.lex_state = 181}, - [3587] = {.lex_state = 181}, - [3588] = {.lex_state = 199}, - [3589] = {.lex_state = 181}, + [3586] = {.lex_state = 184}, + [3587] = {.lex_state = 184}, + [3588] = {.lex_state = 181}, + [3589] = {.lex_state = 184}, [3590] = {.lex_state = 181}, - [3591] = {.lex_state = 184}, - [3592] = {.lex_state = 181}, - [3593] = {.lex_state = 181}, + [3591] = {.lex_state = 180}, + [3592] = {.lex_state = 184}, + [3593] = {.lex_state = 199}, [3594] = {.lex_state = 181}, - [3595] = {.lex_state = 180}, + [3595] = {.lex_state = 184}, [3596] = {.lex_state = 181}, [3597] = {.lex_state = 184}, [3598] = {.lex_state = 181}, [3599] = {.lex_state = 184}, - [3600] = {.lex_state = 184}, + [3600] = {.lex_state = 181}, [3601] = {.lex_state = 181}, [3602] = {.lex_state = 180}, [3603] = {.lex_state = 180}, - [3604] = {.lex_state = 199}, + [3604] = {.lex_state = 181}, [3605] = {.lex_state = 181}, - [3606] = {.lex_state = 181}, - [3607] = {.lex_state = 184}, - [3608] = {.lex_state = 180}, + [3606] = {.lex_state = 200}, + [3607] = {.lex_state = 181}, + [3608] = {.lex_state = 184}, [3609] = {.lex_state = 180}, - [3610] = {.lex_state = 180}, - [3611] = {.lex_state = 184}, - [3612] = {.lex_state = 181}, + [3610] = {.lex_state = 181}, + [3611] = {.lex_state = 180}, + [3612] = {.lex_state = 184}, [3613] = {.lex_state = 184}, [3614] = {.lex_state = 180}, - [3615] = {.lex_state = 184}, - [3616] = {.lex_state = 184}, - [3617] = {.lex_state = 180}, + [3615] = {.lex_state = 181}, + [3616] = {.lex_state = 181}, + [3617] = {.lex_state = 184}, [3618] = {.lex_state = 184}, - [3619] = {.lex_state = 180}, + [3619] = {.lex_state = 197}, [3620] = {.lex_state = 181}, - [3621] = {.lex_state = 181}, - [3622] = {.lex_state = 180}, - [3623] = {.lex_state = 180}, + [3621] = {.lex_state = 180}, + [3622] = {.lex_state = 184}, + [3623] = {.lex_state = 181}, [3624] = {.lex_state = 180}, - [3625] = {.lex_state = 180}, - [3626] = {.lex_state = 184}, - [3627] = {.lex_state = 184}, - [3628] = {.lex_state = 181}, + [3625] = {.lex_state = 199}, + [3626] = {.lex_state = 180}, + [3627] = {.lex_state = 181}, + [3628] = {.lex_state = 184}, [3629] = {.lex_state = 180}, - [3630] = {.lex_state = 184}, - [3631] = {.lex_state = 184}, - [3632] = {.lex_state = 181}, + [3630] = {.lex_state = 180}, + [3631] = {.lex_state = 197}, + [3632] = {.lex_state = 199}, [3633] = {.lex_state = 184}, - [3634] = {.lex_state = 184}, - [3635] = {.lex_state = 180}, - [3636] = {.lex_state = 184}, - [3637] = {.lex_state = 179}, - [3638] = {.lex_state = 180}, + [3634] = {.lex_state = 199}, + [3635] = {.lex_state = 184}, + [3636] = {.lex_state = 197}, + [3637] = {.lex_state = 180}, + [3638] = {.lex_state = 181}, [3639] = {.lex_state = 180}, [3640] = {.lex_state = 184}, - [3641] = {.lex_state = 181}, - [3642] = {.lex_state = 184}, - [3643] = {.lex_state = 184}, - [3644] = {.lex_state = 180}, + [3641] = {.lex_state = 199}, + [3642] = {.lex_state = 197}, + [3643] = {.lex_state = 197}, + [3644] = {.lex_state = 181}, [3645] = {.lex_state = 184}, - [3646] = {.lex_state = 184}, + [3646] = {.lex_state = 180}, [3647] = {.lex_state = 184}, [3648] = {.lex_state = 184}, [3649] = {.lex_state = 184}, - [3650] = {.lex_state = 181}, - [3651] = {.lex_state = 184}, + [3650] = {.lex_state = 180}, + [3651] = {.lex_state = 179}, [3652] = {.lex_state = 184}, - [3653] = {.lex_state = 184}, - [3654] = {.lex_state = 181}, - [3655] = {.lex_state = 184}, - [3656] = {.lex_state = 197}, + [3653] = {.lex_state = 180}, + [3654] = {.lex_state = 197}, + [3655] = {.lex_state = 180}, + [3656] = {.lex_state = 180}, [3657] = {.lex_state = 184}, [3658] = {.lex_state = 184}, [3659] = {.lex_state = 184}, - [3660] = {.lex_state = 184}, + [3660] = {.lex_state = 181}, [3661] = {.lex_state = 181}, - [3662] = {.lex_state = 184}, - [3663] = {.lex_state = 197}, + [3662] = {.lex_state = 181}, + [3663] = {.lex_state = 181}, [3664] = {.lex_state = 184}, - [3665] = {.lex_state = 184}, - [3666] = {.lex_state = 181}, + [3665] = {.lex_state = 199}, + [3666] = {.lex_state = 184}, [3667] = {.lex_state = 184}, [3668] = {.lex_state = 184}, [3669] = {.lex_state = 184}, - [3670] = {.lex_state = 181}, + [3670] = {.lex_state = 179}, [3671] = {.lex_state = 184}, [3672] = {.lex_state = 184}, - [3673] = {.lex_state = 184}, + [3673] = {.lex_state = 181}, [3674] = {.lex_state = 184}, [3675] = {.lex_state = 184}, [3676] = {.lex_state = 184}, [3677] = {.lex_state = 184}, - [3678] = {.lex_state = 181}, + [3678] = {.lex_state = 184}, [3679] = {.lex_state = 184}, [3680] = {.lex_state = 184}, [3681] = {.lex_state = 184}, - [3682] = {.lex_state = 181}, - [3683] = {.lex_state = 181}, - [3684] = {.lex_state = 181}, - [3685] = {.lex_state = 199}, - [3686] = {.lex_state = 184}, + [3682] = {.lex_state = 184}, + [3683] = {.lex_state = 184}, + [3684] = {.lex_state = 179}, + [3685] = {.lex_state = 184}, + [3686] = {.lex_state = 181}, [3687] = {.lex_state = 184}, [3688] = {.lex_state = 184}, [3689] = {.lex_state = 184}, - [3690] = {.lex_state = 184}, + [3690] = {.lex_state = 181}, [3691] = {.lex_state = 184}, [3692] = {.lex_state = 184}, [3693] = {.lex_state = 184}, - [3694] = {.lex_state = 197}, + [3694] = {.lex_state = 184}, [3695] = {.lex_state = 184}, [3696] = {.lex_state = 184}, [3697] = {.lex_state = 184}, - [3698] = {.lex_state = 181}, - [3699] = {.lex_state = 181}, + [3698] = {.lex_state = 184}, + [3699] = {.lex_state = 184}, [3700] = {.lex_state = 184}, - [3701] = {.lex_state = 184}, + [3701] = {.lex_state = 181}, [3702] = {.lex_state = 184}, - [3703] = {.lex_state = 181}, - [3704] = {.lex_state = 181}, + [3703] = {.lex_state = 184}, + [3704] = {.lex_state = 184}, [3705] = {.lex_state = 184}, - [3706] = {.lex_state = 199}, - [3707] = {.lex_state = 197}, + [3706] = {.lex_state = 181}, + [3707] = {.lex_state = 184}, [3708] = {.lex_state = 184}, [3709] = {.lex_state = 184}, [3710] = {.lex_state = 184}, [3711] = {.lex_state = 181}, [3712] = {.lex_state = 184}, - [3713] = {.lex_state = 197}, + [3713] = {.lex_state = 184}, [3714] = {.lex_state = 184}, [3715] = {.lex_state = 184}, [3716] = {.lex_state = 184}, @@ -21600,16 +21618,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3718] = {.lex_state = 184}, [3719] = {.lex_state = 184}, [3720] = {.lex_state = 184}, - [3721] = {.lex_state = 184}, - [3722] = {.lex_state = 184}, - [3723] = {.lex_state = 199}, - [3724] = {.lex_state = 184}, + [3721] = {.lex_state = 181}, + [3722] = {.lex_state = 181}, + [3723] = {.lex_state = 181}, + [3724] = {.lex_state = 181}, [3725] = {.lex_state = 184}, [3726] = {.lex_state = 184}, [3727] = {.lex_state = 184}, [3728] = {.lex_state = 184}, [3729] = {.lex_state = 184}, - [3730] = {.lex_state = 181}, + [3730] = {.lex_state = 184}, [3731] = {.lex_state = 184}, [3732] = {.lex_state = 184}, [3733] = {.lex_state = 184}, @@ -21617,28 +21635,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3735] = {.lex_state = 184}, [3736] = {.lex_state = 184}, [3737] = {.lex_state = 190}, - [3738] = {.lex_state = 199}, - [3739] = {.lex_state = 181}, + [3738] = {.lex_state = 184}, + [3739] = {.lex_state = 184}, [3740] = {.lex_state = 184}, - [3741] = {.lex_state = 184}, - [3742] = {.lex_state = 181}, - [3743] = {.lex_state = 181}, - [3744] = {.lex_state = 181}, - [3745] = {.lex_state = 184}, + [3741] = {.lex_state = 181}, + [3742] = {.lex_state = 199}, + [3743] = {.lex_state = 184}, + [3744] = {.lex_state = 184}, + [3745] = {.lex_state = 181}, [3746] = {.lex_state = 184}, [3747] = {.lex_state = 184}, [3748] = {.lex_state = 184}, [3749] = {.lex_state = 181}, [3750] = {.lex_state = 184}, - [3751] = {.lex_state = 197}, + [3751] = {.lex_state = 184}, [3752] = {.lex_state = 184}, - [3753] = {.lex_state = 181}, + [3753] = {.lex_state = 184}, [3754] = {.lex_state = 184}, - [3755] = {.lex_state = 181}, + [3755] = {.lex_state = 184}, [3756] = {.lex_state = 184}, - [3757] = {.lex_state = 184}, - [3758] = {.lex_state = 181}, - [3759] = {.lex_state = 184}, + [3757] = {.lex_state = 181}, + [3758] = {.lex_state = 184}, + [3759] = {.lex_state = 181}, [3760] = {.lex_state = 184}, [3761] = {.lex_state = 181}, [3762] = {.lex_state = 181}, @@ -21646,713 +21664,713 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3764] = {.lex_state = 181}, [3765] = {.lex_state = 181}, [3766] = {.lex_state = 184}, - [3767] = {.lex_state = 184}, + [3767] = {.lex_state = 181}, [3768] = {.lex_state = 181}, [3769] = {.lex_state = 184}, [3770] = {.lex_state = 181}, [3771] = {.lex_state = 181}, - [3772] = {.lex_state = 181}, - [3773] = {.lex_state = 181}, + [3772] = {.lex_state = 184}, + [3773] = {.lex_state = 184}, [3774] = {.lex_state = 181}, - [3775] = {.lex_state = 184}, + [3775] = {.lex_state = 197}, [3776] = {.lex_state = 181}, [3777] = {.lex_state = 181}, [3778] = {.lex_state = 184}, - [3779] = {.lex_state = 181}, + [3779] = {.lex_state = 184}, [3780] = {.lex_state = 181}, [3781] = {.lex_state = 181}, - [3782] = {.lex_state = 181}, - [3783] = {.lex_state = 190}, - [3784] = {.lex_state = 184}, + [3782] = {.lex_state = 184}, + [3783] = {.lex_state = 181}, + [3784] = {.lex_state = 199}, [3785] = {.lex_state = 184}, - [3786] = {.lex_state = 184}, + [3786] = {.lex_state = 181}, [3787] = {.lex_state = 184}, [3788] = {.lex_state = 184}, - [3789] = {.lex_state = 184}, - [3790] = {.lex_state = 184}, + [3789] = {.lex_state = 181}, + [3790] = {.lex_state = 181}, [3791] = {.lex_state = 184}, - [3792] = {.lex_state = 200}, - [3793] = {.lex_state = 181}, + [3792] = {.lex_state = 181}, + [3793] = {.lex_state = 190}, [3794] = {.lex_state = 184}, - [3795] = {.lex_state = 184}, - [3796] = {.lex_state = 180}, - [3797] = {.lex_state = 181}, + [3795] = {.lex_state = 197}, + [3796] = {.lex_state = 184}, + [3797] = {.lex_state = 184}, [3798] = {.lex_state = 184}, [3799] = {.lex_state = 184}, [3800] = {.lex_state = 184}, [3801] = {.lex_state = 184}, [3802] = {.lex_state = 181}, [3803] = {.lex_state = 184}, - [3804] = {.lex_state = 199}, + [3804] = {.lex_state = 180}, [3805] = {.lex_state = 181}, - [3806] = {.lex_state = 181}, - [3807] = {.lex_state = 184}, - [3808] = {.lex_state = 199}, - [3809] = {.lex_state = 184}, - [3810] = {.lex_state = 184}, + [3806] = {.lex_state = 184}, + [3807] = {.lex_state = 181}, + [3808] = {.lex_state = 184}, + [3809] = {.lex_state = 181}, + [3810] = {.lex_state = 181}, [3811] = {.lex_state = 184}, [3812] = {.lex_state = 199}, [3813] = {.lex_state = 184}, - [3814] = {.lex_state = 184}, + [3814] = {.lex_state = 181}, [3815] = {.lex_state = 184}, [3816] = {.lex_state = 184}, - [3817] = {.lex_state = 181}, - [3818] = {.lex_state = 184}, + [3817] = {.lex_state = 184}, + [3818] = {.lex_state = 199}, [3819] = {.lex_state = 184}, [3820] = {.lex_state = 181}, [3821] = {.lex_state = 184}, [3822] = {.lex_state = 184}, [3823] = {.lex_state = 179}, [3824] = {.lex_state = 184}, - [3825] = {.lex_state = 197}, + [3825] = {.lex_state = 184}, [3826] = {.lex_state = 184}, - [3827] = {.lex_state = 179}, - [3828] = {.lex_state = 197}, - [3829] = {.lex_state = 184}, - [3830] = {.lex_state = 181}, + [3827] = {.lex_state = 199}, + [3828] = {.lex_state = 199}, + [3829] = {.lex_state = 199}, + [3830] = {.lex_state = 199}, [3831] = {.lex_state = 184}, [3832] = {.lex_state = 184}, - [3833] = {.lex_state = 181}, - [3834] = {.lex_state = 197}, + [3833] = {.lex_state = 197}, + [3834] = {.lex_state = 181}, [3835] = {.lex_state = 184}, - [3836] = {.lex_state = 184}, + [3836] = {.lex_state = 197}, [3837] = {.lex_state = 184}, [3838] = {.lex_state = 184}, - [3839] = {.lex_state = 184}, - [3840] = {.lex_state = 184}, - [3841] = {.lex_state = 181}, - [3842] = {.lex_state = 184}, - [3843] = {.lex_state = 184}, - [3844] = {.lex_state = 184}, + [3839] = {.lex_state = 179}, + [3840] = {.lex_state = 199}, + [3841] = {.lex_state = 184}, + [3842] = {.lex_state = 181}, + [3843] = {.lex_state = 181}, + [3844] = {.lex_state = 199}, [3845] = {.lex_state = 184}, - [3846] = {.lex_state = 184}, + [3846] = {.lex_state = 199}, [3847] = {.lex_state = 184}, - [3848] = {.lex_state = 179}, + [3848] = {.lex_state = 199}, [3849] = {.lex_state = 184}, - [3850] = {.lex_state = 181}, - [3851] = {.lex_state = 181}, - [3852] = {.lex_state = 181}, + [3850] = {.lex_state = 184}, + [3851] = {.lex_state = 184}, + [3852] = {.lex_state = 184}, [3853] = {.lex_state = 184}, - [3854] = {.lex_state = 184}, + [3854] = {.lex_state = 199}, [3855] = {.lex_state = 184}, - [3856] = {.lex_state = 184}, + [3856] = {.lex_state = 199}, [3857] = {.lex_state = 184}, [3858] = {.lex_state = 184}, [3859] = {.lex_state = 184}, [3860] = {.lex_state = 184}, - [3861] = {.lex_state = 181}, + [3861] = {.lex_state = 184}, [3862] = {.lex_state = 184}, - [3863] = {.lex_state = 184}, + [3863] = {.lex_state = 181}, [3864] = {.lex_state = 184}, [3865] = {.lex_state = 184}, [3866] = {.lex_state = 184}, [3867] = {.lex_state = 184}, [3868] = {.lex_state = 184}, - [3869] = {.lex_state = 184}, + [3869] = {.lex_state = 199}, [3870] = {.lex_state = 184}, - [3871] = {.lex_state = 181}, - [3872] = {.lex_state = 184}, + [3871] = {.lex_state = 179}, + [3872] = {.lex_state = 199}, [3873] = {.lex_state = 184}, - [3874] = {.lex_state = 184}, + [3874] = {.lex_state = 181}, [3875] = {.lex_state = 184}, [3876] = {.lex_state = 184}, [3877] = {.lex_state = 184}, - [3878] = {.lex_state = 184}, + [3878] = {.lex_state = 199}, [3879] = {.lex_state = 184}, [3880] = {.lex_state = 184}, - [3881] = {.lex_state = 181}, + [3881] = {.lex_state = 199}, [3882] = {.lex_state = 184}, - [3883] = {.lex_state = 181}, + [3883] = {.lex_state = 199}, [3884] = {.lex_state = 184}, [3885] = {.lex_state = 184}, [3886] = {.lex_state = 184}, [3887] = {.lex_state = 184}, [3888] = {.lex_state = 184}, [3889] = {.lex_state = 184}, - [3890] = {.lex_state = 184}, + [3890] = {.lex_state = 199}, [3891] = {.lex_state = 184}, [3892] = {.lex_state = 184}, - [3893] = {.lex_state = 181}, + [3893] = {.lex_state = 184}, [3894] = {.lex_state = 184}, - [3895] = {.lex_state = 184}, + [3895] = {.lex_state = 181}, [3896] = {.lex_state = 184}, - [3897] = {.lex_state = 184}, - [3898] = {.lex_state = 184}, + [3897] = {.lex_state = 199}, + [3898] = {.lex_state = 181}, [3899] = {.lex_state = 184}, - [3900] = {.lex_state = 184}, - [3901] = {.lex_state = 181}, - [3902] = {.lex_state = 197}, - [3903] = {.lex_state = 199}, - [3904] = {.lex_state = 184}, + [3900] = {.lex_state = 181}, + [3901] = {.lex_state = 199}, + [3902] = {.lex_state = 199}, + [3903] = {.lex_state = 181}, + [3904] = {.lex_state = 199}, [3905] = {.lex_state = 184}, [3906] = {.lex_state = 184}, [3907] = {.lex_state = 184}, - [3908] = {.lex_state = 181}, + [3908] = {.lex_state = 184}, [3909] = {.lex_state = 184}, - [3910] = {.lex_state = 181}, - [3911] = {.lex_state = 179}, - [3912] = {.lex_state = 184}, - [3913] = {.lex_state = 184}, - [3914] = {.lex_state = 199}, + [3910] = {.lex_state = 184}, + [3911] = {.lex_state = 184}, + [3912] = {.lex_state = 199}, + [3913] = {.lex_state = 199}, + [3914] = {.lex_state = 184}, [3915] = {.lex_state = 184}, [3916] = {.lex_state = 184}, [3917] = {.lex_state = 184}, - [3918] = {.lex_state = 181}, - [3919] = {.lex_state = 184}, - [3920] = {.lex_state = 184}, - [3921] = {.lex_state = 179}, + [3918] = {.lex_state = 199}, + [3919] = {.lex_state = 179}, + [3920] = {.lex_state = 197}, + [3921] = {.lex_state = 199}, [3922] = {.lex_state = 184}, [3923] = {.lex_state = 184}, - [3924] = {.lex_state = 184}, - [3925] = {.lex_state = 184}, - [3926] = {.lex_state = 179}, + [3924] = {.lex_state = 181}, + [3925] = {.lex_state = 199}, + [3926] = {.lex_state = 184}, [3927] = {.lex_state = 184}, - [3928] = {.lex_state = 179}, - [3929] = {.lex_state = 184}, + [3928] = {.lex_state = 181}, + [3929] = {.lex_state = 199}, [3930] = {.lex_state = 184}, - [3931] = {.lex_state = 179}, + [3931] = {.lex_state = 184}, [3932] = {.lex_state = 184}, [3933] = {.lex_state = 184}, - [3934] = {.lex_state = 179}, + [3934] = {.lex_state = 184}, [3935] = {.lex_state = 184}, [3936] = {.lex_state = 184}, [3937] = {.lex_state = 184}, [3938] = {.lex_state = 184}, - [3939] = {.lex_state = 184}, + [3939] = {.lex_state = 179}, [3940] = {.lex_state = 184}, [3941] = {.lex_state = 184}, [3942] = {.lex_state = 184}, [3943] = {.lex_state = 184}, [3944] = {.lex_state = 184}, - [3945] = {.lex_state = 181}, - [3946] = {.lex_state = 180}, + [3945] = {.lex_state = 184}, + [3946] = {.lex_state = 181}, [3947] = {.lex_state = 184}, [3948] = {.lex_state = 184}, - [3949] = {.lex_state = 179}, - [3950] = {.lex_state = 184}, - [3951] = {.lex_state = 184}, - [3952] = {.lex_state = 184}, - [3953] = {.lex_state = 184}, - [3954] = {.lex_state = 184}, + [3949] = {.lex_state = 184}, + [3950] = {.lex_state = 179}, + [3951] = {.lex_state = 199}, + [3952] = {.lex_state = 179}, + [3953] = {.lex_state = 199}, + [3954] = {.lex_state = 199}, [3955] = {.lex_state = 184}, - [3956] = {.lex_state = 184}, - [3957] = {.lex_state = 184}, + [3956] = {.lex_state = 180}, + [3957] = {.lex_state = 181}, [3958] = {.lex_state = 184}, [3959] = {.lex_state = 184}, - [3960] = {.lex_state = 181}, + [3960] = {.lex_state = 199}, [3961] = {.lex_state = 184}, - [3962] = {.lex_state = 184}, + [3962] = {.lex_state = 181}, [3963] = {.lex_state = 184}, [3964] = {.lex_state = 184}, [3965] = {.lex_state = 184}, - [3966] = {.lex_state = 199}, - [3967] = {.lex_state = 184}, + [3966] = {.lex_state = 197}, + [3967] = {.lex_state = 181}, [3968] = {.lex_state = 184}, [3969] = {.lex_state = 184}, [3970] = {.lex_state = 184}, - [3971] = {.lex_state = 184}, + [3971] = {.lex_state = 181}, [3972] = {.lex_state = 184}, - [3973] = {.lex_state = 184}, + [3973] = {.lex_state = 199}, [3974] = {.lex_state = 184}, - [3975] = {.lex_state = 181}, - [3976] = {.lex_state = 181}, + [3975] = {.lex_state = 199}, + [3976] = {.lex_state = 197}, [3977] = {.lex_state = 184}, - [3978] = {.lex_state = 184}, + [3978] = {.lex_state = 199}, [3979] = {.lex_state = 184}, [3980] = {.lex_state = 184}, - [3981] = {.lex_state = 181}, - [3982] = {.lex_state = 184}, - [3983] = {.lex_state = 181}, - [3984] = {.lex_state = 184}, + [3981] = {.lex_state = 199}, + [3982] = {.lex_state = 199}, + [3983] = {.lex_state = 199}, + [3984] = {.lex_state = 199}, [3985] = {.lex_state = 184}, [3986] = {.lex_state = 184}, - [3987] = {.lex_state = 181}, + [3987] = {.lex_state = 184}, [3988] = {.lex_state = 184}, [3989] = {.lex_state = 184}, - [3990] = {.lex_state = 199}, - [3991] = {.lex_state = 199}, + [3990] = {.lex_state = 181}, + [3991] = {.lex_state = 184}, [3992] = {.lex_state = 199}, [3993] = {.lex_state = 199}, - [3994] = {.lex_state = 199}, + [3994] = {.lex_state = 184}, [3995] = {.lex_state = 199}, [3996] = {.lex_state = 199}, - [3997] = {.lex_state = 199}, - [3998] = {.lex_state = 199}, - [3999] = {.lex_state = 199}, - [4000] = {.lex_state = 199}, + [3997] = {.lex_state = 184}, + [3998] = {.lex_state = 184}, + [3999] = {.lex_state = 184}, + [4000] = {.lex_state = 184}, [4001] = {.lex_state = 199}, - [4002] = {.lex_state = 197}, - [4003] = {.lex_state = 197}, - [4004] = {.lex_state = 197}, + [4002] = {.lex_state = 184}, + [4003] = {.lex_state = 184}, + [4004] = {.lex_state = 184}, [4005] = {.lex_state = 199}, - [4006] = {.lex_state = 197}, + [4006] = {.lex_state = 184}, [4007] = {.lex_state = 199}, [4008] = {.lex_state = 197}, - [4009] = {.lex_state = 199}, - [4010] = {.lex_state = 199}, + [4009] = {.lex_state = 197}, + [4010] = {.lex_state = 197}, [4011] = {.lex_state = 199}, - [4012] = {.lex_state = 199}, - [4013] = {.lex_state = 199}, + [4012] = {.lex_state = 184}, + [4013] = {.lex_state = 184}, [4014] = {.lex_state = 199}, - [4015] = {.lex_state = 199}, + [4015] = {.lex_state = 184}, [4016] = {.lex_state = 199}, [4017] = {.lex_state = 199}, - [4018] = {.lex_state = 199}, + [4018] = {.lex_state = 184}, [4019] = {.lex_state = 199}, - [4020] = {.lex_state = 199}, - [4021] = {.lex_state = 199}, - [4022] = {.lex_state = 197}, - [4023] = {.lex_state = 199}, - [4024] = {.lex_state = 199}, - [4025] = {.lex_state = 199}, - [4026] = {.lex_state = 199}, + [4020] = {.lex_state = 181}, + [4021] = {.lex_state = 181}, + [4022] = {.lex_state = 181}, + [4023] = {.lex_state = 184}, + [4024] = {.lex_state = 184}, + [4025] = {.lex_state = 184}, + [4026] = {.lex_state = 181}, [4027] = {.lex_state = 199}, [4028] = {.lex_state = 199}, [4029] = {.lex_state = 199}, - [4030] = {.lex_state = 197}, + [4030] = {.lex_state = 184}, [4031] = {.lex_state = 199}, - [4032] = {.lex_state = 199}, - [4033] = {.lex_state = 199}, + [4032] = {.lex_state = 184}, + [4033] = {.lex_state = 184}, [4034] = {.lex_state = 199}, - [4035] = {.lex_state = 199}, + [4035] = {.lex_state = 184}, [4036] = {.lex_state = 199}, - [4037] = {.lex_state = 199}, - [4038] = {.lex_state = 199}, + [4037] = {.lex_state = 181}, + [4038] = {.lex_state = 184}, [4039] = {.lex_state = 199}, - [4040] = {.lex_state = 199}, - [4041] = {.lex_state = 199}, - [4042] = {.lex_state = 199}, + [4040] = {.lex_state = 184}, + [4041] = {.lex_state = 184}, + [4042] = {.lex_state = 179}, [4043] = {.lex_state = 199}, - [4044] = {.lex_state = 199}, - [4045] = {.lex_state = 199}, - [4046] = {.lex_state = 199}, - [4047] = {.lex_state = 195}, - [4048] = {.lex_state = 199}, + [4044] = {.lex_state = 184}, + [4045] = {.lex_state = 184}, + [4046] = {.lex_state = 184}, + [4047] = {.lex_state = 199}, + [4048] = {.lex_state = 184}, [4049] = {.lex_state = 199}, - [4050] = {.lex_state = 199}, + [4050] = {.lex_state = 184}, [4051] = {.lex_state = 199}, [4052] = {.lex_state = 199}, [4053] = {.lex_state = 199}, - [4054] = {.lex_state = 197}, + [4054] = {.lex_state = 181}, [4055] = {.lex_state = 199}, - [4056] = {.lex_state = 199}, - [4057] = {.lex_state = 199}, - [4058] = {.lex_state = 199}, - [4059] = {.lex_state = 199}, - [4060] = {.lex_state = 199}, - [4061] = {.lex_state = 199}, - [4062] = {.lex_state = 199}, - [4063] = {.lex_state = 178}, + [4056] = {.lex_state = 184}, + [4057] = {.lex_state = 181}, + [4058] = {.lex_state = 184}, + [4059] = {.lex_state = 197}, + [4060] = {.lex_state = 197}, + [4061] = {.lex_state = 197}, + [4062] = {.lex_state = 197}, + [4063] = {.lex_state = 197}, [4064] = {.lex_state = 197}, - [4065] = {.lex_state = 199}, + [4065] = {.lex_state = 179}, [4066] = {.lex_state = 179}, - [4067] = {.lex_state = 199}, - [4068] = {.lex_state = 199}, - [4069] = {.lex_state = 197}, - [4070] = {.lex_state = 197}, - [4071] = {.lex_state = 199}, - [4072] = {.lex_state = 197}, + [4067] = {.lex_state = 197}, + [4068] = {.lex_state = 195}, + [4069] = {.lex_state = 199}, + [4070] = {.lex_state = 178}, + [4071] = {.lex_state = 195}, + [4072] = {.lex_state = 195}, [4073] = {.lex_state = 199}, - [4074] = {.lex_state = 179}, - [4075] = {.lex_state = 197}, + [4074] = {.lex_state = 195}, + [4075] = {.lex_state = 195}, [4076] = {.lex_state = 195}, - [4077] = {.lex_state = 195}, + [4077] = {.lex_state = 197}, [4078] = {.lex_state = 195}, - [4079] = {.lex_state = 197}, + [4079] = {.lex_state = 199}, [4080] = {.lex_state = 195}, - [4081] = {.lex_state = 197}, - [4082] = {.lex_state = 197}, - [4083] = {.lex_state = 195}, + [4081] = {.lex_state = 199}, + [4082] = {.lex_state = 199}, + [4083] = {.lex_state = 199}, [4084] = {.lex_state = 195}, - [4085] = {.lex_state = 195}, + [4085] = {.lex_state = 199}, [4086] = {.lex_state = 197}, - [4087] = {.lex_state = 195}, - [4088] = {.lex_state = 195}, - [4089] = {.lex_state = 195}, + [4087] = {.lex_state = 197}, + [4088] = {.lex_state = 197}, + [4089] = {.lex_state = 179}, [4090] = {.lex_state = 195}, - [4091] = {.lex_state = 179}, - [4092] = {.lex_state = 179}, - [4093] = {.lex_state = 195}, - [4094] = {.lex_state = 197}, + [4091] = {.lex_state = 195}, + [4092] = {.lex_state = 195}, + [4093] = {.lex_state = 199}, + [4094] = {.lex_state = 195}, [4095] = {.lex_state = 179}, [4096] = {.lex_state = 195}, [4097] = {.lex_state = 195}, [4098] = {.lex_state = 195}, - [4099] = {.lex_state = 195}, + [4099] = {.lex_state = 179}, [4100] = {.lex_state = 195}, [4101] = {.lex_state = 195}, - [4102] = {.lex_state = 195}, + [4102] = {.lex_state = 179}, [4103] = {.lex_state = 195}, [4104] = {.lex_state = 195}, - [4105] = {.lex_state = 195}, - [4106] = {.lex_state = 197}, - [4107] = {.lex_state = 195}, + [4105] = {.lex_state = 197}, + [4106] = {.lex_state = 195}, + [4107] = {.lex_state = 199}, [4108] = {.lex_state = 179}, - [4109] = {.lex_state = 195}, - [4110] = {.lex_state = 195}, - [4111] = {.lex_state = 199}, - [4112] = {.lex_state = 197}, + [4109] = {.lex_state = 179}, + [4110] = {.lex_state = 179}, + [4111] = {.lex_state = 195}, + [4112] = {.lex_state = 195}, [4113] = {.lex_state = 199}, - [4114] = {.lex_state = 179}, - [4115] = {.lex_state = 199}, - [4116] = {.lex_state = 197}, - [4117] = {.lex_state = 199}, + [4114] = {.lex_state = 197}, + [4115] = {.lex_state = 195}, + [4116] = {.lex_state = 195}, + [4117] = {.lex_state = 195}, [4118] = {.lex_state = 197}, - [4119] = {.lex_state = 199}, + [4119] = {.lex_state = 197}, [4120] = {.lex_state = 199}, [4121] = {.lex_state = 197}, - [4122] = {.lex_state = 199}, - [4123] = {.lex_state = 198}, - [4124] = {.lex_state = 179}, + [4122] = {.lex_state = 179}, + [4123] = {.lex_state = 179}, + [4124] = {.lex_state = 197}, [4125] = {.lex_state = 179}, - [4126] = {.lex_state = 195}, - [4127] = {.lex_state = 195}, - [4128] = {.lex_state = 195}, - [4129] = {.lex_state = 195}, + [4126] = {.lex_state = 198}, + [4127] = {.lex_state = 199}, + [4128] = {.lex_state = 199}, + [4129] = {.lex_state = 179}, [4130] = {.lex_state = 195}, [4131] = {.lex_state = 195}, [4132] = {.lex_state = 195}, [4133] = {.lex_state = 195}, - [4134] = {.lex_state = 195}, + [4134] = {.lex_state = 179}, [4135] = {.lex_state = 195}, - [4136] = {.lex_state = 179}, + [4136] = {.lex_state = 195}, [4137] = {.lex_state = 195}, - [4138] = {.lex_state = 179}, - [4139] = {.lex_state = 198}, - [4140] = {.lex_state = 195}, - [4141] = {.lex_state = 199}, + [4138] = {.lex_state = 195}, + [4139] = {.lex_state = 195}, + [4140] = {.lex_state = 200}, + [4141] = {.lex_state = 195}, [4142] = {.lex_state = 195}, [4143] = {.lex_state = 195}, [4144] = {.lex_state = 195}, [4145] = {.lex_state = 195}, - [4146] = {.lex_state = 195}, - [4147] = {.lex_state = 195}, + [4146] = {.lex_state = 198}, + [4147] = {.lex_state = 199}, [4148] = {.lex_state = 195}, - [4149] = {.lex_state = 199}, + [4149] = {.lex_state = 195}, [4150] = {.lex_state = 195}, [4151] = {.lex_state = 195}, [4152] = {.lex_state = 195}, [4153] = {.lex_state = 195}, - [4154] = {.lex_state = 195}, - [4155] = {.lex_state = 199}, - [4156] = {.lex_state = 195}, + [4154] = {.lex_state = 199}, + [4155] = {.lex_state = 195}, + [4156] = {.lex_state = 179}, [4157] = {.lex_state = 195}, [4158] = {.lex_state = 195}, - [4159] = {.lex_state = 199}, + [4159] = {.lex_state = 198}, [4160] = {.lex_state = 195}, - [4161] = {.lex_state = 199}, + [4161] = {.lex_state = 195}, [4162] = {.lex_state = 195}, - [4163] = {.lex_state = 195}, + [4163] = {.lex_state = 199}, [4164] = {.lex_state = 195}, - [4165] = {.lex_state = 199}, + [4165] = {.lex_state = 195}, [4166] = {.lex_state = 195}, - [4167] = {.lex_state = 195}, - [4168] = {.lex_state = 195}, - [4169] = {.lex_state = 179}, + [4167] = {.lex_state = 199}, + [4168] = {.lex_state = 199}, + [4169] = {.lex_state = 195}, [4170] = {.lex_state = 195}, - [4171] = {.lex_state = 199}, - [4172] = {.lex_state = 199}, - [4173] = {.lex_state = 195}, + [4171] = {.lex_state = 195}, + [4172] = {.lex_state = 195}, + [4173] = {.lex_state = 199}, [4174] = {.lex_state = 195}, - [4175] = {.lex_state = 200}, + [4175] = {.lex_state = 195}, [4176] = {.lex_state = 195}, - [4177] = {.lex_state = 179}, - [4178] = {.lex_state = 195}, - [4179] = {.lex_state = 198}, + [4177] = {.lex_state = 195}, + [4178] = {.lex_state = 199}, + [4179] = {.lex_state = 195}, [4180] = {.lex_state = 195}, - [4181] = {.lex_state = 195}, + [4181] = {.lex_state = 199}, [4182] = {.lex_state = 195}, - [4183] = {.lex_state = 197}, - [4184] = {.lex_state = 179}, - [4185] = {.lex_state = 197}, - [4186] = {.lex_state = 184}, - [4187] = {.lex_state = 197}, - [4188] = {.lex_state = 197}, + [4183] = {.lex_state = 195}, + [4184] = {.lex_state = 195}, + [4185] = {.lex_state = 179}, + [4186] = {.lex_state = 197}, + [4187] = {.lex_state = 199}, + [4188] = {.lex_state = 179}, [4189] = {.lex_state = 179}, - [4190] = {.lex_state = 179}, + [4190] = {.lex_state = 184}, [4191] = {.lex_state = 179}, [4192] = {.lex_state = 179}, [4193] = {.lex_state = 197}, - [4194] = {.lex_state = 198}, - [4195] = {.lex_state = 197}, - [4196] = {.lex_state = 179}, - [4197] = {.lex_state = 179}, + [4194] = {.lex_state = 197}, + [4195] = {.lex_state = 184}, + [4196] = {.lex_state = 199}, + [4197] = {.lex_state = 197}, [4198] = {.lex_state = 179}, - [4199] = {.lex_state = 197}, + [4199] = {.lex_state = 179}, [4200] = {.lex_state = 179}, [4201] = {.lex_state = 179}, - [4202] = {.lex_state = 179}, - [4203] = {.lex_state = 181}, - [4204] = {.lex_state = 179}, + [4202] = {.lex_state = 197}, + [4203] = {.lex_state = 179}, + [4204] = {.lex_state = 197}, [4205] = {.lex_state = 181}, [4206] = {.lex_state = 197}, - [4207] = {.lex_state = 197}, + [4207] = {.lex_state = 199}, [4208] = {.lex_state = 197}, [4209] = {.lex_state = 179}, - [4210] = {.lex_state = 179}, - [4211] = {.lex_state = 184}, - [4212] = {.lex_state = 180}, - [4213] = {.lex_state = 197}, - [4214] = {.lex_state = 199}, - [4215] = {.lex_state = 199}, - [4216] = {.lex_state = 197}, - [4217] = {.lex_state = 197}, + [4210] = {.lex_state = 197}, + [4211] = {.lex_state = 197}, + [4212] = {.lex_state = 198}, + [4213] = {.lex_state = 179}, + [4214] = {.lex_state = 181}, + [4215] = {.lex_state = 180}, + [4216] = {.lex_state = 180}, + [4217] = {.lex_state = 199}, [4218] = {.lex_state = 197}, [4219] = {.lex_state = 197}, - [4220] = {.lex_state = 197}, - [4221] = {.lex_state = 199}, + [4220] = {.lex_state = 180}, + [4221] = {.lex_state = 180}, [4222] = {.lex_state = 199}, - [4223] = {.lex_state = 180}, - [4224] = {.lex_state = 199}, - [4225] = {.lex_state = 179}, - [4226] = {.lex_state = 199}, - [4227] = {.lex_state = 180}, - [4228] = {.lex_state = 180}, - [4229] = {.lex_state = 179}, - [4230] = {.lex_state = 199}, + [4223] = {.lex_state = 199}, + [4224] = {.lex_state = 180}, + [4225] = {.lex_state = 199}, + [4226] = {.lex_state = 180}, + [4227] = {.lex_state = 197}, + [4228] = {.lex_state = 197}, + [4229] = {.lex_state = 197}, + [4230] = {.lex_state = 197}, [4231] = {.lex_state = 180}, [4232] = {.lex_state = 180}, - [4233] = {.lex_state = 180}, - [4234] = {.lex_state = 199}, + [4233] = {.lex_state = 199}, + [4234] = {.lex_state = 197}, [4235] = {.lex_state = 180}, - [4236] = {.lex_state = 180}, + [4236] = {.lex_state = 197}, [4237] = {.lex_state = 180}, [4238] = {.lex_state = 180}, [4239] = {.lex_state = 180}, - [4240] = {.lex_state = 199}, + [4240] = {.lex_state = 180}, [4241] = {.lex_state = 199}, - [4242] = {.lex_state = 180}, - [4243] = {.lex_state = 197}, - [4244] = {.lex_state = 199}, + [4242] = {.lex_state = 199}, + [4243] = {.lex_state = 180}, + [4244] = {.lex_state = 179}, [4245] = {.lex_state = 180}, - [4246] = {.lex_state = 180}, - [4247] = {.lex_state = 180}, + [4246] = {.lex_state = 179}, + [4247] = {.lex_state = 199}, [4248] = {.lex_state = 180}, [4249] = {.lex_state = 180}, - [4250] = {.lex_state = 199}, - [4251] = {.lex_state = 197}, + [4250] = {.lex_state = 180}, + [4251] = {.lex_state = 199}, [4252] = {.lex_state = 180}, [4253] = {.lex_state = 180}, - [4254] = {.lex_state = 198}, - [4255] = {.lex_state = 180}, - [4256] = {.lex_state = 180}, - [4257] = {.lex_state = 198}, - [4258] = {.lex_state = 179}, + [4254] = {.lex_state = 202}, + [4255] = {.lex_state = 199}, + [4256] = {.lex_state = 179}, + [4257] = {.lex_state = 180}, + [4258] = {.lex_state = 180}, [4259] = {.lex_state = 180}, [4260] = {.lex_state = 198}, - [4261] = {.lex_state = 198}, - [4262] = {.lex_state = 179}, + [4261] = {.lex_state = 180}, + [4262] = {.lex_state = 184}, [4263] = {.lex_state = 198}, - [4264] = {.lex_state = 202}, + [4264] = {.lex_state = 180}, [4265] = {.lex_state = 198}, - [4266] = {.lex_state = 184}, - [4267] = {.lex_state = 180}, - [4268] = {.lex_state = 180}, - [4269] = {.lex_state = 199}, - [4270] = {.lex_state = 180}, + [4266] = {.lex_state = 198}, + [4267] = {.lex_state = 179}, + [4268] = {.lex_state = 198}, + [4269] = {.lex_state = 202}, + [4270] = {.lex_state = 198}, [4271] = {.lex_state = 180}, [4272] = {.lex_state = 180}, - [4273] = {.lex_state = 198}, - [4274] = {.lex_state = 199}, + [4273] = {.lex_state = 180}, + [4274] = {.lex_state = 198}, [4275] = {.lex_state = 180}, - [4276] = {.lex_state = 184}, + [4276] = {.lex_state = 198}, [4277] = {.lex_state = 180}, [4278] = {.lex_state = 198}, - [4279] = {.lex_state = 202}, - [4280] = {.lex_state = 198}, - [4281] = {.lex_state = 198}, - [4282] = {.lex_state = 199}, + [4279] = {.lex_state = 184}, + [4280] = {.lex_state = 180}, + [4281] = {.lex_state = 180}, + [4282] = {.lex_state = 179}, [4283] = {.lex_state = 198}, - [4284] = {.lex_state = 180}, + [4284] = {.lex_state = 199}, [4285] = {.lex_state = 180}, - [4286] = {.lex_state = 198}, + [4286] = {.lex_state = 199}, [4287] = {.lex_state = 180}, - [4288] = {.lex_state = 180}, - [4289] = {.lex_state = 179}, + [4288] = {.lex_state = 199}, + [4289] = {.lex_state = 180}, [4290] = {.lex_state = 180}, [4291] = {.lex_state = 180}, - [4292] = {.lex_state = 199}, - [4293] = {.lex_state = 179}, - [4294] = {.lex_state = 199}, - [4295] = {.lex_state = 199}, + [4292] = {.lex_state = 179}, + [4293] = {.lex_state = 180}, + [4294] = {.lex_state = 180}, + [4295] = {.lex_state = 180}, [4296] = {.lex_state = 180}, - [4297] = {.lex_state = 180}, - [4298] = {.lex_state = 179}, - [4299] = {.lex_state = 180}, - [4300] = {.lex_state = 199}, - [4301] = {.lex_state = 180}, - [4302] = {.lex_state = 180}, + [4297] = {.lex_state = 199}, + [4298] = {.lex_state = 198}, + [4299] = {.lex_state = 199}, + [4300] = {.lex_state = 179}, + [4301] = {.lex_state = 198}, + [4302] = {.lex_state = 199}, [4303] = {.lex_state = 180}, - [4304] = {.lex_state = 198}, - [4305] = {.lex_state = 179}, - [4306] = {.lex_state = 180}, - [4307] = {.lex_state = 180}, + [4304] = {.lex_state = 180}, + [4305] = {.lex_state = 180}, + [4306] = {.lex_state = 199}, + [4307] = {.lex_state = 198}, [4308] = {.lex_state = 180}, - [4309] = {.lex_state = 199}, - [4310] = {.lex_state = 180}, - [4311] = {.lex_state = 181}, + [4309] = {.lex_state = 180}, + [4310] = {.lex_state = 179}, + [4311] = {.lex_state = 179}, [4312] = {.lex_state = 201}, - [4313] = {.lex_state = 199}, - [4314] = {.lex_state = 179}, - [4315] = {.lex_state = 179}, - [4316] = {.lex_state = 198}, - [4317] = {.lex_state = 179}, + [4313] = {.lex_state = 179}, + [4314] = {.lex_state = 184}, + [4315] = {.lex_state = 184}, + [4316] = {.lex_state = 181}, + [4317] = {.lex_state = 181}, [4318] = {.lex_state = 181}, - [4319] = {.lex_state = 181}, + [4319] = {.lex_state = 179}, [4320] = {.lex_state = 181}, - [4321] = {.lex_state = 201}, + [4321] = {.lex_state = 198}, [4322] = {.lex_state = 179}, - [4323] = {.lex_state = 179}, - [4324] = {.lex_state = 184}, + [4323] = {.lex_state = 184}, + [4324] = {.lex_state = 179}, [4325] = {.lex_state = 201}, - [4326] = {.lex_state = 201}, - [4327] = {.lex_state = 181}, - [4328] = {.lex_state = 179}, + [4326] = {.lex_state = 179}, + [4327] = {.lex_state = 179}, + [4328] = {.lex_state = 184}, [4329] = {.lex_state = 201}, - [4330] = {.lex_state = 184}, - [4331] = {.lex_state = 179}, + [4330] = {.lex_state = 199}, + [4331] = {.lex_state = 201}, [4332] = {.lex_state = 184}, - [4333] = {.lex_state = 179}, + [4333] = {.lex_state = 181}, [4334] = {.lex_state = 179}, [4335] = {.lex_state = 179}, - [4336] = {.lex_state = 201}, + [4336] = {.lex_state = 179}, [4337] = {.lex_state = 179}, - [4338] = {.lex_state = 201}, - [4339] = {.lex_state = 179}, - [4340] = {.lex_state = 198}, + [4338] = {.lex_state = 198}, + [4339] = {.lex_state = 181}, + [4340] = {.lex_state = 181}, [4341] = {.lex_state = 184}, - [4342] = {.lex_state = 181}, - [4343] = {.lex_state = 201}, - [4344] = {.lex_state = 179}, + [4342] = {.lex_state = 179}, + [4343] = {.lex_state = 179}, + [4344] = {.lex_state = 201}, [4345] = {.lex_state = 181}, - [4346] = {.lex_state = 181}, - [4347] = {.lex_state = 179}, - [4348] = {.lex_state = 184}, + [4346] = {.lex_state = 201}, + [4347] = {.lex_state = 201}, + [4348] = {.lex_state = 179}, [4349] = {.lex_state = 201}, [4350] = {.lex_state = 184}, - [4351] = {.lex_state = 184}, + [4351] = {.lex_state = 201}, [4352] = {.lex_state = 184}, [4353] = {.lex_state = 179}, [4354] = {.lex_state = 179}, [4355] = {.lex_state = 198}, [4356] = {.lex_state = 198}, [4357] = {.lex_state = 199}, - [4358] = {.lex_state = 195}, - [4359] = {.lex_state = 199}, - [4360] = {.lex_state = 199}, - [4361] = {.lex_state = 199}, + [4358] = {.lex_state = 199}, + [4359] = {.lex_state = 198}, + [4360] = {.lex_state = 198}, + [4361] = {.lex_state = 198}, [4362] = {.lex_state = 199}, [4363] = {.lex_state = 198}, - [4364] = {.lex_state = 198}, - [4365] = {.lex_state = 198}, - [4366] = {.lex_state = 199}, - [4367] = {.lex_state = 199}, + [4364] = {.lex_state = 199}, + [4365] = {.lex_state = 199}, + [4366] = {.lex_state = 198}, + [4367] = {.lex_state = 198}, [4368] = {.lex_state = 198}, - [4369] = {.lex_state = 198}, - [4370] = {.lex_state = 198}, - [4371] = {.lex_state = 198}, - [4372] = {.lex_state = 198}, - [4373] = {.lex_state = 199}, + [4369] = {.lex_state = 199}, + [4370] = {.lex_state = 195}, + [4371] = {.lex_state = 199}, + [4372] = {.lex_state = 199}, + [4373] = {.lex_state = 198}, [4374] = {.lex_state = 199}, - [4375] = {.lex_state = 199}, - [4376] = {.lex_state = 199}, - [4377] = {.lex_state = 198}, - [4378] = {.lex_state = 198}, + [4375] = {.lex_state = 198}, + [4376] = {.lex_state = 198}, + [4377] = {.lex_state = 199}, + [4378] = {.lex_state = 199}, [4379] = {.lex_state = 199}, [4380] = {.lex_state = 198}, [4381] = {.lex_state = 184}, - [4382] = {.lex_state = 184}, - [4383] = {.lex_state = 184}, + [4382] = {.lex_state = 197}, + [4383] = {.lex_state = 180}, [4384] = {.lex_state = 198}, - [4385] = {.lex_state = 184}, - [4386] = {.lex_state = 198}, + [4385] = {.lex_state = 198}, + [4386] = {.lex_state = 201}, [4387] = {.lex_state = 198}, - [4388] = {.lex_state = 201}, - [4389] = {.lex_state = 198}, - [4390] = {.lex_state = 180}, - [4391] = {.lex_state = 198}, + [4388] = {.lex_state = 184}, + [4389] = {.lex_state = 184}, + [4390] = {.lex_state = 198}, + [4391] = {.lex_state = 180}, [4392] = {.lex_state = 184}, - [4393] = {.lex_state = 181}, + [4393] = {.lex_state = 184}, [4394] = {.lex_state = 184}, - [4395] = {.lex_state = 184}, - [4396] = {.lex_state = 197}, + [4395] = {.lex_state = 198}, + [4396] = {.lex_state = 198}, [4397] = {.lex_state = 198}, [4398] = {.lex_state = 198}, [4399] = {.lex_state = 184}, [4400] = {.lex_state = 198}, - [4401] = {.lex_state = 180}, - [4402] = {.lex_state = 198}, + [4401] = {.lex_state = 181}, + [4402] = {.lex_state = 184}, [4403] = {.lex_state = 198}, - [4404] = {.lex_state = 178}, - [4405] = {.lex_state = 184}, - [4406] = {.lex_state = 201}, + [4404] = {.lex_state = 197}, + [4405] = {.lex_state = 178}, + [4406] = {.lex_state = 199}, [4407] = {.lex_state = 178}, - [4408] = {.lex_state = 199}, - [4409] = {.lex_state = 198}, - [4410] = {.lex_state = 184}, - [4411] = {.lex_state = 198}, - [4412] = {.lex_state = 187}, - [4413] = {.lex_state = 197}, - [4414] = {.lex_state = 178}, - [4415] = {.lex_state = 199}, - [4416] = {.lex_state = 197}, - [4417] = {.lex_state = 197}, - [4418] = {.lex_state = 201}, + [4408] = {.lex_state = 201}, + [4409] = {.lex_state = 199}, + [4410] = {.lex_state = 198}, + [4411] = {.lex_state = 184}, + [4412] = {.lex_state = 197}, + [4413] = {.lex_state = 187}, + [4414] = {.lex_state = 199}, + [4415] = {.lex_state = 178}, + [4416] = {.lex_state = 187}, + [4417] = {.lex_state = 201}, + [4418] = {.lex_state = 197}, [4419] = {.lex_state = 178}, - [4420] = {.lex_state = 187}, - [4421] = {.lex_state = 178}, - [4422] = {.lex_state = 199}, + [4420] = {.lex_state = 199}, + [4421] = {.lex_state = 184}, + [4422] = {.lex_state = 178}, [4423] = {.lex_state = 178}, - [4424] = {.lex_state = 199}, - [4425] = {.lex_state = 198}, + [4424] = {.lex_state = 198}, + [4425] = {.lex_state = 154}, [4426] = {.lex_state = 199}, - [4427] = {.lex_state = 154}, - [4428] = {.lex_state = 199}, - [4429] = {.lex_state = 198}, - [4430] = {.lex_state = 198}, - [4431] = {.lex_state = 184}, - [4432] = {.lex_state = 179}, - [4433] = {.lex_state = 181}, - [4434] = {.lex_state = 143}, - [4435] = {.lex_state = 154}, - [4436] = {.lex_state = 198}, + [4427] = {.lex_state = 199}, + [4428] = {.lex_state = 198}, + [4429] = {.lex_state = 199}, + [4430] = {.lex_state = 184}, + [4431] = {.lex_state = 143}, + [4432] = {.lex_state = 181}, + [4433] = {.lex_state = 179}, + [4434] = {.lex_state = 198}, + [4435] = {.lex_state = 198}, + [4436] = {.lex_state = 181}, [4437] = {.lex_state = 198}, - [4438] = {.lex_state = 73}, - [4439] = {.lex_state = 184}, + [4438] = {.lex_state = 154}, + [4439] = {.lex_state = 199}, [4440] = {.lex_state = 143}, - [4441] = {.lex_state = 179}, - [4442] = {.lex_state = 179}, - [4443] = {.lex_state = 199}, - [4444] = {.lex_state = 181}, - [4445] = {.lex_state = 154}, - [4446] = {.lex_state = 181}, - [4447] = {.lex_state = 199}, - [4448] = {.lex_state = 198}, - [4449] = {.lex_state = 178}, + [4441] = {.lex_state = 71}, + [4442] = {.lex_state = 184}, + [4443] = {.lex_state = 154}, + [4444] = {.lex_state = 179}, + [4445] = {.lex_state = 198}, + [4446] = {.lex_state = 179}, + [4447] = {.lex_state = 181}, + [4448] = {.lex_state = 178}, + [4449] = {.lex_state = 154}, [4450] = {.lex_state = 178}, [4451] = {.lex_state = 178}, [4452] = {.lex_state = 178}, - [4453] = {.lex_state = 154}, + [4453] = {.lex_state = 178}, [4454] = {.lex_state = 154}, [4455] = {.lex_state = 154}, [4456] = {.lex_state = 178}, [4457] = {.lex_state = 178}, [4458] = {.lex_state = 154}, [4459] = {.lex_state = 154}, - [4460] = {.lex_state = 178}, + [4460] = {.lex_state = 154}, [4461] = {.lex_state = 154}, - [4462] = {.lex_state = 154}, - [4463] = {.lex_state = 178}, - [4464] = {.lex_state = 154}, + [4462] = {.lex_state = 178}, + [4463] = {.lex_state = 154}, + [4464] = {.lex_state = 178}, [4465] = {.lex_state = 154}, [4466] = {.lex_state = 154}, - [4467] = {.lex_state = 178}, + [4467] = {.lex_state = 154}, [4468] = {.lex_state = 154}, - [4469] = {.lex_state = 154}, + [4469] = {.lex_state = 178}, [4470] = {.lex_state = 178}, [4471] = {.lex_state = 178}, - [4472] = {.lex_state = 178}, - [4473] = {.lex_state = 143}, + [4472] = {.lex_state = 143}, + [4473] = {.lex_state = 178}, [4474] = {.lex_state = 178}, [4475] = {.lex_state = 178}, [4476] = {.lex_state = 178}, @@ -22361,12 +22379,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4479] = {.lex_state = 154}, [4480] = {.lex_state = 178}, [4481] = {.lex_state = 154}, - [4482] = {.lex_state = 198}, - [4483] = {.lex_state = 178}, - [4484] = {.lex_state = 154}, - [4485] = {.lex_state = 181}, + [4482] = {.lex_state = 178}, + [4483] = {.lex_state = 154}, + [4484] = {.lex_state = 178}, + [4485] = {.lex_state = 198}, [4486] = {.lex_state = 198}, - [4487] = {.lex_state = 178}, + [4487] = {.lex_state = 143}, [4488] = {.lex_state = 198}, [4489] = {.lex_state = 198}, [4490] = {.lex_state = 198}, @@ -22374,7 +22392,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4492] = {.lex_state = 178}, [4493] = {.lex_state = 178}, [4494] = {.lex_state = 178}, - [4495] = {.lex_state = 143}, + [4495] = {.lex_state = 198}, [4496] = {.lex_state = 198}, [4497] = {.lex_state = 198}, [4498] = {.lex_state = 198}, @@ -22384,45 +22402,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4502] = {.lex_state = 198}, [4503] = {.lex_state = 198}, [4504] = {.lex_state = 198}, - [4505] = {.lex_state = 198}, - [4506] = {.lex_state = 143}, + [4505] = {.lex_state = 143}, + [4506] = {.lex_state = 198}, [4507] = {.lex_state = 198}, - [4508] = {.lex_state = 198}, - [4509] = {.lex_state = 143}, + [4508] = {.lex_state = 143}, + [4509] = {.lex_state = 198}, [4510] = {.lex_state = 143}, [4511] = {.lex_state = 143}, [4512] = {.lex_state = 143}, [4513] = {.lex_state = 143}, - [4514] = {.lex_state = 198}, + [4514] = {.lex_state = 143}, [4515] = {.lex_state = 143}, [4516] = {.lex_state = 154}, - [4517] = {.lex_state = 143}, + [4517] = {.lex_state = 178}, [4518] = {.lex_state = 143}, [4519] = {.lex_state = 143}, [4520] = {.lex_state = 143}, [4521] = {.lex_state = 143}, [4522] = {.lex_state = 154}, [4523] = {.lex_state = 154}, - [4524] = {.lex_state = 143}, - [4525] = {.lex_state = 154}, + [4524] = {.lex_state = 154}, + [4525] = {.lex_state = 143}, [4526] = {.lex_state = 178}, - [4527] = {.lex_state = 178}, - [4528] = {.lex_state = 198}, - [4529] = {.lex_state = 199}, + [4527] = {.lex_state = 198}, + [4528] = {.lex_state = 199}, + [4529] = {.lex_state = 198}, [4530] = {.lex_state = 198}, [4531] = {.lex_state = 198}, [4532] = {.lex_state = 198}, [4533] = {.lex_state = 198}, [4534] = {.lex_state = 198}, [4535] = {.lex_state = 198}, - [4536] = {.lex_state = 198}, + [4536] = {.lex_state = 178}, [4537] = {.lex_state = 198}, [4538] = {.lex_state = 178}, - [4539] = {.lex_state = 178}, + [4539] = {.lex_state = 143}, [4540] = {.lex_state = 198}, - [4541] = {.lex_state = 143}, + [4541] = {.lex_state = 198}, [4542] = {.lex_state = 198}, - [4543] = {.lex_state = 198}, + [4543] = {.lex_state = 181}, [4544] = {.lex_state = 198}, [4545] = {.lex_state = 198}, [4546] = {.lex_state = 198}, @@ -22430,17 +22448,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4548] = {.lex_state = 198}, [4549] = {.lex_state = 198}, [4550] = {.lex_state = 198}, - [4551] = {.lex_state = 198}, + [4551] = {.lex_state = 178}, [4552] = {.lex_state = 198}, [4553] = {.lex_state = 198}, [4554] = {.lex_state = 198}, [4555] = {.lex_state = 198}, - [4556] = {.lex_state = 198}, - [4557] = {.lex_state = 178}, + [4556] = {.lex_state = 178}, + [4557] = {.lex_state = 198}, [4558] = {.lex_state = 198}, [4559] = {.lex_state = 184}, [4560] = {.lex_state = 184}, - [4561] = {.lex_state = 143}, + [4561] = {.lex_state = 198}, [4562] = {.lex_state = 198}, [4563] = {.lex_state = 198}, [4564] = {.lex_state = 198}, @@ -22453,31 +22471,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4571] = {.lex_state = 178}, [4572] = {.lex_state = 198}, [4573] = {.lex_state = 198}, - [4574] = {.lex_state = 143}, + [4574] = {.lex_state = 198}, [4575] = {.lex_state = 198}, - [4576] = {.lex_state = 198}, - [4577] = {.lex_state = 198}, - [4578] = {.lex_state = 143}, + [4576] = {.lex_state = 143}, + [4577] = {.lex_state = 143}, + [4578] = {.lex_state = 198}, [4579] = {.lex_state = 198}, [4580] = {.lex_state = 198}, [4581] = {.lex_state = 198}, - [4582] = {.lex_state = 143}, - [4583] = {.lex_state = 178}, + [4582] = {.lex_state = 198}, + [4583] = {.lex_state = 143}, [4584] = {.lex_state = 178}, - [4585] = {.lex_state = 178}, - [4586] = {.lex_state = 199}, + [4585] = {.lex_state = 143}, + [4586] = {.lex_state = 178}, [4587] = {.lex_state = 178}, - [4588] = {.lex_state = 154}, - [4589] = {.lex_state = 178}, + [4588] = {.lex_state = 143}, + [4589] = {.lex_state = 154}, [4590] = {.lex_state = 199}, - [4591] = {.lex_state = 143}, + [4591] = {.lex_state = 178}, [4592] = {.lex_state = 178}, - [4593] = {.lex_state = 143}, + [4593] = {.lex_state = 199}, [4594] = {.lex_state = 143}, [4595] = {.lex_state = 143}, [4596] = {.lex_state = 143}, [4597] = {.lex_state = 143}, - [4598] = {.lex_state = 178}, + [4598] = {.lex_state = 143}, [4599] = {.lex_state = 143}, [4600] = {.lex_state = 178}, [4601] = {.lex_state = 178}, @@ -22489,153 +22507,153 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4607] = {.lex_state = 143}, [4608] = {.lex_state = 143}, [4609] = {.lex_state = 143}, - [4610] = {.lex_state = 163}, - [4611] = {.lex_state = 163}, - [4612] = {.lex_state = 73}, - [4613] = {.lex_state = 163}, - [4614] = {.lex_state = 73}, - [4615] = {.lex_state = 73}, - [4616] = {.lex_state = 73}, - [4617] = {.lex_state = 163}, - [4618] = {.lex_state = 163}, - [4619] = {.lex_state = 73}, - [4620] = {.lex_state = 73}, - [4621] = {.lex_state = 73}, - [4622] = {.lex_state = 163}, - [4623] = {.lex_state = 163}, - [4624] = {.lex_state = 73}, - [4625] = {.lex_state = 73}, - [4626] = {.lex_state = 163}, + [4610] = {.lex_state = 155}, + [4611] = {.lex_state = 155}, + [4612] = {.lex_state = 71}, + [4613] = {.lex_state = 155}, + [4614] = {.lex_state = 71}, + [4615] = {.lex_state = 71}, + [4616] = {.lex_state = 71}, + [4617] = {.lex_state = 155}, + [4618] = {.lex_state = 155}, + [4619] = {.lex_state = 71}, + [4620] = {.lex_state = 71}, + [4621] = {.lex_state = 71}, + [4622] = {.lex_state = 155}, + [4623] = {.lex_state = 155}, + [4624] = {.lex_state = 71}, + [4625] = {.lex_state = 71}, + [4626] = {.lex_state = 155}, [4627] = {.lex_state = 154}, [4628] = {.lex_state = 199}, - [4629] = {.lex_state = 163}, - [4630] = {.lex_state = 163}, - [4631] = {.lex_state = 73}, - [4632] = {.lex_state = 73}, - [4633] = {.lex_state = 163}, - [4634] = {.lex_state = 73}, - [4635] = {.lex_state = 73}, - [4636] = {.lex_state = 163}, - [4637] = {.lex_state = 163}, - [4638] = {.lex_state = 73}, - [4639] = {.lex_state = 163}, - [4640] = {.lex_state = 73}, - [4641] = {.lex_state = 73}, - [4642] = {.lex_state = 73}, - [4643] = {.lex_state = 163}, - [4644] = {.lex_state = 163}, - [4645] = {.lex_state = 163}, - [4646] = {.lex_state = 163}, - [4647] = {.lex_state = 163}, - [4648] = {.lex_state = 163}, - [4649] = {.lex_state = 73}, - [4650] = {.lex_state = 73}, - [4651] = {.lex_state = 73}, - [4652] = {.lex_state = 163}, - [4653] = {.lex_state = 163}, - [4654] = {.lex_state = 163}, - [4655] = {.lex_state = 163}, - [4656] = {.lex_state = 73}, - [4657] = {.lex_state = 163}, + [4629] = {.lex_state = 155}, + [4630] = {.lex_state = 155}, + [4631] = {.lex_state = 71}, + [4632] = {.lex_state = 71}, + [4633] = {.lex_state = 155}, + [4634] = {.lex_state = 71}, + [4635] = {.lex_state = 71}, + [4636] = {.lex_state = 155}, + [4637] = {.lex_state = 155}, + [4638] = {.lex_state = 71}, + [4639] = {.lex_state = 155}, + [4640] = {.lex_state = 71}, + [4641] = {.lex_state = 71}, + [4642] = {.lex_state = 71}, + [4643] = {.lex_state = 155}, + [4644] = {.lex_state = 155}, + [4645] = {.lex_state = 155}, + [4646] = {.lex_state = 155}, + [4647] = {.lex_state = 155}, + [4648] = {.lex_state = 155}, + [4649] = {.lex_state = 71}, + [4650] = {.lex_state = 71}, + [4651] = {.lex_state = 71}, + [4652] = {.lex_state = 155}, + [4653] = {.lex_state = 155}, + [4654] = {.lex_state = 155}, + [4655] = {.lex_state = 155}, + [4656] = {.lex_state = 71}, + [4657] = {.lex_state = 155}, [4658] = {.lex_state = 181}, - [4659] = {.lex_state = 163}, - [4660] = {.lex_state = 73}, - [4661] = {.lex_state = 163}, - [4662] = {.lex_state = 163}, - [4663] = {.lex_state = 163}, - [4664] = {.lex_state = 163}, - [4665] = {.lex_state = 163}, - [4666] = {.lex_state = 163}, - [4667] = {.lex_state = 163}, - [4668] = {.lex_state = 163}, - [4669] = {.lex_state = 163}, - [4670] = {.lex_state = 163}, - [4671] = {.lex_state = 163}, - [4672] = {.lex_state = 73}, - [4673] = {.lex_state = 163}, - [4674] = {.lex_state = 73}, + [4659] = {.lex_state = 155}, + [4660] = {.lex_state = 71}, + [4661] = {.lex_state = 155}, + [4662] = {.lex_state = 155}, + [4663] = {.lex_state = 155}, + [4664] = {.lex_state = 155}, + [4665] = {.lex_state = 155}, + [4666] = {.lex_state = 155}, + [4667] = {.lex_state = 155}, + [4668] = {.lex_state = 155}, + [4669] = {.lex_state = 155}, + [4670] = {.lex_state = 155}, + [4671] = {.lex_state = 155}, + [4672] = {.lex_state = 71}, + [4673] = {.lex_state = 155}, + [4674] = {.lex_state = 71}, [4675] = {.lex_state = 199}, - [4676] = {.lex_state = 163}, - [4677] = {.lex_state = 163}, - [4678] = {.lex_state = 163}, + [4676] = {.lex_state = 155}, + [4677] = {.lex_state = 155}, + [4678] = {.lex_state = 155}, [4679] = {.lex_state = 199}, - [4680] = {.lex_state = 163}, - [4681] = {.lex_state = 163}, + [4680] = {.lex_state = 155}, + [4681] = {.lex_state = 155}, [4682] = {.lex_state = 154}, - [4683] = {.lex_state = 73}, - [4684] = {.lex_state = 163}, - [4685] = {.lex_state = 163}, - [4686] = {.lex_state = 163}, - [4687] = {.lex_state = 163}, - [4688] = {.lex_state = 73}, - [4689] = {.lex_state = 163}, - [4690] = {.lex_state = 163}, - [4691] = {.lex_state = 163}, - [4692] = {.lex_state = 163}, - [4693] = {.lex_state = 73}, - [4694] = {.lex_state = 163}, - [4695] = {.lex_state = 163}, + [4683] = {.lex_state = 71}, + [4684] = {.lex_state = 155}, + [4685] = {.lex_state = 155}, + [4686] = {.lex_state = 155}, + [4687] = {.lex_state = 155}, + [4688] = {.lex_state = 71}, + [4689] = {.lex_state = 155}, + [4690] = {.lex_state = 155}, + [4691] = {.lex_state = 155}, + [4692] = {.lex_state = 155}, + [4693] = {.lex_state = 71}, + [4694] = {.lex_state = 155}, + [4695] = {.lex_state = 155}, [4696] = {.lex_state = 197}, - [4697] = {.lex_state = 163}, - [4698] = {.lex_state = 163}, - [4699] = {.lex_state = 163}, - [4700] = {.lex_state = 163}, - [4701] = {.lex_state = 73}, + [4697] = {.lex_state = 155}, + [4698] = {.lex_state = 155}, + [4699] = {.lex_state = 155}, + [4700] = {.lex_state = 155}, + [4701] = {.lex_state = 71}, [4702] = {.lex_state = 197}, - [4703] = {.lex_state = 163}, - [4704] = {.lex_state = 163}, - [4705] = {.lex_state = 163}, - [4706] = {.lex_state = 163}, - [4707] = {.lex_state = 163}, - [4708] = {.lex_state = 163}, - [4709] = {.lex_state = 163}, - [4710] = {.lex_state = 163}, - [4711] = {.lex_state = 163}, - [4712] = {.lex_state = 163}, - [4713] = {.lex_state = 163}, - [4714] = {.lex_state = 163}, - [4715] = {.lex_state = 163}, - [4716] = {.lex_state = 163}, - [4717] = {.lex_state = 163}, - [4718] = {.lex_state = 163}, - [4719] = {.lex_state = 163}, + [4703] = {.lex_state = 155}, + [4704] = {.lex_state = 155}, + [4705] = {.lex_state = 155}, + [4706] = {.lex_state = 155}, + [4707] = {.lex_state = 155}, + [4708] = {.lex_state = 155}, + [4709] = {.lex_state = 155}, + [4710] = {.lex_state = 155}, + [4711] = {.lex_state = 155}, + [4712] = {.lex_state = 155}, + [4713] = {.lex_state = 155}, + [4714] = {.lex_state = 155}, + [4715] = {.lex_state = 155}, + [4716] = {.lex_state = 155}, + [4717] = {.lex_state = 155}, + [4718] = {.lex_state = 155}, + [4719] = {.lex_state = 155}, [4720] = {.lex_state = 179}, - [4721] = {.lex_state = 163}, - [4722] = {.lex_state = 163}, - [4723] = {.lex_state = 163}, - [4724] = {.lex_state = 163}, - [4725] = {.lex_state = 163}, + [4721] = {.lex_state = 155}, + [4722] = {.lex_state = 155}, + [4723] = {.lex_state = 155}, + [4724] = {.lex_state = 155}, + [4725] = {.lex_state = 155}, [4726] = {.lex_state = 198}, - [4727] = {.lex_state = 163}, - [4728] = {.lex_state = 163}, + [4727] = {.lex_state = 155}, + [4728] = {.lex_state = 155}, [4729] = {.lex_state = 179}, - [4730] = {.lex_state = 163}, + [4730] = {.lex_state = 155}, [4731] = {.lex_state = 179}, - [4732] = {.lex_state = 163}, - [4733] = {.lex_state = 163}, - [4734] = {.lex_state = 163}, - [4735] = {.lex_state = 163}, - [4736] = {.lex_state = 163}, - [4737] = {.lex_state = 163}, - [4738] = {.lex_state = 163}, - [4739] = {.lex_state = 163}, - [4740] = {.lex_state = 163}, - [4741] = {.lex_state = 163}, - [4742] = {.lex_state = 163}, - [4743] = {.lex_state = 163}, - [4744] = {.lex_state = 163}, - [4745] = {.lex_state = 163}, - [4746] = {.lex_state = 163}, - [4747] = {.lex_state = 163}, - [4748] = {.lex_state = 163}, - [4749] = {.lex_state = 163}, - [4750] = {.lex_state = 163}, - [4751] = {.lex_state = 163}, + [4732] = {.lex_state = 155}, + [4733] = {.lex_state = 155}, + [4734] = {.lex_state = 155}, + [4735] = {.lex_state = 155}, + [4736] = {.lex_state = 155}, + [4737] = {.lex_state = 155}, + [4738] = {.lex_state = 155}, + [4739] = {.lex_state = 155}, + [4740] = {.lex_state = 155}, + [4741] = {.lex_state = 155}, + [4742] = {.lex_state = 155}, + [4743] = {.lex_state = 155}, + [4744] = {.lex_state = 155}, + [4745] = {.lex_state = 155}, + [4746] = {.lex_state = 155}, + [4747] = {.lex_state = 155}, + [4748] = {.lex_state = 155}, + [4749] = {.lex_state = 155}, + [4750] = {.lex_state = 155}, + [4751] = {.lex_state = 155}, [4752] = {.lex_state = 184}, - [4753] = {.lex_state = 163}, - [4754] = {.lex_state = 163}, + [4753] = {.lex_state = 155}, + [4754] = {.lex_state = 155}, [4755] = {.lex_state = 179}, - [4756] = {.lex_state = 163}, + [4756] = {.lex_state = 155}, [4757] = {.lex_state = 179}, [4758] = {.lex_state = 197}, [4759] = {.lex_state = 141}, @@ -22653,14 +22671,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4771] = {.lex_state = 179}, [4772] = {.lex_state = 184}, [4773] = {.lex_state = 141}, - [4774] = {.lex_state = 163}, + [4774] = {.lex_state = 155}, [4775] = {.lex_state = 141}, [4776] = {.lex_state = 184}, [4777] = {.lex_state = 141}, - [4778] = {.lex_state = 163}, + [4778] = {.lex_state = 155}, [4779] = {.lex_state = 184}, [4780] = {.lex_state = 184}, - [4781] = {.lex_state = 163}, + [4781] = {.lex_state = 155}, [4782] = {.lex_state = 141}, [4783] = {.lex_state = 184}, [4784] = {.lex_state = 197}, @@ -22670,110 +22688,110 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4788] = {.lex_state = 197}, [4789] = {.lex_state = 197}, [4790] = {.lex_state = 184}, - [4791] = {.lex_state = 163}, - [4792] = {.lex_state = 163}, - [4793] = {.lex_state = 163}, - [4794] = {.lex_state = 163}, - [4795] = {.lex_state = 163}, - [4796] = {.lex_state = 163}, - [4797] = {.lex_state = 163}, - [4798] = {.lex_state = 163}, - [4799] = {.lex_state = 163}, - [4800] = {.lex_state = 163}, - [4801] = {.lex_state = 163}, - [4802] = {.lex_state = 163}, - [4803] = {.lex_state = 163}, - [4804] = {.lex_state = 163}, - [4805] = {.lex_state = 163}, - [4806] = {.lex_state = 163}, - [4807] = {.lex_state = 163}, - [4808] = {.lex_state = 163}, - [4809] = {.lex_state = 163}, - [4810] = {.lex_state = 163}, - [4811] = {.lex_state = 163}, + [4791] = {.lex_state = 155}, + [4792] = {.lex_state = 155}, + [4793] = {.lex_state = 155}, + [4794] = {.lex_state = 155}, + [4795] = {.lex_state = 155}, + [4796] = {.lex_state = 155}, + [4797] = {.lex_state = 155}, + [4798] = {.lex_state = 155}, + [4799] = {.lex_state = 155}, + [4800] = {.lex_state = 155}, + [4801] = {.lex_state = 155}, + [4802] = {.lex_state = 155}, + [4803] = {.lex_state = 155}, + [4804] = {.lex_state = 155}, + [4805] = {.lex_state = 155}, + [4806] = {.lex_state = 155}, + [4807] = {.lex_state = 155}, + [4808] = {.lex_state = 155}, + [4809] = {.lex_state = 155}, + [4810] = {.lex_state = 155}, + [4811] = {.lex_state = 155}, [4812] = {.lex_state = 199}, - [4813] = {.lex_state = 163}, - [4814] = {.lex_state = 163}, - [4815] = {.lex_state = 163}, - [4816] = {.lex_state = 163}, - [4817] = {.lex_state = 163}, - [4818] = {.lex_state = 163}, - [4819] = {.lex_state = 163}, - [4820] = {.lex_state = 163}, - [4821] = {.lex_state = 163}, - [4822] = {.lex_state = 163}, - [4823] = {.lex_state = 163}, - [4824] = {.lex_state = 163}, - [4825] = {.lex_state = 163}, - [4826] = {.lex_state = 163}, - [4827] = {.lex_state = 163}, - [4828] = {.lex_state = 163}, - [4829] = {.lex_state = 163}, - [4830] = {.lex_state = 163}, - [4831] = {.lex_state = 163}, - [4832] = {.lex_state = 163}, - [4833] = {.lex_state = 163}, - [4834] = {.lex_state = 163}, - [4835] = {.lex_state = 163}, - [4836] = {.lex_state = 163}, - [4837] = {.lex_state = 163}, - [4838] = {.lex_state = 163}, - [4839] = {.lex_state = 163}, - [4840] = {.lex_state = 163}, - [4841] = {.lex_state = 163}, - [4842] = {.lex_state = 163}, - [4843] = {.lex_state = 163}, - [4844] = {.lex_state = 163}, - [4845] = {.lex_state = 163}, - [4846] = {.lex_state = 163}, - [4847] = {.lex_state = 163}, - [4848] = {.lex_state = 163}, - [4849] = {.lex_state = 163}, - [4850] = {.lex_state = 163}, - [4851] = {.lex_state = 163}, - [4852] = {.lex_state = 163}, - [4853] = {.lex_state = 163}, - [4854] = {.lex_state = 163}, - [4855] = {.lex_state = 163}, - [4856] = {.lex_state = 163}, - [4857] = {.lex_state = 163}, - [4858] = {.lex_state = 163}, - [4859] = {.lex_state = 163}, - [4860] = {.lex_state = 163}, - [4861] = {.lex_state = 163}, - [4862] = {.lex_state = 163}, - [4863] = {.lex_state = 163}, - [4864] = {.lex_state = 163}, - [4865] = {.lex_state = 163}, - [4866] = {.lex_state = 163}, - [4867] = {.lex_state = 163}, - [4868] = {.lex_state = 163}, - [4869] = {.lex_state = 163}, - [4870] = {.lex_state = 163}, - [4871] = {.lex_state = 163}, - [4872] = {.lex_state = 163}, - [4873] = {.lex_state = 163}, - [4874] = {.lex_state = 163}, - [4875] = {.lex_state = 163}, - [4876] = {.lex_state = 163}, - [4877] = {.lex_state = 163}, - [4878] = {.lex_state = 163}, - [4879] = {.lex_state = 163}, - [4880] = {.lex_state = 163}, - [4881] = {.lex_state = 163}, - [4882] = {.lex_state = 163}, - [4883] = {.lex_state = 163}, - [4884] = {.lex_state = 163}, - [4885] = {.lex_state = 163}, - [4886] = {.lex_state = 163}, - [4887] = {.lex_state = 163}, - [4888] = {.lex_state = 163}, + [4813] = {.lex_state = 155}, + [4814] = {.lex_state = 155}, + [4815] = {.lex_state = 155}, + [4816] = {.lex_state = 155}, + [4817] = {.lex_state = 155}, + [4818] = {.lex_state = 155}, + [4819] = {.lex_state = 155}, + [4820] = {.lex_state = 155}, + [4821] = {.lex_state = 155}, + [4822] = {.lex_state = 155}, + [4823] = {.lex_state = 155}, + [4824] = {.lex_state = 155}, + [4825] = {.lex_state = 155}, + [4826] = {.lex_state = 155}, + [4827] = {.lex_state = 155}, + [4828] = {.lex_state = 155}, + [4829] = {.lex_state = 155}, + [4830] = {.lex_state = 155}, + [4831] = {.lex_state = 155}, + [4832] = {.lex_state = 155}, + [4833] = {.lex_state = 155}, + [4834] = {.lex_state = 155}, + [4835] = {.lex_state = 155}, + [4836] = {.lex_state = 155}, + [4837] = {.lex_state = 155}, + [4838] = {.lex_state = 155}, + [4839] = {.lex_state = 155}, + [4840] = {.lex_state = 155}, + [4841] = {.lex_state = 155}, + [4842] = {.lex_state = 155}, + [4843] = {.lex_state = 155}, + [4844] = {.lex_state = 155}, + [4845] = {.lex_state = 155}, + [4846] = {.lex_state = 155}, + [4847] = {.lex_state = 155}, + [4848] = {.lex_state = 155}, + [4849] = {.lex_state = 155}, + [4850] = {.lex_state = 155}, + [4851] = {.lex_state = 155}, + [4852] = {.lex_state = 155}, + [4853] = {.lex_state = 155}, + [4854] = {.lex_state = 155}, + [4855] = {.lex_state = 155}, + [4856] = {.lex_state = 155}, + [4857] = {.lex_state = 155}, + [4858] = {.lex_state = 155}, + [4859] = {.lex_state = 155}, + [4860] = {.lex_state = 155}, + [4861] = {.lex_state = 155}, + [4862] = {.lex_state = 155}, + [4863] = {.lex_state = 155}, + [4864] = {.lex_state = 155}, + [4865] = {.lex_state = 155}, + [4866] = {.lex_state = 155}, + [4867] = {.lex_state = 155}, + [4868] = {.lex_state = 155}, + [4869] = {.lex_state = 155}, + [4870] = {.lex_state = 155}, + [4871] = {.lex_state = 155}, + [4872] = {.lex_state = 155}, + [4873] = {.lex_state = 155}, + [4874] = {.lex_state = 155}, + [4875] = {.lex_state = 155}, + [4876] = {.lex_state = 155}, + [4877] = {.lex_state = 155}, + [4878] = {.lex_state = 155}, + [4879] = {.lex_state = 155}, + [4880] = {.lex_state = 155}, + [4881] = {.lex_state = 155}, + [4882] = {.lex_state = 155}, + [4883] = {.lex_state = 155}, + [4884] = {.lex_state = 155}, + [4885] = {.lex_state = 155}, + [4886] = {.lex_state = 155}, + [4887] = {.lex_state = 155}, + [4888] = {.lex_state = 155}, [4889] = {.lex_state = 0}, [4890] = {.lex_state = 179}, - [4891] = {.lex_state = 163}, + [4891] = {.lex_state = 155}, [4892] = {.lex_state = 141}, [4893] = {.lex_state = 179}, - [4894] = {.lex_state = 163}, + [4894] = {.lex_state = 155}, [4895] = {.lex_state = 179}, [4896] = {.lex_state = 141}, [4897] = {.lex_state = 0}, @@ -22783,16 +22801,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4901] = {.lex_state = 179}, [4902] = {.lex_state = 179}, [4903] = {.lex_state = 0}, - [4904] = {.lex_state = 163}, + [4904] = {.lex_state = 155}, [4905] = {.lex_state = 179}, - [4906] = {.lex_state = 163}, + [4906] = {.lex_state = 155}, [4907] = {.lex_state = 179}, [4908] = {.lex_state = 141}, [4909] = {.lex_state = 179}, [4910] = {.lex_state = 141}, - [4911] = {.lex_state = 163}, + [4911] = {.lex_state = 155}, [4912] = {.lex_state = 179}, - [4913] = {.lex_state = 163}, + [4913] = {.lex_state = 155}, [4914] = {.lex_state = 179}, [4915] = {.lex_state = 179}, [4916] = {.lex_state = 179}, @@ -22801,33 +22819,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4919] = {.lex_state = 141}, [4920] = {.lex_state = 179}, [4921] = {.lex_state = 197}, - [4922] = {.lex_state = 163}, - [4923] = {.lex_state = 163}, - [4924] = {.lex_state = 163}, + [4922] = {.lex_state = 155}, + [4923] = {.lex_state = 155}, + [4924] = {.lex_state = 155}, [4925] = {.lex_state = 0}, [4926] = {.lex_state = 179}, - [4927] = {.lex_state = 163}, + [4927] = {.lex_state = 155}, [4928] = {.lex_state = 141}, [4929] = {.lex_state = 179}, - [4930] = {.lex_state = 163}, + [4930] = {.lex_state = 155}, [4931] = {.lex_state = 184}, [4932] = {.lex_state = 179}, - [4933] = {.lex_state = 163}, + [4933] = {.lex_state = 155}, [4934] = {.lex_state = 200}, [4935] = {.lex_state = 141}, [4936] = {.lex_state = 0}, [4937] = {.lex_state = 0}, [4938] = {.lex_state = 141}, - [4939] = {.lex_state = 163}, + [4939] = {.lex_state = 155}, [4940] = {.lex_state = 0}, [4941] = {.lex_state = 197}, [4942] = {.lex_state = 179}, [4943] = {.lex_state = 200}, [4944] = {.lex_state = 200}, [4945] = {.lex_state = 179}, - [4946] = {.lex_state = 163}, + [4946] = {.lex_state = 155}, [4947] = {.lex_state = 184}, - [4948] = {.lex_state = 163}, + [4948] = {.lex_state = 155}, [4949] = {.lex_state = 199}, [4950] = {.lex_state = 184}, [4951] = {.lex_state = 184}, @@ -22837,55 +22855,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4955] = {.lex_state = 184}, [4956] = {.lex_state = 184}, [4957] = {.lex_state = 199}, - [4958] = {.lex_state = 163}, - [4959] = {.lex_state = 163}, + [4958] = {.lex_state = 155}, + [4959] = {.lex_state = 155}, [4960] = {.lex_state = 261}, [4961] = {.lex_state = 199}, - [4962] = {.lex_state = 163}, + [4962] = {.lex_state = 155}, [4963] = {.lex_state = 0}, [4964] = {.lex_state = 184}, - [4965] = {.lex_state = 163}, + [4965] = {.lex_state = 155}, [4966] = {.lex_state = 184}, [4967] = {.lex_state = 199}, [4968] = {.lex_state = 184}, - [4969] = {.lex_state = 163}, + [4969] = {.lex_state = 155}, [4970] = {.lex_state = 199}, [4971] = {.lex_state = 261}, [4972] = {.lex_state = 199}, - [4973] = {.lex_state = 163}, + [4973] = {.lex_state = 155}, [4974] = {.lex_state = 261}, [4975] = {.lex_state = 261}, [4976] = {.lex_state = 197}, [4977] = {.lex_state = 197}, - [4978] = {.lex_state = 163}, + [4978] = {.lex_state = 155}, [4979] = {.lex_state = 261}, [4980] = {.lex_state = 199}, [4981] = {.lex_state = 199}, [4982] = {.lex_state = 199}, [4983] = {.lex_state = 0}, - [4984] = {.lex_state = 163}, + [4984] = {.lex_state = 155}, [4985] = {.lex_state = 0}, [4986] = {.lex_state = 261}, [4987] = {.lex_state = 199}, - [4988] = {.lex_state = 163}, + [4988] = {.lex_state = 155}, [4989] = {.lex_state = 199}, - [4990] = {.lex_state = 163}, + [4990] = {.lex_state = 155}, [4991] = {.lex_state = 0}, - [4992] = {.lex_state = 163}, + [4992] = {.lex_state = 155}, [4993] = {.lex_state = 0}, [4994] = {.lex_state = 199}, - [4995] = {.lex_state = 163}, - [4996] = {.lex_state = 163}, + [4995] = {.lex_state = 155}, + [4996] = {.lex_state = 155}, [4997] = {.lex_state = 0}, - [4998] = {.lex_state = 163}, - [4999] = {.lex_state = 163}, + [4998] = {.lex_state = 155}, + [4999] = {.lex_state = 155}, [5000] = {.lex_state = 199}, [5001] = {.lex_state = 199}, [5002] = {.lex_state = 199}, [5003] = {.lex_state = 199}, [5004] = {.lex_state = 199}, - [5005] = {.lex_state = 163}, - [5006] = {.lex_state = 163}, + [5005] = {.lex_state = 155}, + [5006] = {.lex_state = 155}, [5007] = {.lex_state = 199}, [5008] = {.lex_state = 199}, [5009] = {.lex_state = 199}, @@ -22903,60 +22921,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5021] = {.lex_state = 199}, [5022] = {.lex_state = 199}, [5023] = {.lex_state = 199}, - [5024] = {.lex_state = 163}, - [5025] = {.lex_state = 163}, + [5024] = {.lex_state = 155}, + [5025] = {.lex_state = 155}, [5026] = {.lex_state = 199}, [5027] = {.lex_state = 141}, [5028] = {.lex_state = 199}, [5029] = {.lex_state = 199}, [5030] = {.lex_state = 197}, - [5031] = {.lex_state = 163}, + [5031] = {.lex_state = 155}, [5032] = {.lex_state = 199}, [5033] = {.lex_state = 197}, - [5034] = {.lex_state = 163}, + [5034] = {.lex_state = 155}, [5035] = {.lex_state = 203}, [5036] = {.lex_state = 199}, [5037] = {.lex_state = 197}, [5038] = {.lex_state = 199}, [5039] = {.lex_state = 197}, [5040] = {.lex_state = 197}, - [5041] = {.lex_state = 163}, + [5041] = {.lex_state = 155}, [5042] = {.lex_state = 199}, [5043] = {.lex_state = 197}, - [5044] = {.lex_state = 163}, + [5044] = {.lex_state = 155}, [5045] = {.lex_state = 199}, [5046] = {.lex_state = 199}, [5047] = {.lex_state = 199}, - [5048] = {.lex_state = 163}, + [5048] = {.lex_state = 155}, [5049] = {.lex_state = 199}, [5050] = {.lex_state = 199}, - [5051] = {.lex_state = 163}, + [5051] = {.lex_state = 155}, [5052] = {.lex_state = 199}, [5053] = {.lex_state = 199}, - [5054] = {.lex_state = 163}, + [5054] = {.lex_state = 155}, [5055] = {.lex_state = 198}, - [5056] = {.lex_state = 163}, + [5056] = {.lex_state = 155}, [5057] = {.lex_state = 199}, [5058] = {.lex_state = 198}, [5059] = {.lex_state = 199}, [5060] = {.lex_state = 199}, - [5061] = {.lex_state = 163}, + [5061] = {.lex_state = 155}, [5062] = {.lex_state = 197}, - [5063] = {.lex_state = 163}, - [5064] = {.lex_state = 163}, - [5065] = {.lex_state = 163}, + [5063] = {.lex_state = 155}, + [5064] = {.lex_state = 155}, + [5065] = {.lex_state = 155}, [5066] = {.lex_state = 199}, [5067] = {.lex_state = 199}, [5068] = {.lex_state = 197}, - [5069] = {.lex_state = 163}, - [5070] = {.lex_state = 163}, + [5069] = {.lex_state = 155}, + [5070] = {.lex_state = 155}, [5071] = {.lex_state = 199}, [5072] = {.lex_state = 199}, - [5073] = {.lex_state = 163}, + [5073] = {.lex_state = 155}, [5074] = {.lex_state = 199}, [5075] = {.lex_state = 199}, - [5076] = {.lex_state = 163}, - [5077] = {.lex_state = 163}, + [5076] = {.lex_state = 155}, + [5077] = {.lex_state = 155}, [5078] = {.lex_state = 197}, [5079] = {.lex_state = 199}, [5080] = {.lex_state = 199}, @@ -22980,7 +22998,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5098] = {.lex_state = 198}, [5099] = {.lex_state = 199}, [5100] = {.lex_state = 199}, - [5101] = {.lex_state = 163}, + [5101] = {.lex_state = 155}, [5102] = {.lex_state = 197}, [5103] = {.lex_state = 199}, [5104] = {.lex_state = 198}, @@ -22998,7 +23016,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5116] = {.lex_state = 199}, [5117] = {.lex_state = 199}, [5118] = {.lex_state = 197}, - [5119] = {.lex_state = 163}, + [5119] = {.lex_state = 155}, [5120] = {.lex_state = 199}, [5121] = {.lex_state = 179}, [5122] = {.lex_state = 199}, @@ -23039,65 +23057,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5157] = {.lex_state = 200}, [5158] = {.lex_state = 200}, [5159] = {.lex_state = 199}, - [5160] = {.lex_state = 163}, + [5160] = {.lex_state = 155}, [5161] = {.lex_state = 261}, [5162] = {.lex_state = 261}, - [5163] = {.lex_state = 163}, - [5164] = {.lex_state = 163}, - [5165] = {.lex_state = 163}, - [5166] = {.lex_state = 163}, + [5163] = {.lex_state = 155}, + [5164] = {.lex_state = 155}, + [5165] = {.lex_state = 155}, + [5166] = {.lex_state = 155}, [5167] = {.lex_state = 261}, [5168] = {.lex_state = 261}, - [5169] = {.lex_state = 163}, + [5169] = {.lex_state = 155}, [5170] = {.lex_state = 199}, [5171] = {.lex_state = 197}, [5172] = {.lex_state = 199}, [5173] = {.lex_state = 199}, [5174] = {.lex_state = 199}, [5175] = {.lex_state = 199}, - [5176] = {.lex_state = 163}, + [5176] = {.lex_state = 155}, [5177] = {.lex_state = 184}, [5178] = {.lex_state = 199}, - [5179] = {.lex_state = 163}, + [5179] = {.lex_state = 155}, [5180] = {.lex_state = 261}, - [5181] = {.lex_state = 163}, - [5182] = {.lex_state = 163}, - [5183] = {.lex_state = 163}, - [5184] = {.lex_state = 163}, - [5185] = {.lex_state = 163}, - [5186] = {.lex_state = 163}, + [5181] = {.lex_state = 155}, + [5182] = {.lex_state = 155}, + [5183] = {.lex_state = 155}, + [5184] = {.lex_state = 155}, + [5185] = {.lex_state = 155}, + [5186] = {.lex_state = 155}, [5187] = {.lex_state = 197}, - [5188] = {.lex_state = 163}, - [5189] = {.lex_state = 163}, + [5188] = {.lex_state = 155}, + [5189] = {.lex_state = 155}, [5190] = {.lex_state = 199}, [5191] = {.lex_state = 200}, - [5192] = {.lex_state = 163}, - [5193] = {.lex_state = 163}, + [5192] = {.lex_state = 155}, + [5193] = {.lex_state = 155}, [5194] = {.lex_state = 197}, [5195] = {.lex_state = 184}, - [5196] = {.lex_state = 163}, - [5197] = {.lex_state = 163}, + [5196] = {.lex_state = 155}, + [5197] = {.lex_state = 155}, [5198] = {.lex_state = 197}, - [5199] = {.lex_state = 163}, - [5200] = {.lex_state = 163}, - [5201] = {.lex_state = 163}, + [5199] = {.lex_state = 155}, + [5200] = {.lex_state = 155}, + [5201] = {.lex_state = 155}, [5202] = {.lex_state = 197}, - [5203] = {.lex_state = 163}, + [5203] = {.lex_state = 155}, [5204] = {.lex_state = 199}, [5205] = {.lex_state = 197}, [5206] = {.lex_state = 199}, [5207] = {.lex_state = 197}, - [5208] = {.lex_state = 163}, - [5209] = {.lex_state = 163}, - [5210] = {.lex_state = 163}, + [5208] = {.lex_state = 155}, + [5209] = {.lex_state = 155}, + [5210] = {.lex_state = 155}, [5211] = {.lex_state = 199}, - [5212] = {.lex_state = 163}, - [5213] = {.lex_state = 163}, - [5214] = {.lex_state = 163}, + [5212] = {.lex_state = 155}, + [5213] = {.lex_state = 155}, + [5214] = {.lex_state = 155}, [5215] = {.lex_state = 199}, [5216] = {.lex_state = 261}, - [5217] = {.lex_state = 163}, - [5218] = {.lex_state = 163}, + [5217] = {.lex_state = 155}, + [5218] = {.lex_state = 155}, [5219] = {.lex_state = 198}, [5220] = {.lex_state = 197}, [5221] = {.lex_state = 197}, @@ -23109,30 +23127,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5227] = {.lex_state = 198}, [5228] = {.lex_state = 197}, [5229] = {.lex_state = 198}, - [5230] = {.lex_state = 163}, + [5230] = {.lex_state = 155}, [5231] = {.lex_state = 197}, [5232] = {.lex_state = 141}, - [5233] = {.lex_state = 163}, - [5234] = {.lex_state = 163}, + [5233] = {.lex_state = 155}, + [5234] = {.lex_state = 155}, [5235] = {.lex_state = 261}, [5236] = {.lex_state = 197}, [5237] = {.lex_state = 197}, - [5238] = {.lex_state = 163}, + [5238] = {.lex_state = 155}, [5239] = {.lex_state = 197}, [5240] = {.lex_state = 261}, [5241] = {.lex_state = 261}, [5242] = {.lex_state = 261}, - [5243] = {.lex_state = 163}, - [5244] = {.lex_state = 163}, - [5245] = {.lex_state = 163}, + [5243] = {.lex_state = 155}, + [5244] = {.lex_state = 155}, + [5245] = {.lex_state = 155}, [5246] = {.lex_state = 261}, - [5247] = {.lex_state = 163}, + [5247] = {.lex_state = 155}, [5248] = {.lex_state = 198}, [5249] = {.lex_state = 261}, [5250] = {.lex_state = 198}, [5251] = {.lex_state = 198}, [5252] = {.lex_state = 261}, - [5253] = {.lex_state = 155}, + [5253] = {.lex_state = 156}, [5254] = {.lex_state = 261}, [5255] = {.lex_state = 198}, [5256] = {.lex_state = 198}, @@ -23142,16 +23160,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5260] = {.lex_state = 261}, [5261] = {.lex_state = 198}, [5262] = {.lex_state = 261}, - [5263] = {.lex_state = 163}, + [5263] = {.lex_state = 155}, [5264] = {.lex_state = 198}, [5265] = {.lex_state = 261}, - [5266] = {.lex_state = 163}, + [5266] = {.lex_state = 155}, [5267] = {.lex_state = 198}, - [5268] = {.lex_state = 163}, + [5268] = {.lex_state = 155}, [5269] = {.lex_state = 261}, [5270] = {.lex_state = 261}, - [5271] = {.lex_state = 163}, - [5272] = {.lex_state = 163}, + [5271] = {.lex_state = 155}, + [5272] = {.lex_state = 155}, [5273] = {.lex_state = 198}, [5274] = {.lex_state = 261}, [5275] = {.lex_state = 261}, @@ -23159,7 +23177,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5277] = {.lex_state = 261}, [5278] = {.lex_state = 261}, [5279] = {.lex_state = 261}, - [5280] = {.lex_state = 163}, + [5280] = {.lex_state = 155}, [5281] = {.lex_state = 261}, [5282] = {.lex_state = 261}, [5283] = {.lex_state = 192}, @@ -23171,165 +23189,165 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5289] = {.lex_state = 199}, [5290] = {.lex_state = 198}, [5291] = {.lex_state = 199}, - [5292] = {.lex_state = 155}, + [5292] = {.lex_state = 156}, [5293] = {.lex_state = 261}, [5294] = {.lex_state = 198}, [5295] = {.lex_state = 199}, - [5296] = {.lex_state = 163}, + [5296] = {.lex_state = 155}, [5297] = {.lex_state = 261}, [5298] = {.lex_state = 199}, - [5299] = {.lex_state = 163}, + [5299] = {.lex_state = 155}, [5300] = {.lex_state = 261}, - [5301] = {.lex_state = 163}, - [5302] = {.lex_state = 163}, - [5303] = {.lex_state = 163}, + [5301] = {.lex_state = 155}, + [5302] = {.lex_state = 155}, + [5303] = {.lex_state = 155}, [5304] = {.lex_state = 261}, - [5305] = {.lex_state = 163}, - [5306] = {.lex_state = 163}, + [5305] = {.lex_state = 155}, + [5306] = {.lex_state = 155}, [5307] = {.lex_state = 261}, [5308] = {.lex_state = 200}, [5309] = {.lex_state = 165}, - [5310] = {.lex_state = 155}, - [5311] = {.lex_state = 163}, + [5310] = {.lex_state = 156}, + [5311] = {.lex_state = 155}, [5312] = {.lex_state = 197}, [5313] = {.lex_state = 261}, [5314] = {.lex_state = 198}, [5315] = {.lex_state = 198}, [5316] = {.lex_state = 165}, - [5317] = {.lex_state = 163}, + [5317] = {.lex_state = 155}, [5318] = {.lex_state = 198}, [5319] = {.lex_state = 261}, - [5320] = {.lex_state = 155}, + [5320] = {.lex_state = 156}, [5321] = {.lex_state = 261}, [5322] = {.lex_state = 198}, [5323] = {.lex_state = 197}, [5324] = {.lex_state = 261}, [5325] = {.lex_state = 198}, [5326] = {.lex_state = 200}, - [5327] = {.lex_state = 155}, + [5327] = {.lex_state = 156}, [5328] = {.lex_state = 198}, [5329] = {.lex_state = 198}, [5330] = {.lex_state = 198}, - [5331] = {.lex_state = 155}, + [5331] = {.lex_state = 156}, [5332] = {.lex_state = 198}, [5333] = {.lex_state = 200}, [5334] = {.lex_state = 198}, [5335] = {.lex_state = 198}, - [5336] = {.lex_state = 163}, - [5337] = {.lex_state = 155}, + [5336] = {.lex_state = 155}, + [5337] = {.lex_state = 156}, [5338] = {.lex_state = 141}, [5339] = {.lex_state = 165}, [5340] = {.lex_state = 165}, - [5341] = {.lex_state = 163}, + [5341] = {.lex_state = 155}, [5342] = {.lex_state = 166}, [5343] = {.lex_state = 165}, [5344] = {.lex_state = 261}, - [5345] = {.lex_state = 163}, - [5346] = {.lex_state = 163}, - [5347] = {.lex_state = 163}, + [5345] = {.lex_state = 155}, + [5346] = {.lex_state = 155}, + [5347] = {.lex_state = 155}, [5348] = {.lex_state = 165}, - [5349] = {.lex_state = 163}, - [5350] = {.lex_state = 155}, - [5351] = {.lex_state = 163}, - [5352] = {.lex_state = 163}, - [5353] = {.lex_state = 163}, - [5354] = {.lex_state = 163}, + [5349] = {.lex_state = 155}, + [5350] = {.lex_state = 156}, + [5351] = {.lex_state = 155}, + [5352] = {.lex_state = 155}, + [5353] = {.lex_state = 155}, + [5354] = {.lex_state = 155}, [5355] = {.lex_state = 166}, - [5356] = {.lex_state = 163}, + [5356] = {.lex_state = 155}, [5357] = {.lex_state = 166}, - [5358] = {.lex_state = 155}, + [5358] = {.lex_state = 156}, [5359] = {.lex_state = 166}, [5360] = {.lex_state = 166}, [5361] = {.lex_state = 261}, - [5362] = {.lex_state = 163}, + [5362] = {.lex_state = 155}, [5363] = {.lex_state = 166}, - [5364] = {.lex_state = 163}, - [5365] = {.lex_state = 163}, + [5364] = {.lex_state = 155}, + [5365] = {.lex_state = 155}, [5366] = {.lex_state = 166}, [5367] = {.lex_state = 261}, - [5368] = {.lex_state = 163}, - [5369] = {.lex_state = 163}, + [5368] = {.lex_state = 155}, + [5369] = {.lex_state = 155}, [5370] = {.lex_state = 261}, - [5371] = {.lex_state = 163}, - [5372] = {.lex_state = 163}, - [5373] = {.lex_state = 163}, - [5374] = {.lex_state = 163}, + [5371] = {.lex_state = 155}, + [5372] = {.lex_state = 155}, + [5373] = {.lex_state = 155}, + [5374] = {.lex_state = 155}, [5375] = {.lex_state = 165}, [5376] = {.lex_state = 166}, [5377] = {.lex_state = 198}, [5378] = {.lex_state = 166}, [5379] = {.lex_state = 166}, [5380] = {.lex_state = 261}, - [5381] = {.lex_state = 163}, + [5381] = {.lex_state = 155}, [5382] = {.lex_state = 184}, - [5383] = {.lex_state = 163}, + [5383] = {.lex_state = 155}, [5384] = {.lex_state = 184}, - [5385] = {.lex_state = 163}, - [5386] = {.lex_state = 163}, + [5385] = {.lex_state = 155}, + [5386] = {.lex_state = 155}, [5387] = {.lex_state = 261}, - [5388] = {.lex_state = 155}, - [5389] = {.lex_state = 163}, - [5390] = {.lex_state = 163}, + [5388] = {.lex_state = 156}, + [5389] = {.lex_state = 155}, + [5390] = {.lex_state = 155}, [5391] = {.lex_state = 141}, [5392] = {.lex_state = 141}, [5393] = {.lex_state = 166}, [5394] = {.lex_state = 141}, - [5395] = {.lex_state = 163}, - [5396] = {.lex_state = 163}, - [5397] = {.lex_state = 155}, - [5398] = {.lex_state = 163}, + [5395] = {.lex_state = 155}, + [5396] = {.lex_state = 155}, + [5397] = {.lex_state = 156}, + [5398] = {.lex_state = 155}, [5399] = {.lex_state = 184}, [5400] = {.lex_state = 166}, - [5401] = {.lex_state = 163}, - [5402] = {.lex_state = 155}, + [5401] = {.lex_state = 155}, + [5402] = {.lex_state = 156}, [5403] = {.lex_state = 141}, - [5404] = {.lex_state = 163}, - [5405] = {.lex_state = 155}, - [5406] = {.lex_state = 163}, + [5404] = {.lex_state = 155}, + [5405] = {.lex_state = 156}, + [5406] = {.lex_state = 155}, [5407] = {.lex_state = 261}, - [5408] = {.lex_state = 163}, + [5408] = {.lex_state = 155}, [5409] = {.lex_state = 165}, [5410] = {.lex_state = 261}, [5411] = {.lex_state = 261}, - [5412] = {.lex_state = 163}, + [5412] = {.lex_state = 155}, [5413] = {.lex_state = 261}, - [5414] = {.lex_state = 163}, - [5415] = {.lex_state = 163}, + [5414] = {.lex_state = 155}, + [5415] = {.lex_state = 155}, [5416] = {.lex_state = 261}, - [5417] = {.lex_state = 163}, + [5417] = {.lex_state = 155}, [5418] = {.lex_state = 165}, [5419] = {.lex_state = 141}, - [5420] = {.lex_state = 163}, + [5420] = {.lex_state = 155}, [5421] = {.lex_state = 166}, [5422] = {.lex_state = 261}, [5423] = {.lex_state = 165}, - [5424] = {.lex_state = 163}, - [5425] = {.lex_state = 163}, - [5426] = {.lex_state = 163}, - [5427] = {.lex_state = 163}, - [5428] = {.lex_state = 163}, + [5424] = {.lex_state = 155}, + [5425] = {.lex_state = 155}, + [5426] = {.lex_state = 155}, + [5427] = {.lex_state = 155}, + [5428] = {.lex_state = 155}, [5429] = {.lex_state = 165}, [5430] = {.lex_state = 261}, - [5431] = {.lex_state = 163}, - [5432] = {.lex_state = 163}, + [5431] = {.lex_state = 155}, + [5432] = {.lex_state = 155}, [5433] = {.lex_state = 141}, [5434] = {.lex_state = 165}, - [5435] = {.lex_state = 163}, + [5435] = {.lex_state = 155}, [5436] = {.lex_state = 165}, - [5437] = {.lex_state = 163}, - [5438] = {.lex_state = 163}, - [5439] = {.lex_state = 163}, - [5440] = {.lex_state = 163}, + [5437] = {.lex_state = 155}, + [5438] = {.lex_state = 155}, + [5439] = {.lex_state = 155}, + [5440] = {.lex_state = 155}, [5441] = {.lex_state = 261}, - [5442] = {.lex_state = 163}, + [5442] = {.lex_state = 155}, [5443] = {.lex_state = 261}, [5444] = {.lex_state = 261}, - [5445] = {.lex_state = 163}, + [5445] = {.lex_state = 155}, [5446] = {.lex_state = 261}, [5447] = {.lex_state = 200}, [5448] = {.lex_state = 197}, [5449] = {.lex_state = 261}, - [5450] = {.lex_state = 163}, + [5450] = {.lex_state = 155}, [5451] = {.lex_state = 261}, [5452] = {.lex_state = 197}, [5453] = {.lex_state = 166}, @@ -23356,9 +23374,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5474] = {.lex_state = 261}, [5475] = {.lex_state = 261}, [5476] = {.lex_state = 261}, - [5477] = {.lex_state = 163}, - [5478] = {.lex_state = 163}, - [5479] = {.lex_state = 163}, + [5477] = {.lex_state = 155}, + [5478] = {.lex_state = 155}, + [5479] = {.lex_state = 155}, [5480] = {.lex_state = 197}, [5481] = {.lex_state = 166}, [5482] = {.lex_state = 166}, @@ -23369,39 +23387,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5487] = {.lex_state = 197}, [5488] = {.lex_state = 197}, [5489] = {.lex_state = 141}, - [5490] = {.lex_state = 163}, + [5490] = {.lex_state = 155}, [5491] = {.lex_state = 261}, - [5492] = {.lex_state = 163}, + [5492] = {.lex_state = 155}, [5493] = {.lex_state = 261}, [5494] = {.lex_state = 197}, [5495] = {.lex_state = 261}, [5496] = {.lex_state = 261}, - [5497] = {.lex_state = 155}, + [5497] = {.lex_state = 156}, [5498] = {.lex_state = 261}, - [5499] = {.lex_state = 155}, + [5499] = {.lex_state = 156}, [5500] = {.lex_state = 261}, - [5501] = {.lex_state = 155}, - [5502] = {.lex_state = 155}, - [5503] = {.lex_state = 155}, + [5501] = {.lex_state = 156}, + [5502] = {.lex_state = 156}, + [5503] = {.lex_state = 156}, [5504] = {.lex_state = 261}, [5505] = {.lex_state = 197}, [5506] = {.lex_state = 165}, [5507] = {.lex_state = 261}, - [5508] = {.lex_state = 155}, - [5509] = {.lex_state = 155}, + [5508] = {.lex_state = 156}, + [5509] = {.lex_state = 156}, [5510] = {.lex_state = 165}, - [5511] = {.lex_state = 163}, - [5512] = {.lex_state = 163}, + [5511] = {.lex_state = 155}, + [5512] = {.lex_state = 155}, [5513] = {.lex_state = 141}, [5514] = {.lex_state = 261}, [5515] = {.lex_state = 261}, [5516] = {.lex_state = 261}, [5517] = {.lex_state = 141}, - [5518] = {.lex_state = 163}, + [5518] = {.lex_state = 155}, [5519] = {.lex_state = 146}, [5520] = {.lex_state = 141}, [5521] = {.lex_state = 146}, - [5522] = {.lex_state = 78}, + [5522] = {.lex_state = 76}, [5523] = {.lex_state = 146}, [5524] = {.lex_state = 146}, [5525] = {.lex_state = 0}, @@ -23411,7 +23429,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5529] = {.lex_state = 146}, [5530] = {.lex_state = 146}, [5531] = {.lex_state = 146}, - [5532] = {.lex_state = 78}, + [5532] = {.lex_state = 76}, [5533] = {.lex_state = 146}, [5534] = {.lex_state = 146}, [5535] = {.lex_state = 146}, @@ -23420,30 +23438,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5538] = {.lex_state = 146}, [5539] = {.lex_state = 146}, [5540] = {.lex_state = 146}, - [5541] = {.lex_state = 163}, + [5541] = {.lex_state = 155}, [5542] = {.lex_state = 261}, [5543] = {.lex_state = 146}, [5544] = {.lex_state = 261}, [5545] = {.lex_state = 141}, - [5546] = {.lex_state = 80}, + [5546] = {.lex_state = 78}, [5547] = {.lex_state = 146}, [5548] = {.lex_state = 197}, [5549] = {.lex_state = 146}, [5550] = {.lex_state = 146}, - [5551] = {.lex_state = 163}, + [5551] = {.lex_state = 155}, [5552] = {.lex_state = 141}, - [5553] = {.lex_state = 78}, + [5553] = {.lex_state = 76}, [5554] = {.lex_state = 146}, [5555] = {.lex_state = 141}, [5556] = {.lex_state = 261}, [5557] = {.lex_state = 146}, [5558] = {.lex_state = 146}, - [5559] = {.lex_state = 163}, + [5559] = {.lex_state = 155}, [5560] = {.lex_state = 146}, [5561] = {.lex_state = 146}, [5562] = {.lex_state = 146}, - [5563] = {.lex_state = 163}, - [5564] = {.lex_state = 78}, + [5563] = {.lex_state = 155}, + [5564] = {.lex_state = 76}, [5565] = {.lex_state = 261}, [5566] = {.lex_state = 0}, [5567] = {.lex_state = 261}, @@ -23455,9 +23473,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5573] = {.lex_state = 261}, [5574] = {.lex_state = 141}, [5575] = {.lex_state = 146}, - [5576] = {.lex_state = 78}, - [5577] = {.lex_state = 80}, - [5578] = {.lex_state = 78}, + [5576] = {.lex_state = 76}, + [5577] = {.lex_state = 78}, + [5578] = {.lex_state = 76}, [5579] = {.lex_state = 261}, [5580] = {.lex_state = 146}, [5581] = {.lex_state = 146}, @@ -23466,7 +23484,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5584] = {.lex_state = 146}, [5585] = {.lex_state = 141}, [5586] = {.lex_state = 146}, - [5587] = {.lex_state = 80}, + [5587] = {.lex_state = 78}, [5588] = {.lex_state = 0}, [5589] = {.lex_state = 146}, [5590] = {.lex_state = 197}, @@ -23480,9 +23498,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5598] = {.lex_state = 146}, [5599] = {.lex_state = 146}, [5600] = {.lex_state = 146}, - [5601] = {.lex_state = 163}, + [5601] = {.lex_state = 155}, [5602] = {.lex_state = 146}, - [5603] = {.lex_state = 163}, + [5603] = {.lex_state = 155}, [5604] = {.lex_state = 146}, [5605] = {.lex_state = 146}, [5606] = {.lex_state = 146}, @@ -23491,8 +23509,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5609] = {.lex_state = 197}, [5610] = {.lex_state = 261}, [5611] = {.lex_state = 146}, - [5612] = {.lex_state = 78}, - [5613] = {.lex_state = 78}, + [5612] = {.lex_state = 76}, + [5613] = {.lex_state = 76}, [5614] = {.lex_state = 0}, [5615] = {.lex_state = 146}, [5616] = {.lex_state = 141}, @@ -23508,7 +23526,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5626] = {.lex_state = 146}, [5627] = {.lex_state = 146}, [5628] = {.lex_state = 141}, - [5629] = {.lex_state = 163}, + [5629] = {.lex_state = 155}, [5630] = {.lex_state = 146}, [5631] = {.lex_state = 261}, [5632] = {.lex_state = 146}, @@ -23517,7 +23535,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5635] = {.lex_state = 0}, [5636] = {.lex_state = 146}, [5637] = {.lex_state = 0}, - [5638] = {.lex_state = 80}, + [5638] = {.lex_state = 78}, [5639] = {.lex_state = 141}, [5640] = {.lex_state = 165}, [5641] = {.lex_state = 261}, @@ -23549,11 +23567,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5667] = {.lex_state = 261}, [5668] = {.lex_state = 146}, [5669] = {.lex_state = 146}, - [5670] = {.lex_state = 78}, + [5670] = {.lex_state = 76}, [5671] = {.lex_state = 141}, [5672] = {.lex_state = 261}, - [5673] = {.lex_state = 78}, - [5674] = {.lex_state = 78}, + [5673] = {.lex_state = 76}, + [5674] = {.lex_state = 76}, [5675] = {.lex_state = 141}, [5676] = {.lex_state = 261}, [5677] = {.lex_state = 146}, @@ -23567,7 +23585,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5685] = {.lex_state = 141}, [5686] = {.lex_state = 146}, [5687] = {.lex_state = 146}, - [5688] = {.lex_state = 163}, + [5688] = {.lex_state = 155}, [5689] = {.lex_state = 146}, [5690] = {.lex_state = 146}, [5691] = {.lex_state = 146}, @@ -23577,7 +23595,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5695] = {.lex_state = 0}, [5696] = {.lex_state = 146}, [5697] = {.lex_state = 146}, - [5698] = {.lex_state = 78}, + [5698] = {.lex_state = 76}, [5699] = {.lex_state = 146}, [5700] = {.lex_state = 146}, [5701] = {.lex_state = 146}, @@ -23586,14 +23604,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5704] = {.lex_state = 146}, [5705] = {.lex_state = 146}, [5706] = {.lex_state = 197}, - [5707] = {.lex_state = 80}, + [5707] = {.lex_state = 78}, [5708] = {.lex_state = 197}, [5709] = {.lex_state = 146}, [5710] = {.lex_state = 146}, [5711] = {.lex_state = 146}, [5712] = {.lex_state = 146}, [5713] = {.lex_state = 261}, - [5714] = {.lex_state = 78}, + [5714] = {.lex_state = 76}, [5715] = {.lex_state = 146}, [5716] = {.lex_state = 146}, [5717] = {.lex_state = 146}, @@ -23619,9 +23637,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5737] = {.lex_state = 146}, [5738] = {.lex_state = 141}, [5739] = {.lex_state = 261}, - [5740] = {.lex_state = 163}, + [5740] = {.lex_state = 155}, [5741] = {.lex_state = 141}, - [5742] = {.lex_state = 78}, + [5742] = {.lex_state = 76}, [5743] = {.lex_state = 141}, [5744] = {.lex_state = 146}, [5745] = {.lex_state = 146}, @@ -23633,13 +23651,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5751] = {.lex_state = 146}, [5752] = {.lex_state = 146}, [5753] = {.lex_state = 197}, - [5754] = {.lex_state = 163}, + [5754] = {.lex_state = 155}, [5755] = {.lex_state = 146}, - [5756] = {.lex_state = 78}, - [5757] = {.lex_state = 163}, + [5756] = {.lex_state = 76}, + [5757] = {.lex_state = 155}, [5758] = {.lex_state = 146}, [5759] = {.lex_state = 146}, - [5760] = {.lex_state = 80}, + [5760] = {.lex_state = 78}, [5761] = {.lex_state = 197}, [5762] = {.lex_state = 146}, [5763] = {.lex_state = 163}, @@ -23649,8 +23667,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5767] = {.lex_state = 0}, [5768] = {.lex_state = 146}, [5769] = {.lex_state = 146}, - [5770] = {.lex_state = 163}, - [5771] = {.lex_state = 80}, + [5770] = {.lex_state = 155}, + [5771] = {.lex_state = 78}, [5772] = {.lex_state = 146}, [5773] = {.lex_state = 146}, [5774] = {.lex_state = 146}, @@ -23659,18 +23677,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5777] = {.lex_state = 146}, [5778] = {.lex_state = 141}, [5779] = {.lex_state = 146}, - [5780] = {.lex_state = 78}, + [5780] = {.lex_state = 76}, [5781] = {.lex_state = 146}, [5782] = {.lex_state = 146}, [5783] = {.lex_state = 146}, [5784] = {.lex_state = 146}, - [5785] = {.lex_state = 163}, + [5785] = {.lex_state = 155}, [5786] = {.lex_state = 146}, [5787] = {.lex_state = 261}, [5788] = {.lex_state = 146}, [5789] = {.lex_state = 146}, [5790] = {.lex_state = 261}, - [5791] = {.lex_state = 78}, + [5791] = {.lex_state = 76}, [5792] = {.lex_state = 141}, [5793] = {.lex_state = 261}, [5794] = {.lex_state = 141}, @@ -23694,7 +23712,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5812] = {.lex_state = 146}, [5813] = {.lex_state = 141}, [5814] = {.lex_state = 0}, - [5815] = {.lex_state = 163}, + [5815] = {.lex_state = 155}, [5816] = {.lex_state = 0}, [5817] = {.lex_state = 0}, [5818] = {.lex_state = 0}, @@ -23703,7 +23721,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5821] = {.lex_state = 0}, [5822] = {.lex_state = 0}, [5823] = {.lex_state = 0}, - [5824] = {.lex_state = 163}, + [5824] = {.lex_state = 155}, [5825] = {.lex_state = 0}, [5826] = {.lex_state = 0}, [5827] = {.lex_state = 0}, @@ -23712,59 +23730,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5830] = {.lex_state = 0}, [5831] = {.lex_state = 0}, [5832] = {.lex_state = 0}, - [5833] = {.lex_state = 163}, - [5834] = {.lex_state = 163}, - [5835] = {.lex_state = 163}, + [5833] = {.lex_state = 155}, + [5834] = {.lex_state = 155}, + [5835] = {.lex_state = 155}, [5836] = {.lex_state = 0}, [5837] = {.lex_state = 0}, - [5838] = {.lex_state = 163}, + [5838] = {.lex_state = 155}, [5839] = {.lex_state = 0}, - [5840] = {.lex_state = 163}, + [5840] = {.lex_state = 155}, [5841] = {.lex_state = 0}, [5842] = {.lex_state = 0}, - [5843] = {.lex_state = 163}, + [5843] = {.lex_state = 155}, [5844] = {.lex_state = 0}, - [5845] = {.lex_state = 163}, + [5845] = {.lex_state = 155}, [5846] = {.lex_state = 0}, - [5847] = {.lex_state = 163}, + [5847] = {.lex_state = 155}, [5848] = {.lex_state = 261}, [5849] = {.lex_state = 0}, [5850] = {.lex_state = 0}, - [5851] = {.lex_state = 73}, + [5851] = {.lex_state = 71}, [5852] = {.lex_state = 261}, - [5853] = {.lex_state = 163}, + [5853] = {.lex_state = 155}, [5854] = {.lex_state = 0}, [5855] = {.lex_state = 0}, [5856] = {.lex_state = 0}, [5857] = {.lex_state = 0}, [5858] = {.lex_state = 0}, [5859] = {.lex_state = 0}, - [5860] = {.lex_state = 163}, + [5860] = {.lex_state = 155}, [5861] = {.lex_state = 261}, [5862] = {.lex_state = 0}, [5863] = {.lex_state = 0}, [5864] = {.lex_state = 0}, [5865] = {.lex_state = 0}, [5866] = {.lex_state = 0}, - [5867] = {.lex_state = 163}, + [5867] = {.lex_state = 155}, [5868] = {.lex_state = 0}, [5869] = {.lex_state = 0}, - [5870] = {.lex_state = 163}, - [5871] = {.lex_state = 163}, + [5870] = {.lex_state = 155}, + [5871] = {.lex_state = 155}, [5872] = {.lex_state = 0}, [5873] = {.lex_state = 0}, - [5874] = {.lex_state = 163}, - [5875] = {.lex_state = 163}, + [5874] = {.lex_state = 155}, + [5875] = {.lex_state = 155}, [5876] = {.lex_state = 0}, - [5877] = {.lex_state = 163}, - [5878] = {.lex_state = 163}, - [5879] = {.lex_state = 163}, + [5877] = {.lex_state = 155}, + [5878] = {.lex_state = 155}, + [5879] = {.lex_state = 155}, [5880] = {.lex_state = 0}, [5881] = {.lex_state = 0}, - [5882] = {.lex_state = 163}, + [5882] = {.lex_state = 155}, [5883] = {.lex_state = 141}, [5884] = {.lex_state = 0}, - [5885] = {.lex_state = 73}, + [5885] = {.lex_state = 71}, [5886] = {.lex_state = 0}, [5887] = {.lex_state = 0}, [5888] = {.lex_state = 0}, @@ -23782,37 +23800,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5900] = {.lex_state = 0}, [5901] = {.lex_state = 0}, [5902] = {.lex_state = 0}, - [5903] = {.lex_state = 163}, - [5904] = {.lex_state = 73}, - [5905] = {.lex_state = 163}, + [5903] = {.lex_state = 155}, + [5904] = {.lex_state = 71}, + [5905] = {.lex_state = 155}, [5906] = {.lex_state = 261}, [5907] = {.lex_state = 0}, [5908] = {.lex_state = 0}, - [5909] = {.lex_state = 163}, + [5909] = {.lex_state = 155}, [5910] = {.lex_state = 0}, [5911] = {.lex_state = 0}, - [5912] = {.lex_state = 163}, + [5912] = {.lex_state = 155}, [5913] = {.lex_state = 0}, [5914] = {.lex_state = 0}, [5915] = {.lex_state = 0}, [5916] = {.lex_state = 0}, - [5917] = {.lex_state = 163}, + [5917] = {.lex_state = 155}, [5918] = {.lex_state = 0}, [5919] = {.lex_state = 0}, - [5920] = {.lex_state = 163}, + [5920] = {.lex_state = 155}, [5921] = {.lex_state = 0}, [5922] = {.lex_state = 0}, - [5923] = {.lex_state = 163}, + [5923] = {.lex_state = 155}, [5924] = {.lex_state = 0}, [5925] = {.lex_state = 0}, - [5926] = {.lex_state = 163}, + [5926] = {.lex_state = 155}, [5927] = {.lex_state = 141}, [5928] = {.lex_state = 0}, [5929] = {.lex_state = 0}, [5930] = {.lex_state = 0}, [5931] = {.lex_state = 0}, - [5932] = {.lex_state = 163}, - [5933] = {.lex_state = 163}, + [5932] = {.lex_state = 155}, + [5933] = {.lex_state = 155}, [5934] = {.lex_state = 0}, [5935] = {.lex_state = 0}, [5936] = {.lex_state = 0}, @@ -23823,7 +23841,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5941] = {.lex_state = 0}, [5942] = {.lex_state = 0}, [5943] = {.lex_state = 0}, - [5944] = {.lex_state = 163}, + [5944] = {.lex_state = 155}, [5945] = {.lex_state = 165}, [5946] = {.lex_state = 0}, [5947] = {.lex_state = 0}, @@ -23835,7 +23853,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5953] = {.lex_state = 0}, [5954] = {.lex_state = 261}, [5955] = {.lex_state = 0}, - [5956] = {.lex_state = 163}, + [5956] = {.lex_state = 155}, [5957] = {.lex_state = 0}, [5958] = {.lex_state = 0}, [5959] = {.lex_state = 0}, @@ -23846,16 +23864,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5964] = {.lex_state = 0}, [5965] = {.lex_state = 0}, [5966] = {.lex_state = 0}, - [5967] = {.lex_state = 163}, + [5967] = {.lex_state = 155}, [5968] = {.lex_state = 0}, - [5969] = {.lex_state = 163}, + [5969] = {.lex_state = 155}, [5970] = {.lex_state = 0}, [5971] = {.lex_state = 261}, [5972] = {.lex_state = 0}, [5973] = {.lex_state = 0}, [5974] = {.lex_state = 0}, [5975] = {.lex_state = 0}, - [5976] = {.lex_state = 163}, + [5976] = {.lex_state = 155}, [5977] = {.lex_state = 0}, [5978] = {.lex_state = 0}, [5979] = {.lex_state = 0}, @@ -23870,18 +23888,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5988] = {.lex_state = 0}, [5989] = {.lex_state = 0}, [5990] = {.lex_state = 0}, - [5991] = {.lex_state = 163}, + [5991] = {.lex_state = 155}, [5992] = {.lex_state = 0}, [5993] = {.lex_state = 0}, [5994] = {.lex_state = 261}, - [5995] = {.lex_state = 163}, + [5995] = {.lex_state = 155}, [5996] = {.lex_state = 0}, [5997] = {.lex_state = 0}, - [5998] = {.lex_state = 163}, + [5998] = {.lex_state = 155}, [5999] = {.lex_state = 0}, [6000] = {.lex_state = 0}, [6001] = {.lex_state = 0}, - [6002] = {.lex_state = 163}, + [6002] = {.lex_state = 155}, [6003] = {.lex_state = 0}, [6004] = {.lex_state = 0}, [6005] = {.lex_state = 0}, @@ -23891,21 +23909,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6009] = {.lex_state = 0}, [6010] = {.lex_state = 0}, [6011] = {.lex_state = 0}, - [6012] = {.lex_state = 163}, + [6012] = {.lex_state = 155}, [6013] = {.lex_state = 261}, [6014] = {.lex_state = 0}, - [6015] = {.lex_state = 163}, + [6015] = {.lex_state = 155}, [6016] = {.lex_state = 0}, [6017] = {.lex_state = 0}, [6018] = {.lex_state = 0}, - [6019] = {.lex_state = 163}, - [6020] = {.lex_state = 163}, + [6019] = {.lex_state = 155}, + [6020] = {.lex_state = 155}, [6021] = {.lex_state = 0}, [6022] = {.lex_state = 0}, [6023] = {.lex_state = 0}, [6024] = {.lex_state = 0}, - [6025] = {.lex_state = 163}, - [6026] = {.lex_state = 163}, + [6025] = {.lex_state = 155}, + [6026] = {.lex_state = 155}, [6027] = {.lex_state = 0}, [6028] = {.lex_state = 0}, [6029] = {.lex_state = 0}, @@ -23913,23 +23931,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6031] = {.lex_state = 0}, [6032] = {.lex_state = 0}, [6033] = {.lex_state = 0}, - [6034] = {.lex_state = 163}, + [6034] = {.lex_state = 155}, [6035] = {.lex_state = 0}, [6036] = {.lex_state = 261}, [6037] = {.lex_state = 0}, - [6038] = {.lex_state = 163}, - [6039] = {.lex_state = 163}, + [6038] = {.lex_state = 155}, + [6039] = {.lex_state = 155}, [6040] = {.lex_state = 0}, - [6041] = {.lex_state = 163}, + [6041] = {.lex_state = 155}, [6042] = {.lex_state = 0}, [6043] = {.lex_state = 0}, - [6044] = {.lex_state = 163}, + [6044] = {.lex_state = 155}, [6045] = {.lex_state = 0}, [6046] = {.lex_state = 261}, [6047] = {.lex_state = 0}, [6048] = {.lex_state = 0}, [6049] = {.lex_state = 0}, - [6050] = {.lex_state = 163}, + [6050] = {.lex_state = 155}, [6051] = {.lex_state = 0}, [6052] = {.lex_state = 261}, [6053] = {.lex_state = 0}, @@ -23937,52 +23955,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6055] = {.lex_state = 0}, [6056] = {.lex_state = 0}, [6057] = {.lex_state = 0}, - [6058] = {.lex_state = 163}, + [6058] = {.lex_state = 155}, [6059] = {.lex_state = 0}, - [6060] = {.lex_state = 163}, + [6060] = {.lex_state = 155}, [6061] = {.lex_state = 0}, - [6062] = {.lex_state = 163}, + [6062] = {.lex_state = 155}, [6063] = {.lex_state = 0}, [6064] = {.lex_state = 0}, - [6065] = {.lex_state = 73}, + [6065] = {.lex_state = 71}, [6066] = {.lex_state = 0}, [6067] = {.lex_state = 0}, [6068] = {.lex_state = 0}, - [6069] = {.lex_state = 163}, + [6069] = {.lex_state = 155}, [6070] = {.lex_state = 0}, [6071] = {.lex_state = 0}, [6072] = {.lex_state = 0}, [6073] = {.lex_state = 0}, [6074] = {.lex_state = 0}, - [6075] = {.lex_state = 163}, + [6075] = {.lex_state = 155}, [6076] = {.lex_state = 0}, - [6077] = {.lex_state = 163}, - [6078] = {.lex_state = 163}, - [6079] = {.lex_state = 163}, + [6077] = {.lex_state = 155}, + [6078] = {.lex_state = 155}, + [6079] = {.lex_state = 155}, [6080] = {.lex_state = 0}, - [6081] = {.lex_state = 163}, - [6082] = {.lex_state = 163}, + [6081] = {.lex_state = 155}, + [6082] = {.lex_state = 155}, [6083] = {.lex_state = 0}, [6084] = {.lex_state = 0}, [6085] = {.lex_state = 0}, [6086] = {.lex_state = 0}, [6087] = {.lex_state = 0}, - [6088] = {.lex_state = 163}, - [6089] = {.lex_state = 163}, + [6088] = {.lex_state = 155}, + [6089] = {.lex_state = 155}, [6090] = {.lex_state = 0}, [6091] = {.lex_state = 0}, - [6092] = {.lex_state = 163}, + [6092] = {.lex_state = 155}, [6093] = {.lex_state = 0}, [6094] = {.lex_state = 0}, [6095] = {.lex_state = 0}, - [6096] = {.lex_state = 163}, - [6097] = {.lex_state = 163}, + [6096] = {.lex_state = 155}, + [6097] = {.lex_state = 155}, [6098] = {.lex_state = 0}, [6099] = {.lex_state = 0}, [6100] = {.lex_state = 0}, [6101] = {.lex_state = 0}, [6102] = {.lex_state = 0}, - [6103] = {.lex_state = 163}, + [6103] = {.lex_state = 155}, [6104] = {.lex_state = 0}, [6105] = {.lex_state = 0}, [6106] = {.lex_state = 261}, @@ -23997,9 +24015,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6115] = {.lex_state = 0}, [6116] = {.lex_state = 0}, [6117] = {.lex_state = 0}, - [6118] = {.lex_state = 81}, + [6118] = {.lex_state = 79}, [6119] = {.lex_state = 0}, - [6120] = {.lex_state = 163}, + [6120] = {.lex_state = 155}, [6121] = {.lex_state = 0}, [6122] = {.lex_state = 0}, [6123] = {.lex_state = 0}, @@ -24008,7 +24026,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6126] = {.lex_state = 0}, [6127] = {.lex_state = 0}, [6128] = {.lex_state = 261}, - [6129] = {.lex_state = 81}, + [6129] = {.lex_state = 79}, [6130] = {.lex_state = 0}, [6131] = {.lex_state = 0}, [6132] = {.lex_state = 0}, @@ -24023,11 +24041,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6141] = {.lex_state = 0}, [6142] = {.lex_state = 0}, [6143] = {.lex_state = 0}, - [6144] = {.lex_state = 163}, + [6144] = {.lex_state = 155}, [6145] = {.lex_state = 261}, [6146] = {.lex_state = 261, .external_lex_state = 2}, [6147] = {.lex_state = 261, .external_lex_state = 2}, - [6148] = {.lex_state = 81}, + [6148] = {.lex_state = 79}, [6149] = {.lex_state = 261}, [6150] = {.lex_state = 261, .external_lex_state = 2}, [6151] = {.lex_state = 0}, @@ -24049,7 +24067,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6167] = {.lex_state = 261}, [6168] = {.lex_state = 0}, [6169] = {.lex_state = 261, .external_lex_state = 2}, - [6170] = {.lex_state = 163}, + [6170] = {.lex_state = 155}, [6171] = {.lex_state = 261}, [6172] = {.lex_state = 0}, [6173] = {.lex_state = 0}, @@ -24080,17 +24098,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6198] = {.lex_state = 0}, [6199] = {.lex_state = 261}, [6200] = {.lex_state = 0}, - [6201] = {.lex_state = 81}, + [6201] = {.lex_state = 79}, [6202] = {.lex_state = 261}, [6203] = {.lex_state = 0}, [6204] = {.lex_state = 0}, [6205] = {.lex_state = 261}, - [6206] = {.lex_state = 163}, + [6206] = {.lex_state = 155}, [6207] = {.lex_state = 261}, [6208] = {.lex_state = 261, .external_lex_state = 2}, [6209] = {.lex_state = 261}, [6210] = {.lex_state = 0}, - [6211] = {.lex_state = 163}, + [6211] = {.lex_state = 155}, [6212] = {.lex_state = 0}, [6213] = {.lex_state = 0}, [6214] = {.lex_state = 0}, @@ -24098,7 +24116,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6216] = {.lex_state = 0}, [6217] = {.lex_state = 0}, [6218] = {.lex_state = 261}, - [6219] = {.lex_state = 163}, + [6219] = {.lex_state = 155}, [6220] = {.lex_state = 261}, [6221] = {.lex_state = 0}, [6222] = {.lex_state = 261}, @@ -24133,13 +24151,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6251] = {.lex_state = 0}, [6252] = {.lex_state = 0}, [6253] = {.lex_state = 0}, - [6254] = {.lex_state = 163}, + [6254] = {.lex_state = 155}, [6255] = {.lex_state = 0}, [6256] = {.lex_state = 261}, [6257] = {.lex_state = 0}, [6258] = {.lex_state = 261}, - [6259] = {.lex_state = 81}, - [6260] = {.lex_state = 82}, + [6259] = {.lex_state = 79}, + [6260] = {.lex_state = 80}, [6261] = {.lex_state = 0}, [6262] = {.lex_state = 0}, [6263] = {.lex_state = 0}, @@ -24150,7 +24168,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6268] = {.lex_state = 0}, [6269] = {.lex_state = 0}, [6270] = {.lex_state = 0}, - [6271] = {.lex_state = 163}, + [6271] = {.lex_state = 155}, [6272] = {.lex_state = 0}, [6273] = {.lex_state = 0}, [6274] = {.lex_state = 0}, @@ -24169,7 +24187,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6287] = {.lex_state = 0}, [6288] = {.lex_state = 261}, [6289] = {.lex_state = 0}, - [6290] = {.lex_state = 82}, + [6290] = {.lex_state = 80}, [6291] = {.lex_state = 0}, [6292] = {.lex_state = 261}, [6293] = {.lex_state = 0}, @@ -24180,40 +24198,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6298] = {.lex_state = 0}, [6299] = {.lex_state = 0}, [6300] = {.lex_state = 0}, - [6301] = {.lex_state = 163}, + [6301] = {.lex_state = 155}, [6302] = {.lex_state = 0}, [6303] = {.lex_state = 0}, [6304] = {.lex_state = 261}, - [6305] = {.lex_state = 81}, + [6305] = {.lex_state = 79}, [6306] = {.lex_state = 0}, [6307] = {.lex_state = 0}, [6308] = {.lex_state = 0}, - [6309] = {.lex_state = 81}, + [6309] = {.lex_state = 79}, [6310] = {.lex_state = 0}, [6311] = {.lex_state = 0}, [6312] = {.lex_state = 0}, [6313] = {.lex_state = 0}, [6314] = {.lex_state = 261}, - [6315] = {.lex_state = 163}, + [6315] = {.lex_state = 155}, [6316] = {.lex_state = 261, .external_lex_state = 2}, [6317] = {.lex_state = 0}, [6318] = {.lex_state = 0}, [6319] = {.lex_state = 0}, [6320] = {.lex_state = 0}, [6321] = {.lex_state = 0}, - [6322] = {.lex_state = 163}, + [6322] = {.lex_state = 155}, [6323] = {.lex_state = 0}, [6324] = {.lex_state = 261}, [6325] = {.lex_state = 0}, [6326] = {.lex_state = 0}, [6327] = {.lex_state = 0}, [6328] = {.lex_state = 0}, - [6329] = {.lex_state = 163}, + [6329] = {.lex_state = 155}, [6330] = {.lex_state = 0}, - [6331] = {.lex_state = 81}, + [6331] = {.lex_state = 79}, [6332] = {.lex_state = 0}, [6333] = {.lex_state = 0}, - [6334] = {.lex_state = 163}, + [6334] = {.lex_state = 155}, [6335] = {.lex_state = 261}, [6336] = {.lex_state = 0}, [6337] = {.lex_state = 0}, @@ -24223,12 +24241,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6341] = {.lex_state = 0}, [6342] = {.lex_state = 0}, [6343] = {.lex_state = 0}, - [6344] = {.lex_state = 163}, + [6344] = {.lex_state = 155}, [6345] = {.lex_state = 0}, [6346] = {.lex_state = 0}, [6347] = {.lex_state = 0}, [6348] = {.lex_state = 0}, - [6349] = {.lex_state = 163}, + [6349] = {.lex_state = 155}, [6350] = {.lex_state = 0}, [6351] = {.lex_state = 261}, [6352] = {.lex_state = 0}, @@ -24255,7 +24273,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6373] = {.lex_state = 0}, [6374] = {.lex_state = 0}, [6375] = {.lex_state = 0}, - [6376] = {.lex_state = 163}, + [6376] = {.lex_state = 155}, [6377] = {.lex_state = 0}, [6378] = {.lex_state = 0}, [6379] = {.lex_state = 0}, @@ -24266,18 +24284,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6384] = {.lex_state = 0}, [6385] = {.lex_state = 0}, [6386] = {.lex_state = 261}, - [6387] = {.lex_state = 163}, + [6387] = {.lex_state = 155}, [6388] = {.lex_state = 0}, [6389] = {.lex_state = 0}, [6390] = {.lex_state = 261}, - [6391] = {.lex_state = 163}, - [6392] = {.lex_state = 163}, - [6393] = {.lex_state = 163}, - [6394] = {.lex_state = 81}, + [6391] = {.lex_state = 155}, + [6392] = {.lex_state = 155}, + [6393] = {.lex_state = 155}, + [6394] = {.lex_state = 79}, [6395] = {.lex_state = 0}, [6396] = {.lex_state = 0}, [6397] = {.lex_state = 0}, - [6398] = {.lex_state = 163}, + [6398] = {.lex_state = 155}, [6399] = {.lex_state = 0}, [6400] = {.lex_state = 261}, [6401] = {.lex_state = 261}, @@ -24290,18 +24308,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6408] = {.lex_state = 0}, [6409] = {.lex_state = 0}, [6410] = {.lex_state = 0}, - [6411] = {.lex_state = 81}, + [6411] = {.lex_state = 79}, [6412] = {.lex_state = 0}, [6413] = {.lex_state = 0}, [6414] = {.lex_state = 0}, [6415] = {.lex_state = 0}, [6416] = {.lex_state = 261}, [6417] = {.lex_state = 261}, - [6418] = {.lex_state = 81}, + [6418] = {.lex_state = 79}, [6419] = {.lex_state = 261}, - [6420] = {.lex_state = 81}, + [6420] = {.lex_state = 79}, [6421] = {.lex_state = 0}, - [6422] = {.lex_state = 82}, + [6422] = {.lex_state = 80}, [6423] = {.lex_state = 0}, [6424] = {.lex_state = 0}, [6425] = {.lex_state = 0}, @@ -24310,11 +24328,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6428] = {.lex_state = 0}, [6429] = {.lex_state = 0}, [6430] = {.lex_state = 261}, - [6431] = {.lex_state = 163}, + [6431] = {.lex_state = 155}, [6432] = {.lex_state = 0}, - [6433] = {.lex_state = 163}, + [6433] = {.lex_state = 155}, [6434] = {.lex_state = 0}, - [6435] = {.lex_state = 82}, + [6435] = {.lex_state = 80}, [6436] = {.lex_state = 0}, [6437] = {.lex_state = 0}, [6438] = {.lex_state = 0}, @@ -24328,17 +24346,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6446] = {.lex_state = 261}, [6447] = {.lex_state = 261}, [6448] = {.lex_state = 0}, - [6449] = {.lex_state = 163}, + [6449] = {.lex_state = 155}, [6450] = {.lex_state = 0}, [6451] = {.lex_state = 0}, [6452] = {.lex_state = 0}, - [6453] = {.lex_state = 82}, - [6454] = {.lex_state = 163}, - [6455] = {.lex_state = 163}, + [6453] = {.lex_state = 80}, + [6454] = {.lex_state = 155}, + [6455] = {.lex_state = 155}, [6456] = {.lex_state = 0}, [6457] = {.lex_state = 0}, [6458] = {.lex_state = 261}, - [6459] = {.lex_state = 163}, + [6459] = {.lex_state = 155}, [6460] = {.lex_state = 0}, [6461] = {.lex_state = 0}, [6462] = {.lex_state = 0}, @@ -24347,7 +24365,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6465] = {.lex_state = 0}, [6466] = {.lex_state = 0}, [6467] = {.lex_state = 0}, - [6468] = {.lex_state = 163}, + [6468] = {.lex_state = 155}, [6469] = {.lex_state = 0}, [6470] = {.lex_state = 261}, [6471] = {.lex_state = 0}, @@ -24355,7 +24373,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6473] = {.lex_state = 0}, [6474] = {.lex_state = 0}, [6475] = {.lex_state = 0}, - [6476] = {.lex_state = 81}, + [6476] = {.lex_state = 79}, [6477] = {.lex_state = 0}, [6478] = {.lex_state = 0}, [6479] = {.lex_state = 0}, @@ -24390,35 +24408,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6508] = {.lex_state = 0}, [6509] = {.lex_state = 261}, [6510] = {.lex_state = 0}, - [6511] = {.lex_state = 163}, + [6511] = {.lex_state = 155}, [6512] = {.lex_state = 0}, [6513] = {.lex_state = 0}, [6514] = {.lex_state = 0}, [6515] = {.lex_state = 0}, [6516] = {.lex_state = 0}, - [6517] = {.lex_state = 163}, + [6517] = {.lex_state = 155}, [6518] = {.lex_state = 0}, [6519] = {.lex_state = 0}, [6520] = {.lex_state = 0}, - [6521] = {.lex_state = 82}, + [6521] = {.lex_state = 80}, [6522] = {.lex_state = 0}, [6523] = {.lex_state = 0}, - [6524] = {.lex_state = 163}, + [6524] = {.lex_state = 155}, [6525] = {.lex_state = 261}, [6526] = {.lex_state = 0}, [6527] = {.lex_state = 261}, - [6528] = {.lex_state = 82}, + [6528] = {.lex_state = 80}, [6529] = {.lex_state = 0}, [6530] = {.lex_state = 0}, [6531] = {.lex_state = 0}, [6532] = {.lex_state = 0}, [6533] = {.lex_state = 0}, [6534] = {.lex_state = 261}, - [6535] = {.lex_state = 163}, - [6536] = {.lex_state = 163}, + [6535] = {.lex_state = 155}, + [6536] = {.lex_state = 155}, [6537] = {.lex_state = 0}, [6538] = {.lex_state = 261}, - [6539] = {.lex_state = 81}, + [6539] = {.lex_state = 79}, [6540] = {.lex_state = 261}, [6541] = {.lex_state = 0}, [6542] = {.lex_state = 0}, @@ -24433,7 +24451,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6551] = {.lex_state = 261}, [6552] = {.lex_state = 0}, [6553] = {.lex_state = 261}, - [6554] = {.lex_state = 163}, + [6554] = {.lex_state = 155}, [6555] = {.lex_state = 0}, [6556] = {.lex_state = 0}, [6557] = {.lex_state = 0}, @@ -24456,9 +24474,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6574] = {.lex_state = 0}, [6575] = {.lex_state = 0}, [6576] = {.lex_state = 0}, - [6577] = {.lex_state = 163}, + [6577] = {.lex_state = 155}, [6578] = {.lex_state = 0}, - [6579] = {.lex_state = 163}, + [6579] = {.lex_state = 155}, [6580] = {.lex_state = 0}, [6581] = {.lex_state = 261}, [6582] = {.lex_state = 0}, @@ -24469,26 +24487,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6587] = {.lex_state = 0}, [6588] = {.lex_state = 0}, [6589] = {.lex_state = 0}, - [6590] = {.lex_state = 81}, + [6590] = {.lex_state = 79}, [6591] = {.lex_state = 0}, [6592] = {.lex_state = 0}, [6593] = {.lex_state = 0}, [6594] = {.lex_state = 261}, [6595] = {.lex_state = 0}, - [6596] = {.lex_state = 82}, + [6596] = {.lex_state = 80}, [6597] = {.lex_state = 261}, - [6598] = {.lex_state = 163}, + [6598] = {.lex_state = 155}, [6599] = {.lex_state = 261}, [6600] = {.lex_state = 0}, [6601] = {.lex_state = 0}, - [6602] = {.lex_state = 81}, + [6602] = {.lex_state = 79}, [6603] = {.lex_state = 261}, [6604] = {.lex_state = 0}, [6605] = {.lex_state = 0}, [6606] = {.lex_state = 0}, [6607] = {.lex_state = 0}, [6608] = {.lex_state = 0}, - [6609] = {.lex_state = 81}, + [6609] = {.lex_state = 79}, [6610] = {.lex_state = 0}, [6611] = {.lex_state = 0}, [6612] = {.lex_state = 0}, @@ -24502,7 +24520,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6620] = {.lex_state = 0}, [6621] = {.lex_state = 139}, [6622] = {.lex_state = 0}, - [6623] = {.lex_state = 163}, + [6623] = {.lex_state = 155}, [6624] = {.lex_state = 0}, [6625] = {.lex_state = 0}, [6626] = {.lex_state = 0}, @@ -24513,7 +24531,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6631] = {.lex_state = 0}, [6632] = {.lex_state = 139}, [6633] = {.lex_state = 0}, - [6634] = {.lex_state = 163}, + [6634] = {.lex_state = 155}, [6635] = {.lex_state = 0}, [6636] = {.lex_state = 0}, [6637] = {.lex_state = 0}, @@ -24522,22 +24540,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6640] = {.lex_state = 0}, [6641] = {.lex_state = 0}, [6642] = {.lex_state = 0}, - [6643] = {.lex_state = 73}, - [6644] = {.lex_state = 163}, + [6643] = {.lex_state = 71}, + [6644] = {.lex_state = 155}, [6645] = {.lex_state = 0}, [6646] = {.lex_state = 0}, [6647] = {.lex_state = 0}, [6648] = {.lex_state = 0}, [6649] = {.lex_state = 146}, - [6650] = {.lex_state = 163}, - [6651] = {.lex_state = 163}, + [6650] = {.lex_state = 155}, + [6651] = {.lex_state = 155}, [6652] = {.lex_state = 139}, [6653] = {.lex_state = 0}, [6654] = {.lex_state = 0}, [6655] = {.lex_state = 0}, [6656] = {.lex_state = 0}, [6657] = {.lex_state = 0}, - [6658] = {.lex_state = 163}, + [6658] = {.lex_state = 155}, [6659] = {.lex_state = 139}, [6660] = {.lex_state = 0}, [6661] = {.lex_state = 0}, @@ -24551,11 +24569,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6669] = {.lex_state = 0}, [6670] = {.lex_state = 0}, [6671] = {.lex_state = 0}, - [6672] = {.lex_state = 163}, + [6672] = {.lex_state = 155}, [6673] = {.lex_state = 0}, [6674] = {.lex_state = 0}, - [6675] = {.lex_state = 73}, - [6676] = {.lex_state = 163}, + [6675] = {.lex_state = 71}, + [6676] = {.lex_state = 155}, [6677] = {.lex_state = 261}, [6678] = {.lex_state = 261}, [6679] = {.lex_state = 0}, @@ -24565,13 +24583,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6683] = {.lex_state = 0}, [6684] = {.lex_state = 0}, [6685] = {.lex_state = 0}, - [6686] = {.lex_state = 163}, - [6687] = {.lex_state = 163}, - [6688] = {.lex_state = 163}, + [6686] = {.lex_state = 155}, + [6687] = {.lex_state = 155}, + [6688] = {.lex_state = 155}, [6689] = {.lex_state = 261}, [6690] = {.lex_state = 0, .external_lex_state = 3}, [6691] = {.lex_state = 0}, - [6692] = {.lex_state = 163}, + [6692] = {.lex_state = 155}, [6693] = {.lex_state = 0}, [6694] = {.lex_state = 0}, [6695] = {.lex_state = 0}, @@ -24581,20 +24599,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6699] = {.lex_state = 139}, [6700] = {.lex_state = 0}, [6701] = {.lex_state = 0}, - [6702] = {.lex_state = 163}, + [6702] = {.lex_state = 155}, [6703] = {.lex_state = 139}, [6704] = {.lex_state = 0}, [6705] = {.lex_state = 0}, [6706] = {.lex_state = 0}, - [6707] = {.lex_state = 73}, + [6707] = {.lex_state = 71}, [6708] = {.lex_state = 0, .external_lex_state = 2}, - [6709] = {.lex_state = 163}, - [6710] = {.lex_state = 163}, - [6711] = {.lex_state = 73}, + [6709] = {.lex_state = 155}, + [6710] = {.lex_state = 155}, + [6711] = {.lex_state = 71}, [6712] = {.lex_state = 0}, [6713] = {.lex_state = 0}, [6714] = {.lex_state = 0}, - [6715] = {.lex_state = 163}, + [6715] = {.lex_state = 155}, [6716] = {.lex_state = 0}, [6717] = {.lex_state = 0}, [6718] = {.lex_state = 0}, @@ -24602,28 +24620,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6720] = {.lex_state = 0}, [6721] = {.lex_state = 0}, [6722] = {.lex_state = 0}, - [6723] = {.lex_state = 163}, + [6723] = {.lex_state = 155}, [6724] = {.lex_state = 138}, [6725] = {.lex_state = 261}, [6726] = {.lex_state = 0}, - [6727] = {.lex_state = 163}, - [6728] = {.lex_state = 163}, + [6727] = {.lex_state = 155}, + [6728] = {.lex_state = 155}, [6729] = {.lex_state = 0}, - [6730] = {.lex_state = 163}, + [6730] = {.lex_state = 155}, [6731] = {.lex_state = 0}, [6732] = {.lex_state = 0}, [6733] = {.lex_state = 0}, [6734] = {.lex_state = 261}, - [6735] = {.lex_state = 163}, + [6735] = {.lex_state = 155}, [6736] = {.lex_state = 0}, [6737] = {.lex_state = 0}, [6738] = {.lex_state = 0}, [6739] = {.lex_state = 0}, [6740] = {.lex_state = 0}, [6741] = {.lex_state = 0}, - [6742] = {.lex_state = 163}, + [6742] = {.lex_state = 155}, [6743] = {.lex_state = 261}, - [6744] = {.lex_state = 73}, + [6744] = {.lex_state = 71}, [6745] = {.lex_state = 0}, [6746] = {.lex_state = 0}, [6747] = {.lex_state = 0}, @@ -24632,9 +24650,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6750] = {.lex_state = 0}, [6751] = {.lex_state = 0}, [6752] = {.lex_state = 0}, - [6753] = {.lex_state = 163}, + [6753] = {.lex_state = 155}, [6754] = {.lex_state = 0}, - [6755] = {.lex_state = 73}, + [6755] = {.lex_state = 71}, [6756] = {.lex_state = 0}, [6757] = {.lex_state = 0}, [6758] = {.lex_state = 0}, @@ -24647,14 +24665,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6765] = {.lex_state = 0}, [6766] = {.lex_state = 0}, [6767] = {.lex_state = 0}, - [6768] = {.lex_state = 163}, - [6769] = {.lex_state = 163}, + [6768] = {.lex_state = 155}, + [6769] = {.lex_state = 155}, [6770] = {.lex_state = 0}, [6771] = {.lex_state = 0}, [6772] = {.lex_state = 0}, [6773] = {.lex_state = 0, .external_lex_state = 2}, - [6774] = {.lex_state = 73}, - [6775] = {.lex_state = 163}, + [6774] = {.lex_state = 71}, + [6775] = {.lex_state = 155}, [6776] = {.lex_state = 0}, [6777] = {.lex_state = 0}, [6778] = {.lex_state = 0}, @@ -24664,15 +24682,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6782] = {.lex_state = 0}, [6783] = {.lex_state = 0}, [6784] = {.lex_state = 0}, - [6785] = {.lex_state = 163}, + [6785] = {.lex_state = 155}, [6786] = {.lex_state = 261}, [6787] = {.lex_state = 146}, [6788] = {.lex_state = 0}, [6789] = {.lex_state = 0}, - [6790] = {.lex_state = 163}, + [6790] = {.lex_state = 155}, [6791] = {.lex_state = 0}, [6792] = {.lex_state = 0}, - [6793] = {.lex_state = 163}, + [6793] = {.lex_state = 155}, [6794] = {.lex_state = 0}, [6795] = {.lex_state = 0, .external_lex_state = 2}, [6796] = {.lex_state = 0}, @@ -24685,11 +24703,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6803] = {.lex_state = 0}, [6804] = {.lex_state = 0}, [6805] = {.lex_state = 0, .external_lex_state = 2}, - [6806] = {.lex_state = 163}, - [6807] = {.lex_state = 163}, + [6806] = {.lex_state = 155}, + [6807] = {.lex_state = 155}, [6808] = {.lex_state = 0}, [6809] = {.lex_state = 0}, - [6810] = {.lex_state = 163}, + [6810] = {.lex_state = 155}, [6811] = {.lex_state = 0}, [6812] = {.lex_state = 0}, [6813] = {.lex_state = 0}, @@ -24699,18 +24717,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6817] = {.lex_state = 261}, [6818] = {.lex_state = 0}, [6819] = {.lex_state = 0}, - [6820] = {.lex_state = 73}, + [6820] = {.lex_state = 71}, [6821] = {.lex_state = 0}, [6822] = {.lex_state = 0}, - [6823] = {.lex_state = 73}, - [6824] = {.lex_state = 163}, + [6823] = {.lex_state = 71}, + [6824] = {.lex_state = 155}, [6825] = {.lex_state = 0}, [6826] = {.lex_state = 261}, - [6827] = {.lex_state = 163}, + [6827] = {.lex_state = 155}, [6828] = {.lex_state = 0}, [6829] = {.lex_state = 0}, [6830] = {.lex_state = 0}, - [6831] = {.lex_state = 73}, + [6831] = {.lex_state = 71}, [6832] = {.lex_state = 0}, [6833] = {.lex_state = 0}, [6834] = {.lex_state = 261}, @@ -24747,19 +24765,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6865] = {.lex_state = 0}, [6866] = {.lex_state = 0}, [6867] = {.lex_state = 0}, - [6868] = {.lex_state = 163}, + [6868] = {.lex_state = 155}, [6869] = {.lex_state = 0}, [6870] = {.lex_state = 0}, - [6871] = {.lex_state = 163}, + [6871] = {.lex_state = 155}, [6872] = {.lex_state = 0}, [6873] = {.lex_state = 261}, [6874] = {.lex_state = 0}, - [6875] = {.lex_state = 163}, + [6875] = {.lex_state = 155}, [6876] = {.lex_state = 0}, [6877] = {.lex_state = 0}, [6878] = {.lex_state = 261}, [6879] = {.lex_state = 0, .external_lex_state = 3}, - [6880] = {.lex_state = 73}, + [6880] = {.lex_state = 71}, [6881] = {.lex_state = 0}, [6882] = {.lex_state = 0}, [6883] = {.lex_state = 0}, @@ -24767,7 +24785,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6885] = {.lex_state = 0}, [6886] = {.lex_state = 0}, [6887] = {.lex_state = 139}, - [6888] = {.lex_state = 163}, + [6888] = {.lex_state = 155}, [6889] = {.lex_state = 139}, [6890] = {.lex_state = 140}, [6891] = {.lex_state = 0}, @@ -24781,8 +24799,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6899] = {.lex_state = 261}, [6900] = {.lex_state = 0}, [6901] = {.lex_state = 0}, - [6902] = {.lex_state = 163}, - [6903] = {.lex_state = 73}, + [6902] = {.lex_state = 155}, + [6903] = {.lex_state = 71}, [6904] = {.lex_state = 0}, [6905] = {.lex_state = 261}, [6906] = {.lex_state = 0}, @@ -24803,11 +24821,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6921] = {.lex_state = 0}, [6922] = {.lex_state = 0}, [6923] = {.lex_state = 0}, - [6924] = {.lex_state = 73}, + [6924] = {.lex_state = 71}, [6925] = {.lex_state = 0}, [6926] = {.lex_state = 0}, [6927] = {.lex_state = 0}, - [6928] = {.lex_state = 73}, + [6928] = {.lex_state = 71}, [6929] = {.lex_state = 0}, [6930] = {.lex_state = 139}, [6931] = {.lex_state = 139}, @@ -24832,43 +24850,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6950] = {.lex_state = 0}, [6951] = {.lex_state = 261}, [6952] = {.lex_state = 0}, - [6953] = {.lex_state = 73}, + [6953] = {.lex_state = 71}, [6954] = {.lex_state = 0}, [6955] = {.lex_state = 0}, [6956] = {.lex_state = 0}, - [6957] = {.lex_state = 163}, + [6957] = {.lex_state = 155}, [6958] = {.lex_state = 0}, [6959] = {.lex_state = 0}, [6960] = {.lex_state = 0}, [6961] = {.lex_state = 261}, [6962] = {.lex_state = 0}, - [6963] = {.lex_state = 163}, + [6963] = {.lex_state = 155}, [6964] = {.lex_state = 261}, [6965] = {.lex_state = 0}, - [6966] = {.lex_state = 73}, + [6966] = {.lex_state = 71}, [6967] = {.lex_state = 139}, [6968] = {.lex_state = 0}, - [6969] = {.lex_state = 73}, + [6969] = {.lex_state = 71}, [6970] = {.lex_state = 0}, - [6971] = {.lex_state = 163}, + [6971] = {.lex_state = 155}, [6972] = {.lex_state = 0}, [6973] = {.lex_state = 0}, [6974] = {.lex_state = 0}, - [6975] = {.lex_state = 163}, + [6975] = {.lex_state = 155}, [6976] = {.lex_state = 0}, [6977] = {.lex_state = 139}, [6978] = {.lex_state = 0}, [6979] = {.lex_state = 139}, [6980] = {.lex_state = 139}, - [6981] = {.lex_state = 73}, + [6981] = {.lex_state = 71}, [6982] = {.lex_state = 0}, [6983] = {.lex_state = 0}, - [6984] = {.lex_state = 163}, + [6984] = {.lex_state = 155}, [6985] = {.lex_state = 261}, [6986] = {.lex_state = 138}, [6987] = {.lex_state = 0}, [6988] = {.lex_state = 0}, - [6989] = {.lex_state = 163}, + [6989] = {.lex_state = 155}, [6990] = {.lex_state = 0}, [6991] = {.lex_state = 0}, [6992] = {.lex_state = 0}, @@ -24881,7 +24899,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6999] = {.lex_state = 0}, [7000] = {.lex_state = 0}, [7001] = {.lex_state = 0}, - [7002] = {.lex_state = 163}, + [7002] = {.lex_state = 155}, [7003] = {.lex_state = 261}, [7004] = {.lex_state = 0}, [7005] = {.lex_state = 0}, @@ -24890,20 +24908,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7008] = {.lex_state = 0}, [7009] = {.lex_state = 0}, [7010] = {.lex_state = 261}, - [7011] = {.lex_state = 163}, + [7011] = {.lex_state = 155}, [7012] = {.lex_state = 261}, - [7013] = {.lex_state = 73}, + [7013] = {.lex_state = 71}, [7014] = {.lex_state = 0}, [7015] = {.lex_state = 261}, [7016] = {.lex_state = 139}, - [7017] = {.lex_state = 163}, + [7017] = {.lex_state = 155}, [7018] = {.lex_state = 261}, - [7019] = {.lex_state = 73}, + [7019] = {.lex_state = 71}, [7020] = {.lex_state = 0}, [7021] = {.lex_state = 261}, [7022] = {.lex_state = 0}, [7023] = {.lex_state = 139}, - [7024] = {.lex_state = 163}, + [7024] = {.lex_state = 155}, [7025] = {.lex_state = 0}, [7026] = {.lex_state = 261}, [7027] = {.lex_state = 0}, @@ -24912,35 +24930,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7030] = {.lex_state = 0}, [7031] = {.lex_state = 261}, [7032] = {.lex_state = 0, .external_lex_state = 3}, - [7033] = {.lex_state = 163}, + [7033] = {.lex_state = 155}, [7034] = {.lex_state = 0}, [7035] = {.lex_state = 146}, [7036] = {.lex_state = 0}, [7037] = {.lex_state = 0}, [7038] = {.lex_state = 0}, [7039] = {.lex_state = 261}, - [7040] = {.lex_state = 163}, + [7040] = {.lex_state = 155}, [7041] = {.lex_state = 0}, [7042] = {.lex_state = 0}, - [7043] = {.lex_state = 163}, + [7043] = {.lex_state = 155}, [7044] = {.lex_state = 0}, - [7045] = {.lex_state = 163}, - [7046] = {.lex_state = 73}, - [7047] = {.lex_state = 73}, + [7045] = {.lex_state = 155}, + [7046] = {.lex_state = 71}, + [7047] = {.lex_state = 71}, [7048] = {.lex_state = 261}, [7049] = {.lex_state = 0}, [7050] = {.lex_state = 139}, [7051] = {.lex_state = 0}, - [7052] = {.lex_state = 163}, - [7053] = {.lex_state = 73}, + [7052] = {.lex_state = 155}, + [7053] = {.lex_state = 71}, [7054] = {.lex_state = 0}, - [7055] = {.lex_state = 73}, + [7055] = {.lex_state = 71}, [7056] = {.lex_state = 0}, - [7057] = {.lex_state = 163}, + [7057] = {.lex_state = 155}, [7058] = {.lex_state = 261}, [7059] = {.lex_state = 0}, - [7060] = {.lex_state = 163}, - [7061] = {.lex_state = 163}, + [7060] = {.lex_state = 155}, + [7061] = {.lex_state = 155}, [7062] = {.lex_state = 0}, [7063] = {.lex_state = 261}, [7064] = {.lex_state = 261}, @@ -24956,7 +24974,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7074] = {.lex_state = 0}, [7075] = {.lex_state = 0}, [7076] = {.lex_state = 139}, - [7077] = {.lex_state = 163}, + [7077] = {.lex_state = 155}, [7078] = {.lex_state = 0}, [7079] = {.lex_state = 0}, [7080] = {.lex_state = 0}, @@ -24969,7 +24987,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7087] = {.lex_state = 261}, [7088] = {.lex_state = 0}, [7089] = {.lex_state = 0}, - [7090] = {.lex_state = 163}, + [7090] = {.lex_state = 155}, [7091] = {.lex_state = 146}, [7092] = {.lex_state = 261}, [7093] = {.lex_state = 261}, @@ -24979,7 +24997,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7097] = {.lex_state = 0}, [7098] = {.lex_state = 261}, [7099] = {.lex_state = 0}, - [7100] = {.lex_state = 163}, + [7100] = {.lex_state = 155}, [7101] = {.lex_state = 0}, [7102] = {.lex_state = 261}, [7103] = {.lex_state = 0}, @@ -25001,9 +25019,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7119] = {.lex_state = 261}, [7120] = {.lex_state = 261}, [7121] = {.lex_state = 0}, - [7122] = {.lex_state = 73}, + [7122] = {.lex_state = 71}, [7123] = {.lex_state = 261}, - [7124] = {.lex_state = 73}, + [7124] = {.lex_state = 71}, [7125] = {.lex_state = 261}, [7126] = {.lex_state = 0}, [7127] = {.lex_state = 261}, @@ -25011,8 +25029,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7129] = {.lex_state = 0}, [7130] = {.lex_state = 261}, [7131] = {.lex_state = 261}, - [7132] = {.lex_state = 163}, - [7133] = {.lex_state = 163}, + [7132] = {.lex_state = 155}, + [7133] = {.lex_state = 155}, [7134] = {.lex_state = 0}, [7135] = {.lex_state = 0}, [7136] = {.lex_state = 0}, @@ -25027,7 +25045,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7145] = {.lex_state = 261}, [7146] = {.lex_state = 139}, [7147] = {.lex_state = 195}, - [7148] = {.lex_state = 163}, + [7148] = {.lex_state = 155}, [7149] = {.lex_state = 0}, [7150] = {.lex_state = 0}, [7151] = {.lex_state = 0}, @@ -25043,14 +25061,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7161] = {.lex_state = 0}, [7162] = {.lex_state = 261}, [7163] = {.lex_state = 261}, - [7164] = {.lex_state = 163}, + [7164] = {.lex_state = 155}, [7165] = {.lex_state = 0}, [7166] = {.lex_state = 261}, [7167] = {.lex_state = 146}, [7168] = {.lex_state = 0}, [7169] = {.lex_state = 261}, [7170] = {.lex_state = 154}, - [7171] = {.lex_state = 163}, + [7171] = {.lex_state = 155}, [7172] = {.lex_state = 0}, [7173] = {.lex_state = 0, .external_lex_state = 3}, [7174] = {.lex_state = 0}, @@ -25059,12 +25077,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7177] = {.lex_state = 0}, [7178] = {.lex_state = 261}, [7179] = {.lex_state = 261}, - [7180] = {.lex_state = 163}, + [7180] = {.lex_state = 155}, [7181] = {.lex_state = 0}, [7182] = {.lex_state = 0}, [7183] = {.lex_state = 0}, - [7184] = {.lex_state = 73}, - [7185] = {.lex_state = 163}, + [7184] = {.lex_state = 71}, + [7185] = {.lex_state = 155}, [7186] = {.lex_state = 0}, [7187] = {.lex_state = 0, .external_lex_state = 3}, [7188] = {.lex_state = 139}, @@ -25073,21 +25091,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7191] = {.lex_state = 0}, [7192] = {.lex_state = 261}, [7193] = {.lex_state = 261}, - [7194] = {.lex_state = 163}, - [7195] = {.lex_state = 163}, - [7196] = {.lex_state = 163}, + [7194] = {.lex_state = 155}, + [7195] = {.lex_state = 155}, + [7196] = {.lex_state = 155}, [7197] = {.lex_state = 0}, [7198] = {.lex_state = 0, .external_lex_state = 3}, [7199] = {.lex_state = 0}, [7200] = {.lex_state = 261}, - [7201] = {.lex_state = 163}, + [7201] = {.lex_state = 155}, [7202] = {.lex_state = 0}, - [7203] = {.lex_state = 163}, + [7203] = {.lex_state = 155}, [7204] = {.lex_state = 0, .external_lex_state = 3}, [7205] = {.lex_state = 261}, - [7206] = {.lex_state = 163}, - [7207] = {.lex_state = 163}, - [7208] = {.lex_state = 163}, + [7206] = {.lex_state = 155}, + [7207] = {.lex_state = 155}, + [7208] = {.lex_state = 155}, [7209] = {.lex_state = 261}, [7210] = {.lex_state = 261}, [7211] = {.lex_state = 0}, @@ -25105,11 +25123,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7223] = {.lex_state = 261}, [7224] = {.lex_state = 0}, [7225] = {.lex_state = 261}, - [7226] = {.lex_state = 163}, + [7226] = {.lex_state = 155}, [7227] = {.lex_state = 261}, [7228] = {.lex_state = 139}, [7229] = {.lex_state = 261}, - [7230] = {.lex_state = 163}, + [7230] = {.lex_state = 155}, }; enum { @@ -25202,6 +25220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(1), [anon_sym_inline] = ACTIONS(1), [anon_sym_thread_local] = ACTIONS(1), + [anon_sym_input] = ACTIONS(1), [anon_sym_const] = ACTIONS(1), [anon_sym_volatile] = ACTIONS(1), [anon_sym_restrict] = ACTIONS(1), @@ -25318,100 +25337,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1] = { [sym_translation_unit] = STATE(6996), - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4249), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4224), + [sym_linkage_specification] = STATE(71), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2160), + [sym_ms_call_modifier] = STATE(2036), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5028), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym__expression] = STATE(3668), + [sym_compound_statement] = STATE(71), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3345), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(71), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1957), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1932), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(71), + [sym_template_instantiation] = STATE(71), [sym_operator_cast] = STATE(5472), - [sym__constructor_specifiers] = STATE(1957), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), + [sym__constructor_specifiers] = STATE(1932), + [sym_operator_cast_definition] = STATE(71), + [sym_operator_cast_declaration] = STATE(71), + [sym_constructor_or_destructor_definition] = STATE(71), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -25424,16 +25443,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5472), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(61), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [aux_sym_translation_unit_repeat1] = STATE(71), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1932), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -25470,6 +25489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -25546,104 +25566,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [2] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(66), + [sym_preproc_def] = STATE(66), + [sym_preproc_function_def] = STATE(66), + [sym_preproc_call] = STATE(66), + [sym_preproc_if] = STATE(66), + [sym_preproc_ifdef] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(66), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(3581), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(66), + [sym_labeled_statement] = STATE(66), + [sym_expression_statement] = STATE(66), + [sym_if_statement] = STATE(66), + [sym_switch_statement] = STATE(66), + [sym_case_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_do_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_return_statement] = STATE(66), + [sym_break_statement] = STATE(66), + [sym_continue_statement] = STATE(66), + [sym_goto_statement] = STATE(66), + [sym__expression] = STATE(3570), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6032), [sym_initializer_pair] = STATE(6032), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(35), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(66), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(35), - [sym_template_instantiation] = STATE(35), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(66), + [sym_template_instantiation] = STATE(66), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(35), - [sym_operator_cast_declaration] = STATE(35), - [sym_constructor_or_destructor_definition] = STATE(35), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(66), + [sym_operator_cast_declaration] = STATE(66), + [sym_constructor_or_destructor_definition] = STATE(66), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(35), - [sym_namespace_alias_definition] = STATE(35), - [sym_using_declaration] = STATE(35), - [sym_alias_declaration] = STATE(35), - [sym_static_assert_declaration] = STATE(35), - [sym_concept_definition] = STATE(35), - [sym_for_range_loop] = STATE(35), - [sym_co_return_statement] = STATE(35), - [sym_co_yield_statement] = STATE(35), - [sym_throw_statement] = STATE(35), - [sym_try_statement] = STATE(35), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(66), + [sym_namespace_alias_definition] = STATE(66), + [sym_using_declaration] = STATE(66), + [sym_alias_declaration] = STATE(66), + [sym_static_assert_declaration] = STATE(66), + [sym_concept_definition] = STATE(66), + [sym_for_range_loop] = STATE(66), + [sym_co_return_statement] = STATE(66), + [sym_co_yield_statement] = STATE(66), + [sym_throw_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -25656,17 +25676,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_translation_unit_repeat1] = STATE(66), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -25704,6 +25724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -25781,104 +25802,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [3] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3581), + [sym_compound_statement] = STATE(32), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3570), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6032), [sym_initializer_pair] = STATE(6032), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(37), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(32), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(37), - [sym_template_instantiation] = STATE(37), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(32), + [sym_template_instantiation] = STATE(32), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(37), - [sym_operator_cast_declaration] = STATE(37), - [sym_constructor_or_destructor_definition] = STATE(37), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(32), + [sym_operator_cast_declaration] = STATE(32), + [sym_constructor_or_destructor_definition] = STATE(32), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -25891,17 +25912,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_translation_unit_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -25939,6 +25960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -26016,104 +26038,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [4] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(71), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(55), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3581), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3570), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6032), [sym_initializer_pair] = STATE(6032), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(71), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(55), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(71), - [sym_template_instantiation] = STATE(71), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(55), + [sym_template_instantiation] = STATE(55), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(71), - [sym_operator_cast_declaration] = STATE(71), - [sym_constructor_or_destructor_definition] = STATE(71), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(55), + [sym_operator_cast_declaration] = STATE(55), + [sym_constructor_or_destructor_definition] = STATE(55), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -26126,17 +26148,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(71), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_translation_unit_repeat1] = STATE(55), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -26174,6 +26196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -26251,104 +26274,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [5] = { - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(51), - [sym_labeled_statement] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_switch_statement] = STATE(51), - [sym_case_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym__expression] = STATE(3581), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3570), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6032), [sym_initializer_pair] = STATE(6032), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(51), - [sym_namespace_alias_definition] = STATE(51), - [sym_using_declaration] = STATE(51), - [sym_alias_declaration] = STATE(51), - [sym_static_assert_declaration] = STATE(51), - [sym_concept_definition] = STATE(51), - [sym_for_range_loop] = STATE(51), - [sym_co_return_statement] = STATE(51), - [sym_co_yield_statement] = STATE(51), - [sym_throw_statement] = STATE(51), - [sym_try_statement] = STATE(51), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -26361,17 +26384,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_translation_unit_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -26409,6 +26432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -26486,104 +26510,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [6] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(70), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3581), + [sym_compound_statement] = STATE(70), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3570), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6032), [sym_initializer_pair] = STATE(6032), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(48), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(70), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(48), - [sym_template_instantiation] = STATE(48), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(70), + [sym_template_instantiation] = STATE(70), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(48), - [sym_operator_cast_declaration] = STATE(48), - [sym_constructor_or_destructor_definition] = STATE(48), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(70), + [sym_operator_cast_declaration] = STATE(70), + [sym_constructor_or_destructor_definition] = STATE(70), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -26596,17 +26620,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_translation_unit_repeat1] = STATE(70), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -26644,6 +26668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -26721,104 +26746,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [7] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(73), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3581), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3570), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6032), [sym_initializer_pair] = STATE(6032), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(39), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(73), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(39), - [sym_template_instantiation] = STATE(39), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(73), + [sym_template_instantiation] = STATE(73), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(39), - [sym_operator_cast_declaration] = STATE(39), - [sym_constructor_or_destructor_definition] = STATE(39), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(73), + [sym_operator_cast_declaration] = STATE(73), + [sym_constructor_or_destructor_definition] = STATE(73), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -26831,17 +26856,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_translation_unit_repeat1] = STATE(73), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -26879,6 +26904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -26956,104 +26982,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [8] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3581), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3570), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6032), [sym_initializer_pair] = STATE(6032), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -27066,17 +27092,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_translation_unit_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -27114,6 +27140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -27191,104 +27218,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [9] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3581), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3570), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6032), [sym_initializer_pair] = STATE(6032), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -27301,17 +27328,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_translation_unit_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -27349,6 +27376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -27426,102 +27454,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [10] = { - [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(7144), - [sym_preproc_elif] = STATE(7144), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(25), + [sym_preproc_def] = STATE(25), + [sym_preproc_function_def] = STATE(25), + [sym_preproc_call] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_preproc_else] = STATE(7067), + [sym_preproc_elif] = STATE(7067), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3757), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(25), + [sym_labeled_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(25), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(25), + [sym_template_instantiation] = STATE(25), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), + [sym__constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(25), + [sym_operator_cast_declaration] = STATE(25), + [sym_constructor_or_destructor_definition] = STATE(25), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(25), + [sym_namespace_alias_definition] = STATE(25), + [sym_using_declaration] = STATE(25), + [sym_alias_declaration] = STATE(25), + [sym_static_assert_declaration] = STATE(25), + [sym_concept_definition] = STATE(25), + [sym_for_range_loop] = STATE(25), + [sym_co_return_statement] = STATE(25), + [sym_co_yield_statement] = STATE(25), + [sym_throw_statement] = STATE(25), + [sym_try_statement] = STATE(25), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -27534,16 +27562,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym_translation_unit_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -27582,6 +27610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -27658,102 +27687,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [11] = { - [sym_preproc_include] = STATE(17), - [sym_preproc_def] = STATE(17), - [sym_preproc_function_def] = STATE(17), - [sym_preproc_call] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(7067), - [sym_preproc_elif] = STATE(7067), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_preproc_else] = STATE(6884), + [sym_preproc_elif] = STATE(6884), + [sym_function_definition] = STATE(26), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_case_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_goto_statement] = STATE(17), - [sym__expression] = STATE(3757), + [sym_compound_statement] = STATE(26), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(26), + [sym_labeled_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(17), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(26), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(17), - [sym_template_instantiation] = STATE(17), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(26), + [sym_template_instantiation] = STATE(26), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), - [sym_operator_cast_definition] = STATE(17), - [sym_operator_cast_declaration] = STATE(17), - [sym_constructor_or_destructor_definition] = STATE(17), + [sym__constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(26), + [sym_operator_cast_declaration] = STATE(26), + [sym_constructor_or_destructor_definition] = STATE(26), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(17), - [sym_namespace_alias_definition] = STATE(17), - [sym_using_declaration] = STATE(17), - [sym_alias_declaration] = STATE(17), - [sym_static_assert_declaration] = STATE(17), - [sym_concept_definition] = STATE(17), - [sym_for_range_loop] = STATE(17), - [sym_co_return_statement] = STATE(17), - [sym_co_yield_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym_try_statement] = STATE(17), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(26), + [sym_namespace_alias_definition] = STATE(26), + [sym_using_declaration] = STATE(26), + [sym_alias_declaration] = STATE(26), + [sym_static_assert_declaration] = STATE(26), + [sym_concept_definition] = STATE(26), + [sym_for_range_loop] = STATE(26), + [sym_co_return_statement] = STATE(26), + [sym_co_yield_statement] = STATE(26), + [sym_throw_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -27766,16 +27795,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym_translation_unit_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -27814,6 +27843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -27890,102 +27920,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [12] = { - [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(6659), - [sym_preproc_elif] = STATE(6659), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(6703), + [sym_preproc_elif] = STATE(6703), + [sym_function_definition] = STATE(14), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3757), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(14), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(14), + [sym_template_instantiation] = STATE(14), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), + [sym__constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(14), + [sym_operator_cast_declaration] = STATE(14), + [sym_constructor_or_destructor_definition] = STATE(14), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -27998,16 +28028,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym_translation_unit_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -28046,6 +28076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -28122,102 +28153,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [13] = { - [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(7050), - [sym_preproc_elif] = STATE(7050), - [sym_function_definition] = STATE(14), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(6749), + [sym_preproc_elif] = STATE(6749), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3757), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(14), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(27), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(14), - [sym_template_instantiation] = STATE(14), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(27), + [sym_template_instantiation] = STATE(27), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), - [sym_operator_cast_definition] = STATE(14), - [sym_operator_cast_declaration] = STATE(14), - [sym_constructor_or_destructor_definition] = STATE(14), + [sym__constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(27), + [sym_operator_cast_declaration] = STATE(27), + [sym_constructor_or_destructor_definition] = STATE(27), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -28230,16 +28261,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym_translation_unit_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -28278,6 +28309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -28360,19 +28392,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(28), [sym_preproc_if] = STATE(28), [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6977), - [sym_preproc_elif] = STATE(6977), + [sym_preproc_else] = STATE(6652), + [sym_preproc_elif] = STATE(6652), [sym_function_definition] = STATE(28), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), @@ -28380,13 +28412,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_attributed_statement] = STATE(28), [sym_labeled_statement] = STATE(28), [sym_expression_statement] = STATE(28), @@ -28400,44 +28432,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(28), [sym_continue_statement] = STATE(28), [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3757), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), [sym_template_declaration] = STATE(28), [sym_template_instantiation] = STATE(28), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), + [sym__constructor_specifiers] = STATE(1937), [sym_operator_cast_definition] = STATE(28), [sym_operator_cast_declaration] = STATE(28), [sym_constructor_or_destructor_definition] = STATE(28), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), [sym_namespace_definition] = STATE(28), [sym_namespace_alias_definition] = STATE(28), [sym_using_declaration] = STATE(28), @@ -28449,7 +28481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(28), [sym_throw_statement] = STATE(28), [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -28462,16 +28494,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -28510,6 +28542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -28586,102 +28619,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [15] = { - [sym_preproc_include] = STATE(18), - [sym_preproc_def] = STATE(18), - [sym_preproc_function_def] = STATE(18), - [sym_preproc_call] = STATE(18), - [sym_preproc_if] = STATE(18), - [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(6980), - [sym_preproc_elif] = STATE(6980), - [sym_function_definition] = STATE(18), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_linkage_specification] = STATE(18), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(6933), + [sym_preproc_elif] = STATE(6933), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(18), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_case_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_goto_statement] = STATE(18), - [sym__expression] = STATE(3757), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(18), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(18), - [sym_template_instantiation] = STATE(18), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), - [sym_operator_cast_definition] = STATE(18), - [sym_operator_cast_declaration] = STATE(18), - [sym_constructor_or_destructor_definition] = STATE(18), + [sym__constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(18), - [sym_namespace_alias_definition] = STATE(18), - [sym_using_declaration] = STATE(18), - [sym_alias_declaration] = STATE(18), - [sym_static_assert_declaration] = STATE(18), - [sym_concept_definition] = STATE(18), - [sym_for_range_loop] = STATE(18), - [sym_co_return_statement] = STATE(18), - [sym_co_yield_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -28694,16 +28727,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -28742,6 +28775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -28824,19 +28858,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(28), [sym_preproc_if] = STATE(28), [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6699), - [sym_preproc_elif] = STATE(6699), + [sym_preproc_else] = STATE(6977), + [sym_preproc_elif] = STATE(6977), [sym_function_definition] = STATE(28), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), @@ -28844,13 +28878,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_attributed_statement] = STATE(28), [sym_labeled_statement] = STATE(28), [sym_expression_statement] = STATE(28), @@ -28864,44 +28898,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(28), [sym_continue_statement] = STATE(28), [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3757), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), [sym_template_declaration] = STATE(28), [sym_template_instantiation] = STATE(28), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), + [sym__constructor_specifiers] = STATE(1937), [sym_operator_cast_definition] = STATE(28), [sym_operator_cast_declaration] = STATE(28), [sym_constructor_or_destructor_definition] = STATE(28), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), [sym_namespace_definition] = STATE(28), [sym_namespace_alias_definition] = STATE(28), [sym_using_declaration] = STATE(28), @@ -28913,7 +28947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(28), [sym_throw_statement] = STATE(28), [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -28926,16 +28960,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -28974,6 +29008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -29050,102 +29085,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [17] = { - [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(7228), - [sym_preproc_elif] = STATE(7228), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_preproc_else] = STATE(6980), + [sym_preproc_elif] = STATE(6980), + [sym_function_definition] = STATE(15), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3757), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(15), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(15), + [sym_template_instantiation] = STATE(15), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), + [sym__constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(15), + [sym_operator_cast_declaration] = STATE(15), + [sym_constructor_or_destructor_definition] = STATE(15), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(15), + [sym_namespace_alias_definition] = STATE(15), + [sym_using_declaration] = STATE(15), + [sym_alias_declaration] = STATE(15), + [sym_static_assert_declaration] = STATE(15), + [sym_concept_definition] = STATE(15), + [sym_for_range_loop] = STATE(15), + [sym_co_return_statement] = STATE(15), + [sym_co_yield_statement] = STATE(15), + [sym_throw_statement] = STATE(15), + [sym_try_statement] = STATE(15), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -29158,16 +29193,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym_translation_unit_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -29206,6 +29241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -29282,102 +29318,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [18] = { - [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(6933), - [sym_preproc_elif] = STATE(6933), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(7188), + [sym_preproc_elif] = STATE(7188), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3757), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(20), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(20), + [sym_template_instantiation] = STATE(20), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), + [sym__constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(20), + [sym_operator_cast_declaration] = STATE(20), + [sym_constructor_or_destructor_definition] = STATE(20), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(20), + [sym_namespace_alias_definition] = STATE(20), + [sym_using_declaration] = STATE(20), + [sym_alias_declaration] = STATE(20), + [sym_static_assert_declaration] = STATE(20), + [sym_concept_definition] = STATE(20), + [sym_for_range_loop] = STATE(20), + [sym_co_return_statement] = STATE(20), + [sym_co_yield_statement] = STATE(20), + [sym_throw_statement] = STATE(20), + [sym_try_statement] = STATE(20), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -29390,16 +29426,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -29438,6 +29474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -29514,102 +29551,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [19] = { - [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(6938), - [sym_preproc_elif] = STATE(6938), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(7050), + [sym_preproc_elif] = STATE(7050), + [sym_function_definition] = STATE(16), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3757), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_case_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(16), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(16), + [sym_template_instantiation] = STATE(16), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), + [sym__constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(16), + [sym_operator_cast_declaration] = STATE(16), + [sym_constructor_or_destructor_definition] = STATE(16), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(16), + [sym_namespace_alias_definition] = STATE(16), + [sym_using_declaration] = STATE(16), + [sym_alias_declaration] = STATE(16), + [sym_static_assert_declaration] = STATE(16), + [sym_concept_definition] = STATE(16), + [sym_for_range_loop] = STATE(16), + [sym_co_return_statement] = STATE(16), + [sym_co_yield_statement] = STATE(16), + [sym_throw_statement] = STATE(16), + [sym_try_statement] = STATE(16), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -29622,16 +29659,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym_translation_unit_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -29670,6 +29707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -29746,102 +29784,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [20] = { - [sym_preproc_include] = STATE(16), - [sym_preproc_def] = STATE(16), - [sym_preproc_function_def] = STATE(16), - [sym_preproc_call] = STATE(16), - [sym_preproc_if] = STATE(16), - [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(6749), - [sym_preproc_elif] = STATE(6749), - [sym_function_definition] = STATE(16), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(6659), + [sym_preproc_elif] = STATE(6659), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_case_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_goto_statement] = STATE(16), - [sym__expression] = STATE(3757), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(16), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(16), - [sym_template_instantiation] = STATE(16), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), - [sym_operator_cast_definition] = STATE(16), - [sym_operator_cast_declaration] = STATE(16), - [sym_constructor_or_destructor_definition] = STATE(16), + [sym__constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(16), - [sym_namespace_alias_definition] = STATE(16), - [sym_using_declaration] = STATE(16), - [sym_alias_declaration] = STATE(16), - [sym_static_assert_declaration] = STATE(16), - [sym_concept_definition] = STATE(16), - [sym_for_range_loop] = STATE(16), - [sym_co_return_statement] = STATE(16), - [sym_co_yield_statement] = STATE(16), - [sym_throw_statement] = STATE(16), - [sym_try_statement] = STATE(16), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -29854,16 +29892,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -29902,6 +29940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -29978,102 +30017,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [21] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_preproc_else] = STATE(6884), - [sym_preproc_elif] = STATE(6884), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(7144), + [sym_preproc_elif] = STATE(7144), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(3757), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(25), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(25), - [sym_template_instantiation] = STATE(25), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), - [sym_operator_cast_definition] = STATE(25), - [sym_operator_cast_declaration] = STATE(25), - [sym_constructor_or_destructor_definition] = STATE(25), + [sym__constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(25), - [sym_namespace_alias_definition] = STATE(25), - [sym_using_declaration] = STATE(25), - [sym_alias_declaration] = STATE(25), - [sym_static_assert_declaration] = STATE(25), - [sym_concept_definition] = STATE(25), - [sym_for_range_loop] = STATE(25), - [sym_co_return_statement] = STATE(25), - [sym_co_yield_statement] = STATE(25), - [sym_throw_statement] = STATE(25), - [sym_try_statement] = STATE(25), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -30086,16 +30125,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -30134,6 +30173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -30210,102 +30250,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [22] = { - [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(6930), - [sym_preproc_elif] = STATE(6930), - [sym_function_definition] = STATE(10), - [sym_declaration] = STATE(10), - [sym_type_definition] = STATE(10), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_linkage_specification] = STATE(10), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(6938), + [sym_preproc_elif] = STATE(6938), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(10), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3757), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(10), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(10), - [sym_template_instantiation] = STATE(10), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), - [sym_operator_cast_definition] = STATE(10), - [sym_operator_cast_declaration] = STATE(10), - [sym_constructor_or_destructor_definition] = STATE(10), + [sym__constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -30318,16 +30358,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(10), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -30366,6 +30406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -30442,102 +30483,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [23] = { - [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(6652), - [sym_preproc_elif] = STATE(6652), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(6930), + [sym_preproc_elif] = STATE(6930), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3757), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(21), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(21), + [sym_template_instantiation] = STATE(21), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), + [sym__constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(21), + [sym_operator_cast_declaration] = STATE(21), + [sym_constructor_or_destructor_definition] = STATE(21), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -30550,16 +30591,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -30598,6 +30639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -30674,102 +30716,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [24] = { - [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_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), [sym_preproc_else] = STATE(6621), [sym_preproc_elif] = STATE(6621), - [sym_function_definition] = STATE(19), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3757), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(19), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(22), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(19), - [sym_template_instantiation] = STATE(19), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(22), + [sym_template_instantiation] = STATE(22), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), - [sym_operator_cast_definition] = STATE(19), - [sym_operator_cast_declaration] = STATE(19), - [sym_constructor_or_destructor_definition] = STATE(19), + [sym__constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(22), + [sym_operator_cast_declaration] = STATE(22), + [sym_constructor_or_destructor_definition] = STATE(22), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(22), + [sym_namespace_alias_definition] = STATE(22), + [sym_using_declaration] = STATE(22), + [sym_alias_declaration] = STATE(22), + [sym_static_assert_declaration] = STATE(22), + [sym_concept_definition] = STATE(22), + [sym_for_range_loop] = STATE(22), + [sym_co_return_statement] = STATE(22), + [sym_co_yield_statement] = STATE(22), + [sym_throw_statement] = STATE(22), + [sym_try_statement] = STATE(22), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -30782,16 +30824,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym_translation_unit_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -30830,6 +30872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -30912,19 +30955,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(28), [sym_preproc_if] = STATE(28), [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6967), - [sym_preproc_elif] = STATE(6967), + [sym_preproc_else] = STATE(7228), + [sym_preproc_elif] = STATE(7228), [sym_function_definition] = STATE(28), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), @@ -30932,13 +30975,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_attributed_statement] = STATE(28), [sym_labeled_statement] = STATE(28), [sym_expression_statement] = STATE(28), @@ -30952,44 +30995,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(28), [sym_continue_statement] = STATE(28), [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3757), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), [sym_template_declaration] = STATE(28), [sym_template_instantiation] = STATE(28), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), + [sym__constructor_specifiers] = STATE(1937), [sym_operator_cast_definition] = STATE(28), [sym_operator_cast_declaration] = STATE(28), [sym_constructor_or_destructor_definition] = STATE(28), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), [sym_namespace_definition] = STATE(28), [sym_namespace_alias_definition] = STATE(28), [sym_using_declaration] = STATE(28), @@ -31001,7 +31044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(28), [sym_throw_statement] = STATE(28), [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -31014,16 +31057,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -31062,6 +31105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -31138,102 +31182,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [26] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_preproc_else] = STATE(6703), - [sym_preproc_elif] = STATE(6703), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(6967), + [sym_preproc_elif] = STATE(6967), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_case_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_goto_statement] = STATE(23), - [sym__expression] = STATE(3757), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(23), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(23), - [sym_template_instantiation] = STATE(23), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), - [sym_operator_cast_definition] = STATE(23), - [sym_operator_cast_declaration] = STATE(23), - [sym_constructor_or_destructor_definition] = STATE(23), + [sym__constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(23), - [sym_namespace_alias_definition] = STATE(23), - [sym_using_declaration] = STATE(23), - [sym_alias_declaration] = STATE(23), - [sym_static_assert_declaration] = STATE(23), - [sym_concept_definition] = STATE(23), - [sym_for_range_loop] = STATE(23), - [sym_co_return_statement] = STATE(23), - [sym_co_yield_statement] = STATE(23), - [sym_throw_statement] = STATE(23), - [sym_try_statement] = STATE(23), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -31246,16 +31290,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -31294,6 +31338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -31370,102 +31415,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [27] = { - [sym_preproc_include] = STATE(12), - [sym_preproc_def] = STATE(12), - [sym_preproc_function_def] = STATE(12), - [sym_preproc_call] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(7188), - [sym_preproc_elif] = STATE(7188), - [sym_function_definition] = STATE(12), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(6699), + [sym_preproc_elif] = STATE(6699), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_case_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_goto_statement] = STATE(12), - [sym__expression] = STATE(3757), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(12), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(12), - [sym_template_instantiation] = STATE(12), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), - [sym_operator_cast_definition] = STATE(12), - [sym_operator_cast_declaration] = STATE(12), - [sym_constructor_or_destructor_definition] = STATE(12), + [sym__constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(12), - [sym_namespace_alias_definition] = STATE(12), - [sym_using_declaration] = STATE(12), - [sym_alias_declaration] = STATE(12), - [sym_static_assert_declaration] = STATE(12), - [sym_concept_definition] = STATE(12), - [sym_for_range_loop] = STATE(12), - [sym_co_return_statement] = STATE(12), - [sym_co_yield_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -31478,16 +31523,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -31526,6 +31571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -31611,14 +31657,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(28), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), @@ -31626,13 +31672,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(5053), [sym_array_declarator] = STATE(5152), [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_attributed_statement] = STATE(28), [sym_labeled_statement] = STATE(28), [sym_expression_statement] = STATE(28), @@ -31646,44 +31692,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(28), [sym_continue_statement] = STATE(28), [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3757), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1979), - [sym_dependent_type] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1937), + [sym_dependent_type] = STATE(3448), [sym_template_declaration] = STATE(28), [sym_template_instantiation] = STATE(28), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1979), + [sym__constructor_specifiers] = STATE(1937), [sym_operator_cast_definition] = STATE(28), [sym_operator_cast_declaration] = STATE(28), [sym_constructor_or_destructor_definition] = STATE(28), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), [sym_namespace_definition] = STATE(28), [sym_namespace_alias_definition] = STATE(28), [sym_using_declaration] = STATE(28), @@ -31695,7 +31741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(28), [sym_throw_statement] = STATE(28), [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -31708,16 +31754,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), [sym_identifier] = ACTIONS(327), [aux_sym_preproc_include_token1] = ACTIONS(330), [aux_sym_preproc_def_token1] = ACTIONS(333), @@ -31756,6 +31802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(401), [anon_sym_inline] = ACTIONS(401), [anon_sym_thread_local] = ACTIONS(401), + [anon_sym_input] = ACTIONS(401), [anon_sym_const] = ACTIONS(404), [anon_sym_volatile] = ACTIONS(404), [anon_sym_restrict] = ACTIONS(404), @@ -31832,100 +31879,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(473), }, [29] = { - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_function_definition] = STATE(43), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_case_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(43), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(43), - [sym_template_instantiation] = STATE(43), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(43), - [sym_operator_cast_declaration] = STATE(43), - [sym_constructor_or_destructor_definition] = STATE(43), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(43), - [sym_namespace_alias_definition] = STATE(43), - [sym_using_declaration] = STATE(43), - [sym_alias_declaration] = STATE(43), - [sym_static_assert_declaration] = STATE(43), - [sym_concept_definition] = STATE(43), - [sym_for_range_loop] = STATE(43), - [sym_co_return_statement] = STATE(43), - [sym_co_yield_statement] = STATE(43), - [sym_throw_statement] = STATE(43), - [sym_try_statement] = STATE(43), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -31938,16 +31985,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -31984,6 +32031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -32060,100 +32108,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [30] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(55), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(55), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(55), + [sym_template_instantiation] = STATE(55), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(55), + [sym_operator_cast_declaration] = STATE(55), + [sym_constructor_or_destructor_definition] = STATE(55), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -32166,16 +32214,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(55), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -32212,6 +32260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -32288,100 +32337,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [31] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(56), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(39), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(56), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(39), - [sym_template_instantiation] = STATE(39), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(56), + [sym_template_instantiation] = STATE(56), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(39), - [sym_operator_cast_declaration] = STATE(39), - [sym_constructor_or_destructor_definition] = STATE(39), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(56), + [sym_operator_cast_declaration] = STATE(56), + [sym_constructor_or_destructor_definition] = STATE(56), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -32394,16 +32443,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(56), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -32440,6 +32489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -32516,100 +32566,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [32] = { - [sym_preproc_include] = STATE(76), - [sym_preproc_def] = STATE(76), - [sym_preproc_function_def] = STATE(76), - [sym_preproc_call] = STATE(76), - [sym_preproc_if] = STATE(76), - [sym_preproc_ifdef] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(76), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(76), - [sym_labeled_statement] = STATE(76), - [sym_expression_statement] = STATE(76), - [sym_if_statement] = STATE(76), - [sym_switch_statement] = STATE(76), - [sym_case_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_do_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_return_statement] = STATE(76), - [sym_break_statement] = STATE(76), - [sym_continue_statement] = STATE(76), - [sym_goto_statement] = STATE(76), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(76), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(76), - [sym_template_instantiation] = STATE(76), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(76), - [sym_operator_cast_declaration] = STATE(76), - [sym_constructor_or_destructor_definition] = STATE(76), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(76), - [sym_namespace_alias_definition] = STATE(76), - [sym_using_declaration] = STATE(76), - [sym_alias_declaration] = STATE(76), - [sym_static_assert_declaration] = STATE(76), - [sym_concept_definition] = STATE(76), - [sym_for_range_loop] = STATE(76), - [sym_co_return_statement] = STATE(76), - [sym_co_yield_statement] = STATE(76), - [sym_throw_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -32622,16 +32672,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(76), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -32668,6 +32718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -32744,100 +32795,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [33] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(32), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(32), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(32), + [sym_template_instantiation] = STATE(32), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(32), + [sym_operator_cast_declaration] = STATE(32), + [sym_constructor_or_destructor_definition] = STATE(32), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -32850,16 +32901,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -32896,6 +32947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -32972,100 +33024,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [34] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(33), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(33), - [sym_namespace_alias_definition] = STATE(33), - [sym_using_declaration] = STATE(33), - [sym_alias_declaration] = STATE(33), - [sym_static_assert_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(33), - [sym_co_return_statement] = STATE(33), - [sym_co_yield_statement] = STATE(33), - [sym_throw_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -33078,16 +33130,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -33124,6 +33176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -33200,100 +33253,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [35] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(34), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(34), + [sym_template_instantiation] = STATE(34), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(34), + [sym_operator_cast_declaration] = STATE(34), + [sym_constructor_or_destructor_definition] = STATE(34), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(34), + [sym_namespace_alias_definition] = STATE(34), + [sym_using_declaration] = STATE(34), + [sym_alias_declaration] = STATE(34), + [sym_static_assert_declaration] = STATE(34), + [sym_concept_definition] = STATE(34), + [sym_for_range_loop] = STATE(34), + [sym_co_return_statement] = STATE(34), + [sym_co_yield_statement] = STATE(34), + [sym_throw_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -33306,16 +33359,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -33352,6 +33405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -33428,100 +33482,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [36] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(35), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(35), - [sym_template_instantiation] = STATE(35), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(35), - [sym_operator_cast_declaration] = STATE(35), - [sym_constructor_or_destructor_definition] = STATE(35), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(35), - [sym_namespace_alias_definition] = STATE(35), - [sym_using_declaration] = STATE(35), - [sym_alias_declaration] = STATE(35), - [sym_static_assert_declaration] = STATE(35), - [sym_concept_definition] = STATE(35), - [sym_for_range_loop] = STATE(35), - [sym_co_return_statement] = STATE(35), - [sym_co_yield_statement] = STATE(35), - [sym_throw_statement] = STATE(35), - [sym_try_statement] = STATE(35), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -33534,16 +33588,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -33580,6 +33634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -33656,100 +33711,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [37] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(36), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(36), + [sym_template_instantiation] = STATE(36), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(36), + [sym_operator_cast_declaration] = STATE(36), + [sym_constructor_or_destructor_definition] = STATE(36), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -33762,16 +33817,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -33808,6 +33863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -33884,328 +33940,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [38] = { - [sym_preproc_include] = STATE(49), - [sym_preproc_def] = STATE(49), - [sym_preproc_function_def] = STATE(49), - [sym_preproc_call] = STATE(49), - [sym_preproc_if] = STATE(49), - [sym_preproc_ifdef] = STATE(49), - [sym_function_definition] = STATE(49), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4248), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2166), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5083), - [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3412), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(49), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1980), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(49), - [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(5487), - [sym__constructor_specifiers] = STATE(1980), - [sym_operator_cast_definition] = STATE(49), - [sym_operator_cast_declaration] = STATE(49), - [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(49), - [sym_namespace_alias_definition] = STATE(49), - [sym_using_declaration] = STATE(49), - [sym_alias_declaration] = STATE(49), - [sym_static_assert_declaration] = STATE(49), - [sym_concept_definition] = STATE(49), - [sym_for_range_loop] = STATE(49), - [sym_co_return_statement] = STATE(49), - [sym_co_yield_statement] = STATE(49), - [sym_throw_statement] = STATE(49), - [sym_try_statement] = STATE(49), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), - [sym_qualified_operator_cast_identifier] = STATE(5487), - [sym_operator_name] = STATE(5152), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1980), - [sym_identifier] = ACTIONS(556), - [aux_sym_preproc_include_token1] = ACTIONS(558), - [aux_sym_preproc_def_token1] = ACTIONS(560), - [aux_sym_preproc_if_token1] = ACTIONS(562), - [aux_sym_preproc_if_token2] = ACTIONS(564), - [aux_sym_preproc_ifdef_token1] = ACTIONS(566), - [aux_sym_preproc_ifdef_token2] = ACTIONS(566), - [sym_preproc_directive] = ACTIONS(568), - [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(570), - [anon_sym_typedef] = ACTIONS(572), - [anon_sym_extern] = ACTIONS(574), - [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(576), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(600), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_namespace] = ACTIONS(606), - [anon_sym_using] = ACTIONS(608), - [anon_sym_static_assert] = ACTIONS(610), - [anon_sym_concept] = ACTIONS(612), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [39] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -34218,16 +34046,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -34258,12 +34086,242 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(618), + [anon_sym_RBRACE] = ACTIONS(556), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [39] = { + [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_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2043), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(38), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(38), + [sym_template_instantiation] = STATE(38), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(38), + [sym_operator_cast_declaration] = STATE(38), + [sym_constructor_or_destructor_definition] = STATE(38), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [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(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [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(536), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -34340,100 +34398,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [40] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -34446,16 +34504,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -34486,12 +34544,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(560), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -34568,100 +34627,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [41] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(37), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(40), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(37), - [sym_template_instantiation] = STATE(37), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(40), + [sym_template_instantiation] = STATE(40), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(37), - [sym_operator_cast_declaration] = STATE(37), - [sym_constructor_or_destructor_definition] = STATE(37), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(40), + [sym_operator_cast_declaration] = STATE(40), + [sym_constructor_or_destructor_definition] = STATE(40), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(40), + [sym_namespace_alias_definition] = STATE(40), + [sym_using_declaration] = STATE(40), + [sym_alias_declaration] = STATE(40), + [sym_static_assert_declaration] = STATE(40), + [sym_concept_definition] = STATE(40), + [sym_for_range_loop] = STATE(40), + [sym_co_return_statement] = STATE(40), + [sym_co_yield_statement] = STATE(40), + [sym_throw_statement] = STATE(40), + [sym_try_statement] = STATE(40), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -34674,16 +34733,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -34714,12 +34773,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(562), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -34796,100 +34856,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [42] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -34902,16 +34962,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -34942,12 +35002,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(564), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -35024,100 +35085,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [43] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(42), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(42), + [sym_template_instantiation] = STATE(42), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(42), + [sym_operator_cast_declaration] = STATE(42), + [sym_constructor_or_destructor_definition] = STATE(42), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -35130,16 +35191,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -35170,12 +35231,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(626), + [anon_sym_RBRACE] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -35252,100 +35314,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -35358,16 +35420,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -35398,12 +35460,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -35480,100 +35543,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [45] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -35586,16 +35649,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -35626,12 +35689,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(570), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -35708,100 +35772,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [46] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -35814,16 +35878,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -35854,12 +35918,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(572), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -35936,100 +36001,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [47] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(45), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(45), - [sym_template_instantiation] = STATE(45), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(45), - [sym_operator_cast_declaration] = STATE(45), - [sym_constructor_or_destructor_definition] = STATE(45), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -36042,16 +36107,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -36082,12 +36147,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(634), + [anon_sym_RBRACE] = ACTIONS(574), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -36164,100 +36230,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [48] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -36270,16 +36336,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -36310,12 +36376,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_RBRACE] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -36392,328 +36459,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [49] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4248), - [sym_linkage_specification] = STATE(55), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2166), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5083), - [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3412), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(55), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1980), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(55), - [sym_template_instantiation] = STATE(55), - [sym_operator_cast] = STATE(5487), - [sym__constructor_specifiers] = STATE(1980), - [sym_operator_cast_definition] = STATE(55), - [sym_operator_cast_declaration] = STATE(55), - [sym_constructor_or_destructor_definition] = STATE(55), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), - [sym_qualified_operator_cast_identifier] = STATE(5487), - [sym_operator_name] = STATE(5152), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(55), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1980), - [sym_identifier] = ACTIONS(556), - [aux_sym_preproc_include_token1] = ACTIONS(558), - [aux_sym_preproc_def_token1] = ACTIONS(560), - [aux_sym_preproc_if_token1] = ACTIONS(562), - [aux_sym_preproc_if_token2] = ACTIONS(638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(566), - [aux_sym_preproc_ifdef_token2] = ACTIONS(566), - [sym_preproc_directive] = ACTIONS(568), - [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(570), - [anon_sym_typedef] = ACTIONS(572), - [anon_sym_extern] = ACTIONS(574), - [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(576), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(600), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_namespace] = ACTIONS(606), - [anon_sym_using] = ACTIONS(608), - [anon_sym_static_assert] = ACTIONS(610), - [anon_sym_concept] = ACTIONS(612), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [50] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(53), + [sym_labeled_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_case_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(53), + [sym_co_return_statement] = STATE(53), + [sym_co_yield_statement] = STATE(53), + [sym_throw_statement] = STATE(53), + [sym_try_statement] = STATE(53), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -36726,244 +36565,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), - [sym_identifier] = ACTIONS(640), - [aux_sym_preproc_include_token1] = ACTIONS(643), - [aux_sym_preproc_def_token1] = ACTIONS(646), - [aux_sym_preproc_if_token1] = ACTIONS(649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(652), - [sym_preproc_directive] = ACTIONS(655), - [anon_sym_LPAREN2] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(350), - [anon_sym_TILDE] = ACTIONS(353), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_STAR] = ACTIONS(359), - [anon_sym_AMP_AMP] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_typedef] = ACTIONS(661), - [anon_sym_extern] = ACTIONS(664), - [anon_sym___attribute__] = ACTIONS(377), - [anon_sym_COLON_COLON] = ACTIONS(380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(383), - [anon_sym___declspec] = ACTIONS(386), - [anon_sym___based] = ACTIONS(389), - [anon_sym___cdecl] = ACTIONS(392), - [anon_sym___clrcall] = ACTIONS(392), - [anon_sym___stdcall] = ACTIONS(392), - [anon_sym___fastcall] = ACTIONS(392), - [anon_sym___thiscall] = ACTIONS(392), - [anon_sym___vectorcall] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(398), - [anon_sym_static] = ACTIONS(401), - [anon_sym_register] = ACTIONS(401), - [anon_sym_inline] = ACTIONS(401), - [anon_sym_thread_local] = ACTIONS(401), - [anon_sym_const] = ACTIONS(404), - [anon_sym_volatile] = ACTIONS(404), - [anon_sym_restrict] = ACTIONS(404), - [anon_sym__Atomic] = ACTIONS(404), - [anon_sym_mutable] = ACTIONS(404), - [anon_sym_constexpr] = ACTIONS(404), - [anon_sym_constinit] = ACTIONS(404), - [anon_sym_consteval] = ACTIONS(404), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(410), - [anon_sym_enum] = ACTIONS(413), - [anon_sym_class] = ACTIONS(416), - [anon_sym_struct] = ACTIONS(419), - [anon_sym_union] = ACTIONS(422), - [anon_sym_if] = ACTIONS(672), - [anon_sym_switch] = ACTIONS(675), - [anon_sym_case] = ACTIONS(678), - [anon_sym_default] = ACTIONS(681), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(687), - [anon_sym_for] = ACTIONS(690), - [anon_sym_return] = ACTIONS(693), - [anon_sym_break] = ACTIONS(696), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_goto] = ACTIONS(702), - [anon_sym_not] = ACTIONS(356), - [anon_sym_compl] = ACTIONS(356), - [anon_sym_DASH_DASH] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(458), - [anon_sym_sizeof] = ACTIONS(461), - [sym_number_literal] = ACTIONS(464), - [anon_sym_L_SQUOTE] = ACTIONS(467), - [anon_sym_u_SQUOTE] = ACTIONS(467), - [anon_sym_U_SQUOTE] = ACTIONS(467), - [anon_sym_u8_SQUOTE] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_L_DQUOTE] = ACTIONS(470), - [anon_sym_u_DQUOTE] = ACTIONS(470), - [anon_sym_U_DQUOTE] = ACTIONS(470), - [anon_sym_u8_DQUOTE] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(470), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(476), - [anon_sym_decltype] = ACTIONS(479), - [anon_sym_virtual] = ACTIONS(482), - [anon_sym_explicit] = ACTIONS(485), - [anon_sym_typename] = ACTIONS(488), - [anon_sym_template] = ACTIONS(705), - [anon_sym_operator] = ACTIONS(494), - [anon_sym_try] = ACTIONS(708), - [anon_sym_delete] = ACTIONS(500), - [anon_sym_throw] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(714), - [anon_sym_using] = ACTIONS(717), - [anon_sym_static_assert] = ACTIONS(720), - [anon_sym_concept] = ACTIONS(723), - [anon_sym_co_return] = ACTIONS(726), - [anon_sym_co_yield] = ACTIONS(729), - [anon_sym_R_DQUOTE] = ACTIONS(524), - [anon_sym_LR_DQUOTE] = ACTIONS(524), - [anon_sym_uR_DQUOTE] = ACTIONS(524), - [anon_sym_UR_DQUOTE] = ACTIONS(524), - [anon_sym_u8R_DQUOTE] = ACTIONS(524), - [anon_sym_co_await] = ACTIONS(527), - [anon_sym_new] = ACTIONS(530), - [anon_sym_requires] = ACTIONS(533), - [sym_this] = ACTIONS(473), - [sym_nullptr] = ACTIONS(473), - }, - [51] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5014), - [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), - [sym_qualified_operator_cast_identifier] = STATE(5452), - [sym_operator_name] = STATE(5152), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -36994,12 +36605,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_RBRACE] = ACTIONS(578), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -37075,101 +36687,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [52] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [50] = { + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(48), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(46), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(48), - [sym_template_instantiation] = STATE(48), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(46), + [sym_template_instantiation] = STATE(46), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(48), - [sym_operator_cast_declaration] = STATE(48), - [sym_constructor_or_destructor_definition] = STATE(48), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(46), + [sym_operator_cast_declaration] = STATE(46), + [sym_constructor_or_destructor_definition] = STATE(46), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -37182,16 +36794,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -37222,12 +36834,471 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_RBRACE] = ACTIONS(580), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [51] = { + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_preproc_if] = STATE(51), + [sym_preproc_ifdef] = STATE(51), + [sym_function_definition] = STATE(51), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4252), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(1997), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5083), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3377), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_case_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1920), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(5487), + [sym__constructor_specifiers] = STATE(1920), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(51), + [sym_namespace_alias_definition] = STATE(51), + [sym_using_declaration] = STATE(51), + [sym_alias_declaration] = STATE(51), + [sym_static_assert_declaration] = STATE(51), + [sym_concept_definition] = STATE(51), + [sym_for_range_loop] = STATE(51), + [sym_co_return_statement] = STATE(51), + [sym_co_yield_statement] = STATE(51), + [sym_throw_statement] = STATE(51), + [sym_try_statement] = STATE(51), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), + [sym_qualified_operator_cast_identifier] = STATE(5487), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1920), + [sym_identifier] = ACTIONS(582), + [aux_sym_preproc_include_token1] = ACTIONS(585), + [aux_sym_preproc_def_token1] = ACTIONS(588), + [aux_sym_preproc_if_token1] = ACTIONS(591), + [aux_sym_preproc_if_token2] = ACTIONS(339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(594), + [aux_sym_preproc_ifdef_token2] = ACTIONS(594), + [sym_preproc_directive] = ACTIONS(597), + [anon_sym_LPAREN2] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(362), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_typedef] = ACTIONS(603), + [anon_sym_extern] = ACTIONS(606), + [anon_sym___attribute__] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(383), + [anon_sym___declspec] = ACTIONS(386), + [anon_sym___based] = ACTIONS(389), + [anon_sym___cdecl] = ACTIONS(392), + [anon_sym___clrcall] = ACTIONS(392), + [anon_sym___stdcall] = ACTIONS(392), + [anon_sym___fastcall] = ACTIONS(392), + [anon_sym___thiscall] = ACTIONS(392), + [anon_sym___vectorcall] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(398), + [anon_sym_static] = ACTIONS(401), + [anon_sym_register] = ACTIONS(401), + [anon_sym_inline] = ACTIONS(401), + [anon_sym_thread_local] = ACTIONS(401), + [anon_sym_input] = ACTIONS(401), + [anon_sym_const] = ACTIONS(404), + [anon_sym_volatile] = ACTIONS(404), + [anon_sym_restrict] = ACTIONS(404), + [anon_sym__Atomic] = ACTIONS(404), + [anon_sym_mutable] = ACTIONS(404), + [anon_sym_constexpr] = ACTIONS(404), + [anon_sym_constinit] = ACTIONS(404), + [anon_sym_consteval] = ACTIONS(404), + [anon_sym_signed] = ACTIONS(407), + [anon_sym_unsigned] = ACTIONS(407), + [anon_sym_long] = ACTIONS(407), + [anon_sym_short] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(413), + [anon_sym_class] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_union] = ACTIONS(422), + [anon_sym_if] = ACTIONS(612), + [anon_sym_switch] = ACTIONS(615), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(621), + [anon_sym_while] = ACTIONS(624), + [anon_sym_do] = ACTIONS(627), + [anon_sym_for] = ACTIONS(630), + [anon_sym_return] = ACTIONS(633), + [anon_sym_break] = ACTIONS(636), + [anon_sym_continue] = ACTIONS(639), + [anon_sym_goto] = ACTIONS(642), + [anon_sym_not] = ACTIONS(356), + [anon_sym_compl] = ACTIONS(356), + [anon_sym_DASH_DASH] = ACTIONS(458), + [anon_sym_PLUS_PLUS] = ACTIONS(458), + [anon_sym_sizeof] = ACTIONS(461), + [sym_number_literal] = ACTIONS(464), + [anon_sym_L_SQUOTE] = ACTIONS(467), + [anon_sym_u_SQUOTE] = ACTIONS(467), + [anon_sym_U_SQUOTE] = ACTIONS(467), + [anon_sym_u8_SQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(467), + [anon_sym_L_DQUOTE] = ACTIONS(470), + [anon_sym_u_DQUOTE] = ACTIONS(470), + [anon_sym_U_DQUOTE] = ACTIONS(470), + [anon_sym_u8_DQUOTE] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(470), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_null] = ACTIONS(473), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(476), + [anon_sym_decltype] = ACTIONS(479), + [anon_sym_virtual] = ACTIONS(482), + [anon_sym_explicit] = ACTIONS(485), + [anon_sym_typename] = ACTIONS(488), + [anon_sym_template] = ACTIONS(645), + [anon_sym_operator] = ACTIONS(494), + [anon_sym_try] = ACTIONS(648), + [anon_sym_delete] = ACTIONS(500), + [anon_sym_throw] = ACTIONS(651), + [anon_sym_namespace] = ACTIONS(654), + [anon_sym_using] = ACTIONS(657), + [anon_sym_static_assert] = ACTIONS(660), + [anon_sym_concept] = ACTIONS(663), + [anon_sym_co_return] = ACTIONS(666), + [anon_sym_co_yield] = ACTIONS(669), + [anon_sym_R_DQUOTE] = ACTIONS(524), + [anon_sym_LR_DQUOTE] = ACTIONS(524), + [anon_sym_uR_DQUOTE] = ACTIONS(524), + [anon_sym_UR_DQUOTE] = ACTIONS(524), + [anon_sym_u8R_DQUOTE] = ACTIONS(524), + [anon_sym_co_await] = ACTIONS(527), + [anon_sym_new] = ACTIONS(530), + [anon_sym_requires] = ACTIONS(533), + [sym_this] = ACTIONS(473), + [sym_nullptr] = ACTIONS(473), + }, + [52] = { + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(74), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2043), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(74), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(74), + [sym_template_instantiation] = STATE(74), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(74), + [sym_operator_cast_declaration] = STATE(74), + [sym_constructor_or_destructor_definition] = STATE(74), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(74), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [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(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [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(536), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -37304,100 +37375,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [53] = { - [sym_preproc_include] = STATE(62), - [sym_preproc_def] = STATE(62), - [sym_preproc_function_def] = STATE(62), - [sym_preproc_call] = STATE(62), - [sym_preproc_if] = STATE(62), - [sym_preproc_ifdef] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(62), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(62), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(62), - [sym_template_instantiation] = STATE(62), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(62), - [sym_operator_cast_declaration] = STATE(62), - [sym_constructor_or_destructor_definition] = STATE(62), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -37410,16 +37481,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(62), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -37450,12 +37521,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_RBRACE] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -37532,100 +37604,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [54] = { - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(73), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(51), - [sym_labeled_statement] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_switch_statement] = STATE(51), - [sym_case_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(73), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(73), + [sym_template_instantiation] = STATE(73), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(73), + [sym_operator_cast_declaration] = STATE(73), + [sym_constructor_or_destructor_definition] = STATE(73), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(51), - [sym_namespace_alias_definition] = STATE(51), - [sym_using_declaration] = STATE(51), - [sym_alias_declaration] = STATE(51), - [sym_static_assert_declaration] = STATE(51), - [sym_concept_definition] = STATE(51), - [sym_for_range_loop] = STATE(51), - [sym_co_return_statement] = STATE(51), - [sym_co_yield_statement] = STATE(51), - [sym_throw_statement] = STATE(51), - [sym_try_statement] = STATE(51), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -37638,16 +37710,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(73), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -37678,12 +37750,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -37760,328 +37833,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [55] = { - [sym_preproc_include] = STATE(55), - [sym_preproc_def] = STATE(55), - [sym_preproc_function_def] = STATE(55), - [sym_preproc_call] = STATE(55), - [sym_preproc_if] = STATE(55), - [sym_preproc_ifdef] = STATE(55), - [sym_function_definition] = STATE(55), - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4248), - [sym_linkage_specification] = STATE(55), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2166), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5083), - [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3412), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(55), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1980), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(55), - [sym_template_instantiation] = STATE(55), - [sym_operator_cast] = STATE(5487), - [sym__constructor_specifiers] = STATE(1980), - [sym_operator_cast_definition] = STATE(55), - [sym_operator_cast_declaration] = STATE(55), - [sym_constructor_or_destructor_definition] = STATE(55), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), - [sym_qualified_operator_cast_identifier] = STATE(5487), - [sym_operator_name] = STATE(5152), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(55), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1980), - [sym_identifier] = ACTIONS(740), - [aux_sym_preproc_include_token1] = ACTIONS(743), - [aux_sym_preproc_def_token1] = ACTIONS(746), - [aux_sym_preproc_if_token1] = ACTIONS(749), - [aux_sym_preproc_if_token2] = ACTIONS(339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(752), - [aux_sym_preproc_ifdef_token2] = ACTIONS(752), - [sym_preproc_directive] = ACTIONS(755), - [anon_sym_LPAREN2] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(350), - [anon_sym_TILDE] = ACTIONS(353), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_STAR] = ACTIONS(359), - [anon_sym_AMP_AMP] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_SEMI] = ACTIONS(758), - [anon_sym_typedef] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(764), - [anon_sym___attribute__] = ACTIONS(377), - [anon_sym_COLON_COLON] = ACTIONS(380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(383), - [anon_sym___declspec] = ACTIONS(386), - [anon_sym___based] = ACTIONS(389), - [anon_sym___cdecl] = ACTIONS(392), - [anon_sym___clrcall] = ACTIONS(392), - [anon_sym___stdcall] = ACTIONS(392), - [anon_sym___fastcall] = ACTIONS(392), - [anon_sym___thiscall] = ACTIONS(392), - [anon_sym___vectorcall] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(398), - [anon_sym_static] = ACTIONS(401), - [anon_sym_register] = ACTIONS(401), - [anon_sym_inline] = ACTIONS(401), - [anon_sym_thread_local] = ACTIONS(401), - [anon_sym_const] = ACTIONS(404), - [anon_sym_volatile] = ACTIONS(404), - [anon_sym_restrict] = ACTIONS(404), - [anon_sym__Atomic] = ACTIONS(404), - [anon_sym_mutable] = ACTIONS(404), - [anon_sym_constexpr] = ACTIONS(404), - [anon_sym_constinit] = ACTIONS(404), - [anon_sym_consteval] = ACTIONS(404), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(410), - [anon_sym_enum] = ACTIONS(413), - [anon_sym_class] = ACTIONS(416), - [anon_sym_struct] = ACTIONS(419), - [anon_sym_union] = ACTIONS(422), - [anon_sym_if] = ACTIONS(770), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(776), - [anon_sym_default] = ACTIONS(779), - [anon_sym_while] = ACTIONS(782), - [anon_sym_do] = ACTIONS(785), - [anon_sym_for] = ACTIONS(788), - [anon_sym_return] = ACTIONS(791), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(797), - [anon_sym_goto] = ACTIONS(800), - [anon_sym_not] = ACTIONS(356), - [anon_sym_compl] = ACTIONS(356), - [anon_sym_DASH_DASH] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(458), - [anon_sym_sizeof] = ACTIONS(461), - [sym_number_literal] = ACTIONS(464), - [anon_sym_L_SQUOTE] = ACTIONS(467), - [anon_sym_u_SQUOTE] = ACTIONS(467), - [anon_sym_U_SQUOTE] = ACTIONS(467), - [anon_sym_u8_SQUOTE] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_L_DQUOTE] = ACTIONS(470), - [anon_sym_u_DQUOTE] = ACTIONS(470), - [anon_sym_U_DQUOTE] = ACTIONS(470), - [anon_sym_u8_DQUOTE] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(470), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(476), - [anon_sym_decltype] = ACTIONS(479), - [anon_sym_virtual] = ACTIONS(482), - [anon_sym_explicit] = ACTIONS(485), - [anon_sym_typename] = ACTIONS(488), - [anon_sym_template] = ACTIONS(803), - [anon_sym_operator] = ACTIONS(494), - [anon_sym_try] = ACTIONS(806), - [anon_sym_delete] = ACTIONS(500), - [anon_sym_throw] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(812), - [anon_sym_using] = ACTIONS(815), - [anon_sym_static_assert] = ACTIONS(818), - [anon_sym_concept] = ACTIONS(821), - [anon_sym_co_return] = ACTIONS(824), - [anon_sym_co_yield] = ACTIONS(827), - [anon_sym_R_DQUOTE] = ACTIONS(524), - [anon_sym_LR_DQUOTE] = ACTIONS(524), - [anon_sym_uR_DQUOTE] = ACTIONS(524), - [anon_sym_UR_DQUOTE] = ACTIONS(524), - [anon_sym_u8R_DQUOTE] = ACTIONS(524), - [anon_sym_co_await] = ACTIONS(527), - [anon_sym_new] = ACTIONS(530), - [anon_sym_requires] = ACTIONS(533), - [sym_this] = ACTIONS(473), - [sym_nullptr] = ACTIONS(473), - }, - [56] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -38094,16 +37939,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -38134,12 +37979,242 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [56] = { + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2043), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [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(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [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(536), + [anon_sym_RBRACE] = ACTIONS(680), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -38216,100 +38291,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [57] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -38322,16 +38397,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -38362,12 +38437,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_RBRACE] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -38444,100 +38520,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [58] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(57), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_preproc_if] = STATE(51), + [sym_preproc_ifdef] = STATE(51), + [sym_function_definition] = STATE(51), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4252), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(1997), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5014), + [sym_function_declarator] = STATE(5083), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), - [sym_comma_expression] = STATE(6914), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3377), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_case_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(57), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(57), - [sym_template_instantiation] = STATE(57), - [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(57), - [sym_operator_cast_declaration] = STATE(57), - [sym_constructor_or_destructor_definition] = STATE(57), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1920), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(5487), + [sym__constructor_specifiers] = STATE(1920), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(51), + [sym_namespace_alias_definition] = STATE(51), + [sym_using_declaration] = STATE(51), + [sym_alias_declaration] = STATE(51), + [sym_static_assert_declaration] = STATE(51), + [sym_concept_definition] = STATE(51), + [sym_for_range_loop] = STATE(51), + [sym_co_return_statement] = STATE(51), + [sym_co_yield_statement] = STATE(51), + [sym_throw_statement] = STATE(51), + [sym_try_statement] = STATE(51), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -38550,23 +38626,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), - [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), + [sym_qualified_operator_cast_identifier] = STATE(5487), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(57), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), - [sym_identifier] = ACTIONS(145), - [aux_sym_preproc_include_token1] = ACTIONS(147), - [aux_sym_preproc_def_token1] = ACTIONS(149), - [aux_sym_preproc_if_token1] = ACTIONS(153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(155), - [sym_preproc_directive] = ACTIONS(157), + [aux_sym_translation_unit_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1920), + [sym_identifier] = ACTIONS(684), + [aux_sym_preproc_include_token1] = ACTIONS(686), + [aux_sym_preproc_def_token1] = ACTIONS(688), + [aux_sym_preproc_if_token1] = ACTIONS(690), + [aux_sym_preproc_if_token2] = ACTIONS(692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(694), + [aux_sym_preproc_ifdef_token2] = ACTIONS(694), + [sym_preproc_directive] = ACTIONS(696), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -38575,9 +38652,9 @@ 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(159), - [anon_sym_typedef] = ACTIONS(161), - [anon_sym_extern] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_typedef] = ACTIONS(700), + [anon_sym_extern] = ACTIONS(702), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -38589,13 +38666,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -38613,17 +38690,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -38649,17 +38726,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(195), + [anon_sym_template] = ACTIONS(728), [anon_sym_operator] = ACTIONS(117), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_namespace] = ACTIONS(201), - [anon_sym_using] = ACTIONS(203), - [anon_sym_static_assert] = ACTIONS(205), - [anon_sym_concept] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_namespace] = ACTIONS(734), + [anon_sym_using] = ACTIONS(736), + [anon_sym_static_assert] = ACTIONS(738), + [anon_sym_concept] = ACTIONS(740), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -38672,100 +38749,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [59] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(57), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(57), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(57), + [sym_template_instantiation] = STATE(57), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(57), + [sym_operator_cast_declaration] = STATE(57), + [sym_constructor_or_destructor_definition] = STATE(57), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -38778,16 +38855,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(57), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -38818,12 +38895,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(746), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -38900,100 +38978,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [60] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(66), + [sym_preproc_def] = STATE(66), + [sym_preproc_function_def] = STATE(66), + [sym_preproc_call] = STATE(66), + [sym_preproc_if] = STATE(66), + [sym_preproc_ifdef] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(66), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(66), + [sym_labeled_statement] = STATE(66), + [sym_expression_statement] = STATE(66), + [sym_if_statement] = STATE(66), + [sym_switch_statement] = STATE(66), + [sym_case_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_do_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_return_statement] = STATE(66), + [sym_break_statement] = STATE(66), + [sym_continue_statement] = STATE(66), + [sym_goto_statement] = STATE(66), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(66), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(66), + [sym_template_instantiation] = STATE(66), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(66), + [sym_operator_cast_declaration] = STATE(66), + [sym_constructor_or_destructor_definition] = STATE(66), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(66), + [sym_namespace_alias_definition] = STATE(66), + [sym_using_declaration] = STATE(66), + [sym_alias_declaration] = STATE(66), + [sym_static_assert_declaration] = STATE(66), + [sym_concept_definition] = STATE(66), + [sym_for_range_loop] = STATE(66), + [sym_co_return_statement] = STATE(66), + [sym_co_yield_statement] = STATE(66), + [sym_throw_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -39006,16 +39084,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(66), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -39046,12 +39124,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_RBRACE] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -39128,328 +39207,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [61] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4249), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(63), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2160), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5028), - [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(72), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1957), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(5472), - [sym__constructor_specifiers] = STATE(1957), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), - [sym_qualified_operator_cast_identifier] = STATE(5472), - [sym_operator_name] = STATE(5152), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(72), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1957), - [ts_builtin_sym_end] = ACTIONS(840), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [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(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(37), - [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(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(115), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_namespace] = ACTIONS(125), - [anon_sym_using] = ACTIONS(127), - [anon_sym_static_assert] = ACTIONS(129), - [anon_sym_concept] = ACTIONS(131), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [62] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(63), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(63), + [sym_template_instantiation] = STATE(63), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(63), + [sym_operator_cast_declaration] = STATE(63), + [sym_constructor_or_destructor_definition] = STATE(63), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -39462,16 +39313,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(63), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -39502,12 +39353,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(750), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -39583,101 +39435,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [63] = { - [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_function_definition] = STATE(30), - [sym_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [62] = { + [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(3318), + [sym__declaration_specifiers] = STATE(4252), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(1997), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5014), + [sym_function_declarator] = STATE(5083), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), - [sym_comma_expression] = STATE(6914), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3377), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(30), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(30), - [sym_template_instantiation] = STATE(30), - [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(30), - [sym_operator_cast_declaration] = STATE(30), - [sym_constructor_or_destructor_definition] = STATE(30), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1920), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(5487), + [sym__constructor_specifiers] = STATE(1920), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -39690,16 +39542,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), + [sym_qualified_operator_cast_identifier] = STATE(5487), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(58), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1920), + [sym_identifier] = ACTIONS(684), + [aux_sym_preproc_include_token1] = ACTIONS(686), + [aux_sym_preproc_def_token1] = ACTIONS(688), + [aux_sym_preproc_if_token1] = ACTIONS(690), + [aux_sym_preproc_if_token2] = ACTIONS(752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(694), + [aux_sym_preproc_ifdef_token2] = ACTIONS(694), + [sym_preproc_directive] = ACTIONS(696), + [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(698), + [anon_sym_typedef] = ACTIONS(700), + [anon_sym_extern] = ACTIONS(702), + [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(704), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(728), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(730), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_namespace] = ACTIONS(734), + [anon_sym_using] = ACTIONS(736), + [anon_sym_static_assert] = ACTIONS(738), + [anon_sym_concept] = ACTIONS(740), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [63] = { + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2043), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -39730,12 +39811,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(844), + [anon_sym_RBRACE] = ACTIONS(754), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -39812,100 +39894,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [64] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(68), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(68), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(68), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(68), + [sym_template_instantiation] = STATE(68), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(68), + [sym_operator_cast_declaration] = STATE(68), + [sym_constructor_or_destructor_definition] = STATE(68), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -39918,16 +40000,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(68), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -39958,12 +40040,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(756), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -40040,100 +40123,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [65] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -40146,16 +40229,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -40186,12 +40269,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_RBRACE] = ACTIONS(758), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -40268,100 +40352,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [66] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(60), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(60), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(60), - [sym_template_instantiation] = STATE(60), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(60), - [sym_operator_cast_declaration] = STATE(60), - [sym_constructor_or_destructor_definition] = STATE(60), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -40374,16 +40458,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(60), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -40414,12 +40498,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(760), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -40496,100 +40581,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [67] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4224), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2036), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5014), + [sym_function_declarator] = STATE(5028), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3345), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1932), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(5472), + [sym__constructor_specifiers] = STATE(1932), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -40602,222 +40687,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), - [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), + [sym_qualified_operator_cast_identifier] = STATE(5472), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), - [sym_identifier] = ACTIONS(145), - [aux_sym_preproc_include_token1] = ACTIONS(147), - [aux_sym_preproc_def_token1] = ACTIONS(149), - [aux_sym_preproc_if_token1] = ACTIONS(153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(155), - [sym_preproc_directive] = ACTIONS(157), - [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(159), - [anon_sym_typedef] = ACTIONS(161), - [anon_sym_extern] = ACTIONS(163), - [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(536), - [anon_sym_RBRACE] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [aux_sym_translation_unit_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1932), + [ts_builtin_sym_end] = ACTIONS(762), + [sym_identifier] = ACTIONS(764), + [aux_sym_preproc_include_token1] = ACTIONS(767), + [aux_sym_preproc_def_token1] = ACTIONS(770), + [aux_sym_preproc_if_token1] = ACTIONS(773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(776), + [aux_sym_preproc_ifdef_token2] = ACTIONS(776), + [sym_preproc_directive] = ACTIONS(779), + [anon_sym_LPAREN2] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(362), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_typedef] = ACTIONS(785), + [anon_sym_extern] = ACTIONS(788), + [anon_sym___attribute__] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(383), + [anon_sym___declspec] = ACTIONS(386), + [anon_sym___based] = ACTIONS(389), + [anon_sym___cdecl] = ACTIONS(392), + [anon_sym___clrcall] = ACTIONS(392), + [anon_sym___stdcall] = ACTIONS(392), + [anon_sym___fastcall] = ACTIONS(392), + [anon_sym___thiscall] = ACTIONS(392), + [anon_sym___vectorcall] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(791), + [anon_sym_LBRACK] = ACTIONS(398), + [anon_sym_static] = ACTIONS(401), + [anon_sym_register] = ACTIONS(401), + [anon_sym_inline] = ACTIONS(401), + [anon_sym_thread_local] = ACTIONS(401), + [anon_sym_input] = ACTIONS(401), + [anon_sym_const] = ACTIONS(404), + [anon_sym_volatile] = ACTIONS(404), + [anon_sym_restrict] = ACTIONS(404), + [anon_sym__Atomic] = ACTIONS(404), + [anon_sym_mutable] = ACTIONS(404), + [anon_sym_constexpr] = ACTIONS(404), + [anon_sym_constinit] = ACTIONS(404), + [anon_sym_consteval] = ACTIONS(404), + [anon_sym_signed] = ACTIONS(407), + [anon_sym_unsigned] = ACTIONS(407), + [anon_sym_long] = ACTIONS(407), + [anon_sym_short] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(413), + [anon_sym_class] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_union] = ACTIONS(422), + [anon_sym_if] = ACTIONS(794), + [anon_sym_switch] = ACTIONS(797), + [anon_sym_case] = ACTIONS(800), + [anon_sym_default] = ACTIONS(803), + [anon_sym_while] = ACTIONS(806), + [anon_sym_do] = ACTIONS(809), + [anon_sym_for] = ACTIONS(812), + [anon_sym_return] = ACTIONS(815), + [anon_sym_break] = ACTIONS(818), + [anon_sym_continue] = ACTIONS(821), + [anon_sym_goto] = ACTIONS(824), + [anon_sym_not] = ACTIONS(356), + [anon_sym_compl] = ACTIONS(356), + [anon_sym_DASH_DASH] = ACTIONS(458), + [anon_sym_PLUS_PLUS] = ACTIONS(458), + [anon_sym_sizeof] = ACTIONS(461), + [sym_number_literal] = ACTIONS(464), + [anon_sym_L_SQUOTE] = ACTIONS(467), + [anon_sym_u_SQUOTE] = ACTIONS(467), + [anon_sym_U_SQUOTE] = ACTIONS(467), + [anon_sym_u8_SQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(467), + [anon_sym_L_DQUOTE] = ACTIONS(470), + [anon_sym_u_DQUOTE] = ACTIONS(470), + [anon_sym_U_DQUOTE] = ACTIONS(470), + [anon_sym_u8_DQUOTE] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(470), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_null] = ACTIONS(473), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(195), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_try] = ACTIONS(197), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_namespace] = ACTIONS(201), - [anon_sym_using] = ACTIONS(203), - [anon_sym_static_assert] = ACTIONS(205), - [anon_sym_concept] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(476), + [anon_sym_decltype] = ACTIONS(479), + [anon_sym_virtual] = ACTIONS(482), + [anon_sym_explicit] = ACTIONS(485), + [anon_sym_typename] = ACTIONS(488), + [anon_sym_template] = ACTIONS(827), + [anon_sym_operator] = ACTIONS(494), + [anon_sym_try] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(500), + [anon_sym_throw] = ACTIONS(833), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_using] = ACTIONS(839), + [anon_sym_static_assert] = ACTIONS(842), + [anon_sym_concept] = ACTIONS(845), + [anon_sym_co_return] = ACTIONS(848), + [anon_sym_co_yield] = ACTIONS(851), + [anon_sym_R_DQUOTE] = ACTIONS(524), + [anon_sym_LR_DQUOTE] = ACTIONS(524), + [anon_sym_uR_DQUOTE] = ACTIONS(524), + [anon_sym_UR_DQUOTE] = ACTIONS(524), + [anon_sym_u8R_DQUOTE] = ACTIONS(524), + [anon_sym_co_await] = ACTIONS(527), + [anon_sym_new] = ACTIONS(530), + [anon_sym_requires] = ACTIONS(533), + [sym_this] = ACTIONS(473), + [sym_nullptr] = ACTIONS(473), }, [68] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(64), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(64), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(64), - [sym_template_instantiation] = STATE(64), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(64), - [sym_operator_cast_declaration] = STATE(64), - [sym_constructor_or_destructor_definition] = STATE(64), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -40830,16 +40916,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(64), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -40876,6 +40962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -40952,100 +41039,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [69] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(67), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(67), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(67), - [sym_template_instantiation] = STATE(67), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(67), - [sym_operator_cast_declaration] = STATE(67), - [sym_constructor_or_destructor_definition] = STATE(67), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -41058,16 +41145,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(67), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -41104,6 +41191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -41180,100 +41268,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [70] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -41286,16 +41374,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -41332,6 +41420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -41408,100 +41497,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [71] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4224), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2036), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5014), + [sym_function_declarator] = STATE(5028), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3345), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1932), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(5472), + [sym__constructor_specifiers] = STATE(1932), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -41514,16 +41603,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), + [sym_qualified_operator_cast_identifier] = STATE(5472), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1932), + [ts_builtin_sym_end] = ACTIONS(860), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [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(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(37), + [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(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(115), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_namespace] = ACTIONS(125), + [anon_sym_using] = ACTIONS(127), + [anon_sym_static_assert] = ACTIONS(129), + [anon_sym_concept] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [72] = { + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(65), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2043), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(65), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(65), + [sym_template_instantiation] = STATE(65), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(65), + [sym_operator_cast_declaration] = STATE(65), + [sym_constructor_or_destructor_definition] = STATE(65), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(65), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -41554,12 +41872,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(862), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -41635,329 +41954,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [72] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4249), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2160), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5028), - [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(72), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1957), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(5472), - [sym__constructor_specifiers] = STATE(1957), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), - [sym_qualified_operator_cast_identifier] = STATE(5472), - [sym_operator_name] = STATE(5152), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(72), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1957), - [ts_builtin_sym_end] = ACTIONS(670), - [sym_identifier] = ACTIONS(862), - [aux_sym_preproc_include_token1] = ACTIONS(865), - [aux_sym_preproc_def_token1] = ACTIONS(868), - [aux_sym_preproc_if_token1] = ACTIONS(871), - [aux_sym_preproc_ifdef_token1] = ACTIONS(874), - [aux_sym_preproc_ifdef_token2] = ACTIONS(874), - [sym_preproc_directive] = ACTIONS(877), - [anon_sym_LPAREN2] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(350), - [anon_sym_TILDE] = ACTIONS(353), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_STAR] = ACTIONS(359), - [anon_sym_AMP_AMP] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_typedef] = ACTIONS(883), - [anon_sym_extern] = ACTIONS(886), - [anon_sym___attribute__] = ACTIONS(377), - [anon_sym_COLON_COLON] = ACTIONS(380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(383), - [anon_sym___declspec] = ACTIONS(386), - [anon_sym___based] = ACTIONS(389), - [anon_sym___cdecl] = ACTIONS(392), - [anon_sym___clrcall] = ACTIONS(392), - [anon_sym___stdcall] = ACTIONS(392), - [anon_sym___fastcall] = ACTIONS(392), - [anon_sym___thiscall] = ACTIONS(392), - [anon_sym___vectorcall] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_LBRACK] = ACTIONS(398), - [anon_sym_static] = ACTIONS(401), - [anon_sym_register] = ACTIONS(401), - [anon_sym_inline] = ACTIONS(401), - [anon_sym_thread_local] = ACTIONS(401), - [anon_sym_const] = ACTIONS(404), - [anon_sym_volatile] = ACTIONS(404), - [anon_sym_restrict] = ACTIONS(404), - [anon_sym__Atomic] = ACTIONS(404), - [anon_sym_mutable] = ACTIONS(404), - [anon_sym_constexpr] = ACTIONS(404), - [anon_sym_constinit] = ACTIONS(404), - [anon_sym_consteval] = ACTIONS(404), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(410), - [anon_sym_enum] = ACTIONS(413), - [anon_sym_class] = ACTIONS(416), - [anon_sym_struct] = ACTIONS(419), - [anon_sym_union] = ACTIONS(422), - [anon_sym_if] = ACTIONS(892), - [anon_sym_switch] = ACTIONS(895), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(901), - [anon_sym_while] = ACTIONS(904), - [anon_sym_do] = ACTIONS(907), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(913), - [anon_sym_break] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_goto] = ACTIONS(922), - [anon_sym_not] = ACTIONS(356), - [anon_sym_compl] = ACTIONS(356), - [anon_sym_DASH_DASH] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(458), - [anon_sym_sizeof] = ACTIONS(461), - [sym_number_literal] = ACTIONS(464), - [anon_sym_L_SQUOTE] = ACTIONS(467), - [anon_sym_u_SQUOTE] = ACTIONS(467), - [anon_sym_U_SQUOTE] = ACTIONS(467), - [anon_sym_u8_SQUOTE] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_L_DQUOTE] = ACTIONS(470), - [anon_sym_u_DQUOTE] = ACTIONS(470), - [anon_sym_U_DQUOTE] = ACTIONS(470), - [anon_sym_u8_DQUOTE] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(470), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(476), - [anon_sym_decltype] = ACTIONS(479), - [anon_sym_virtual] = ACTIONS(482), - [anon_sym_explicit] = ACTIONS(485), - [anon_sym_typename] = ACTIONS(488), - [anon_sym_template] = ACTIONS(925), - [anon_sym_operator] = ACTIONS(494), - [anon_sym_try] = ACTIONS(928), - [anon_sym_delete] = ACTIONS(500), - [anon_sym_throw] = ACTIONS(931), - [anon_sym_namespace] = ACTIONS(934), - [anon_sym_using] = ACTIONS(937), - [anon_sym_static_assert] = ACTIONS(940), - [anon_sym_concept] = ACTIONS(943), - [anon_sym_co_return] = ACTIONS(946), - [anon_sym_co_yield] = ACTIONS(949), - [anon_sym_R_DQUOTE] = ACTIONS(524), - [anon_sym_LR_DQUOTE] = ACTIONS(524), - [anon_sym_uR_DQUOTE] = ACTIONS(524), - [anon_sym_UR_DQUOTE] = ACTIONS(524), - [anon_sym_u8R_DQUOTE] = ACTIONS(524), - [anon_sym_co_await] = ACTIONS(527), - [anon_sym_new] = ACTIONS(530), - [anon_sym_requires] = ACTIONS(533), - [sym_this] = ACTIONS(473), - [sym_nullptr] = ACTIONS(473), - }, [73] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -41970,16 +42061,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -42010,12 +42101,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(864), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -42092,100 +42184,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [74] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(71), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(71), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(71), - [sym_template_instantiation] = STATE(71), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(71), - [sym_operator_cast_declaration] = STATE(71), - [sym_constructor_or_destructor_definition] = STATE(71), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -42198,16 +42290,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(71), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -42238,12 +42330,13 @@ 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(536), - [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(866), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -42320,100 +42413,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [75] = { - [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(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(73), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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(3748), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(73), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(73), - [sym_template_instantiation] = STATE(73), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(73), - [sym_operator_cast_declaration] = STATE(73), - [sym_constructor_or_destructor_definition] = STATE(73), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [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(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -42426,222 +42519,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(73), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), - [sym_identifier] = ACTIONS(145), - [aux_sym_preproc_include_token1] = ACTIONS(147), - [aux_sym_preproc_def_token1] = ACTIONS(149), - [aux_sym_preproc_if_token1] = ACTIONS(153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(155), - [sym_preproc_directive] = ACTIONS(157), - [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(159), - [anon_sym_typedef] = ACTIONS(161), - [anon_sym_extern] = ACTIONS(163), - [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(536), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [aux_sym_translation_unit_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), + [sym_identifier] = ACTIONS(868), + [aux_sym_preproc_include_token1] = ACTIONS(871), + [aux_sym_preproc_def_token1] = ACTIONS(874), + [aux_sym_preproc_if_token1] = ACTIONS(877), + [aux_sym_preproc_ifdef_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(880), + [sym_preproc_directive] = ACTIONS(883), + [anon_sym_LPAREN2] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(362), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_typedef] = ACTIONS(889), + [anon_sym_extern] = ACTIONS(892), + [anon_sym___attribute__] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(383), + [anon_sym___declspec] = ACTIONS(386), + [anon_sym___based] = ACTIONS(389), + [anon_sym___cdecl] = ACTIONS(392), + [anon_sym___clrcall] = ACTIONS(392), + [anon_sym___stdcall] = ACTIONS(392), + [anon_sym___fastcall] = ACTIONS(392), + [anon_sym___thiscall] = ACTIONS(392), + [anon_sym___vectorcall] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(398), + [anon_sym_static] = ACTIONS(401), + [anon_sym_register] = ACTIONS(401), + [anon_sym_inline] = ACTIONS(401), + [anon_sym_thread_local] = ACTIONS(401), + [anon_sym_input] = ACTIONS(401), + [anon_sym_const] = ACTIONS(404), + [anon_sym_volatile] = ACTIONS(404), + [anon_sym_restrict] = ACTIONS(404), + [anon_sym__Atomic] = ACTIONS(404), + [anon_sym_mutable] = ACTIONS(404), + [anon_sym_constexpr] = ACTIONS(404), + [anon_sym_constinit] = ACTIONS(404), + [anon_sym_consteval] = ACTIONS(404), + [anon_sym_signed] = ACTIONS(407), + [anon_sym_unsigned] = ACTIONS(407), + [anon_sym_long] = ACTIONS(407), + [anon_sym_short] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(413), + [anon_sym_class] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_union] = ACTIONS(422), + [anon_sym_if] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_case] = ACTIONS(904), + [anon_sym_default] = ACTIONS(907), + [anon_sym_while] = ACTIONS(910), + [anon_sym_do] = ACTIONS(913), + [anon_sym_for] = ACTIONS(916), + [anon_sym_return] = ACTIONS(919), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_not] = ACTIONS(356), + [anon_sym_compl] = ACTIONS(356), + [anon_sym_DASH_DASH] = ACTIONS(458), + [anon_sym_PLUS_PLUS] = ACTIONS(458), + [anon_sym_sizeof] = ACTIONS(461), + [sym_number_literal] = ACTIONS(464), + [anon_sym_L_SQUOTE] = ACTIONS(467), + [anon_sym_u_SQUOTE] = ACTIONS(467), + [anon_sym_U_SQUOTE] = ACTIONS(467), + [anon_sym_u8_SQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(467), + [anon_sym_L_DQUOTE] = ACTIONS(470), + [anon_sym_u_DQUOTE] = ACTIONS(470), + [anon_sym_U_DQUOTE] = ACTIONS(470), + [anon_sym_u8_DQUOTE] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(470), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_null] = ACTIONS(473), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(195), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_try] = ACTIONS(197), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_namespace] = ACTIONS(201), - [anon_sym_using] = ACTIONS(203), - [anon_sym_static_assert] = ACTIONS(205), - [anon_sym_concept] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(476), + [anon_sym_decltype] = ACTIONS(479), + [anon_sym_virtual] = ACTIONS(482), + [anon_sym_explicit] = ACTIONS(485), + [anon_sym_typename] = ACTIONS(488), + [anon_sym_template] = ACTIONS(931), + [anon_sym_operator] = ACTIONS(494), + [anon_sym_try] = ACTIONS(934), + [anon_sym_delete] = ACTIONS(500), + [anon_sym_throw] = ACTIONS(937), + [anon_sym_namespace] = ACTIONS(940), + [anon_sym_using] = ACTIONS(943), + [anon_sym_static_assert] = ACTIONS(946), + [anon_sym_concept] = ACTIONS(949), + [anon_sym_co_return] = ACTIONS(952), + [anon_sym_co_yield] = ACTIONS(955), + [anon_sym_R_DQUOTE] = ACTIONS(524), + [anon_sym_LR_DQUOTE] = ACTIONS(524), + [anon_sym_uR_DQUOTE] = ACTIONS(524), + [anon_sym_UR_DQUOTE] = ACTIONS(524), + [anon_sym_u8R_DQUOTE] = ACTIONS(524), + [anon_sym_co_await] = ACTIONS(527), + [anon_sym_new] = ACTIONS(530), + [anon_sym_requires] = ACTIONS(533), + [sym_this] = ACTIONS(473), + [sym_nullptr] = ACTIONS(473), }, [76] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(1100), - [sym_ms_declspec_modifier] = STATE(3361), + [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(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_linkage_specification] = STATE(70), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(1098), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5014), [sym_array_declarator] = STATE(5152), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3748), + [sym_compound_statement] = STATE(70), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__empty_declaration] = STATE(70), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1984), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(70), + [sym_template_instantiation] = STATE(70), [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1984), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(70), + [sym_operator_cast_declaration] = STATE(70), + [sym_constructor_or_destructor_definition] = STATE(70), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3637), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(2568), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3651), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -42654,16 +42748,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4781), - [sym_qualified_identifier] = STATE(2769), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2772), + [sym_qualified_type_identifier] = STATE(3642), [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), [sym_user_defined_literal] = STATE(3521), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [aux_sym_translation_unit_repeat1] = STATE(70), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -42700,6 +42794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -42776,66 +42871,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [77] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4227), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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_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(3757), + [sym_declaration] = STATE(80), + [sym_type_definition] = STATE(80), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4245), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(80), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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_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(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [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(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -42847,13 +42942,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(79), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(80), [sym_identifier] = ACTIONS(960), [aux_sym_preproc_include_token1] = ACTIONS(962), [aux_sym_preproc_def_token1] = ACTIONS(962), @@ -42892,6 +42987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -42969,66 +43065,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [78] = { - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4227), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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_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(3757), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4245), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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_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(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [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(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -43040,13 +43136,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(80), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(81), [sym_identifier] = ACTIONS(960), [aux_sym_preproc_include_token1] = ACTIONS(978), [aux_sym_preproc_def_token1] = ACTIONS(978), @@ -43085,6 +43181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -43162,66 +43259,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [79] = { - [sym_declaration] = STATE(81), - [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4227), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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_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(3757), + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4245), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(78), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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_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(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [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(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -43233,13 +43330,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(81), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(78), [sym_identifier] = ACTIONS(960), [aux_sym_preproc_include_token1] = ACTIONS(982), [aux_sym_preproc_def_token1] = ACTIONS(982), @@ -43278,6 +43375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -43357,19 +43455,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [80] = { [sym_declaration] = STATE(81), [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4227), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4245), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_attributed_statement] = STATE(81), [sym_labeled_statement] = STATE(81), [sym_expression_statement] = STATE(81), @@ -43382,39 +43480,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(81), [sym_continue_statement] = STATE(81), [sym_goto_statement] = STATE(81), - [sym__expression] = STATE(3757), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), [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(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -43426,12 +43524,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [aux_sym_case_statement_repeat1] = STATE(81), [sym_identifier] = ACTIONS(960), [aux_sym_preproc_include_token1] = ACTIONS(986), @@ -43471,6 +43569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -43550,19 +43649,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [81] = { [sym_declaration] = STATE(81), [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4227), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4245), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_attributed_statement] = STATE(81), [sym_labeled_statement] = STATE(81), [sym_expression_statement] = STATE(81), @@ -43575,39 +43674,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(81), [sym_continue_statement] = STATE(81), [sym_goto_statement] = STATE(81), - [sym__expression] = STATE(3757), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), [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(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -43619,12 +43718,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [aux_sym_case_statement_repeat1] = STATE(81), [sym_identifier] = ACTIONS(990), [aux_sym_preproc_include_token1] = ACTIONS(993), @@ -43664,6 +43763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(1018), [anon_sym_inline] = ACTIONS(1018), [anon_sym_thread_local] = ACTIONS(1018), + [anon_sym_input] = ACTIONS(1018), [anon_sym_const] = ACTIONS(1039), [anon_sym_volatile] = ACTIONS(1039), [anon_sym_restrict] = ACTIONS(1039), @@ -43741,66 +43841,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1102), }, [82] = { - [sym_declaration] = STATE(90), - [sym_type_definition] = STATE(90), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4246), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(90), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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_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(3705), + [sym_declaration] = STATE(84), + [sym_type_definition] = STATE(84), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4221), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(84), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(84), + [sym_labeled_statement] = STATE(84), + [sym_expression_statement] = STATE(84), + [sym_if_statement] = STATE(84), + [sym_switch_statement] = STATE(84), + [sym_while_statement] = STATE(84), + [sym_do_statement] = STATE(84), + [sym_for_statement] = STATE(84), + [sym_return_statement] = STATE(84), + [sym_break_statement] = STATE(84), + [sym_continue_statement] = STATE(84), + [sym_goto_statement] = STATE(84), + [sym__expression] = STATE(3713), [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [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(2568), + [sym_for_range_loop] = STATE(84), + [sym_co_return_statement] = STATE(84), + [sym_co_yield_statement] = STATE(84), + [sym_throw_statement] = STATE(84), + [sym_try_statement] = STATE(84), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -43812,204 +43912,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(90), - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(978), - [aux_sym_preproc_def_token1] = ACTIONS(978), - [aux_sym_preproc_if_token1] = ACTIONS(978), - [aux_sym_preproc_if_token2] = ACTIONS(978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(978), - [sym_preproc_directive] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_typedef] = ACTIONS(572), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(978), - [anon_sym___cdecl] = ACTIONS(978), - [anon_sym___clrcall] = ACTIONS(978), - [anon_sym___stdcall] = ACTIONS(978), - [anon_sym___fastcall] = ACTIONS(978), - [anon_sym___thiscall] = ACTIONS(978), - [anon_sym___vectorcall] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(578), - [anon_sym_else] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(978), - [anon_sym_default] = ACTIONS(978), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(978), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(978), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_using] = ACTIONS(978), - [anon_sym_static_assert] = ACTIONS(978), - [anon_sym_concept] = ACTIONS(978), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [83] = { - [sym_declaration] = STATE(94), - [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4246), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(94), - [sym_labeled_statement] = STATE(94), - [sym_expression_statement] = STATE(94), - [sym_if_statement] = STATE(94), - [sym_switch_statement] = STATE(94), - [sym_while_statement] = STATE(94), - [sym_do_statement] = STATE(94), - [sym_for_statement] = STATE(94), - [sym_return_statement] = STATE(94), - [sym_break_statement] = STATE(94), - [sym_continue_statement] = STATE(94), - [sym_goto_statement] = STATE(94), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(94), - [sym_co_return_statement] = STATE(94), - [sym_co_yield_statement] = STATE(94), - [sym_throw_statement] = STATE(94), - [sym_try_statement] = STATE(94), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), - [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(94), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(84), [sym_identifier] = ACTIONS(1147), [aux_sym_preproc_include_token1] = ACTIONS(962), [aux_sym_preproc_def_token1] = ACTIONS(962), @@ -44026,8 +43935,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP_AMP] = ACTIONS(968), [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_typedef] = ACTIONS(572), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_typedef] = ACTIONS(700), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), @@ -44040,12 +43949,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(962), [anon_sym___thiscall] = ACTIONS(962), [anon_sym___vectorcall] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -44063,18 +43973,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(578), + [anon_sym_if] = ACTIONS(706), [anon_sym_else] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(580), + [anon_sym_switch] = ACTIONS(708), [anon_sym_case] = ACTIONS(962), [anon_sym_default] = ACTIONS(962), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -44102,15 +44012,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(113), [anon_sym_template] = ACTIONS(976), [anon_sym_operator] = ACTIONS(962), - [anon_sym_try] = ACTIONS(602), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), + [anon_sym_throw] = ACTIONS(732), [anon_sym_namespace] = ACTIONS(962), [anon_sym_using] = ACTIONS(962), [anon_sym_static_assert] = ACTIONS(962), [anon_sym_concept] = ACTIONS(962), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [83] = { + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4237), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3521), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(1149), + [aux_sym_preproc_include_token1] = ACTIONS(978), + [aux_sym_preproc_def_token1] = ACTIONS(978), + [aux_sym_preproc_if_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(978), + [sym_preproc_directive] = ACTIONS(978), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(978), + [anon_sym___cdecl] = ACTIONS(978), + [anon_sym___clrcall] = ACTIONS(978), + [anon_sym___stdcall] = ACTIONS(978), + [anon_sym___fastcall] = ACTIONS(978), + [anon_sym___thiscall] = ACTIONS(978), + [anon_sym___vectorcall] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_else] = ACTIONS(978), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(978), + [anon_sym_default] = ACTIONS(978), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(978), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(978), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(978), + [anon_sym_using] = ACTIONS(978), + [anon_sym_static_assert] = ACTIONS(978), + [anon_sym_concept] = ACTIONS(978), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -44123,66 +44225,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [84] = { - [sym_declaration] = STATE(84), - [sym_type_definition] = STATE(84), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4235), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(84), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(84), - [sym_labeled_statement] = STATE(84), - [sym_expression_statement] = STATE(84), - [sym_if_statement] = STATE(84), - [sym_switch_statement] = STATE(84), - [sym_while_statement] = STATE(84), - [sym_do_statement] = STATE(84), - [sym_for_statement] = STATE(84), - [sym_return_statement] = STATE(84), - [sym_break_statement] = STATE(84), - [sym_continue_statement] = STATE(84), - [sym_goto_statement] = STATE(84), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), + [sym_declaration] = STATE(96), + [sym_type_definition] = STATE(96), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4221), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(96), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(96), + [sym_labeled_statement] = STATE(96), + [sym_expression_statement] = STATE(96), + [sym_if_statement] = STATE(96), + [sym_switch_statement] = STATE(96), + [sym_while_statement] = STATE(96), + [sym_do_statement] = STATE(96), + [sym_for_statement] = STATE(96), + [sym_return_statement] = STATE(96), + [sym_break_statement] = STATE(96), + [sym_continue_statement] = STATE(96), + [sym_goto_statement] = STATE(96), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(84), - [sym_co_return_statement] = STATE(84), - [sym_co_yield_statement] = STATE(84), - [sym_throw_statement] = STATE(84), - [sym_try_statement] = STATE(84), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(96), + [sym_co_return_statement] = STATE(96), + [sym_co_yield_statement] = STATE(96), + [sym_throw_statement] = STATE(96), + [sym_try_statement] = STATE(96), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -44194,15 +44296,783 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(84), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(96), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(986), + [aux_sym_preproc_def_token1] = ACTIONS(986), + [aux_sym_preproc_if_token1] = ACTIONS(986), + [aux_sym_preproc_if_token2] = ACTIONS(986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(986), + [sym_preproc_directive] = ACTIONS(986), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_typedef] = ACTIONS(700), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(986), + [anon_sym___cdecl] = ACTIONS(986), + [anon_sym___clrcall] = ACTIONS(986), + [anon_sym___stdcall] = ACTIONS(986), + [anon_sym___fastcall] = ACTIONS(986), + [anon_sym___thiscall] = ACTIONS(986), + [anon_sym___vectorcall] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(706), + [anon_sym_else] = ACTIONS(986), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(986), + [anon_sym_default] = ACTIONS(986), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(986), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(986), + [anon_sym_try] = ACTIONS(730), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_using] = ACTIONS(986), + [anon_sym_static_assert] = ACTIONS(986), + [anon_sym_concept] = ACTIONS(986), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [85] = { + [sym_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4221), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(87), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3521), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(982), + [aux_sym_preproc_def_token1] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(982), + [aux_sym_preproc_if_token2] = ACTIONS(982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(982), + [sym_preproc_directive] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_typedef] = ACTIONS(700), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(982), + [anon_sym___cdecl] = ACTIONS(982), + [anon_sym___clrcall] = ACTIONS(982), + [anon_sym___stdcall] = ACTIONS(982), + [anon_sym___fastcall] = ACTIONS(982), + [anon_sym___thiscall] = ACTIONS(982), + [anon_sym___vectorcall] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(706), + [anon_sym_else] = ACTIONS(982), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(982), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(982), + [anon_sym_try] = ACTIONS(730), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_namespace] = ACTIONS(982), + [anon_sym_using] = ACTIONS(982), + [anon_sym_static_assert] = ACTIONS(982), + [anon_sym_concept] = ACTIONS(982), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [86] = { + [sym_declaration] = STATE(88), + [sym_type_definition] = STATE(88), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4216), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(88), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(88), + [sym_labeled_statement] = STATE(88), + [sym_expression_statement] = STATE(88), + [sym_if_statement] = STATE(88), + [sym_switch_statement] = STATE(88), + [sym_while_statement] = STATE(88), + [sym_do_statement] = STATE(88), + [sym_for_statement] = STATE(88), + [sym_return_statement] = STATE(88), + [sym_break_statement] = STATE(88), + [sym_continue_statement] = STATE(88), + [sym_goto_statement] = STATE(88), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3521), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(88), + [ts_builtin_sym_end] = ACTIONS(988), + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(986), + [aux_sym_preproc_def_token1] = ACTIONS(986), + [aux_sym_preproc_if_token1] = ACTIONS(986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(986), + [sym_preproc_directive] = ACTIONS(986), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(986), + [anon_sym___cdecl] = ACTIONS(986), + [anon_sym___clrcall] = ACTIONS(986), + [anon_sym___stdcall] = ACTIONS(986), + [anon_sym___fastcall] = ACTIONS(986), + [anon_sym___thiscall] = ACTIONS(986), + [anon_sym___vectorcall] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_else] = ACTIONS(986), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(986), + [anon_sym_default] = ACTIONS(986), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(986), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(986), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_using] = ACTIONS(986), + [anon_sym_static_assert] = ACTIONS(986), + [anon_sym_concept] = ACTIONS(986), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [87] = { + [sym_declaration] = STATE(96), + [sym_type_definition] = STATE(96), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4221), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(96), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(96), + [sym_labeled_statement] = STATE(96), + [sym_expression_statement] = STATE(96), + [sym_if_statement] = STATE(96), + [sym_switch_statement] = STATE(96), + [sym_while_statement] = STATE(96), + [sym_do_statement] = STATE(96), + [sym_for_statement] = STATE(96), + [sym_return_statement] = STATE(96), + [sym_break_statement] = STATE(96), + [sym_continue_statement] = STATE(96), + [sym_goto_statement] = STATE(96), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(96), + [sym_co_return_statement] = STATE(96), + [sym_co_yield_statement] = STATE(96), + [sym_throw_statement] = STATE(96), + [sym_try_statement] = STATE(96), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(96), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(978), + [aux_sym_preproc_def_token1] = ACTIONS(978), + [aux_sym_preproc_if_token1] = ACTIONS(978), + [aux_sym_preproc_if_token2] = ACTIONS(978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(978), + [sym_preproc_directive] = ACTIONS(978), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_typedef] = ACTIONS(700), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(978), + [anon_sym___cdecl] = ACTIONS(978), + [anon_sym___clrcall] = ACTIONS(978), + [anon_sym___stdcall] = ACTIONS(978), + [anon_sym___fastcall] = ACTIONS(978), + [anon_sym___thiscall] = ACTIONS(978), + [anon_sym___vectorcall] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(706), + [anon_sym_else] = ACTIONS(978), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(978), + [anon_sym_default] = ACTIONS(978), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(978), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(978), + [anon_sym_try] = ACTIONS(730), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_namespace] = ACTIONS(978), + [anon_sym_using] = ACTIONS(978), + [anon_sym_static_assert] = ACTIONS(978), + [anon_sym_concept] = ACTIONS(978), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [88] = { + [sym_declaration] = STATE(88), + [sym_type_definition] = STATE(88), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4216), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(88), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(88), + [sym_labeled_statement] = STATE(88), + [sym_expression_statement] = STATE(88), + [sym_if_statement] = STATE(88), + [sym_switch_statement] = STATE(88), + [sym_while_statement] = STATE(88), + [sym_do_statement] = STATE(88), + [sym_for_statement] = STATE(88), + [sym_return_statement] = STATE(88), + [sym_break_statement] = STATE(88), + [sym_continue_statement] = STATE(88), + [sym_goto_statement] = STATE(88), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3521), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(88), [ts_builtin_sym_end] = ACTIONS(1007), - [sym_identifier] = ACTIONS(1149), + [sym_identifier] = ACTIONS(1153), [aux_sym_preproc_include_token1] = ACTIONS(993), [aux_sym_preproc_def_token1] = ACTIONS(993), [aux_sym_preproc_if_token1] = ACTIONS(993), @@ -44217,8 +45087,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1004), [anon_sym_AMP_AMP] = ACTIONS(1007), [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym_typedef] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_typedef] = ACTIONS(1159), [anon_sym_extern] = ACTIONS(1018), [anon_sym___attribute__] = ACTIONS(1021), [anon_sym_COLON_COLON] = ACTIONS(1024), @@ -44231,12 +45101,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(993), [anon_sym___thiscall] = ACTIONS(993), [anon_sym___vectorcall] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1162), [anon_sym_LBRACK] = ACTIONS(1036), [anon_sym_static] = ACTIONS(1018), [anon_sym_register] = ACTIONS(1018), [anon_sym_inline] = ACTIONS(1018), [anon_sym_thread_local] = ACTIONS(1018), + [anon_sym_input] = ACTIONS(1018), [anon_sym_const] = ACTIONS(1039), [anon_sym_volatile] = ACTIONS(1039), [anon_sym_restrict] = ACTIONS(1039), @@ -44254,18 +45125,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1051), [anon_sym_struct] = ACTIONS(1054), [anon_sym_union] = ACTIONS(1057), - [anon_sym_if] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1165), [anon_sym_else] = ACTIONS(993), - [anon_sym_switch] = ACTIONS(1164), + [anon_sym_switch] = ACTIONS(1168), [anon_sym_case] = ACTIONS(993), [anon_sym_default] = ACTIONS(993), - [anon_sym_while] = ACTIONS(1167), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1173), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1182), - [anon_sym_goto] = ACTIONS(1185), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1180), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1189), [anon_sym_not] = ACTIONS(1001), [anon_sym_compl] = ACTIONS(1001), [anon_sym_DASH_DASH] = ACTIONS(1087), @@ -44293,15 +45164,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(1114), [anon_sym_template] = ACTIONS(1117), [anon_sym_operator] = ACTIONS(993), - [anon_sym_try] = ACTIONS(1188), + [anon_sym_try] = ACTIONS(1192), [anon_sym_delete] = ACTIONS(1123), - [anon_sym_throw] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1195), [anon_sym_namespace] = ACTIONS(993), [anon_sym_using] = ACTIONS(993), [anon_sym_static_assert] = ACTIONS(993), [anon_sym_concept] = ACTIONS(993), - [anon_sym_co_return] = ACTIONS(1194), - [anon_sym_co_yield] = ACTIONS(1197), + [anon_sym_co_return] = ACTIONS(1198), + [anon_sym_co_yield] = ACTIONS(1201), [anon_sym_R_DQUOTE] = ACTIONS(1135), [anon_sym_LR_DQUOTE] = ACTIONS(1135), [anon_sym_uR_DQUOTE] = ACTIONS(1135), @@ -44313,67 +45184,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1102), [sym_nullptr] = ACTIONS(1102), }, - [85] = { - [sym_declaration] = STATE(84), - [sym_type_definition] = STATE(84), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4235), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(84), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(84), - [sym_labeled_statement] = STATE(84), - [sym_expression_statement] = STATE(84), - [sym_if_statement] = STATE(84), - [sym_switch_statement] = STATE(84), - [sym_while_statement] = STATE(84), - [sym_do_statement] = STATE(84), - [sym_for_statement] = STATE(84), - [sym_return_statement] = STATE(84), - [sym_break_statement] = STATE(84), - [sym_continue_statement] = STATE(84), - [sym_goto_statement] = STATE(84), - [sym__expression] = STATE(3668), + [89] = { + [sym_declaration] = STATE(90), + [sym_type_definition] = STATE(90), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4216), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(90), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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_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(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(84), - [sym_co_return_statement] = STATE(84), - [sym_co_yield_statement] = STATE(84), - [sym_throw_statement] = STATE(84), - [sym_try_statement] = STATE(84), - [sym_raw_string_literal] = STATE(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -44385,15 +45256,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(84), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(90), [ts_builtin_sym_end] = ACTIONS(984), - [sym_identifier] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1151), [aux_sym_preproc_include_token1] = ACTIONS(982), [aux_sym_preproc_def_token1] = ACTIONS(982), [aux_sym_preproc_if_token1] = ACTIONS(982), @@ -44428,6 +45299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -44504,258 +45376,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [86] = { - [sym_declaration] = STATE(93), - [sym_type_definition] = STATE(93), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4223), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(93), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3521), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), - [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(93), - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_typedef] = ACTIONS(161), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(962), - [anon_sym___cdecl] = ACTIONS(962), - [anon_sym___clrcall] = ACTIONS(962), - [anon_sym___stdcall] = ACTIONS(962), - [anon_sym___fastcall] = ACTIONS(962), - [anon_sym___thiscall] = ACTIONS(962), - [anon_sym___vectorcall] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(171), - [anon_sym_else] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(962), - [anon_sym_try] = ACTIONS(197), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_using] = ACTIONS(962), - [anon_sym_static_assert] = ACTIONS(962), - [anon_sym_concept] = ACTIONS(962), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [87] = { - [sym_declaration] = STATE(84), - [sym_type_definition] = STATE(84), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4235), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(84), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(84), - [sym_labeled_statement] = STATE(84), - [sym_expression_statement] = STATE(84), - [sym_if_statement] = STATE(84), - [sym_switch_statement] = STATE(84), - [sym_while_statement] = STATE(84), - [sym_do_statement] = STATE(84), - [sym_for_statement] = STATE(84), - [sym_return_statement] = STATE(84), - [sym_break_statement] = STATE(84), - [sym_continue_statement] = STATE(84), - [sym_goto_statement] = STATE(84), - [sym__expression] = STATE(3668), + [90] = { + [sym_declaration] = STATE(88), + [sym_type_definition] = STATE(88), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4216), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(88), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(88), + [sym_labeled_statement] = STATE(88), + [sym_expression_statement] = STATE(88), + [sym_if_statement] = STATE(88), + [sym_switch_statement] = STATE(88), + [sym_while_statement] = STATE(88), + [sym_do_statement] = STATE(88), + [sym_for_statement] = STATE(88), + [sym_return_statement] = STATE(88), + [sym_break_statement] = STATE(88), + [sym_continue_statement] = STATE(88), + [sym_goto_statement] = STATE(88), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(84), - [sym_co_return_statement] = STATE(84), - [sym_co_yield_statement] = STATE(84), - [sym_throw_statement] = STATE(84), - [sym_try_statement] = STATE(84), - [sym_raw_string_literal] = STATE(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -44767,397 +45448,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(84), - [ts_builtin_sym_end] = ACTIONS(988), - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(986), - [anon_sym___cdecl] = ACTIONS(986), - [anon_sym___clrcall] = ACTIONS(986), - [anon_sym___stdcall] = ACTIONS(986), - [anon_sym___fastcall] = ACTIONS(986), - [anon_sym___thiscall] = ACTIONS(986), - [anon_sym___vectorcall] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(71), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(986), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(986), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_namespace] = ACTIONS(986), - [anon_sym_using] = ACTIONS(986), - [anon_sym_static_assert] = ACTIONS(986), - [anon_sym_concept] = ACTIONS(986), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [88] = { - [sym_declaration] = STATE(85), - [sym_type_definition] = STATE(85), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4235), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [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_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(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3521), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), - [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(85), - [ts_builtin_sym_end] = ACTIONS(968), - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(962), - [anon_sym___cdecl] = ACTIONS(962), - [anon_sym___clrcall] = ACTIONS(962), - [anon_sym___stdcall] = ACTIONS(962), - [anon_sym___fastcall] = ACTIONS(962), - [anon_sym___thiscall] = ACTIONS(962), - [anon_sym___vectorcall] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(71), - [anon_sym_else] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(962), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_using] = ACTIONS(962), - [anon_sym_static_assert] = ACTIONS(962), - [anon_sym_concept] = ACTIONS(962), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [89] = { - [sym_declaration] = STATE(87), - [sym_type_definition] = STATE(87), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4235), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(87), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(87), - [sym_labeled_statement] = STATE(87), - [sym_expression_statement] = STATE(87), - [sym_if_statement] = STATE(87), - [sym_switch_statement] = STATE(87), - [sym_while_statement] = STATE(87), - [sym_do_statement] = STATE(87), - [sym_for_statement] = STATE(87), - [sym_return_statement] = STATE(87), - [sym_break_statement] = STATE(87), - [sym_continue_statement] = STATE(87), - [sym_goto_statement] = STATE(87), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3521), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), - [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(87), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(88), [ts_builtin_sym_end] = ACTIONS(980), - [sym_identifier] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1151), [aux_sym_preproc_include_token1] = ACTIONS(978), [aux_sym_preproc_def_token1] = ACTIONS(978), [aux_sym_preproc_if_token1] = ACTIONS(978), @@ -45192,6 +45491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -45268,67 +45568,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [90] = { - [sym_declaration] = STATE(91), - [sym_type_definition] = STATE(91), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4246), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(91), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(91), - [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), - [sym_if_statement] = STATE(91), - [sym_switch_statement] = STATE(91), - [sym_while_statement] = STATE(91), - [sym_do_statement] = STATE(91), - [sym_for_statement] = STATE(91), - [sym_return_statement] = STATE(91), - [sym_break_statement] = STATE(91), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(91), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), + [91] = { + [sym_declaration] = STATE(86), + [sym_type_definition] = STATE(86), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4216), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(86), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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_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(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [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(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -45340,49 +45640,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(91), - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_if_token2] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(86), + [ts_builtin_sym_end] = ACTIONS(968), + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(962), + [aux_sym_preproc_def_token1] = ACTIONS(962), + [aux_sym_preproc_if_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(962), + [sym_preproc_directive] = ACTIONS(962), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(988), + [anon_sym_AMP_AMP] = ACTIONS(968), [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_typedef] = ACTIONS(572), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(986), - [anon_sym___cdecl] = ACTIONS(986), - [anon_sym___clrcall] = ACTIONS(986), - [anon_sym___stdcall] = ACTIONS(986), - [anon_sym___fastcall] = ACTIONS(986), - [anon_sym___thiscall] = ACTIONS(986), - [anon_sym___vectorcall] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym___based] = ACTIONS(962), + [anon_sym___cdecl] = ACTIONS(962), + [anon_sym___clrcall] = ACTIONS(962), + [anon_sym___stdcall] = ACTIONS(962), + [anon_sym___fastcall] = ACTIONS(962), + [anon_sym___thiscall] = ACTIONS(962), + [anon_sym___vectorcall] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -45400,18 +45701,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(578), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), + [anon_sym_if] = ACTIONS(71), + [anon_sym_else] = ACTIONS(962), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -45435,19 +45736,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(986), + [anon_sym_explicit] = ACTIONS(962), [anon_sym_typename] = ACTIONS(113), [anon_sym_template] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(986), - [anon_sym_try] = ACTIONS(602), + [anon_sym_operator] = ACTIONS(962), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_namespace] = ACTIONS(986), - [anon_sym_using] = ACTIONS(986), - [anon_sym_static_assert] = ACTIONS(986), - [anon_sym_concept] = ACTIONS(986), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_using] = ACTIONS(962), + [anon_sym_static_assert] = ACTIONS(962), + [anon_sym_concept] = ACTIONS(962), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -45459,67 +45760,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [91] = { - [sym_declaration] = STATE(91), - [sym_type_definition] = STATE(91), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4246), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(91), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(91), - [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), - [sym_if_statement] = STATE(91), - [sym_switch_statement] = STATE(91), - [sym_while_statement] = STATE(91), - [sym_do_statement] = STATE(91), - [sym_for_statement] = STATE(91), - [sym_return_statement] = STATE(91), - [sym_break_statement] = STATE(91), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(91), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), + [92] = { + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4237), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [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(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -45531,18 +45832,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(91), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(92), [sym_identifier] = ACTIONS(1204), [aux_sym_preproc_include_token1] = ACTIONS(993), [aux_sym_preproc_def_token1] = ACTIONS(993), [aux_sym_preproc_if_token1] = ACTIONS(993), - [aux_sym_preproc_if_token2] = ACTIONS(993), [aux_sym_preproc_ifdef_token1] = ACTIONS(993), [aux_sym_preproc_ifdef_token2] = ACTIONS(993), [sym_preproc_directive] = ACTIONS(993), @@ -45569,11 +45869,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(993), [anon_sym___vectorcall] = ACTIONS(993), [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1007), [anon_sym_LBRACK] = ACTIONS(1036), [anon_sym_static] = ACTIONS(1018), [anon_sym_register] = ACTIONS(1018), [anon_sym_inline] = ACTIONS(1018), [anon_sym_thread_local] = ACTIONS(1018), + [anon_sym_input] = ACTIONS(1018), [anon_sym_const] = ACTIONS(1039), [anon_sym_volatile] = ACTIONS(1039), [anon_sym_restrict] = ACTIONS(1039), @@ -45650,213 +45952,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1102), [sym_nullptr] = ACTIONS(1102), }, - [92] = { - [sym_declaration] = STATE(92), - [sym_type_definition] = STATE(92), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4223), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(92), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(92), - [sym_labeled_statement] = STATE(92), - [sym_expression_statement] = STATE(92), - [sym_if_statement] = STATE(92), - [sym_switch_statement] = STATE(92), - [sym_while_statement] = STATE(92), - [sym_do_statement] = STATE(92), - [sym_for_statement] = STATE(92), - [sym_return_statement] = STATE(92), - [sym_break_statement] = STATE(92), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(92), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3521), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), - [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(92), - [sym_identifier] = ACTIONS(1255), - [aux_sym_preproc_include_token1] = ACTIONS(993), - [aux_sym_preproc_def_token1] = ACTIONS(993), - [aux_sym_preproc_if_token1] = ACTIONS(993), - [aux_sym_preproc_ifdef_token1] = ACTIONS(993), - [aux_sym_preproc_ifdef_token2] = ACTIONS(993), - [sym_preproc_directive] = ACTIONS(993), - [anon_sym_LPAREN2] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_AMP_AMP] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1261), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym___attribute__] = ACTIONS(1021), - [anon_sym_COLON_COLON] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1027), - [anon_sym___declspec] = ACTIONS(1030), - [anon_sym___based] = ACTIONS(993), - [anon_sym___cdecl] = ACTIONS(993), - [anon_sym___clrcall] = ACTIONS(993), - [anon_sym___stdcall] = ACTIONS(993), - [anon_sym___fastcall] = ACTIONS(993), - [anon_sym___thiscall] = ACTIONS(993), - [anon_sym___vectorcall] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_static] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_inline] = ACTIONS(1018), - [anon_sym_thread_local] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1039), - [anon_sym_volatile] = ACTIONS(1039), - [anon_sym_restrict] = ACTIONS(1039), - [anon_sym__Atomic] = ACTIONS(1039), - [anon_sym_mutable] = ACTIONS(1039), - [anon_sym_constexpr] = ACTIONS(1039), - [anon_sym_constinit] = ACTIONS(1039), - [anon_sym_consteval] = ACTIONS(1039), - [anon_sym_signed] = ACTIONS(1042), - [anon_sym_unsigned] = ACTIONS(1042), - [anon_sym_long] = ACTIONS(1042), - [anon_sym_short] = ACTIONS(1042), - [sym_primitive_type] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1051), - [anon_sym_struct] = ACTIONS(1054), - [anon_sym_union] = ACTIONS(1057), - [anon_sym_if] = ACTIONS(1267), - [anon_sym_else] = ACTIONS(993), - [anon_sym_switch] = ACTIONS(1270), - [anon_sym_case] = ACTIONS(993), - [anon_sym_default] = ACTIONS(993), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1279), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1291), - [anon_sym_not] = ACTIONS(1001), - [anon_sym_compl] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1087), - [anon_sym_sizeof] = ACTIONS(1090), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_L_SQUOTE] = ACTIONS(1096), - [anon_sym_u_SQUOTE] = ACTIONS(1096), - [anon_sym_U_SQUOTE] = ACTIONS(1096), - [anon_sym_u8_SQUOTE] = ACTIONS(1096), - [anon_sym_SQUOTE] = ACTIONS(1096), - [anon_sym_L_DQUOTE] = ACTIONS(1099), - [anon_sym_u_DQUOTE] = ACTIONS(1099), - [anon_sym_U_DQUOTE] = ACTIONS(1099), - [anon_sym_u8_DQUOTE] = ACTIONS(1099), - [anon_sym_DQUOTE] = ACTIONS(1099), - [sym_true] = ACTIONS(1102), - [sym_false] = ACTIONS(1102), - [sym_null] = ACTIONS(1102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1105), - [anon_sym_decltype] = ACTIONS(1108), - [anon_sym_virtual] = ACTIONS(1111), - [anon_sym_explicit] = ACTIONS(993), - [anon_sym_typename] = ACTIONS(1114), - [anon_sym_template] = ACTIONS(1117), - [anon_sym_operator] = ACTIONS(993), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_delete] = ACTIONS(1123), - [anon_sym_throw] = ACTIONS(1297), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_using] = ACTIONS(993), - [anon_sym_static_assert] = ACTIONS(993), - [anon_sym_concept] = ACTIONS(993), - [anon_sym_co_return] = ACTIONS(1300), - [anon_sym_co_yield] = ACTIONS(1303), - [anon_sym_R_DQUOTE] = ACTIONS(1135), - [anon_sym_LR_DQUOTE] = ACTIONS(1135), - [anon_sym_uR_DQUOTE] = ACTIONS(1135), - [anon_sym_UR_DQUOTE] = ACTIONS(1135), - [anon_sym_u8R_DQUOTE] = ACTIONS(1135), - [anon_sym_co_await] = ACTIONS(1138), - [anon_sym_new] = ACTIONS(1141), - [anon_sym_requires] = ACTIONS(1144), - [sym_this] = ACTIONS(1102), - [sym_nullptr] = ACTIONS(1102), - }, [93] = { [sym_declaration] = STATE(92), [sym_type_definition] = STATE(92), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4223), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4237), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), [sym_compound_statement] = STATE(92), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_attributed_statement] = STATE(92), [sym_labeled_statement] = STATE(92), [sym_expression_statement] = STATE(92), @@ -45869,39 +45980,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(92), [sym_continue_statement] = STATE(92), [sym_goto_statement] = STATE(92), - [sym__expression] = STATE(3748), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), [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(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -45913,587 +46024,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [aux_sym_case_statement_repeat1] = STATE(92), - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_typedef] = ACTIONS(161), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(171), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(982), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(982), - [anon_sym_try] = ACTIONS(197), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_namespace] = ACTIONS(982), - [anon_sym_using] = ACTIONS(982), - [anon_sym_static_assert] = ACTIONS(982), - [anon_sym_concept] = ACTIONS(982), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [94] = { - [sym_declaration] = STATE(91), - [sym_type_definition] = STATE(91), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4246), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(91), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(91), - [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), - [sym_if_statement] = STATE(91), - [sym_switch_statement] = STATE(91), - [sym_while_statement] = STATE(91), - [sym_do_statement] = STATE(91), - [sym_for_statement] = STATE(91), - [sym_return_statement] = STATE(91), - [sym_break_statement] = STATE(91), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(91), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3521), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), - [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(91), - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_if_token2] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_typedef] = ACTIONS(572), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(578), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(982), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(982), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_namespace] = ACTIONS(982), - [anon_sym_using] = ACTIONS(982), - [anon_sym_static_assert] = ACTIONS(982), - [anon_sym_concept] = ACTIONS(982), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [95] = { - [sym_declaration] = STATE(96), - [sym_type_definition] = STATE(96), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4223), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(96), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(96), - [sym_labeled_statement] = STATE(96), - [sym_expression_statement] = STATE(96), - [sym_if_statement] = STATE(96), - [sym_switch_statement] = STATE(96), - [sym_while_statement] = STATE(96), - [sym_do_statement] = STATE(96), - [sym_for_statement] = STATE(96), - [sym_return_statement] = STATE(96), - [sym_break_statement] = STATE(96), - [sym_continue_statement] = STATE(96), - [sym_goto_statement] = STATE(96), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(96), - [sym_co_return_statement] = STATE(96), - [sym_co_yield_statement] = STATE(96), - [sym_throw_statement] = STATE(96), - [sym_try_statement] = STATE(96), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), - [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(978), - [aux_sym_preproc_def_token1] = ACTIONS(978), - [aux_sym_preproc_if_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(978), - [sym_preproc_directive] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_typedef] = ACTIONS(161), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(978), - [anon_sym___cdecl] = ACTIONS(978), - [anon_sym___clrcall] = ACTIONS(978), - [anon_sym___stdcall] = ACTIONS(978), - [anon_sym___fastcall] = ACTIONS(978), - [anon_sym___thiscall] = ACTIONS(978), - [anon_sym___vectorcall] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(171), - [anon_sym_else] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(978), - [anon_sym_default] = ACTIONS(978), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(978), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(978), - [anon_sym_try] = ACTIONS(197), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_using] = ACTIONS(978), - [anon_sym_static_assert] = ACTIONS(978), - [anon_sym_concept] = ACTIONS(978), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [96] = { - [sym_declaration] = STATE(92), - [sym_type_definition] = STATE(92), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4223), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(92), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(92), - [sym_labeled_statement] = STATE(92), - [sym_expression_statement] = STATE(92), - [sym_if_statement] = STATE(92), - [sym_switch_statement] = STATE(92), - [sym_while_statement] = STATE(92), - [sym_do_statement] = STATE(92), - [sym_for_statement] = STATE(92), - [sym_return_statement] = STATE(92), - [sym_break_statement] = STATE(92), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(92), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3521), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), - [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(92), - [sym_identifier] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1149), [aux_sym_preproc_include_token1] = ACTIONS(986), [aux_sym_preproc_def_token1] = ACTIONS(986), [aux_sym_preproc_if_token1] = ACTIONS(986), @@ -46529,6 +46067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -46605,67 +46144,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [97] = { - [sym_declaration] = STATE(97), - [sym_type_definition] = STATE(97), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4236), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(97), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(97), - [sym_labeled_statement] = STATE(97), - [sym_expression_statement] = STATE(97), - [sym_if_statement] = STATE(97), - [sym_switch_statement] = STATE(97), - [sym_while_statement] = STATE(97), - [sym_do_statement] = STATE(97), - [sym_for_statement] = STATE(97), - [sym_return_statement] = STATE(97), - [sym_break_statement] = STATE(97), - [sym_continue_statement] = STATE(97), - [sym_goto_statement] = STATE(97), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), + [94] = { + [sym_declaration] = STATE(83), + [sym_type_definition] = STATE(83), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4237), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(83), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [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_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(3747), + [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [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(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -46677,34 +46216,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(1306), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(1149), + [aux_sym_preproc_include_token1] = ACTIONS(982), + [aux_sym_preproc_def_token1] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(982), + [sym_preproc_directive] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(982), + [anon_sym___cdecl] = ACTIONS(982), + [anon_sym___clrcall] = ACTIONS(982), + [anon_sym___stdcall] = ACTIONS(982), + [anon_sym___fastcall] = ACTIONS(982), + [anon_sym___thiscall] = ACTIONS(982), + [anon_sym___vectorcall] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_else] = ACTIONS(982), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(982), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(982), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(982), + [anon_sym_using] = ACTIONS(982), + [anon_sym_static_assert] = ACTIONS(982), + [anon_sym_concept] = ACTIONS(982), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [95] = { + [sym_declaration] = STATE(93), + [sym_type_definition] = STATE(93), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4237), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(93), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3521), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(1149), + [aux_sym_preproc_include_token1] = ACTIONS(962), + [aux_sym_preproc_def_token1] = ACTIONS(962), + [aux_sym_preproc_if_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(962), + [sym_preproc_directive] = ACTIONS(962), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(962), + [anon_sym___cdecl] = ACTIONS(962), + [anon_sym___clrcall] = ACTIONS(962), + [anon_sym___stdcall] = ACTIONS(962), + [anon_sym___fastcall] = ACTIONS(962), + [anon_sym___thiscall] = ACTIONS(962), + [anon_sym___vectorcall] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_else] = ACTIONS(962), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(962), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(962), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_using] = ACTIONS(962), + [anon_sym_static_assert] = ACTIONS(962), + [anon_sym_concept] = ACTIONS(962), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [96] = { + [sym_declaration] = STATE(96), + [sym_type_definition] = STATE(96), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4221), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(96), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(96), + [sym_labeled_statement] = STATE(96), + [sym_expression_statement] = STATE(96), + [sym_if_statement] = STATE(96), + [sym_switch_statement] = STATE(96), + [sym_while_statement] = STATE(96), + [sym_do_statement] = STATE(96), + [sym_for_statement] = STATE(96), + [sym_return_statement] = STATE(96), + [sym_break_statement] = STATE(96), + [sym_continue_statement] = STATE(96), + [sym_goto_statement] = STATE(96), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(96), + [sym_co_return_statement] = STATE(96), + [sym_co_yield_statement] = STATE(96), + [sym_throw_statement] = STATE(96), + [sym_try_statement] = STATE(96), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(96), + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(993), + [aux_sym_preproc_def_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_if_token2] = ACTIONS(993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(993), + [sym_preproc_directive] = ACTIONS(993), [anon_sym_LPAREN2] = ACTIONS(995), [anon_sym_BANG] = ACTIONS(998), [anon_sym_TILDE] = ACTIONS(998), [anon_sym_DASH] = ACTIONS(1001), [anon_sym_PLUS] = ACTIONS(1001), [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_AMP_AMP] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1261), [anon_sym_extern] = ACTIONS(1018), [anon_sym___attribute__] = ACTIONS(1021), [anon_sym_COLON_COLON] = ACTIONS(1024), [anon_sym_LBRACK_LBRACK] = ACTIONS(1027), [anon_sym___declspec] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym___based] = ACTIONS(993), + [anon_sym___cdecl] = ACTIONS(993), + [anon_sym___clrcall] = ACTIONS(993), + [anon_sym___stdcall] = ACTIONS(993), + [anon_sym___fastcall] = ACTIONS(993), + [anon_sym___thiscall] = ACTIONS(993), + [anon_sym___vectorcall] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(1036), [anon_sym_static] = ACTIONS(1018), [anon_sym_register] = ACTIONS(1018), [anon_sym_inline] = ACTIONS(1018), [anon_sym_thread_local] = ACTIONS(1018), + [anon_sym_input] = ACTIONS(1018), [anon_sym_const] = ACTIONS(1039), [anon_sym_volatile] = ACTIONS(1039), [anon_sym_restrict] = ACTIONS(1039), @@ -46722,16 +46661,362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1051), [anon_sym_struct] = ACTIONS(1054), [anon_sym_union] = ACTIONS(1057), - [anon_sym_if] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1267), [anon_sym_else] = ACTIONS(993), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1327), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1333), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1339), - [anon_sym_goto] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_case] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_while] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1285), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1291), + [anon_sym_not] = ACTIONS(1001), + [anon_sym_compl] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_sizeof] = ACTIONS(1090), + [sym_number_literal] = ACTIONS(1093), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1099), + [anon_sym_u_DQUOTE] = ACTIONS(1099), + [anon_sym_U_DQUOTE] = ACTIONS(1099), + [anon_sym_u8_DQUOTE] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1099), + [sym_true] = ACTIONS(1102), + [sym_false] = ACTIONS(1102), + [sym_null] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1105), + [anon_sym_decltype] = ACTIONS(1108), + [anon_sym_virtual] = ACTIONS(1111), + [anon_sym_explicit] = ACTIONS(993), + [anon_sym_typename] = ACTIONS(1114), + [anon_sym_template] = ACTIONS(1117), + [anon_sym_operator] = ACTIONS(993), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_delete] = ACTIONS(1123), + [anon_sym_throw] = ACTIONS(1297), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_using] = ACTIONS(993), + [anon_sym_static_assert] = ACTIONS(993), + [anon_sym_concept] = ACTIONS(993), + [anon_sym_co_return] = ACTIONS(1300), + [anon_sym_co_yield] = ACTIONS(1303), + [anon_sym_R_DQUOTE] = ACTIONS(1135), + [anon_sym_LR_DQUOTE] = ACTIONS(1135), + [anon_sym_uR_DQUOTE] = ACTIONS(1135), + [anon_sym_UR_DQUOTE] = ACTIONS(1135), + [anon_sym_u8R_DQUOTE] = ACTIONS(1135), + [anon_sym_co_await] = ACTIONS(1138), + [anon_sym_new] = ACTIONS(1141), + [anon_sym_requires] = ACTIONS(1144), + [sym_this] = ACTIONS(1102), + [sym_nullptr] = ACTIONS(1102), + }, + [97] = { + [sym_declaration] = STATE(98), + [sym_type_definition] = STATE(98), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4239), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(98), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(98), + [sym_labeled_statement] = STATE(98), + [sym_expression_statement] = STATE(98), + [sym_if_statement] = STATE(98), + [sym_switch_statement] = STATE(98), + [sym_while_statement] = STATE(98), + [sym_do_statement] = STATE(98), + [sym_for_statement] = STATE(98), + [sym_return_statement] = STATE(98), + [sym_break_statement] = STATE(98), + [sym_continue_statement] = STATE(98), + [sym_goto_statement] = STATE(98), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3521), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(98), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(986), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [98] = { + [sym_declaration] = STATE(98), + [sym_type_definition] = STATE(98), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4239), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(98), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(98), + [sym_labeled_statement] = STATE(98), + [sym_expression_statement] = STATE(98), + [sym_if_statement] = STATE(98), + [sym_switch_statement] = STATE(98), + [sym_while_statement] = STATE(98), + [sym_do_statement] = STATE(98), + [sym_for_statement] = STATE(98), + [sym_return_statement] = STATE(98), + [sym_break_statement] = STATE(98), + [sym_continue_statement] = STATE(98), + [sym_goto_statement] = STATE(98), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3521), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(98), + [sym_identifier] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1004), + [anon_sym_AMP] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym___attribute__] = ACTIONS(1021), + [anon_sym_COLON_COLON] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1027), + [anon_sym___declspec] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_inline] = ACTIONS(1018), + [anon_sym_thread_local] = ACTIONS(1018), + [anon_sym_input] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_volatile] = ACTIONS(1039), + [anon_sym_restrict] = ACTIONS(1039), + [anon_sym__Atomic] = ACTIONS(1039), + [anon_sym_mutable] = ACTIONS(1039), + [anon_sym_constexpr] = ACTIONS(1039), + [anon_sym_constinit] = ACTIONS(1039), + [anon_sym_consteval] = ACTIONS(1039), + [anon_sym_signed] = ACTIONS(1042), + [anon_sym_unsigned] = ACTIONS(1042), + [anon_sym_long] = ACTIONS(1042), + [anon_sym_short] = ACTIONS(1042), + [sym_primitive_type] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1051), + [anon_sym_struct] = ACTIONS(1054), + [anon_sym_union] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_goto] = ACTIONS(1376), [anon_sym_not] = ACTIONS(1001), [anon_sym_compl] = ACTIONS(1001), [anon_sym_DASH_DASH] = ACTIONS(1087), @@ -46757,11 +47042,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(1111), [anon_sym_typename] = ACTIONS(1114), [anon_sym_template] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1345), + [anon_sym_try] = ACTIONS(1379), [anon_sym_delete] = ACTIONS(1123), - [anon_sym_throw] = ACTIONS(1348), - [anon_sym_co_return] = ACTIONS(1351), - [anon_sym_co_yield] = ACTIONS(1354), + [anon_sym_throw] = ACTIONS(1382), + [anon_sym_co_return] = ACTIONS(1385), + [anon_sym_co_yield] = ACTIONS(1388), [anon_sym_R_DQUOTE] = ACTIONS(1135), [anon_sym_LR_DQUOTE] = ACTIONS(1135), [anon_sym_uR_DQUOTE] = ACTIONS(1135), @@ -46773,190 +47058,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1102), [sym_nullptr] = ACTIONS(1102), }, - [98] = { - [sym_declaration] = STATE(100), - [sym_type_definition] = STATE(100), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4236), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(100), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(100), - [sym_labeled_statement] = STATE(100), - [sym_expression_statement] = STATE(100), - [sym_if_statement] = STATE(100), - [sym_switch_statement] = STATE(100), - [sym_while_statement] = STATE(100), - [sym_do_statement] = STATE(100), - [sym_for_statement] = STATE(100), - [sym_return_statement] = STATE(100), - [sym_break_statement] = STATE(100), - [sym_continue_statement] = STATE(100), - [sym_goto_statement] = STATE(100), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3521), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), - [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(100), - [sym_identifier] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_typedef] = ACTIONS(1361), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_else] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, [99] = { [sym_declaration] = STATE(97), [sym_type_definition] = STATE(97), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4236), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4239), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), [sym_compound_statement] = STATE(97), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_attributed_statement] = STATE(97), [sym_labeled_statement] = STATE(97), [sym_expression_statement] = STATE(97), @@ -46969,39 +47086,39 @@ 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(3652), + [sym__expression] = STATE(3671), [sym_comma_expression] = STATE(6772), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), [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(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -47013,14 +47130,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [aux_sym_case_statement_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1306), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -47028,19 +47145,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1310), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1312), [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -47058,16 +47176,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(962), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -47093,11 +47211,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(1332), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -47110,66 +47228,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [100] = { - [sym_declaration] = STATE(97), - [sym_type_definition] = STATE(97), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4236), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(97), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(97), - [sym_labeled_statement] = STATE(97), - [sym_expression_statement] = STATE(97), - [sym_if_statement] = STATE(97), - [sym_switch_statement] = STATE(97), - [sym_while_statement] = STATE(97), - [sym_do_statement] = STATE(97), - [sym_for_statement] = STATE(97), - [sym_return_statement] = STATE(97), - [sym_break_statement] = STATE(97), - [sym_continue_statement] = STATE(97), - [sym_goto_statement] = STATE(97), - [sym__expression] = STATE(3652), + [sym_declaration] = STATE(98), + [sym_type_definition] = STATE(98), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4239), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(98), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(98), + [sym_labeled_statement] = STATE(98), + [sym_expression_statement] = STATE(98), + [sym_if_statement] = STATE(98), + [sym_switch_statement] = STATE(98), + [sym_while_statement] = STATE(98), + [sym_do_statement] = STATE(98), + [sym_for_statement] = STATE(98), + [sym_return_statement] = STATE(98), + [sym_break_statement] = STATE(98), + [sym_continue_statement] = STATE(98), + [sym_goto_statement] = STATE(98), + [sym__expression] = STATE(3671), [sym_comma_expression] = STATE(6772), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [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(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -47181,14 +47299,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(1357), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(98), + [sym_identifier] = ACTIONS(1306), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -47196,19 +47314,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1310), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1312), [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -47226,16 +47345,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(978), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -47261,11 +47380,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(1332), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -47278,66 +47397,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [101] = { - [sym_declaration] = STATE(99), - [sym_type_definition] = STATE(99), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4236), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(1244), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_attributed_statement] = STATE(99), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym__expression] = STATE(3652), + [sym_declaration] = STATE(100), + [sym_type_definition] = STATE(100), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4239), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(1175), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_compound_statement] = STATE(100), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_attributed_statement] = STATE(100), + [sym_labeled_statement] = STATE(100), + [sym_expression_statement] = STATE(100), + [sym_if_statement] = STATE(100), + [sym_switch_statement] = STATE(100), + [sym_while_statement] = STATE(100), + [sym_do_statement] = STATE(100), + [sym_for_statement] = STATE(100), + [sym_return_statement] = STATE(100), + [sym_break_statement] = STATE(100), + [sym_continue_statement] = STATE(100), + [sym_goto_statement] = STATE(100), + [sym__expression] = STATE(3671), [sym_comma_expression] = STATE(6772), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(99), - [sym_co_return_statement] = STATE(99), - [sym_co_yield_statement] = STATE(99), - [sym_throw_statement] = STATE(99), - [sym_try_statement] = STATE(99), - [sym_raw_string_literal] = STATE(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -47349,14 +47468,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_case_statement_repeat1] = STATE(99), - [sym_identifier] = ACTIONS(1357), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_case_statement_repeat1] = STATE(100), + [sym_identifier] = ACTIONS(1306), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -47364,19 +47483,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1310), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1312), [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -47394,16 +47514,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_else] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(982), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -47429,11 +47549,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(1332), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -47448,50 +47568,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [102] = { [sym_declaration] = STATE(1766), [sym_type_definition] = STATE(1766), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4242), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4235), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_expression_statement] = STATE(1766), - [sym__expression] = STATE(3627), + [sym__expression] = STATE(3635), [sym_comma_expression] = STATE(6588), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), [sym_alias_declaration] = STATE(1766), [sym_init_statement] = STATE(120), [sym_condition_declaration] = STATE(6691), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -47503,11 +47623,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -47516,8 +47636,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1310), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), @@ -47528,6 +47648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -47584,51 +47705,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [103] = { - [sym_declaration] = STATE(1069), - [sym_type_definition] = STATE(4110), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4245), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_expression_statement] = STATE(4110), - [sym__expression] = STATE(3798), - [sym_comma_expression] = STATE(7068), + [sym_declaration] = STATE(1075), + [sym_type_definition] = STATE(4080), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4253), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_expression_statement] = STATE(4080), + [sym__expression] = STATE(3743), + [sym_comma_expression] = STATE(7036), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [sym_alias_declaration] = STATE(4110), - [sym_init_statement] = STATE(2044), - [sym_raw_string_literal] = STATE(2568), + [sym_alias_declaration] = STATE(4080), + [sym_init_statement] = STATE(2002), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -47640,11 +47761,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -47665,6 +47786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -47721,51 +47843,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [104] = { - [sym_declaration] = STATE(1061), - [sym_type_definition] = STATE(4110), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4238), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_expression_statement] = STATE(4110), - [sym__expression] = STATE(3712), - [sym_comma_expression] = STATE(6648), + [sym_declaration] = STATE(1065), + [sym_type_definition] = STATE(4080), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4232), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_expression_statement] = STATE(4080), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(7151), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [sym_alias_declaration] = STATE(4110), - [sym_init_statement] = STATE(2059), - [sym_raw_string_literal] = STATE(2568), + [sym_alias_declaration] = STATE(4080), + [sym_init_statement] = STATE(2001), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -47777,11 +47899,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -47802,6 +47924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -47858,51 +47981,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [105] = { - [sym_declaration] = STATE(1067), - [sym_type_definition] = STATE(4110), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4233), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_expression_statement] = STATE(4110), - [sym__expression] = STATE(3741), - [sym_comma_expression] = STATE(7036), + [sym_declaration] = STATE(1068), + [sym_type_definition] = STATE(4080), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4238), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_expression_statement] = STATE(4080), + [sym__expression] = STATE(3773), + [sym_comma_expression] = STATE(7097), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [sym_alias_declaration] = STATE(4110), - [sym_init_statement] = STATE(2045), - [sym_raw_string_literal] = STATE(2568), + [sym_alias_declaration] = STATE(4080), + [sym_init_statement] = STATE(2011), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -47914,11 +48037,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -47939,6 +48062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -47996,50 +48120,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [106] = { [sym_declaration] = STATE(1073), - [sym_type_definition] = STATE(4110), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4232), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_expression_statement] = STATE(4110), - [sym__expression] = STATE(3732), - [sym_comma_expression] = STATE(6892), + [sym_type_definition] = STATE(4080), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4243), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_expression_statement] = STATE(4080), + [sym__expression] = STATE(3801), + [sym_comma_expression] = STATE(7068), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [sym_alias_declaration] = STATE(4110), - [sym_init_statement] = STATE(2075), - [sym_raw_string_literal] = STATE(2568), + [sym_alias_declaration] = STATE(4080), + [sym_init_statement] = STATE(2003), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -48051,11 +48175,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -48076,6 +48200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -48132,51 +48257,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [107] = { - [sym_declaration] = STATE(1076), - [sym_type_definition] = STATE(4110), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4239), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_expression_statement] = STATE(4110), - [sym__expression] = STATE(3767), - [sym_comma_expression] = STATE(7097), + [sym_declaration] = STATE(1078), + [sym_type_definition] = STATE(4080), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4248), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_expression_statement] = STATE(4080), + [sym__expression] = STATE(3719), + [sym_comma_expression] = STATE(6648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [sym_alias_declaration] = STATE(4110), - [sym_init_statement] = STATE(2043), - [sym_raw_string_literal] = STATE(2568), + [sym_alias_declaration] = STATE(4080), + [sym_init_statement] = STATE(2013), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -48188,11 +48313,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -48213,6 +48338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -48270,50 +48396,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [108] = { [sym_declaration] = STATE(1064), - [sym_type_definition] = STATE(4110), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4231), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_expression_statement] = STATE(4110), - [sym__expression] = STATE(3740), - [sym_comma_expression] = STATE(7151), + [sym_type_definition] = STATE(4080), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4249), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_expression_statement] = STATE(4080), + [sym__expression] = STATE(3750), + [sym_comma_expression] = STATE(6892), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [sym_alias_declaration] = STATE(4110), - [sym_init_statement] = STATE(2110), - [sym_raw_string_literal] = STATE(2568), + [sym_alias_declaration] = STATE(4080), + [sym_init_statement] = STATE(2008), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -48325,11 +48451,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -48350,6 +48476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -48406,67 +48533,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [109] = { - [sym__declaration_modifiers] = STATE(2193), - [sym__declaration_specifiers] = STATE(3399), - [sym_attribute_specifier] = STATE(2193), - [sym_attribute_declaration] = STATE(2193), - [sym_ms_declspec_modifier] = STATE(2193), - [sym_storage_class_specifier] = STATE(2193), - [sym_type_qualifier] = STATE(2193), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym__declaration_modifiers] = STATE(2091), + [sym__declaration_specifiers] = STATE(3432), + [sym_attribute_specifier] = STATE(2091), + [sym_attribute_declaration] = STATE(2091), + [sym_ms_declspec_modifier] = STATE(2091), + [sym_storage_class_specifier] = STATE(2091), + [sym_type_qualifier] = STATE(2091), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_parameter_declaration] = STATE(5841), - [sym__expression] = STATE(2783), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym__expression] = STATE(2791), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6294), - [sym_virtual_function_specifier] = STATE(2193), - [sym_dependent_type] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2091), + [sym_dependent_type] = STATE(3448), [sym_optional_parameter_declaration] = STATE(5841), [sym_variadic_parameter_declaration] = STATE(5841), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6680), - [sym__unary_right_fold] = STATE(6682), - [sym__binary_fold] = STATE(6684), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__unary_left_fold] = STATE(7112), + [sym__unary_right_fold] = STATE(7108), + [sym__binary_fold] = STATE(7106), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4939), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(3656), - [sym_user_defined_literal] = STATE(3098), - [aux_sym__declaration_specifiers_repeat1] = STATE(2193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(3642), + [sym_user_defined_literal] = STATE(3111), + [aux_sym__declaration_specifiers_repeat1] = STATE(2091), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(1413), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_RPAREN] = ACTIONS(1417), @@ -48487,6 +48614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -48542,67 +48670,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [110] = { - [sym__declaration_modifiers] = STATE(2193), - [sym__declaration_specifiers] = STATE(3399), - [sym_attribute_specifier] = STATE(2193), - [sym_attribute_declaration] = STATE(2193), - [sym_ms_declspec_modifier] = STATE(2193), - [sym_storage_class_specifier] = STATE(2193), - [sym_type_qualifier] = STATE(2193), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym__declaration_modifiers] = STATE(2091), + [sym__declaration_specifiers] = STATE(3432), + [sym_attribute_specifier] = STATE(2091), + [sym_attribute_declaration] = STATE(2091), + [sym_ms_declspec_modifier] = STATE(2091), + [sym_storage_class_specifier] = STATE(2091), + [sym_type_qualifier] = STATE(2091), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_parameter_declaration] = STATE(5841), - [sym__expression] = STATE(2773), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym__expression] = STATE(2776), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6294), - [sym_virtual_function_specifier] = STATE(2193), - [sym_dependent_type] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2091), + [sym_dependent_type] = STATE(3448), [sym_optional_parameter_declaration] = STATE(5841), [sym_variadic_parameter_declaration] = STATE(5841), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), [sym__unary_left_fold] = STATE(6777), [sym__unary_right_fold] = STATE(6779), [sym__binary_fold] = STATE(6784), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4939), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(3656), - [sym_user_defined_literal] = STATE(3098), - [aux_sym__declaration_specifiers_repeat1] = STATE(2193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(3642), + [sym_user_defined_literal] = STATE(3111), + [aux_sym__declaration_specifiers_repeat1] = STATE(2091), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(1413), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_RPAREN] = ACTIONS(1417), @@ -48623,6 +48751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -48678,67 +48807,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [111] = { - [sym__declaration_modifiers] = STATE(2193), - [sym__declaration_specifiers] = STATE(3399), - [sym_attribute_specifier] = STATE(2193), - [sym_attribute_declaration] = STATE(2193), - [sym_ms_declspec_modifier] = STATE(2193), - [sym_storage_class_specifier] = STATE(2193), - [sym_type_qualifier] = STATE(2193), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym__declaration_modifiers] = STATE(2091), + [sym__declaration_specifiers] = STATE(3432), + [sym_attribute_specifier] = STATE(2091), + [sym_attribute_declaration] = STATE(2091), + [sym_ms_declspec_modifier] = STATE(2091), + [sym_storage_class_specifier] = STATE(2091), + [sym_type_qualifier] = STATE(2091), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_parameter_declaration] = STATE(5841), - [sym__expression] = STATE(2785), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym__expression] = STATE(2795), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6294), - [sym_virtual_function_specifier] = STATE(2193), - [sym_dependent_type] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2091), + [sym_dependent_type] = STATE(3448), [sym_optional_parameter_declaration] = STATE(5841), [sym_variadic_parameter_declaration] = STATE(5841), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6814), - [sym__unary_right_fold] = STATE(6813), - [sym__binary_fold] = STATE(6812), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__unary_left_fold] = STATE(6822), + [sym__unary_right_fold] = STATE(6818), + [sym__binary_fold] = STATE(6808), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4939), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(3656), - [sym_user_defined_literal] = STATE(3098), - [aux_sym__declaration_specifiers_repeat1] = STATE(2193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(3642), + [sym_user_defined_literal] = STATE(3111), + [aux_sym__declaration_specifiers_repeat1] = STATE(2091), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(1413), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_RPAREN] = ACTIONS(1417), @@ -48759,6 +48888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -48814,67 +48944,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [112] = { - [sym__declaration_modifiers] = STATE(2193), - [sym__declaration_specifiers] = STATE(3399), - [sym_attribute_specifier] = STATE(2193), - [sym_attribute_declaration] = STATE(2193), - [sym_ms_declspec_modifier] = STATE(2193), - [sym_storage_class_specifier] = STATE(2193), - [sym_type_qualifier] = STATE(2193), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym__declaration_modifiers] = STATE(2091), + [sym__declaration_specifiers] = STATE(3432), + [sym_attribute_specifier] = STATE(2091), + [sym_attribute_declaration] = STATE(2091), + [sym_ms_declspec_modifier] = STATE(2091), + [sym_storage_class_specifier] = STATE(2091), + [sym_type_qualifier] = STATE(2091), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_parameter_declaration] = STATE(5841), - [sym__expression] = STATE(2787), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym__expression] = STATE(2790), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6294), - [sym_virtual_function_specifier] = STATE(2193), - [sym_dependent_type] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2091), + [sym_dependent_type] = STATE(3448), [sym_optional_parameter_declaration] = STATE(5841), [sym_variadic_parameter_declaration] = STATE(5841), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(7112), - [sym__unary_right_fold] = STATE(7108), - [sym__binary_fold] = STATE(7106), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4939), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(3656), - [sym_user_defined_literal] = STATE(3098), - [aux_sym__declaration_specifiers_repeat1] = STATE(2193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(3642), + [sym_user_defined_literal] = STATE(3111), + [aux_sym__declaration_specifiers_repeat1] = STATE(2091), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(1413), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_RPAREN] = ACTIONS(1417), @@ -48895,6 +49025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -48950,67 +49081,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [113] = { - [sym__declaration_modifiers] = STATE(2193), - [sym__declaration_specifiers] = STATE(3399), - [sym_attribute_specifier] = STATE(2193), - [sym_attribute_declaration] = STATE(2193), - [sym_ms_declspec_modifier] = STATE(2193), - [sym_storage_class_specifier] = STATE(2193), - [sym_type_qualifier] = STATE(2193), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym__declaration_modifiers] = STATE(2091), + [sym__declaration_specifiers] = STATE(3432), + [sym_attribute_specifier] = STATE(2091), + [sym_attribute_declaration] = STATE(2091), + [sym_ms_declspec_modifier] = STATE(2091), + [sym_storage_class_specifier] = STATE(2091), + [sym_type_qualifier] = STATE(2091), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_parameter_declaration] = STATE(5841), - [sym__expression] = STATE(2790), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym__expression] = STATE(2786), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6294), - [sym_virtual_function_specifier] = STATE(2193), - [sym_dependent_type] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2091), + [sym_dependent_type] = STATE(3448), [sym_optional_parameter_declaration] = STATE(5841), [sym_variadic_parameter_declaration] = STATE(5841), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6822), - [sym__unary_right_fold] = STATE(6818), - [sym__binary_fold] = STATE(6808), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__unary_left_fold] = STATE(6680), + [sym__unary_right_fold] = STATE(6682), + [sym__binary_fold] = STATE(6684), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4939), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(3656), - [sym_user_defined_literal] = STATE(3098), - [aux_sym__declaration_specifiers_repeat1] = STATE(2193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(3642), + [sym_user_defined_literal] = STATE(3111), + [aux_sym__declaration_specifiers_repeat1] = STATE(2091), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(1413), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_RPAREN] = ACTIONS(1417), @@ -49031,6 +49162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -49086,67 +49218,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [114] = { - [sym__declaration_modifiers] = STATE(2193), - [sym__declaration_specifiers] = STATE(3399), - [sym_attribute_specifier] = STATE(2193), - [sym_attribute_declaration] = STATE(2193), - [sym_ms_declspec_modifier] = STATE(2193), - [sym_storage_class_specifier] = STATE(2193), - [sym_type_qualifier] = STATE(2193), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym__declaration_modifiers] = STATE(2091), + [sym__declaration_specifiers] = STATE(3432), + [sym_attribute_specifier] = STATE(2091), + [sym_attribute_declaration] = STATE(2091), + [sym_ms_declspec_modifier] = STATE(2091), + [sym_storage_class_specifier] = STATE(2091), + [sym_type_qualifier] = STATE(2091), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_parameter_declaration] = STATE(5841), - [sym__expression] = STATE(2786), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym__expression] = STATE(2788), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6294), - [sym_virtual_function_specifier] = STATE(2193), - [sym_dependent_type] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2091), + [sym_dependent_type] = STATE(3448), [sym_optional_parameter_declaration] = STATE(5841), [sym_variadic_parameter_declaration] = STATE(5841), - [sym_template_type] = STATE(3663), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3654), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6946), - [sym__unary_right_fold] = STATE(6944), - [sym__binary_fold] = STATE(6943), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__unary_left_fold] = STATE(6814), + [sym__unary_right_fold] = STATE(6813), + [sym__binary_fold] = STATE(6812), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4939), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(3656), - [sym_user_defined_literal] = STATE(3098), - [aux_sym__declaration_specifiers_repeat1] = STATE(2193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(3642), + [sym_user_defined_literal] = STATE(3111), + [aux_sym__declaration_specifiers_repeat1] = STATE(2091), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(1413), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_RPAREN] = ACTIONS(1417), @@ -49167,6 +49299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -49222,49 +49355,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [115] = { - [sym__declaration_modifiers] = STATE(2193), - [sym__declaration_specifiers] = STATE(3399), - [sym_attribute_specifier] = STATE(2193), - [sym_attribute_declaration] = STATE(2193), - [sym_ms_declspec_modifier] = STATE(2193), - [sym_storage_class_specifier] = STATE(2193), - [sym_type_qualifier] = STATE(2193), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym__declaration_modifiers] = STATE(2091), + [sym__declaration_specifiers] = STATE(3432), + [sym_attribute_specifier] = STATE(2091), + [sym_attribute_declaration] = STATE(2091), + [sym_ms_declspec_modifier] = STATE(2091), + [sym_storage_class_specifier] = STATE(2091), + [sym_type_qualifier] = STATE(2091), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_parameter_declaration] = STATE(5829), [sym__expression] = STATE(3633), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(5862), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2193), - [sym_dependent_type] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2091), + [sym_dependent_type] = STATE(3448), [sym_optional_parameter_declaration] = STATE(5829), [sym_variadic_parameter_declaration] = STATE(5829), - [sym_template_type] = STATE(3663), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -49276,11 +49409,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4891), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym__declaration_specifiers_repeat1] = STATE(2091), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(1463), [anon_sym_DOT_DOT_DOT] = ACTIONS(1465), [anon_sym_RPAREN] = ACTIONS(1467), @@ -49302,6 +49435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -49364,63 +49498,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5152), [sym_array_declarator] = STATE(5152), - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2789), - [sym_comma_expression] = STATE(6841), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(6965), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2773), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(6947), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), + [sym_dependent_type] = STATE(2880), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(2991), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3001), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6822), - [sym__unary_right_fold] = STATE(6818), - [sym__binary_fold] = STATE(6808), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4906), [sym_qualified_identifier] = STATE(2668), - [sym_qualified_type_identifier] = STATE(4485), + [sym_qualified_type_identifier] = STATE(4543), [sym_operator_name] = STATE(5152), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), [sym_identifier] = ACTIONS(1471), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_LPAREN2] = ACTIONS(1473), @@ -49496,63 +49630,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5152), [sym_array_declarator] = STATE(5152), - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2770), - [sym_comma_expression] = STATE(6948), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(6947), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2793), + [sym_comma_expression] = STATE(6841), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(6816), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), + [sym_dependent_type] = STATE(2880), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(2991), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3001), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6946), - [sym__unary_right_fold] = STATE(6944), - [sym__binary_fold] = STATE(6943), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__unary_left_fold] = STATE(6814), + [sym__unary_right_fold] = STATE(6813), + [sym__binary_fold] = STATE(6812), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4906), [sym_qualified_identifier] = STATE(2668), - [sym_qualified_type_identifier] = STATE(4485), + [sym_qualified_type_identifier] = STATE(4543), [sym_operator_name] = STATE(5152), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), [sym_identifier] = ACTIONS(1471), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_LPAREN2] = ACTIONS(1473), @@ -49628,63 +49762,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5152), [sym_array_declarator] = STATE(5152), - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2789), - [sym_comma_expression] = STATE(6841), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(6816), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2773), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(7114), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), + [sym_dependent_type] = STATE(2880), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(2991), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3001), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6814), - [sym__unary_right_fold] = STATE(6813), - [sym__binary_fold] = STATE(6812), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__unary_left_fold] = STATE(7112), + [sym__unary_right_fold] = STATE(7108), + [sym__binary_fold] = STATE(7106), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4906), [sym_qualified_identifier] = STATE(2668), - [sym_qualified_type_identifier] = STATE(4485), + [sym_qualified_type_identifier] = STATE(4543), [sym_operator_name] = STATE(5152), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), [sym_identifier] = ACTIONS(1471), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_LPAREN2] = ACTIONS(1473), @@ -49760,63 +49894,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(5152), [sym_array_declarator] = STATE(5152), - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2770), - [sym_comma_expression] = STATE(6948), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(7114), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2793), + [sym_comma_expression] = STATE(6841), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(6965), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), + [sym_dependent_type] = STATE(2880), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(2991), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3001), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(7112), - [sym__unary_right_fold] = STATE(7108), - [sym__binary_fold] = STATE(7106), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__unary_left_fold] = STATE(6822), + [sym__unary_right_fold] = STATE(6818), + [sym__binary_fold] = STATE(6808), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4906), [sym_qualified_identifier] = STATE(2668), - [sym_qualified_type_identifier] = STATE(4485), + [sym_qualified_type_identifier] = STATE(4543), [sym_operator_name] = STATE(5152), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), [sym_identifier] = ACTIONS(1471), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_LPAREN2] = ACTIONS(1473), @@ -49885,47 +50019,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [120] = { - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4291), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym__expression] = STATE(3646), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4281), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym__expression] = STATE(3668), [sym_comma_expression] = STATE(6960), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), [sym__class_name] = STATE(6367), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3663), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3654), [sym_template_function] = STATE(3521), [sym_condition_declaration] = STATE(6960), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -49937,11 +50071,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4930), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(3642), [sym_user_defined_literal] = STATE(3521), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -49960,6 +50094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -50015,42 +50150,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [121] = { - [sym__expression] = STATE(2527), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_initializer_list] = STATE(2526), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_initializer_list] = STATE(2550), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), [anon_sym_COMMA] = ACTIONS(1505), @@ -50142,41 +50277,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [122] = { [sym__expression] = STATE(2689), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), [sym_initializer_list] = STATE(2768), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), [sym_string_literal] = STATE(1795), [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), + [sym_qualified_identifier] = STATE(2916), [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), + [sym_user_defined_literal] = STATE(2708), [sym_identifier] = ACTIONS(1545), [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), [anon_sym_COMMA] = ACTIONS(1505), @@ -50271,14 +50406,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(133), [sym_preproc_if_in_field_declaration_list] = STATE(133), [sym_preproc_ifdef_in_field_declaration_list] = STATE(133), - [sym_preproc_else_in_field_declaration_list] = STATE(6632), - [sym_preproc_elif_in_field_declaration_list] = STATE(6632), + [sym_preproc_else_in_field_declaration_list] = STATE(6931), + [sym_preproc_elif_in_field_declaration_list] = STATE(6931), [sym_type_definition] = STATE(133), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4415), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4406), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), @@ -50286,26 +50421,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4949), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), [sym__field_declaration_list_item] = STATE(133), [sym_field_declaration] = STATE(133), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(4019), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3854), [sym_template_declaration] = STATE(133), [sym_operator_cast] = STATE(5486), [sym_inline_method_definition] = STATE(133), - [sym__constructor_specifiers] = STATE(1969), + [sym__constructor_specifiers] = STATE(1926), [sym_operator_cast_definition] = STATE(133), [sym_operator_cast_declaration] = STATE(133), [sym_constructor_or_destructor_definition] = STATE(133), @@ -50314,7 +50449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_access_specifier] = STATE(133), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), [sym_using_declaration] = STATE(133), [sym_alias_declaration] = STATE(133), @@ -50323,13 +50458,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4778), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_type_identifier] = STATE(3925), [sym_qualified_operator_cast_identifier] = STATE(5486), [sym_operator_name] = STATE(5152), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(133), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), [sym_identifier] = ACTIONS(1583), [aux_sym_preproc_def_token1] = ACTIONS(1585), [aux_sym_preproc_if_token1] = ACTIONS(1587), @@ -50356,6 +50491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -50389,19 +50525,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1639), }, [124] = { - [sym_preproc_def] = STATE(134), - [sym_preproc_function_def] = STATE(134), - [sym_preproc_call] = STATE(134), - [sym_preproc_if_in_field_declaration_list] = STATE(134), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(134), - [sym_preproc_else_in_field_declaration_list] = STATE(6895), - [sym_preproc_elif_in_field_declaration_list] = STATE(6895), - [sym_type_definition] = STATE(134), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4415), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_def] = STATE(139), + [sym_preproc_function_def] = STATE(139), + [sym_preproc_call] = STATE(139), + [sym_preproc_if_in_field_declaration_list] = STATE(139), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(139), + [sym_preproc_else_in_field_declaration_list] = STATE(7023), + [sym_preproc_elif_in_field_declaration_list] = STATE(7023), + [sym_type_definition] = STATE(139), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4406), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), @@ -50409,50 +50545,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4949), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(134), - [sym_field_declaration] = STATE(134), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(134), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(139), + [sym_field_declaration] = STATE(139), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(139), [sym_operator_cast] = STATE(5486), - [sym_inline_method_definition] = STATE(134), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(134), - [sym_operator_cast_declaration] = STATE(134), - [sym_constructor_or_destructor_definition] = STATE(134), - [sym_constructor_or_destructor_declaration] = STATE(134), - [sym_friend_declaration] = STATE(134), - [sym_access_specifier] = STATE(134), + [sym_inline_method_definition] = STATE(139), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(139), + [sym_operator_cast_declaration] = STATE(139), + [sym_constructor_or_destructor_definition] = STATE(139), + [sym_constructor_or_destructor_declaration] = STATE(139), + [sym_friend_declaration] = STATE(139), + [sym_access_specifier] = STATE(139), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(134), - [sym_alias_declaration] = STATE(134), - [sym_static_assert_declaration] = STATE(134), + [sym_using_declaration] = STATE(139), + [sym_alias_declaration] = STATE(139), + [sym_static_assert_declaration] = STATE(139), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4778), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_type_identifier] = STATE(3925), [sym_qualified_operator_cast_identifier] = STATE(5486), [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(134), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(139), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), [sym_identifier] = ACTIONS(1583), [aux_sym_preproc_def_token1] = ACTIONS(1585), [aux_sym_preproc_if_token1] = ACTIONS(1587), @@ -50479,6 +50615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -50512,19 +50649,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1639), }, [125] = { - [sym_preproc_def] = STATE(129), - [sym_preproc_function_def] = STATE(129), - [sym_preproc_call] = STATE(129), - [sym_preproc_if_in_field_declaration_list] = STATE(129), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(129), - [sym_preproc_else_in_field_declaration_list] = STATE(7146), - [sym_preproc_elif_in_field_declaration_list] = STATE(7146), - [sym_type_definition] = STATE(129), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4415), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_def] = STATE(139), + [sym_preproc_function_def] = STATE(139), + [sym_preproc_call] = STATE(139), + [sym_preproc_if_in_field_declaration_list] = STATE(139), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(139), + [sym_preproc_else_in_field_declaration_list] = STATE(7190), + [sym_preproc_elif_in_field_declaration_list] = STATE(7190), + [sym_type_definition] = STATE(139), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4406), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), @@ -50532,50 +50669,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4949), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(129), - [sym_field_declaration] = STATE(129), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(129), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(139), + [sym_field_declaration] = STATE(139), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(139), [sym_operator_cast] = STATE(5486), - [sym_inline_method_definition] = STATE(129), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(129), - [sym_operator_cast_declaration] = STATE(129), - [sym_constructor_or_destructor_definition] = STATE(129), - [sym_constructor_or_destructor_declaration] = STATE(129), - [sym_friend_declaration] = STATE(129), - [sym_access_specifier] = STATE(129), + [sym_inline_method_definition] = STATE(139), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(139), + [sym_operator_cast_declaration] = STATE(139), + [sym_constructor_or_destructor_definition] = STATE(139), + [sym_constructor_or_destructor_declaration] = STATE(139), + [sym_friend_declaration] = STATE(139), + [sym_access_specifier] = STATE(139), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(129), - [sym_alias_declaration] = STATE(129), - [sym_static_assert_declaration] = STATE(129), + [sym_using_declaration] = STATE(139), + [sym_alias_declaration] = STATE(139), + [sym_static_assert_declaration] = STATE(139), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4778), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_type_identifier] = STATE(3925), [sym_qualified_operator_cast_identifier] = STATE(5486), [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(129), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(139), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), [sym_identifier] = ACTIONS(1583), [aux_sym_preproc_def_token1] = ACTIONS(1585), [aux_sym_preproc_if_token1] = ACTIONS(1587), @@ -50602,6 +50739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -50635,19 +50773,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1639), }, [126] = { - [sym_preproc_def] = STATE(140), - [sym_preproc_function_def] = STATE(140), - [sym_preproc_call] = STATE(140), - [sym_preproc_if_in_field_declaration_list] = STATE(140), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), - [sym_preproc_else_in_field_declaration_list] = STATE(7023), - [sym_preproc_elif_in_field_declaration_list] = STATE(7023), - [sym_type_definition] = STATE(140), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4415), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_def] = STATE(131), + [sym_preproc_function_def] = STATE(131), + [sym_preproc_call] = STATE(131), + [sym_preproc_if_in_field_declaration_list] = STATE(131), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(131), + [sym_preproc_else_in_field_declaration_list] = STATE(6632), + [sym_preproc_elif_in_field_declaration_list] = STATE(6632), + [sym_type_definition] = STATE(131), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4406), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), @@ -50655,50 +50793,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4949), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(140), - [sym_field_declaration] = STATE(140), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(140), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(131), + [sym_field_declaration] = STATE(131), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(131), [sym_operator_cast] = STATE(5486), - [sym_inline_method_definition] = STATE(140), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(140), - [sym_operator_cast_declaration] = STATE(140), - [sym_constructor_or_destructor_definition] = STATE(140), - [sym_constructor_or_destructor_declaration] = STATE(140), - [sym_friend_declaration] = STATE(140), - [sym_access_specifier] = STATE(140), + [sym_inline_method_definition] = STATE(131), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(131), + [sym_operator_cast_declaration] = STATE(131), + [sym_constructor_or_destructor_definition] = STATE(131), + [sym_constructor_or_destructor_declaration] = STATE(131), + [sym_friend_declaration] = STATE(131), + [sym_access_specifier] = STATE(131), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(140), - [sym_alias_declaration] = STATE(140), - [sym_static_assert_declaration] = STATE(140), + [sym_using_declaration] = STATE(131), + [sym_alias_declaration] = STATE(131), + [sym_static_assert_declaration] = STATE(131), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4778), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_type_identifier] = STATE(3925), [sym_qualified_operator_cast_identifier] = STATE(5486), [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(131), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), [sym_identifier] = ACTIONS(1583), [aux_sym_preproc_def_token1] = ACTIONS(1585), [aux_sym_preproc_if_token1] = ACTIONS(1587), @@ -50725,6 +50863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -50758,19 +50897,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1639), }, [127] = { - [sym_preproc_def] = STATE(140), - [sym_preproc_function_def] = STATE(140), - [sym_preproc_call] = STATE(140), - [sym_preproc_if_in_field_declaration_list] = STATE(140), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), - [sym_preproc_else_in_field_declaration_list] = STATE(7190), - [sym_preproc_elif_in_field_declaration_list] = STATE(7190), - [sym_type_definition] = STATE(140), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4415), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_def] = STATE(124), + [sym_preproc_function_def] = STATE(124), + [sym_preproc_call] = STATE(124), + [sym_preproc_if_in_field_declaration_list] = STATE(124), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(124), + [sym_preproc_else_in_field_declaration_list] = STATE(7016), + [sym_preproc_elif_in_field_declaration_list] = STATE(7016), + [sym_type_definition] = STATE(124), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4406), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), @@ -50778,50 +50917,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4949), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(140), - [sym_field_declaration] = STATE(140), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(140), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(124), + [sym_field_declaration] = STATE(124), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(124), [sym_operator_cast] = STATE(5486), - [sym_inline_method_definition] = STATE(140), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(140), - [sym_operator_cast_declaration] = STATE(140), - [sym_constructor_or_destructor_definition] = STATE(140), - [sym_constructor_or_destructor_declaration] = STATE(140), - [sym_friend_declaration] = STATE(140), - [sym_access_specifier] = STATE(140), + [sym_inline_method_definition] = STATE(124), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(124), + [sym_operator_cast_declaration] = STATE(124), + [sym_constructor_or_destructor_definition] = STATE(124), + [sym_constructor_or_destructor_declaration] = STATE(124), + [sym_friend_declaration] = STATE(124), + [sym_access_specifier] = STATE(124), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(140), - [sym_alias_declaration] = STATE(140), - [sym_static_assert_declaration] = STATE(140), + [sym_using_declaration] = STATE(124), + [sym_alias_declaration] = STATE(124), + [sym_static_assert_declaration] = STATE(124), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4778), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_type_identifier] = STATE(3925), [sym_qualified_operator_cast_identifier] = STATE(5486), [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(124), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), [sym_identifier] = ACTIONS(1583), [aux_sym_preproc_def_token1] = ACTIONS(1585), [aux_sym_preproc_if_token1] = ACTIONS(1587), @@ -50848,6 +50987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -50881,19 +51021,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1639), }, [128] = { - [sym_preproc_def] = STATE(127), - [sym_preproc_function_def] = STATE(127), - [sym_preproc_call] = STATE(127), - [sym_preproc_if_in_field_declaration_list] = STATE(127), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(127), - [sym_preproc_else_in_field_declaration_list] = STATE(7222), - [sym_preproc_elif_in_field_declaration_list] = STATE(7222), - [sym_type_definition] = STATE(127), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4415), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_def] = STATE(139), + [sym_preproc_function_def] = STATE(139), + [sym_preproc_call] = STATE(139), + [sym_preproc_if_in_field_declaration_list] = STATE(139), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(139), + [sym_preproc_else_in_field_declaration_list] = STATE(7221), + [sym_preproc_elif_in_field_declaration_list] = STATE(7221), + [sym_type_definition] = STATE(139), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4406), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), @@ -50901,50 +51041,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4949), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(127), - [sym_field_declaration] = STATE(127), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(127), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(139), + [sym_field_declaration] = STATE(139), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(139), [sym_operator_cast] = STATE(5486), - [sym_inline_method_definition] = STATE(127), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(127), - [sym_operator_cast_declaration] = STATE(127), - [sym_constructor_or_destructor_definition] = STATE(127), - [sym_constructor_or_destructor_declaration] = STATE(127), - [sym_friend_declaration] = STATE(127), - [sym_access_specifier] = STATE(127), + [sym_inline_method_definition] = STATE(139), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(139), + [sym_operator_cast_declaration] = STATE(139), + [sym_constructor_or_destructor_definition] = STATE(139), + [sym_constructor_or_destructor_declaration] = STATE(139), + [sym_friend_declaration] = STATE(139), + [sym_access_specifier] = STATE(139), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(127), - [sym_alias_declaration] = STATE(127), - [sym_static_assert_declaration] = STATE(127), + [sym_using_declaration] = STATE(139), + [sym_alias_declaration] = STATE(139), + [sym_static_assert_declaration] = STATE(139), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4778), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_type_identifier] = STATE(3925), [sym_qualified_operator_cast_identifier] = STATE(5486), [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(127), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(139), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), [sym_identifier] = ACTIONS(1583), [aux_sym_preproc_def_token1] = ACTIONS(1585), [aux_sym_preproc_if_token1] = ACTIONS(1587), @@ -50971,6 +51111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -51004,19 +51145,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1639), }, [129] = { - [sym_preproc_def] = STATE(140), - [sym_preproc_function_def] = STATE(140), - [sym_preproc_call] = STATE(140), - [sym_preproc_if_in_field_declaration_list] = STATE(140), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), - [sym_preproc_else_in_field_declaration_list] = STATE(7221), - [sym_preproc_elif_in_field_declaration_list] = STATE(7221), - [sym_type_definition] = STATE(140), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4415), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_def] = STATE(130), + [sym_preproc_function_def] = STATE(130), + [sym_preproc_call] = STATE(130), + [sym_preproc_if_in_field_declaration_list] = STATE(130), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(130), + [sym_preproc_else_in_field_declaration_list] = STATE(6889), + [sym_preproc_elif_in_field_declaration_list] = STATE(6889), + [sym_type_definition] = STATE(130), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4406), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), @@ -51024,50 +51165,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4949), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(140), - [sym_field_declaration] = STATE(140), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(140), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(130), + [sym_field_declaration] = STATE(130), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(130), [sym_operator_cast] = STATE(5486), - [sym_inline_method_definition] = STATE(140), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(140), - [sym_operator_cast_declaration] = STATE(140), - [sym_constructor_or_destructor_definition] = STATE(140), - [sym_constructor_or_destructor_declaration] = STATE(140), - [sym_friend_declaration] = STATE(140), - [sym_access_specifier] = STATE(140), + [sym_inline_method_definition] = STATE(130), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(130), + [sym_operator_cast_declaration] = STATE(130), + [sym_constructor_or_destructor_definition] = STATE(130), + [sym_constructor_or_destructor_declaration] = STATE(130), + [sym_friend_declaration] = STATE(130), + [sym_access_specifier] = STATE(130), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(140), - [sym_alias_declaration] = STATE(140), - [sym_static_assert_declaration] = STATE(140), + [sym_using_declaration] = STATE(130), + [sym_alias_declaration] = STATE(130), + [sym_static_assert_declaration] = STATE(130), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4778), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_type_identifier] = STATE(3925), [sym_qualified_operator_cast_identifier] = STATE(5486), [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), [sym_identifier] = ACTIONS(1583), [aux_sym_preproc_def_token1] = ACTIONS(1585), [aux_sym_preproc_if_token1] = ACTIONS(1587), @@ -51094,6 +51235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -51127,19 +51269,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1639), }, [130] = { - [sym_preproc_def] = STATE(140), - [sym_preproc_function_def] = STATE(140), - [sym_preproc_call] = STATE(140), - [sym_preproc_if_in_field_declaration_list] = STATE(140), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), + [sym_preproc_def] = STATE(139), + [sym_preproc_function_def] = STATE(139), + [sym_preproc_call] = STATE(139), + [sym_preproc_if_in_field_declaration_list] = STATE(139), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(139), [sym_preproc_else_in_field_declaration_list] = STATE(6861), [sym_preproc_elif_in_field_declaration_list] = STATE(6861), - [sym_type_definition] = STATE(140), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4415), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_type_definition] = STATE(139), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4406), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), @@ -51147,50 +51289,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4949), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(140), - [sym_field_declaration] = STATE(140), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(140), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(139), + [sym_field_declaration] = STATE(139), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(139), [sym_operator_cast] = STATE(5486), - [sym_inline_method_definition] = STATE(140), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(140), - [sym_operator_cast_declaration] = STATE(140), - [sym_constructor_or_destructor_definition] = STATE(140), - [sym_constructor_or_destructor_declaration] = STATE(140), - [sym_friend_declaration] = STATE(140), - [sym_access_specifier] = STATE(140), + [sym_inline_method_definition] = STATE(139), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(139), + [sym_operator_cast_declaration] = STATE(139), + [sym_constructor_or_destructor_definition] = STATE(139), + [sym_constructor_or_destructor_declaration] = STATE(139), + [sym_friend_declaration] = STATE(139), + [sym_access_specifier] = STATE(139), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(140), - [sym_alias_declaration] = STATE(140), - [sym_static_assert_declaration] = STATE(140), + [sym_using_declaration] = STATE(139), + [sym_alias_declaration] = STATE(139), + [sym_static_assert_declaration] = STATE(139), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4778), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_type_identifier] = STATE(3925), [sym_qualified_operator_cast_identifier] = STATE(5486), [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(139), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), [sym_identifier] = ACTIONS(1583), [aux_sym_preproc_def_token1] = ACTIONS(1585), [aux_sym_preproc_if_token1] = ACTIONS(1587), @@ -51217,6 +51359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -51250,19 +51393,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1639), }, [131] = { - [sym_preproc_def] = STATE(126), - [sym_preproc_function_def] = STATE(126), - [sym_preproc_call] = STATE(126), - [sym_preproc_if_in_field_declaration_list] = STATE(126), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(126), - [sym_preproc_else_in_field_declaration_list] = STATE(7016), - [sym_preproc_elif_in_field_declaration_list] = STATE(7016), - [sym_type_definition] = STATE(126), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4415), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_def] = STATE(139), + [sym_preproc_function_def] = STATE(139), + [sym_preproc_call] = STATE(139), + [sym_preproc_if_in_field_declaration_list] = STATE(139), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(139), + [sym_preproc_else_in_field_declaration_list] = STATE(6898), + [sym_preproc_elif_in_field_declaration_list] = STATE(6898), + [sym_type_definition] = STATE(139), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4406), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), @@ -51270,50 +51413,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4949), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(126), - [sym_field_declaration] = STATE(126), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(126), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(139), + [sym_field_declaration] = STATE(139), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(139), [sym_operator_cast] = STATE(5486), - [sym_inline_method_definition] = STATE(126), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(126), - [sym_operator_cast_declaration] = STATE(126), - [sym_constructor_or_destructor_definition] = STATE(126), - [sym_constructor_or_destructor_declaration] = STATE(126), - [sym_friend_declaration] = STATE(126), - [sym_access_specifier] = STATE(126), + [sym_inline_method_definition] = STATE(139), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(139), + [sym_operator_cast_declaration] = STATE(139), + [sym_constructor_or_destructor_definition] = STATE(139), + [sym_constructor_or_destructor_declaration] = STATE(139), + [sym_friend_declaration] = STATE(139), + [sym_access_specifier] = STATE(139), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(126), - [sym_alias_declaration] = STATE(126), - [sym_static_assert_declaration] = STATE(126), + [sym_using_declaration] = STATE(139), + [sym_alias_declaration] = STATE(139), + [sym_static_assert_declaration] = STATE(139), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4778), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_type_identifier] = STATE(3925), [sym_qualified_operator_cast_identifier] = STATE(5486), [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(126), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(139), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), [sym_identifier] = ACTIONS(1583), [aux_sym_preproc_def_token1] = ACTIONS(1585), [aux_sym_preproc_if_token1] = ACTIONS(1587), @@ -51340,6 +51483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -51373,142 +51517,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1639), }, [132] = { - [sym__expression] = STATE(2932), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_initializer_list] = STATE(3077), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), - [anon_sym_COMMA] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_PERCENT] = ACTIONS(1513), - [anon_sym_PIPE_PIPE] = ACTIONS(1505), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_EQ_EQ] = ACTIONS(1505), - [anon_sym_BANG_EQ] = ACTIONS(1505), - [anon_sym_GT] = ACTIONS(1513), - [anon_sym_GT_EQ] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_EQ] = ACTIONS(1513), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1505), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1513), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_and_eq] = ACTIONS(1513), - [anon_sym_or_eq] = ACTIONS(1513), - [anon_sym_xor_eq] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_LT_EQ_GT] = ACTIONS(1505), - [anon_sym_or] = ACTIONS(1513), - [anon_sym_and] = ACTIONS(1513), - [anon_sym_bitor] = ACTIONS(1513), - [anon_sym_xor] = ACTIONS(1513), - [anon_sym_bitand] = ACTIONS(1513), - [anon_sym_not_eq] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [anon_sym_DOT] = ACTIONS(1513), - [anon_sym_DASH_GT] = ACTIONS(1505), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(1505), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [133] = { - [sym_preproc_def] = STATE(140), - [sym_preproc_function_def] = STATE(140), - [sym_preproc_call] = STATE(140), - [sym_preproc_if_in_field_declaration_list] = STATE(140), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), - [sym_preproc_else_in_field_declaration_list] = STATE(6898), - [sym_preproc_elif_in_field_declaration_list] = STATE(6898), - [sym_type_definition] = STATE(140), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4415), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_def] = STATE(125), + [sym_preproc_function_def] = STATE(125), + [sym_preproc_call] = STATE(125), + [sym_preproc_if_in_field_declaration_list] = STATE(125), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(125), + [sym_preproc_else_in_field_declaration_list] = STATE(7222), + [sym_preproc_elif_in_field_declaration_list] = STATE(7222), + [sym_type_definition] = STATE(125), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4406), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), @@ -51516,54 +51537,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4949), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(140), - [sym_field_declaration] = STATE(140), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(140), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(125), + [sym_field_declaration] = STATE(125), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(125), [sym_operator_cast] = STATE(5486), - [sym_inline_method_definition] = STATE(140), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(140), - [sym_operator_cast_declaration] = STATE(140), - [sym_constructor_or_destructor_definition] = STATE(140), - [sym_constructor_or_destructor_declaration] = STATE(140), - [sym_friend_declaration] = STATE(140), - [sym_access_specifier] = STATE(140), + [sym_inline_method_definition] = STATE(125), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(125), + [sym_operator_cast_declaration] = STATE(125), + [sym_constructor_or_destructor_definition] = STATE(125), + [sym_constructor_or_destructor_declaration] = STATE(125), + [sym_friend_declaration] = STATE(125), + [sym_access_specifier] = STATE(125), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(140), - [sym_alias_declaration] = STATE(140), - [sym_static_assert_declaration] = STATE(140), + [sym_using_declaration] = STATE(125), + [sym_alias_declaration] = STATE(125), + [sym_static_assert_declaration] = STATE(125), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4778), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_type_identifier] = STATE(3925), [sym_qualified_operator_cast_identifier] = STATE(5486), [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(125), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), [sym_identifier] = ACTIONS(1583), [aux_sym_preproc_def_token1] = ACTIONS(1585), [aux_sym_preproc_if_token1] = ACTIONS(1587), - [aux_sym_preproc_if_token2] = ACTIONS(1695), + [aux_sym_preproc_if_token2] = ACTIONS(1657), [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), [aux_sym_preproc_else_token1] = ACTIONS(1593), @@ -51586,6 +51607,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1635), + [anon_sym_using] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1639), + }, + [133] = { + [sym_preproc_def] = STATE(139), + [sym_preproc_function_def] = STATE(139), + [sym_preproc_call] = STATE(139), + [sym_preproc_if_in_field_declaration_list] = STATE(139), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(139), + [sym_preproc_else_in_field_declaration_list] = STATE(6887), + [sym_preproc_elif_in_field_declaration_list] = STATE(6887), + [sym_type_definition] = STATE(139), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4406), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(139), + [sym_field_declaration] = STATE(139), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(139), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(139), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(139), + [sym_operator_cast_declaration] = STATE(139), + [sym_constructor_or_destructor_definition] = STATE(139), + [sym_constructor_or_destructor_declaration] = STATE(139), + [sym_friend_declaration] = STATE(139), + [sym_access_specifier] = STATE(139), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(139), + [sym_alias_declaration] = STATE(139), + [sym_static_assert_declaration] = STATE(139), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(139), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token2] = ACTIONS(1659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -51619,19 +51765,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1639), }, [134] = { - [sym_preproc_def] = STATE(140), - [sym_preproc_function_def] = STATE(140), - [sym_preproc_call] = STATE(140), - [sym_preproc_if_in_field_declaration_list] = STATE(140), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), - [sym_preproc_else_in_field_declaration_list] = STATE(6979), - [sym_preproc_elif_in_field_declaration_list] = STATE(6979), - [sym_type_definition] = STATE(140), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4415), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_def] = STATE(135), + [sym_preproc_function_def] = STATE(135), + [sym_preproc_call] = STATE(135), + [sym_preproc_if_in_field_declaration_list] = STATE(135), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(135), + [sym_preproc_else_in_field_declaration_list] = STATE(6895), + [sym_preproc_elif_in_field_declaration_list] = STATE(6895), + [sym_type_definition] = STATE(135), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4406), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), @@ -51639,54 +51785,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4949), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(140), - [sym_field_declaration] = STATE(140), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(140), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(135), + [sym_field_declaration] = STATE(135), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(135), [sym_operator_cast] = STATE(5486), - [sym_inline_method_definition] = STATE(140), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(140), - [sym_operator_cast_declaration] = STATE(140), - [sym_constructor_or_destructor_definition] = STATE(140), - [sym_constructor_or_destructor_declaration] = STATE(140), - [sym_friend_declaration] = STATE(140), - [sym_access_specifier] = STATE(140), + [sym_inline_method_definition] = STATE(135), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(135), + [sym_operator_cast_declaration] = STATE(135), + [sym_constructor_or_destructor_definition] = STATE(135), + [sym_constructor_or_destructor_declaration] = STATE(135), + [sym_friend_declaration] = STATE(135), + [sym_access_specifier] = STATE(135), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(140), - [sym_alias_declaration] = STATE(140), - [sym_static_assert_declaration] = STATE(140), + [sym_using_declaration] = STATE(135), + [sym_alias_declaration] = STATE(135), + [sym_static_assert_declaration] = STATE(135), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4778), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_type_identifier] = STATE(3925), [sym_qualified_operator_cast_identifier] = STATE(5486), [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(135), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), [sym_identifier] = ACTIONS(1583), [aux_sym_preproc_def_token1] = ACTIONS(1585), [aux_sym_preproc_if_token1] = ACTIONS(1587), - [aux_sym_preproc_if_token2] = ACTIONS(1697), + [aux_sym_preproc_if_token2] = ACTIONS(1661), [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), [aux_sym_preproc_else_token1] = ACTIONS(1593), @@ -51709,6 +51855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -51742,19 +51889,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1639), }, [135] = { - [sym_preproc_def] = STATE(137), - [sym_preproc_function_def] = STATE(137), - [sym_preproc_call] = STATE(137), - [sym_preproc_if_in_field_declaration_list] = STATE(137), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(137), - [sym_preproc_else_in_field_declaration_list] = STATE(6931), - [sym_preproc_elif_in_field_declaration_list] = STATE(6931), - [sym_type_definition] = STATE(137), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4415), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_def] = STATE(139), + [sym_preproc_function_def] = STATE(139), + [sym_preproc_call] = STATE(139), + [sym_preproc_if_in_field_declaration_list] = STATE(139), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(139), + [sym_preproc_else_in_field_declaration_list] = STATE(6979), + [sym_preproc_elif_in_field_declaration_list] = STATE(6979), + [sym_type_definition] = STATE(139), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4406), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), @@ -51762,54 +51909,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4949), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(137), - [sym_field_declaration] = STATE(137), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(137), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(139), + [sym_field_declaration] = STATE(139), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(139), [sym_operator_cast] = STATE(5486), - [sym_inline_method_definition] = STATE(137), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(137), - [sym_operator_cast_declaration] = STATE(137), - [sym_constructor_or_destructor_definition] = STATE(137), - [sym_constructor_or_destructor_declaration] = STATE(137), - [sym_friend_declaration] = STATE(137), - [sym_access_specifier] = STATE(137), + [sym_inline_method_definition] = STATE(139), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(139), + [sym_operator_cast_declaration] = STATE(139), + [sym_constructor_or_destructor_definition] = STATE(139), + [sym_constructor_or_destructor_declaration] = STATE(139), + [sym_friend_declaration] = STATE(139), + [sym_access_specifier] = STATE(139), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(137), - [sym_alias_declaration] = STATE(137), - [sym_static_assert_declaration] = STATE(137), + [sym_using_declaration] = STATE(139), + [sym_alias_declaration] = STATE(139), + [sym_static_assert_declaration] = STATE(139), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4778), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_type_identifier] = STATE(3925), [sym_qualified_operator_cast_identifier] = STATE(5486), [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(137), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(139), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), [sym_identifier] = ACTIONS(1583), [aux_sym_preproc_def_token1] = ACTIONS(1585), [aux_sym_preproc_if_token1] = ACTIONS(1587), - [aux_sym_preproc_if_token2] = ACTIONS(1699), + [aux_sym_preproc_if_token2] = ACTIONS(1663), [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), [aux_sym_preproc_else_token1] = ACTIONS(1593), @@ -51832,6 +51979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -51865,19 +52013,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1639), }, [136] = { - [sym_preproc_def] = STATE(130), - [sym_preproc_function_def] = STATE(130), - [sym_preproc_call] = STATE(130), - [sym_preproc_if_in_field_declaration_list] = STATE(130), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(130), - [sym_preproc_else_in_field_declaration_list] = STATE(6889), - [sym_preproc_elif_in_field_declaration_list] = STATE(6889), - [sym_type_definition] = STATE(130), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4415), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_preproc_def] = STATE(128), + [sym_preproc_function_def] = STATE(128), + [sym_preproc_call] = STATE(128), + [sym_preproc_if_in_field_declaration_list] = STATE(128), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(128), + [sym_preproc_else_in_field_declaration_list] = STATE(7146), + [sym_preproc_elif_in_field_declaration_list] = STATE(7146), + [sym_type_definition] = STATE(128), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4406), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), @@ -51885,54 +52033,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4949), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(130), - [sym_field_declaration] = STATE(130), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(130), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(128), + [sym_field_declaration] = STATE(128), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(128), [sym_operator_cast] = STATE(5486), - [sym_inline_method_definition] = STATE(130), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(130), - [sym_operator_cast_declaration] = STATE(130), - [sym_constructor_or_destructor_definition] = STATE(130), - [sym_constructor_or_destructor_declaration] = STATE(130), - [sym_friend_declaration] = STATE(130), - [sym_access_specifier] = STATE(130), + [sym_inline_method_definition] = STATE(128), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(128), + [sym_operator_cast_declaration] = STATE(128), + [sym_constructor_or_destructor_definition] = STATE(128), + [sym_constructor_or_destructor_declaration] = STATE(128), + [sym_friend_declaration] = STATE(128), + [sym_access_specifier] = STATE(128), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(130), - [sym_alias_declaration] = STATE(130), - [sym_static_assert_declaration] = STATE(130), + [sym_using_declaration] = STATE(128), + [sym_alias_declaration] = STATE(128), + [sym_static_assert_declaration] = STATE(128), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4778), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_type_identifier] = STATE(3925), [sym_qualified_operator_cast_identifier] = STATE(5486), [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(130), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(128), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), [sym_identifier] = ACTIONS(1583), [aux_sym_preproc_def_token1] = ACTIONS(1585), [aux_sym_preproc_if_token1] = ACTIONS(1587), - [aux_sym_preproc_if_token2] = ACTIONS(1701), + [aux_sym_preproc_if_token2] = ACTIONS(1665), [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), [aux_sym_preproc_else_token1] = ACTIONS(1593), @@ -51955,6 +52103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -51988,165 +52137,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1639), }, [137] = { - [sym_preproc_def] = STATE(140), - [sym_preproc_function_def] = STATE(140), - [sym_preproc_call] = STATE(140), - [sym_preproc_if_in_field_declaration_list] = STATE(140), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), - [sym_preproc_else_in_field_declaration_list] = STATE(6887), - [sym_preproc_elif_in_field_declaration_list] = STATE(6887), - [sym_type_definition] = STATE(140), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4415), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4949), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(140), - [sym_field_declaration] = STATE(140), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(140), - [sym_operator_cast] = STATE(5486), - [sym_inline_method_definition] = STATE(140), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(140), - [sym_operator_cast_declaration] = STATE(140), - [sym_constructor_or_destructor_definition] = STATE(140), - [sym_constructor_or_destructor_declaration] = STATE(140), - [sym_friend_declaration] = STATE(140), - [sym_access_specifier] = STATE(140), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(140), - [sym_alias_declaration] = STATE(140), - [sym_static_assert_declaration] = STATE(140), - [sym_destructor_name] = STATE(5152), + [sym__expression] = STATE(2976), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_initializer_list] = STATE(2988), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5486), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(1585), - [aux_sym_preproc_if_token1] = ACTIONS(1587), - [aux_sym_preproc_if_token2] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), - [aux_sym_preproc_else_token1] = ACTIONS(1593), - [aux_sym_preproc_elif_token1] = ACTIONS(1595), - [sym_preproc_directive] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(1607), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1513), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_EQ] = ACTIONS(1513), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PERCENT_EQ] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_LT_LT_EQ] = ACTIONS(1505), + [anon_sym_GT_GT_EQ] = ACTIONS(1513), + [anon_sym_AMP_EQ] = ACTIONS(1505), + [anon_sym_CARET_EQ] = ACTIONS(1505), + [anon_sym_PIPE_EQ] = ACTIONS(1505), + [anon_sym_and_eq] = ACTIONS(1513), + [anon_sym_or_eq] = ACTIONS(1513), + [anon_sym_xor_eq] = ACTIONS(1513), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_LT_EQ_GT] = ACTIONS(1505), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_bitor] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_bitand] = ACTIONS(1513), + [anon_sym_not_eq] = ACTIONS(1513), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DASH_GT] = ACTIONS(1505), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1629), - [anon_sym_private] = ACTIONS(1629), - [anon_sym_protected] = ACTIONS(1629), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(1633), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1635), - [anon_sym_using] = ACTIONS(1637), - [anon_sym_static_assert] = ACTIONS(1639), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(1505), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), }, [138] = { [sym__expression] = STATE(3087), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_initializer_list] = STATE(2526), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_initializer_list] = STATE(2550), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), [anon_sym_LPAREN2] = ACTIONS(1705), @@ -52233,43 +52382,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1533), }, [139] = { - [sym__expression] = STATE(3078), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_initializer_list] = STATE(3118), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [sym_preproc_def] = STATE(139), + [sym_preproc_function_def] = STATE(139), + [sym_preproc_call] = STATE(139), + [sym_preproc_if_in_field_declaration_list] = STATE(139), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(139), + [sym_type_definition] = STATE(139), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4406), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(139), + [sym_field_declaration] = STATE(139), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(139), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(139), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(139), + [sym_operator_cast_declaration] = STATE(139), + [sym_constructor_or_destructor_definition] = STATE(139), + [sym_constructor_or_destructor_declaration] = STATE(139), + [sym_friend_declaration] = STATE(139), + [sym_access_specifier] = STATE(139), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(139), + [sym_alias_declaration] = STATE(139), + [sym_static_assert_declaration] = STATE(139), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(139), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), + [sym_identifier] = ACTIONS(1725), + [aux_sym_preproc_def_token1] = ACTIONS(1728), + [aux_sym_preproc_if_token1] = ACTIONS(1731), + [aux_sym_preproc_if_token2] = ACTIONS(1734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1736), + [aux_sym_preproc_else_token1] = ACTIONS(1734), + [aux_sym_preproc_elif_token1] = ACTIONS(1734), + [sym_preproc_directive] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_STAR] = ACTIONS(1748), + [anon_sym_AMP_AMP] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_typedef] = ACTIONS(1757), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym___attribute__] = ACTIONS(1763), + [anon_sym_COLON_COLON] = ACTIONS(1766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1769), + [anon_sym___declspec] = ACTIONS(1772), + [anon_sym___based] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_inline] = ACTIONS(1760), + [anon_sym_thread_local] = ACTIONS(1760), + [anon_sym_input] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_volatile] = ACTIONS(1781), + [anon_sym_restrict] = ACTIONS(1781), + [anon_sym__Atomic] = ACTIONS(1781), + [anon_sym_mutable] = ACTIONS(1781), + [anon_sym_constexpr] = ACTIONS(1781), + [anon_sym_constinit] = ACTIONS(1781), + [anon_sym_consteval] = ACTIONS(1781), + [anon_sym_signed] = ACTIONS(1784), + [anon_sym_unsigned] = ACTIONS(1784), + [anon_sym_long] = ACTIONS(1784), + [anon_sym_short] = ACTIONS(1784), + [sym_primitive_type] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1790), + [anon_sym_class] = ACTIONS(1793), + [anon_sym_struct] = ACTIONS(1796), + [anon_sym_union] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1802), + [anon_sym_decltype] = ACTIONS(1805), + [anon_sym_virtual] = ACTIONS(1808), + [anon_sym_explicit] = ACTIONS(1811), + [anon_sym_public] = ACTIONS(1814), + [anon_sym_private] = ACTIONS(1814), + [anon_sym_protected] = ACTIONS(1814), + [anon_sym_typename] = ACTIONS(1817), + [anon_sym_template] = ACTIONS(1820), + [anon_sym_operator] = ACTIONS(1823), + [anon_sym_friend] = ACTIONS(1826), + [anon_sym_using] = ACTIONS(1829), + [anon_sym_static_assert] = ACTIONS(1832), + }, + [140] = { + [sym__expression] = STATE(3077), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_initializer_list] = STATE(3150), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), [anon_sym_COMMA] = ACTIONS(1505), [anon_sym_RPAREN] = ACTIONS(1505), @@ -52295,7 +52566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1513), [anon_sym_GT_GT] = ACTIONS(1513), [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1837), [anon_sym_LBRACK] = ACTIONS(1519), [anon_sym_EQ] = ACTIONS(1513), [sym_primitive_type] = ACTIONS(1559), @@ -52354,170 +52625,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1449), [sym_nullptr] = ACTIONS(1449), }, - [140] = { - [sym_preproc_def] = STATE(140), - [sym_preproc_function_def] = STATE(140), - [sym_preproc_call] = STATE(140), - [sym_preproc_if_in_field_declaration_list] = STATE(140), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), - [sym_type_definition] = STATE(140), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4415), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4949), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(140), - [sym_field_declaration] = STATE(140), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(140), - [sym_operator_cast] = STATE(5486), - [sym_inline_method_definition] = STATE(140), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(140), - [sym_operator_cast_declaration] = STATE(140), - [sym_constructor_or_destructor_definition] = STATE(140), - [sym_constructor_or_destructor_declaration] = STATE(140), - [sym_friend_declaration] = STATE(140), - [sym_access_specifier] = STATE(140), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(140), - [sym_alias_declaration] = STATE(140), - [sym_static_assert_declaration] = STATE(140), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5486), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), - [sym_identifier] = ACTIONS(1729), - [aux_sym_preproc_def_token1] = ACTIONS(1732), - [aux_sym_preproc_if_token1] = ACTIONS(1735), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1740), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1740), - [aux_sym_preproc_else_token1] = ACTIONS(1738), - [aux_sym_preproc_elif_token1] = ACTIONS(1738), - [sym_preproc_directive] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(1746), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1755), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_typedef] = ACTIONS(1761), - [anon_sym_extern] = ACTIONS(1764), - [anon_sym___attribute__] = ACTIONS(1767), - [anon_sym_COLON_COLON] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1773), - [anon_sym___declspec] = ACTIONS(1776), - [anon_sym___based] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_static] = ACTIONS(1764), - [anon_sym_register] = ACTIONS(1764), - [anon_sym_inline] = ACTIONS(1764), - [anon_sym_thread_local] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_volatile] = ACTIONS(1785), - [anon_sym_restrict] = ACTIONS(1785), - [anon_sym__Atomic] = ACTIONS(1785), - [anon_sym_mutable] = ACTIONS(1785), - [anon_sym_constexpr] = ACTIONS(1785), - [anon_sym_constinit] = ACTIONS(1785), - [anon_sym_consteval] = ACTIONS(1785), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [sym_primitive_type] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_class] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1800), - [anon_sym_union] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1806), - [anon_sym_decltype] = ACTIONS(1809), - [anon_sym_virtual] = ACTIONS(1812), - [anon_sym_explicit] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(1818), - [anon_sym_private] = ACTIONS(1818), - [anon_sym_protected] = ACTIONS(1818), - [anon_sym_typename] = ACTIONS(1821), - [anon_sym_template] = ACTIONS(1824), - [anon_sym_operator] = ACTIONS(1827), - [anon_sym_friend] = ACTIONS(1830), - [anon_sym_using] = ACTIONS(1833), - [anon_sym_static_assert] = ACTIONS(1836), - }, [141] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(568), - [sym_attributed_statement] = STATE(568), - [sym_labeled_statement] = STATE(568), - [sym_expression_statement] = STATE(568), - [sym_if_statement] = STATE(568), - [sym_switch_statement] = STATE(568), - [sym_case_statement] = STATE(568), - [sym_while_statement] = STATE(568), - [sym_do_statement] = STATE(568), - [sym_for_statement] = STATE(568), - [sym_return_statement] = STATE(568), - [sym_break_statement] = STATE(568), - [sym_continue_statement] = STATE(568), - [sym_goto_statement] = STATE(568), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(657), + [sym_attributed_statement] = STATE(657), + [sym_labeled_statement] = STATE(657), + [sym_expression_statement] = STATE(657), + [sym_if_statement] = STATE(657), + [sym_switch_statement] = STATE(657), + [sym_case_statement] = STATE(657), + [sym_while_statement] = STATE(657), + [sym_do_statement] = STATE(657), + [sym_for_statement] = STATE(657), + [sym_return_statement] = STATE(657), + [sym_break_statement] = STATE(657), + [sym_continue_statement] = STATE(657), + [sym_goto_statement] = STATE(657), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(568), - [sym_co_return_statement] = STATE(568), - [sym_co_yield_statement] = STATE(568), - [sym_throw_statement] = STATE(568), - [sym_try_statement] = STATE(568), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(657), + [sym_co_return_statement] = STATE(657), + [sym_co_yield_statement] = STATE(657), + [sym_throw_statement] = STATE(657), + [sym_try_statement] = STATE(657), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -52529,10 +52679,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_attributed_declarator_repeat1] = STATE(148), [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -52541,23 +52691,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -52579,11 +52729,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -52596,48 +52746,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [142] = { - [sym_attribute_declaration] = STATE(289), - [sym_compound_statement] = STATE(901), - [sym_attributed_statement] = STATE(901), - [sym_labeled_statement] = STATE(901), - [sym_expression_statement] = STATE(901), - [sym_if_statement] = STATE(901), - [sym_switch_statement] = STATE(901), - [sym_case_statement] = STATE(901), - [sym_while_statement] = STATE(901), - [sym_do_statement] = STATE(901), - [sym_for_statement] = STATE(901), - [sym_return_statement] = STATE(901), - [sym_break_statement] = STATE(901), - [sym_continue_statement] = STATE(901), - [sym_goto_statement] = STATE(901), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(683), + [sym_attributed_statement] = STATE(683), + [sym_labeled_statement] = STATE(683), + [sym_expression_statement] = STATE(683), + [sym_if_statement] = STATE(683), + [sym_switch_statement] = STATE(683), + [sym_case_statement] = STATE(683), + [sym_while_statement] = STATE(683), + [sym_do_statement] = STATE(683), + [sym_for_statement] = STATE(683), + [sym_return_statement] = STATE(683), + [sym_break_statement] = STATE(683), + [sym_continue_statement] = STATE(683), + [sym_goto_statement] = STATE(683), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(901), - [sym_co_return_statement] = STATE(901), - [sym_co_yield_statement] = STATE(901), - [sym_throw_statement] = STATE(901), - [sym_try_statement] = STATE(901), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(683), + [sym_co_return_statement] = STATE(683), + [sym_co_yield_statement] = STATE(683), + [sym_throw_statement] = STATE(683), + [sym_try_statement] = STATE(683), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -52649,10 +52799,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(289), + [aux_sym_attributed_declarator_repeat1] = STATE(143), [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -52661,23 +52811,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -52699,11 +52849,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -52716,48 +52866,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [143] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(780), - [sym_attributed_statement] = STATE(780), - [sym_labeled_statement] = STATE(780), - [sym_expression_statement] = STATE(780), - [sym_if_statement] = STATE(780), - [sym_switch_statement] = STATE(780), - [sym_case_statement] = STATE(780), - [sym_while_statement] = STATE(780), - [sym_do_statement] = STATE(780), - [sym_for_statement] = STATE(780), - [sym_return_statement] = STATE(780), - [sym_break_statement] = STATE(780), - [sym_continue_statement] = STATE(780), - [sym_goto_statement] = STATE(780), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), + [sym_attribute_declaration] = STATE(299), + [sym_compound_statement] = STATE(836), + [sym_attributed_statement] = STATE(836), + [sym_labeled_statement] = STATE(836), + [sym_expression_statement] = STATE(836), + [sym_if_statement] = STATE(836), + [sym_switch_statement] = STATE(836), + [sym_case_statement] = STATE(836), + [sym_while_statement] = STATE(836), + [sym_do_statement] = STATE(836), + [sym_for_statement] = STATE(836), + [sym_return_statement] = STATE(836), + [sym_break_statement] = STATE(836), + [sym_continue_statement] = STATE(836), + [sym_goto_statement] = STATE(836), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(780), - [sym_co_return_statement] = STATE(780), - [sym_co_yield_statement] = STATE(780), - [sym_throw_statement] = STATE(780), - [sym_try_statement] = STATE(780), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(836), + [sym_co_return_statement] = STATE(836), + [sym_co_yield_statement] = STATE(836), + [sym_throw_statement] = STATE(836), + [sym_try_statement] = STATE(836), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -52769,10 +52919,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), + [aux_sym_attributed_declarator_repeat1] = STATE(299), [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -52781,23 +52931,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -52819,11 +52969,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -52836,288 +52986,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [144] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(781), - [sym_attributed_statement] = STATE(781), - [sym_labeled_statement] = STATE(781), - [sym_expression_statement] = STATE(781), - [sym_if_statement] = STATE(781), - [sym_switch_statement] = STATE(781), - [sym_case_statement] = STATE(781), - [sym_while_statement] = STATE(781), - [sym_do_statement] = STATE(781), - [sym_for_statement] = STATE(781), - [sym_return_statement] = STATE(781), - [sym_break_statement] = STATE(781), - [sym_continue_statement] = STATE(781), - [sym_goto_statement] = STATE(781), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(781), - [sym_co_return_statement] = STATE(781), - [sym_co_yield_statement] = STATE(781), - [sym_throw_statement] = STATE(781), - [sym_try_statement] = STATE(781), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym_preproc_def] = STATE(198), + [sym_preproc_function_def] = STATE(198), + [sym_preproc_call] = STATE(198), + [sym_preproc_if_in_field_declaration_list] = STATE(198), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(198), + [sym_type_definition] = STATE(198), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(198), + [sym_field_declaration] = STATE(198), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(198), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(198), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(198), + [sym_operator_cast_declaration] = STATE(198), + [sym_constructor_or_destructor_definition] = STATE(198), + [sym_constructor_or_destructor_declaration] = STATE(198), + [sym_friend_declaration] = STATE(198), + [sym_access_specifier] = STATE(198), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(198), + [sym_alias_declaration] = STATE(198), + [sym_static_assert_declaration] = STATE(198), + [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(198), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), }, [145] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(782), - [sym_attributed_statement] = STATE(782), - [sym_labeled_statement] = STATE(782), - [sym_expression_statement] = STATE(782), - [sym_if_statement] = STATE(782), - [sym_switch_statement] = STATE(782), - [sym_case_statement] = STATE(782), - [sym_while_statement] = STATE(782), - [sym_do_statement] = STATE(782), - [sym_for_statement] = STATE(782), - [sym_return_statement] = STATE(782), - [sym_break_statement] = STATE(782), - [sym_continue_statement] = STATE(782), - [sym_goto_statement] = STATE(782), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(782), - [sym_co_return_statement] = STATE(782), - [sym_co_yield_statement] = STATE(782), - [sym_throw_statement] = STATE(782), - [sym_try_statement] = STATE(782), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym_preproc_def] = STATE(152), + [sym_preproc_function_def] = STATE(152), + [sym_preproc_call] = STATE(152), + [sym_preproc_if_in_field_declaration_list] = STATE(152), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(152), + [sym_type_definition] = STATE(152), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(152), + [sym_field_declaration] = STATE(152), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(152), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(152), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(152), + [sym_operator_cast_declaration] = STATE(152), + [sym_constructor_or_destructor_definition] = STATE(152), + [sym_constructor_or_destructor_declaration] = STATE(152), + [sym_friend_declaration] = STATE(152), + [sym_access_specifier] = STATE(152), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(152), + [sym_alias_declaration] = STATE(152), + [sym_static_assert_declaration] = STATE(152), + [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), }, [146] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1207), - [sym_attributed_statement] = STATE(1207), - [sym_labeled_statement] = STATE(1207), - [sym_expression_statement] = STATE(1207), - [sym_if_statement] = STATE(1207), - [sym_switch_statement] = STATE(1207), - [sym_case_statement] = STATE(1207), - [sym_while_statement] = STATE(1207), - [sym_do_statement] = STATE(1207), - [sym_for_statement] = STATE(1207), - [sym_return_statement] = STATE(1207), - [sym_break_statement] = STATE(1207), - [sym_continue_statement] = STATE(1207), - [sym_goto_statement] = STATE(1207), - [sym__expression] = STATE(3652), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1195), + [sym_attributed_statement] = STATE(1195), + [sym_labeled_statement] = STATE(1195), + [sym_expression_statement] = STATE(1195), + [sym_if_statement] = STATE(1195), + [sym_switch_statement] = STATE(1195), + [sym_case_statement] = STATE(1195), + [sym_while_statement] = STATE(1195), + [sym_do_statement] = STATE(1195), + [sym_for_statement] = STATE(1195), + [sym_return_statement] = STATE(1195), + [sym_break_statement] = STATE(1195), + [sym_continue_statement] = STATE(1195), + [sym_goto_statement] = STATE(1195), + [sym__expression] = STATE(3671), [sym_comma_expression] = STATE(6772), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1207), - [sym_co_return_statement] = STATE(1207), - [sym_co_yield_statement] = STATE(1207), - [sym_throw_statement] = STATE(1207), - [sym_try_statement] = STATE(1207), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(1195), + [sym_co_return_statement] = STATE(1195), + [sym_co_yield_statement] = STATE(1195), + [sym_throw_statement] = STATE(1195), + [sym_try_statement] = STATE(1195), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -53129,11 +53279,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53141,23 +53291,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1308), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1312), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -53179,11 +53329,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(1332), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -53196,48 +53346,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [147] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(783), - [sym_attributed_statement] = STATE(783), - [sym_labeled_statement] = STATE(783), - [sym_expression_statement] = STATE(783), - [sym_if_statement] = STATE(783), - [sym_switch_statement] = STATE(783), - [sym_case_statement] = STATE(783), - [sym_while_statement] = STATE(783), - [sym_do_statement] = STATE(783), - [sym_for_statement] = STATE(783), - [sym_return_statement] = STATE(783), - [sym_break_statement] = STATE(783), - [sym_continue_statement] = STATE(783), - [sym_goto_statement] = STATE(783), - [sym__expression] = STATE(3668), + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(852), + [sym_attributed_statement] = STATE(852), + [sym_labeled_statement] = STATE(852), + [sym_expression_statement] = STATE(852), + [sym_if_statement] = STATE(852), + [sym_switch_statement] = STATE(852), + [sym_case_statement] = STATE(852), + [sym_while_statement] = STATE(852), + [sym_do_statement] = STATE(852), + [sym_for_statement] = STATE(852), + [sym_return_statement] = STATE(852), + [sym_break_statement] = STATE(852), + [sym_continue_statement] = STATE(852), + [sym_goto_statement] = STATE(852), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(783), - [sym_co_return_statement] = STATE(783), - [sym_co_yield_statement] = STATE(783), - [sym_throw_statement] = STATE(783), - [sym_try_statement] = STATE(783), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(852), + [sym_co_return_statement] = STATE(852), + [sym_co_yield_statement] = STATE(852), + [sym_throw_statement] = STATE(852), + [sym_try_statement] = STATE(852), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -53249,11 +53399,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53316,48 +53466,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [148] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(798), - [sym_attributed_statement] = STATE(798), - [sym_labeled_statement] = STATE(798), - [sym_expression_statement] = STATE(798), - [sym_if_statement] = STATE(798), - [sym_switch_statement] = STATE(798), - [sym_case_statement] = STATE(798), - [sym_while_statement] = STATE(798), - [sym_do_statement] = STATE(798), - [sym_for_statement] = STATE(798), - [sym_return_statement] = STATE(798), - [sym_break_statement] = STATE(798), - [sym_continue_statement] = STATE(798), - [sym_goto_statement] = STATE(798), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), + [sym_attribute_declaration] = STATE(280), + [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(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(798), - [sym_co_return_statement] = STATE(798), - [sym_co_yield_statement] = STATE(798), - [sym_throw_statement] = STATE(798), - [sym_try_statement] = STATE(798), - [sym_raw_string_literal] = STATE(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -53369,11 +53519,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53381,23 +53531,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -53419,11 +53569,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -53436,648 +53586,648 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [149] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(800), - [sym_attributed_statement] = STATE(800), - [sym_labeled_statement] = STATE(800), - [sym_expression_statement] = STATE(800), - [sym_if_statement] = STATE(800), - [sym_switch_statement] = STATE(800), - [sym_case_statement] = STATE(800), - [sym_while_statement] = STATE(800), - [sym_do_statement] = STATE(800), - [sym_for_statement] = STATE(800), - [sym_return_statement] = STATE(800), - [sym_break_statement] = STATE(800), - [sym_continue_statement] = STATE(800), - [sym_goto_statement] = STATE(800), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(800), - [sym_co_return_statement] = STATE(800), - [sym_co_yield_statement] = STATE(800), - [sym_throw_statement] = STATE(800), - [sym_try_statement] = STATE(800), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym_preproc_def] = STATE(198), + [sym_preproc_function_def] = STATE(198), + [sym_preproc_call] = STATE(198), + [sym_preproc_if_in_field_declaration_list] = STATE(198), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(198), + [sym_type_definition] = STATE(198), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(198), + [sym_field_declaration] = STATE(198), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(198), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(198), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(198), + [sym_operator_cast_declaration] = STATE(198), + [sym_constructor_or_destructor_definition] = STATE(198), + [sym_constructor_or_destructor_declaration] = STATE(198), + [sym_friend_declaration] = STATE(198), + [sym_access_specifier] = STATE(198), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(198), + [sym_alias_declaration] = STATE(198), + [sym_static_assert_declaration] = STATE(198), + [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(198), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), }, [150] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(801), - [sym_attributed_statement] = STATE(802), - [sym_labeled_statement] = STATE(804), - [sym_expression_statement] = STATE(805), - [sym_if_statement] = STATE(806), - [sym_switch_statement] = STATE(807), - [sym_case_statement] = STATE(808), - [sym_while_statement] = STATE(809), - [sym_do_statement] = STATE(810), - [sym_for_statement] = STATE(811), - [sym_return_statement] = STATE(812), - [sym_break_statement] = STATE(815), - [sym_continue_statement] = STATE(816), - [sym_goto_statement] = STATE(818), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(819), - [sym_co_return_statement] = STATE(820), - [sym_co_yield_statement] = STATE(821), - [sym_throw_statement] = STATE(822), - [sym_try_statement] = STATE(823), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym_preproc_def] = STATE(149), + [sym_preproc_function_def] = STATE(149), + [sym_preproc_call] = STATE(149), + [sym_preproc_if_in_field_declaration_list] = STATE(149), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(149), + [sym_type_definition] = STATE(149), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(149), + [sym_field_declaration] = STATE(149), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(149), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(149), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(149), + [sym_operator_cast_declaration] = STATE(149), + [sym_constructor_or_destructor_definition] = STATE(149), + [sym_constructor_or_destructor_declaration] = STATE(149), + [sym_friend_declaration] = STATE(149), + [sym_access_specifier] = STATE(149), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(149), + [sym_alias_declaration] = STATE(149), + [sym_static_assert_declaration] = STATE(149), + [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(149), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), }, [151] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(824), - [sym_attributed_statement] = STATE(825), - [sym_labeled_statement] = STATE(827), - [sym_expression_statement] = STATE(830), - [sym_if_statement] = STATE(831), - [sym_switch_statement] = STATE(832), - [sym_case_statement] = STATE(833), - [sym_while_statement] = STATE(834), - [sym_do_statement] = STATE(835), - [sym_for_statement] = STATE(836), - [sym_return_statement] = STATE(837), - [sym_break_statement] = STATE(838), - [sym_continue_statement] = STATE(839), - [sym_goto_statement] = STATE(841), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(842), - [sym_co_return_statement] = STATE(843), - [sym_co_yield_statement] = STATE(844), - [sym_throw_statement] = STATE(845), - [sym_try_statement] = STATE(846), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym_preproc_def] = STATE(198), + [sym_preproc_function_def] = STATE(198), + [sym_preproc_call] = STATE(198), + [sym_preproc_if_in_field_declaration_list] = STATE(198), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(198), + [sym_type_definition] = STATE(198), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(198), + [sym_field_declaration] = STATE(198), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(198), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(198), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(198), + [sym_operator_cast_declaration] = STATE(198), + [sym_constructor_or_destructor_definition] = STATE(198), + [sym_constructor_or_destructor_declaration] = STATE(198), + [sym_friend_declaration] = STATE(198), + [sym_access_specifier] = STATE(198), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(198), + [sym_alias_declaration] = STATE(198), + [sym_static_assert_declaration] = STATE(198), + [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(198), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), }, [152] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(847), - [sym_attributed_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_expression_statement] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_case_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_goto_statement] = STATE(847), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(847), - [sym_co_return_statement] = STATE(847), - [sym_co_yield_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym_preproc_def] = STATE(198), + [sym_preproc_function_def] = STATE(198), + [sym_preproc_call] = STATE(198), + [sym_preproc_if_in_field_declaration_list] = STATE(198), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(198), + [sym_type_definition] = STATE(198), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(198), + [sym_field_declaration] = STATE(198), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(198), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(198), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(198), + [sym_operator_cast_declaration] = STATE(198), + [sym_constructor_or_destructor_definition] = STATE(198), + [sym_constructor_or_destructor_declaration] = STATE(198), + [sym_friend_declaration] = STATE(198), + [sym_access_specifier] = STATE(198), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(198), + [sym_alias_declaration] = STATE(198), + [sym_static_assert_declaration] = STATE(198), + [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(198), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), }, [153] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(848), - [sym_attributed_statement] = STATE(848), - [sym_labeled_statement] = STATE(848), - [sym_expression_statement] = STATE(848), - [sym_if_statement] = STATE(848), - [sym_switch_statement] = STATE(848), - [sym_case_statement] = STATE(848), - [sym_while_statement] = STATE(848), - [sym_do_statement] = STATE(848), - [sym_for_statement] = STATE(848), - [sym_return_statement] = STATE(848), - [sym_break_statement] = STATE(848), - [sym_continue_statement] = STATE(848), - [sym_goto_statement] = STATE(848), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(848), - [sym_co_return_statement] = STATE(848), - [sym_co_yield_statement] = STATE(848), - [sym_throw_statement] = STATE(848), - [sym_try_statement] = STATE(848), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym_preproc_def] = STATE(151), + [sym_preproc_function_def] = STATE(151), + [sym_preproc_call] = STATE(151), + [sym_preproc_if_in_field_declaration_list] = STATE(151), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(151), + [sym_type_definition] = STATE(151), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(151), + [sym_field_declaration] = STATE(151), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(151), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(151), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(151), + [sym_operator_cast_declaration] = STATE(151), + [sym_constructor_or_destructor_definition] = STATE(151), + [sym_constructor_or_destructor_declaration] = STATE(151), + [sym_friend_declaration] = STATE(151), + [sym_access_specifier] = STATE(151), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(151), + [sym_alias_declaration] = STATE(151), + [sym_static_assert_declaration] = STATE(151), + [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(151), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), }, [154] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(788), - [sym_attributed_statement] = STATE(788), - [sym_labeled_statement] = STATE(788), - [sym_expression_statement] = STATE(788), - [sym_if_statement] = STATE(788), - [sym_switch_statement] = STATE(788), - [sym_case_statement] = STATE(788), - [sym_while_statement] = STATE(788), - [sym_do_statement] = STATE(788), - [sym_for_statement] = STATE(788), - [sym_return_statement] = STATE(788), - [sym_break_statement] = STATE(788), - [sym_continue_statement] = STATE(788), - [sym_goto_statement] = STATE(788), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1236), + [sym_attributed_statement] = STATE(1236), + [sym_labeled_statement] = STATE(1236), + [sym_expression_statement] = STATE(1236), + [sym_if_statement] = STATE(1236), + [sym_switch_statement] = STATE(1236), + [sym_case_statement] = STATE(1236), + [sym_while_statement] = STATE(1236), + [sym_do_statement] = STATE(1236), + [sym_for_statement] = STATE(1236), + [sym_return_statement] = STATE(1236), + [sym_break_statement] = STATE(1236), + [sym_continue_statement] = STATE(1236), + [sym_goto_statement] = STATE(1236), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(788), - [sym_co_return_statement] = STATE(788), - [sym_co_yield_statement] = STATE(788), - [sym_throw_statement] = STATE(788), - [sym_try_statement] = STATE(788), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(1236), + [sym_co_return_statement] = STATE(1236), + [sym_co_yield_statement] = STATE(1236), + [sym_throw_statement] = STATE(1236), + [sym_try_statement] = STATE(1236), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -54089,11 +54239,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54101,23 +54251,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1308), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(1312), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -54139,11 +54289,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), + [anon_sym_try] = ACTIONS(1332), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -54156,48 +54306,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [155] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(791), - [sym_attributed_statement] = STATE(791), - [sym_labeled_statement] = STATE(791), - [sym_expression_statement] = STATE(791), - [sym_if_statement] = STATE(791), - [sym_switch_statement] = STATE(791), - [sym_case_statement] = STATE(791), - [sym_while_statement] = STATE(791), - [sym_do_statement] = STATE(791), - [sym_for_statement] = STATE(791), - [sym_return_statement] = STATE(791), - [sym_break_statement] = STATE(791), - [sym_continue_statement] = STATE(791), - [sym_goto_statement] = STATE(791), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), + [sym_attribute_declaration] = STATE(155), + [sym_compound_statement] = STATE(1237), + [sym_attributed_statement] = STATE(1237), + [sym_labeled_statement] = STATE(1237), + [sym_expression_statement] = STATE(1237), + [sym_if_statement] = STATE(1237), + [sym_switch_statement] = STATE(1237), + [sym_case_statement] = STATE(1237), + [sym_while_statement] = STATE(1237), + [sym_do_statement] = STATE(1237), + [sym_for_statement] = STATE(1237), + [sym_return_statement] = STATE(1237), + [sym_break_statement] = STATE(1237), + [sym_continue_statement] = STATE(1237), + [sym_goto_statement] = STATE(1237), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(791), - [sym_co_return_statement] = STATE(791), - [sym_co_yield_statement] = STATE(791), - [sym_throw_statement] = STATE(791), - [sym_try_statement] = STATE(791), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(1237), + [sym_co_return_statement] = STATE(1237), + [sym_co_yield_statement] = STATE(1237), + [sym_throw_statement] = STATE(1237), + [sym_try_statement] = STATE(1237), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -54209,115 +54359,475 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [aux_sym_attributed_declarator_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(1883), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_COLON_COLON] = ACTIONS(1901), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1910), + [sym_primitive_type] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_switch] = ACTIONS(1919), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1925), + [anon_sym_while] = ACTIONS(1928), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_goto] = ACTIONS(1946), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_sizeof] = ACTIONS(1952), + [sym_number_literal] = ACTIONS(1955), + [anon_sym_L_SQUOTE] = ACTIONS(1958), + [anon_sym_u_SQUOTE] = ACTIONS(1958), + [anon_sym_U_SQUOTE] = ACTIONS(1958), + [anon_sym_u8_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_L_DQUOTE] = ACTIONS(1961), + [anon_sym_u_DQUOTE] = ACTIONS(1961), + [anon_sym_U_DQUOTE] = ACTIONS(1961), + [anon_sym_u8_DQUOTE] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [sym_true] = ACTIONS(1964), + [sym_false] = ACTIONS(1964), + [sym_null] = ACTIONS(1964), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_template] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(1970), + [anon_sym_delete] = ACTIONS(1973), + [anon_sym_throw] = ACTIONS(1976), + [anon_sym_co_return] = ACTIONS(1979), + [anon_sym_co_yield] = ACTIONS(1982), + [anon_sym_R_DQUOTE] = ACTIONS(1985), + [anon_sym_LR_DQUOTE] = ACTIONS(1985), + [anon_sym_uR_DQUOTE] = ACTIONS(1985), + [anon_sym_UR_DQUOTE] = ACTIONS(1985), + [anon_sym_u8R_DQUOTE] = ACTIONS(1985), + [anon_sym_co_await] = ACTIONS(1988), + [anon_sym_new] = ACTIONS(1991), + [anon_sym_requires] = ACTIONS(1994), + [sym_this] = ACTIONS(1964), + [sym_nullptr] = ACTIONS(1964), }, [156] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(792), - [sym_attributed_statement] = STATE(792), - [sym_labeled_statement] = STATE(792), - [sym_expression_statement] = STATE(792), - [sym_if_statement] = STATE(792), - [sym_switch_statement] = STATE(792), - [sym_case_statement] = STATE(792), - [sym_while_statement] = STATE(792), - [sym_do_statement] = STATE(792), - [sym_for_statement] = STATE(792), - [sym_return_statement] = STATE(792), - [sym_break_statement] = STATE(792), - [sym_continue_statement] = STATE(792), - [sym_goto_statement] = STATE(792), - [sym__expression] = STATE(3668), + [sym_preproc_def] = STATE(198), + [sym_preproc_function_def] = STATE(198), + [sym_preproc_call] = STATE(198), + [sym_preproc_if_in_field_declaration_list] = STATE(198), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(198), + [sym_type_definition] = STATE(198), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(198), + [sym_field_declaration] = STATE(198), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(198), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(198), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(198), + [sym_operator_cast_declaration] = STATE(198), + [sym_constructor_or_destructor_definition] = STATE(198), + [sym_constructor_or_destructor_declaration] = STATE(198), + [sym_friend_declaration] = STATE(198), + [sym_access_specifier] = STATE(198), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(198), + [sym_alias_declaration] = STATE(198), + [sym_static_assert_declaration] = STATE(198), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(198), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), + }, + [157] = { + [ts_builtin_sym_end] = ACTIONS(1999), + [sym_identifier] = ACTIONS(2001), + [aux_sym_preproc_include_token1] = ACTIONS(2001), + [aux_sym_preproc_def_token1] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [aux_sym_preproc_if_token1] = ACTIONS(2001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2001), + [sym_preproc_directive] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1999), + [anon_sym_TILDE] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(1999), + [anon_sym_PIPE_PIPE] = ACTIONS(1999), + [anon_sym_AMP_AMP] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_typedef] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym___attribute__] = ACTIONS(2001), + [anon_sym_COLON_COLON] = ACTIONS(1999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(2001), + [anon_sym___based] = ACTIONS(2001), + [anon_sym___cdecl] = ACTIONS(2001), + [anon_sym___clrcall] = ACTIONS(2001), + [anon_sym___stdcall] = ACTIONS(2001), + [anon_sym___fastcall] = ACTIONS(2001), + [anon_sym___thiscall] = ACTIONS(2001), + [anon_sym___vectorcall] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_inline] = ACTIONS(2001), + [anon_sym_thread_local] = ACTIONS(2001), + [anon_sym_input] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [anon_sym_volatile] = ACTIONS(2001), + [anon_sym_restrict] = ACTIONS(2001), + [anon_sym__Atomic] = ACTIONS(2001), + [anon_sym_mutable] = ACTIONS(2001), + [anon_sym_constexpr] = ACTIONS(2001), + [anon_sym_constinit] = ACTIONS(2001), + [anon_sym_consteval] = ACTIONS(2001), + [anon_sym_signed] = ACTIONS(2001), + [anon_sym_unsigned] = ACTIONS(2001), + [anon_sym_long] = ACTIONS(2001), + [anon_sym_short] = ACTIONS(2001), + [sym_primitive_type] = ACTIONS(2001), + [anon_sym_enum] = ACTIONS(2001), + [anon_sym_class] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_union] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_switch] = ACTIONS(2001), + [anon_sym_case] = ACTIONS(2001), + [anon_sym_default] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_goto] = ACTIONS(2001), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_compl] = ACTIONS(2001), + [anon_sym_DASH_DASH] = ACTIONS(1999), + [anon_sym_PLUS_PLUS] = ACTIONS(1999), + [anon_sym_sizeof] = ACTIONS(2001), + [sym_number_literal] = ACTIONS(1999), + [anon_sym_L_SQUOTE] = ACTIONS(1999), + [anon_sym_u_SQUOTE] = ACTIONS(1999), + [anon_sym_U_SQUOTE] = ACTIONS(1999), + [anon_sym_u8_SQUOTE] = ACTIONS(1999), + [anon_sym_SQUOTE] = ACTIONS(1999), + [anon_sym_L_DQUOTE] = ACTIONS(1999), + [anon_sym_u_DQUOTE] = ACTIONS(1999), + [anon_sym_U_DQUOTE] = ACTIONS(1999), + [anon_sym_u8_DQUOTE] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2001), + [anon_sym_decltype] = ACTIONS(2001), + [anon_sym_virtual] = ACTIONS(2001), + [anon_sym_explicit] = ACTIONS(2001), + [anon_sym_typename] = ACTIONS(2001), + [anon_sym_template] = ACTIONS(2001), + [anon_sym_GT2] = ACTIONS(1999), + [anon_sym_operator] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_delete] = ACTIONS(2001), + [anon_sym_throw] = ACTIONS(2001), + [anon_sym_namespace] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(2001), + [anon_sym_static_assert] = ACTIONS(2001), + [anon_sym_concept] = ACTIONS(2001), + [anon_sym_co_return] = ACTIONS(2001), + [anon_sym_co_yield] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_R_DQUOTE] = ACTIONS(1999), + [anon_sym_LR_DQUOTE] = ACTIONS(1999), + [anon_sym_uR_DQUOTE] = ACTIONS(1999), + [anon_sym_UR_DQUOTE] = ACTIONS(1999), + [anon_sym_u8R_DQUOTE] = ACTIONS(1999), + [anon_sym_co_await] = ACTIONS(2001), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_requires] = ACTIONS(2001), + [sym_this] = ACTIONS(2001), + [sym_nullptr] = ACTIONS(2001), + }, + [158] = { + [sym_preproc_def] = STATE(156), + [sym_preproc_function_def] = STATE(156), + [sym_preproc_call] = STATE(156), + [sym_preproc_if_in_field_declaration_list] = STATE(156), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(156), + [sym_type_definition] = STATE(156), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(156), + [sym_field_declaration] = STATE(156), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(156), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(156), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(156), + [sym_operator_cast_declaration] = STATE(156), + [sym_constructor_or_destructor_definition] = STATE(156), + [sym_constructor_or_destructor_declaration] = STATE(156), + [sym_friend_declaration] = STATE(156), + [sym_access_specifier] = STATE(156), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(156), + [sym_alias_declaration] = STATE(156), + [sym_static_assert_declaration] = STATE(156), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(156), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), + }, + [159] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(579), + [sym_attributed_statement] = STATE(578), + [sym_labeled_statement] = STATE(575), + [sym_expression_statement] = STATE(574), + [sym_if_statement] = STATE(573), + [sym_switch_statement] = STATE(572), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(570), + [sym_do_statement] = STATE(569), + [sym_for_statement] = STATE(568), + [sym_return_statement] = STATE(567), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(565), + [sym_goto_statement] = STATE(563), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(792), - [sym_co_return_statement] = STATE(792), - [sym_co_yield_statement] = STATE(792), - [sym_throw_statement] = STATE(792), - [sym_try_statement] = STATE(792), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(562), + [sym_co_return_statement] = STATE(561), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(559), + [sym_try_statement] = STATE(558), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -54329,11 +54839,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54347,13 +54857,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), + [anon_sym_if] = ACTIONS(2007), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2011), [anon_sym_return] = ACTIONS(85), [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), @@ -54395,889 +54905,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [157] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(849), - [sym_attributed_statement] = STATE(849), - [sym_labeled_statement] = STATE(849), - [sym_expression_statement] = STATE(849), - [sym_if_statement] = STATE(849), - [sym_switch_statement] = STATE(849), - [sym_case_statement] = STATE(849), - [sym_while_statement] = STATE(849), - [sym_do_statement] = STATE(849), - [sym_for_statement] = STATE(849), - [sym_return_statement] = STATE(849), - [sym_break_statement] = STATE(849), - [sym_continue_statement] = STATE(849), - [sym_goto_statement] = STATE(849), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(849), - [sym_co_return_statement] = STATE(849), - [sym_co_yield_statement] = STATE(849), - [sym_throw_statement] = STATE(849), - [sym_try_statement] = STATE(849), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [158] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(851), - [sym_attributed_statement] = STATE(853), - [sym_labeled_statement] = STATE(854), - [sym_expression_statement] = STATE(855), - [sym_if_statement] = STATE(860), - [sym_switch_statement] = STATE(861), - [sym_case_statement] = STATE(862), - [sym_while_statement] = STATE(863), - [sym_do_statement] = STATE(864), - [sym_for_statement] = STATE(865), - [sym_return_statement] = STATE(866), - [sym_break_statement] = STATE(867), - [sym_continue_statement] = STATE(868), - [sym_goto_statement] = STATE(869), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(870), - [sym_co_return_statement] = STATE(871), - [sym_co_yield_statement] = STATE(872), - [sym_throw_statement] = STATE(873), - [sym_try_statement] = STATE(875), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [159] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(877), - [sym_attributed_statement] = STATE(879), - [sym_labeled_statement] = STATE(880), - [sym_expression_statement] = STATE(881), - [sym_if_statement] = STATE(882), - [sym_switch_statement] = STATE(883), - [sym_case_statement] = STATE(884), - [sym_while_statement] = STATE(885), - [sym_do_statement] = STATE(886), - [sym_for_statement] = STATE(887), - [sym_return_statement] = STATE(889), - [sym_break_statement] = STATE(890), - [sym_continue_statement] = STATE(891), - [sym_goto_statement] = STATE(892), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(893), - [sym_co_return_statement] = STATE(894), - [sym_co_yield_statement] = STATE(898), - [sym_throw_statement] = STATE(899), - [sym_try_statement] = STATE(900), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, [160] = { - [sym_attribute_declaration] = STATE(230), - [sym_compound_statement] = STATE(1195), - [sym_attributed_statement] = STATE(1195), - [sym_labeled_statement] = STATE(1195), - [sym_expression_statement] = STATE(1195), - [sym_if_statement] = STATE(1195), - [sym_switch_statement] = STATE(1195), - [sym_case_statement] = STATE(1195), - [sym_while_statement] = STATE(1195), - [sym_do_statement] = STATE(1195), - [sym_for_statement] = STATE(1195), - [sym_return_statement] = STATE(1195), - [sym_break_statement] = STATE(1195), - [sym_continue_statement] = STATE(1195), - [sym_goto_statement] = STATE(1195), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1195), - [sym_co_return_statement] = STATE(1195), - [sym_co_yield_statement] = STATE(1195), - [sym_throw_statement] = STATE(1195), - [sym_try_statement] = STATE(1195), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(230), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [161] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(789), - [sym_attributed_statement] = STATE(789), - [sym_labeled_statement] = STATE(789), - [sym_expression_statement] = STATE(789), - [sym_if_statement] = STATE(789), - [sym_switch_statement] = STATE(789), - [sym_case_statement] = STATE(789), - [sym_while_statement] = STATE(789), - [sym_do_statement] = STATE(789), - [sym_for_statement] = STATE(789), - [sym_return_statement] = STATE(789), - [sym_break_statement] = STATE(789), - [sym_continue_statement] = STATE(789), - [sym_goto_statement] = STATE(789), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(789), - [sym_co_return_statement] = STATE(789), - [sym_co_yield_statement] = STATE(789), - [sym_throw_statement] = STATE(789), - [sym_try_statement] = STATE(789), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [162] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(796), - [sym_attributed_statement] = STATE(796), - [sym_labeled_statement] = STATE(796), - [sym_expression_statement] = STATE(796), - [sym_if_statement] = STATE(796), - [sym_switch_statement] = STATE(796), - [sym_case_statement] = STATE(796), - [sym_while_statement] = STATE(796), - [sym_do_statement] = STATE(796), - [sym_for_statement] = STATE(796), - [sym_return_statement] = STATE(796), - [sym_break_statement] = STATE(796), - [sym_continue_statement] = STATE(796), - [sym_goto_statement] = STATE(796), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(796), - [sym_co_return_statement] = STATE(796), - [sym_co_yield_statement] = STATE(796), - [sym_throw_statement] = STATE(796), - [sym_try_statement] = STATE(796), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [163] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(794), - [sym_attributed_statement] = STATE(794), - [sym_labeled_statement] = STATE(794), - [sym_expression_statement] = STATE(794), - [sym_if_statement] = STATE(794), - [sym_switch_statement] = STATE(794), - [sym_case_statement] = STATE(794), - [sym_while_statement] = STATE(794), - [sym_do_statement] = STATE(794), - [sym_for_statement] = STATE(794), - [sym_return_statement] = STATE(794), - [sym_break_statement] = STATE(794), - [sym_continue_statement] = STATE(794), - [sym_goto_statement] = STATE(794), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(794), - [sym_co_return_statement] = STATE(794), - [sym_co_yield_statement] = STATE(794), - [sym_throw_statement] = STATE(794), - [sym_try_statement] = STATE(794), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [164] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(828), - [sym_attributed_statement] = STATE(828), - [sym_labeled_statement] = STATE(828), - [sym_expression_statement] = STATE(828), - [sym_if_statement] = STATE(828), - [sym_switch_statement] = STATE(828), - [sym_case_statement] = STATE(828), - [sym_while_statement] = STATE(828), - [sym_do_statement] = STATE(828), - [sym_for_statement] = STATE(828), - [sym_return_statement] = STATE(828), - [sym_break_statement] = STATE(828), - [sym_continue_statement] = STATE(828), - [sym_goto_statement] = STATE(828), - [sym__expression] = STATE(3668), + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(599), + [sym_attributed_statement] = STATE(597), + [sym_labeled_statement] = STATE(596), + [sym_expression_statement] = STATE(595), + [sym_if_statement] = STATE(594), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(592), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(590), + [sym_for_statement] = STATE(589), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(586), + [sym_goto_statement] = STATE(585), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(828), - [sym_co_return_statement] = STATE(828), - [sym_co_yield_statement] = STATE(828), - [sym_throw_statement] = STATE(828), - [sym_try_statement] = STATE(828), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(584), + [sym_co_return_statement] = STATE(583), + [sym_co_yield_statement] = STATE(582), + [sym_throw_statement] = STATE(581), + [sym_try_statement] = STATE(580), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -55289,11 +54959,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55307,13 +54977,493 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), + [anon_sym_if] = ACTIONS(2007), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [161] = { + [sym_attribute_declaration] = STATE(196), + [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(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [162] = { + [sym_preproc_def] = STATE(167), + [sym_preproc_function_def] = STATE(167), + [sym_preproc_call] = STATE(167), + [sym_preproc_if_in_field_declaration_list] = STATE(167), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(167), + [sym_type_definition] = STATE(167), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(167), + [sym_field_declaration] = STATE(167), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(167), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(167), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(167), + [sym_operator_cast_declaration] = STATE(167), + [sym_constructor_or_destructor_definition] = STATE(167), + [sym_constructor_or_destructor_declaration] = STATE(167), + [sym_friend_declaration] = STATE(167), + [sym_access_specifier] = STATE(167), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(167), + [sym_alias_declaration] = STATE(167), + [sym_static_assert_declaration] = STATE(167), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(167), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2013), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), + }, + [163] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(601), + [sym_attributed_statement] = STATE(601), + [sym_labeled_statement] = STATE(601), + [sym_expression_statement] = STATE(601), + [sym_if_statement] = STATE(601), + [sym_switch_statement] = STATE(601), + [sym_case_statement] = STATE(601), + [sym_while_statement] = STATE(601), + [sym_do_statement] = STATE(601), + [sym_for_statement] = STATE(601), + [sym_return_statement] = STATE(601), + [sym_break_statement] = STATE(601), + [sym_continue_statement] = STATE(601), + [sym_goto_statement] = STATE(601), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(601), + [sym_co_return_statement] = STATE(601), + [sym_co_yield_statement] = STATE(601), + [sym_throw_statement] = STATE(601), + [sym_try_statement] = STATE(601), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [164] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(602), + [sym_attributed_statement] = STATE(602), + [sym_labeled_statement] = STATE(602), + [sym_expression_statement] = STATE(602), + [sym_if_statement] = STATE(602), + [sym_switch_statement] = STATE(602), + [sym_case_statement] = STATE(602), + [sym_while_statement] = STATE(602), + [sym_do_statement] = STATE(602), + [sym_for_statement] = STATE(602), + [sym_return_statement] = STATE(602), + [sym_break_statement] = STATE(602), + [sym_continue_statement] = STATE(602), + [sym_goto_statement] = STATE(602), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(602), + [sym_co_return_statement] = STATE(602), + [sym_co_yield_statement] = STATE(602), + [sym_throw_statement] = STATE(602), + [sym_try_statement] = STATE(602), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), [anon_sym_return] = ACTIONS(85), [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), @@ -55356,48 +55506,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [165] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1170), - [sym_attributed_statement] = STATE(1170), - [sym_labeled_statement] = STATE(1170), - [sym_expression_statement] = STATE(1170), - [sym_if_statement] = STATE(1170), - [sym_switch_statement] = STATE(1170), - [sym_case_statement] = STATE(1170), - [sym_while_statement] = STATE(1170), - [sym_do_statement] = STATE(1170), - [sym_for_statement] = STATE(1170), - [sym_return_statement] = STATE(1170), - [sym_break_statement] = STATE(1170), - [sym_continue_statement] = STATE(1170), - [sym_goto_statement] = STATE(1170), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(622), + [sym_attributed_statement] = STATE(621), + [sym_labeled_statement] = STATE(620), + [sym_expression_statement] = STATE(619), + [sym_if_statement] = STATE(618), + [sym_switch_statement] = STATE(617), + [sym_case_statement] = STATE(616), + [sym_while_statement] = STATE(615), + [sym_do_statement] = STATE(614), + [sym_for_statement] = STATE(613), + [sym_return_statement] = STATE(612), + [sym_break_statement] = STATE(611), + [sym_continue_statement] = STATE(610), + [sym_goto_statement] = STATE(609), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1170), - [sym_co_return_statement] = STATE(1170), - [sym_co_yield_statement] = STATE(1170), - [sym_throw_statement] = STATE(1170), - [sym_try_statement] = STATE(1170), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(608), + [sym_co_return_statement] = STATE(607), + [sym_co_yield_statement] = STATE(606), + [sym_throw_statement] = STATE(604), + [sym_try_statement] = STATE(603), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -55409,11 +55559,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55421,23 +55571,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -55459,11 +55609,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -55476,48 +55626,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [166] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(793), - [sym_attributed_statement] = STATE(793), - [sym_labeled_statement] = STATE(793), - [sym_expression_statement] = STATE(793), - [sym_if_statement] = STATE(793), - [sym_switch_statement] = STATE(793), - [sym_case_statement] = STATE(793), - [sym_while_statement] = STATE(793), - [sym_do_statement] = STATE(793), - [sym_for_statement] = STATE(793), - [sym_return_statement] = STATE(793), - [sym_break_statement] = STATE(793), - [sym_continue_statement] = STATE(793), - [sym_goto_statement] = STATE(793), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), + [ts_builtin_sym_end] = ACTIONS(2015), + [sym_identifier] = ACTIONS(2017), + [aux_sym_preproc_include_token1] = ACTIONS(2017), + [aux_sym_preproc_def_token1] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2015), + [anon_sym_RPAREN] = ACTIONS(2015), + [aux_sym_preproc_if_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [sym_preproc_directive] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_PIPE_PIPE] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_typedef] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2015), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_EQ] = ACTIONS(2015), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym_input] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym_mutable] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_constinit] = ACTIONS(2017), + [anon_sym_consteval] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2017), + [anon_sym_unsigned] = ACTIONS(2017), + [anon_sym_long] = ACTIONS(2017), + [anon_sym_short] = ACTIONS(2017), + [sym_primitive_type] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_class] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_else] = ACTIONS(2017), + [anon_sym_switch] = ACTIONS(2017), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_goto] = ACTIONS(2017), + [anon_sym_not] = ACTIONS(2017), + [anon_sym_compl] = ACTIONS(2017), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_sizeof] = ACTIONS(2017), + [sym_number_literal] = ACTIONS(2015), + [anon_sym_L_SQUOTE] = ACTIONS(2015), + [anon_sym_u_SQUOTE] = ACTIONS(2015), + [anon_sym_U_SQUOTE] = ACTIONS(2015), + [anon_sym_u8_SQUOTE] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(2015), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [sym_null] = ACTIONS(2017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2017), + [anon_sym_decltype] = ACTIONS(2017), + [anon_sym_virtual] = ACTIONS(2017), + [anon_sym_explicit] = ACTIONS(2017), + [anon_sym_typename] = ACTIONS(2017), + [anon_sym_template] = ACTIONS(2017), + [anon_sym_GT2] = ACTIONS(2015), + [anon_sym_operator] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_delete] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(2017), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_using] = ACTIONS(2017), + [anon_sym_static_assert] = ACTIONS(2017), + [anon_sym_concept] = ACTIONS(2017), + [anon_sym_co_return] = ACTIONS(2017), + [anon_sym_co_yield] = ACTIONS(2017), + [anon_sym_catch] = ACTIONS(2017), + [anon_sym_R_DQUOTE] = ACTIONS(2015), + [anon_sym_LR_DQUOTE] = ACTIONS(2015), + [anon_sym_uR_DQUOTE] = ACTIONS(2015), + [anon_sym_UR_DQUOTE] = ACTIONS(2015), + [anon_sym_u8R_DQUOTE] = ACTIONS(2015), + [anon_sym_co_await] = ACTIONS(2017), + [anon_sym_new] = ACTIONS(2017), + [anon_sym_requires] = ACTIONS(2017), + [sym_this] = ACTIONS(2017), + [sym_nullptr] = ACTIONS(2017), + }, + [167] = { + [sym_preproc_def] = STATE(198), + [sym_preproc_function_def] = STATE(198), + [sym_preproc_call] = STATE(198), + [sym_preproc_if_in_field_declaration_list] = STATE(198), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(198), + [sym_type_definition] = STATE(198), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(198), + [sym_field_declaration] = STATE(198), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(198), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(198), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(198), + [sym_operator_cast_declaration] = STATE(198), + [sym_constructor_or_destructor_definition] = STATE(198), + [sym_constructor_or_destructor_declaration] = STATE(198), + [sym_friend_declaration] = STATE(198), + [sym_access_specifier] = STATE(198), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(198), + [sym_alias_declaration] = STATE(198), + [sym_static_assert_declaration] = STATE(198), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(198), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), + }, + [168] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(644), + [sym_attributed_statement] = STATE(643), + [sym_labeled_statement] = STATE(642), + [sym_expression_statement] = STATE(641), + [sym_if_statement] = STATE(640), + [sym_switch_statement] = STATE(639), + [sym_case_statement] = STATE(638), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(636), + [sym_for_statement] = STATE(635), + [sym_return_statement] = STATE(632), + [sym_break_statement] = STATE(631), + [sym_continue_statement] = STATE(630), + [sym_goto_statement] = STATE(629), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(793), - [sym_co_return_statement] = STATE(793), - [sym_co_yield_statement] = STATE(793), - [sym_throw_statement] = STATE(793), - [sym_try_statement] = STATE(793), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(628), + [sym_co_return_statement] = STATE(627), + [sym_co_yield_statement] = STATE(626), + [sym_throw_statement] = STATE(625), + [sym_try_statement] = STATE(623), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -55529,11 +55919,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55541,23 +55931,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -55579,11 +55969,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -55595,49 +55985,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [167] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(456), - [sym_attributed_statement] = STATE(451), - [sym_labeled_statement] = STATE(440), - [sym_expression_statement] = STATE(438), - [sym_if_statement] = STATE(436), - [sym_switch_statement] = STATE(431), - [sym_case_statement] = STATE(428), - [sym_while_statement] = STATE(425), - [sym_do_statement] = STATE(423), - [sym_for_statement] = STATE(418), - [sym_return_statement] = STATE(417), - [sym_break_statement] = STATE(415), - [sym_continue_statement] = STATE(410), - [sym_goto_statement] = STATE(403), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), + [169] = { + [sym_attribute_declaration] = STATE(196), + [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(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(400), - [sym_co_return_statement] = STATE(399), - [sym_co_yield_statement] = STATE(398), - [sym_throw_statement] = STATE(397), - [sym_try_statement] = STATE(419), - [sym_raw_string_literal] = STATE(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -55649,11 +56039,2171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [170] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(646), + [sym_attributed_statement] = STATE(646), + [sym_labeled_statement] = STATE(646), + [sym_expression_statement] = STATE(646), + [sym_if_statement] = STATE(646), + [sym_switch_statement] = STATE(646), + [sym_case_statement] = STATE(646), + [sym_while_statement] = STATE(646), + [sym_do_statement] = STATE(646), + [sym_for_statement] = STATE(646), + [sym_return_statement] = STATE(646), + [sym_break_statement] = STATE(646), + [sym_continue_statement] = STATE(646), + [sym_goto_statement] = STATE(646), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(646), + [sym_co_return_statement] = STATE(646), + [sym_co_yield_statement] = STATE(646), + [sym_throw_statement] = STATE(646), + [sym_try_statement] = STATE(646), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [171] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(654), + [sym_attributed_statement] = STATE(654), + [sym_labeled_statement] = STATE(654), + [sym_expression_statement] = STATE(654), + [sym_if_statement] = STATE(654), + [sym_switch_statement] = STATE(654), + [sym_case_statement] = STATE(654), + [sym_while_statement] = STATE(654), + [sym_do_statement] = STATE(654), + [sym_for_statement] = STATE(654), + [sym_return_statement] = STATE(654), + [sym_break_statement] = STATE(654), + [sym_continue_statement] = STATE(654), + [sym_goto_statement] = STATE(654), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(654), + [sym_co_return_statement] = STATE(654), + [sym_co_yield_statement] = STATE(654), + [sym_throw_statement] = STATE(654), + [sym_try_statement] = STATE(654), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [172] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(655), + [sym_attributed_statement] = STATE(655), + [sym_labeled_statement] = STATE(655), + [sym_expression_statement] = STATE(655), + [sym_if_statement] = STATE(655), + [sym_switch_statement] = STATE(655), + [sym_case_statement] = STATE(655), + [sym_while_statement] = STATE(655), + [sym_do_statement] = STATE(655), + [sym_for_statement] = STATE(655), + [sym_return_statement] = STATE(655), + [sym_break_statement] = STATE(655), + [sym_continue_statement] = STATE(655), + [sym_goto_statement] = STATE(655), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(655), + [sym_co_return_statement] = STATE(655), + [sym_co_yield_statement] = STATE(655), + [sym_throw_statement] = STATE(655), + [sym_try_statement] = STATE(655), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [173] = { + [sym_attribute_declaration] = STATE(196), + [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(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [174] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(657), + [sym_attributed_statement] = STATE(657), + [sym_labeled_statement] = STATE(657), + [sym_expression_statement] = STATE(657), + [sym_if_statement] = STATE(657), + [sym_switch_statement] = STATE(657), + [sym_case_statement] = STATE(657), + [sym_while_statement] = STATE(657), + [sym_do_statement] = STATE(657), + [sym_for_statement] = STATE(657), + [sym_return_statement] = STATE(657), + [sym_break_statement] = STATE(657), + [sym_continue_statement] = STATE(657), + [sym_goto_statement] = STATE(657), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(657), + [sym_co_return_statement] = STATE(657), + [sym_co_yield_statement] = STATE(657), + [sym_throw_statement] = STATE(657), + [sym_try_statement] = STATE(657), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [175] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(658), + [sym_attributed_statement] = STATE(658), + [sym_labeled_statement] = STATE(658), + [sym_expression_statement] = STATE(658), + [sym_if_statement] = STATE(658), + [sym_switch_statement] = STATE(658), + [sym_case_statement] = STATE(658), + [sym_while_statement] = STATE(658), + [sym_do_statement] = STATE(658), + [sym_for_statement] = STATE(658), + [sym_return_statement] = STATE(658), + [sym_break_statement] = STATE(658), + [sym_continue_statement] = STATE(658), + [sym_goto_statement] = STATE(658), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(658), + [sym_co_return_statement] = STATE(658), + [sym_co_yield_statement] = STATE(658), + [sym_throw_statement] = STATE(658), + [sym_try_statement] = STATE(658), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [176] = { + [sym_preproc_def] = STATE(180), + [sym_preproc_function_def] = STATE(180), + [sym_preproc_call] = STATE(180), + [sym_preproc_if_in_field_declaration_list] = STATE(180), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(180), + [sym_type_definition] = STATE(180), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(180), + [sym_field_declaration] = STATE(180), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(180), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(180), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(180), + [sym_operator_cast_declaration] = STATE(180), + [sym_constructor_or_destructor_definition] = STATE(180), + [sym_constructor_or_destructor_declaration] = STATE(180), + [sym_friend_declaration] = STATE(180), + [sym_access_specifier] = STATE(180), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(180), + [sym_alias_declaration] = STATE(180), + [sym_static_assert_declaration] = STATE(180), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(180), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), + }, + [177] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(671), + [sym_attributed_statement] = STATE(671), + [sym_labeled_statement] = STATE(671), + [sym_expression_statement] = STATE(671), + [sym_if_statement] = STATE(671), + [sym_switch_statement] = STATE(671), + [sym_case_statement] = STATE(671), + [sym_while_statement] = STATE(671), + [sym_do_statement] = STATE(671), + [sym_for_statement] = STATE(671), + [sym_return_statement] = STATE(671), + [sym_break_statement] = STATE(671), + [sym_continue_statement] = STATE(671), + [sym_goto_statement] = STATE(671), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(671), + [sym_co_return_statement] = STATE(671), + [sym_co_yield_statement] = STATE(671), + [sym_throw_statement] = STATE(671), + [sym_try_statement] = STATE(671), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [178] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(674), + [sym_attributed_statement] = STATE(674), + [sym_labeled_statement] = STATE(674), + [sym_expression_statement] = STATE(674), + [sym_if_statement] = STATE(674), + [sym_switch_statement] = STATE(674), + [sym_case_statement] = STATE(674), + [sym_while_statement] = STATE(674), + [sym_do_statement] = STATE(674), + [sym_for_statement] = STATE(674), + [sym_return_statement] = STATE(674), + [sym_break_statement] = STATE(674), + [sym_continue_statement] = STATE(674), + [sym_goto_statement] = STATE(674), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(674), + [sym_co_return_statement] = STATE(674), + [sym_co_yield_statement] = STATE(674), + [sym_throw_statement] = STATE(674), + [sym_try_statement] = STATE(674), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [179] = { + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if_in_field_declaration_list] = STATE(144), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(144), + [sym_field_declaration] = STATE(144), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(144), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(144), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(144), + [sym_operator_cast_declaration] = STATE(144), + [sym_constructor_or_destructor_definition] = STATE(144), + [sym_constructor_or_destructor_declaration] = STATE(144), + [sym_friend_declaration] = STATE(144), + [sym_access_specifier] = STATE(144), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(144), + [sym_alias_declaration] = STATE(144), + [sym_static_assert_declaration] = STATE(144), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(144), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), + }, + [180] = { + [sym_preproc_def] = STATE(198), + [sym_preproc_function_def] = STATE(198), + [sym_preproc_call] = STATE(198), + [sym_preproc_if_in_field_declaration_list] = STATE(198), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(198), + [sym_type_definition] = STATE(198), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(198), + [sym_field_declaration] = STATE(198), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(198), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(198), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(198), + [sym_operator_cast_declaration] = STATE(198), + [sym_constructor_or_destructor_definition] = STATE(198), + [sym_constructor_or_destructor_declaration] = STATE(198), + [sym_friend_declaration] = STATE(198), + [sym_access_specifier] = STATE(198), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(198), + [sym_alias_declaration] = STATE(198), + [sym_static_assert_declaration] = STATE(198), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(198), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), + }, + [181] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(675), + [sym_attributed_statement] = STATE(675), + [sym_labeled_statement] = STATE(675), + [sym_expression_statement] = STATE(675), + [sym_if_statement] = STATE(675), + [sym_switch_statement] = STATE(675), + [sym_case_statement] = STATE(675), + [sym_while_statement] = STATE(675), + [sym_do_statement] = STATE(675), + [sym_for_statement] = STATE(675), + [sym_return_statement] = STATE(675), + [sym_break_statement] = STATE(675), + [sym_continue_statement] = STATE(675), + [sym_goto_statement] = STATE(675), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(675), + [sym_co_return_statement] = STATE(675), + [sym_co_yield_statement] = STATE(675), + [sym_throw_statement] = STATE(675), + [sym_try_statement] = STATE(675), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [182] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(723), + [sym_attributed_statement] = STATE(723), + [sym_labeled_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_if_statement] = STATE(723), + [sym_switch_statement] = STATE(723), + [sym_case_statement] = STATE(723), + [sym_while_statement] = STATE(723), + [sym_do_statement] = STATE(723), + [sym_for_statement] = STATE(723), + [sym_return_statement] = STATE(723), + [sym_break_statement] = STATE(723), + [sym_continue_statement] = STATE(723), + [sym_goto_statement] = STATE(723), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(723), + [sym_co_return_statement] = STATE(723), + [sym_co_yield_statement] = STATE(723), + [sym_throw_statement] = STATE(723), + [sym_try_statement] = STATE(723), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [183] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(6376), + [sym_attributed_statement] = STATE(6376), + [sym_labeled_statement] = STATE(6376), + [sym_expression_statement] = STATE(6376), + [sym_if_statement] = STATE(6376), + [sym_switch_statement] = STATE(6376), + [sym_case_statement] = STATE(6376), + [sym_while_statement] = STATE(6376), + [sym_do_statement] = STATE(6376), + [sym_for_statement] = STATE(6376), + [sym_return_statement] = STATE(6376), + [sym_break_statement] = STATE(6376), + [sym_continue_statement] = STATE(6376), + [sym_goto_statement] = STATE(6376), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(6376), + [sym_co_return_statement] = STATE(6376), + [sym_co_yield_statement] = STATE(6376), + [sym_throw_statement] = STATE(6376), + [sym_try_statement] = STATE(6376), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [184] = { + [sym_preproc_def] = STATE(198), + [sym_preproc_function_def] = STATE(198), + [sym_preproc_call] = STATE(198), + [sym_preproc_if_in_field_declaration_list] = STATE(198), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(198), + [sym_type_definition] = STATE(198), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(198), + [sym_field_declaration] = STATE(198), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(198), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(198), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(198), + [sym_operator_cast_declaration] = STATE(198), + [sym_constructor_or_destructor_definition] = STATE(198), + [sym_constructor_or_destructor_declaration] = STATE(198), + [sym_friend_declaration] = STATE(198), + [sym_access_specifier] = STATE(198), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(198), + [sym_alias_declaration] = STATE(198), + [sym_static_assert_declaration] = STATE(198), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(198), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), + }, + [185] = { + [sym_attribute_declaration] = STATE(185), + [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(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(2029), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(1901), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(1910), + [sym_primitive_type] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_switch] = ACTIONS(2041), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1925), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_goto] = ACTIONS(2062), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_sizeof] = ACTIONS(1952), + [sym_number_literal] = ACTIONS(1955), + [anon_sym_L_SQUOTE] = ACTIONS(1958), + [anon_sym_u_SQUOTE] = ACTIONS(1958), + [anon_sym_U_SQUOTE] = ACTIONS(1958), + [anon_sym_u8_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_L_DQUOTE] = ACTIONS(1961), + [anon_sym_u_DQUOTE] = ACTIONS(1961), + [anon_sym_U_DQUOTE] = ACTIONS(1961), + [anon_sym_u8_DQUOTE] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [sym_true] = ACTIONS(1964), + [sym_false] = ACTIONS(1964), + [sym_null] = ACTIONS(1964), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(2065), + [anon_sym_delete] = ACTIONS(1973), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_co_return] = ACTIONS(2071), + [anon_sym_co_yield] = ACTIONS(2074), + [anon_sym_R_DQUOTE] = ACTIONS(1985), + [anon_sym_LR_DQUOTE] = ACTIONS(1985), + [anon_sym_uR_DQUOTE] = ACTIONS(1985), + [anon_sym_UR_DQUOTE] = ACTIONS(1985), + [anon_sym_u8R_DQUOTE] = ACTIONS(1985), + [anon_sym_co_await] = ACTIONS(1988), + [anon_sym_new] = ACTIONS(1991), + [anon_sym_requires] = ACTIONS(1994), + [sym_this] = ACTIONS(1964), + [sym_nullptr] = ACTIONS(1964), + }, + [186] = { + [sym_preproc_def] = STATE(192), + [sym_preproc_function_def] = STATE(192), + [sym_preproc_call] = STATE(192), + [sym_preproc_if_in_field_declaration_list] = STATE(192), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(192), + [sym_type_definition] = STATE(192), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(192), + [sym_field_declaration] = STATE(192), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(192), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(192), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(192), + [sym_operator_cast_declaration] = STATE(192), + [sym_constructor_or_destructor_definition] = STATE(192), + [sym_constructor_or_destructor_declaration] = STATE(192), + [sym_friend_declaration] = STATE(192), + [sym_access_specifier] = STATE(192), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(192), + [sym_alias_declaration] = STATE(192), + [sym_static_assert_declaration] = STATE(192), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(192), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), + }, + [187] = { + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(441), + [sym_attributed_statement] = STATE(442), + [sym_labeled_statement] = STATE(443), + [sym_expression_statement] = STATE(444), + [sym_if_statement] = STATE(445), + [sym_switch_statement] = STATE(446), + [sym_case_statement] = STATE(449), + [sym_while_statement] = STATE(450), + [sym_do_statement] = STATE(452), + [sym_for_statement] = STATE(453), + [sym_return_statement] = STATE(455), + [sym_break_statement] = STATE(456), + [sym_continue_statement] = STATE(458), + [sym_goto_statement] = STATE(460), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(461), + [sym_co_return_statement] = STATE(462), + [sym_co_yield_statement] = STATE(466), + [sym_throw_statement] = STATE(467), + [sym_try_statement] = STATE(468), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55715,2449 +58265,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [168] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(787), - [sym_attributed_statement] = STATE(787), - [sym_labeled_statement] = STATE(787), - [sym_expression_statement] = STATE(787), - [sym_if_statement] = STATE(787), - [sym_switch_statement] = STATE(787), - [sym_case_statement] = STATE(787), - [sym_while_statement] = STATE(787), - [sym_do_statement] = STATE(787), - [sym_for_statement] = STATE(787), - [sym_return_statement] = STATE(787), - [sym_break_statement] = STATE(787), - [sym_continue_statement] = STATE(787), - [sym_goto_statement] = STATE(787), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(787), - [sym_co_return_statement] = STATE(787), - [sym_co_yield_statement] = STATE(787), - [sym_throw_statement] = STATE(787), - [sym_try_statement] = STATE(787), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [169] = { - [sym_attribute_declaration] = STATE(178), - [sym_compound_statement] = STATE(901), - [sym_attributed_statement] = STATE(901), - [sym_labeled_statement] = STATE(901), - [sym_expression_statement] = STATE(901), - [sym_if_statement] = STATE(901), - [sym_switch_statement] = STATE(901), - [sym_case_statement] = STATE(901), - [sym_while_statement] = STATE(901), - [sym_do_statement] = STATE(901), - [sym_for_statement] = STATE(901), - [sym_return_statement] = STATE(901), - [sym_break_statement] = STATE(901), - [sym_continue_statement] = STATE(901), - [sym_goto_statement] = STATE(901), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(901), - [sym_co_return_statement] = STATE(901), - [sym_co_yield_statement] = STATE(901), - [sym_throw_statement] = STATE(901), - [sym_try_statement] = STATE(901), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(1853), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [170] = { - [sym_attribute_declaration] = STATE(142), - [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(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [171] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1135), - [sym_attributed_statement] = STATE(1135), - [sym_labeled_statement] = STATE(1135), - [sym_expression_statement] = STATE(1135), - [sym_if_statement] = STATE(1135), - [sym_switch_statement] = STATE(1135), - [sym_case_statement] = STATE(1135), - [sym_while_statement] = STATE(1135), - [sym_do_statement] = STATE(1135), - [sym_for_statement] = STATE(1135), - [sym_return_statement] = STATE(1135), - [sym_break_statement] = STATE(1135), - [sym_continue_statement] = STATE(1135), - [sym_goto_statement] = STATE(1135), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1135), - [sym_co_return_statement] = STATE(1135), - [sym_co_yield_statement] = STATE(1135), - [sym_throw_statement] = STATE(1135), - [sym_try_statement] = STATE(1135), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [172] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(775), - [sym_attributed_statement] = STATE(775), - [sym_labeled_statement] = STATE(775), - [sym_expression_statement] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_switch_statement] = STATE(775), - [sym_case_statement] = STATE(775), - [sym_while_statement] = STATE(775), - [sym_do_statement] = STATE(775), - [sym_for_statement] = STATE(775), - [sym_return_statement] = STATE(775), - [sym_break_statement] = STATE(775), - [sym_continue_statement] = STATE(775), - [sym_goto_statement] = STATE(775), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(775), - [sym_co_return_statement] = STATE(775), - [sym_co_yield_statement] = STATE(775), - [sym_throw_statement] = STATE(775), - [sym_try_statement] = STATE(775), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [173] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(6334), - [sym_attributed_statement] = STATE(6334), - [sym_labeled_statement] = STATE(6334), - [sym_expression_statement] = STATE(6334), - [sym_if_statement] = STATE(6334), - [sym_switch_statement] = STATE(6334), - [sym_case_statement] = STATE(6334), - [sym_while_statement] = STATE(6334), - [sym_do_statement] = STATE(6334), - [sym_for_statement] = STATE(6334), - [sym_return_statement] = STATE(6334), - [sym_break_statement] = STATE(6334), - [sym_continue_statement] = STATE(6334), - [sym_goto_statement] = STATE(6334), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(6334), - [sym_co_return_statement] = STATE(6334), - [sym_co_yield_statement] = STATE(6334), - [sym_throw_statement] = STATE(6334), - [sym_try_statement] = STATE(6334), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [174] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(751), - [sym_attributed_statement] = STATE(751), - [sym_labeled_statement] = STATE(751), - [sym_expression_statement] = STATE(751), - [sym_if_statement] = STATE(751), - [sym_switch_statement] = STATE(751), - [sym_case_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_do_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_return_statement] = STATE(751), - [sym_break_statement] = STATE(751), - [sym_continue_statement] = STATE(751), - [sym_goto_statement] = STATE(751), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(751), - [sym_co_return_statement] = STATE(751), - [sym_co_yield_statement] = STATE(751), - [sym_throw_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [175] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(562), - [sym_attributed_statement] = STATE(562), - [sym_labeled_statement] = STATE(562), - [sym_expression_statement] = STATE(562), - [sym_if_statement] = STATE(562), - [sym_switch_statement] = STATE(562), - [sym_case_statement] = STATE(562), - [sym_while_statement] = STATE(562), - [sym_do_statement] = STATE(562), - [sym_for_statement] = STATE(562), - [sym_return_statement] = STATE(562), - [sym_break_statement] = STATE(562), - [sym_continue_statement] = STATE(562), - [sym_goto_statement] = STATE(562), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(562), - [sym_co_return_statement] = STATE(562), - [sym_co_yield_statement] = STATE(562), - [sym_throw_statement] = STATE(562), - [sym_try_statement] = STATE(562), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [176] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(774), - [sym_attributed_statement] = STATE(773), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(771), - [sym_if_statement] = STATE(770), - [sym_switch_statement] = STATE(769), - [sym_case_statement] = STATE(768), - [sym_while_statement] = STATE(767), - [sym_do_statement] = STATE(765), - [sym_for_statement] = STATE(764), - [sym_return_statement] = STATE(763), - [sym_break_statement] = STATE(762), - [sym_continue_statement] = STATE(761), - [sym_goto_statement] = STATE(760), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(757), - [sym_co_return_statement] = STATE(756), - [sym_co_yield_statement] = STATE(754), - [sym_throw_statement] = STATE(753), - [sym_try_statement] = STATE(750), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [177] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(749), - [sym_attributed_statement] = STATE(748), - [sym_labeled_statement] = STATE(747), - [sym_expression_statement] = STATE(746), - [sym_if_statement] = STATE(744), - [sym_switch_statement] = STATE(743), - [sym_case_statement] = STATE(742), - [sym_while_statement] = STATE(741), - [sym_do_statement] = STATE(740), - [sym_for_statement] = STATE(739), - [sym_return_statement] = STATE(738), - [sym_break_statement] = STATE(737), - [sym_continue_statement] = STATE(736), - [sym_goto_statement] = STATE(734), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(733), - [sym_co_return_statement] = STATE(732), - [sym_co_yield_statement] = STATE(731), - [sym_throw_statement] = STATE(730), - [sym_try_statement] = STATE(729), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [178] = { - [sym_attribute_declaration] = STATE(178), - [sym_compound_statement] = STATE(901), - [sym_attributed_statement] = STATE(901), - [sym_labeled_statement] = STATE(901), - [sym_expression_statement] = STATE(901), - [sym_if_statement] = STATE(901), - [sym_switch_statement] = STATE(901), - [sym_case_statement] = STATE(901), - [sym_while_statement] = STATE(901), - [sym_do_statement] = STATE(901), - [sym_for_statement] = STATE(901), - [sym_return_statement] = STATE(901), - [sym_break_statement] = STATE(901), - [sym_continue_statement] = STATE(901), - [sym_goto_statement] = STATE(901), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(901), - [sym_co_return_statement] = STATE(901), - [sym_co_yield_statement] = STATE(901), - [sym_throw_statement] = STATE(901), - [sym_try_statement] = STATE(901), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(1861), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1888), - [sym_primitive_type] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_switch] = ACTIONS(1897), - [anon_sym_case] = ACTIONS(1900), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1906), - [anon_sym_do] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_goto] = ACTIONS(1924), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1927), - [anon_sym_sizeof] = ACTIONS(1930), - [sym_number_literal] = ACTIONS(1933), - [anon_sym_L_SQUOTE] = ACTIONS(1936), - [anon_sym_u_SQUOTE] = ACTIONS(1936), - [anon_sym_U_SQUOTE] = ACTIONS(1936), - [anon_sym_u8_SQUOTE] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_L_DQUOTE] = ACTIONS(1939), - [anon_sym_u_DQUOTE] = ACTIONS(1939), - [anon_sym_U_DQUOTE] = ACTIONS(1939), - [anon_sym_u8_DQUOTE] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [sym_null] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1948), - [anon_sym_delete] = ACTIONS(1951), - [anon_sym_throw] = ACTIONS(1954), - [anon_sym_co_return] = ACTIONS(1957), - [anon_sym_co_yield] = ACTIONS(1960), - [anon_sym_R_DQUOTE] = ACTIONS(1963), - [anon_sym_LR_DQUOTE] = ACTIONS(1963), - [anon_sym_uR_DQUOTE] = ACTIONS(1963), - [anon_sym_UR_DQUOTE] = ACTIONS(1963), - [anon_sym_u8R_DQUOTE] = ACTIONS(1963), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_requires] = ACTIONS(1972), - [sym_this] = ACTIONS(1942), - [sym_nullptr] = ACTIONS(1942), - }, - [179] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(728), - [sym_attributed_statement] = STATE(728), - [sym_labeled_statement] = STATE(728), - [sym_expression_statement] = STATE(728), - [sym_if_statement] = STATE(728), - [sym_switch_statement] = STATE(728), - [sym_case_statement] = STATE(728), - [sym_while_statement] = STATE(728), - [sym_do_statement] = STATE(728), - [sym_for_statement] = STATE(728), - [sym_return_statement] = STATE(728), - [sym_break_statement] = STATE(728), - [sym_continue_statement] = STATE(728), - [sym_goto_statement] = STATE(728), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(728), - [sym_co_return_statement] = STATE(728), - [sym_co_yield_statement] = STATE(728), - [sym_throw_statement] = STATE(728), - [sym_try_statement] = STATE(728), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [180] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(727), - [sym_attributed_statement] = STATE(727), - [sym_labeled_statement] = STATE(727), - [sym_expression_statement] = STATE(727), - [sym_if_statement] = STATE(727), - [sym_switch_statement] = STATE(727), - [sym_case_statement] = STATE(727), - [sym_while_statement] = STATE(727), - [sym_do_statement] = STATE(727), - [sym_for_statement] = STATE(727), - [sym_return_statement] = STATE(727), - [sym_break_statement] = STATE(727), - [sym_continue_statement] = STATE(727), - [sym_goto_statement] = STATE(727), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(727), - [sym_co_return_statement] = STATE(727), - [sym_co_yield_statement] = STATE(727), - [sym_throw_statement] = STATE(727), - [sym_try_statement] = STATE(727), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [181] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(6376), - [sym_attributed_statement] = STATE(6376), - [sym_labeled_statement] = STATE(6376), - [sym_expression_statement] = STATE(6376), - [sym_if_statement] = STATE(6376), - [sym_switch_statement] = STATE(6376), - [sym_case_statement] = STATE(6376), - [sym_while_statement] = STATE(6376), - [sym_do_statement] = STATE(6376), - [sym_for_statement] = STATE(6376), - [sym_return_statement] = STATE(6376), - [sym_break_statement] = STATE(6376), - [sym_continue_statement] = STATE(6376), - [sym_goto_statement] = STATE(6376), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(6376), - [sym_co_return_statement] = STATE(6376), - [sym_co_yield_statement] = STATE(6376), - [sym_throw_statement] = STATE(6376), - [sym_try_statement] = STATE(6376), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [182] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(726), - [sym_attributed_statement] = STATE(726), - [sym_labeled_statement] = STATE(726), - [sym_expression_statement] = STATE(726), - [sym_if_statement] = STATE(726), - [sym_switch_statement] = STATE(726), - [sym_case_statement] = STATE(726), - [sym_while_statement] = STATE(726), - [sym_do_statement] = STATE(726), - [sym_for_statement] = STATE(726), - [sym_return_statement] = STATE(726), - [sym_break_statement] = STATE(726), - [sym_continue_statement] = STATE(726), - [sym_goto_statement] = STATE(726), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(726), - [sym_co_return_statement] = STATE(726), - [sym_co_yield_statement] = STATE(726), - [sym_throw_statement] = STATE(726), - [sym_try_statement] = STATE(726), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [183] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(725), - [sym_attributed_statement] = STATE(546), - [sym_labeled_statement] = STATE(723), - [sym_expression_statement] = STATE(722), - [sym_if_statement] = STATE(715), - [sym_switch_statement] = STATE(817), - [sym_case_statement] = STATE(668), - [sym_while_statement] = STATE(720), - [sym_do_statement] = STATE(719), - [sym_for_statement] = STATE(718), - [sym_return_statement] = STATE(717), - [sym_break_statement] = STATE(716), - [sym_continue_statement] = STATE(714), - [sym_goto_statement] = STATE(713), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(712), - [sym_co_return_statement] = STATE(711), - [sym_co_yield_statement] = STATE(710), - [sym_throw_statement] = STATE(709), - [sym_try_statement] = STATE(708), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [184] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(707), - [sym_attributed_statement] = STATE(706), - [sym_labeled_statement] = STATE(705), - [sym_expression_statement] = STATE(704), - [sym_if_statement] = STATE(703), - [sym_switch_statement] = STATE(702), - [sym_case_statement] = STATE(701), - [sym_while_statement] = STATE(700), - [sym_do_statement] = STATE(699), - [sym_for_statement] = STATE(698), - [sym_return_statement] = STATE(697), - [sym_break_statement] = STATE(696), - [sym_continue_statement] = STATE(695), - [sym_goto_statement] = STATE(694), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(693), - [sym_co_return_statement] = STATE(691), - [sym_co_yield_statement] = STATE(690), - [sym_throw_statement] = STATE(689), - [sym_try_statement] = STATE(688), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [185] = { - [sym_attribute_declaration] = STATE(203), - [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(3748), - [sym_comma_expression] = STATE(6914), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [186] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(828), - [sym_attributed_statement] = STATE(828), - [sym_labeled_statement] = STATE(828), - [sym_expression_statement] = STATE(828), - [sym_if_statement] = STATE(828), - [sym_switch_statement] = STATE(828), - [sym_case_statement] = STATE(828), - [sym_while_statement] = STATE(828), - [sym_do_statement] = STATE(828), - [sym_for_statement] = STATE(828), - [sym_return_statement] = STATE(828), - [sym_break_statement] = STATE(828), - [sym_continue_statement] = STATE(828), - [sym_goto_statement] = STATE(828), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(828), - [sym_co_return_statement] = STATE(828), - [sym_co_yield_statement] = STATE(828), - [sym_throw_statement] = STATE(828), - [sym_try_statement] = STATE(828), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [187] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(786), - [sym_attributed_statement] = STATE(786), - [sym_labeled_statement] = STATE(786), - [sym_expression_statement] = STATE(786), - [sym_if_statement] = STATE(786), - [sym_switch_statement] = STATE(786), - [sym_case_statement] = STATE(786), - [sym_while_statement] = STATE(786), - [sym_do_statement] = STATE(786), - [sym_for_statement] = STATE(786), - [sym_return_statement] = STATE(786), - [sym_break_statement] = STATE(786), - [sym_continue_statement] = STATE(786), - [sym_goto_statement] = STATE(786), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(786), - [sym_co_return_statement] = STATE(786), - [sym_co_yield_statement] = STATE(786), - [sym_throw_statement] = STATE(786), - [sym_try_statement] = STATE(786), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, [188] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(785), - [sym_attributed_statement] = STATE(785), - [sym_labeled_statement] = STATE(785), - [sym_expression_statement] = STATE(785), - [sym_if_statement] = STATE(785), - [sym_switch_statement] = STATE(785), - [sym_case_statement] = STATE(785), - [sym_while_statement] = STATE(785), - [sym_do_statement] = STATE(785), - [sym_for_statement] = STATE(785), - [sym_return_statement] = STATE(785), - [sym_break_statement] = STATE(785), - [sym_continue_statement] = STATE(785), - [sym_goto_statement] = STATE(785), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(422), + [sym_attributed_statement] = STATE(423), + [sym_labeled_statement] = STATE(424), + [sym_expression_statement] = STATE(425), + [sym_if_statement] = STATE(426), + [sym_switch_statement] = STATE(427), + [sym_case_statement] = STATE(428), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(430), + [sym_for_statement] = STATE(431), + [sym_return_statement] = STATE(432), + [sym_break_statement] = STATE(433), + [sym_continue_statement] = STATE(434), + [sym_goto_statement] = STATE(435), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(785), - [sym_co_return_statement] = STATE(785), - [sym_co_yield_statement] = STATE(785), - [sym_throw_statement] = STATE(785), - [sym_try_statement] = STATE(785), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(436), + [sym_co_return_statement] = STATE(437), + [sym_co_yield_statement] = STATE(438), + [sym_throw_statement] = STATE(439), + [sym_try_statement] = STATE(440), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -58169,11 +58319,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58181,23 +58331,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -58219,11 +58369,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -58236,48 +58386,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [189] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(792), - [sym_attributed_statement] = STATE(792), - [sym_labeled_statement] = STATE(792), - [sym_expression_statement] = STATE(792), - [sym_if_statement] = STATE(792), - [sym_switch_statement] = STATE(792), - [sym_case_statement] = STATE(792), - [sym_while_statement] = STATE(792), - [sym_do_statement] = STATE(792), - [sym_for_statement] = STATE(792), - [sym_return_statement] = STATE(792), - [sym_break_statement] = STATE(792), - [sym_continue_statement] = STATE(792), - [sym_goto_statement] = STATE(792), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(421), + [sym_attributed_statement] = STATE(421), + [sym_labeled_statement] = STATE(421), + [sym_expression_statement] = STATE(421), + [sym_if_statement] = STATE(421), + [sym_switch_statement] = STATE(421), + [sym_case_statement] = STATE(421), + [sym_while_statement] = STATE(421), + [sym_do_statement] = STATE(421), + [sym_for_statement] = STATE(421), + [sym_return_statement] = STATE(421), + [sym_break_statement] = STATE(421), + [sym_continue_statement] = STATE(421), + [sym_goto_statement] = STATE(421), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(792), - [sym_co_return_statement] = STATE(792), - [sym_co_yield_statement] = STATE(792), - [sym_throw_statement] = STATE(792), - [sym_try_statement] = STATE(792), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(421), + [sym_co_return_statement] = STATE(421), + [sym_co_yield_statement] = STATE(421), + [sym_throw_statement] = STATE(421), + [sym_try_statement] = STATE(421), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -58289,11 +58439,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58301,23 +58451,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -58339,11 +58489,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -58356,48 +58506,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [190] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(791), - [sym_attributed_statement] = STATE(791), - [sym_labeled_statement] = STATE(791), - [sym_expression_statement] = STATE(791), - [sym_if_statement] = STATE(791), - [sym_switch_statement] = STATE(791), - [sym_case_statement] = STATE(791), - [sym_while_statement] = STATE(791), - [sym_do_statement] = STATE(791), - [sym_for_statement] = STATE(791), - [sym_return_statement] = STATE(791), - [sym_break_statement] = STATE(791), - [sym_continue_statement] = STATE(791), - [sym_goto_statement] = STATE(791), - [sym__expression] = STATE(3668), + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(900), + [sym_attributed_statement] = STATE(900), + [sym_labeled_statement] = STATE(900), + [sym_expression_statement] = STATE(900), + [sym_if_statement] = STATE(900), + [sym_switch_statement] = STATE(900), + [sym_case_statement] = STATE(900), + [sym_while_statement] = STATE(900), + [sym_do_statement] = STATE(900), + [sym_for_statement] = STATE(900), + [sym_return_statement] = STATE(900), + [sym_break_statement] = STATE(900), + [sym_continue_statement] = STATE(900), + [sym_goto_statement] = STATE(900), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(791), - [sym_co_return_statement] = STATE(791), - [sym_co_yield_statement] = STATE(791), - [sym_throw_statement] = STATE(791), - [sym_try_statement] = STATE(791), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(900), + [sym_co_return_statement] = STATE(900), + [sym_co_yield_statement] = STATE(900), + [sym_throw_statement] = STATE(900), + [sym_try_statement] = STATE(900), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -58409,11 +58559,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58427,13 +58577,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(2007), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(2011), [anon_sym_return] = ACTIONS(85), [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), @@ -58476,48 +58626,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [191] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(788), - [sym_attributed_statement] = STATE(788), - [sym_labeled_statement] = STATE(788), - [sym_expression_statement] = STATE(788), - [sym_if_statement] = STATE(788), - [sym_switch_statement] = STATE(788), - [sym_case_statement] = STATE(788), - [sym_while_statement] = STATE(788), - [sym_do_statement] = STATE(788), - [sym_for_statement] = STATE(788), - [sym_return_statement] = STATE(788), - [sym_break_statement] = STATE(788), - [sym_continue_statement] = STATE(788), - [sym_goto_statement] = STATE(788), - [sym__expression] = STATE(3668), + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(853), + [sym_attributed_statement] = STATE(853), + [sym_labeled_statement] = STATE(853), + [sym_expression_statement] = STATE(853), + [sym_if_statement] = STATE(853), + [sym_switch_statement] = STATE(853), + [sym_case_statement] = STATE(853), + [sym_while_statement] = STATE(853), + [sym_do_statement] = STATE(853), + [sym_for_statement] = STATE(853), + [sym_return_statement] = STATE(853), + [sym_break_statement] = STATE(853), + [sym_continue_statement] = STATE(853), + [sym_goto_statement] = STATE(853), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(788), - [sym_co_return_statement] = STATE(788), - [sym_co_yield_statement] = STATE(788), - [sym_throw_statement] = STATE(788), - [sym_try_statement] = STATE(788), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(853), + [sym_co_return_statement] = STATE(853), + [sym_co_yield_statement] = STATE(853), + [sym_throw_statement] = STATE(853), + [sym_try_statement] = STATE(853), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -58529,11 +58679,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58547,13 +58697,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(2007), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(2011), [anon_sym_return] = ACTIONS(85), [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), @@ -58596,288 +58746,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [192] = { - [sym_attribute_declaration] = STATE(279), - [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(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym_preproc_def] = STATE(198), + [sym_preproc_function_def] = STATE(198), + [sym_preproc_call] = STATE(198), + [sym_preproc_if_in_field_declaration_list] = STATE(198), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(198), + [sym_type_definition] = STATE(198), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(198), + [sym_field_declaration] = STATE(198), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(198), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(198), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(198), + [sym_operator_cast_declaration] = STATE(198), + [sym_constructor_or_destructor_definition] = STATE(198), + [sym_constructor_or_destructor_declaration] = STATE(198), + [sym_friend_declaration] = STATE(198), + [sym_access_specifier] = STATE(198), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(198), + [sym_alias_declaration] = STATE(198), + [sym_static_assert_declaration] = STATE(198), + [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(198), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), }, [193] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(666), - [sym_attributed_statement] = STATE(666), - [sym_labeled_statement] = STATE(666), - [sym_expression_statement] = STATE(666), - [sym_if_statement] = STATE(666), - [sym_switch_statement] = STATE(666), - [sym_case_statement] = STATE(666), - [sym_while_statement] = STATE(666), - [sym_do_statement] = STATE(666), - [sym_for_statement] = STATE(666), - [sym_return_statement] = STATE(666), - [sym_break_statement] = STATE(666), - [sym_continue_statement] = STATE(666), - [sym_goto_statement] = STATE(666), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(666), - [sym_co_return_statement] = STATE(666), - [sym_co_yield_statement] = STATE(666), - [sym_throw_statement] = STATE(666), - [sym_try_statement] = STATE(666), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [194] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(783), - [sym_attributed_statement] = STATE(783), - [sym_labeled_statement] = STATE(783), - [sym_expression_statement] = STATE(783), - [sym_if_statement] = STATE(783), - [sym_switch_statement] = STATE(783), - [sym_case_statement] = STATE(783), - [sym_while_statement] = STATE(783), - [sym_do_statement] = STATE(783), - [sym_for_statement] = STATE(783), - [sym_return_statement] = STATE(783), - [sym_break_statement] = STATE(783), - [sym_continue_statement] = STATE(783), - [sym_goto_statement] = STATE(783), - [sym__expression] = STATE(3668), + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(6334), + [sym_attributed_statement] = STATE(6334), + [sym_labeled_statement] = STATE(6334), + [sym_expression_statement] = STATE(6334), + [sym_if_statement] = STATE(6334), + [sym_switch_statement] = STATE(6334), + [sym_case_statement] = STATE(6334), + [sym_while_statement] = STATE(6334), + [sym_do_statement] = STATE(6334), + [sym_for_statement] = STATE(6334), + [sym_return_statement] = STATE(6334), + [sym_break_statement] = STATE(6334), + [sym_continue_statement] = STATE(6334), + [sym_goto_statement] = STATE(6334), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(783), - [sym_co_return_statement] = STATE(783), - [sym_co_yield_statement] = STATE(783), - [sym_throw_statement] = STATE(783), - [sym_try_statement] = STATE(783), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(6334), + [sym_co_return_statement] = STATE(6334), + [sym_co_yield_statement] = STATE(6334), + [sym_throw_statement] = STATE(6334), + [sym_try_statement] = STATE(6334), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -58889,11 +58919,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58907,13 +58937,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(2007), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(2011), [anon_sym_return] = ACTIONS(85), [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), @@ -58955,49 +58985,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, + [194] = { + [sym_preproc_def] = STATE(184), + [sym_preproc_function_def] = STATE(184), + [sym_preproc_call] = STATE(184), + [sym_preproc_if_in_field_declaration_list] = STATE(184), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(184), + [sym_type_definition] = STATE(184), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(184), + [sym_field_declaration] = STATE(184), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(184), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(184), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(184), + [sym_operator_cast_declaration] = STATE(184), + [sym_constructor_or_destructor_definition] = STATE(184), + [sym_constructor_or_destructor_declaration] = STATE(184), + [sym_friend_declaration] = STATE(184), + [sym_access_specifier] = STATE(184), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(184), + [sym_alias_declaration] = STATE(184), + [sym_static_assert_declaration] = STATE(184), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(184), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1843), + [aux_sym_preproc_if_token1] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), + [sym_preproc_directive] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_static_assert] = ACTIONS(1863), + }, [195] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(664), - [sym_attributed_statement] = STATE(664), - [sym_labeled_statement] = STATE(664), - [sym_expression_statement] = STATE(664), - [sym_if_statement] = STATE(664), - [sym_switch_statement] = STATE(664), - [sym_case_statement] = STATE(664), - [sym_while_statement] = STATE(664), - [sym_do_statement] = STATE(664), - [sym_for_statement] = STATE(664), - [sym_return_statement] = STATE(664), - [sym_break_statement] = STATE(664), - [sym_continue_statement] = STATE(664), - [sym_goto_statement] = STATE(664), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1232), + [sym_attributed_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(664), - [sym_co_return_statement] = STATE(664), - [sym_co_yield_statement] = STATE(664), - [sym_throw_statement] = STATE(664), - [sym_try_statement] = STATE(664), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(1232), + [sym_co_return_statement] = STATE(1232), + [sym_co_yield_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -59009,11 +59159,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1839), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59021,23 +59171,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(1308), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(1312), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -59059,11 +59209,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(1332), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -59076,48 +59226,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [196] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(782), - [sym_attributed_statement] = STATE(782), - [sym_labeled_statement] = STATE(782), - [sym_expression_statement] = STATE(782), - [sym_if_statement] = STATE(782), - [sym_switch_statement] = STATE(782), - [sym_case_statement] = STATE(782), - [sym_while_statement] = STATE(782), - [sym_do_statement] = STATE(782), - [sym_for_statement] = STATE(782), - [sym_return_statement] = STATE(782), - [sym_break_statement] = STATE(782), - [sym_continue_statement] = STATE(782), - [sym_goto_statement] = STATE(782), - [sym__expression] = STATE(3668), + [sym_attribute_declaration] = STATE(185), + [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(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(782), - [sym_co_return_statement] = STATE(782), - [sym_co_yield_statement] = STATE(782), - [sym_throw_statement] = STATE(782), - [sym_try_statement] = STATE(782), - [sym_raw_string_literal] = STATE(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -59129,11 +59279,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(2005), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59147,13 +59297,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(2007), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(2011), [anon_sym_return] = ACTIONS(85), [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), @@ -59196,48 +59346,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [197] = { - [sym_attribute_declaration] = STATE(142), - [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(3668), - [sym_comma_expression] = STATE(6976), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1135), + [sym_attributed_statement] = STATE(1135), + [sym_labeled_statement] = STATE(1135), + [sym_expression_statement] = STATE(1135), + [sym_if_statement] = STATE(1135), + [sym_switch_statement] = STATE(1135), + [sym_case_statement] = STATE(1135), + [sym_while_statement] = STATE(1135), + [sym_do_statement] = STATE(1135), + [sym_for_statement] = STATE(1135), + [sym_return_statement] = STATE(1135), + [sym_break_statement] = STATE(1135), + [sym_continue_statement] = STATE(1135), + [sym_goto_statement] = STATE(1135), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [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(2568), + [sym_for_range_loop] = STATE(1135), + [sym_co_return_statement] = STATE(1135), + [sym_co_yield_statement] = STATE(1135), + [sym_throw_statement] = STATE(1135), + [sym_try_statement] = STATE(1135), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -59249,11 +59399,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [198] = { + [sym_preproc_def] = STATE(198), + [sym_preproc_function_def] = STATE(198), + [sym_preproc_call] = STATE(198), + [sym_preproc_if_in_field_declaration_list] = STATE(198), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(198), + [sym_type_definition] = STATE(198), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4420), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(198), + [sym_field_declaration] = STATE(198), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(198), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(198), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(198), + [sym_operator_cast_declaration] = STATE(198), + [sym_constructor_or_destructor_definition] = STATE(198), + [sym_constructor_or_destructor_declaration] = STATE(198), + [sym_friend_declaration] = STATE(198), + [sym_access_specifier] = STATE(198), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(198), + [sym_alias_declaration] = STATE(198), + [sym_static_assert_declaration] = STATE(198), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(198), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1725), + [aux_sym_preproc_def_token1] = ACTIONS(2085), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2091), + [sym_preproc_directive] = ACTIONS(2094), + [anon_sym_LPAREN2] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_STAR] = ACTIONS(1748), + [anon_sym_AMP_AMP] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_typedef] = ACTIONS(2097), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym___attribute__] = ACTIONS(1763), + [anon_sym_COLON_COLON] = ACTIONS(1766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1769), + [anon_sym___declspec] = ACTIONS(1772), + [anon_sym___based] = ACTIONS(1775), + [anon_sym_RBRACE] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_inline] = ACTIONS(1760), + [anon_sym_thread_local] = ACTIONS(1760), + [anon_sym_input] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_volatile] = ACTIONS(1781), + [anon_sym_restrict] = ACTIONS(1781), + [anon_sym__Atomic] = ACTIONS(1781), + [anon_sym_mutable] = ACTIONS(1781), + [anon_sym_constexpr] = ACTIONS(1781), + [anon_sym_constinit] = ACTIONS(1781), + [anon_sym_consteval] = ACTIONS(1781), + [anon_sym_signed] = ACTIONS(1784), + [anon_sym_unsigned] = ACTIONS(1784), + [anon_sym_long] = ACTIONS(1784), + [anon_sym_short] = ACTIONS(1784), + [sym_primitive_type] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1790), + [anon_sym_class] = ACTIONS(1793), + [anon_sym_struct] = ACTIONS(1796), + [anon_sym_union] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1802), + [anon_sym_decltype] = ACTIONS(1805), + [anon_sym_virtual] = ACTIONS(1808), + [anon_sym_explicit] = ACTIONS(1811), + [anon_sym_public] = ACTIONS(2102), + [anon_sym_private] = ACTIONS(2102), + [anon_sym_protected] = ACTIONS(2102), + [anon_sym_typename] = ACTIONS(1817), + [anon_sym_template] = ACTIONS(2105), + [anon_sym_operator] = ACTIONS(1823), + [anon_sym_friend] = ACTIONS(2108), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_static_assert] = ACTIONS(2114), + }, + [199] = { + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(723), + [sym_attributed_statement] = STATE(723), + [sym_labeled_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_if_statement] = STATE(723), + [sym_switch_statement] = STATE(723), + [sym_case_statement] = STATE(723), + [sym_while_statement] = STATE(723), + [sym_do_statement] = STATE(723), + [sym_for_statement] = STATE(723), + [sym_return_statement] = STATE(723), + [sym_break_statement] = STATE(723), + [sym_continue_statement] = STATE(723), + [sym_goto_statement] = STATE(723), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(723), + [sym_co_return_statement] = STATE(723), + [sym_co_yield_statement] = STATE(723), + [sym_throw_statement] = STATE(723), + [sym_try_statement] = STATE(723), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59315,289 +59705,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [198] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(781), - [sym_attributed_statement] = STATE(781), - [sym_labeled_statement] = STATE(781), - [sym_expression_statement] = STATE(781), - [sym_if_statement] = STATE(781), - [sym_switch_statement] = STATE(781), - [sym_case_statement] = STATE(781), - [sym_while_statement] = STATE(781), - [sym_do_statement] = STATE(781), - [sym_for_statement] = STATE(781), - [sym_return_statement] = STATE(781), - [sym_break_statement] = STATE(781), - [sym_continue_statement] = STATE(781), - [sym_goto_statement] = STATE(781), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(781), - [sym_co_return_statement] = STATE(781), - [sym_co_yield_statement] = STATE(781), - [sym_throw_statement] = STATE(781), - [sym_try_statement] = STATE(781), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [199] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(780), - [sym_attributed_statement] = STATE(780), - [sym_labeled_statement] = STATE(780), - [sym_expression_statement] = STATE(780), - [sym_if_statement] = STATE(780), - [sym_switch_statement] = STATE(780), - [sym_case_statement] = STATE(780), - [sym_while_statement] = STATE(780), - [sym_do_statement] = STATE(780), - [sym_for_statement] = STATE(780), - [sym_return_statement] = STATE(780), - [sym_break_statement] = STATE(780), - [sym_continue_statement] = STATE(780), - [sym_goto_statement] = STATE(780), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(780), - [sym_co_return_statement] = STATE(780), - [sym_co_yield_statement] = STATE(780), - [sym_throw_statement] = STATE(780), - [sym_try_statement] = STATE(780), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, [200] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(660), - [sym_attributed_statement] = STATE(660), - [sym_labeled_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_if_statement] = STATE(660), - [sym_switch_statement] = STATE(660), - [sym_case_statement] = STATE(660), - [sym_while_statement] = STATE(660), - [sym_do_statement] = STATE(660), - [sym_for_statement] = STATE(660), - [sym_return_statement] = STATE(660), - [sym_break_statement] = STATE(660), - [sym_continue_statement] = STATE(660), - [sym_goto_statement] = STATE(660), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_attribute_declaration] = STATE(155), + [sym_compound_statement] = STATE(1237), + [sym_attributed_statement] = STATE(1237), + [sym_labeled_statement] = STATE(1237), + [sym_expression_statement] = STATE(1237), + [sym_if_statement] = STATE(1237), + [sym_switch_statement] = STATE(1237), + [sym_case_statement] = STATE(1237), + [sym_while_statement] = STATE(1237), + [sym_do_statement] = STATE(1237), + [sym_for_statement] = STATE(1237), + [sym_return_statement] = STATE(1237), + [sym_break_statement] = STATE(1237), + [sym_continue_statement] = STATE(1237), + [sym_goto_statement] = STATE(1237), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(660), - [sym_co_return_statement] = STATE(660), - [sym_co_yield_statement] = STATE(660), - [sym_throw_statement] = STATE(660), - [sym_try_statement] = STATE(660), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(1237), + [sym_co_return_statement] = STATE(1237), + [sym_co_yield_statement] = STATE(1237), + [sym_throw_statement] = STATE(1237), + [sym_try_statement] = STATE(1237), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -59609,11 +59759,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1839), + [aux_sym_attributed_declarator_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(1867), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59621,23 +59771,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(1308), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(1312), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -59659,11 +59809,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(1332), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -59676,48 +59826,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [201] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(751), - [sym_attributed_statement] = STATE(751), - [sym_labeled_statement] = STATE(751), - [sym_expression_statement] = STATE(751), - [sym_if_statement] = STATE(751), - [sym_switch_statement] = STATE(751), - [sym_case_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_do_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_return_statement] = STATE(751), - [sym_break_statement] = STATE(751), - [sym_continue_statement] = STATE(751), - [sym_goto_statement] = STATE(751), - [sym__expression] = STATE(3668), + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(824), + [sym_attributed_statement] = STATE(824), + [sym_labeled_statement] = STATE(824), + [sym_expression_statement] = STATE(824), + [sym_if_statement] = STATE(824), + [sym_switch_statement] = STATE(824), + [sym_case_statement] = STATE(824), + [sym_while_statement] = STATE(824), + [sym_do_statement] = STATE(824), + [sym_for_statement] = STATE(824), + [sym_return_statement] = STATE(824), + [sym_break_statement] = STATE(824), + [sym_continue_statement] = STATE(824), + [sym_goto_statement] = STATE(824), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(751), - [sym_co_return_statement] = STATE(751), - [sym_co_yield_statement] = STATE(751), - [sym_throw_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(824), + [sym_co_return_statement] = STATE(824), + [sym_co_yield_statement] = STATE(824), + [sym_throw_statement] = STATE(824), + [sym_try_statement] = STATE(824), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -59729,11 +59879,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59796,48 +59946,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [202] = { - [sym_attribute_declaration] = STATE(169), - [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(3668), + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(6692), + [sym_attributed_statement] = STATE(6692), + [sym_labeled_statement] = STATE(6692), + [sym_expression_statement] = STATE(6692), + [sym_if_statement] = STATE(6692), + [sym_switch_statement] = STATE(6692), + [sym_case_statement] = STATE(6692), + [sym_while_statement] = STATE(6692), + [sym_do_statement] = STATE(6692), + [sym_for_statement] = STATE(6692), + [sym_return_statement] = STATE(6692), + [sym_break_statement] = STATE(6692), + [sym_continue_statement] = STATE(6692), + [sym_goto_statement] = STATE(6692), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [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(2568), + [sym_for_range_loop] = STATE(6692), + [sym_co_return_statement] = STATE(6692), + [sym_co_yield_statement] = STATE(6692), + [sym_throw_statement] = STATE(6692), + [sym_try_statement] = STATE(6692), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -59849,11 +59999,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59867,13 +60017,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(2007), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(2011), [anon_sym_return] = ACTIONS(85), [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), @@ -59916,168 +60066,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [203] = { - [sym_attribute_declaration] = STATE(203), - [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(3748), - [sym_comma_expression] = STATE(6914), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym_preproc_def] = STATE(212), + [sym_preproc_function_def] = STATE(212), + [sym_preproc_call] = STATE(212), + [sym_preproc_if_in_field_declaration_list] = STATE(212), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(212), + [sym_type_definition] = STATE(212), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4409), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4982), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(212), + [sym_field_declaration] = STATE(212), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1936), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(212), + [sym_operator_cast] = STATE(5459), + [sym_inline_method_definition] = STATE(212), + [sym__constructor_specifiers] = STATE(1936), + [sym_operator_cast_definition] = STATE(212), + [sym_operator_cast_declaration] = STATE(212), + [sym_constructor_or_destructor_definition] = STATE(212), + [sym_constructor_or_destructor_declaration] = STATE(212), + [sym_friend_declaration] = STATE(212), + [sym_access_specifier] = STATE(212), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(212), + [sym_alias_declaration] = STATE(212), + [sym_static_assert_declaration] = STATE(212), + [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(1975), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_COLON_COLON] = ACTIONS(1879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1888), - [sym_primitive_type] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_switch] = ACTIONS(1987), - [anon_sym_case] = ACTIONS(1990), - [anon_sym_default] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_goto] = ACTIONS(2014), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1927), - [anon_sym_sizeof] = ACTIONS(1930), - [sym_number_literal] = ACTIONS(1933), - [anon_sym_L_SQUOTE] = ACTIONS(1936), - [anon_sym_u_SQUOTE] = ACTIONS(1936), - [anon_sym_U_SQUOTE] = ACTIONS(1936), - [anon_sym_u8_SQUOTE] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_L_DQUOTE] = ACTIONS(1939), - [anon_sym_u_DQUOTE] = ACTIONS(1939), - [anon_sym_U_DQUOTE] = ACTIONS(1939), - [anon_sym_u8_DQUOTE] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [sym_null] = ACTIONS(1942), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5459), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(212), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1936), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2117), + [aux_sym_preproc_if_token1] = ACTIONS(2119), + [aux_sym_preproc_if_token2] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2123), + [sym_preproc_directive] = ACTIONS(2125), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2127), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_delete] = ACTIONS(1951), - [anon_sym_throw] = ACTIONS(2020), - [anon_sym_co_return] = ACTIONS(2023), - [anon_sym_co_yield] = ACTIONS(2026), - [anon_sym_R_DQUOTE] = ACTIONS(1963), - [anon_sym_LR_DQUOTE] = ACTIONS(1963), - [anon_sym_uR_DQUOTE] = ACTIONS(1963), - [anon_sym_UR_DQUOTE] = ACTIONS(1963), - [anon_sym_u8R_DQUOTE] = ACTIONS(1963), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_requires] = ACTIONS(1972), - [sym_this] = ACTIONS(1942), - [sym_nullptr] = ACTIONS(1942), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2129), + [anon_sym_private] = ACTIONS(2129), + [anon_sym_protected] = ACTIONS(2129), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2131), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2133), + [anon_sym_using] = ACTIONS(2135), + [anon_sym_static_assert] = ACTIONS(2137), }, [204] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(650), - [sym_attributed_statement] = STATE(650), - [sym_labeled_statement] = STATE(650), - [sym_expression_statement] = STATE(650), - [sym_if_statement] = STATE(650), - [sym_switch_statement] = STATE(650), - [sym_case_statement] = STATE(650), - [sym_while_statement] = STATE(650), - [sym_do_statement] = STATE(650), - [sym_for_statement] = STATE(650), - [sym_return_statement] = STATE(650), - [sym_break_statement] = STATE(650), - [sym_continue_statement] = STATE(650), - [sym_goto_statement] = STATE(650), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(853), + [sym_attributed_statement] = STATE(853), + [sym_labeled_statement] = STATE(853), + [sym_expression_statement] = STATE(853), + [sym_if_statement] = STATE(853), + [sym_switch_statement] = STATE(853), + [sym_case_statement] = STATE(853), + [sym_while_statement] = STATE(853), + [sym_do_statement] = STATE(853), + [sym_for_statement] = STATE(853), + [sym_return_statement] = STATE(853), + [sym_break_statement] = STATE(853), + [sym_continue_statement] = STATE(853), + [sym_goto_statement] = STATE(853), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(650), - [sym_co_return_statement] = STATE(650), - [sym_co_yield_statement] = STATE(650), - [sym_throw_statement] = STATE(650), - [sym_try_statement] = STATE(650), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(853), + [sym_co_return_statement] = STATE(853), + [sym_co_yield_statement] = STATE(853), + [sym_throw_statement] = STATE(853), + [sym_try_statement] = STATE(853), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -60089,10 +60239,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_attributed_declarator_repeat1] = STATE(148), [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -60101,23 +60251,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -60139,11 +60289,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -60156,7 +60306,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [205] = { - [sym_attribute_declaration] = STATE(169), + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(842), + [sym_attributed_statement] = STATE(843), + [sym_labeled_statement] = STATE(844), + [sym_expression_statement] = STATE(845), + [sym_if_statement] = STATE(846), + [sym_switch_statement] = STATE(847), + [sym_case_statement] = STATE(848), + [sym_while_statement] = STATE(849), + [sym_do_statement] = STATE(850), + [sym_for_statement] = STATE(851), + [sym_return_statement] = STATE(854), + [sym_break_statement] = STATE(855), + [sym_continue_statement] = STATE(856), + [sym_goto_statement] = STATE(859), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(865), + [sym_co_return_statement] = STATE(866), + [sym_co_yield_statement] = STATE(877), + [sym_throw_statement] = STATE(882), + [sym_try_statement] = STATE(897), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(730), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [206] = { + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(778), + [sym_attributed_statement] = STATE(783), + [sym_labeled_statement] = STATE(785), + [sym_expression_statement] = STATE(787), + [sym_if_statement] = STATE(788), + [sym_switch_statement] = STATE(812), + [sym_case_statement] = STATE(813), + [sym_while_statement] = STATE(815), + [sym_do_statement] = STATE(816), + [sym_for_statement] = STATE(817), + [sym_return_statement] = STATE(818), + [sym_break_statement] = STATE(819), + [sym_continue_statement] = STATE(820), + [sym_goto_statement] = STATE(821), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(822), + [sym_co_return_statement] = STATE(823), + [sym_co_yield_statement] = STATE(826), + [sym_throw_statement] = STATE(827), + [sym_try_statement] = STATE(828), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(730), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [207] = { + [sym_attribute_declaration] = STATE(143), [sym_compound_statement] = STATE(776), [sym_attributed_statement] = STATE(776), [sym_labeled_statement] = STATE(776), @@ -60171,33 +60561,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(776), [sym_continue_statement] = STATE(776), [sym_goto_statement] = STATE(776), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), [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(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -60209,11 +60599,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60221,23 +60611,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -60259,251 +60649,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [206] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(775), - [sym_attributed_statement] = STATE(775), - [sym_labeled_statement] = STATE(775), - [sym_expression_statement] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_switch_statement] = STATE(775), - [sym_case_statement] = STATE(775), - [sym_while_statement] = STATE(775), - [sym_do_statement] = STATE(775), - [sym_for_statement] = STATE(775), - [sym_return_statement] = STATE(775), - [sym_break_statement] = STATE(775), - [sym_continue_statement] = STATE(775), - [sym_goto_statement] = STATE(775), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(775), - [sym_co_return_statement] = STATE(775), - [sym_co_yield_statement] = STATE(775), - [sym_throw_statement] = STATE(775), - [sym_try_statement] = STATE(775), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [207] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(774), - [sym_attributed_statement] = STATE(773), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(771), - [sym_if_statement] = STATE(770), - [sym_switch_statement] = STATE(769), - [sym_case_statement] = STATE(768), - [sym_while_statement] = STATE(767), - [sym_do_statement] = STATE(765), - [sym_for_statement] = STATE(764), - [sym_return_statement] = STATE(763), - [sym_break_statement] = STATE(762), - [sym_continue_statement] = STATE(761), - [sym_goto_statement] = STATE(760), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(757), - [sym_co_return_statement] = STATE(756), - [sym_co_yield_statement] = STATE(754), - [sym_throw_statement] = STATE(753), - [sym_try_statement] = STATE(750), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -60516,48 +60666,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [208] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(749), - [sym_attributed_statement] = STATE(748), - [sym_labeled_statement] = STATE(747), - [sym_expression_statement] = STATE(746), - [sym_if_statement] = STATE(744), - [sym_switch_statement] = STATE(743), - [sym_case_statement] = STATE(742), - [sym_while_statement] = STATE(741), - [sym_do_statement] = STATE(740), - [sym_for_statement] = STATE(739), - [sym_return_statement] = STATE(738), - [sym_break_statement] = STATE(737), - [sym_continue_statement] = STATE(736), - [sym_goto_statement] = STATE(734), - [sym__expression] = STATE(3668), + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(601), + [sym_attributed_statement] = STATE(601), + [sym_labeled_statement] = STATE(601), + [sym_expression_statement] = STATE(601), + [sym_if_statement] = STATE(601), + [sym_switch_statement] = STATE(601), + [sym_case_statement] = STATE(601), + [sym_while_statement] = STATE(601), + [sym_do_statement] = STATE(601), + [sym_for_statement] = STATE(601), + [sym_return_statement] = STATE(601), + [sym_break_statement] = STATE(601), + [sym_continue_statement] = STATE(601), + [sym_goto_statement] = STATE(601), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(733), - [sym_co_return_statement] = STATE(732), - [sym_co_yield_statement] = STATE(731), - [sym_throw_statement] = STATE(730), - [sym_try_statement] = STATE(729), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(601), + [sym_co_return_statement] = STATE(601), + [sym_co_yield_statement] = STATE(601), + [sym_throw_statement] = STATE(601), + [sym_try_statement] = STATE(601), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -60569,11 +60719,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60587,13 +60737,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(83), [anon_sym_return] = ACTIONS(85), [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), @@ -60636,48 +60786,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [209] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(728), - [sym_attributed_statement] = STATE(728), - [sym_labeled_statement] = STATE(728), - [sym_expression_statement] = STATE(728), - [sym_if_statement] = STATE(728), - [sym_switch_statement] = STATE(728), - [sym_case_statement] = STATE(728), - [sym_while_statement] = STATE(728), - [sym_do_statement] = STATE(728), - [sym_for_statement] = STATE(728), - [sym_return_statement] = STATE(728), - [sym_break_statement] = STATE(728), - [sym_continue_statement] = STATE(728), - [sym_goto_statement] = STATE(728), - [sym__expression] = STATE(3668), + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(675), + [sym_attributed_statement] = STATE(675), + [sym_labeled_statement] = STATE(675), + [sym_expression_statement] = STATE(675), + [sym_if_statement] = STATE(675), + [sym_switch_statement] = STATE(675), + [sym_case_statement] = STATE(675), + [sym_while_statement] = STATE(675), + [sym_do_statement] = STATE(675), + [sym_for_statement] = STATE(675), + [sym_return_statement] = STATE(675), + [sym_break_statement] = STATE(675), + [sym_continue_statement] = STATE(675), + [sym_goto_statement] = STATE(675), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(728), - [sym_co_return_statement] = STATE(728), - [sym_co_yield_statement] = STATE(728), - [sym_throw_statement] = STATE(728), - [sym_try_statement] = STATE(728), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(675), + [sym_co_return_statement] = STATE(675), + [sym_co_yield_statement] = STATE(675), + [sym_throw_statement] = STATE(675), + [sym_try_statement] = STATE(675), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -60689,11 +60839,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60707,13 +60857,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(83), [anon_sym_return] = ACTIONS(85), [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), @@ -60756,48 +60906,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [210] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(727), - [sym_attributed_statement] = STATE(727), - [sym_labeled_statement] = STATE(727), - [sym_expression_statement] = STATE(727), - [sym_if_statement] = STATE(727), - [sym_switch_statement] = STATE(727), - [sym_case_statement] = STATE(727), - [sym_while_statement] = STATE(727), - [sym_do_statement] = STATE(727), - [sym_for_statement] = STATE(727), - [sym_return_statement] = STATE(727), - [sym_break_statement] = STATE(727), - [sym_continue_statement] = STATE(727), - [sym_goto_statement] = STATE(727), - [sym__expression] = STATE(3668), + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(674), + [sym_attributed_statement] = STATE(674), + [sym_labeled_statement] = STATE(674), + [sym_expression_statement] = STATE(674), + [sym_if_statement] = STATE(674), + [sym_switch_statement] = STATE(674), + [sym_case_statement] = STATE(674), + [sym_while_statement] = STATE(674), + [sym_do_statement] = STATE(674), + [sym_for_statement] = STATE(674), + [sym_return_statement] = STATE(674), + [sym_break_statement] = STATE(674), + [sym_continue_statement] = STATE(674), + [sym_goto_statement] = STATE(674), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(727), - [sym_co_return_statement] = STATE(727), - [sym_co_yield_statement] = STATE(727), - [sym_throw_statement] = STATE(727), - [sym_try_statement] = STATE(727), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(674), + [sym_co_return_statement] = STATE(674), + [sym_co_yield_statement] = STATE(674), + [sym_throw_statement] = STATE(674), + [sym_try_statement] = STATE(674), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -60809,11 +60959,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60827,13 +60977,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(83), [anon_sym_return] = ACTIONS(85), [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), @@ -60876,48 +61026,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [211] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(726), - [sym_attributed_statement] = STATE(726), - [sym_labeled_statement] = STATE(726), - [sym_expression_statement] = STATE(726), - [sym_if_statement] = STATE(726), - [sym_switch_statement] = STATE(726), - [sym_case_statement] = STATE(726), - [sym_while_statement] = STATE(726), - [sym_do_statement] = STATE(726), - [sym_for_statement] = STATE(726), - [sym_return_statement] = STATE(726), - [sym_break_statement] = STATE(726), - [sym_continue_statement] = STATE(726), - [sym_goto_statement] = STATE(726), - [sym__expression] = STATE(3668), + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(671), + [sym_attributed_statement] = STATE(671), + [sym_labeled_statement] = STATE(671), + [sym_expression_statement] = STATE(671), + [sym_if_statement] = STATE(671), + [sym_switch_statement] = STATE(671), + [sym_case_statement] = STATE(671), + [sym_while_statement] = STATE(671), + [sym_do_statement] = STATE(671), + [sym_for_statement] = STATE(671), + [sym_return_statement] = STATE(671), + [sym_break_statement] = STATE(671), + [sym_continue_statement] = STATE(671), + [sym_goto_statement] = STATE(671), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(726), - [sym_co_return_statement] = STATE(726), - [sym_co_yield_statement] = STATE(726), - [sym_throw_statement] = STATE(726), - [sym_try_statement] = STATE(726), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(671), + [sym_co_return_statement] = STATE(671), + [sym_co_yield_statement] = STATE(671), + [sym_throw_statement] = STATE(671), + [sym_try_statement] = STATE(671), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -60929,11 +61079,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60947,13 +61097,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(83), [anon_sym_return] = ACTIONS(85), [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), @@ -60996,168 +61146,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [212] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(725), - [sym_attributed_statement] = STATE(546), - [sym_labeled_statement] = STATE(723), - [sym_expression_statement] = STATE(722), - [sym_if_statement] = STATE(715), - [sym_switch_statement] = STATE(817), - [sym_case_statement] = STATE(668), - [sym_while_statement] = STATE(720), - [sym_do_statement] = STATE(719), - [sym_for_statement] = STATE(718), - [sym_return_statement] = STATE(717), - [sym_break_statement] = STATE(716), - [sym_continue_statement] = STATE(714), - [sym_goto_statement] = STATE(713), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(712), - [sym_co_return_statement] = STATE(711), - [sym_co_yield_statement] = STATE(710), - [sym_throw_statement] = STATE(709), - [sym_try_statement] = STATE(708), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym_preproc_def] = STATE(277), + [sym_preproc_function_def] = STATE(277), + [sym_preproc_call] = STATE(277), + [sym_preproc_if_in_field_declaration_list] = STATE(277), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(277), + [sym_type_definition] = STATE(277), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4409), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4982), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(277), + [sym_field_declaration] = STATE(277), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1936), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(277), + [sym_operator_cast] = STATE(5459), + [sym_inline_method_definition] = STATE(277), + [sym__constructor_specifiers] = STATE(1936), + [sym_operator_cast_definition] = STATE(277), + [sym_operator_cast_declaration] = STATE(277), + [sym_constructor_or_destructor_definition] = STATE(277), + [sym_constructor_or_destructor_declaration] = STATE(277), + [sym_friend_declaration] = STATE(277), + [sym_access_specifier] = STATE(277), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(277), + [sym_alias_declaration] = STATE(277), + [sym_static_assert_declaration] = STATE(277), + [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5459), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1936), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2117), + [aux_sym_preproc_if_token1] = ACTIONS(2119), + [aux_sym_preproc_if_token2] = ACTIONS(2139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2123), + [sym_preproc_directive] = ACTIONS(2125), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2127), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2129), + [anon_sym_private] = ACTIONS(2129), + [anon_sym_protected] = ACTIONS(2129), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2131), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2133), + [anon_sym_using] = ACTIONS(2135), + [anon_sym_static_assert] = ACTIONS(2137), }, [213] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(707), - [sym_attributed_statement] = STATE(706), - [sym_labeled_statement] = STATE(705), - [sym_expression_statement] = STATE(704), - [sym_if_statement] = STATE(703), - [sym_switch_statement] = STATE(702), - [sym_case_statement] = STATE(701), - [sym_while_statement] = STATE(700), - [sym_do_statement] = STATE(699), - [sym_for_statement] = STATE(698), - [sym_return_statement] = STATE(697), - [sym_break_statement] = STATE(696), - [sym_continue_statement] = STATE(695), - [sym_goto_statement] = STATE(694), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(769), + [sym_attributed_statement] = STATE(769), + [sym_labeled_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_if_statement] = STATE(769), + [sym_switch_statement] = STATE(769), + [sym_case_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_do_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_break_statement] = STATE(769), + [sym_continue_statement] = STATE(769), + [sym_goto_statement] = STATE(769), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(693), - [sym_co_return_statement] = STATE(691), - [sym_co_yield_statement] = STATE(690), - [sym_throw_statement] = STATE(689), - [sym_try_statement] = STATE(688), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(769), + [sym_co_return_statement] = STATE(769), + [sym_co_yield_statement] = STATE(769), + [sym_throw_statement] = STATE(769), + [sym_try_statement] = STATE(769), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -61169,11 +61319,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61181,23 +61331,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -61219,11 +61369,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -61236,48 +61386,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [214] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(681), - [sym_attributed_statement] = STATE(681), - [sym_labeled_statement] = STATE(681), - [sym_expression_statement] = STATE(681), - [sym_if_statement] = STATE(681), - [sym_switch_statement] = STATE(681), - [sym_case_statement] = STATE(681), - [sym_while_statement] = STATE(681), - [sym_do_statement] = STATE(681), - [sym_for_statement] = STATE(681), - [sym_return_statement] = STATE(681), - [sym_break_statement] = STATE(681), - [sym_continue_statement] = STATE(681), - [sym_goto_statement] = STATE(681), - [sym__expression] = STATE(3705), + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(768), + [sym_attributed_statement] = STATE(768), + [sym_labeled_statement] = STATE(768), + [sym_expression_statement] = STATE(768), + [sym_if_statement] = STATE(768), + [sym_switch_statement] = STATE(768), + [sym_case_statement] = STATE(768), + [sym_while_statement] = STATE(768), + [sym_do_statement] = STATE(768), + [sym_for_statement] = STATE(768), + [sym_return_statement] = STATE(768), + [sym_break_statement] = STATE(768), + [sym_continue_statement] = STATE(768), + [sym_goto_statement] = STATE(768), + [sym__expression] = STATE(3713), [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(681), - [sym_co_return_statement] = STATE(681), - [sym_co_yield_statement] = STATE(681), - [sym_throw_statement] = STATE(681), - [sym_try_statement] = STATE(681), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(768), + [sym_co_return_statement] = STATE(768), + [sym_co_yield_statement] = STATE(768), + [sym_throw_statement] = STATE(768), + [sym_try_statement] = STATE(768), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -61289,11 +61439,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61301,23 +61451,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -61339,11 +61489,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -61356,48 +61506,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [215] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(630), - [sym_attributed_statement] = STATE(630), - [sym_labeled_statement] = STATE(630), - [sym_expression_statement] = STATE(630), - [sym_if_statement] = STATE(630), - [sym_switch_statement] = STATE(630), - [sym_case_statement] = STATE(630), - [sym_while_statement] = STATE(630), - [sym_do_statement] = STATE(630), - [sym_for_statement] = STATE(630), - [sym_return_statement] = STATE(630), - [sym_break_statement] = STATE(630), - [sym_continue_statement] = STATE(630), - [sym_goto_statement] = STATE(630), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(718), + [sym_attributed_statement] = STATE(719), + [sym_labeled_statement] = STATE(720), + [sym_expression_statement] = STATE(553), + [sym_if_statement] = STATE(726), + [sym_switch_statement] = STATE(727), + [sym_case_statement] = STATE(728), + [sym_while_statement] = STATE(729), + [sym_do_statement] = STATE(730), + [sym_for_statement] = STATE(733), + [sym_return_statement] = STATE(736), + [sym_break_statement] = STATE(738), + [sym_continue_statement] = STATE(739), + [sym_goto_statement] = STATE(741), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(630), - [sym_co_return_statement] = STATE(630), - [sym_co_yield_statement] = STATE(630), - [sym_throw_statement] = STATE(630), - [sym_try_statement] = STATE(630), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(759), + [sym_co_return_statement] = STATE(762), + [sym_co_yield_statement] = STATE(764), + [sym_throw_statement] = STATE(765), + [sym_try_statement] = STATE(767), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -61409,11 +61559,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1839), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61421,23 +61571,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -61459,11 +61609,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -61476,48 +61626,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [216] = { - [sym_attribute_declaration] = STATE(142), - [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(3668), - [sym_comma_expression] = STATE(6976), + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(685), + [sym_attributed_statement] = STATE(687), + [sym_labeled_statement] = STATE(688), + [sym_expression_statement] = STATE(689), + [sym_if_statement] = STATE(690), + [sym_switch_statement] = STATE(692), + [sym_case_statement] = STATE(693), + [sym_while_statement] = STATE(695), + [sym_do_statement] = STATE(700), + [sym_for_statement] = STATE(701), + [sym_return_statement] = STATE(703), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(706), + [sym_goto_statement] = STATE(710), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [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(2568), + [sym_for_range_loop] = STATE(711), + [sym_co_return_statement] = STATE(713), + [sym_co_yield_statement] = STATE(714), + [sym_throw_statement] = STATE(715), + [sym_try_statement] = STATE(716), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -61529,10 +61679,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), + [aux_sym_attributed_declarator_repeat1] = STATE(143), [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -61541,23 +61691,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -61579,11 +61729,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -61596,48 +61746,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [217] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1146), - [sym_attributed_statement] = STATE(1150), - [sym_labeled_statement] = STATE(1153), - [sym_expression_statement] = STATE(1154), - [sym_if_statement] = STATE(1162), - [sym_switch_statement] = STATE(1163), - [sym_case_statement] = STATE(1164), - [sym_while_statement] = STATE(1165), - [sym_do_statement] = STATE(1167), - [sym_for_statement] = STATE(1168), - [sym_return_statement] = STATE(1169), - [sym_break_statement] = STATE(1122), - [sym_continue_statement] = STATE(1171), - [sym_goto_statement] = STATE(1175), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(684), + [sym_attributed_statement] = STATE(684), + [sym_labeled_statement] = STATE(684), + [sym_expression_statement] = STATE(684), + [sym_if_statement] = STATE(684), + [sym_switch_statement] = STATE(684), + [sym_case_statement] = STATE(684), + [sym_while_statement] = STATE(684), + [sym_do_statement] = STATE(684), + [sym_for_statement] = STATE(684), + [sym_return_statement] = STATE(684), + [sym_break_statement] = STATE(684), + [sym_continue_statement] = STATE(684), + [sym_goto_statement] = STATE(684), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1180), - [sym_co_return_statement] = STATE(1181), - [sym_co_yield_statement] = STATE(1182), - [sym_throw_statement] = STATE(1183), - [sym_try_statement] = STATE(1184), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(684), + [sym_co_return_statement] = STATE(684), + [sym_co_yield_statement] = STATE(684), + [sym_throw_statement] = STATE(684), + [sym_try_statement] = STATE(684), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -61649,11 +61799,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61661,23 +61811,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -61699,11 +61849,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -61716,648 +61866,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [218] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1190), - [sym_attributed_statement] = STATE(1189), - [sym_labeled_statement] = STATE(1201), - [sym_expression_statement] = STATE(1124), - [sym_if_statement] = STATE(1125), - [sym_switch_statement] = STATE(1126), - [sym_case_statement] = STATE(1127), - [sym_while_statement] = STATE(1128), - [sym_do_statement] = STATE(1130), - [sym_for_statement] = STATE(1131), - [sym_return_statement] = STATE(1132), - [sym_break_statement] = STATE(1136), - [sym_continue_statement] = STATE(1137), - [sym_goto_statement] = STATE(1138), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1139), - [sym_co_return_statement] = STATE(1142), - [sym_co_yield_statement] = STATE(1143), - [sym_throw_statement] = STATE(1144), - [sym_try_statement] = STATE(1145), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [219] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1197), - [sym_attributed_statement] = STATE(1197), - [sym_labeled_statement] = STATE(1197), - [sym_expression_statement] = STATE(1197), - [sym_if_statement] = STATE(1197), - [sym_switch_statement] = STATE(1197), - [sym_case_statement] = STATE(1197), - [sym_while_statement] = STATE(1197), - [sym_do_statement] = STATE(1197), - [sym_for_statement] = STATE(1197), - [sym_return_statement] = STATE(1197), - [sym_break_statement] = STATE(1197), - [sym_continue_statement] = STATE(1197), - [sym_goto_statement] = STATE(1197), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1197), - [sym_co_return_statement] = STATE(1197), - [sym_co_yield_statement] = STATE(1197), - [sym_throw_statement] = STATE(1197), - [sym_try_statement] = STATE(1197), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [220] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(622), - [sym_attributed_statement] = STATE(622), - [sym_labeled_statement] = STATE(622), - [sym_expression_statement] = STATE(622), - [sym_if_statement] = STATE(622), - [sym_switch_statement] = STATE(622), - [sym_case_statement] = STATE(622), - [sym_while_statement] = STATE(622), - [sym_do_statement] = STATE(622), - [sym_for_statement] = STATE(622), - [sym_return_statement] = STATE(622), - [sym_break_statement] = STATE(622), - [sym_continue_statement] = STATE(622), - [sym_goto_statement] = STATE(622), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(622), - [sym_co_return_statement] = STATE(622), - [sym_co_yield_statement] = STATE(622), - [sym_throw_statement] = STATE(622), - [sym_try_statement] = STATE(622), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [221] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(621), - [sym_attributed_statement] = STATE(621), - [sym_labeled_statement] = STATE(621), - [sym_expression_statement] = STATE(621), - [sym_if_statement] = STATE(621), - [sym_switch_statement] = STATE(621), - [sym_case_statement] = STATE(621), - [sym_while_statement] = STATE(621), - [sym_do_statement] = STATE(621), - [sym_for_statement] = STATE(621), - [sym_return_statement] = STATE(621), - [sym_break_statement] = STATE(621), - [sym_continue_statement] = STATE(621), - [sym_goto_statement] = STATE(621), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(621), - [sym_co_return_statement] = STATE(621), - [sym_co_yield_statement] = STATE(621), - [sym_throw_statement] = STATE(621), - [sym_try_statement] = STATE(621), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [222] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(620), - [sym_attributed_statement] = STATE(620), - [sym_labeled_statement] = STATE(620), - [sym_expression_statement] = STATE(620), - [sym_if_statement] = STATE(620), - [sym_switch_statement] = STATE(620), - [sym_case_statement] = STATE(620), - [sym_while_statement] = STATE(620), - [sym_do_statement] = STATE(620), - [sym_for_statement] = STATE(620), - [sym_return_statement] = STATE(620), - [sym_break_statement] = STATE(620), - [sym_continue_statement] = STATE(620), - [sym_goto_statement] = STATE(620), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(620), - [sym_co_return_statement] = STATE(620), - [sym_co_yield_statement] = STATE(620), - [sym_throw_statement] = STATE(620), - [sym_try_statement] = STATE(620), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [223] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(562), - [sym_attributed_statement] = STATE(562), - [sym_labeled_statement] = STATE(562), - [sym_expression_statement] = STATE(562), - [sym_if_statement] = STATE(562), - [sym_switch_statement] = STATE(562), - [sym_case_statement] = STATE(562), - [sym_while_statement] = STATE(562), - [sym_do_statement] = STATE(562), - [sym_for_statement] = STATE(562), - [sym_return_statement] = STATE(562), - [sym_break_statement] = STATE(562), - [sym_continue_statement] = STATE(562), - [sym_goto_statement] = STATE(562), - [sym__expression] = STATE(3668), + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(658), + [sym_attributed_statement] = STATE(658), + [sym_labeled_statement] = STATE(658), + [sym_expression_statement] = STATE(658), + [sym_if_statement] = STATE(658), + [sym_switch_statement] = STATE(658), + [sym_case_statement] = STATE(658), + [sym_while_statement] = STATE(658), + [sym_do_statement] = STATE(658), + [sym_for_statement] = STATE(658), + [sym_return_statement] = STATE(658), + [sym_break_statement] = STATE(658), + [sym_continue_statement] = STATE(658), + [sym_goto_statement] = STATE(658), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(562), - [sym_co_return_statement] = STATE(562), - [sym_co_yield_statement] = STATE(562), - [sym_throw_statement] = STATE(562), - [sym_try_statement] = STATE(562), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(658), + [sym_co_return_statement] = STATE(658), + [sym_co_yield_statement] = STATE(658), + [sym_throw_statement] = STATE(658), + [sym_try_statement] = STATE(658), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -62369,11 +61919,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62435,49 +61985,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [224] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(661), - [sym_attributed_statement] = STATE(661), - [sym_labeled_statement] = STATE(661), - [sym_expression_statement] = STATE(661), - [sym_if_statement] = STATE(661), - [sym_switch_statement] = STATE(661), - [sym_case_statement] = STATE(661), - [sym_while_statement] = STATE(661), - [sym_do_statement] = STATE(661), - [sym_for_statement] = STATE(661), - [sym_return_statement] = STATE(661), - [sym_break_statement] = STATE(661), - [sym_continue_statement] = STATE(661), - [sym_goto_statement] = STATE(661), - [sym__expression] = STATE(3705), - [sym_comma_expression] = STATE(6673), + [219] = { + [sym_attribute_declaration] = STATE(148), + [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(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(661), - [sym_co_return_statement] = STATE(661), - [sym_co_yield_statement] = STATE(661), - [sym_throw_statement] = STATE(661), - [sym_try_statement] = STATE(661), - [sym_raw_string_literal] = STATE(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -62489,11 +62039,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62501,23 +62051,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -62539,11 +62089,611 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [220] = { + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(655), + [sym_attributed_statement] = STATE(655), + [sym_labeled_statement] = STATE(655), + [sym_expression_statement] = STATE(655), + [sym_if_statement] = STATE(655), + [sym_switch_statement] = STATE(655), + [sym_case_statement] = STATE(655), + [sym_while_statement] = STATE(655), + [sym_do_statement] = STATE(655), + [sym_for_statement] = STATE(655), + [sym_return_statement] = STATE(655), + [sym_break_statement] = STATE(655), + [sym_continue_statement] = STATE(655), + [sym_goto_statement] = STATE(655), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(655), + [sym_co_return_statement] = STATE(655), + [sym_co_yield_statement] = STATE(655), + [sym_throw_statement] = STATE(655), + [sym_try_statement] = STATE(655), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [221] = { + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(654), + [sym_attributed_statement] = STATE(654), + [sym_labeled_statement] = STATE(654), + [sym_expression_statement] = STATE(654), + [sym_if_statement] = STATE(654), + [sym_switch_statement] = STATE(654), + [sym_case_statement] = STATE(654), + [sym_while_statement] = STATE(654), + [sym_do_statement] = STATE(654), + [sym_for_statement] = STATE(654), + [sym_return_statement] = STATE(654), + [sym_break_statement] = STATE(654), + [sym_continue_statement] = STATE(654), + [sym_goto_statement] = STATE(654), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(654), + [sym_co_return_statement] = STATE(654), + [sym_co_yield_statement] = STATE(654), + [sym_throw_statement] = STATE(654), + [sym_try_statement] = STATE(654), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [222] = { + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(678), + [sym_attributed_statement] = STATE(678), + [sym_labeled_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_switch_statement] = STATE(678), + [sym_case_statement] = STATE(678), + [sym_while_statement] = STATE(678), + [sym_do_statement] = STATE(678), + [sym_for_statement] = STATE(678), + [sym_return_statement] = STATE(678), + [sym_break_statement] = STATE(678), + [sym_continue_statement] = STATE(678), + [sym_goto_statement] = STATE(678), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(678), + [sym_co_return_statement] = STATE(678), + [sym_co_yield_statement] = STATE(678), + [sym_throw_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(730), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [223] = { + [sym_attribute_declaration] = STATE(143), + [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(3713), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(730), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [224] = { + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(900), + [sym_attributed_statement] = STATE(900), + [sym_labeled_statement] = STATE(900), + [sym_expression_statement] = STATE(900), + [sym_if_statement] = STATE(900), + [sym_switch_statement] = STATE(900), + [sym_case_statement] = STATE(900), + [sym_while_statement] = STATE(900), + [sym_do_statement] = STATE(900), + [sym_for_statement] = STATE(900), + [sym_return_statement] = STATE(900), + [sym_break_statement] = STATE(900), + [sym_continue_statement] = STATE(900), + [sym_goto_statement] = STATE(900), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(900), + [sym_co_return_statement] = STATE(900), + [sym_co_yield_statement] = STATE(900), + [sym_throw_statement] = STATE(900), + [sym_try_statement] = STATE(900), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -62556,48 +62706,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [225] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(619), - [sym_attributed_statement] = STATE(619), - [sym_labeled_statement] = STATE(619), - [sym_expression_statement] = STATE(619), - [sym_if_statement] = STATE(619), - [sym_switch_statement] = STATE(619), - [sym_case_statement] = STATE(619), - [sym_while_statement] = STATE(619), - [sym_do_statement] = STATE(619), - [sym_for_statement] = STATE(619), - [sym_return_statement] = STATE(619), - [sym_break_statement] = STATE(619), - [sym_continue_statement] = STATE(619), - [sym_goto_statement] = STATE(619), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_attribute_declaration] = STATE(143), + [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(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(619), - [sym_co_return_statement] = STATE(619), - [sym_co_yield_statement] = STATE(619), - [sym_throw_statement] = STATE(619), - [sym_try_statement] = STATE(619), - [sym_raw_string_literal] = STATE(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -62609,11 +62759,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1839), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62621,23 +62771,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -62659,11 +62809,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -62676,48 +62826,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [226] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(618), - [sym_attributed_statement] = STATE(618), - [sym_labeled_statement] = STATE(618), - [sym_expression_statement] = STATE(618), - [sym_if_statement] = STATE(618), - [sym_switch_statement] = STATE(618), - [sym_case_statement] = STATE(618), - [sym_while_statement] = STATE(618), - [sym_do_statement] = STATE(618), - [sym_for_statement] = STATE(618), - [sym_return_statement] = STATE(618), - [sym_break_statement] = STATE(618), - [sym_continue_statement] = STATE(618), - [sym_goto_statement] = STATE(618), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(669), + [sym_attributed_statement] = STATE(669), + [sym_labeled_statement] = STATE(669), + [sym_expression_statement] = STATE(669), + [sym_if_statement] = STATE(669), + [sym_switch_statement] = STATE(669), + [sym_case_statement] = STATE(669), + [sym_while_statement] = STATE(669), + [sym_do_statement] = STATE(669), + [sym_for_statement] = STATE(669), + [sym_return_statement] = STATE(669), + [sym_break_statement] = STATE(669), + [sym_continue_statement] = STATE(669), + [sym_goto_statement] = STATE(669), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(618), - [sym_co_return_statement] = STATE(618), - [sym_co_yield_statement] = STATE(618), - [sym_throw_statement] = STATE(618), - [sym_try_statement] = STATE(618), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(669), + [sym_co_return_statement] = STATE(669), + [sym_co_yield_statement] = STATE(669), + [sym_throw_statement] = STATE(669), + [sym_try_statement] = STATE(669), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -62729,11 +62879,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1839), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62741,23 +62891,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -62779,11 +62929,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -62796,48 +62946,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [227] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(617), - [sym_attributed_statement] = STATE(617), - [sym_labeled_statement] = STATE(617), - [sym_expression_statement] = STATE(617), - [sym_if_statement] = STATE(617), - [sym_switch_statement] = STATE(617), - [sym_case_statement] = STATE(617), - [sym_while_statement] = STATE(617), - [sym_do_statement] = STATE(617), - [sym_for_statement] = STATE(617), - [sym_return_statement] = STATE(617), - [sym_break_statement] = STATE(617), - [sym_continue_statement] = STATE(617), - [sym_goto_statement] = STATE(617), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(668), + [sym_attributed_statement] = STATE(668), + [sym_labeled_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_if_statement] = STATE(668), + [sym_switch_statement] = STATE(668), + [sym_case_statement] = STATE(668), + [sym_while_statement] = STATE(668), + [sym_do_statement] = STATE(668), + [sym_for_statement] = STATE(668), + [sym_return_statement] = STATE(668), + [sym_break_statement] = STATE(668), + [sym_continue_statement] = STATE(668), + [sym_goto_statement] = STATE(668), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(617), - [sym_co_return_statement] = STATE(617), - [sym_co_yield_statement] = STATE(617), - [sym_throw_statement] = STATE(617), - [sym_try_statement] = STATE(617), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(668), + [sym_co_return_statement] = STATE(668), + [sym_co_yield_statement] = STATE(668), + [sym_throw_statement] = STATE(668), + [sym_try_statement] = STATE(668), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -62849,11 +62999,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1839), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62861,23 +63011,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -62899,11 +63049,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -62916,48 +63066,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [228] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(616), - [sym_attributed_statement] = STATE(616), - [sym_labeled_statement] = STATE(616), - [sym_expression_statement] = STATE(616), - [sym_if_statement] = STATE(616), - [sym_switch_statement] = STATE(616), - [sym_case_statement] = STATE(616), - [sym_while_statement] = STATE(616), - [sym_do_statement] = STATE(616), - [sym_for_statement] = STATE(616), - [sym_return_statement] = STATE(616), - [sym_break_statement] = STATE(616), - [sym_continue_statement] = STATE(616), - [sym_goto_statement] = STATE(616), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(646), + [sym_attributed_statement] = STATE(646), + [sym_labeled_statement] = STATE(646), + [sym_expression_statement] = STATE(646), + [sym_if_statement] = STATE(646), + [sym_switch_statement] = STATE(646), + [sym_case_statement] = STATE(646), + [sym_while_statement] = STATE(646), + [sym_do_statement] = STATE(646), + [sym_for_statement] = STATE(646), + [sym_return_statement] = STATE(646), + [sym_break_statement] = STATE(646), + [sym_continue_statement] = STATE(646), + [sym_goto_statement] = STATE(646), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(616), - [sym_co_return_statement] = STATE(616), - [sym_co_yield_statement] = STATE(616), - [sym_throw_statement] = STATE(616), - [sym_try_statement] = STATE(616), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(646), + [sym_co_return_statement] = STATE(646), + [sym_co_yield_statement] = STATE(646), + [sym_throw_statement] = STATE(646), + [sym_try_statement] = STATE(646), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -62969,10 +63119,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_attributed_declarator_repeat1] = STATE(148), [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -62981,23 +63131,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -63019,11 +63169,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -63036,48 +63186,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [229] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(615), - [sym_attributed_statement] = STATE(615), - [sym_labeled_statement] = STATE(615), - [sym_expression_statement] = STATE(615), - [sym_if_statement] = STATE(615), - [sym_switch_statement] = STATE(615), - [sym_case_statement] = STATE(615), - [sym_while_statement] = STATE(615), - [sym_do_statement] = STATE(615), - [sym_for_statement] = STATE(615), - [sym_return_statement] = STATE(615), - [sym_break_statement] = STATE(615), - [sym_continue_statement] = STATE(615), - [sym_goto_statement] = STATE(615), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_attribute_declaration] = STATE(148), + [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(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(615), - [sym_co_return_statement] = STATE(615), - [sym_co_yield_statement] = STATE(615), - [sym_throw_statement] = STATE(615), - [sym_try_statement] = STATE(615), - [sym_raw_string_literal] = STATE(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -63089,10 +63239,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_attributed_declarator_repeat1] = STATE(148), [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -63101,23 +63251,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -63139,11 +63289,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -63156,48 +63306,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [230] = { - [sym_attribute_declaration] = STATE(230), - [sym_compound_statement] = STATE(1195), - [sym_attributed_statement] = STATE(1195), - [sym_labeled_statement] = STATE(1195), - [sym_expression_statement] = STATE(1195), - [sym_if_statement] = STATE(1195), - [sym_switch_statement] = STATE(1195), - [sym_case_statement] = STATE(1195), - [sym_while_statement] = STATE(1195), - [sym_do_statement] = STATE(1195), - [sym_for_statement] = STATE(1195), - [sym_return_statement] = STATE(1195), - [sym_break_statement] = STATE(1195), - [sym_continue_statement] = STATE(1195), - [sym_goto_statement] = STATE(1195), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(644), + [sym_attributed_statement] = STATE(643), + [sym_labeled_statement] = STATE(642), + [sym_expression_statement] = STATE(641), + [sym_if_statement] = STATE(640), + [sym_switch_statement] = STATE(639), + [sym_case_statement] = STATE(638), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(636), + [sym_for_statement] = STATE(635), + [sym_return_statement] = STATE(632), + [sym_break_statement] = STATE(631), + [sym_continue_statement] = STATE(630), + [sym_goto_statement] = STATE(629), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1195), - [sym_co_return_statement] = STATE(1195), - [sym_co_yield_statement] = STATE(1195), - [sym_throw_statement] = STATE(1195), - [sym_try_statement] = STATE(1195), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(628), + [sym_co_return_statement] = STATE(627), + [sym_co_yield_statement] = STATE(626), + [sym_throw_statement] = STATE(625), + [sym_try_statement] = STATE(623), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -63209,130 +63359,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(230), - [sym_identifier] = ACTIONS(2029), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(1879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(2035), - [anon_sym_LBRACK] = ACTIONS(1888), - [sym_primitive_type] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2041), - [anon_sym_case] = ACTIONS(1900), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(2044), - [anon_sym_do] = ACTIONS(2047), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2053), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_goto] = ACTIONS(2062), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1927), - [anon_sym_sizeof] = ACTIONS(1930), - [sym_number_literal] = ACTIONS(1933), - [anon_sym_L_SQUOTE] = ACTIONS(1936), - [anon_sym_u_SQUOTE] = ACTIONS(1936), - [anon_sym_U_SQUOTE] = ACTIONS(1936), - [anon_sym_u8_SQUOTE] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_L_DQUOTE] = ACTIONS(1939), - [anon_sym_u_DQUOTE] = ACTIONS(1939), - [anon_sym_U_DQUOTE] = ACTIONS(1939), - [anon_sym_u8_DQUOTE] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [sym_null] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(2065), - [anon_sym_delete] = ACTIONS(1951), - [anon_sym_throw] = ACTIONS(2068), - [anon_sym_co_return] = ACTIONS(2071), - [anon_sym_co_yield] = ACTIONS(2074), - [anon_sym_R_DQUOTE] = ACTIONS(1963), - [anon_sym_LR_DQUOTE] = ACTIONS(1963), - [anon_sym_uR_DQUOTE] = ACTIONS(1963), - [anon_sym_UR_DQUOTE] = ACTIONS(1963), - [anon_sym_u8R_DQUOTE] = ACTIONS(1963), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_requires] = ACTIONS(1972), - [sym_this] = ACTIONS(1942), - [sym_nullptr] = ACTIONS(1942), - }, - [231] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(614), - [sym_attributed_statement] = STATE(614), - [sym_labeled_statement] = STATE(614), - [sym_expression_statement] = STATE(614), - [sym_if_statement] = STATE(614), - [sym_switch_statement] = STATE(614), - [sym_case_statement] = STATE(614), - [sym_while_statement] = STATE(614), - [sym_do_statement] = STATE(614), - [sym_for_statement] = STATE(614), - [sym_return_statement] = STATE(614), - [sym_break_statement] = STATE(614), - [sym_continue_statement] = STATE(614), - [sym_goto_statement] = STATE(614), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(614), - [sym_co_return_statement] = STATE(614), - [sym_co_yield_statement] = STATE(614), - [sym_throw_statement] = STATE(614), - [sym_try_statement] = STATE(614), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_attributed_declarator_repeat1] = STATE(148), [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -63341,23 +63371,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -63379,11 +63409,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [231] = { + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(622), + [sym_attributed_statement] = STATE(621), + [sym_labeled_statement] = STATE(620), + [sym_expression_statement] = STATE(619), + [sym_if_statement] = STATE(618), + [sym_switch_statement] = STATE(617), + [sym_case_statement] = STATE(616), + [sym_while_statement] = STATE(615), + [sym_do_statement] = STATE(614), + [sym_for_statement] = STATE(613), + [sym_return_statement] = STATE(612), + [sym_break_statement] = STATE(611), + [sym_continue_statement] = STATE(610), + [sym_goto_statement] = STATE(609), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(608), + [sym_co_return_statement] = STATE(607), + [sym_co_yield_statement] = STATE(606), + [sym_throw_statement] = STATE(604), + [sym_try_statement] = STATE(603), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -63396,48 +63546,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [232] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(613), - [sym_attributed_statement] = STATE(613), - [sym_labeled_statement] = STATE(613), - [sym_expression_statement] = STATE(613), - [sym_if_statement] = STATE(613), - [sym_switch_statement] = STATE(613), - [sym_case_statement] = STATE(613), - [sym_while_statement] = STATE(613), - [sym_do_statement] = STATE(613), - [sym_for_statement] = STATE(613), - [sym_return_statement] = STATE(613), - [sym_break_statement] = STATE(613), - [sym_continue_statement] = STATE(613), - [sym_goto_statement] = STATE(613), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_attribute_declaration] = STATE(148), + [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(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(613), - [sym_co_return_statement] = STATE(613), - [sym_co_yield_statement] = STATE(613), - [sym_throw_statement] = STATE(613), - [sym_try_statement] = STATE(613), - [sym_raw_string_literal] = STATE(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -63449,10 +63599,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_attributed_declarator_repeat1] = STATE(148), [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -63461,23 +63611,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -63499,11 +63649,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -63516,48 +63666,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [233] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(612), - [sym_attributed_statement] = STATE(611), - [sym_labeled_statement] = STATE(610), - [sym_expression_statement] = STATE(609), - [sym_if_statement] = STATE(608), - [sym_switch_statement] = STATE(607), - [sym_case_statement] = STATE(606), - [sym_while_statement] = STATE(604), - [sym_do_statement] = STATE(603), - [sym_for_statement] = STATE(602), - [sym_return_statement] = STATE(601), - [sym_break_statement] = STATE(600), - [sym_continue_statement] = STATE(599), - [sym_goto_statement] = STATE(597), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(599), + [sym_attributed_statement] = STATE(597), + [sym_labeled_statement] = STATE(596), + [sym_expression_statement] = STATE(595), + [sym_if_statement] = STATE(594), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(592), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(590), + [sym_for_statement] = STATE(589), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(586), + [sym_goto_statement] = STATE(585), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(596), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(594), - [sym_throw_statement] = STATE(593), - [sym_try_statement] = STATE(592), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(584), + [sym_co_return_statement] = STATE(583), + [sym_co_yield_statement] = STATE(582), + [sym_throw_statement] = STATE(581), + [sym_try_statement] = STATE(580), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -63569,10 +63719,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_attributed_declarator_repeat1] = STATE(148), [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -63581,23 +63731,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -63619,11 +63769,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -63636,48 +63786,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [234] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(591), - [sym_attributed_statement] = STATE(590), - [sym_labeled_statement] = STATE(589), - [sym_expression_statement] = STATE(588), - [sym_if_statement] = STATE(587), - [sym_switch_statement] = STATE(586), - [sym_case_statement] = STATE(585), - [sym_while_statement] = STATE(584), - [sym_do_statement] = STATE(583), - [sym_for_statement] = STATE(582), - [sym_return_statement] = STATE(581), - [sym_break_statement] = STATE(580), - [sym_continue_statement] = STATE(578), - [sym_goto_statement] = STATE(575), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(579), + [sym_attributed_statement] = STATE(578), + [sym_labeled_statement] = STATE(575), + [sym_expression_statement] = STATE(574), + [sym_if_statement] = STATE(573), + [sym_switch_statement] = STATE(572), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(570), + [sym_do_statement] = STATE(569), + [sym_for_statement] = STATE(568), + [sym_return_statement] = STATE(567), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(565), + [sym_goto_statement] = STATE(563), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(574), - [sym_co_return_statement] = STATE(573), - [sym_co_yield_statement] = STATE(572), - [sym_throw_statement] = STATE(570), - [sym_try_statement] = STATE(569), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(562), + [sym_co_return_statement] = STATE(561), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(559), + [sym_try_statement] = STATE(558), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -63689,10 +63839,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_attributed_declarator_repeat1] = STATE(148), [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -63701,23 +63851,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -63739,11 +63889,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -63756,48 +63906,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [235] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(566), - [sym_attributed_statement] = STATE(566), - [sym_labeled_statement] = STATE(566), - [sym_expression_statement] = STATE(566), - [sym_if_statement] = STATE(566), - [sym_switch_statement] = STATE(566), - [sym_case_statement] = STATE(566), - [sym_while_statement] = STATE(566), - [sym_do_statement] = STATE(566), - [sym_for_statement] = STATE(566), - [sym_return_statement] = STATE(566), - [sym_break_statement] = STATE(566), - [sym_continue_statement] = STATE(566), - [sym_goto_statement] = STATE(566), - [sym__expression] = STATE(3748), + [sym_attribute_declaration] = STATE(254), + [sym_compound_statement] = STATE(555), + [sym_attributed_statement] = STATE(555), + [sym_labeled_statement] = STATE(555), + [sym_expression_statement] = STATE(555), + [sym_if_statement] = STATE(555), + [sym_switch_statement] = STATE(555), + [sym_case_statement] = STATE(555), + [sym_while_statement] = STATE(555), + [sym_do_statement] = STATE(555), + [sym_for_statement] = STATE(555), + [sym_return_statement] = STATE(555), + [sym_break_statement] = STATE(555), + [sym_continue_statement] = STATE(555), + [sym_goto_statement] = STATE(555), + [sym__expression] = STATE(3747), [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(566), - [sym_co_return_statement] = STATE(566), - [sym_co_yield_statement] = STATE(566), - [sym_throw_statement] = STATE(566), - [sym_try_statement] = STATE(566), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(555), + [sym_co_return_statement] = STATE(555), + [sym_co_yield_statement] = STATE(555), + [sym_throw_statement] = STATE(555), + [sym_try_statement] = STATE(555), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -63809,11 +63959,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1839), + [aux_sym_attributed_declarator_repeat1] = STATE(254), + [sym_identifier] = ACTIONS(2141), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63876,48 +64026,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [236] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(565), - [sym_attributed_statement] = STATE(565), - [sym_labeled_statement] = STATE(565), - [sym_expression_statement] = STATE(565), - [sym_if_statement] = STATE(565), - [sym_switch_statement] = STATE(565), - [sym_case_statement] = STATE(565), - [sym_while_statement] = STATE(565), - [sym_do_statement] = STATE(565), - [sym_for_statement] = STATE(565), - [sym_return_statement] = STATE(565), - [sym_break_statement] = STATE(565), - [sym_continue_statement] = STATE(565), - [sym_goto_statement] = STATE(565), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(665), + [sym_attributed_statement] = STATE(665), + [sym_labeled_statement] = STATE(665), + [sym_expression_statement] = STATE(665), + [sym_if_statement] = STATE(665), + [sym_switch_statement] = STATE(665), + [sym_case_statement] = STATE(665), + [sym_while_statement] = STATE(665), + [sym_do_statement] = STATE(665), + [sym_for_statement] = STATE(665), + [sym_return_statement] = STATE(665), + [sym_break_statement] = STATE(665), + [sym_continue_statement] = STATE(665), + [sym_goto_statement] = STATE(665), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(565), - [sym_co_return_statement] = STATE(565), - [sym_co_yield_statement] = STATE(565), - [sym_throw_statement] = STATE(565), - [sym_try_statement] = STATE(565), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(665), + [sym_co_return_statement] = STATE(665), + [sym_co_yield_statement] = STATE(665), + [sym_throw_statement] = STATE(665), + [sym_try_statement] = STATE(665), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -63929,11 +64079,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1839), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63941,23 +64091,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -63979,11 +64129,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -63996,288 +64146,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [237] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(563), - [sym_attributed_statement] = STATE(560), - [sym_labeled_statement] = STATE(559), - [sym_expression_statement] = STATE(558), - [sym_if_statement] = STATE(557), - [sym_switch_statement] = STATE(556), - [sym_case_statement] = STATE(555), - [sym_while_statement] = STATE(554), - [sym_do_statement] = STATE(553), - [sym_for_statement] = STATE(552), - [sym_return_statement] = STATE(551), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(549), - [sym_goto_statement] = STATE(548), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(547), - [sym_co_return_statement] = STATE(724), - [sym_co_yield_statement] = STATE(567), - [sym_throw_statement] = STATE(579), - [sym_try_statement] = STATE(626), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [238] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(627), - [sym_attributed_statement] = STATE(629), - [sym_labeled_statement] = STATE(634), - [sym_expression_statement] = STATE(636), - [sym_if_statement] = STATE(640), - [sym_switch_statement] = STATE(641), - [sym_case_statement] = STATE(649), - [sym_while_statement] = STATE(653), - [sym_do_statement] = STATE(659), - [sym_for_statement] = STATE(667), - [sym_return_statement] = STATE(669), - [sym_break_statement] = STATE(670), - [sym_continue_statement] = STATE(673), - [sym_goto_statement] = STATE(674), - [sym__expression] = STATE(3748), - [sym_comma_expression] = STATE(6914), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(685), - [sym_co_return_statement] = STATE(686), - [sym_co_yield_statement] = STATE(721), - [sym_throw_statement] = STATE(735), - [sym_try_statement] = STATE(745), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(197), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [239] = { - [sym_attribute_declaration] = STATE(253), - [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(3757), + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(420), + [sym_attributed_statement] = STATE(420), + [sym_labeled_statement] = STATE(420), + [sym_expression_statement] = STATE(420), + [sym_if_statement] = STATE(420), + [sym_switch_statement] = STATE(420), + [sym_case_statement] = STATE(420), + [sym_while_statement] = STATE(420), + [sym_do_statement] = STATE(420), + [sym_for_statement] = STATE(420), + [sym_return_statement] = STATE(420), + [sym_break_statement] = STATE(420), + [sym_continue_statement] = STATE(420), + [sym_goto_statement] = STATE(420), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [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(2568), + [sym_for_range_loop] = STATE(420), + [sym_co_return_statement] = STATE(420), + [sym_co_yield_statement] = STATE(420), + [sym_throw_statement] = STATE(420), + [sym_try_statement] = STATE(420), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -64289,11 +64199,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(1851), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64355,49 +64265,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [240] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1206), - [sym_attributed_statement] = STATE(1206), - [sym_labeled_statement] = STATE(1206), - [sym_expression_statement] = STATE(1206), - [sym_if_statement] = STATE(1206), - [sym_switch_statement] = STATE(1206), - [sym_case_statement] = STATE(1206), - [sym_while_statement] = STATE(1206), - [sym_do_statement] = STATE(1206), - [sym_for_statement] = STATE(1206), - [sym_return_statement] = STATE(1206), - [sym_break_statement] = STATE(1206), - [sym_continue_statement] = STATE(1206), - [sym_goto_statement] = STATE(1206), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), + [238] = { + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(418), + [sym_attributed_statement] = STATE(418), + [sym_labeled_statement] = STATE(418), + [sym_expression_statement] = STATE(418), + [sym_if_statement] = STATE(418), + [sym_switch_statement] = STATE(418), + [sym_case_statement] = STATE(418), + [sym_while_statement] = STATE(418), + [sym_do_statement] = STATE(418), + [sym_for_statement] = STATE(418), + [sym_return_statement] = STATE(418), + [sym_break_statement] = STATE(418), + [sym_continue_statement] = STATE(418), + [sym_goto_statement] = STATE(418), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1206), - [sym_co_return_statement] = STATE(1206), - [sym_co_yield_statement] = STATE(1206), - [sym_throw_statement] = STATE(1206), - [sym_try_statement] = STATE(1206), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(418), + [sym_co_return_statement] = STATE(418), + [sym_co_yield_statement] = STATE(418), + [sym_throw_statement] = STATE(418), + [sym_try_statement] = STATE(418), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -64409,11 +64319,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64421,23 +64331,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -64459,11 +64369,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [239] = { + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(662), + [sym_attributed_statement] = STATE(662), + [sym_labeled_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_if_statement] = STATE(662), + [sym_switch_statement] = STATE(662), + [sym_case_statement] = STATE(662), + [sym_while_statement] = STATE(662), + [sym_do_statement] = STATE(662), + [sym_for_statement] = STATE(662), + [sym_return_statement] = STATE(662), + [sym_break_statement] = STATE(662), + [sym_continue_statement] = STATE(662), + [sym_goto_statement] = STATE(662), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(662), + [sym_co_return_statement] = STATE(662), + [sym_co_yield_statement] = STATE(662), + [sym_throw_statement] = STATE(662), + [sym_try_statement] = STATE(662), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(730), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [240] = { + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(394), + [sym_attributed_statement] = STATE(395), + [sym_labeled_statement] = STATE(397), + [sym_expression_statement] = STATE(398), + [sym_if_statement] = STATE(399), + [sym_switch_statement] = STATE(400), + [sym_case_statement] = STATE(401), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(403), + [sym_for_statement] = STATE(404), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(408), + [sym_continue_statement] = STATE(409), + [sym_goto_statement] = STATE(410), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(411), + [sym_co_return_statement] = STATE(413), + [sym_co_yield_statement] = STATE(415), + [sym_throw_statement] = STATE(416), + [sym_try_statement] = STATE(417), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -64476,48 +64626,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [241] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1215), - [sym_attributed_statement] = STATE(1215), - [sym_labeled_statement] = STATE(1215), - [sym_expression_statement] = STATE(1215), - [sym_if_statement] = STATE(1215), - [sym_switch_statement] = STATE(1215), - [sym_case_statement] = STATE(1215), - [sym_while_statement] = STATE(1215), - [sym_do_statement] = STATE(1215), - [sym_for_statement] = STATE(1215), - [sym_return_statement] = STATE(1215), - [sym_break_statement] = STATE(1215), - [sym_continue_statement] = STATE(1215), - [sym_goto_statement] = STATE(1215), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(374), + [sym_attributed_statement] = STATE(375), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(377), + [sym_if_statement] = STATE(378), + [sym_switch_statement] = STATE(379), + [sym_case_statement] = STATE(380), + [sym_while_statement] = STATE(381), + [sym_do_statement] = STATE(382), + [sym_for_statement] = STATE(383), + [sym_return_statement] = STATE(384), + [sym_break_statement] = STATE(385), + [sym_continue_statement] = STATE(386), + [sym_goto_statement] = STATE(387), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1215), - [sym_co_return_statement] = STATE(1215), - [sym_co_yield_statement] = STATE(1215), - [sym_throw_statement] = STATE(1215), - [sym_try_statement] = STATE(1215), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(345), + [sym_co_yield_statement] = STATE(390), + [sym_throw_statement] = STATE(392), + [sym_try_statement] = STATE(393), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -64529,11 +64679,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64541,23 +64691,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -64579,11 +64729,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -64596,48 +64746,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [242] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1211), - [sym_attributed_statement] = STATE(1223), - [sym_labeled_statement] = STATE(1247), - [sym_expression_statement] = STATE(1248), - [sym_if_statement] = STATE(1251), - [sym_switch_statement] = STATE(1259), - [sym_case_statement] = STATE(1258), - [sym_while_statement] = STATE(1257), - [sym_do_statement] = STATE(1255), - [sym_for_statement] = STATE(1254), - [sym_return_statement] = STATE(1253), - [sym_break_statement] = STATE(1250), - [sym_continue_statement] = STATE(1249), - [sym_goto_statement] = STATE(1245), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(373), + [sym_attributed_statement] = STATE(373), + [sym_labeled_statement] = STATE(373), + [sym_expression_statement] = STATE(373), + [sym_if_statement] = STATE(373), + [sym_switch_statement] = STATE(373), + [sym_case_statement] = STATE(373), + [sym_while_statement] = STATE(373), + [sym_do_statement] = STATE(373), + [sym_for_statement] = STATE(373), + [sym_return_statement] = STATE(373), + [sym_break_statement] = STATE(373), + [sym_continue_statement] = STATE(373), + [sym_goto_statement] = STATE(373), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1243), - [sym_co_return_statement] = STATE(1242), - [sym_co_yield_statement] = STATE(1241), - [sym_throw_statement] = STATE(1225), - [sym_try_statement] = STATE(1221), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(373), + [sym_co_return_statement] = STATE(373), + [sym_co_yield_statement] = STATE(373), + [sym_throw_statement] = STATE(373), + [sym_try_statement] = STATE(373), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -64649,11 +64799,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64661,23 +64811,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -64699,11 +64849,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -64716,48 +64866,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [243] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1177), - [sym_attributed_statement] = STATE(1176), - [sym_labeled_statement] = STATE(1172), - [sym_expression_statement] = STATE(1166), - [sym_if_statement] = STATE(1161), - [sym_switch_statement] = STATE(1160), - [sym_case_statement] = STATE(1159), - [sym_while_statement] = STATE(1156), - [sym_do_statement] = STATE(1152), - [sym_for_statement] = STATE(1149), - [sym_return_statement] = STATE(1148), - [sym_break_statement] = STATE(1228), - [sym_continue_statement] = STATE(1185), - [sym_goto_statement] = STATE(1141), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), + [sym_attribute_declaration] = STATE(235), + [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(3747), + [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1147), - [sym_co_return_statement] = STATE(1174), - [sym_co_yield_statement] = STATE(1186), - [sym_throw_statement] = STATE(1187), - [sym_try_statement] = STATE(1208), - [sym_raw_string_literal] = STATE(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -64769,11 +64919,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64781,23 +64931,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(536), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -64819,11 +64969,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -64836,48 +64986,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [244] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1178), - [sym_attributed_statement] = STATE(1178), - [sym_labeled_statement] = STATE(1178), - [sym_expression_statement] = STATE(1178), - [sym_if_statement] = STATE(1178), - [sym_switch_statement] = STATE(1178), - [sym_case_statement] = STATE(1178), - [sym_while_statement] = STATE(1178), - [sym_do_statement] = STATE(1178), - [sym_for_statement] = STATE(1178), - [sym_return_statement] = STATE(1178), - [sym_break_statement] = STATE(1178), - [sym_continue_statement] = STATE(1178), - [sym_goto_statement] = STATE(1178), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(649), + [sym_attributed_statement] = STATE(649), + [sym_labeled_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_if_statement] = STATE(649), + [sym_switch_statement] = STATE(649), + [sym_case_statement] = STATE(649), + [sym_while_statement] = STATE(649), + [sym_do_statement] = STATE(649), + [sym_for_statement] = STATE(649), + [sym_return_statement] = STATE(649), + [sym_break_statement] = STATE(649), + [sym_continue_statement] = STATE(649), + [sym_goto_statement] = STATE(649), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1178), - [sym_co_return_statement] = STATE(1178), - [sym_co_yield_statement] = STATE(1178), - [sym_throw_statement] = STATE(1178), - [sym_try_statement] = STATE(1178), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(649), + [sym_co_return_statement] = STATE(649), + [sym_co_yield_statement] = STATE(649), + [sym_throw_statement] = STATE(649), + [sym_try_statement] = STATE(649), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -64889,11 +65039,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64901,23 +65051,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(536), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -64939,11 +65089,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -64956,48 +65106,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [245] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(484), - [sym_attributed_statement] = STATE(484), - [sym_labeled_statement] = STATE(484), - [sym_expression_statement] = STATE(484), - [sym_if_statement] = STATE(484), - [sym_switch_statement] = STATE(484), - [sym_case_statement] = STATE(484), - [sym_while_statement] = STATE(484), - [sym_do_statement] = STATE(484), - [sym_for_statement] = STATE(484), - [sym_return_statement] = STATE(484), - [sym_break_statement] = STATE(484), - [sym_continue_statement] = STATE(484), - [sym_goto_statement] = STATE(484), - [sym__expression] = STATE(3757), + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(372), + [sym_attributed_statement] = STATE(372), + [sym_labeled_statement] = STATE(372), + [sym_expression_statement] = STATE(372), + [sym_if_statement] = STATE(372), + [sym_switch_statement] = STATE(372), + [sym_case_statement] = STATE(372), + [sym_while_statement] = STATE(372), + [sym_do_statement] = STATE(372), + [sym_for_statement] = STATE(372), + [sym_return_statement] = STATE(372), + [sym_break_statement] = STATE(372), + [sym_continue_statement] = STATE(372), + [sym_goto_statement] = STATE(372), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(484), - [sym_co_return_statement] = STATE(484), - [sym_co_yield_statement] = STATE(484), - [sym_throw_statement] = STATE(484), - [sym_try_statement] = STATE(484), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(372), + [sym_co_return_statement] = STATE(372), + [sym_co_yield_statement] = STATE(372), + [sym_throw_statement] = STATE(372), + [sym_try_statement] = STATE(372), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -65009,11 +65159,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65076,48 +65226,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [246] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(482), - [sym_attributed_statement] = STATE(482), - [sym_labeled_statement] = STATE(482), - [sym_expression_statement] = STATE(482), - [sym_if_statement] = STATE(482), - [sym_switch_statement] = STATE(482), - [sym_case_statement] = STATE(482), - [sym_while_statement] = STATE(482), - [sym_do_statement] = STATE(482), - [sym_for_statement] = STATE(482), - [sym_return_statement] = STATE(482), - [sym_break_statement] = STATE(482), - [sym_continue_statement] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(661), + [sym_attributed_statement] = STATE(661), + [sym_labeled_statement] = STATE(661), + [sym_expression_statement] = STATE(661), + [sym_if_statement] = STATE(661), + [sym_switch_statement] = STATE(661), + [sym_case_statement] = STATE(661), + [sym_while_statement] = STATE(661), + [sym_do_statement] = STATE(661), + [sym_for_statement] = STATE(661), + [sym_return_statement] = STATE(661), + [sym_break_statement] = STATE(661), + [sym_continue_statement] = STATE(661), + [sym_goto_statement] = STATE(661), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(482), - [sym_co_return_statement] = STATE(482), - [sym_co_yield_statement] = STATE(482), - [sym_throw_statement] = STATE(482), - [sym_try_statement] = STATE(482), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(661), + [sym_co_return_statement] = STATE(661), + [sym_co_yield_statement] = STATE(661), + [sym_throw_statement] = STATE(661), + [sym_try_statement] = STATE(661), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -65129,11 +65279,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65141,23 +65291,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -65179,11 +65329,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -65196,48 +65346,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [247] = { - [sym_attribute_declaration] = STATE(142), - [sym_compound_statement] = STATE(852), - [sym_attributed_statement] = STATE(852), - [sym_labeled_statement] = STATE(852), - [sym_expression_statement] = STATE(852), - [sym_if_statement] = STATE(852), - [sym_switch_statement] = STATE(852), - [sym_case_statement] = STATE(852), - [sym_while_statement] = STATE(852), - [sym_do_statement] = STATE(852), - [sym_for_statement] = STATE(852), - [sym_return_statement] = STATE(852), - [sym_break_statement] = STATE(852), - [sym_continue_statement] = STATE(852), - [sym_goto_statement] = STATE(852), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(652), + [sym_attributed_statement] = STATE(652), + [sym_labeled_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(652), + [sym_switch_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_do_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_return_statement] = STATE(652), + [sym_break_statement] = STATE(652), + [sym_continue_statement] = STATE(652), + [sym_goto_statement] = STATE(652), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(852), - [sym_co_return_statement] = STATE(852), - [sym_co_yield_statement] = STATE(852), - [sym_throw_statement] = STATE(852), - [sym_try_statement] = STATE(852), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(652), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(652), + [sym_throw_statement] = STATE(652), + [sym_try_statement] = STATE(652), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -65249,11 +65399,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(1841), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65261,23 +65411,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(536), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -65299,11 +65449,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -65316,48 +65466,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [248] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(479), - [sym_attributed_statement] = STATE(479), - [sym_labeled_statement] = STATE(479), - [sym_expression_statement] = STATE(479), - [sym_if_statement] = STATE(479), - [sym_switch_statement] = STATE(479), - [sym_case_statement] = STATE(479), - [sym_while_statement] = STATE(479), - [sym_do_statement] = STATE(479), - [sym_for_statement] = STATE(479), - [sym_return_statement] = STATE(479), - [sym_break_statement] = STATE(479), - [sym_continue_statement] = STATE(479), - [sym_goto_statement] = STATE(479), - [sym__expression] = STATE(3757), + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(371), + [sym_attributed_statement] = STATE(371), + [sym_labeled_statement] = STATE(371), + [sym_expression_statement] = STATE(371), + [sym_if_statement] = STATE(371), + [sym_switch_statement] = STATE(371), + [sym_case_statement] = STATE(371), + [sym_while_statement] = STATE(371), + [sym_do_statement] = STATE(371), + [sym_for_statement] = STATE(371), + [sym_return_statement] = STATE(371), + [sym_break_statement] = STATE(371), + [sym_continue_statement] = STATE(371), + [sym_goto_statement] = STATE(371), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(479), - [sym_co_return_statement] = STATE(479), - [sym_co_yield_statement] = STATE(479), - [sym_throw_statement] = STATE(479), - [sym_try_statement] = STATE(479), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(371), + [sym_co_return_statement] = STATE(371), + [sym_co_yield_statement] = STATE(371), + [sym_throw_statement] = STATE(371), + [sym_try_statement] = STATE(371), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -65369,11 +65519,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65436,528 +65586,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [249] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1179), - [sym_attributed_statement] = STATE(1179), - [sym_labeled_statement] = STATE(1179), - [sym_expression_statement] = STATE(1179), - [sym_if_statement] = STATE(1179), - [sym_switch_statement] = STATE(1179), - [sym_case_statement] = STATE(1179), - [sym_while_statement] = STATE(1179), - [sym_do_statement] = STATE(1179), - [sym_for_statement] = STATE(1179), - [sym_return_statement] = STATE(1179), - [sym_break_statement] = STATE(1179), - [sym_continue_statement] = STATE(1179), - [sym_goto_statement] = STATE(1179), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1179), - [sym_co_return_statement] = STATE(1179), - [sym_co_yield_statement] = STATE(1179), - [sym_throw_statement] = STATE(1179), - [sym_try_statement] = STATE(1179), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [250] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1188), - [sym_attributed_statement] = STATE(1188), - [sym_labeled_statement] = STATE(1188), - [sym_expression_statement] = STATE(1188), - [sym_if_statement] = STATE(1188), - [sym_switch_statement] = STATE(1188), - [sym_case_statement] = STATE(1188), - [sym_while_statement] = STATE(1188), - [sym_do_statement] = STATE(1188), - [sym_for_statement] = STATE(1188), - [sym_return_statement] = STATE(1188), - [sym_break_statement] = STATE(1188), - [sym_continue_statement] = STATE(1188), - [sym_goto_statement] = STATE(1188), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1188), - [sym_co_return_statement] = STATE(1188), - [sym_co_yield_statement] = STATE(1188), - [sym_throw_statement] = STATE(1188), - [sym_try_statement] = STATE(1188), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [251] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1191), - [sym_attributed_statement] = STATE(1191), - [sym_labeled_statement] = STATE(1191), - [sym_expression_statement] = STATE(1191), - [sym_if_statement] = STATE(1191), - [sym_switch_statement] = STATE(1191), - [sym_case_statement] = STATE(1191), - [sym_while_statement] = STATE(1191), - [sym_do_statement] = STATE(1191), - [sym_for_statement] = STATE(1191), - [sym_return_statement] = STATE(1191), - [sym_break_statement] = STATE(1191), - [sym_continue_statement] = STATE(1191), - [sym_goto_statement] = STATE(1191), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1191), - [sym_co_return_statement] = STATE(1191), - [sym_co_yield_statement] = STATE(1191), - [sym_throw_statement] = STATE(1191), - [sym_try_statement] = STATE(1191), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [252] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1192), - [sym_attributed_statement] = STATE(1192), - [sym_labeled_statement] = STATE(1192), - [sym_expression_statement] = STATE(1192), - [sym_if_statement] = STATE(1192), - [sym_switch_statement] = STATE(1192), - [sym_case_statement] = STATE(1192), - [sym_while_statement] = STATE(1192), - [sym_do_statement] = STATE(1192), - [sym_for_statement] = STATE(1192), - [sym_return_statement] = STATE(1192), - [sym_break_statement] = STATE(1192), - [sym_continue_statement] = STATE(1192), - [sym_goto_statement] = STATE(1192), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1192), - [sym_co_return_statement] = STATE(1192), - [sym_co_yield_statement] = STATE(1192), - [sym_throw_statement] = STATE(1192), - [sym_try_statement] = STATE(1192), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [253] = { - [sym_attribute_declaration] = STATE(253), - [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(3757), + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(370), + [sym_attributed_statement] = STATE(370), + [sym_labeled_statement] = STATE(370), + [sym_expression_statement] = STATE(370), + [sym_if_statement] = STATE(370), + [sym_switch_statement] = STATE(370), + [sym_case_statement] = STATE(370), + [sym_while_statement] = STATE(370), + [sym_do_statement] = STATE(370), + [sym_for_statement] = STATE(370), + [sym_return_statement] = STATE(370), + [sym_break_statement] = STATE(370), + [sym_continue_statement] = STATE(370), + [sym_goto_statement] = STATE(370), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [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(2568), + [sym_for_range_loop] = STATE(370), + [sym_co_return_statement] = STATE(370), + [sym_co_yield_statement] = STATE(370), + [sym_throw_statement] = STATE(370), + [sym_try_statement] = STATE(370), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -65969,731 +65639,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2077), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_COLON_COLON] = ACTIONS(1879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(1888), - [sym_primitive_type] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_case] = ACTIONS(2092), - [anon_sym_default] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(2107), - [anon_sym_break] = ACTIONS(2110), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_goto] = ACTIONS(2116), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1927), - [anon_sym_sizeof] = ACTIONS(1930), - [sym_number_literal] = ACTIONS(1933), - [anon_sym_L_SQUOTE] = ACTIONS(1936), - [anon_sym_u_SQUOTE] = ACTIONS(1936), - [anon_sym_U_SQUOTE] = ACTIONS(1936), - [anon_sym_u8_SQUOTE] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_L_DQUOTE] = ACTIONS(1939), - [anon_sym_u_DQUOTE] = ACTIONS(1939), - [anon_sym_U_DQUOTE] = ACTIONS(1939), - [anon_sym_u8_DQUOTE] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [sym_null] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(2119), - [anon_sym_delete] = ACTIONS(1951), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_co_return] = ACTIONS(2125), - [anon_sym_co_yield] = ACTIONS(2128), - [anon_sym_R_DQUOTE] = ACTIONS(1963), - [anon_sym_LR_DQUOTE] = ACTIONS(1963), - [anon_sym_uR_DQUOTE] = ACTIONS(1963), - [anon_sym_UR_DQUOTE] = ACTIONS(1963), - [anon_sym_u8R_DQUOTE] = ACTIONS(1963), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_requires] = ACTIONS(1972), - [sym_this] = ACTIONS(1942), - [sym_nullptr] = ACTIONS(1942), - }, - [254] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1193), - [sym_attributed_statement] = STATE(1193), - [sym_labeled_statement] = STATE(1193), - [sym_expression_statement] = STATE(1193), - [sym_if_statement] = STATE(1193), - [sym_switch_statement] = STATE(1193), - [sym_case_statement] = STATE(1193), - [sym_while_statement] = STATE(1193), - [sym_do_statement] = STATE(1193), - [sym_for_statement] = STATE(1193), - [sym_return_statement] = STATE(1193), - [sym_break_statement] = STATE(1193), - [sym_continue_statement] = STATE(1193), - [sym_goto_statement] = STATE(1193), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1193), - [sym_co_return_statement] = STATE(1193), - [sym_co_yield_statement] = STATE(1193), - [sym_throw_statement] = STATE(1193), - [sym_try_statement] = STATE(1193), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [255] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1232), - [sym_attributed_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_expression_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_case_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_goto_statement] = STATE(1232), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1232), - [sym_co_return_statement] = STATE(1232), - [sym_co_yield_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [256] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1194), - [sym_attributed_statement] = STATE(1194), - [sym_labeled_statement] = STATE(1194), - [sym_expression_statement] = STATE(1194), - [sym_if_statement] = STATE(1194), - [sym_switch_statement] = STATE(1194), - [sym_case_statement] = STATE(1194), - [sym_while_statement] = STATE(1194), - [sym_do_statement] = STATE(1194), - [sym_for_statement] = STATE(1194), - [sym_return_statement] = STATE(1194), - [sym_break_statement] = STATE(1194), - [sym_continue_statement] = STATE(1194), - [sym_goto_statement] = STATE(1194), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1194), - [sym_co_return_statement] = STATE(1194), - [sym_co_yield_statement] = STATE(1194), - [sym_throw_statement] = STATE(1194), - [sym_try_statement] = STATE(1194), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [257] = { - [sym_attribute_declaration] = STATE(257), - [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(3705), - [sym_comma_expression] = STATE(6673), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(257), - [sym_identifier] = ACTIONS(2131), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(1879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(1888), - [sym_primitive_type] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2143), - [anon_sym_case] = ACTIONS(2146), - [anon_sym_default] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_goto] = ACTIONS(2170), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1927), - [anon_sym_sizeof] = ACTIONS(1930), - [sym_number_literal] = ACTIONS(1933), - [anon_sym_L_SQUOTE] = ACTIONS(1936), - [anon_sym_u_SQUOTE] = ACTIONS(1936), - [anon_sym_U_SQUOTE] = ACTIONS(1936), - [anon_sym_u8_SQUOTE] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_L_DQUOTE] = ACTIONS(1939), - [anon_sym_u_DQUOTE] = ACTIONS(1939), - [anon_sym_U_DQUOTE] = ACTIONS(1939), - [anon_sym_u8_DQUOTE] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [sym_null] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_delete] = ACTIONS(1951), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_co_return] = ACTIONS(2179), - [anon_sym_co_yield] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(1963), - [anon_sym_LR_DQUOTE] = ACTIONS(1963), - [anon_sym_uR_DQUOTE] = ACTIONS(1963), - [anon_sym_UR_DQUOTE] = ACTIONS(1963), - [anon_sym_u8R_DQUOTE] = ACTIONS(1963), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_requires] = ACTIONS(1972), - [sym_this] = ACTIONS(1942), - [sym_nullptr] = ACTIONS(1942), - }, - [258] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1216), - [sym_attributed_statement] = STATE(1216), - [sym_labeled_statement] = STATE(1216), - [sym_expression_statement] = STATE(1216), - [sym_if_statement] = STATE(1216), - [sym_switch_statement] = STATE(1216), - [sym_case_statement] = STATE(1216), - [sym_while_statement] = STATE(1216), - [sym_do_statement] = STATE(1216), - [sym_for_statement] = STATE(1216), - [sym_return_statement] = STATE(1216), - [sym_break_statement] = STATE(1216), - [sym_continue_statement] = STATE(1216), - [sym_goto_statement] = STATE(1216), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1216), - [sym_co_return_statement] = STATE(1216), - [sym_co_yield_statement] = STATE(1216), - [sym_throw_statement] = STATE(1216), - [sym_try_statement] = STATE(1216), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [259] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(346), - [sym_attributed_statement] = STATE(346), - [sym_labeled_statement] = STATE(346), - [sym_expression_statement] = STATE(346), - [sym_if_statement] = STATE(346), - [sym_switch_statement] = STATE(346), - [sym_case_statement] = STATE(346), - [sym_while_statement] = STATE(346), - [sym_do_statement] = STATE(346), - [sym_for_statement] = STATE(346), - [sym_return_statement] = STATE(346), - [sym_break_statement] = STATE(346), - [sym_continue_statement] = STATE(346), - [sym_goto_statement] = STATE(346), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(346), - [sym_co_return_statement] = STATE(346), - [sym_co_yield_statement] = STATE(346), - [sym_throw_statement] = STATE(346), - [sym_try_statement] = STATE(346), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66755,49 +65705,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [260] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1196), - [sym_attributed_statement] = STATE(1196), - [sym_labeled_statement] = STATE(1196), - [sym_expression_statement] = STATE(1196), - [sym_if_statement] = STATE(1196), - [sym_switch_statement] = STATE(1196), - [sym_case_statement] = STATE(1196), - [sym_while_statement] = STATE(1196), - [sym_do_statement] = STATE(1196), - [sym_for_statement] = STATE(1196), - [sym_return_statement] = STATE(1196), - [sym_break_statement] = STATE(1196), - [sym_continue_statement] = STATE(1196), - [sym_goto_statement] = STATE(1196), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), + [250] = { + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(369), + [sym_attributed_statement] = STATE(369), + [sym_labeled_statement] = STATE(369), + [sym_expression_statement] = STATE(369), + [sym_if_statement] = STATE(369), + [sym_switch_statement] = STATE(369), + [sym_case_statement] = STATE(369), + [sym_while_statement] = STATE(369), + [sym_do_statement] = STATE(369), + [sym_for_statement] = STATE(369), + [sym_return_statement] = STATE(369), + [sym_break_statement] = STATE(369), + [sym_continue_statement] = STATE(369), + [sym_goto_statement] = STATE(369), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1196), - [sym_co_return_statement] = STATE(1196), - [sym_co_yield_statement] = STATE(1196), - [sym_throw_statement] = STATE(1196), - [sym_try_statement] = STATE(1196), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(369), + [sym_co_return_statement] = STATE(369), + [sym_co_yield_statement] = STATE(369), + [sym_throw_statement] = STATE(369), + [sym_try_statement] = STATE(369), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -66809,11 +65759,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66821,23 +65771,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -66859,11 +65809,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -66875,289 +65825,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [261] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1123), - [sym_attributed_statement] = STATE(1123), - [sym_labeled_statement] = STATE(1123), - [sym_expression_statement] = STATE(1123), - [sym_if_statement] = STATE(1123), - [sym_switch_statement] = STATE(1123), - [sym_case_statement] = STATE(1123), - [sym_while_statement] = STATE(1123), - [sym_do_statement] = STATE(1123), - [sym_for_statement] = STATE(1123), - [sym_return_statement] = STATE(1123), - [sym_break_statement] = STATE(1123), - [sym_continue_statement] = STATE(1123), - [sym_goto_statement] = STATE(1123), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1123), - [sym_co_return_statement] = STATE(1123), - [sym_co_yield_statement] = STATE(1123), - [sym_throw_statement] = STATE(1123), - [sym_try_statement] = STATE(1123), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [262] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(1202), - [sym_attributed_statement] = STATE(1202), - [sym_labeled_statement] = STATE(1202), - [sym_expression_statement] = STATE(1202), - [sym_if_statement] = STATE(1202), - [sym_switch_statement] = STATE(1202), - [sym_case_statement] = STATE(1202), - [sym_while_statement] = STATE(1202), - [sym_do_statement] = STATE(1202), - [sym_for_statement] = STATE(1202), - [sym_return_statement] = STATE(1202), - [sym_break_statement] = STATE(1202), - [sym_continue_statement] = STATE(1202), - [sym_goto_statement] = STATE(1202), - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6772), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(1202), - [sym_co_return_statement] = STATE(1202), - [sym_co_yield_statement] = STATE(1202), - [sym_throw_statement] = STATE(1202), - [sym_try_statement] = STATE(1202), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_co_return] = ACTIONS(1387), - [anon_sym_co_yield] = ACTIONS(1389), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [263] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(6692), - [sym_attributed_statement] = STATE(6692), - [sym_labeled_statement] = STATE(6692), - [sym_expression_statement] = STATE(6692), - [sym_if_statement] = STATE(6692), - [sym_switch_statement] = STATE(6692), - [sym_case_statement] = STATE(6692), - [sym_while_statement] = STATE(6692), - [sym_do_statement] = STATE(6692), - [sym_for_statement] = STATE(6692), - [sym_return_statement] = STATE(6692), - [sym_break_statement] = STATE(6692), - [sym_continue_statement] = STATE(6692), - [sym_goto_statement] = STATE(6692), - [sym__expression] = STATE(3668), + [251] = { + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(602), + [sym_attributed_statement] = STATE(602), + [sym_labeled_statement] = STATE(602), + [sym_expression_statement] = STATE(602), + [sym_if_statement] = STATE(602), + [sym_switch_statement] = STATE(602), + [sym_case_statement] = STATE(602), + [sym_while_statement] = STATE(602), + [sym_do_statement] = STATE(602), + [sym_for_statement] = STATE(602), + [sym_return_statement] = STATE(602), + [sym_break_statement] = STATE(602), + [sym_continue_statement] = STATE(602), + [sym_goto_statement] = STATE(602), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(6692), - [sym_co_return_statement] = STATE(6692), - [sym_co_yield_statement] = STATE(6692), - [sym_throw_statement] = STATE(6692), - [sym_try_statement] = STATE(6692), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(602), + [sym_co_return_statement] = STATE(602), + [sym_co_yield_statement] = STATE(602), + [sym_throw_statement] = STATE(602), + [sym_try_statement] = STATE(602), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -67169,11 +65879,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1839), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67187,13 +65897,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(83), [anon_sym_return] = ACTIONS(85), [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), @@ -67235,49 +65945,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [264] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(407), - [sym_attributed_statement] = STATE(407), - [sym_labeled_statement] = STATE(407), - [sym_expression_statement] = STATE(407), - [sym_if_statement] = STATE(407), - [sym_switch_statement] = STATE(407), - [sym_case_statement] = STATE(407), - [sym_while_statement] = STATE(407), - [sym_do_statement] = STATE(407), - [sym_for_statement] = STATE(407), - [sym_return_statement] = STATE(407), - [sym_break_statement] = STATE(407), - [sym_continue_statement] = STATE(407), - [sym_goto_statement] = STATE(407), - [sym__expression] = STATE(3757), + [252] = { + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(368), + [sym_attributed_statement] = STATE(368), + [sym_labeled_statement] = STATE(368), + [sym_expression_statement] = STATE(368), + [sym_if_statement] = STATE(368), + [sym_switch_statement] = STATE(368), + [sym_case_statement] = STATE(368), + [sym_while_statement] = STATE(368), + [sym_do_statement] = STATE(368), + [sym_for_statement] = STATE(368), + [sym_return_statement] = STATE(368), + [sym_break_statement] = STATE(368), + [sym_continue_statement] = STATE(368), + [sym_goto_statement] = STATE(368), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(407), - [sym_co_return_statement] = STATE(407), - [sym_co_yield_statement] = STATE(407), - [sym_throw_statement] = STATE(407), - [sym_try_statement] = STATE(407), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(368), + [sym_co_return_statement] = STATE(368), + [sym_co_yield_statement] = STATE(368), + [sym_throw_statement] = STATE(368), + [sym_try_statement] = STATE(368), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -67289,11 +65999,1451 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [253] = { + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(367), + [sym_attributed_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_expression_statement] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_case_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_goto_statement] = STATE(367), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(367), + [sym_co_return_statement] = STATE(367), + [sym_co_yield_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [254] = { + [sym_attribute_declaration] = STATE(254), + [sym_compound_statement] = STATE(555), + [sym_attributed_statement] = STATE(555), + [sym_labeled_statement] = STATE(555), + [sym_expression_statement] = STATE(555), + [sym_if_statement] = STATE(555), + [sym_switch_statement] = STATE(555), + [sym_case_statement] = STATE(555), + [sym_while_statement] = STATE(555), + [sym_do_statement] = STATE(555), + [sym_for_statement] = STATE(555), + [sym_return_statement] = STATE(555), + [sym_break_statement] = STATE(555), + [sym_continue_statement] = STATE(555), + [sym_goto_statement] = STATE(555), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(555), + [sym_co_return_statement] = STATE(555), + [sym_co_yield_statement] = STATE(555), + [sym_throw_statement] = STATE(555), + [sym_try_statement] = STATE(555), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(254), + [sym_identifier] = ACTIONS(2143), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(2146), + [anon_sym_COLON_COLON] = ACTIONS(1901), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(1910), + [sym_primitive_type] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2155), + [anon_sym_case] = ACTIONS(2158), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_goto] = ACTIONS(2182), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_sizeof] = ACTIONS(1952), + [sym_number_literal] = ACTIONS(1955), + [anon_sym_L_SQUOTE] = ACTIONS(1958), + [anon_sym_u_SQUOTE] = ACTIONS(1958), + [anon_sym_U_SQUOTE] = ACTIONS(1958), + [anon_sym_u8_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_L_DQUOTE] = ACTIONS(1961), + [anon_sym_u_DQUOTE] = ACTIONS(1961), + [anon_sym_U_DQUOTE] = ACTIONS(1961), + [anon_sym_u8_DQUOTE] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [sym_true] = ACTIONS(1964), + [sym_false] = ACTIONS(1964), + [sym_null] = ACTIONS(1964), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(2185), + [anon_sym_delete] = ACTIONS(1973), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_co_return] = ACTIONS(2191), + [anon_sym_co_yield] = ACTIONS(2194), + [anon_sym_R_DQUOTE] = ACTIONS(1985), + [anon_sym_LR_DQUOTE] = ACTIONS(1985), + [anon_sym_uR_DQUOTE] = ACTIONS(1985), + [anon_sym_UR_DQUOTE] = ACTIONS(1985), + [anon_sym_u8R_DQUOTE] = ACTIONS(1985), + [anon_sym_co_await] = ACTIONS(1988), + [anon_sym_new] = ACTIONS(1991), + [anon_sym_requires] = ACTIONS(1994), + [sym_this] = ACTIONS(1964), + [sym_nullptr] = ACTIONS(1964), + }, + [255] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(676), + [sym_attributed_statement] = STATE(676), + [sym_labeled_statement] = STATE(676), + [sym_expression_statement] = STATE(676), + [sym_if_statement] = STATE(676), + [sym_switch_statement] = STATE(676), + [sym_case_statement] = STATE(676), + [sym_while_statement] = STATE(676), + [sym_do_statement] = STATE(676), + [sym_for_statement] = STATE(676), + [sym_return_statement] = STATE(676), + [sym_break_statement] = STATE(676), + [sym_continue_statement] = STATE(676), + [sym_goto_statement] = STATE(676), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(676), + [sym_co_return_statement] = STATE(676), + [sym_co_yield_statement] = STATE(676), + [sym_throw_statement] = STATE(676), + [sym_try_statement] = STATE(676), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [256] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(6871), + [sym_attributed_statement] = STATE(6871), + [sym_labeled_statement] = STATE(6871), + [sym_expression_statement] = STATE(6871), + [sym_if_statement] = STATE(6871), + [sym_switch_statement] = STATE(6871), + [sym_case_statement] = STATE(6871), + [sym_while_statement] = STATE(6871), + [sym_do_statement] = STATE(6871), + [sym_for_statement] = STATE(6871), + [sym_return_statement] = STATE(6871), + [sym_break_statement] = STATE(6871), + [sym_continue_statement] = STATE(6871), + [sym_goto_statement] = STATE(6871), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(6871), + [sym_co_return_statement] = STATE(6871), + [sym_co_yield_statement] = STATE(6871), + [sym_throw_statement] = STATE(6871), + [sym_try_statement] = STATE(6871), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [257] = { + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(552), + [sym_attributed_statement] = STATE(552), + [sym_labeled_statement] = STATE(552), + [sym_expression_statement] = STATE(552), + [sym_if_statement] = STATE(552), + [sym_switch_statement] = STATE(552), + [sym_case_statement] = STATE(552), + [sym_while_statement] = STATE(552), + [sym_do_statement] = STATE(552), + [sym_for_statement] = STATE(552), + [sym_return_statement] = STATE(552), + [sym_break_statement] = STATE(552), + [sym_continue_statement] = STATE(552), + [sym_goto_statement] = STATE(552), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(552), + [sym_co_return_statement] = STATE(552), + [sym_co_yield_statement] = STATE(552), + [sym_throw_statement] = STATE(552), + [sym_try_statement] = STATE(552), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(730), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [258] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(709), + [sym_attributed_statement] = STATE(709), + [sym_labeled_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_if_statement] = STATE(709), + [sym_switch_statement] = STATE(709), + [sym_case_statement] = STATE(709), + [sym_while_statement] = STATE(709), + [sym_do_statement] = STATE(709), + [sym_for_statement] = STATE(709), + [sym_return_statement] = STATE(709), + [sym_break_statement] = STATE(709), + [sym_continue_statement] = STATE(709), + [sym_goto_statement] = STATE(709), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(709), + [sym_co_return_statement] = STATE(709), + [sym_co_yield_statement] = STATE(709), + [sym_throw_statement] = STATE(709), + [sym_try_statement] = STATE(709), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [259] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(7024), + [sym_attributed_statement] = STATE(7024), + [sym_labeled_statement] = STATE(7024), + [sym_expression_statement] = STATE(7024), + [sym_if_statement] = STATE(7024), + [sym_switch_statement] = STATE(7024), + [sym_case_statement] = STATE(7024), + [sym_while_statement] = STATE(7024), + [sym_do_statement] = STATE(7024), + [sym_for_statement] = STATE(7024), + [sym_return_statement] = STATE(7024), + [sym_break_statement] = STATE(7024), + [sym_continue_statement] = STATE(7024), + [sym_goto_statement] = STATE(7024), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(7024), + [sym_co_return_statement] = STATE(7024), + [sym_co_yield_statement] = STATE(7024), + [sym_throw_statement] = STATE(7024), + [sym_try_statement] = STATE(7024), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [260] = { + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(366), + [sym_attributed_statement] = STATE(366), + [sym_labeled_statement] = STATE(366), + [sym_expression_statement] = STATE(366), + [sym_if_statement] = STATE(366), + [sym_switch_statement] = STATE(366), + [sym_case_statement] = STATE(366), + [sym_while_statement] = STATE(366), + [sym_do_statement] = STATE(366), + [sym_for_statement] = STATE(366), + [sym_return_statement] = STATE(366), + [sym_break_statement] = STATE(366), + [sym_continue_statement] = STATE(366), + [sym_goto_statement] = STATE(366), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(366), + [sym_co_return_statement] = STATE(366), + [sym_co_yield_statement] = STATE(366), + [sym_throw_statement] = STATE(366), + [sym_try_statement] = STATE(366), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [261] = { + [sym_attribute_declaration] = STATE(296), + [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(3755), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [262] = { + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1209), + [sym_attributed_statement] = STATE(1203), + [sym_labeled_statement] = STATE(1200), + [sym_expression_statement] = STATE(1198), + [sym_if_statement] = STATE(1188), + [sym_switch_statement] = STATE(1185), + [sym_case_statement] = STATE(1182), + [sym_while_statement] = STATE(1179), + [sym_do_statement] = STATE(1178), + [sym_for_statement] = STATE(1174), + [sym_return_statement] = STATE(1205), + [sym_break_statement] = STATE(1163), + [sym_continue_statement] = STATE(1159), + [sym_goto_statement] = STATE(1152), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1136), + [sym_co_return_statement] = STATE(1132), + [sym_co_yield_statement] = STATE(1129), + [sym_throw_statement] = STATE(1125), + [sym_try_statement] = STATE(1120), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [263] = { + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1218), + [sym_attributed_statement] = STATE(1219), + [sym_labeled_statement] = STATE(1220), + [sym_expression_statement] = STATE(1221), + [sym_if_statement] = STATE(1107), + [sym_switch_statement] = STATE(1224), + [sym_case_statement] = STATE(1225), + [sym_while_statement] = STATE(1226), + [sym_do_statement] = STATE(1140), + [sym_for_statement] = STATE(1148), + [sym_return_statement] = STATE(1230), + [sym_break_statement] = STATE(1238), + [sym_continue_statement] = STATE(1241), + [sym_goto_statement] = STATE(1240), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1239), + [sym_co_return_statement] = STATE(1233), + [sym_co_yield_statement] = STATE(1231), + [sym_throw_statement] = STATE(1229), + [sym_try_statement] = STATE(1212), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [264] = { + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(363), + [sym_attributed_statement] = STATE(363), + [sym_labeled_statement] = STATE(363), + [sym_expression_statement] = STATE(363), + [sym_if_statement] = STATE(363), + [sym_switch_statement] = STATE(363), + [sym_case_statement] = STATE(363), + [sym_while_statement] = STATE(363), + [sym_do_statement] = STATE(363), + [sym_for_statement] = STATE(363), + [sym_return_statement] = STATE(363), + [sym_break_statement] = STATE(363), + [sym_continue_statement] = STATE(363), + [sym_goto_statement] = STATE(363), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(363), + [sym_co_return_statement] = STATE(363), + [sym_co_yield_statement] = STATE(363), + [sym_throw_statement] = STATE(363), + [sym_try_statement] = STATE(363), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67356,48 +67506,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [265] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(635), - [sym_attributed_statement] = STATE(635), - [sym_labeled_statement] = STATE(635), - [sym_expression_statement] = STATE(635), - [sym_if_statement] = STATE(635), - [sym_switch_statement] = STATE(635), - [sym_case_statement] = STATE(635), - [sym_while_statement] = STATE(635), - [sym_do_statement] = STATE(635), - [sym_for_statement] = STATE(635), - [sym_return_statement] = STATE(635), - [sym_break_statement] = STATE(635), - [sym_continue_statement] = STATE(635), - [sym_goto_statement] = STATE(635), - [sym__expression] = STATE(3705), + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(737), + [sym_attributed_statement] = STATE(737), + [sym_labeled_statement] = STATE(737), + [sym_expression_statement] = STATE(737), + [sym_if_statement] = STATE(737), + [sym_switch_statement] = STATE(737), + [sym_case_statement] = STATE(737), + [sym_while_statement] = STATE(737), + [sym_do_statement] = STATE(737), + [sym_for_statement] = STATE(737), + [sym_return_statement] = STATE(737), + [sym_break_statement] = STATE(737), + [sym_continue_statement] = STATE(737), + [sym_goto_statement] = STATE(737), + [sym__expression] = STATE(3713), [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(635), - [sym_co_return_statement] = STATE(635), - [sym_co_yield_statement] = STATE(635), - [sym_throw_statement] = STATE(635), - [sym_try_statement] = STATE(635), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(737), + [sym_co_return_statement] = STATE(737), + [sym_co_yield_statement] = STATE(737), + [sym_throw_statement] = STATE(737), + [sym_try_statement] = STATE(737), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -67409,11 +67559,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67421,23 +67571,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -67459,11 +67609,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -67476,48 +67626,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [266] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(631), - [sym_attributed_statement] = STATE(631), - [sym_labeled_statement] = STATE(631), - [sym_expression_statement] = STATE(631), - [sym_if_statement] = STATE(631), - [sym_switch_statement] = STATE(631), - [sym_case_statement] = STATE(631), - [sym_while_statement] = STATE(631), - [sym_do_statement] = STATE(631), - [sym_for_statement] = STATE(631), - [sym_return_statement] = STATE(631), - [sym_break_statement] = STATE(631), - [sym_continue_statement] = STATE(631), - [sym_goto_statement] = STATE(631), - [sym__expression] = STATE(3705), + [sym_attribute_declaration] = STATE(143), + [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(3713), [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(631), - [sym_co_return_statement] = STATE(631), - [sym_co_yield_statement] = STATE(631), - [sym_throw_statement] = STATE(631), - [sym_try_statement] = STATE(631), - [sym_raw_string_literal] = STATE(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -67529,11 +67679,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67541,23 +67691,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -67579,11 +67729,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -67596,48 +67746,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [267] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(623), - [sym_attributed_statement] = STATE(623), - [sym_labeled_statement] = STATE(623), - [sym_expression_statement] = STATE(623), - [sym_if_statement] = STATE(623), - [sym_switch_statement] = STATE(623), - [sym_case_statement] = STATE(623), - [sym_while_statement] = STATE(623), - [sym_do_statement] = STATE(623), - [sym_for_statement] = STATE(623), - [sym_return_statement] = STATE(623), - [sym_break_statement] = STATE(623), - [sym_continue_statement] = STATE(623), - [sym_goto_statement] = STATE(623), - [sym__expression] = STATE(3705), + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(702), + [sym_attributed_statement] = STATE(702), + [sym_labeled_statement] = STATE(702), + [sym_expression_statement] = STATE(702), + [sym_if_statement] = STATE(702), + [sym_switch_statement] = STATE(702), + [sym_case_statement] = STATE(702), + [sym_while_statement] = STATE(702), + [sym_do_statement] = STATE(702), + [sym_for_statement] = STATE(702), + [sym_return_statement] = STATE(702), + [sym_break_statement] = STATE(702), + [sym_continue_statement] = STATE(702), + [sym_goto_statement] = STATE(702), + [sym__expression] = STATE(3713), [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(623), - [sym_co_return_statement] = STATE(623), - [sym_co_yield_statement] = STATE(623), - [sym_throw_statement] = STATE(623), - [sym_try_statement] = STATE(623), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(702), + [sym_co_return_statement] = STATE(702), + [sym_co_yield_statement] = STATE(702), + [sym_throw_statement] = STATE(702), + [sym_try_statement] = STATE(702), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -67649,11 +67799,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1849), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67661,23 +67811,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -67699,11 +67849,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -67716,48 +67866,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [268] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(6871), - [sym_attributed_statement] = STATE(6871), - [sym_labeled_statement] = STATE(6871), - [sym_expression_statement] = STATE(6871), - [sym_if_statement] = STATE(6871), - [sym_switch_statement] = STATE(6871), - [sym_case_statement] = STATE(6871), - [sym_while_statement] = STATE(6871), - [sym_do_statement] = STATE(6871), - [sym_for_statement] = STATE(6871), - [sym_return_statement] = STATE(6871), - [sym_break_statement] = STATE(6871), - [sym_continue_statement] = STATE(6871), - [sym_goto_statement] = STATE(6871), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), + [sym_attribute_declaration] = STATE(200), + [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(3671), + [sym_comma_expression] = STATE(6772), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(6871), - [sym_co_return_statement] = STATE(6871), - [sym_co_yield_statement] = STATE(6871), - [sym_throw_statement] = STATE(6871), - [sym_try_statement] = STATE(6871), - [sym_raw_string_literal] = STATE(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -67769,11 +67919,491 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [269] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(740), + [sym_attributed_statement] = STATE(740), + [sym_labeled_statement] = STATE(740), + [sym_expression_statement] = STATE(740), + [sym_if_statement] = STATE(740), + [sym_switch_statement] = STATE(740), + [sym_case_statement] = STATE(740), + [sym_while_statement] = STATE(740), + [sym_do_statement] = STATE(740), + [sym_for_statement] = STATE(740), + [sym_return_statement] = STATE(740), + [sym_break_statement] = STATE(740), + [sym_continue_statement] = STATE(740), + [sym_goto_statement] = STATE(740), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(740), + [sym_co_return_statement] = STATE(740), + [sym_co_yield_statement] = STATE(740), + [sym_throw_statement] = STATE(740), + [sym_try_statement] = STATE(740), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [270] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(742), + [sym_attributed_statement] = STATE(742), + [sym_labeled_statement] = STATE(742), + [sym_expression_statement] = STATE(742), + [sym_if_statement] = STATE(742), + [sym_switch_statement] = STATE(742), + [sym_case_statement] = STATE(742), + [sym_while_statement] = STATE(742), + [sym_do_statement] = STATE(742), + [sym_for_statement] = STATE(742), + [sym_return_statement] = STATE(742), + [sym_break_statement] = STATE(742), + [sym_continue_statement] = STATE(742), + [sym_goto_statement] = STATE(742), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(742), + [sym_co_return_statement] = STATE(742), + [sym_co_yield_statement] = STATE(742), + [sym_throw_statement] = STATE(742), + [sym_try_statement] = STATE(742), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [271] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(743), + [sym_attributed_statement] = STATE(743), + [sym_labeled_statement] = STATE(743), + [sym_expression_statement] = STATE(743), + [sym_if_statement] = STATE(743), + [sym_switch_statement] = STATE(743), + [sym_case_statement] = STATE(743), + [sym_while_statement] = STATE(743), + [sym_do_statement] = STATE(743), + [sym_for_statement] = STATE(743), + [sym_return_statement] = STATE(743), + [sym_break_statement] = STATE(743), + [sym_continue_statement] = STATE(743), + [sym_goto_statement] = STATE(743), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(743), + [sym_co_return_statement] = STATE(743), + [sym_co_yield_statement] = STATE(743), + [sym_throw_statement] = STATE(743), + [sym_try_statement] = STATE(743), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [272] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(7061), + [sym_attributed_statement] = STATE(7061), + [sym_labeled_statement] = STATE(7061), + [sym_expression_statement] = STATE(7061), + [sym_if_statement] = STATE(7061), + [sym_switch_statement] = STATE(7061), + [sym_case_statement] = STATE(7061), + [sym_while_statement] = STATE(7061), + [sym_do_statement] = STATE(7061), + [sym_for_statement] = STATE(7061), + [sym_return_statement] = STATE(7061), + [sym_break_statement] = STATE(7061), + [sym_continue_statement] = STATE(7061), + [sym_goto_statement] = STATE(7061), + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(7061), + [sym_co_return_statement] = STATE(7061), + [sym_co_yield_statement] = STATE(7061), + [sym_throw_statement] = STATE(7061), + [sym_try_statement] = STATE(7061), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67787,13 +68417,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(2007), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(2011), [anon_sym_return] = ACTIONS(85), [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), @@ -67835,529 +68465,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [269] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(395), - [sym_attributed_statement] = STATE(395), - [sym_labeled_statement] = STATE(395), - [sym_expression_statement] = STATE(395), - [sym_if_statement] = STATE(395), - [sym_switch_statement] = STATE(395), - [sym_case_statement] = STATE(395), - [sym_while_statement] = STATE(395), - [sym_do_statement] = STATE(395), - [sym_for_statement] = STATE(395), - [sym_return_statement] = STATE(395), - [sym_break_statement] = STATE(395), - [sym_continue_statement] = STATE(395), - [sym_goto_statement] = STATE(395), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(395), - [sym_co_return_statement] = STATE(395), - [sym_co_yield_statement] = STATE(395), - [sym_throw_statement] = STATE(395), - [sym_try_statement] = STATE(395), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [270] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(394), - [sym_attributed_statement] = STATE(394), - [sym_labeled_statement] = STATE(394), - [sym_expression_statement] = STATE(394), - [sym_if_statement] = STATE(394), - [sym_switch_statement] = STATE(394), - [sym_case_statement] = STATE(394), - [sym_while_statement] = STATE(394), - [sym_do_statement] = STATE(394), - [sym_for_statement] = STATE(394), - [sym_return_statement] = STATE(394), - [sym_break_statement] = STATE(394), - [sym_continue_statement] = STATE(394), - [sym_goto_statement] = STATE(394), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(394), - [sym_co_return_statement] = STATE(394), - [sym_co_yield_statement] = STATE(394), - [sym_throw_statement] = STATE(394), - [sym_try_statement] = STATE(394), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [271] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(393), - [sym_attributed_statement] = STATE(393), - [sym_labeled_statement] = STATE(393), - [sym_expression_statement] = STATE(393), - [sym_if_statement] = STATE(393), - [sym_switch_statement] = STATE(393), - [sym_case_statement] = STATE(393), - [sym_while_statement] = STATE(393), - [sym_do_statement] = STATE(393), - [sym_for_statement] = STATE(393), - [sym_return_statement] = STATE(393), - [sym_break_statement] = STATE(393), - [sym_continue_statement] = STATE(393), - [sym_goto_statement] = STATE(393), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(393), - [sym_co_return_statement] = STATE(393), - [sym_co_yield_statement] = STATE(393), - [sym_throw_statement] = STATE(393), - [sym_try_statement] = STATE(393), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [272] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(392), - [sym_attributed_statement] = STATE(392), - [sym_labeled_statement] = STATE(392), - [sym_expression_statement] = STATE(392), - [sym_if_statement] = STATE(392), - [sym_switch_statement] = STATE(392), - [sym_case_statement] = STATE(392), - [sym_while_statement] = STATE(392), - [sym_do_statement] = STATE(392), - [sym_for_statement] = STATE(392), - [sym_return_statement] = STATE(392), - [sym_break_statement] = STATE(392), - [sym_continue_statement] = STATE(392), - [sym_goto_statement] = STATE(392), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(392), - [sym_co_return_statement] = STATE(392), - [sym_co_yield_statement] = STATE(392), - [sym_throw_statement] = STATE(392), - [sym_try_statement] = STATE(392), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, [273] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(391), - [sym_attributed_statement] = STATE(391), - [sym_labeled_statement] = STATE(391), - [sym_expression_statement] = STATE(391), - [sym_if_statement] = STATE(391), - [sym_switch_statement] = STATE(391), - [sym_case_statement] = STATE(391), - [sym_while_statement] = STATE(391), - [sym_do_statement] = STATE(391), - [sym_for_statement] = STATE(391), - [sym_return_statement] = STATE(391), - [sym_break_statement] = STATE(391), - [sym_continue_statement] = STATE(391), - [sym_goto_statement] = STATE(391), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), + [sym_attribute_declaration] = STATE(143), + [sym_compound_statement] = STATE(663), + [sym_attributed_statement] = STATE(663), + [sym_labeled_statement] = STATE(663), + [sym_expression_statement] = STATE(663), + [sym_if_statement] = STATE(663), + [sym_switch_statement] = STATE(663), + [sym_case_statement] = STATE(663), + [sym_while_statement] = STATE(663), + [sym_do_statement] = STATE(663), + [sym_for_statement] = STATE(663), + [sym_return_statement] = STATE(663), + [sym_break_statement] = STATE(663), + [sym_continue_statement] = STATE(663), + [sym_goto_statement] = STATE(663), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(391), - [sym_co_return_statement] = STATE(391), - [sym_co_yield_statement] = STATE(391), - [sym_throw_statement] = STATE(391), - [sym_try_statement] = STATE(391), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(663), + [sym_co_return_statement] = STATE(663), + [sym_co_yield_statement] = STATE(663), + [sym_throw_statement] = STATE(663), + [sym_try_statement] = STATE(663), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -68369,11 +68519,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), + [aux_sym_attributed_declarator_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1841), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68381,23 +68531,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(712), + [anon_sym_while] = ACTIONS(714), + [anon_sym_do] = ACTIONS(716), + [anon_sym_for] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_goto] = ACTIONS(726), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -68419,11 +68569,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), + [anon_sym_try] = ACTIONS(730), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_co_return] = ACTIONS(742), + [anon_sym_co_yield] = ACTIONS(744), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -68436,48 +68586,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [274] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(389), - [sym_attributed_statement] = STATE(389), - [sym_labeled_statement] = STATE(389), - [sym_expression_statement] = STATE(389), - [sym_if_statement] = STATE(389), - [sym_switch_statement] = STATE(389), - [sym_case_statement] = STATE(389), - [sym_while_statement] = STATE(389), - [sym_do_statement] = STATE(389), - [sym_for_statement] = STATE(389), - [sym_return_statement] = STATE(389), - [sym_break_statement] = STATE(389), - [sym_continue_statement] = STATE(389), - [sym_goto_statement] = STATE(389), - [sym__expression] = STATE(3757), + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(359), + [sym_attributed_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_expression_statement] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_case_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_goto_statement] = STATE(359), + [sym__expression] = STATE(3755), [sym_comma_expression] = STATE(7128), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(389), - [sym_co_return_statement] = STATE(389), - [sym_co_yield_statement] = STATE(389), - [sym_throw_statement] = STATE(389), - [sym_try_statement] = STATE(389), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(359), + [sym_co_return_statement] = STATE(359), + [sym_co_yield_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -68489,11 +68639,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68556,48 +68706,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [275] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(7024), - [sym_attributed_statement] = STATE(7024), - [sym_labeled_statement] = STATE(7024), - [sym_expression_statement] = STATE(7024), - [sym_if_statement] = STATE(7024), - [sym_switch_statement] = STATE(7024), - [sym_case_statement] = STATE(7024), - [sym_while_statement] = STATE(7024), - [sym_do_statement] = STATE(7024), - [sym_for_statement] = STATE(7024), - [sym_return_statement] = STATE(7024), - [sym_break_statement] = STATE(7024), - [sym_continue_statement] = STATE(7024), - [sym_goto_statement] = STATE(7024), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(745), + [sym_attributed_statement] = STATE(745), + [sym_labeled_statement] = STATE(745), + [sym_expression_statement] = STATE(745), + [sym_if_statement] = STATE(745), + [sym_switch_statement] = STATE(745), + [sym_case_statement] = STATE(745), + [sym_while_statement] = STATE(745), + [sym_do_statement] = STATE(745), + [sym_for_statement] = STATE(745), + [sym_return_statement] = STATE(745), + [sym_break_statement] = STATE(745), + [sym_continue_statement] = STATE(745), + [sym_goto_statement] = STATE(745), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(7024), - [sym_co_return_statement] = STATE(7024), - [sym_co_yield_statement] = STATE(7024), - [sym_throw_statement] = STATE(7024), - [sym_try_statement] = STATE(7024), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(745), + [sym_co_return_statement] = STATE(745), + [sym_co_yield_statement] = STATE(745), + [sym_throw_statement] = STATE(745), + [sym_try_statement] = STATE(745), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -68609,11 +68759,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68621,23 +68771,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(536), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -68659,11 +68809,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -68676,48 +68826,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [276] = { - [sym_attribute_declaration] = STATE(239), - [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(3757), - [sym_comma_expression] = STATE(7128), + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(746), + [sym_attributed_statement] = STATE(746), + [sym_labeled_statement] = STATE(746), + [sym_expression_statement] = STATE(746), + [sym_if_statement] = STATE(746), + [sym_switch_statement] = STATE(746), + [sym_case_statement] = STATE(746), + [sym_while_statement] = STATE(746), + [sym_do_statement] = STATE(746), + [sym_for_statement] = STATE(746), + [sym_return_statement] = STATE(746), + [sym_break_statement] = STATE(746), + [sym_continue_statement] = STATE(746), + [sym_goto_statement] = STATE(746), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [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(2568), + [sym_for_range_loop] = STATE(746), + [sym_co_return_statement] = STATE(746), + [sym_co_yield_statement] = STATE(746), + [sym_throw_statement] = STATE(746), + [sym_try_statement] = STATE(746), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -68729,11 +68879,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68741,23 +68891,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(536), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -68779,11 +68929,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -68796,168 +68946,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [277] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(387), - [sym_attributed_statement] = STATE(387), - [sym_labeled_statement] = STATE(387), - [sym_expression_statement] = STATE(387), - [sym_if_statement] = STATE(387), - [sym_switch_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_do_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_return_statement] = STATE(387), - [sym_break_statement] = STATE(387), - [sym_continue_statement] = STATE(387), - [sym_goto_statement] = STATE(387), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(387), - [sym_co_return_statement] = STATE(387), - [sym_co_yield_statement] = STATE(387), - [sym_throw_statement] = STATE(387), - [sym_try_statement] = STATE(387), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym_preproc_def] = STATE(277), + [sym_preproc_function_def] = STATE(277), + [sym_preproc_call] = STATE(277), + [sym_preproc_if_in_field_declaration_list] = STATE(277), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(277), + [sym_type_definition] = STATE(277), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4409), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4982), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3434), + [sym_sized_type_specifier] = STATE(3854), + [sym_enum_specifier] = STATE(3854), + [sym_struct_specifier] = STATE(3854), + [sym_union_specifier] = STATE(3854), + [sym__field_declaration_list_item] = STATE(277), + [sym_field_declaration] = STATE(277), + [sym_placeholder_type_specifier] = STATE(3854), + [sym_decltype_auto] = STATE(3901), + [sym_decltype] = STATE(3854), + [sym_class_specifier] = STATE(3854), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1936), + [sym_dependent_type] = STATE(3854), + [sym_template_declaration] = STATE(277), + [sym_operator_cast] = STATE(5459), + [sym_inline_method_definition] = STATE(277), + [sym__constructor_specifiers] = STATE(1936), + [sym_operator_cast_definition] = STATE(277), + [sym_operator_cast_declaration] = STATE(277), + [sym_constructor_or_destructor_definition] = STATE(277), + [sym_constructor_or_destructor_declaration] = STATE(277), + [sym_friend_declaration] = STATE(277), + [sym_access_specifier] = STATE(277), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(277), + [sym_alias_declaration] = STATE(277), + [sym_static_assert_declaration] = STATE(277), + [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3925), + [sym_qualified_operator_cast_identifier] = STATE(5459), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3606), + [aux_sym_operator_cast_definition_repeat1] = STATE(1936), + [sym_identifier] = ACTIONS(1725), + [aux_sym_preproc_def_token1] = ACTIONS(2197), + [aux_sym_preproc_if_token1] = ACTIONS(2200), + [aux_sym_preproc_if_token2] = ACTIONS(1734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2203), + [sym_preproc_directive] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_STAR] = ACTIONS(1748), + [anon_sym_AMP_AMP] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_typedef] = ACTIONS(2209), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym___attribute__] = ACTIONS(1763), + [anon_sym_COLON_COLON] = ACTIONS(1766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1769), + [anon_sym___declspec] = ACTIONS(1772), + [anon_sym___based] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_inline] = ACTIONS(1760), + [anon_sym_thread_local] = ACTIONS(1760), + [anon_sym_input] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_volatile] = ACTIONS(1781), + [anon_sym_restrict] = ACTIONS(1781), + [anon_sym__Atomic] = ACTIONS(1781), + [anon_sym_mutable] = ACTIONS(1781), + [anon_sym_constexpr] = ACTIONS(1781), + [anon_sym_constinit] = ACTIONS(1781), + [anon_sym_consteval] = ACTIONS(1781), + [anon_sym_signed] = ACTIONS(1784), + [anon_sym_unsigned] = ACTIONS(1784), + [anon_sym_long] = ACTIONS(1784), + [anon_sym_short] = ACTIONS(1784), + [sym_primitive_type] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1790), + [anon_sym_class] = ACTIONS(1793), + [anon_sym_struct] = ACTIONS(1796), + [anon_sym_union] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(1802), + [anon_sym_decltype] = ACTIONS(1805), + [anon_sym_virtual] = ACTIONS(1808), + [anon_sym_explicit] = ACTIONS(1811), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_typename] = ACTIONS(1817), + [anon_sym_template] = ACTIONS(2215), + [anon_sym_operator] = ACTIONS(1823), + [anon_sym_friend] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2224), }, [278] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(7061), - [sym_attributed_statement] = STATE(7061), - [sym_labeled_statement] = STATE(7061), - [sym_expression_statement] = STATE(7061), - [sym_if_statement] = STATE(7061), - [sym_switch_statement] = STATE(7061), - [sym_case_statement] = STATE(7061), - [sym_while_statement] = STATE(7061), - [sym_do_statement] = STATE(7061), - [sym_for_statement] = STATE(7061), - [sym_return_statement] = STATE(7061), - [sym_break_statement] = STATE(7061), - [sym_continue_statement] = STATE(7061), - [sym_goto_statement] = STATE(7061), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(747), + [sym_attributed_statement] = STATE(747), + [sym_labeled_statement] = STATE(747), + [sym_expression_statement] = STATE(747), + [sym_if_statement] = STATE(747), + [sym_switch_statement] = STATE(747), + [sym_case_statement] = STATE(747), + [sym_while_statement] = STATE(747), + [sym_do_statement] = STATE(747), + [sym_for_statement] = STATE(747), + [sym_return_statement] = STATE(747), + [sym_break_statement] = STATE(747), + [sym_continue_statement] = STATE(747), + [sym_goto_statement] = STATE(747), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(7061), - [sym_co_return_statement] = STATE(7061), - [sym_co_yield_statement] = STATE(7061), - [sym_throw_statement] = STATE(7061), - [sym_try_statement] = STATE(7061), - [sym_raw_string_literal] = STATE(2568), + [sym_for_range_loop] = STATE(747), + [sym_co_return_statement] = STATE(747), + [sym_co_yield_statement] = STATE(747), + [sym_throw_statement] = STATE(747), + [sym_try_statement] = STATE(747), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -68969,11 +69119,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68981,23 +69131,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(536), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -69019,11 +69169,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(119), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -69036,48 +69186,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [279] = { - [sym_attribute_declaration] = STATE(257), - [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(3705), - [sym_comma_expression] = STATE(6673), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1189), + [sym_attributed_statement] = STATE(1189), + [sym_labeled_statement] = STATE(1189), + [sym_expression_statement] = STATE(1189), + [sym_if_statement] = STATE(1189), + [sym_switch_statement] = STATE(1189), + [sym_case_statement] = STATE(1189), + [sym_while_statement] = STATE(1189), + [sym_do_statement] = STATE(1189), + [sym_for_statement] = STATE(1189), + [sym_return_statement] = STATE(1189), + [sym_break_statement] = STATE(1189), + [sym_continue_statement] = STATE(1189), + [sym_goto_statement] = STATE(1189), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [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(2568), + [sym_for_range_loop] = STATE(1189), + [sym_co_return_statement] = STATE(1189), + [sym_co_yield_statement] = STATE(1189), + [sym_throw_statement] = STATE(1189), + [sym_try_statement] = STATE(1189), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -69089,11 +69239,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(257), - [sym_identifier] = ACTIONS(1849), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69101,23 +69251,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(1308), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(1312), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(598), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -69139,11 +69289,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(602), + [anon_sym_try] = ACTIONS(1332), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_co_return] = ACTIONS(614), - [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -69156,48 +69306,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [280] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(385), - [sym_attributed_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_expression_statement] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_case_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_goto_statement] = STATE(385), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), + [sym_attribute_declaration] = STATE(280), + [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(3681), + [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(385), - [sym_co_return_statement] = STATE(385), - [sym_co_yield_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_raw_string_literal] = STATE(2568), + [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(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -69209,11 +69359,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(2227), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(1901), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(1910), + [sym_primitive_type] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(2041), + [anon_sym_case] = ACTIONS(2233), + [anon_sym_default] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_goto] = ACTIONS(2062), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_sizeof] = ACTIONS(1952), + [sym_number_literal] = ACTIONS(1955), + [anon_sym_L_SQUOTE] = ACTIONS(1958), + [anon_sym_u_SQUOTE] = ACTIONS(1958), + [anon_sym_U_SQUOTE] = ACTIONS(1958), + [anon_sym_u8_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_L_DQUOTE] = ACTIONS(1961), + [anon_sym_u_DQUOTE] = ACTIONS(1961), + [anon_sym_U_DQUOTE] = ACTIONS(1961), + [anon_sym_u8_DQUOTE] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [sym_true] = ACTIONS(1964), + [sym_false] = ACTIONS(1964), + [sym_null] = ACTIONS(1964), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(2065), + [anon_sym_delete] = ACTIONS(1973), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_co_return] = ACTIONS(2071), + [anon_sym_co_yield] = ACTIONS(2074), + [anon_sym_R_DQUOTE] = ACTIONS(1985), + [anon_sym_LR_DQUOTE] = ACTIONS(1985), + [anon_sym_uR_DQUOTE] = ACTIONS(1985), + [anon_sym_UR_DQUOTE] = ACTIONS(1985), + [anon_sym_u8R_DQUOTE] = ACTIONS(1985), + [anon_sym_co_await] = ACTIONS(1988), + [anon_sym_new] = ACTIONS(1991), + [anon_sym_requires] = ACTIONS(1994), + [sym_this] = ACTIONS(1964), + [sym_nullptr] = ACTIONS(1964), + }, + [281] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(748), + [sym_attributed_statement] = STATE(748), + [sym_labeled_statement] = STATE(748), + [sym_expression_statement] = STATE(748), + [sym_if_statement] = STATE(748), + [sym_switch_statement] = STATE(748), + [sym_case_statement] = STATE(748), + [sym_while_statement] = STATE(748), + [sym_do_statement] = STATE(748), + [sym_for_statement] = STATE(748), + [sym_return_statement] = STATE(748), + [sym_break_statement] = STATE(748), + [sym_continue_statement] = STATE(748), + [sym_goto_statement] = STATE(748), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(748), + [sym_co_return_statement] = STATE(748), + [sym_co_yield_statement] = STATE(748), + [sym_throw_statement] = STATE(748), + [sym_try_statement] = STATE(748), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69221,23 +69491,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(536), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -69259,11 +69529,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -69275,8 +69545,1448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [281] = { - [sym_attribute_declaration] = STATE(169), + [282] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(751), + [sym_attributed_statement] = STATE(751), + [sym_labeled_statement] = STATE(751), + [sym_expression_statement] = STATE(751), + [sym_if_statement] = STATE(751), + [sym_switch_statement] = STATE(751), + [sym_case_statement] = STATE(751), + [sym_while_statement] = STATE(751), + [sym_do_statement] = STATE(751), + [sym_for_statement] = STATE(751), + [sym_return_statement] = STATE(751), + [sym_break_statement] = STATE(751), + [sym_continue_statement] = STATE(751), + [sym_goto_statement] = STATE(751), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(751), + [sym_co_return_statement] = STATE(751), + [sym_co_yield_statement] = STATE(751), + [sym_throw_statement] = STATE(751), + [sym_try_statement] = STATE(751), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [283] = { + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1187), + [sym_attributed_statement] = STATE(1187), + [sym_labeled_statement] = STATE(1187), + [sym_expression_statement] = STATE(1187), + [sym_if_statement] = STATE(1187), + [sym_switch_statement] = STATE(1187), + [sym_case_statement] = STATE(1187), + [sym_while_statement] = STATE(1187), + [sym_do_statement] = STATE(1187), + [sym_for_statement] = STATE(1187), + [sym_return_statement] = STATE(1187), + [sym_break_statement] = STATE(1187), + [sym_continue_statement] = STATE(1187), + [sym_goto_statement] = STATE(1187), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1187), + [sym_co_return_statement] = STATE(1187), + [sym_co_yield_statement] = STATE(1187), + [sym_throw_statement] = STATE(1187), + [sym_try_statement] = STATE(1187), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [284] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(753), + [sym_attributed_statement] = STATE(753), + [sym_labeled_statement] = STATE(753), + [sym_expression_statement] = STATE(753), + [sym_if_statement] = STATE(753), + [sym_switch_statement] = STATE(753), + [sym_case_statement] = STATE(753), + [sym_while_statement] = STATE(753), + [sym_do_statement] = STATE(753), + [sym_for_statement] = STATE(753), + [sym_return_statement] = STATE(753), + [sym_break_statement] = STATE(753), + [sym_continue_statement] = STATE(753), + [sym_goto_statement] = STATE(753), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(753), + [sym_co_return_statement] = STATE(753), + [sym_co_yield_statement] = STATE(753), + [sym_throw_statement] = STATE(753), + [sym_try_statement] = STATE(753), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [285] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(754), + [sym_attributed_statement] = STATE(754), + [sym_labeled_statement] = STATE(754), + [sym_expression_statement] = STATE(754), + [sym_if_statement] = STATE(754), + [sym_switch_statement] = STATE(754), + [sym_case_statement] = STATE(754), + [sym_while_statement] = STATE(754), + [sym_do_statement] = STATE(754), + [sym_for_statement] = STATE(754), + [sym_return_statement] = STATE(754), + [sym_break_statement] = STATE(754), + [sym_continue_statement] = STATE(754), + [sym_goto_statement] = STATE(754), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(754), + [sym_co_return_statement] = STATE(754), + [sym_co_yield_statement] = STATE(754), + [sym_throw_statement] = STATE(754), + [sym_try_statement] = STATE(754), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [286] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(756), + [sym_attributed_statement] = STATE(757), + [sym_labeled_statement] = STATE(760), + [sym_expression_statement] = STATE(761), + [sym_if_statement] = STATE(763), + [sym_switch_statement] = STATE(766), + [sym_case_statement] = STATE(770), + [sym_while_statement] = STATE(771), + [sym_do_statement] = STATE(773), + [sym_for_statement] = STATE(774), + [sym_return_statement] = STATE(775), + [sym_break_statement] = STATE(779), + [sym_continue_statement] = STATE(780), + [sym_goto_statement] = STATE(781), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(784), + [sym_co_return_statement] = STATE(786), + [sym_co_yield_statement] = STATE(789), + [sym_throw_statement] = STATE(790), + [sym_try_statement] = STATE(791), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [287] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(792), + [sym_attributed_statement] = STATE(793), + [sym_labeled_statement] = STATE(794), + [sym_expression_statement] = STATE(795), + [sym_if_statement] = STATE(796), + [sym_switch_statement] = STATE(797), + [sym_case_statement] = STATE(798), + [sym_while_statement] = STATE(800), + [sym_do_statement] = STATE(802), + [sym_for_statement] = STATE(803), + [sym_return_statement] = STATE(804), + [sym_break_statement] = STATE(805), + [sym_continue_statement] = STATE(806), + [sym_goto_statement] = STATE(807), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(808), + [sym_co_return_statement] = STATE(811), + [sym_co_yield_statement] = STATE(814), + [sym_throw_statement] = STATE(829), + [sym_try_statement] = STATE(831), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [288] = { + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1119), + [sym_attributed_statement] = STATE(1119), + [sym_labeled_statement] = STATE(1119), + [sym_expression_statement] = STATE(1119), + [sym_if_statement] = STATE(1119), + [sym_switch_statement] = STATE(1119), + [sym_case_statement] = STATE(1119), + [sym_while_statement] = STATE(1119), + [sym_do_statement] = STATE(1119), + [sym_for_statement] = STATE(1119), + [sym_return_statement] = STATE(1119), + [sym_break_statement] = STATE(1119), + [sym_continue_statement] = STATE(1119), + [sym_goto_statement] = STATE(1119), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1119), + [sym_co_return_statement] = STATE(1119), + [sym_co_yield_statement] = STATE(1119), + [sym_throw_statement] = STATE(1119), + [sym_try_statement] = STATE(1119), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [289] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(832), + [sym_attributed_statement] = STATE(832), + [sym_labeled_statement] = STATE(832), + [sym_expression_statement] = STATE(832), + [sym_if_statement] = STATE(832), + [sym_switch_statement] = STATE(832), + [sym_case_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_statement] = STATE(832), + [sym_for_statement] = STATE(832), + [sym_return_statement] = STATE(832), + [sym_break_statement] = STATE(832), + [sym_continue_statement] = STATE(832), + [sym_goto_statement] = STATE(832), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(832), + [sym_co_return_statement] = STATE(832), + [sym_co_yield_statement] = STATE(832), + [sym_throw_statement] = STATE(832), + [sym_try_statement] = STATE(832), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [290] = { + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1210), + [sym_attributed_statement] = STATE(1210), + [sym_labeled_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_if_statement] = STATE(1210), + [sym_switch_statement] = STATE(1210), + [sym_case_statement] = STATE(1210), + [sym_while_statement] = STATE(1210), + [sym_do_statement] = STATE(1210), + [sym_for_statement] = STATE(1210), + [sym_return_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_goto_statement] = STATE(1210), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1210), + [sym_co_return_statement] = STATE(1210), + [sym_co_yield_statement] = STATE(1210), + [sym_throw_statement] = STATE(1210), + [sym_try_statement] = STATE(1210), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [291] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(833), + [sym_attributed_statement] = STATE(833), + [sym_labeled_statement] = STATE(833), + [sym_expression_statement] = STATE(833), + [sym_if_statement] = STATE(833), + [sym_switch_statement] = STATE(833), + [sym_case_statement] = STATE(833), + [sym_while_statement] = STATE(833), + [sym_do_statement] = STATE(833), + [sym_for_statement] = STATE(833), + [sym_return_statement] = STATE(833), + [sym_break_statement] = STATE(833), + [sym_continue_statement] = STATE(833), + [sym_goto_statement] = STATE(833), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(833), + [sym_co_return_statement] = STATE(833), + [sym_co_yield_statement] = STATE(833), + [sym_throw_statement] = STATE(833), + [sym_try_statement] = STATE(833), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [292] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(834), + [sym_attributed_statement] = STATE(834), + [sym_labeled_statement] = STATE(834), + [sym_expression_statement] = STATE(834), + [sym_if_statement] = STATE(834), + [sym_switch_statement] = STATE(834), + [sym_case_statement] = STATE(834), + [sym_while_statement] = STATE(834), + [sym_do_statement] = STATE(834), + [sym_for_statement] = STATE(834), + [sym_return_statement] = STATE(834), + [sym_break_statement] = STATE(834), + [sym_continue_statement] = STATE(834), + [sym_goto_statement] = STATE(834), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(834), + [sym_co_return_statement] = STATE(834), + [sym_co_yield_statement] = STATE(834), + [sym_throw_statement] = STATE(834), + [sym_try_statement] = STATE(834), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [293] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(835), + [sym_attributed_statement] = STATE(837), + [sym_labeled_statement] = STATE(839), + [sym_expression_statement] = STATE(840), + [sym_if_statement] = STATE(841), + [sym_switch_statement] = STATE(857), + [sym_case_statement] = STATE(858), + [sym_while_statement] = STATE(860), + [sym_do_statement] = STATE(861), + [sym_for_statement] = STATE(862), + [sym_return_statement] = STATE(863), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(867), + [sym_goto_statement] = STATE(868), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(870), + [sym_co_return_statement] = STATE(872), + [sym_co_yield_statement] = STATE(873), + [sym_throw_statement] = STATE(874), + [sym_try_statement] = STATE(876), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [294] = { + [sym_attribute_declaration] = STATE(196), [sym_compound_statement] = STATE(7090), [sym_attributed_statement] = STATE(7090), [sym_labeled_statement] = STATE(7090), @@ -69291,33 +71001,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(7090), [sym_continue_statement] = STATE(7090), [sym_goto_statement] = STATE(7090), - [sym__expression] = STATE(3668), + [sym__expression] = STATE(3681), [sym_comma_expression] = STATE(6976), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), [sym_for_range_loop] = STATE(7090), [sym_co_return_statement] = STATE(7090), [sym_co_yield_statement] = STATE(7090), [sym_throw_statement] = STATE(7090), [sym_try_statement] = STATE(7090), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -69329,11 +71039,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1853), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2005), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69347,13 +71057,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(974), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(2007), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(2009), [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(2011), [anon_sym_return] = ACTIONS(85), [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), @@ -69395,4113 +71105,2579 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [282] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(384), - [sym_attributed_statement] = STATE(384), - [sym_labeled_statement] = STATE(384), - [sym_expression_statement] = STATE(384), - [sym_if_statement] = STATE(384), - [sym_switch_statement] = STATE(384), - [sym_case_statement] = STATE(384), - [sym_while_statement] = STATE(384), - [sym_do_statement] = STATE(384), - [sym_for_statement] = STATE(384), - [sym_return_statement] = STATE(384), - [sym_break_statement] = STATE(384), - [sym_continue_statement] = STATE(384), - [sym_goto_statement] = STATE(384), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(384), - [sym_co_return_statement] = STATE(384), - [sym_co_yield_statement] = STATE(384), - [sym_throw_statement] = STATE(384), - [sym_try_statement] = STATE(384), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [283] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(382), - [sym_attributed_statement] = STATE(381), - [sym_labeled_statement] = STATE(380), - [sym_expression_statement] = STATE(379), - [sym_if_statement] = STATE(377), - [sym_switch_statement] = STATE(376), - [sym_case_statement] = STATE(375), - [sym_while_statement] = STATE(374), - [sym_do_statement] = STATE(373), - [sym_for_statement] = STATE(372), - [sym_return_statement] = STATE(371), - [sym_break_statement] = STATE(370), - [sym_continue_statement] = STATE(369), - [sym_goto_statement] = STATE(368), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(367), - [sym_co_return_statement] = STATE(366), - [sym_co_yield_statement] = STATE(365), - [sym_throw_statement] = STATE(364), - [sym_try_statement] = STATE(363), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [284] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(362), - [sym_attributed_statement] = STATE(361), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(359), - [sym_if_statement] = STATE(358), - [sym_switch_statement] = STATE(357), - [sym_case_statement] = STATE(356), - [sym_while_statement] = STATE(355), - [sym_do_statement] = STATE(354), - [sym_for_statement] = STATE(353), - [sym_return_statement] = STATE(352), - [sym_break_statement] = STATE(351), - [sym_continue_statement] = STATE(350), - [sym_goto_statement] = STATE(349), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(348), - [sym_co_return_statement] = STATE(347), - [sym_co_yield_statement] = STATE(421), - [sym_throw_statement] = STATE(424), - [sym_try_statement] = STATE(427), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [285] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(430), - [sym_attributed_statement] = STATE(430), - [sym_labeled_statement] = STATE(430), - [sym_expression_statement] = STATE(430), - [sym_if_statement] = STATE(430), - [sym_switch_statement] = STATE(430), - [sym_case_statement] = STATE(430), - [sym_while_statement] = STATE(430), - [sym_do_statement] = STATE(430), - [sym_for_statement] = STATE(430), - [sym_return_statement] = STATE(430), - [sym_break_statement] = STATE(430), - [sym_continue_statement] = STATE(430), - [sym_goto_statement] = STATE(430), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(430), - [sym_co_return_statement] = STATE(430), - [sym_co_yield_statement] = STATE(430), - [sym_throw_statement] = STATE(430), - [sym_try_statement] = STATE(430), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [286] = { - [sym_attribute_declaration] = STATE(239), - [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(3757), - [sym_comma_expression] = STATE(7128), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [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(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [287] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(437), - [sym_attributed_statement] = STATE(437), - [sym_labeled_statement] = STATE(437), - [sym_expression_statement] = STATE(437), - [sym_if_statement] = STATE(437), - [sym_switch_statement] = STATE(437), - [sym_case_statement] = STATE(437), - [sym_while_statement] = STATE(437), - [sym_do_statement] = STATE(437), - [sym_for_statement] = STATE(437), - [sym_return_statement] = STATE(437), - [sym_break_statement] = STATE(437), - [sym_continue_statement] = STATE(437), - [sym_goto_statement] = STATE(437), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(437), - [sym_co_return_statement] = STATE(437), - [sym_co_yield_statement] = STATE(437), - [sym_throw_statement] = STATE(437), - [sym_try_statement] = STATE(437), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [288] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(439), - [sym_attributed_statement] = STATE(441), - [sym_labeled_statement] = STATE(443), - [sym_expression_statement] = STATE(445), - [sym_if_statement] = STATE(447), - [sym_switch_statement] = STATE(450), - [sym_case_statement] = STATE(458), - [sym_while_statement] = STATE(465), - [sym_do_statement] = STATE(467), - [sym_for_statement] = STATE(474), - [sym_return_statement] = STATE(475), - [sym_break_statement] = STATE(476), - [sym_continue_statement] = STATE(480), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(3757), - [sym_comma_expression] = STATE(7128), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(472), - [sym_co_return_statement] = STATE(471), - [sym_co_yield_statement] = STATE(463), - [sym_throw_statement] = STATE(460), - [sym_try_statement] = STATE(459), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_try] = ACTIONS(277), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [289] = { - [sym_attribute_declaration] = STATE(289), - [sym_compound_statement] = STATE(901), - [sym_attributed_statement] = STATE(901), - [sym_labeled_statement] = STATE(901), - [sym_expression_statement] = STATE(901), - [sym_if_statement] = STATE(901), - [sym_switch_statement] = STATE(901), - [sym_case_statement] = STATE(901), - [sym_while_statement] = STATE(901), - [sym_do_statement] = STATE(901), - [sym_for_statement] = STATE(901), - [sym_return_statement] = STATE(901), - [sym_break_statement] = STATE(901), - [sym_continue_statement] = STATE(901), - [sym_goto_statement] = STATE(901), - [sym__expression] = STATE(3668), - [sym_comma_expression] = STATE(6976), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_for_range_loop] = STATE(901), - [sym_co_return_statement] = STATE(901), - [sym_co_yield_statement] = STATE(901), - [sym_throw_statement] = STATE(901), - [sym_try_statement] = STATE(901), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_attributed_declarator_repeat1] = STATE(289), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1888), - [sym_primitive_type] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_switch] = ACTIONS(1897), - [anon_sym_case] = ACTIONS(2191), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_goto] = ACTIONS(1924), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1927), - [anon_sym_sizeof] = ACTIONS(1930), - [sym_number_literal] = ACTIONS(1933), - [anon_sym_L_SQUOTE] = ACTIONS(1936), - [anon_sym_u_SQUOTE] = ACTIONS(1936), - [anon_sym_U_SQUOTE] = ACTIONS(1936), - [anon_sym_u8_SQUOTE] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_L_DQUOTE] = ACTIONS(1939), - [anon_sym_u_DQUOTE] = ACTIONS(1939), - [anon_sym_U_DQUOTE] = ACTIONS(1939), - [anon_sym_u8_DQUOTE] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [sym_null] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1948), - [anon_sym_delete] = ACTIONS(1951), - [anon_sym_throw] = ACTIONS(1954), - [anon_sym_co_return] = ACTIONS(1957), - [anon_sym_co_yield] = ACTIONS(1960), - [anon_sym_R_DQUOTE] = ACTIONS(1963), - [anon_sym_LR_DQUOTE] = ACTIONS(1963), - [anon_sym_uR_DQUOTE] = ACTIONS(1963), - [anon_sym_UR_DQUOTE] = ACTIONS(1963), - [anon_sym_u8R_DQUOTE] = ACTIONS(1963), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_requires] = ACTIONS(1972), - [sym_this] = ACTIONS(1942), - [sym_nullptr] = ACTIONS(1942), - }, - [290] = { - [sym_preproc_def] = STATE(296), - [sym_preproc_function_def] = STATE(296), - [sym_preproc_call] = STATE(296), - [sym_preproc_if_in_field_declaration_list] = STATE(296), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(296), - [sym_type_definition] = STATE(296), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(296), - [sym_field_declaration] = STATE(296), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(296), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(296), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(296), - [sym_operator_cast_declaration] = STATE(296), - [sym_constructor_or_destructor_definition] = STATE(296), - [sym_constructor_or_destructor_declaration] = STATE(296), - [sym_friend_declaration] = STATE(296), - [sym_access_specifier] = STATE(296), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(296), - [sym_alias_declaration] = STATE(296), - [sym_static_assert_declaration] = STATE(296), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(296), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), - }, - [291] = { - [sym_preproc_def] = STATE(293), - [sym_preproc_function_def] = STATE(293), - [sym_preproc_call] = STATE(293), - [sym_preproc_if_in_field_declaration_list] = STATE(293), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), - [sym_type_definition] = STATE(293), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(293), - [sym_field_declaration] = STATE(293), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(293), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(293), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(293), - [sym_operator_cast_declaration] = STATE(293), - [sym_constructor_or_destructor_definition] = STATE(293), - [sym_constructor_or_destructor_declaration] = STATE(293), - [sym_friend_declaration] = STATE(293), - [sym_access_specifier] = STATE(293), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(293), - [sym_alias_declaration] = STATE(293), - [sym_static_assert_declaration] = STATE(293), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), - }, - [292] = { - [sym_preproc_def] = STATE(293), - [sym_preproc_function_def] = STATE(293), - [sym_preproc_call] = STATE(293), - [sym_preproc_if_in_field_declaration_list] = STATE(293), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), - [sym_type_definition] = STATE(293), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(293), - [sym_field_declaration] = STATE(293), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(293), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(293), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(293), - [sym_operator_cast_declaration] = STATE(293), - [sym_constructor_or_destructor_definition] = STATE(293), - [sym_constructor_or_destructor_declaration] = STATE(293), - [sym_friend_declaration] = STATE(293), - [sym_access_specifier] = STATE(293), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(293), - [sym_alias_declaration] = STATE(293), - [sym_static_assert_declaration] = STATE(293), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), - }, - [293] = { - [sym_preproc_def] = STATE(293), - [sym_preproc_function_def] = STATE(293), - [sym_preproc_call] = STATE(293), - [sym_preproc_if_in_field_declaration_list] = STATE(293), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), - [sym_type_definition] = STATE(293), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(293), - [sym_field_declaration] = STATE(293), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(293), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(293), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(293), - [sym_operator_cast_declaration] = STATE(293), - [sym_constructor_or_destructor_definition] = STATE(293), - [sym_constructor_or_destructor_declaration] = STATE(293), - [sym_friend_declaration] = STATE(293), - [sym_access_specifier] = STATE(293), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(293), - [sym_alias_declaration] = STATE(293), - [sym_static_assert_declaration] = STATE(293), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1729), - [aux_sym_preproc_def_token1] = ACTIONS(2229), - [aux_sym_preproc_if_token1] = ACTIONS(2232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2235), - [sym_preproc_directive] = ACTIONS(2238), - [anon_sym_LPAREN2] = ACTIONS(1746), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1755), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_typedef] = ACTIONS(2241), - [anon_sym_extern] = ACTIONS(1764), - [anon_sym___attribute__] = ACTIONS(1767), - [anon_sym_COLON_COLON] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1773), - [anon_sym___declspec] = ACTIONS(1776), - [anon_sym___based] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_static] = ACTIONS(1764), - [anon_sym_register] = ACTIONS(1764), - [anon_sym_inline] = ACTIONS(1764), - [anon_sym_thread_local] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_volatile] = ACTIONS(1785), - [anon_sym_restrict] = ACTIONS(1785), - [anon_sym__Atomic] = ACTIONS(1785), - [anon_sym_mutable] = ACTIONS(1785), - [anon_sym_constexpr] = ACTIONS(1785), - [anon_sym_constinit] = ACTIONS(1785), - [anon_sym_consteval] = ACTIONS(1785), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [sym_primitive_type] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_class] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1800), - [anon_sym_union] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1806), - [anon_sym_decltype] = ACTIONS(1809), - [anon_sym_virtual] = ACTIONS(1812), - [anon_sym_explicit] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_typename] = ACTIONS(1821), - [anon_sym_template] = ACTIONS(2249), - [anon_sym_operator] = ACTIONS(1827), - [anon_sym_friend] = ACTIONS(2252), - [anon_sym_using] = ACTIONS(2255), - [anon_sym_static_assert] = ACTIONS(2258), - }, - [294] = { - [sym_preproc_def] = STATE(312), - [sym_preproc_function_def] = STATE(312), - [sym_preproc_call] = STATE(312), - [sym_preproc_if_in_field_declaration_list] = STATE(312), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(312), - [sym_type_definition] = STATE(312), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(312), - [sym_field_declaration] = STATE(312), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(312), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(312), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(312), - [sym_operator_cast_declaration] = STATE(312), - [sym_constructor_or_destructor_definition] = STATE(312), - [sym_constructor_or_destructor_declaration] = STATE(312), - [sym_friend_declaration] = STATE(312), - [sym_access_specifier] = STATE(312), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(312), - [sym_alias_declaration] = STATE(312), - [sym_static_assert_declaration] = STATE(312), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(312), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), - }, [295] = { - [sym_preproc_def] = STATE(292), - [sym_preproc_function_def] = STATE(292), - [sym_preproc_call] = STATE(292), - [sym_preproc_if_in_field_declaration_list] = STATE(292), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(292), - [sym_type_definition] = STATE(292), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(292), - [sym_field_declaration] = STATE(292), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(292), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(292), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(292), - [sym_operator_cast_declaration] = STATE(292), - [sym_constructor_or_destructor_definition] = STATE(292), - [sym_constructor_or_destructor_declaration] = STATE(292), - [sym_friend_declaration] = STATE(292), - [sym_access_specifier] = STATE(292), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(292), - [sym_alias_declaration] = STATE(292), - [sym_static_assert_declaration] = STATE(292), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(879), + [sym_attributed_statement] = STATE(880), + [sym_labeled_statement] = STATE(881), + [sym_expression_statement] = STATE(883), + [sym_if_statement] = STATE(884), + [sym_switch_statement] = STATE(886), + [sym_case_statement] = STATE(887), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(890), + [sym_for_statement] = STATE(544), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(895), + [sym_continue_statement] = STATE(894), + [sym_goto_statement] = STATE(892), + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(891), + [sym_co_return_statement] = STATE(545), + [sym_co_yield_statement] = STATE(901), + [sym_throw_statement] = STATE(899), + [sym_try_statement] = STATE(898), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(292), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [296] = { - [sym_preproc_def] = STATE(293), - [sym_preproc_function_def] = STATE(293), - [sym_preproc_call] = STATE(293), - [sym_preproc_if_in_field_declaration_list] = STATE(293), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), - [sym_type_definition] = STATE(293), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(293), - [sym_field_declaration] = STATE(293), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(293), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(293), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(293), - [sym_operator_cast_declaration] = STATE(293), - [sym_constructor_or_destructor_definition] = STATE(293), - [sym_constructor_or_destructor_declaration] = STATE(293), - [sym_friend_declaration] = STATE(293), - [sym_access_specifier] = STATE(293), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(293), - [sym_alias_declaration] = STATE(293), - [sym_static_assert_declaration] = STATE(293), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(457), + [sym_attributed_statement] = STATE(457), + [sym_labeled_statement] = STATE(457), + [sym_expression_statement] = STATE(457), + [sym_if_statement] = STATE(457), + [sym_switch_statement] = STATE(457), + [sym_case_statement] = STATE(457), + [sym_while_statement] = STATE(457), + [sym_do_statement] = STATE(457), + [sym_for_statement] = STATE(457), + [sym_return_statement] = STATE(457), + [sym_break_statement] = STATE(457), + [sym_continue_statement] = STATE(457), + [sym_goto_statement] = STATE(457), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(457), + [sym_co_return_statement] = STATE(457), + [sym_co_yield_statement] = STATE(457), + [sym_throw_statement] = STATE(457), + [sym_try_statement] = STATE(457), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [297] = { - [sym_preproc_def] = STATE(293), - [sym_preproc_function_def] = STATE(293), - [sym_preproc_call] = STATE(293), - [sym_preproc_if_in_field_declaration_list] = STATE(293), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), - [sym_type_definition] = STATE(293), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(293), - [sym_field_declaration] = STATE(293), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(293), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(293), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(293), - [sym_operator_cast_declaration] = STATE(293), - [sym_constructor_or_destructor_definition] = STATE(293), - [sym_constructor_or_destructor_declaration] = STATE(293), - [sym_friend_declaration] = STATE(293), - [sym_access_specifier] = STATE(293), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(293), - [sym_alias_declaration] = STATE(293), - [sym_static_assert_declaration] = STATE(293), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(353), + [sym_attributed_statement] = STATE(353), + [sym_labeled_statement] = STATE(353), + [sym_expression_statement] = STATE(353), + [sym_if_statement] = STATE(353), + [sym_switch_statement] = STATE(353), + [sym_case_statement] = STATE(353), + [sym_while_statement] = STATE(353), + [sym_do_statement] = STATE(353), + [sym_for_statement] = STATE(353), + [sym_return_statement] = STATE(353), + [sym_break_statement] = STATE(353), + [sym_continue_statement] = STATE(353), + [sym_goto_statement] = STATE(353), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(353), + [sym_co_return_statement] = STATE(353), + [sym_co_yield_statement] = STATE(353), + [sym_throw_statement] = STATE(353), + [sym_try_statement] = STATE(353), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [298] = { - [sym_preproc_def] = STATE(297), - [sym_preproc_function_def] = STATE(297), - [sym_preproc_call] = STATE(297), - [sym_preproc_if_in_field_declaration_list] = STATE(297), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(297), - [sym_type_definition] = STATE(297), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(297), - [sym_field_declaration] = STATE(297), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(297), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(297), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(297), - [sym_operator_cast_declaration] = STATE(297), - [sym_constructor_or_destructor_definition] = STATE(297), - [sym_constructor_or_destructor_declaration] = STATE(297), - [sym_friend_declaration] = STATE(297), - [sym_access_specifier] = STATE(297), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(297), - [sym_alias_declaration] = STATE(297), - [sym_static_assert_declaration] = STATE(297), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1207), + [sym_attributed_statement] = STATE(1207), + [sym_labeled_statement] = STATE(1207), + [sym_expression_statement] = STATE(1207), + [sym_if_statement] = STATE(1207), + [sym_switch_statement] = STATE(1207), + [sym_case_statement] = STATE(1207), + [sym_while_statement] = STATE(1207), + [sym_do_statement] = STATE(1207), + [sym_for_statement] = STATE(1207), + [sym_return_statement] = STATE(1207), + [sym_break_statement] = STATE(1207), + [sym_continue_statement] = STATE(1207), + [sym_goto_statement] = STATE(1207), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1207), + [sym_co_return_statement] = STATE(1207), + [sym_co_yield_statement] = STATE(1207), + [sym_throw_statement] = STATE(1207), + [sym_try_statement] = STATE(1207), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(297), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [299] = { - [sym_preproc_def] = STATE(302), - [sym_preproc_function_def] = STATE(302), - [sym_preproc_call] = STATE(302), - [sym_preproc_if_in_field_declaration_list] = STATE(302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(302), - [sym_type_definition] = STATE(302), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4408), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4982), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(302), - [sym_field_declaration] = STATE(302), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1960), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(302), - [sym_operator_cast] = STATE(5459), - [sym_inline_method_definition] = STATE(302), - [sym__constructor_specifiers] = STATE(1960), - [sym_operator_cast_definition] = STATE(302), - [sym_operator_cast_declaration] = STATE(302), - [sym_constructor_or_destructor_definition] = STATE(302), - [sym_constructor_or_destructor_declaration] = STATE(302), - [sym_friend_declaration] = STATE(302), - [sym_access_specifier] = STATE(302), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(302), - [sym_alias_declaration] = STATE(302), - [sym_static_assert_declaration] = STATE(302), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(299), + [sym_compound_statement] = STATE(836), + [sym_attributed_statement] = STATE(836), + [sym_labeled_statement] = STATE(836), + [sym_expression_statement] = STATE(836), + [sym_if_statement] = STATE(836), + [sym_switch_statement] = STATE(836), + [sym_case_statement] = STATE(836), + [sym_while_statement] = STATE(836), + [sym_do_statement] = STATE(836), + [sym_for_statement] = STATE(836), + [sym_return_statement] = STATE(836), + [sym_break_statement] = STATE(836), + [sym_continue_statement] = STATE(836), + [sym_goto_statement] = STATE(836), + [sym__expression] = STATE(3713), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(836), + [sym_co_return_statement] = STATE(836), + [sym_co_yield_statement] = STATE(836), + [sym_throw_statement] = STATE(836), + [sym_try_statement] = STATE(836), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5459), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(302), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1960), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2271), - [aux_sym_preproc_if_token1] = ACTIONS(2273), - [aux_sym_preproc_if_token2] = ACTIONS(2275), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), - [sym_preproc_directive] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2281), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(299), + [sym_identifier] = ACTIONS(2245), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(2248), + [anon_sym_COLON_COLON] = ACTIONS(1901), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(1910), + [sym_primitive_type] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_switch] = ACTIONS(2257), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2266), + [anon_sym_do] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2278), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_goto] = ACTIONS(2284), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_sizeof] = ACTIONS(1952), + [sym_number_literal] = ACTIONS(1955), + [anon_sym_L_SQUOTE] = ACTIONS(1958), + [anon_sym_u_SQUOTE] = ACTIONS(1958), + [anon_sym_U_SQUOTE] = ACTIONS(1958), + [anon_sym_u8_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_L_DQUOTE] = ACTIONS(1961), + [anon_sym_u_DQUOTE] = ACTIONS(1961), + [anon_sym_U_DQUOTE] = ACTIONS(1961), + [anon_sym_u8_DQUOTE] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [sym_true] = ACTIONS(1964), + [sym_false] = ACTIONS(1964), + [sym_null] = ACTIONS(1964), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2283), - [anon_sym_private] = ACTIONS(2283), - [anon_sym_protected] = ACTIONS(2283), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2285), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2289), - [anon_sym_static_assert] = ACTIONS(2291), + [anon_sym_template] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(2287), + [anon_sym_delete] = ACTIONS(1973), + [anon_sym_throw] = ACTIONS(2290), + [anon_sym_co_return] = ACTIONS(2293), + [anon_sym_co_yield] = ACTIONS(2296), + [anon_sym_R_DQUOTE] = ACTIONS(1985), + [anon_sym_LR_DQUOTE] = ACTIONS(1985), + [anon_sym_uR_DQUOTE] = ACTIONS(1985), + [anon_sym_UR_DQUOTE] = ACTIONS(1985), + [anon_sym_u8R_DQUOTE] = ACTIONS(1985), + [anon_sym_co_await] = ACTIONS(1988), + [anon_sym_new] = ACTIONS(1991), + [anon_sym_requires] = ACTIONS(1994), + [sym_this] = ACTIONS(1964), + [sym_nullptr] = ACTIONS(1964), }, [300] = { - [sym_preproc_def] = STATE(293), - [sym_preproc_function_def] = STATE(293), - [sym_preproc_call] = STATE(293), - [sym_preproc_if_in_field_declaration_list] = STATE(293), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), - [sym_type_definition] = STATE(293), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(293), - [sym_field_declaration] = STATE(293), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(293), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(293), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(293), - [sym_operator_cast_declaration] = STATE(293), - [sym_constructor_or_destructor_definition] = STATE(293), - [sym_constructor_or_destructor_declaration] = STATE(293), - [sym_friend_declaration] = STATE(293), - [sym_access_specifier] = STATE(293), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(293), - [sym_alias_declaration] = STATE(293), - [sym_static_assert_declaration] = STATE(293), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1117), + [sym_attributed_statement] = STATE(1117), + [sym_labeled_statement] = STATE(1117), + [sym_expression_statement] = STATE(1117), + [sym_if_statement] = STATE(1117), + [sym_switch_statement] = STATE(1117), + [sym_case_statement] = STATE(1117), + [sym_while_statement] = STATE(1117), + [sym_do_statement] = STATE(1117), + [sym_for_statement] = STATE(1117), + [sym_return_statement] = STATE(1117), + [sym_break_statement] = STATE(1117), + [sym_continue_statement] = STATE(1117), + [sym_goto_statement] = STATE(1117), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1117), + [sym_co_return_statement] = STATE(1117), + [sym_co_yield_statement] = STATE(1117), + [sym_throw_statement] = STATE(1117), + [sym_try_statement] = STATE(1117), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [301] = { - [sym_preproc_def] = STATE(300), - [sym_preproc_function_def] = STATE(300), - [sym_preproc_call] = STATE(300), - [sym_preproc_if_in_field_declaration_list] = STATE(300), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(300), - [sym_type_definition] = STATE(300), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(300), - [sym_field_declaration] = STATE(300), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(300), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(300), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(300), - [sym_operator_cast_declaration] = STATE(300), - [sym_constructor_or_destructor_definition] = STATE(300), - [sym_constructor_or_destructor_declaration] = STATE(300), - [sym_friend_declaration] = STATE(300), - [sym_access_specifier] = STATE(300), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(300), - [sym_alias_declaration] = STATE(300), - [sym_static_assert_declaration] = STATE(300), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1111), + [sym_attributed_statement] = STATE(1111), + [sym_labeled_statement] = STATE(1111), + [sym_expression_statement] = STATE(1111), + [sym_if_statement] = STATE(1111), + [sym_switch_statement] = STATE(1111), + [sym_case_statement] = STATE(1111), + [sym_while_statement] = STATE(1111), + [sym_do_statement] = STATE(1111), + [sym_for_statement] = STATE(1111), + [sym_return_statement] = STATE(1111), + [sym_break_statement] = STATE(1111), + [sym_continue_statement] = STATE(1111), + [sym_goto_statement] = STATE(1111), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1111), + [sym_co_return_statement] = STATE(1111), + [sym_co_yield_statement] = STATE(1111), + [sym_throw_statement] = STATE(1111), + [sym_try_statement] = STATE(1111), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(300), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [302] = { - [sym_preproc_def] = STATE(302), - [sym_preproc_function_def] = STATE(302), - [sym_preproc_call] = STATE(302), - [sym_preproc_if_in_field_declaration_list] = STATE(302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(302), - [sym_type_definition] = STATE(302), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4408), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4982), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(302), - [sym_field_declaration] = STATE(302), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1960), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(302), - [sym_operator_cast] = STATE(5459), - [sym_inline_method_definition] = STATE(302), - [sym__constructor_specifiers] = STATE(1960), - [sym_operator_cast_definition] = STATE(302), - [sym_operator_cast_declaration] = STATE(302), - [sym_constructor_or_destructor_definition] = STATE(302), - [sym_constructor_or_destructor_declaration] = STATE(302), - [sym_friend_declaration] = STATE(302), - [sym_access_specifier] = STATE(302), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(302), - [sym_alias_declaration] = STATE(302), - [sym_static_assert_declaration] = STATE(302), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(457), + [sym_attributed_statement] = STATE(457), + [sym_labeled_statement] = STATE(457), + [sym_expression_statement] = STATE(457), + [sym_if_statement] = STATE(457), + [sym_switch_statement] = STATE(457), + [sym_case_statement] = STATE(457), + [sym_while_statement] = STATE(457), + [sym_do_statement] = STATE(457), + [sym_for_statement] = STATE(457), + [sym_return_statement] = STATE(457), + [sym_break_statement] = STATE(457), + [sym_continue_statement] = STATE(457), + [sym_goto_statement] = STATE(457), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(457), + [sym_co_return_statement] = STATE(457), + [sym_co_yield_statement] = STATE(457), + [sym_throw_statement] = STATE(457), + [sym_try_statement] = STATE(457), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5459), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(302), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1960), - [sym_identifier] = ACTIONS(1729), - [aux_sym_preproc_def_token1] = ACTIONS(2297), - [aux_sym_preproc_if_token1] = ACTIONS(2300), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2303), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2303), - [sym_preproc_directive] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(1746), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1755), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_typedef] = ACTIONS(2309), - [anon_sym_extern] = ACTIONS(1764), - [anon_sym___attribute__] = ACTIONS(1767), - [anon_sym_COLON_COLON] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1773), - [anon_sym___declspec] = ACTIONS(1776), - [anon_sym___based] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_static] = ACTIONS(1764), - [anon_sym_register] = ACTIONS(1764), - [anon_sym_inline] = ACTIONS(1764), - [anon_sym_thread_local] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_volatile] = ACTIONS(1785), - [anon_sym_restrict] = ACTIONS(1785), - [anon_sym__Atomic] = ACTIONS(1785), - [anon_sym_mutable] = ACTIONS(1785), - [anon_sym_constexpr] = ACTIONS(1785), - [anon_sym_constinit] = ACTIONS(1785), - [anon_sym_consteval] = ACTIONS(1785), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [sym_primitive_type] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_class] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1800), - [anon_sym_union] = ACTIONS(1803), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2299), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_COLON_COLON] = ACTIONS(1901), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(1910), + [sym_primitive_type] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_switch] = ACTIONS(2311), + [anon_sym_case] = ACTIONS(2314), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2320), + [anon_sym_do] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2326), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_goto] = ACTIONS(2338), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_sizeof] = ACTIONS(1952), + [sym_number_literal] = ACTIONS(1955), + [anon_sym_L_SQUOTE] = ACTIONS(1958), + [anon_sym_u_SQUOTE] = ACTIONS(1958), + [anon_sym_U_SQUOTE] = ACTIONS(1958), + [anon_sym_u8_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_L_DQUOTE] = ACTIONS(1961), + [anon_sym_u_DQUOTE] = ACTIONS(1961), + [anon_sym_U_DQUOTE] = ACTIONS(1961), + [anon_sym_u8_DQUOTE] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [sym_true] = ACTIONS(1964), + [sym_false] = ACTIONS(1964), + [sym_null] = ACTIONS(1964), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1806), - [anon_sym_decltype] = ACTIONS(1809), - [anon_sym_virtual] = ACTIONS(1812), - [anon_sym_explicit] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(2312), - [anon_sym_private] = ACTIONS(2312), - [anon_sym_protected] = ACTIONS(2312), - [anon_sym_typename] = ACTIONS(1821), - [anon_sym_template] = ACTIONS(2315), - [anon_sym_operator] = ACTIONS(1827), - [anon_sym_friend] = ACTIONS(2318), - [anon_sym_using] = ACTIONS(2321), - [anon_sym_static_assert] = ACTIONS(2324), + [anon_sym_template] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_delete] = ACTIONS(1973), + [anon_sym_throw] = ACTIONS(2344), + [anon_sym_co_return] = ACTIONS(2347), + [anon_sym_co_yield] = ACTIONS(2350), + [anon_sym_R_DQUOTE] = ACTIONS(1985), + [anon_sym_LR_DQUOTE] = ACTIONS(1985), + [anon_sym_uR_DQUOTE] = ACTIONS(1985), + [anon_sym_UR_DQUOTE] = ACTIONS(1985), + [anon_sym_u8R_DQUOTE] = ACTIONS(1985), + [anon_sym_co_await] = ACTIONS(1988), + [anon_sym_new] = ACTIONS(1991), + [anon_sym_requires] = ACTIONS(1994), + [sym_this] = ACTIONS(1964), + [sym_nullptr] = ACTIONS(1964), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(2327), - [sym_identifier] = ACTIONS(2329), - [aux_sym_preproc_include_token1] = ACTIONS(2329), - [aux_sym_preproc_def_token1] = ACTIONS(2329), - [anon_sym_COMMA] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [aux_sym_preproc_if_token1] = ACTIONS(2329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2329), - [sym_preproc_directive] = ACTIONS(2329), - [anon_sym_LPAREN2] = ACTIONS(2327), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_PIPE_PIPE] = ACTIONS(2327), - [anon_sym_AMP_AMP] = ACTIONS(2327), - [anon_sym_AMP] = ACTIONS(2329), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_typedef] = ACTIONS(2329), - [anon_sym_extern] = ACTIONS(2329), - [anon_sym___attribute__] = ACTIONS(2329), - [anon_sym_COLON_COLON] = ACTIONS(2327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), - [anon_sym___declspec] = ACTIONS(2329), - [anon_sym___based] = ACTIONS(2329), - [anon_sym___cdecl] = ACTIONS(2329), - [anon_sym___clrcall] = ACTIONS(2329), - [anon_sym___stdcall] = ACTIONS(2329), - [anon_sym___fastcall] = ACTIONS(2329), - [anon_sym___thiscall] = ACTIONS(2329), - [anon_sym___vectorcall] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_EQ] = ACTIONS(2327), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_register] = ACTIONS(2329), - [anon_sym_inline] = ACTIONS(2329), - [anon_sym_thread_local] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_volatile] = ACTIONS(2329), - [anon_sym_restrict] = ACTIONS(2329), - [anon_sym__Atomic] = ACTIONS(2329), - [anon_sym_mutable] = ACTIONS(2329), - [anon_sym_constexpr] = ACTIONS(2329), - [anon_sym_constinit] = ACTIONS(2329), - [anon_sym_consteval] = ACTIONS(2329), - [anon_sym_signed] = ACTIONS(2329), - [anon_sym_unsigned] = ACTIONS(2329), - [anon_sym_long] = ACTIONS(2329), - [anon_sym_short] = ACTIONS(2329), - [sym_primitive_type] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), - [anon_sym_class] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2329), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_else] = ACTIONS(2329), - [anon_sym_switch] = ACTIONS(2329), - [anon_sym_case] = ACTIONS(2329), - [anon_sym_default] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_goto] = ACTIONS(2329), - [anon_sym_not] = ACTIONS(2329), - [anon_sym_compl] = ACTIONS(2329), - [anon_sym_DASH_DASH] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2327), - [anon_sym_sizeof] = ACTIONS(2329), - [sym_number_literal] = ACTIONS(2327), - [anon_sym_L_SQUOTE] = ACTIONS(2327), - [anon_sym_u_SQUOTE] = ACTIONS(2327), - [anon_sym_U_SQUOTE] = ACTIONS(2327), - [anon_sym_u8_SQUOTE] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2327), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2329), - [sym_false] = ACTIONS(2329), - [sym_null] = ACTIONS(2329), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1197), + [sym_attributed_statement] = STATE(1197), + [sym_labeled_statement] = STATE(1197), + [sym_expression_statement] = STATE(1197), + [sym_if_statement] = STATE(1197), + [sym_switch_statement] = STATE(1197), + [sym_case_statement] = STATE(1197), + [sym_while_statement] = STATE(1197), + [sym_do_statement] = STATE(1197), + [sym_for_statement] = STATE(1197), + [sym_return_statement] = STATE(1197), + [sym_break_statement] = STATE(1197), + [sym_continue_statement] = STATE(1197), + [sym_goto_statement] = STATE(1197), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1197), + [sym_co_return_statement] = STATE(1197), + [sym_co_yield_statement] = STATE(1197), + [sym_throw_statement] = STATE(1197), + [sym_try_statement] = STATE(1197), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2329), - [anon_sym_decltype] = ACTIONS(2329), - [anon_sym_virtual] = ACTIONS(2329), - [anon_sym_explicit] = ACTIONS(2329), - [anon_sym_typename] = ACTIONS(2329), - [anon_sym_template] = ACTIONS(2329), - [anon_sym_GT2] = ACTIONS(2327), - [anon_sym_operator] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_throw] = ACTIONS(2329), - [anon_sym_namespace] = ACTIONS(2329), - [anon_sym_using] = ACTIONS(2329), - [anon_sym_static_assert] = ACTIONS(2329), - [anon_sym_concept] = ACTIONS(2329), - [anon_sym_co_return] = ACTIONS(2329), - [anon_sym_co_yield] = ACTIONS(2329), - [anon_sym_catch] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2327), - [anon_sym_LR_DQUOTE] = ACTIONS(2327), - [anon_sym_uR_DQUOTE] = ACTIONS(2327), - [anon_sym_UR_DQUOTE] = ACTIONS(2327), - [anon_sym_u8R_DQUOTE] = ACTIONS(2327), - [anon_sym_co_await] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_requires] = ACTIONS(2329), - [sym_this] = ACTIONS(2329), - [sym_nullptr] = ACTIONS(2329), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [304] = { - [sym_preproc_def] = STATE(299), - [sym_preproc_function_def] = STATE(299), - [sym_preproc_call] = STATE(299), - [sym_preproc_if_in_field_declaration_list] = STATE(299), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(299), - [sym_type_definition] = STATE(299), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4408), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4982), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(299), - [sym_field_declaration] = STATE(299), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1960), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(299), - [sym_operator_cast] = STATE(5459), - [sym_inline_method_definition] = STATE(299), - [sym__constructor_specifiers] = STATE(1960), - [sym_operator_cast_definition] = STATE(299), - [sym_operator_cast_declaration] = STATE(299), - [sym_constructor_or_destructor_definition] = STATE(299), - [sym_constructor_or_destructor_declaration] = STATE(299), - [sym_friend_declaration] = STATE(299), - [sym_access_specifier] = STATE(299), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(299), - [sym_alias_declaration] = STATE(299), - [sym_static_assert_declaration] = STATE(299), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1215), + [sym_attributed_statement] = STATE(1215), + [sym_labeled_statement] = STATE(1215), + [sym_expression_statement] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym_case_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_break_statement] = STATE(1215), + [sym_continue_statement] = STATE(1215), + [sym_goto_statement] = STATE(1215), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1215), + [sym_co_return_statement] = STATE(1215), + [sym_co_yield_statement] = STATE(1215), + [sym_throw_statement] = STATE(1215), + [sym_try_statement] = STATE(1215), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5459), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(299), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1960), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2271), - [aux_sym_preproc_if_token1] = ACTIONS(2273), - [aux_sym_preproc_if_token2] = ACTIONS(2331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), - [sym_preproc_directive] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2281), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2283), - [anon_sym_private] = ACTIONS(2283), - [anon_sym_protected] = ACTIONS(2283), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2285), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2289), - [anon_sym_static_assert] = ACTIONS(2291), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [305] = { - [sym_preproc_def] = STATE(293), - [sym_preproc_function_def] = STATE(293), - [sym_preproc_call] = STATE(293), - [sym_preproc_if_in_field_declaration_list] = STATE(293), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), - [sym_type_definition] = STATE(293), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(293), - [sym_field_declaration] = STATE(293), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(293), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(293), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(293), - [sym_operator_cast_declaration] = STATE(293), - [sym_constructor_or_destructor_definition] = STATE(293), - [sym_constructor_or_destructor_declaration] = STATE(293), - [sym_friend_declaration] = STATE(293), - [sym_access_specifier] = STATE(293), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(293), - [sym_alias_declaration] = STATE(293), - [sym_static_assert_declaration] = STATE(293), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1108), + [sym_attributed_statement] = STATE(1108), + [sym_labeled_statement] = STATE(1108), + [sym_expression_statement] = STATE(1108), + [sym_if_statement] = STATE(1108), + [sym_switch_statement] = STATE(1108), + [sym_case_statement] = STATE(1108), + [sym_while_statement] = STATE(1108), + [sym_do_statement] = STATE(1108), + [sym_for_statement] = STATE(1108), + [sym_return_statement] = STATE(1108), + [sym_break_statement] = STATE(1108), + [sym_continue_statement] = STATE(1108), + [sym_goto_statement] = STATE(1108), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1108), + [sym_co_return_statement] = STATE(1108), + [sym_co_yield_statement] = STATE(1108), + [sym_throw_statement] = STATE(1108), + [sym_try_statement] = STATE(1108), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2333), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(2335), - [sym_identifier] = ACTIONS(2337), - [aux_sym_preproc_include_token1] = ACTIONS(2337), - [aux_sym_preproc_def_token1] = ACTIONS(2337), - [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_RPAREN] = ACTIONS(2335), - [aux_sym_preproc_if_token1] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), - [sym_preproc_directive] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2335), - [anon_sym_PIPE_PIPE] = ACTIONS(2335), - [anon_sym_AMP_AMP] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_typedef] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym___attribute__] = ACTIONS(2337), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), - [anon_sym___declspec] = ACTIONS(2337), - [anon_sym___based] = ACTIONS(2337), - [anon_sym___cdecl] = ACTIONS(2337), - [anon_sym___clrcall] = ACTIONS(2337), - [anon_sym___stdcall] = ACTIONS(2337), - [anon_sym___fastcall] = ACTIONS(2337), - [anon_sym___thiscall] = ACTIONS(2337), - [anon_sym___vectorcall] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_EQ] = ACTIONS(2335), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_inline] = ACTIONS(2337), - [anon_sym_thread_local] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_volatile] = ACTIONS(2337), - [anon_sym_restrict] = ACTIONS(2337), - [anon_sym__Atomic] = ACTIONS(2337), - [anon_sym_mutable] = ACTIONS(2337), - [anon_sym_constexpr] = ACTIONS(2337), - [anon_sym_constinit] = ACTIONS(2337), - [anon_sym_consteval] = ACTIONS(2337), - [anon_sym_signed] = ACTIONS(2337), - [anon_sym_unsigned] = ACTIONS(2337), - [anon_sym_long] = ACTIONS(2337), - [anon_sym_short] = ACTIONS(2337), - [sym_primitive_type] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2337), - [anon_sym_union] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_case] = ACTIONS(2337), - [anon_sym_default] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_goto] = ACTIONS(2337), - [anon_sym_not] = ACTIONS(2337), - [anon_sym_compl] = ACTIONS(2337), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_sizeof] = ACTIONS(2337), - [sym_number_literal] = ACTIONS(2335), - [anon_sym_L_SQUOTE] = ACTIONS(2335), - [anon_sym_u_SQUOTE] = ACTIONS(2335), - [anon_sym_U_SQUOTE] = ACTIONS(2335), - [anon_sym_u8_SQUOTE] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_L_DQUOTE] = ACTIONS(2335), - [anon_sym_u_DQUOTE] = ACTIONS(2335), - [anon_sym_U_DQUOTE] = ACTIONS(2335), - [anon_sym_u8_DQUOTE] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_true] = ACTIONS(2337), - [sym_false] = ACTIONS(2337), - [sym_null] = ACTIONS(2337), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1172), + [sym_attributed_statement] = STATE(1172), + [sym_labeled_statement] = STATE(1172), + [sym_expression_statement] = STATE(1172), + [sym_if_statement] = STATE(1172), + [sym_switch_statement] = STATE(1172), + [sym_case_statement] = STATE(1172), + [sym_while_statement] = STATE(1172), + [sym_do_statement] = STATE(1172), + [sym_for_statement] = STATE(1172), + [sym_return_statement] = STATE(1172), + [sym_break_statement] = STATE(1172), + [sym_continue_statement] = STATE(1172), + [sym_goto_statement] = STATE(1172), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1172), + [sym_co_return_statement] = STATE(1172), + [sym_co_yield_statement] = STATE(1172), + [sym_throw_statement] = STATE(1172), + [sym_try_statement] = STATE(1172), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2337), - [anon_sym_decltype] = ACTIONS(2337), - [anon_sym_virtual] = ACTIONS(2337), - [anon_sym_explicit] = ACTIONS(2337), - [anon_sym_typename] = ACTIONS(2337), - [anon_sym_template] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2335), - [anon_sym_operator] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_delete] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_using] = ACTIONS(2337), - [anon_sym_static_assert] = ACTIONS(2337), - [anon_sym_concept] = ACTIONS(2337), - [anon_sym_co_return] = ACTIONS(2337), - [anon_sym_co_yield] = ACTIONS(2337), - [anon_sym_catch] = ACTIONS(2337), - [anon_sym_R_DQUOTE] = ACTIONS(2335), - [anon_sym_LR_DQUOTE] = ACTIONS(2335), - [anon_sym_uR_DQUOTE] = ACTIONS(2335), - [anon_sym_UR_DQUOTE] = ACTIONS(2335), - [anon_sym_u8R_DQUOTE] = ACTIONS(2335), - [anon_sym_co_await] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_requires] = ACTIONS(2337), - [sym_this] = ACTIONS(2337), - [sym_nullptr] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [307] = { - [sym_preproc_def] = STATE(293), - [sym_preproc_function_def] = STATE(293), - [sym_preproc_call] = STATE(293), - [sym_preproc_if_in_field_declaration_list] = STATE(293), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), - [sym_type_definition] = STATE(293), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(293), - [sym_field_declaration] = STATE(293), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(293), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(293), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(293), - [sym_operator_cast_declaration] = STATE(293), - [sym_constructor_or_destructor_definition] = STATE(293), - [sym_constructor_or_destructor_declaration] = STATE(293), - [sym_friend_declaration] = STATE(293), - [sym_access_specifier] = STATE(293), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(293), - [sym_alias_declaration] = STATE(293), - [sym_static_assert_declaration] = STATE(293), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1130), + [sym_attributed_statement] = STATE(1134), + [sym_labeled_statement] = STATE(1137), + [sym_expression_statement] = STATE(1141), + [sym_if_statement] = STATE(1142), + [sym_switch_statement] = STATE(1143), + [sym_case_statement] = STATE(1144), + [sym_while_statement] = STATE(1147), + [sym_do_statement] = STATE(1149), + [sym_for_statement] = STATE(1151), + [sym_return_statement] = STATE(1153), + [sym_break_statement] = STATE(1154), + [sym_continue_statement] = STATE(1155), + [sym_goto_statement] = STATE(1161), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1162), + [sym_co_return_statement] = STATE(1164), + [sym_co_yield_statement] = STATE(1166), + [sym_throw_statement] = STATE(1193), + [sym_try_statement] = STATE(1196), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [308] = { - [sym_preproc_def] = STATE(307), - [sym_preproc_function_def] = STATE(307), - [sym_preproc_call] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(307), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(307), - [sym_type_definition] = STATE(307), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(307), - [sym_field_declaration] = STATE(307), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(307), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(307), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(307), - [sym_operator_cast_declaration] = STATE(307), - [sym_constructor_or_destructor_definition] = STATE(307), - [sym_constructor_or_destructor_declaration] = STATE(307), - [sym_friend_declaration] = STATE(307), - [sym_access_specifier] = STATE(307), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(307), - [sym_alias_declaration] = STATE(307), - [sym_static_assert_declaration] = STATE(307), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1227), + [sym_attributed_statement] = STATE(1146), + [sym_labeled_statement] = STATE(1150), + [sym_expression_statement] = STATE(1156), + [sym_if_statement] = STATE(1157), + [sym_switch_statement] = STATE(1158), + [sym_case_statement] = STATE(1167), + [sym_while_statement] = STATE(1168), + [sym_do_statement] = STATE(1169), + [sym_for_statement] = STATE(1170), + [sym_return_statement] = STATE(1173), + [sym_break_statement] = STATE(1216), + [sym_continue_statement] = STATE(1139), + [sym_goto_statement] = STATE(1191), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1194), + [sym_co_return_statement] = STATE(1228), + [sym_co_yield_statement] = STATE(1109), + [sym_throw_statement] = STATE(1165), + [sym_try_statement] = STATE(1123), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(307), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [309] = { - [sym_preproc_def] = STATE(293), - [sym_preproc_function_def] = STATE(293), - [sym_preproc_call] = STATE(293), - [sym_preproc_if_in_field_declaration_list] = STATE(293), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), - [sym_type_definition] = STATE(293), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(293), - [sym_field_declaration] = STATE(293), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(293), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(293), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(293), - [sym_operator_cast_declaration] = STATE(293), - [sym_constructor_or_destructor_definition] = STATE(293), - [sym_constructor_or_destructor_declaration] = STATE(293), - [sym_friend_declaration] = STATE(293), - [sym_access_specifier] = STATE(293), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(293), - [sym_alias_declaration] = STATE(293), - [sym_static_assert_declaration] = STATE(293), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1133), + [sym_attributed_statement] = STATE(1133), + [sym_labeled_statement] = STATE(1133), + [sym_expression_statement] = STATE(1133), + [sym_if_statement] = STATE(1133), + [sym_switch_statement] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_while_statement] = STATE(1133), + [sym_do_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_break_statement] = STATE(1133), + [sym_continue_statement] = STATE(1133), + [sym_goto_statement] = STATE(1133), + [sym__expression] = STATE(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1133), + [sym_co_return_statement] = STATE(1133), + [sym_co_yield_statement] = STATE(1133), + [sym_throw_statement] = STATE(1133), + [sym_try_statement] = STATE(1133), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [310] = { - [sym_preproc_def] = STATE(305), - [sym_preproc_function_def] = STATE(305), - [sym_preproc_call] = STATE(305), - [sym_preproc_if_in_field_declaration_list] = STATE(305), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(305), - [sym_type_definition] = STATE(305), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(305), - [sym_field_declaration] = STATE(305), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(305), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(305), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(305), - [sym_operator_cast_declaration] = STATE(305), - [sym_constructor_or_destructor_definition] = STATE(305), - [sym_constructor_or_destructor_declaration] = STATE(305), - [sym_friend_declaration] = STATE(305), - [sym_access_specifier] = STATE(305), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(305), - [sym_alias_declaration] = STATE(305), - [sym_static_assert_declaration] = STATE(305), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(200), + [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(3671), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [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(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1334), + [anon_sym_co_return] = ACTIONS(1336), + [anon_sym_co_yield] = ACTIONS(1338), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [311] = { - [sym_preproc_def] = STATE(291), - [sym_preproc_function_def] = STATE(291), - [sym_preproc_call] = STATE(291), - [sym_preproc_if_in_field_declaration_list] = STATE(291), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(291), - [sym_type_definition] = STATE(291), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(291), - [sym_field_declaration] = STATE(291), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(291), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(291), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(291), - [sym_operator_cast_declaration] = STATE(291), - [sym_constructor_or_destructor_definition] = STATE(291), - [sym_constructor_or_destructor_declaration] = STATE(291), - [sym_friend_declaration] = STATE(291), - [sym_access_specifier] = STATE(291), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(291), - [sym_alias_declaration] = STATE(291), - [sym_static_assert_declaration] = STATE(291), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(346), + [sym_attributed_statement] = STATE(346), + [sym_labeled_statement] = STATE(346), + [sym_expression_statement] = STATE(346), + [sym_if_statement] = STATE(346), + [sym_switch_statement] = STATE(346), + [sym_case_statement] = STATE(346), + [sym_while_statement] = STATE(346), + [sym_do_statement] = STATE(346), + [sym_for_statement] = STATE(346), + [sym_return_statement] = STATE(346), + [sym_break_statement] = STATE(346), + [sym_continue_statement] = STATE(346), + [sym_goto_statement] = STATE(346), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(346), + [sym_co_return_statement] = STATE(346), + [sym_co_yield_statement] = STATE(346), + [sym_throw_statement] = STATE(346), + [sym_try_statement] = STATE(346), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(291), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [312] = { - [sym_preproc_def] = STATE(293), - [sym_preproc_function_def] = STATE(293), - [sym_preproc_call] = STATE(293), - [sym_preproc_if_in_field_declaration_list] = STATE(293), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), - [sym_type_definition] = STATE(293), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(293), - [sym_field_declaration] = STATE(293), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(293), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(293), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(293), - [sym_operator_cast_declaration] = STATE(293), - [sym_constructor_or_destructor_definition] = STATE(293), - [sym_constructor_or_destructor_declaration] = STATE(293), - [sym_friend_declaration] = STATE(293), - [sym_access_specifier] = STATE(293), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(293), - [sym_alias_declaration] = STATE(293), - [sym_static_assert_declaration] = STATE(293), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(451), + [sym_attributed_statement] = STATE(451), + [sym_labeled_statement] = STATE(451), + [sym_expression_statement] = STATE(451), + [sym_if_statement] = STATE(451), + [sym_switch_statement] = STATE(451), + [sym_case_statement] = STATE(451), + [sym_while_statement] = STATE(451), + [sym_do_statement] = STATE(451), + [sym_for_statement] = STATE(451), + [sym_return_statement] = STATE(451), + [sym_break_statement] = STATE(451), + [sym_continue_statement] = STATE(451), + [sym_goto_statement] = STATE(451), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(451), + [sym_co_return_statement] = STATE(451), + [sym_co_yield_statement] = STATE(451), + [sym_throw_statement] = STATE(451), + [sym_try_statement] = STATE(451), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [313] = { - [sym_preproc_def] = STATE(309), - [sym_preproc_function_def] = STATE(309), - [sym_preproc_call] = STATE(309), - [sym_preproc_if_in_field_declaration_list] = STATE(309), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(309), - [sym_type_definition] = STATE(309), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4422), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(4019), - [sym_enum_specifier] = STATE(4019), - [sym_struct_specifier] = STATE(4019), - [sym_union_specifier] = STATE(4019), - [sym__field_declaration_list_item] = STATE(309), - [sym_field_declaration] = STATE(309), - [sym_placeholder_type_specifier] = STATE(4019), - [sym_decltype_auto] = STATE(4026), - [sym_decltype] = STATE(4019), - [sym_class_specifier] = STATE(4019), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(4019), - [sym_template_declaration] = STATE(309), - [sym_operator_cast] = STATE(5457), - [sym_inline_method_definition] = STATE(309), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(309), - [sym_operator_cast_declaration] = STATE(309), - [sym_constructor_or_destructor_definition] = STATE(309), - [sym_constructor_or_destructor_declaration] = STATE(309), - [sym_friend_declaration] = STATE(309), - [sym_access_specifier] = STATE(309), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_using_declaration] = STATE(309), - [sym_alias_declaration] = STATE(309), - [sym_static_assert_declaration] = STATE(309), - [sym_destructor_name] = STATE(5152), + [sym_attribute_declaration] = STATE(296), + [sym_compound_statement] = STATE(419), + [sym_attributed_statement] = STATE(419), + [sym_labeled_statement] = STATE(419), + [sym_expression_statement] = STATE(419), + [sym_if_statement] = STATE(419), + [sym_switch_statement] = STATE(419), + [sym_case_statement] = STATE(419), + [sym_while_statement] = STATE(419), + [sym_do_statement] = STATE(419), + [sym_for_statement] = STATE(419), + [sym_return_statement] = STATE(419), + [sym_break_statement] = STATE(419), + [sym_continue_statement] = STATE(419), + [sym_goto_statement] = STATE(419), + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(419), + [sym_co_return_statement] = STATE(419), + [sym_co_yield_statement] = STATE(419), + [sym_throw_statement] = STATE(419), + [sym_try_statement] = STATE(419), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4778), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(4041), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(309), - [aux_sym__declaration_specifiers_repeat1] = STATE(2181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3792), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(2203), - [aux_sym_preproc_if_token1] = ACTIONS(2205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), - [sym_preproc_directive] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1613), - [anon_sym_unsigned] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1623), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1625), - [anon_sym_decltype] = ACTIONS(1627), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_typename] = ACTIONS(1631), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2219), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_static_assert] = ACTIONS(2223), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [314] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2770), + [sym_catch_clause] = STATE(315), + [aux_sym_constructor_try_statement_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(2353), + [aux_sym_preproc_include_token1] = ACTIONS(2353), + [aux_sym_preproc_def_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token2] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2353), + [aux_sym_preproc_else_token1] = ACTIONS(2353), + [aux_sym_preproc_elif_token1] = ACTIONS(2353), + [sym_preproc_directive] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym___attribute__] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), + [anon_sym___declspec] = ACTIONS(2353), + [anon_sym___based] = ACTIONS(2353), + [anon_sym___cdecl] = ACTIONS(2353), + [anon_sym___clrcall] = ACTIONS(2353), + [anon_sym___stdcall] = ACTIONS(2353), + [anon_sym___fastcall] = ACTIONS(2353), + [anon_sym___thiscall] = ACTIONS(2353), + [anon_sym___vectorcall] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_register] = ACTIONS(2353), + [anon_sym_inline] = ACTIONS(2353), + [anon_sym_thread_local] = ACTIONS(2353), + [anon_sym_input] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_volatile] = ACTIONS(2353), + [anon_sym_restrict] = ACTIONS(2353), + [anon_sym__Atomic] = ACTIONS(2353), + [anon_sym_mutable] = ACTIONS(2353), + [anon_sym_constexpr] = ACTIONS(2353), + [anon_sym_constinit] = ACTIONS(2353), + [anon_sym_consteval] = ACTIONS(2353), + [anon_sym_signed] = ACTIONS(2353), + [anon_sym_unsigned] = ACTIONS(2353), + [anon_sym_long] = ACTIONS(2353), + [anon_sym_short] = ACTIONS(2353), + [sym_primitive_type] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_else] = ACTIONS(2353), + [anon_sym_switch] = ACTIONS(2353), + [anon_sym_case] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_goto] = ACTIONS(2353), + [anon_sym_not] = ACTIONS(2353), + [anon_sym_compl] = ACTIONS(2353), + [anon_sym_DASH_DASH] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_sizeof] = ACTIONS(2353), + [sym_number_literal] = ACTIONS(2355), + [anon_sym_L_SQUOTE] = ACTIONS(2355), + [anon_sym_u_SQUOTE] = ACTIONS(2355), + [anon_sym_U_SQUOTE] = ACTIONS(2355), + [anon_sym_u8_SQUOTE] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2355), + [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(2353), + [sym_false] = ACTIONS(2353), + [sym_null] = ACTIONS(2353), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2353), + [anon_sym_decltype] = ACTIONS(2353), + [anon_sym_virtual] = ACTIONS(2353), + [anon_sym_explicit] = ACTIONS(2353), + [anon_sym_typename] = ACTIONS(2353), + [anon_sym_template] = ACTIONS(2353), + [anon_sym_operator] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_delete] = ACTIONS(2353), + [anon_sym_throw] = ACTIONS(2353), + [anon_sym_namespace] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [anon_sym_static_assert] = ACTIONS(2353), + [anon_sym_concept] = ACTIONS(2353), + [anon_sym_co_return] = ACTIONS(2353), + [anon_sym_co_yield] = ACTIONS(2353), + [anon_sym_catch] = ACTIONS(2357), + [anon_sym_R_DQUOTE] = ACTIONS(2355), + [anon_sym_LR_DQUOTE] = ACTIONS(2355), + [anon_sym_uR_DQUOTE] = ACTIONS(2355), + [anon_sym_UR_DQUOTE] = ACTIONS(2355), + [anon_sym_u8R_DQUOTE] = ACTIONS(2355), + [anon_sym_co_await] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_requires] = ACTIONS(2353), + [sym_this] = ACTIONS(2353), + [sym_nullptr] = ACTIONS(2353), + }, + [315] = { + [sym_catch_clause] = STATE(315), + [aux_sym_constructor_try_statement_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(2359), + [aux_sym_preproc_include_token1] = ACTIONS(2359), + [aux_sym_preproc_def_token1] = ACTIONS(2359), + [aux_sym_preproc_if_token1] = ACTIONS(2359), + [aux_sym_preproc_if_token2] = ACTIONS(2359), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2359), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2359), + [aux_sym_preproc_else_token1] = ACTIONS(2359), + [aux_sym_preproc_elif_token1] = ACTIONS(2359), + [sym_preproc_directive] = ACTIONS(2359), + [anon_sym_LPAREN2] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2361), + [anon_sym_TILDE] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_PLUS] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2361), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_typedef] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym___attribute__] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2361), + [anon_sym___declspec] = ACTIONS(2359), + [anon_sym___based] = ACTIONS(2359), + [anon_sym___cdecl] = ACTIONS(2359), + [anon_sym___clrcall] = ACTIONS(2359), + [anon_sym___stdcall] = ACTIONS(2359), + [anon_sym___fastcall] = ACTIONS(2359), + [anon_sym___thiscall] = ACTIONS(2359), + [anon_sym___vectorcall] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym_thread_local] = ACTIONS(2359), + [anon_sym_input] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_restrict] = ACTIONS(2359), + [anon_sym__Atomic] = ACTIONS(2359), + [anon_sym_mutable] = ACTIONS(2359), + [anon_sym_constexpr] = ACTIONS(2359), + [anon_sym_constinit] = ACTIONS(2359), + [anon_sym_consteval] = ACTIONS(2359), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [sym_primitive_type] = ACTIONS(2359), + [anon_sym_enum] = ACTIONS(2359), + [anon_sym_class] = ACTIONS(2359), + [anon_sym_struct] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_else] = ACTIONS(2359), + [anon_sym_switch] = ACTIONS(2359), + [anon_sym_case] = ACTIONS(2359), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_do] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_goto] = ACTIONS(2359), + [anon_sym_not] = ACTIONS(2359), + [anon_sym_compl] = ACTIONS(2359), + [anon_sym_DASH_DASH] = ACTIONS(2361), + [anon_sym_PLUS_PLUS] = ACTIONS(2361), + [anon_sym_sizeof] = ACTIONS(2359), + [sym_number_literal] = ACTIONS(2361), + [anon_sym_L_SQUOTE] = ACTIONS(2361), + [anon_sym_u_SQUOTE] = ACTIONS(2361), + [anon_sym_U_SQUOTE] = ACTIONS(2361), + [anon_sym_u8_SQUOTE] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_L_DQUOTE] = ACTIONS(2361), + [anon_sym_u_DQUOTE] = ACTIONS(2361), + [anon_sym_U_DQUOTE] = ACTIONS(2361), + [anon_sym_u8_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2361), + [sym_true] = ACTIONS(2359), + [sym_false] = ACTIONS(2359), + [sym_null] = ACTIONS(2359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2359), + [anon_sym_decltype] = ACTIONS(2359), + [anon_sym_virtual] = ACTIONS(2359), + [anon_sym_explicit] = ACTIONS(2359), + [anon_sym_typename] = ACTIONS(2359), + [anon_sym_template] = ACTIONS(2359), + [anon_sym_operator] = ACTIONS(2359), + [anon_sym_try] = ACTIONS(2359), + [anon_sym_delete] = ACTIONS(2359), + [anon_sym_throw] = ACTIONS(2359), + [anon_sym_namespace] = ACTIONS(2359), + [anon_sym_using] = ACTIONS(2359), + [anon_sym_static_assert] = ACTIONS(2359), + [anon_sym_concept] = ACTIONS(2359), + [anon_sym_co_return] = ACTIONS(2359), + [anon_sym_co_yield] = ACTIONS(2359), + [anon_sym_catch] = ACTIONS(2363), + [anon_sym_R_DQUOTE] = ACTIONS(2361), + [anon_sym_LR_DQUOTE] = ACTIONS(2361), + [anon_sym_uR_DQUOTE] = ACTIONS(2361), + [anon_sym_UR_DQUOTE] = ACTIONS(2361), + [anon_sym_u8R_DQUOTE] = ACTIONS(2361), + [anon_sym_co_await] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2359), + [anon_sym_requires] = ACTIONS(2359), + [sym_this] = ACTIONS(2359), + [sym_nullptr] = ACTIONS(2359), + }, + [316] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2773), [sym_comma_expression] = STATE(6948), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(6635), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(6947), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), [sym__unary_left_fold] = STATE(6946), [sym__unary_right_fold] = STATE(6944), [sym__binary_fold] = STATE(6943), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [315] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2770), - [sym_comma_expression] = STATE(6948), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(7114), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(7112), - [sym__unary_right_fold] = STATE(7108), - [sym__binary_fold] = STATE(7106), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [316] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2788), - [sym_comma_expression] = STATE(7116), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(6737), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6680), - [sym__unary_right_fold] = STATE(6682), - [sym__binary_fold] = STATE(6684), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), @@ -73566,60 +73742,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [317] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2770), + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2773), [sym_comma_expression] = STATE(6948), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(7020), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(6635), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), [sym__unary_left_fold] = STATE(6946), [sym__unary_right_fold] = STATE(6944), [sym__binary_fold] = STATE(6943), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), @@ -73684,1896 +73860,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [318] = { - [sym_catch_clause] = STATE(330), - [aux_sym_constructor_try_statement_repeat1] = STATE(330), - [sym_identifier] = ACTIONS(2355), - [aux_sym_preproc_include_token1] = ACTIONS(2355), - [aux_sym_preproc_def_token1] = ACTIONS(2355), - [aux_sym_preproc_if_token1] = ACTIONS(2355), - [aux_sym_preproc_if_token2] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), - [aux_sym_preproc_else_token1] = ACTIONS(2355), - [aux_sym_preproc_elif_token1] = ACTIONS(2355), - [sym_preproc_directive] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_AMP_AMP] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_typedef] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym___attribute__] = ACTIONS(2355), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), - [anon_sym___declspec] = ACTIONS(2355), - [anon_sym___based] = ACTIONS(2355), - [anon_sym___cdecl] = ACTIONS(2355), - [anon_sym___clrcall] = ACTIONS(2355), - [anon_sym___stdcall] = ACTIONS(2355), - [anon_sym___fastcall] = ACTIONS(2355), - [anon_sym___thiscall] = ACTIONS(2355), - [anon_sym___vectorcall] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2355), - [anon_sym_thread_local] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_volatile] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2355), - [anon_sym__Atomic] = ACTIONS(2355), - [anon_sym_mutable] = ACTIONS(2355), - [anon_sym_constexpr] = ACTIONS(2355), - [anon_sym_constinit] = ACTIONS(2355), - [anon_sym_consteval] = ACTIONS(2355), - [anon_sym_signed] = ACTIONS(2355), - [anon_sym_unsigned] = ACTIONS(2355), - [anon_sym_long] = ACTIONS(2355), - [anon_sym_short] = ACTIONS(2355), - [sym_primitive_type] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_class] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_switch] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2355), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_goto] = ACTIONS(2355), - [anon_sym_not] = ACTIONS(2355), - [anon_sym_compl] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_sizeof] = ACTIONS(2355), - [sym_number_literal] = ACTIONS(2357), - [anon_sym_L_SQUOTE] = ACTIONS(2357), - [anon_sym_u_SQUOTE] = ACTIONS(2357), - [anon_sym_U_SQUOTE] = ACTIONS(2357), - [anon_sym_u8_SQUOTE] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_L_DQUOTE] = ACTIONS(2357), - [anon_sym_u_DQUOTE] = ACTIONS(2357), - [anon_sym_U_DQUOTE] = ACTIONS(2357), - [anon_sym_u8_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_true] = ACTIONS(2355), - [sym_false] = ACTIONS(2355), - [sym_null] = ACTIONS(2355), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2355), - [anon_sym_decltype] = ACTIONS(2355), - [anon_sym_virtual] = ACTIONS(2355), - [anon_sym_explicit] = ACTIONS(2355), - [anon_sym_typename] = ACTIONS(2355), - [anon_sym_template] = ACTIONS(2355), - [anon_sym_operator] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_delete] = ACTIONS(2355), - [anon_sym_throw] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2355), - [anon_sym_using] = ACTIONS(2355), - [anon_sym_static_assert] = ACTIONS(2355), - [anon_sym_concept] = ACTIONS(2355), - [anon_sym_co_return] = ACTIONS(2355), - [anon_sym_co_yield] = ACTIONS(2355), - [anon_sym_catch] = ACTIONS(2359), - [anon_sym_R_DQUOTE] = ACTIONS(2357), - [anon_sym_LR_DQUOTE] = ACTIONS(2357), - [anon_sym_uR_DQUOTE] = ACTIONS(2357), - [anon_sym_UR_DQUOTE] = ACTIONS(2357), - [anon_sym_u8R_DQUOTE] = ACTIONS(2357), - [anon_sym_co_await] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_requires] = ACTIONS(2355), - [sym_this] = ACTIONS(2355), - [sym_nullptr] = ACTIONS(2355), - }, - [319] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2770), - [sym_comma_expression] = STATE(6948), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(6893), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6946), - [sym__unary_right_fold] = STATE(6944), - [sym__binary_fold] = STATE(6943), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [320] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2789), - [sym_comma_expression] = STATE(6841), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(6965), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6822), - [sym__unary_right_fold] = STATE(6818), - [sym__binary_fold] = STATE(6808), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [321] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2789), - [sym_comma_expression] = STATE(6841), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(6811), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6822), - [sym__unary_right_fold] = STATE(6818), - [sym__binary_fold] = STATE(6808), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [322] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2788), - [sym_comma_expression] = STATE(7116), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(6874), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6777), - [sym__unary_right_fold] = STATE(6779), - [sym__binary_fold] = STATE(6784), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [323] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2770), - [sym_comma_expression] = STATE(6948), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(7000), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(7112), - [sym__unary_right_fold] = STATE(7108), - [sym__binary_fold] = STATE(7106), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [324] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2789), - [sym_comma_expression] = STATE(6841), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(6731), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6814), - [sym__unary_right_fold] = STATE(6813), - [sym__binary_fold] = STATE(6812), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [325] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2770), - [sym_comma_expression] = STATE(6948), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(7004), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(7112), - [sym__unary_right_fold] = STATE(7108), - [sym__binary_fold] = STATE(7106), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [326] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2770), - [sym_comma_expression] = STATE(6948), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(6947), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6946), - [sym__unary_right_fold] = STATE(6944), - [sym__binary_fold] = STATE(6943), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [327] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2770), - [sym_comma_expression] = STATE(6948), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(7037), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6946), - [sym__unary_right_fold] = STATE(6944), - [sym__binary_fold] = STATE(6943), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [328] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2770), - [sym_comma_expression] = STATE(6948), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(6865), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6946), - [sym__unary_right_fold] = STATE(6944), - [sym__binary_fold] = STATE(6943), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [329] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2789), - [sym_comma_expression] = STATE(6841), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(6816), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6814), - [sym__unary_right_fold] = STATE(6813), - [sym__binary_fold] = STATE(6812), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [330] = { - [sym_catch_clause] = STATE(330), - [aux_sym_constructor_try_statement_repeat1] = STATE(330), - [sym_identifier] = ACTIONS(2361), - [aux_sym_preproc_include_token1] = ACTIONS(2361), - [aux_sym_preproc_def_token1] = ACTIONS(2361), - [aux_sym_preproc_if_token1] = ACTIONS(2361), - [aux_sym_preproc_if_token2] = ACTIONS(2361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2361), - [aux_sym_preproc_else_token1] = ACTIONS(2361), - [aux_sym_preproc_elif_token1] = ACTIONS(2361), - [sym_preproc_directive] = ACTIONS(2361), - [anon_sym_LPAREN2] = ACTIONS(2363), - [anon_sym_BANG] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(2363), - [anon_sym_AMP_AMP] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2361), - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_typedef] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(2361), - [anon_sym___attribute__] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2363), - [anon_sym___declspec] = ACTIONS(2361), - [anon_sym___based] = ACTIONS(2361), - [anon_sym___cdecl] = ACTIONS(2361), - [anon_sym___clrcall] = ACTIONS(2361), - [anon_sym___stdcall] = ACTIONS(2361), - [anon_sym___fastcall] = ACTIONS(2361), - [anon_sym___thiscall] = ACTIONS(2361), - [anon_sym___vectorcall] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_register] = ACTIONS(2361), - [anon_sym_inline] = ACTIONS(2361), - [anon_sym_thread_local] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_volatile] = ACTIONS(2361), - [anon_sym_restrict] = ACTIONS(2361), - [anon_sym__Atomic] = ACTIONS(2361), - [anon_sym_mutable] = ACTIONS(2361), - [anon_sym_constexpr] = ACTIONS(2361), - [anon_sym_constinit] = ACTIONS(2361), - [anon_sym_consteval] = ACTIONS(2361), - [anon_sym_signed] = ACTIONS(2361), - [anon_sym_unsigned] = ACTIONS(2361), - [anon_sym_long] = ACTIONS(2361), - [anon_sym_short] = ACTIONS(2361), - [sym_primitive_type] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_struct] = ACTIONS(2361), - [anon_sym_union] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_switch] = ACTIONS(2361), - [anon_sym_case] = ACTIONS(2361), - [anon_sym_default] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_goto] = ACTIONS(2361), - [anon_sym_not] = ACTIONS(2361), - [anon_sym_compl] = ACTIONS(2361), - [anon_sym_DASH_DASH] = ACTIONS(2363), - [anon_sym_PLUS_PLUS] = ACTIONS(2363), - [anon_sym_sizeof] = ACTIONS(2361), - [sym_number_literal] = ACTIONS(2363), - [anon_sym_L_SQUOTE] = ACTIONS(2363), - [anon_sym_u_SQUOTE] = ACTIONS(2363), - [anon_sym_U_SQUOTE] = ACTIONS(2363), - [anon_sym_u8_SQUOTE] = ACTIONS(2363), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_L_DQUOTE] = ACTIONS(2363), - [anon_sym_u_DQUOTE] = ACTIONS(2363), - [anon_sym_U_DQUOTE] = ACTIONS(2363), - [anon_sym_u8_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(2363), - [sym_true] = ACTIONS(2361), - [sym_false] = ACTIONS(2361), - [sym_null] = ACTIONS(2361), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2361), - [anon_sym_decltype] = ACTIONS(2361), - [anon_sym_virtual] = ACTIONS(2361), - [anon_sym_explicit] = ACTIONS(2361), - [anon_sym_typename] = ACTIONS(2361), - [anon_sym_template] = ACTIONS(2361), - [anon_sym_operator] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_throw] = ACTIONS(2361), - [anon_sym_namespace] = ACTIONS(2361), - [anon_sym_using] = ACTIONS(2361), - [anon_sym_static_assert] = ACTIONS(2361), - [anon_sym_concept] = ACTIONS(2361), - [anon_sym_co_return] = ACTIONS(2361), - [anon_sym_co_yield] = ACTIONS(2361), - [anon_sym_catch] = ACTIONS(2365), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2361), - [anon_sym_requires] = ACTIONS(2361), - [sym_this] = ACTIONS(2361), - [sym_nullptr] = ACTIONS(2361), - }, - [331] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2788), - [sym_comma_expression] = STATE(7116), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(6776), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6777), - [sym__unary_right_fold] = STATE(6779), - [sym__binary_fold] = STATE(6784), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [332] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2788), - [sym_comma_expression] = STATE(7116), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(6679), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6680), - [sym__unary_right_fold] = STATE(6682), - [sym__binary_fold] = STATE(6684), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [333] = { - [sym_type_qualifier] = STATE(3426), - [sym__type_specifier] = STATE(4211), - [sym_sized_type_specifier] = STATE(2877), - [sym_enum_specifier] = STATE(2877), - [sym_struct_specifier] = STATE(2877), - [sym_union_specifier] = STATE(2877), - [sym__expression] = STATE(2770), - [sym_comma_expression] = STATE(6948), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_type_descriptor] = STATE(7008), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym_placeholder_type_specifier] = STATE(2877), - [sym_decltype_auto] = STATE(2880), - [sym_decltype] = STATE(2877), - [sym_class_specifier] = STATE(2877), - [sym__class_name] = STATE(6294), - [sym_dependent_type] = STATE(2877), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(7112), - [sym__unary_right_fold] = STATE(7108), - [sym__binary_fold] = STATE(7106), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4927), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3098), - [aux_sym_type_definition_repeat1] = STATE(3426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1909), - [sym_identifier] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1495), - [anon_sym_decltype] = ACTIONS(1497), - [anon_sym_typename] = ACTIONS(1499), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [334] = { - [sym_catch_clause] = STATE(330), - [aux_sym_constructor_try_statement_repeat1] = STATE(330), + [sym_catch_clause] = STATE(315), + [aux_sym_constructor_try_statement_repeat1] = STATE(315), [sym_identifier] = ACTIONS(2368), [aux_sym_preproc_include_token1] = ACTIONS(2368), [aux_sym_preproc_def_token1] = ACTIONS(2368), @@ -75612,6 +73900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2368), [anon_sym_inline] = ACTIONS(2368), [anon_sym_thread_local] = ACTIONS(2368), + [anon_sym_input] = ACTIONS(2368), [anon_sym_const] = ACTIONS(2368), [anon_sym_volatile] = ACTIONS(2368), [anon_sym_restrict] = ACTIONS(2368), @@ -75676,7 +73965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(2368), [anon_sym_co_return] = ACTIONS(2368), [anon_sym_co_yield] = ACTIONS(2368), - [anon_sym_catch] = ACTIONS(2359), + [anon_sym_catch] = ACTIONS(2357), [anon_sym_R_DQUOTE] = ACTIONS(2370), [anon_sym_LR_DQUOTE] = ACTIONS(2370), [anon_sym_uR_DQUOTE] = ACTIONS(2370), @@ -75688,9 +73977,1071 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2368), [sym_nullptr] = ACTIONS(2368), }, - [335] = { - [sym_catch_clause] = STATE(330), - [aux_sym_constructor_try_statement_repeat1] = STATE(330), + [319] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2793), + [sym_comma_expression] = STATE(6841), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(6731), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6814), + [sym__unary_right_fold] = STATE(6813), + [sym__binary_fold] = STATE(6812), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [320] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2792), + [sym_comma_expression] = STATE(7116), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(6874), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6777), + [sym__unary_right_fold] = STATE(6779), + [sym__binary_fold] = STATE(6784), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [321] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2773), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(7008), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(7112), + [sym__unary_right_fold] = STATE(7108), + [sym__binary_fold] = STATE(7106), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [322] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2773), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(7037), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [323] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2773), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(7114), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(7112), + [sym__unary_right_fold] = STATE(7108), + [sym__binary_fold] = STATE(7106), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [324] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2773), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(7000), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(7112), + [sym__unary_right_fold] = STATE(7108), + [sym__binary_fold] = STATE(7106), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [325] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2793), + [sym_comma_expression] = STATE(6841), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(6811), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6822), + [sym__unary_right_fold] = STATE(6818), + [sym__binary_fold] = STATE(6808), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [326] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2793), + [sym_comma_expression] = STATE(6841), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(6965), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6822), + [sym__unary_right_fold] = STATE(6818), + [sym__binary_fold] = STATE(6808), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [327] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2773), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(7020), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [328] = { + [sym_catch_clause] = STATE(315), + [aux_sym_constructor_try_statement_repeat1] = STATE(315), [sym_identifier] = ACTIONS(2372), [aux_sym_preproc_include_token1] = ACTIONS(2372), [aux_sym_preproc_def_token1] = ACTIONS(2372), @@ -75729,6 +75080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2372), [anon_sym_inline] = ACTIONS(2372), [anon_sym_thread_local] = ACTIONS(2372), + [anon_sym_input] = ACTIONS(2372), [anon_sym_const] = ACTIONS(2372), [anon_sym_volatile] = ACTIONS(2372), [anon_sym_restrict] = ACTIONS(2372), @@ -75793,7 +75145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(2372), [anon_sym_co_return] = ACTIONS(2372), [anon_sym_co_yield] = ACTIONS(2372), - [anon_sym_catch] = ACTIONS(2359), + [anon_sym_catch] = ACTIONS(2357), [anon_sym_R_DQUOTE] = ACTIONS(2374), [anon_sym_LR_DQUOTE] = ACTIONS(2374), [anon_sym_uR_DQUOTE] = ACTIONS(2374), @@ -75805,1049 +75157,1884 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2372), [sym_nullptr] = ACTIONS(2372), }, - [336] = { - [sym_catch_clause] = STATE(342), - [aux_sym_constructor_try_statement_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2355), - [aux_sym_preproc_include_token1] = ACTIONS(2355), - [aux_sym_preproc_def_token1] = ACTIONS(2355), - [aux_sym_preproc_if_token1] = ACTIONS(2355), - [aux_sym_preproc_if_token2] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), - [sym_preproc_directive] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_AMP_AMP] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_typedef] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym___attribute__] = ACTIONS(2355), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), - [anon_sym___declspec] = ACTIONS(2355), - [anon_sym___based] = ACTIONS(2355), - [anon_sym___cdecl] = ACTIONS(2355), - [anon_sym___clrcall] = ACTIONS(2355), - [anon_sym___stdcall] = ACTIONS(2355), - [anon_sym___fastcall] = ACTIONS(2355), - [anon_sym___thiscall] = ACTIONS(2355), - [anon_sym___vectorcall] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2355), - [anon_sym_thread_local] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_volatile] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2355), - [anon_sym__Atomic] = ACTIONS(2355), - [anon_sym_mutable] = ACTIONS(2355), - [anon_sym_constexpr] = ACTIONS(2355), - [anon_sym_constinit] = ACTIONS(2355), - [anon_sym_consteval] = ACTIONS(2355), - [anon_sym_signed] = ACTIONS(2355), - [anon_sym_unsigned] = ACTIONS(2355), - [anon_sym_long] = ACTIONS(2355), - [anon_sym_short] = ACTIONS(2355), - [sym_primitive_type] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_class] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_switch] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2355), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_goto] = ACTIONS(2355), - [anon_sym_not] = ACTIONS(2355), - [anon_sym_compl] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_sizeof] = ACTIONS(2355), - [sym_number_literal] = ACTIONS(2357), - [anon_sym_L_SQUOTE] = ACTIONS(2357), - [anon_sym_u_SQUOTE] = ACTIONS(2357), - [anon_sym_U_SQUOTE] = ACTIONS(2357), - [anon_sym_u8_SQUOTE] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_L_DQUOTE] = ACTIONS(2357), - [anon_sym_u_DQUOTE] = ACTIONS(2357), - [anon_sym_U_DQUOTE] = ACTIONS(2357), - [anon_sym_u8_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_true] = ACTIONS(2355), - [sym_false] = ACTIONS(2355), - [sym_null] = ACTIONS(2355), + [329] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2773), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(6893), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2355), - [anon_sym_decltype] = ACTIONS(2355), - [anon_sym_virtual] = ACTIONS(2355), - [anon_sym_explicit] = ACTIONS(2355), - [anon_sym_typename] = ACTIONS(2355), - [anon_sym_template] = ACTIONS(2355), - [anon_sym_operator] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_delete] = ACTIONS(2355), - [anon_sym_throw] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2355), - [anon_sym_using] = ACTIONS(2355), - [anon_sym_static_assert] = ACTIONS(2355), - [anon_sym_concept] = ACTIONS(2355), - [anon_sym_co_return] = ACTIONS(2355), - [anon_sym_co_yield] = ACTIONS(2355), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [330] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2792), + [sym_comma_expression] = STATE(7116), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(6679), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6680), + [sym__unary_right_fold] = STATE(6682), + [sym__binary_fold] = STATE(6684), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [331] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2773), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(6865), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [332] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2792), + [sym_comma_expression] = STATE(7116), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(6737), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6680), + [sym__unary_right_fold] = STATE(6682), + [sym__binary_fold] = STATE(6684), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [333] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2773), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(7004), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(7112), + [sym__unary_right_fold] = STATE(7108), + [sym__binary_fold] = STATE(7106), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [334] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2792), + [sym_comma_expression] = STATE(7116), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(6776), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6777), + [sym__unary_right_fold] = STATE(6779), + [sym__binary_fold] = STATE(6784), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [335] = { + [sym_type_qualifier] = STATE(3425), + [sym__type_specifier] = STATE(4195), + [sym_sized_type_specifier] = STATE(2880), + [sym_enum_specifier] = STATE(2880), + [sym_struct_specifier] = STATE(2880), + [sym_union_specifier] = STATE(2880), + [sym__expression] = STATE(2793), + [sym_comma_expression] = STATE(6841), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_type_descriptor] = STATE(6816), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym_placeholder_type_specifier] = STATE(2880), + [sym_decltype_auto] = STATE(2884), + [sym_decltype] = STATE(2880), + [sym_class_specifier] = STATE(2880), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2880), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6814), + [sym__unary_right_fold] = STATE(6813), + [sym__binary_fold] = STATE(6812), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3111), + [aux_sym_type_definition_repeat1] = STATE(3425), + [aux_sym_sized_type_specifier_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [336] = { + [sym_catch_clause] = STATE(336), + [aux_sym_constructor_try_statement_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(2359), + [aux_sym_preproc_include_token1] = ACTIONS(2359), + [aux_sym_preproc_def_token1] = ACTIONS(2359), + [aux_sym_preproc_if_token1] = ACTIONS(2359), + [aux_sym_preproc_if_token2] = ACTIONS(2359), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2359), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2359), + [sym_preproc_directive] = ACTIONS(2359), + [anon_sym_LPAREN2] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2361), + [anon_sym_TILDE] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_PLUS] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2361), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_typedef] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym___attribute__] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2361), + [anon_sym___declspec] = ACTIONS(2359), + [anon_sym___based] = ACTIONS(2359), + [anon_sym___cdecl] = ACTIONS(2359), + [anon_sym___clrcall] = ACTIONS(2359), + [anon_sym___stdcall] = ACTIONS(2359), + [anon_sym___fastcall] = ACTIONS(2359), + [anon_sym___thiscall] = ACTIONS(2359), + [anon_sym___vectorcall] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym_thread_local] = ACTIONS(2359), + [anon_sym_input] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_restrict] = ACTIONS(2359), + [anon_sym__Atomic] = ACTIONS(2359), + [anon_sym_mutable] = ACTIONS(2359), + [anon_sym_constexpr] = ACTIONS(2359), + [anon_sym_constinit] = ACTIONS(2359), + [anon_sym_consteval] = ACTIONS(2359), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [sym_primitive_type] = ACTIONS(2359), + [anon_sym_enum] = ACTIONS(2359), + [anon_sym_class] = ACTIONS(2359), + [anon_sym_struct] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_else] = ACTIONS(2359), + [anon_sym_switch] = ACTIONS(2359), + [anon_sym_case] = ACTIONS(2359), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_do] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_goto] = ACTIONS(2359), + [anon_sym_not] = ACTIONS(2359), + [anon_sym_compl] = ACTIONS(2359), + [anon_sym_DASH_DASH] = ACTIONS(2361), + [anon_sym_PLUS_PLUS] = ACTIONS(2361), + [anon_sym_sizeof] = ACTIONS(2359), + [sym_number_literal] = ACTIONS(2361), + [anon_sym_L_SQUOTE] = ACTIONS(2361), + [anon_sym_u_SQUOTE] = ACTIONS(2361), + [anon_sym_U_SQUOTE] = ACTIONS(2361), + [anon_sym_u8_SQUOTE] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_L_DQUOTE] = ACTIONS(2361), + [anon_sym_u_DQUOTE] = ACTIONS(2361), + [anon_sym_U_DQUOTE] = ACTIONS(2361), + [anon_sym_u8_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2361), + [sym_true] = ACTIONS(2359), + [sym_false] = ACTIONS(2359), + [sym_null] = ACTIONS(2359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2359), + [anon_sym_decltype] = ACTIONS(2359), + [anon_sym_virtual] = ACTIONS(2359), + [anon_sym_explicit] = ACTIONS(2359), + [anon_sym_typename] = ACTIONS(2359), + [anon_sym_template] = ACTIONS(2359), + [anon_sym_operator] = ACTIONS(2359), + [anon_sym_try] = ACTIONS(2359), + [anon_sym_delete] = ACTIONS(2359), + [anon_sym_throw] = ACTIONS(2359), + [anon_sym_namespace] = ACTIONS(2359), + [anon_sym_using] = ACTIONS(2359), + [anon_sym_static_assert] = ACTIONS(2359), + [anon_sym_concept] = ACTIONS(2359), + [anon_sym_co_return] = ACTIONS(2359), + [anon_sym_co_yield] = ACTIONS(2359), [anon_sym_catch] = ACTIONS(2376), - [anon_sym_R_DQUOTE] = ACTIONS(2357), - [anon_sym_LR_DQUOTE] = ACTIONS(2357), - [anon_sym_uR_DQUOTE] = ACTIONS(2357), - [anon_sym_UR_DQUOTE] = ACTIONS(2357), - [anon_sym_u8R_DQUOTE] = ACTIONS(2357), - [anon_sym_co_await] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_requires] = ACTIONS(2355), - [sym_this] = ACTIONS(2355), - [sym_nullptr] = ACTIONS(2355), + [anon_sym_R_DQUOTE] = ACTIONS(2361), + [anon_sym_LR_DQUOTE] = ACTIONS(2361), + [anon_sym_uR_DQUOTE] = ACTIONS(2361), + [anon_sym_UR_DQUOTE] = ACTIONS(2361), + [anon_sym_u8R_DQUOTE] = ACTIONS(2361), + [anon_sym_co_await] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2359), + [anon_sym_requires] = ACTIONS(2359), + [sym_this] = ACTIONS(2359), + [sym_nullptr] = ACTIONS(2359), }, [337] = { - [sym_catch_clause] = STATE(337), - [aux_sym_constructor_try_statement_repeat1] = STATE(337), - [sym_identifier] = ACTIONS(2361), - [aux_sym_preproc_include_token1] = ACTIONS(2361), - [aux_sym_preproc_def_token1] = ACTIONS(2361), - [aux_sym_preproc_if_token1] = ACTIONS(2361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2361), - [sym_preproc_directive] = ACTIONS(2361), - [anon_sym_LPAREN2] = ACTIONS(2363), - [anon_sym_BANG] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(2363), - [anon_sym_AMP_AMP] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2361), - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_typedef] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(2361), - [anon_sym___attribute__] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2363), - [anon_sym___declspec] = ACTIONS(2361), - [anon_sym___based] = ACTIONS(2361), - [anon_sym___cdecl] = ACTIONS(2361), - [anon_sym___clrcall] = ACTIONS(2361), - [anon_sym___stdcall] = ACTIONS(2361), - [anon_sym___fastcall] = ACTIONS(2361), - [anon_sym___thiscall] = ACTIONS(2361), - [anon_sym___vectorcall] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_register] = ACTIONS(2361), - [anon_sym_inline] = ACTIONS(2361), - [anon_sym_thread_local] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_volatile] = ACTIONS(2361), - [anon_sym_restrict] = ACTIONS(2361), - [anon_sym__Atomic] = ACTIONS(2361), - [anon_sym_mutable] = ACTIONS(2361), - [anon_sym_constexpr] = ACTIONS(2361), - [anon_sym_constinit] = ACTIONS(2361), - [anon_sym_consteval] = ACTIONS(2361), - [anon_sym_signed] = ACTIONS(2361), - [anon_sym_unsigned] = ACTIONS(2361), - [anon_sym_long] = ACTIONS(2361), - [anon_sym_short] = ACTIONS(2361), - [sym_primitive_type] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_struct] = ACTIONS(2361), - [anon_sym_union] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_switch] = ACTIONS(2361), - [anon_sym_case] = ACTIONS(2361), - [anon_sym_default] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_goto] = ACTIONS(2361), - [anon_sym_not] = ACTIONS(2361), - [anon_sym_compl] = ACTIONS(2361), - [anon_sym_DASH_DASH] = ACTIONS(2363), - [anon_sym_PLUS_PLUS] = ACTIONS(2363), - [anon_sym_sizeof] = ACTIONS(2361), - [sym_number_literal] = ACTIONS(2363), - [anon_sym_L_SQUOTE] = ACTIONS(2363), - [anon_sym_u_SQUOTE] = ACTIONS(2363), - [anon_sym_U_SQUOTE] = ACTIONS(2363), - [anon_sym_u8_SQUOTE] = ACTIONS(2363), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_L_DQUOTE] = ACTIONS(2363), - [anon_sym_u_DQUOTE] = ACTIONS(2363), - [anon_sym_U_DQUOTE] = ACTIONS(2363), - [anon_sym_u8_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(2363), - [sym_true] = ACTIONS(2361), - [sym_false] = ACTIONS(2361), - [sym_null] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2379), + [aux_sym_preproc_include_token1] = ACTIONS(2379), + [aux_sym_preproc_def_token1] = ACTIONS(2379), + [aux_sym_preproc_if_token1] = ACTIONS(2379), + [aux_sym_preproc_if_token2] = ACTIONS(2379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2379), + [aux_sym_preproc_else_token1] = ACTIONS(2379), + [aux_sym_preproc_elif_token1] = ACTIONS(2379), + [sym_preproc_directive] = ACTIONS(2379), + [anon_sym_LPAREN2] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2381), + [anon_sym_TILDE] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(2381), + [anon_sym_AMP_AMP] = ACTIONS(2381), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_typedef] = ACTIONS(2379), + [anon_sym_extern] = ACTIONS(2379), + [anon_sym___attribute__] = ACTIONS(2379), + [anon_sym_COLON_COLON] = ACTIONS(2381), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2381), + [anon_sym___declspec] = ACTIONS(2379), + [anon_sym___based] = ACTIONS(2379), + [anon_sym___cdecl] = ACTIONS(2379), + [anon_sym___clrcall] = ACTIONS(2379), + [anon_sym___stdcall] = ACTIONS(2379), + [anon_sym___fastcall] = ACTIONS(2379), + [anon_sym___thiscall] = ACTIONS(2379), + [anon_sym___vectorcall] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2379), + [anon_sym_register] = ACTIONS(2379), + [anon_sym_inline] = ACTIONS(2379), + [anon_sym_thread_local] = ACTIONS(2379), + [anon_sym_input] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_volatile] = ACTIONS(2379), + [anon_sym_restrict] = ACTIONS(2379), + [anon_sym__Atomic] = ACTIONS(2379), + [anon_sym_mutable] = ACTIONS(2379), + [anon_sym_constexpr] = ACTIONS(2379), + [anon_sym_constinit] = ACTIONS(2379), + [anon_sym_consteval] = ACTIONS(2379), + [anon_sym_signed] = ACTIONS(2379), + [anon_sym_unsigned] = ACTIONS(2379), + [anon_sym_long] = ACTIONS(2379), + [anon_sym_short] = ACTIONS(2379), + [sym_primitive_type] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_class] = ACTIONS(2379), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_else] = ACTIONS(2379), + [anon_sym_switch] = ACTIONS(2379), + [anon_sym_case] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_do] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_goto] = ACTIONS(2379), + [anon_sym_not] = ACTIONS(2379), + [anon_sym_compl] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2381), + [anon_sym_PLUS_PLUS] = ACTIONS(2381), + [anon_sym_sizeof] = ACTIONS(2379), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_L_SQUOTE] = ACTIONS(2381), + [anon_sym_u_SQUOTE] = ACTIONS(2381), + [anon_sym_U_SQUOTE] = ACTIONS(2381), + [anon_sym_u8_SQUOTE] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2381), + [anon_sym_L_DQUOTE] = ACTIONS(2381), + [anon_sym_u_DQUOTE] = ACTIONS(2381), + [anon_sym_U_DQUOTE] = ACTIONS(2381), + [anon_sym_u8_DQUOTE] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2381), + [sym_true] = ACTIONS(2379), + [sym_false] = ACTIONS(2379), + [sym_null] = ACTIONS(2379), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2361), - [anon_sym_decltype] = ACTIONS(2361), - [anon_sym_virtual] = ACTIONS(2361), - [anon_sym_explicit] = ACTIONS(2361), - [anon_sym_typename] = ACTIONS(2361), - [anon_sym_template] = ACTIONS(2361), - [anon_sym_operator] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_throw] = ACTIONS(2361), - [anon_sym_namespace] = ACTIONS(2361), - [anon_sym_using] = ACTIONS(2361), - [anon_sym_static_assert] = ACTIONS(2361), - [anon_sym_concept] = ACTIONS(2361), - [anon_sym_co_return] = ACTIONS(2361), - [anon_sym_co_yield] = ACTIONS(2361), - [anon_sym_catch] = ACTIONS(2378), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2361), - [anon_sym_requires] = ACTIONS(2361), - [sym_this] = ACTIONS(2361), - [sym_nullptr] = ACTIONS(2361), + [sym_auto] = ACTIONS(2379), + [anon_sym_decltype] = ACTIONS(2379), + [anon_sym_virtual] = ACTIONS(2379), + [anon_sym_explicit] = ACTIONS(2379), + [anon_sym_typename] = ACTIONS(2379), + [anon_sym_template] = ACTIONS(2379), + [anon_sym_operator] = ACTIONS(2379), + [anon_sym_try] = ACTIONS(2379), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_throw] = ACTIONS(2379), + [anon_sym_namespace] = ACTIONS(2379), + [anon_sym_using] = ACTIONS(2379), + [anon_sym_static_assert] = ACTIONS(2379), + [anon_sym_concept] = ACTIONS(2379), + [anon_sym_co_return] = ACTIONS(2379), + [anon_sym_co_yield] = ACTIONS(2379), + [anon_sym_catch] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2379), + [anon_sym_new] = ACTIONS(2379), + [anon_sym_requires] = ACTIONS(2379), + [sym_this] = ACTIONS(2379), + [sym_nullptr] = ACTIONS(2379), }, [338] = { [sym_catch_clause] = STATE(338), [aux_sym_constructor_try_statement_repeat1] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2363), - [sym_identifier] = ACTIONS(2361), - [aux_sym_preproc_include_token1] = ACTIONS(2361), - [aux_sym_preproc_def_token1] = ACTIONS(2361), - [aux_sym_preproc_if_token1] = ACTIONS(2361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2361), - [sym_preproc_directive] = ACTIONS(2361), - [anon_sym_LPAREN2] = ACTIONS(2363), - [anon_sym_BANG] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(2363), - [anon_sym_AMP_AMP] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2361), - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_typedef] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(2361), - [anon_sym___attribute__] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2363), - [anon_sym___declspec] = ACTIONS(2361), - [anon_sym___based] = ACTIONS(2361), - [anon_sym___cdecl] = ACTIONS(2361), - [anon_sym___clrcall] = ACTIONS(2361), - [anon_sym___stdcall] = ACTIONS(2361), - [anon_sym___fastcall] = ACTIONS(2361), - [anon_sym___thiscall] = ACTIONS(2361), - [anon_sym___vectorcall] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_register] = ACTIONS(2361), - [anon_sym_inline] = ACTIONS(2361), - [anon_sym_thread_local] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_volatile] = ACTIONS(2361), - [anon_sym_restrict] = ACTIONS(2361), - [anon_sym__Atomic] = ACTIONS(2361), - [anon_sym_mutable] = ACTIONS(2361), - [anon_sym_constexpr] = ACTIONS(2361), - [anon_sym_constinit] = ACTIONS(2361), - [anon_sym_consteval] = ACTIONS(2361), - [anon_sym_signed] = ACTIONS(2361), - [anon_sym_unsigned] = ACTIONS(2361), - [anon_sym_long] = ACTIONS(2361), - [anon_sym_short] = ACTIONS(2361), - [sym_primitive_type] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_struct] = ACTIONS(2361), - [anon_sym_union] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_switch] = ACTIONS(2361), - [anon_sym_case] = ACTIONS(2361), - [anon_sym_default] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_goto] = ACTIONS(2361), - [anon_sym_not] = ACTIONS(2361), - [anon_sym_compl] = ACTIONS(2361), - [anon_sym_DASH_DASH] = ACTIONS(2363), - [anon_sym_PLUS_PLUS] = ACTIONS(2363), - [anon_sym_sizeof] = ACTIONS(2361), - [sym_number_literal] = ACTIONS(2363), - [anon_sym_L_SQUOTE] = ACTIONS(2363), - [anon_sym_u_SQUOTE] = ACTIONS(2363), - [anon_sym_U_SQUOTE] = ACTIONS(2363), - [anon_sym_u8_SQUOTE] = ACTIONS(2363), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_L_DQUOTE] = ACTIONS(2363), - [anon_sym_u_DQUOTE] = ACTIONS(2363), - [anon_sym_U_DQUOTE] = ACTIONS(2363), - [anon_sym_u8_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(2363), - [sym_true] = ACTIONS(2361), - [sym_false] = ACTIONS(2361), - [sym_null] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2359), + [aux_sym_preproc_include_token1] = ACTIONS(2359), + [aux_sym_preproc_def_token1] = ACTIONS(2359), + [aux_sym_preproc_if_token1] = ACTIONS(2359), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2359), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2359), + [sym_preproc_directive] = ACTIONS(2359), + [anon_sym_LPAREN2] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2361), + [anon_sym_TILDE] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_PLUS] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2361), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_typedef] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym___attribute__] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2361), + [anon_sym___declspec] = ACTIONS(2359), + [anon_sym___based] = ACTIONS(2359), + [anon_sym___cdecl] = ACTIONS(2359), + [anon_sym___clrcall] = ACTIONS(2359), + [anon_sym___stdcall] = ACTIONS(2359), + [anon_sym___fastcall] = ACTIONS(2359), + [anon_sym___thiscall] = ACTIONS(2359), + [anon_sym___vectorcall] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym_thread_local] = ACTIONS(2359), + [anon_sym_input] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_restrict] = ACTIONS(2359), + [anon_sym__Atomic] = ACTIONS(2359), + [anon_sym_mutable] = ACTIONS(2359), + [anon_sym_constexpr] = ACTIONS(2359), + [anon_sym_constinit] = ACTIONS(2359), + [anon_sym_consteval] = ACTIONS(2359), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [sym_primitive_type] = ACTIONS(2359), + [anon_sym_enum] = ACTIONS(2359), + [anon_sym_class] = ACTIONS(2359), + [anon_sym_struct] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_else] = ACTIONS(2359), + [anon_sym_switch] = ACTIONS(2359), + [anon_sym_case] = ACTIONS(2359), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_do] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_goto] = ACTIONS(2359), + [anon_sym_not] = ACTIONS(2359), + [anon_sym_compl] = ACTIONS(2359), + [anon_sym_DASH_DASH] = ACTIONS(2361), + [anon_sym_PLUS_PLUS] = ACTIONS(2361), + [anon_sym_sizeof] = ACTIONS(2359), + [sym_number_literal] = ACTIONS(2361), + [anon_sym_L_SQUOTE] = ACTIONS(2361), + [anon_sym_u_SQUOTE] = ACTIONS(2361), + [anon_sym_U_SQUOTE] = ACTIONS(2361), + [anon_sym_u8_SQUOTE] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_L_DQUOTE] = ACTIONS(2361), + [anon_sym_u_DQUOTE] = ACTIONS(2361), + [anon_sym_U_DQUOTE] = ACTIONS(2361), + [anon_sym_u8_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2361), + [sym_true] = ACTIONS(2359), + [sym_false] = ACTIONS(2359), + [sym_null] = ACTIONS(2359), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2361), - [anon_sym_decltype] = ACTIONS(2361), - [anon_sym_virtual] = ACTIONS(2361), - [anon_sym_explicit] = ACTIONS(2361), - [anon_sym_typename] = ACTIONS(2361), - [anon_sym_template] = ACTIONS(2361), - [anon_sym_operator] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_throw] = ACTIONS(2361), - [anon_sym_namespace] = ACTIONS(2361), - [anon_sym_using] = ACTIONS(2361), - [anon_sym_static_assert] = ACTIONS(2361), - [anon_sym_concept] = ACTIONS(2361), - [anon_sym_co_return] = ACTIONS(2361), - [anon_sym_co_yield] = ACTIONS(2361), - [anon_sym_catch] = ACTIONS(2381), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2361), - [anon_sym_requires] = ACTIONS(2361), - [sym_this] = ACTIONS(2361), - [sym_nullptr] = ACTIONS(2361), + [sym_auto] = ACTIONS(2359), + [anon_sym_decltype] = ACTIONS(2359), + [anon_sym_virtual] = ACTIONS(2359), + [anon_sym_explicit] = ACTIONS(2359), + [anon_sym_typename] = ACTIONS(2359), + [anon_sym_template] = ACTIONS(2359), + [anon_sym_operator] = ACTIONS(2359), + [anon_sym_try] = ACTIONS(2359), + [anon_sym_delete] = ACTIONS(2359), + [anon_sym_throw] = ACTIONS(2359), + [anon_sym_namespace] = ACTIONS(2359), + [anon_sym_using] = ACTIONS(2359), + [anon_sym_static_assert] = ACTIONS(2359), + [anon_sym_concept] = ACTIONS(2359), + [anon_sym_co_return] = ACTIONS(2359), + [anon_sym_co_yield] = ACTIONS(2359), + [anon_sym_catch] = ACTIONS(2383), + [anon_sym_R_DQUOTE] = ACTIONS(2361), + [anon_sym_LR_DQUOTE] = ACTIONS(2361), + [anon_sym_uR_DQUOTE] = ACTIONS(2361), + [anon_sym_UR_DQUOTE] = ACTIONS(2361), + [anon_sym_u8R_DQUOTE] = ACTIONS(2361), + [anon_sym_co_await] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2359), + [anon_sym_requires] = ACTIONS(2359), + [sym_this] = ACTIONS(2359), + [sym_nullptr] = ACTIONS(2359), }, [339] = { - [sym_identifier] = ACTIONS(2337), - [aux_sym_preproc_include_token1] = ACTIONS(2337), - [aux_sym_preproc_def_token1] = ACTIONS(2337), - [aux_sym_preproc_if_token1] = ACTIONS(2337), - [aux_sym_preproc_if_token2] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), - [aux_sym_preproc_else_token1] = ACTIONS(2337), - [aux_sym_preproc_elif_token1] = ACTIONS(2337), - [sym_preproc_directive] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2335), - [anon_sym_AMP_AMP] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_typedef] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym___attribute__] = ACTIONS(2337), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), - [anon_sym___declspec] = ACTIONS(2337), - [anon_sym___based] = ACTIONS(2337), - [anon_sym___cdecl] = ACTIONS(2337), - [anon_sym___clrcall] = ACTIONS(2337), - [anon_sym___stdcall] = ACTIONS(2337), - [anon_sym___fastcall] = ACTIONS(2337), - [anon_sym___thiscall] = ACTIONS(2337), - [anon_sym___vectorcall] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_inline] = ACTIONS(2337), - [anon_sym_thread_local] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_volatile] = ACTIONS(2337), - [anon_sym_restrict] = ACTIONS(2337), - [anon_sym__Atomic] = ACTIONS(2337), - [anon_sym_mutable] = ACTIONS(2337), - [anon_sym_constexpr] = ACTIONS(2337), - [anon_sym_constinit] = ACTIONS(2337), - [anon_sym_consteval] = ACTIONS(2337), - [anon_sym_signed] = ACTIONS(2337), - [anon_sym_unsigned] = ACTIONS(2337), - [anon_sym_long] = ACTIONS(2337), - [anon_sym_short] = ACTIONS(2337), - [sym_primitive_type] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2337), - [anon_sym_union] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_case] = ACTIONS(2337), - [anon_sym_default] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_goto] = ACTIONS(2337), - [anon_sym_not] = ACTIONS(2337), - [anon_sym_compl] = ACTIONS(2337), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_sizeof] = ACTIONS(2337), - [sym_number_literal] = ACTIONS(2335), - [anon_sym_L_SQUOTE] = ACTIONS(2335), - [anon_sym_u_SQUOTE] = ACTIONS(2335), - [anon_sym_U_SQUOTE] = ACTIONS(2335), - [anon_sym_u8_SQUOTE] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_L_DQUOTE] = ACTIONS(2335), - [anon_sym_u_DQUOTE] = ACTIONS(2335), - [anon_sym_U_DQUOTE] = ACTIONS(2335), - [anon_sym_u8_DQUOTE] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_true] = ACTIONS(2337), - [sym_false] = ACTIONS(2337), - [sym_null] = ACTIONS(2337), + [sym_identifier] = ACTIONS(2017), + [aux_sym_preproc_include_token1] = ACTIONS(2017), + [aux_sym_preproc_def_token1] = ACTIONS(2017), + [aux_sym_preproc_if_token1] = ACTIONS(2017), + [aux_sym_preproc_if_token2] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [aux_sym_preproc_else_token1] = ACTIONS(2017), + [aux_sym_preproc_elif_token1] = ACTIONS(2017), + [sym_preproc_directive] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_typedef] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2015), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym_input] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym_mutable] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_constinit] = ACTIONS(2017), + [anon_sym_consteval] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2017), + [anon_sym_unsigned] = ACTIONS(2017), + [anon_sym_long] = ACTIONS(2017), + [anon_sym_short] = ACTIONS(2017), + [sym_primitive_type] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_class] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_else] = ACTIONS(2017), + [anon_sym_switch] = ACTIONS(2017), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_goto] = ACTIONS(2017), + [anon_sym_not] = ACTIONS(2017), + [anon_sym_compl] = ACTIONS(2017), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_sizeof] = ACTIONS(2017), + [sym_number_literal] = ACTIONS(2015), + [anon_sym_L_SQUOTE] = ACTIONS(2015), + [anon_sym_u_SQUOTE] = ACTIONS(2015), + [anon_sym_U_SQUOTE] = ACTIONS(2015), + [anon_sym_u8_SQUOTE] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(2015), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [sym_null] = ACTIONS(2017), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2337), - [anon_sym_decltype] = ACTIONS(2337), - [anon_sym_virtual] = ACTIONS(2337), - [anon_sym_explicit] = ACTIONS(2337), - [anon_sym_typename] = ACTIONS(2337), - [anon_sym_template] = ACTIONS(2337), - [anon_sym_operator] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_delete] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_using] = ACTIONS(2337), - [anon_sym_static_assert] = ACTIONS(2337), - [anon_sym_concept] = ACTIONS(2337), - [anon_sym_co_return] = ACTIONS(2337), - [anon_sym_co_yield] = ACTIONS(2337), - [anon_sym_catch] = ACTIONS(2337), - [anon_sym_R_DQUOTE] = ACTIONS(2335), - [anon_sym_LR_DQUOTE] = ACTIONS(2335), - [anon_sym_uR_DQUOTE] = ACTIONS(2335), - [anon_sym_UR_DQUOTE] = ACTIONS(2335), - [anon_sym_u8R_DQUOTE] = ACTIONS(2335), - [anon_sym_co_await] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_requires] = ACTIONS(2337), - [sym_this] = ACTIONS(2337), - [sym_nullptr] = ACTIONS(2337), + [sym_auto] = ACTIONS(2017), + [anon_sym_decltype] = ACTIONS(2017), + [anon_sym_virtual] = ACTIONS(2017), + [anon_sym_explicit] = ACTIONS(2017), + [anon_sym_typename] = ACTIONS(2017), + [anon_sym_template] = ACTIONS(2017), + [anon_sym_operator] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_delete] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(2017), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_using] = ACTIONS(2017), + [anon_sym_static_assert] = ACTIONS(2017), + [anon_sym_concept] = ACTIONS(2017), + [anon_sym_co_return] = ACTIONS(2017), + [anon_sym_co_yield] = ACTIONS(2017), + [anon_sym_catch] = ACTIONS(2017), + [anon_sym_R_DQUOTE] = ACTIONS(2015), + [anon_sym_LR_DQUOTE] = ACTIONS(2015), + [anon_sym_uR_DQUOTE] = ACTIONS(2015), + [anon_sym_UR_DQUOTE] = ACTIONS(2015), + [anon_sym_u8R_DQUOTE] = ACTIONS(2015), + [anon_sym_co_await] = ACTIONS(2017), + [anon_sym_new] = ACTIONS(2017), + [anon_sym_requires] = ACTIONS(2017), + [sym_this] = ACTIONS(2017), + [sym_nullptr] = ACTIONS(2017), }, [340] = { - [sym_identifier] = ACTIONS(2384), - [aux_sym_preproc_include_token1] = ACTIONS(2384), - [aux_sym_preproc_def_token1] = ACTIONS(2384), - [aux_sym_preproc_if_token1] = ACTIONS(2384), - [aux_sym_preproc_if_token2] = ACTIONS(2384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2384), - [aux_sym_preproc_else_token1] = ACTIONS(2384), - [aux_sym_preproc_elif_token1] = ACTIONS(2384), - [sym_preproc_directive] = ACTIONS(2384), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2386), - [anon_sym_TILDE] = ACTIONS(2386), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_SEMI] = ACTIONS(2386), - [anon_sym_typedef] = ACTIONS(2384), - [anon_sym_extern] = ACTIONS(2384), - [anon_sym___attribute__] = ACTIONS(2384), - [anon_sym_COLON_COLON] = ACTIONS(2386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2386), - [anon_sym___declspec] = ACTIONS(2384), - [anon_sym___based] = ACTIONS(2384), - [anon_sym___cdecl] = ACTIONS(2384), - [anon_sym___clrcall] = ACTIONS(2384), - [anon_sym___stdcall] = ACTIONS(2384), - [anon_sym___fastcall] = ACTIONS(2384), - [anon_sym___thiscall] = ACTIONS(2384), - [anon_sym___vectorcall] = ACTIONS(2384), - [anon_sym_LBRACE] = ACTIONS(2386), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_static] = ACTIONS(2384), - [anon_sym_register] = ACTIONS(2384), - [anon_sym_inline] = ACTIONS(2384), - [anon_sym_thread_local] = ACTIONS(2384), - [anon_sym_const] = ACTIONS(2384), - [anon_sym_volatile] = ACTIONS(2384), - [anon_sym_restrict] = ACTIONS(2384), - [anon_sym__Atomic] = ACTIONS(2384), - [anon_sym_mutable] = ACTIONS(2384), - [anon_sym_constexpr] = ACTIONS(2384), - [anon_sym_constinit] = ACTIONS(2384), - [anon_sym_consteval] = ACTIONS(2384), - [anon_sym_signed] = ACTIONS(2384), - [anon_sym_unsigned] = ACTIONS(2384), - [anon_sym_long] = ACTIONS(2384), - [anon_sym_short] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2384), - [anon_sym_enum] = ACTIONS(2384), - [anon_sym_class] = ACTIONS(2384), - [anon_sym_struct] = ACTIONS(2384), - [anon_sym_union] = ACTIONS(2384), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_else] = ACTIONS(2384), - [anon_sym_switch] = ACTIONS(2384), - [anon_sym_case] = ACTIONS(2384), - [anon_sym_default] = ACTIONS(2384), - [anon_sym_while] = ACTIONS(2384), - [anon_sym_do] = ACTIONS(2384), - [anon_sym_for] = ACTIONS(2384), - [anon_sym_return] = ACTIONS(2384), - [anon_sym_break] = ACTIONS(2384), - [anon_sym_continue] = ACTIONS(2384), - [anon_sym_goto] = ACTIONS(2384), - [anon_sym_not] = ACTIONS(2384), - [anon_sym_compl] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(2384), - [sym_number_literal] = ACTIONS(2386), - [anon_sym_L_SQUOTE] = ACTIONS(2386), - [anon_sym_u_SQUOTE] = ACTIONS(2386), - [anon_sym_U_SQUOTE] = ACTIONS(2386), - [anon_sym_u8_SQUOTE] = ACTIONS(2386), - [anon_sym_SQUOTE] = ACTIONS(2386), - [anon_sym_L_DQUOTE] = ACTIONS(2386), - [anon_sym_u_DQUOTE] = ACTIONS(2386), - [anon_sym_U_DQUOTE] = ACTIONS(2386), - [anon_sym_u8_DQUOTE] = ACTIONS(2386), - [anon_sym_DQUOTE] = ACTIONS(2386), - [sym_true] = ACTIONS(2384), - [sym_false] = ACTIONS(2384), - [sym_null] = ACTIONS(2384), + [sym_catch_clause] = STATE(338), + [aux_sym_constructor_try_statement_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(2353), + [aux_sym_preproc_include_token1] = ACTIONS(2353), + [aux_sym_preproc_def_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2353), + [sym_preproc_directive] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym___attribute__] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), + [anon_sym___declspec] = ACTIONS(2353), + [anon_sym___based] = ACTIONS(2353), + [anon_sym___cdecl] = ACTIONS(2353), + [anon_sym___clrcall] = ACTIONS(2353), + [anon_sym___stdcall] = ACTIONS(2353), + [anon_sym___fastcall] = ACTIONS(2353), + [anon_sym___thiscall] = ACTIONS(2353), + [anon_sym___vectorcall] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_register] = ACTIONS(2353), + [anon_sym_inline] = ACTIONS(2353), + [anon_sym_thread_local] = ACTIONS(2353), + [anon_sym_input] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_volatile] = ACTIONS(2353), + [anon_sym_restrict] = ACTIONS(2353), + [anon_sym__Atomic] = ACTIONS(2353), + [anon_sym_mutable] = ACTIONS(2353), + [anon_sym_constexpr] = ACTIONS(2353), + [anon_sym_constinit] = ACTIONS(2353), + [anon_sym_consteval] = ACTIONS(2353), + [anon_sym_signed] = ACTIONS(2353), + [anon_sym_unsigned] = ACTIONS(2353), + [anon_sym_long] = ACTIONS(2353), + [anon_sym_short] = ACTIONS(2353), + [sym_primitive_type] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_else] = ACTIONS(2353), + [anon_sym_switch] = ACTIONS(2353), + [anon_sym_case] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_goto] = ACTIONS(2353), + [anon_sym_not] = ACTIONS(2353), + [anon_sym_compl] = ACTIONS(2353), + [anon_sym_DASH_DASH] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_sizeof] = ACTIONS(2353), + [sym_number_literal] = ACTIONS(2355), + [anon_sym_L_SQUOTE] = ACTIONS(2355), + [anon_sym_u_SQUOTE] = ACTIONS(2355), + [anon_sym_U_SQUOTE] = ACTIONS(2355), + [anon_sym_u8_SQUOTE] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2355), + [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(2353), + [sym_false] = ACTIONS(2353), + [sym_null] = ACTIONS(2353), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2384), - [anon_sym_decltype] = ACTIONS(2384), - [anon_sym_virtual] = ACTIONS(2384), - [anon_sym_explicit] = ACTIONS(2384), - [anon_sym_typename] = ACTIONS(2384), - [anon_sym_template] = ACTIONS(2384), - [anon_sym_operator] = ACTIONS(2384), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_delete] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2384), - [anon_sym_namespace] = ACTIONS(2384), - [anon_sym_using] = ACTIONS(2384), - [anon_sym_static_assert] = ACTIONS(2384), - [anon_sym_concept] = ACTIONS(2384), - [anon_sym_co_return] = ACTIONS(2384), - [anon_sym_co_yield] = ACTIONS(2384), - [anon_sym_catch] = ACTIONS(2384), - [anon_sym_R_DQUOTE] = ACTIONS(2386), - [anon_sym_LR_DQUOTE] = ACTIONS(2386), - [anon_sym_uR_DQUOTE] = ACTIONS(2386), - [anon_sym_UR_DQUOTE] = ACTIONS(2386), - [anon_sym_u8R_DQUOTE] = ACTIONS(2386), - [anon_sym_co_await] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2384), - [anon_sym_requires] = ACTIONS(2384), - [sym_this] = ACTIONS(2384), - [sym_nullptr] = ACTIONS(2384), + [sym_auto] = ACTIONS(2353), + [anon_sym_decltype] = ACTIONS(2353), + [anon_sym_virtual] = ACTIONS(2353), + [anon_sym_explicit] = ACTIONS(2353), + [anon_sym_typename] = ACTIONS(2353), + [anon_sym_template] = ACTIONS(2353), + [anon_sym_operator] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_delete] = ACTIONS(2353), + [anon_sym_throw] = ACTIONS(2353), + [anon_sym_namespace] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [anon_sym_static_assert] = ACTIONS(2353), + [anon_sym_concept] = ACTIONS(2353), + [anon_sym_co_return] = ACTIONS(2353), + [anon_sym_co_yield] = ACTIONS(2353), + [anon_sym_catch] = ACTIONS(2386), + [anon_sym_R_DQUOTE] = ACTIONS(2355), + [anon_sym_LR_DQUOTE] = ACTIONS(2355), + [anon_sym_uR_DQUOTE] = ACTIONS(2355), + [anon_sym_UR_DQUOTE] = ACTIONS(2355), + [anon_sym_u8R_DQUOTE] = ACTIONS(2355), + [anon_sym_co_await] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_requires] = ACTIONS(2353), + [sym_this] = ACTIONS(2353), + [sym_nullptr] = ACTIONS(2353), }, [341] = { - [sym_catch_clause] = STATE(337), - [aux_sym_constructor_try_statement_repeat1] = STATE(337), - [sym_identifier] = ACTIONS(2355), - [aux_sym_preproc_include_token1] = ACTIONS(2355), - [aux_sym_preproc_def_token1] = ACTIONS(2355), - [aux_sym_preproc_if_token1] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), - [sym_preproc_directive] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_AMP_AMP] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_typedef] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym___attribute__] = ACTIONS(2355), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), - [anon_sym___declspec] = ACTIONS(2355), - [anon_sym___based] = ACTIONS(2355), - [anon_sym___cdecl] = ACTIONS(2355), - [anon_sym___clrcall] = ACTIONS(2355), - [anon_sym___stdcall] = ACTIONS(2355), - [anon_sym___fastcall] = ACTIONS(2355), - [anon_sym___thiscall] = ACTIONS(2355), - [anon_sym___vectorcall] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2355), - [anon_sym_thread_local] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_volatile] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2355), - [anon_sym__Atomic] = ACTIONS(2355), - [anon_sym_mutable] = ACTIONS(2355), - [anon_sym_constexpr] = ACTIONS(2355), - [anon_sym_constinit] = ACTIONS(2355), - [anon_sym_consteval] = ACTIONS(2355), - [anon_sym_signed] = ACTIONS(2355), - [anon_sym_unsigned] = ACTIONS(2355), - [anon_sym_long] = ACTIONS(2355), - [anon_sym_short] = ACTIONS(2355), - [sym_primitive_type] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_class] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_switch] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2355), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_goto] = ACTIONS(2355), - [anon_sym_not] = ACTIONS(2355), - [anon_sym_compl] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_sizeof] = ACTIONS(2355), - [sym_number_literal] = ACTIONS(2357), - [anon_sym_L_SQUOTE] = ACTIONS(2357), - [anon_sym_u_SQUOTE] = ACTIONS(2357), - [anon_sym_U_SQUOTE] = ACTIONS(2357), - [anon_sym_u8_SQUOTE] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_L_DQUOTE] = ACTIONS(2357), - [anon_sym_u_DQUOTE] = ACTIONS(2357), - [anon_sym_U_DQUOTE] = ACTIONS(2357), - [anon_sym_u8_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_true] = ACTIONS(2355), - [sym_false] = ACTIONS(2355), - [sym_null] = ACTIONS(2355), + [sym_catch_clause] = STATE(336), + [aux_sym_constructor_try_statement_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(2353), + [aux_sym_preproc_include_token1] = ACTIONS(2353), + [aux_sym_preproc_def_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token2] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2353), + [sym_preproc_directive] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym___attribute__] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), + [anon_sym___declspec] = ACTIONS(2353), + [anon_sym___based] = ACTIONS(2353), + [anon_sym___cdecl] = ACTIONS(2353), + [anon_sym___clrcall] = ACTIONS(2353), + [anon_sym___stdcall] = ACTIONS(2353), + [anon_sym___fastcall] = ACTIONS(2353), + [anon_sym___thiscall] = ACTIONS(2353), + [anon_sym___vectorcall] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_register] = ACTIONS(2353), + [anon_sym_inline] = ACTIONS(2353), + [anon_sym_thread_local] = ACTIONS(2353), + [anon_sym_input] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_volatile] = ACTIONS(2353), + [anon_sym_restrict] = ACTIONS(2353), + [anon_sym__Atomic] = ACTIONS(2353), + [anon_sym_mutable] = ACTIONS(2353), + [anon_sym_constexpr] = ACTIONS(2353), + [anon_sym_constinit] = ACTIONS(2353), + [anon_sym_consteval] = ACTIONS(2353), + [anon_sym_signed] = ACTIONS(2353), + [anon_sym_unsigned] = ACTIONS(2353), + [anon_sym_long] = ACTIONS(2353), + [anon_sym_short] = ACTIONS(2353), + [sym_primitive_type] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_else] = ACTIONS(2353), + [anon_sym_switch] = ACTIONS(2353), + [anon_sym_case] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_goto] = ACTIONS(2353), + [anon_sym_not] = ACTIONS(2353), + [anon_sym_compl] = ACTIONS(2353), + [anon_sym_DASH_DASH] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_sizeof] = ACTIONS(2353), + [sym_number_literal] = ACTIONS(2355), + [anon_sym_L_SQUOTE] = ACTIONS(2355), + [anon_sym_u_SQUOTE] = ACTIONS(2355), + [anon_sym_U_SQUOTE] = ACTIONS(2355), + [anon_sym_u8_SQUOTE] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2355), + [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(2353), + [sym_false] = ACTIONS(2353), + [sym_null] = ACTIONS(2353), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2355), - [anon_sym_decltype] = ACTIONS(2355), - [anon_sym_virtual] = ACTIONS(2355), - [anon_sym_explicit] = ACTIONS(2355), - [anon_sym_typename] = ACTIONS(2355), - [anon_sym_template] = ACTIONS(2355), - [anon_sym_operator] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_delete] = ACTIONS(2355), - [anon_sym_throw] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2355), - [anon_sym_using] = ACTIONS(2355), - [anon_sym_static_assert] = ACTIONS(2355), - [anon_sym_concept] = ACTIONS(2355), - [anon_sym_co_return] = ACTIONS(2355), - [anon_sym_co_yield] = ACTIONS(2355), + [sym_auto] = ACTIONS(2353), + [anon_sym_decltype] = ACTIONS(2353), + [anon_sym_virtual] = ACTIONS(2353), + [anon_sym_explicit] = ACTIONS(2353), + [anon_sym_typename] = ACTIONS(2353), + [anon_sym_template] = ACTIONS(2353), + [anon_sym_operator] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_delete] = ACTIONS(2353), + [anon_sym_throw] = ACTIONS(2353), + [anon_sym_namespace] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [anon_sym_static_assert] = ACTIONS(2353), + [anon_sym_concept] = ACTIONS(2353), + [anon_sym_co_return] = ACTIONS(2353), + [anon_sym_co_yield] = ACTIONS(2353), [anon_sym_catch] = ACTIONS(2388), - [anon_sym_R_DQUOTE] = ACTIONS(2357), - [anon_sym_LR_DQUOTE] = ACTIONS(2357), - [anon_sym_uR_DQUOTE] = ACTIONS(2357), - [anon_sym_UR_DQUOTE] = ACTIONS(2357), - [anon_sym_u8R_DQUOTE] = ACTIONS(2357), - [anon_sym_co_await] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_requires] = ACTIONS(2355), - [sym_this] = ACTIONS(2355), - [sym_nullptr] = ACTIONS(2355), + [anon_sym_R_DQUOTE] = ACTIONS(2355), + [anon_sym_LR_DQUOTE] = ACTIONS(2355), + [anon_sym_uR_DQUOTE] = ACTIONS(2355), + [anon_sym_UR_DQUOTE] = ACTIONS(2355), + [anon_sym_u8R_DQUOTE] = ACTIONS(2355), + [anon_sym_co_await] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_requires] = ACTIONS(2353), + [sym_this] = ACTIONS(2353), + [sym_nullptr] = ACTIONS(2353), }, [342] = { [sym_catch_clause] = STATE(342), [aux_sym_constructor_try_statement_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2361), - [aux_sym_preproc_include_token1] = ACTIONS(2361), - [aux_sym_preproc_def_token1] = ACTIONS(2361), - [aux_sym_preproc_if_token1] = ACTIONS(2361), - [aux_sym_preproc_if_token2] = ACTIONS(2361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2361), - [sym_preproc_directive] = ACTIONS(2361), - [anon_sym_LPAREN2] = ACTIONS(2363), - [anon_sym_BANG] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(2363), - [anon_sym_AMP_AMP] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2361), - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_typedef] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(2361), - [anon_sym___attribute__] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2363), - [anon_sym___declspec] = ACTIONS(2361), - [anon_sym___based] = ACTIONS(2361), - [anon_sym___cdecl] = ACTIONS(2361), - [anon_sym___clrcall] = ACTIONS(2361), - [anon_sym___stdcall] = ACTIONS(2361), - [anon_sym___fastcall] = ACTIONS(2361), - [anon_sym___thiscall] = ACTIONS(2361), - [anon_sym___vectorcall] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_register] = ACTIONS(2361), - [anon_sym_inline] = ACTIONS(2361), - [anon_sym_thread_local] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_volatile] = ACTIONS(2361), - [anon_sym_restrict] = ACTIONS(2361), - [anon_sym__Atomic] = ACTIONS(2361), - [anon_sym_mutable] = ACTIONS(2361), - [anon_sym_constexpr] = ACTIONS(2361), - [anon_sym_constinit] = ACTIONS(2361), - [anon_sym_consteval] = ACTIONS(2361), - [anon_sym_signed] = ACTIONS(2361), - [anon_sym_unsigned] = ACTIONS(2361), - [anon_sym_long] = ACTIONS(2361), - [anon_sym_short] = ACTIONS(2361), - [sym_primitive_type] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_struct] = ACTIONS(2361), - [anon_sym_union] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_switch] = ACTIONS(2361), - [anon_sym_case] = ACTIONS(2361), - [anon_sym_default] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_goto] = ACTIONS(2361), - [anon_sym_not] = ACTIONS(2361), - [anon_sym_compl] = ACTIONS(2361), - [anon_sym_DASH_DASH] = ACTIONS(2363), - [anon_sym_PLUS_PLUS] = ACTIONS(2363), - [anon_sym_sizeof] = ACTIONS(2361), - [sym_number_literal] = ACTIONS(2363), - [anon_sym_L_SQUOTE] = ACTIONS(2363), - [anon_sym_u_SQUOTE] = ACTIONS(2363), - [anon_sym_U_SQUOTE] = ACTIONS(2363), - [anon_sym_u8_SQUOTE] = ACTIONS(2363), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_L_DQUOTE] = ACTIONS(2363), - [anon_sym_u_DQUOTE] = ACTIONS(2363), - [anon_sym_U_DQUOTE] = ACTIONS(2363), - [anon_sym_u8_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(2363), - [sym_true] = ACTIONS(2361), - [sym_false] = ACTIONS(2361), - [sym_null] = ACTIONS(2361), + [ts_builtin_sym_end] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2359), + [aux_sym_preproc_include_token1] = ACTIONS(2359), + [aux_sym_preproc_def_token1] = ACTIONS(2359), + [aux_sym_preproc_if_token1] = ACTIONS(2359), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2359), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2359), + [sym_preproc_directive] = ACTIONS(2359), + [anon_sym_LPAREN2] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2361), + [anon_sym_TILDE] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_PLUS] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2361), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_typedef] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym___attribute__] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2361), + [anon_sym___declspec] = ACTIONS(2359), + [anon_sym___based] = ACTIONS(2359), + [anon_sym___cdecl] = ACTIONS(2359), + [anon_sym___clrcall] = ACTIONS(2359), + [anon_sym___stdcall] = ACTIONS(2359), + [anon_sym___fastcall] = ACTIONS(2359), + [anon_sym___thiscall] = ACTIONS(2359), + [anon_sym___vectorcall] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym_thread_local] = ACTIONS(2359), + [anon_sym_input] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_restrict] = ACTIONS(2359), + [anon_sym__Atomic] = ACTIONS(2359), + [anon_sym_mutable] = ACTIONS(2359), + [anon_sym_constexpr] = ACTIONS(2359), + [anon_sym_constinit] = ACTIONS(2359), + [anon_sym_consteval] = ACTIONS(2359), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [sym_primitive_type] = ACTIONS(2359), + [anon_sym_enum] = ACTIONS(2359), + [anon_sym_class] = ACTIONS(2359), + [anon_sym_struct] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_else] = ACTIONS(2359), + [anon_sym_switch] = ACTIONS(2359), + [anon_sym_case] = ACTIONS(2359), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_do] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_goto] = ACTIONS(2359), + [anon_sym_not] = ACTIONS(2359), + [anon_sym_compl] = ACTIONS(2359), + [anon_sym_DASH_DASH] = ACTIONS(2361), + [anon_sym_PLUS_PLUS] = ACTIONS(2361), + [anon_sym_sizeof] = ACTIONS(2359), + [sym_number_literal] = ACTIONS(2361), + [anon_sym_L_SQUOTE] = ACTIONS(2361), + [anon_sym_u_SQUOTE] = ACTIONS(2361), + [anon_sym_U_SQUOTE] = ACTIONS(2361), + [anon_sym_u8_SQUOTE] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_L_DQUOTE] = ACTIONS(2361), + [anon_sym_u_DQUOTE] = ACTIONS(2361), + [anon_sym_U_DQUOTE] = ACTIONS(2361), + [anon_sym_u8_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2361), + [sym_true] = ACTIONS(2359), + [sym_false] = ACTIONS(2359), + [sym_null] = ACTIONS(2359), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2361), - [anon_sym_decltype] = ACTIONS(2361), - [anon_sym_virtual] = ACTIONS(2361), - [anon_sym_explicit] = ACTIONS(2361), - [anon_sym_typename] = ACTIONS(2361), - [anon_sym_template] = ACTIONS(2361), - [anon_sym_operator] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_throw] = ACTIONS(2361), - [anon_sym_namespace] = ACTIONS(2361), - [anon_sym_using] = ACTIONS(2361), - [anon_sym_static_assert] = ACTIONS(2361), - [anon_sym_concept] = ACTIONS(2361), - [anon_sym_co_return] = ACTIONS(2361), - [anon_sym_co_yield] = ACTIONS(2361), + [sym_auto] = ACTIONS(2359), + [anon_sym_decltype] = ACTIONS(2359), + [anon_sym_virtual] = ACTIONS(2359), + [anon_sym_explicit] = ACTIONS(2359), + [anon_sym_typename] = ACTIONS(2359), + [anon_sym_template] = ACTIONS(2359), + [anon_sym_operator] = ACTIONS(2359), + [anon_sym_try] = ACTIONS(2359), + [anon_sym_delete] = ACTIONS(2359), + [anon_sym_throw] = ACTIONS(2359), + [anon_sym_namespace] = ACTIONS(2359), + [anon_sym_using] = ACTIONS(2359), + [anon_sym_static_assert] = ACTIONS(2359), + [anon_sym_concept] = ACTIONS(2359), + [anon_sym_co_return] = ACTIONS(2359), + [anon_sym_co_yield] = ACTIONS(2359), [anon_sym_catch] = ACTIONS(2390), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2361), - [anon_sym_requires] = ACTIONS(2361), - [sym_this] = ACTIONS(2361), - [sym_nullptr] = ACTIONS(2361), + [anon_sym_R_DQUOTE] = ACTIONS(2361), + [anon_sym_LR_DQUOTE] = ACTIONS(2361), + [anon_sym_uR_DQUOTE] = ACTIONS(2361), + [anon_sym_UR_DQUOTE] = ACTIONS(2361), + [anon_sym_u8R_DQUOTE] = ACTIONS(2361), + [anon_sym_co_await] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2359), + [anon_sym_requires] = ACTIONS(2359), + [sym_this] = ACTIONS(2359), + [sym_nullptr] = ACTIONS(2359), }, [343] = { - [sym_identifier] = ACTIONS(2329), - [aux_sym_preproc_include_token1] = ACTIONS(2329), - [aux_sym_preproc_def_token1] = ACTIONS(2329), - [aux_sym_preproc_if_token1] = ACTIONS(2329), - [aux_sym_preproc_if_token2] = ACTIONS(2329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2329), - [aux_sym_preproc_else_token1] = ACTIONS(2329), - [aux_sym_preproc_elif_token1] = ACTIONS(2329), - [sym_preproc_directive] = ACTIONS(2329), - [anon_sym_LPAREN2] = ACTIONS(2327), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_AMP_AMP] = ACTIONS(2327), - [anon_sym_AMP] = ACTIONS(2329), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_typedef] = ACTIONS(2329), - [anon_sym_extern] = ACTIONS(2329), - [anon_sym___attribute__] = ACTIONS(2329), - [anon_sym_COLON_COLON] = ACTIONS(2327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), - [anon_sym___declspec] = ACTIONS(2329), - [anon_sym___based] = ACTIONS(2329), - [anon_sym___cdecl] = ACTIONS(2329), - [anon_sym___clrcall] = ACTIONS(2329), - [anon_sym___stdcall] = ACTIONS(2329), - [anon_sym___fastcall] = ACTIONS(2329), - [anon_sym___thiscall] = ACTIONS(2329), - [anon_sym___vectorcall] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_register] = ACTIONS(2329), - [anon_sym_inline] = ACTIONS(2329), - [anon_sym_thread_local] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_volatile] = ACTIONS(2329), - [anon_sym_restrict] = ACTIONS(2329), - [anon_sym__Atomic] = ACTIONS(2329), - [anon_sym_mutable] = ACTIONS(2329), - [anon_sym_constexpr] = ACTIONS(2329), - [anon_sym_constinit] = ACTIONS(2329), - [anon_sym_consteval] = ACTIONS(2329), - [anon_sym_signed] = ACTIONS(2329), - [anon_sym_unsigned] = ACTIONS(2329), - [anon_sym_long] = ACTIONS(2329), - [anon_sym_short] = ACTIONS(2329), - [sym_primitive_type] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), - [anon_sym_class] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2329), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_else] = ACTIONS(2329), - [anon_sym_switch] = ACTIONS(2329), - [anon_sym_case] = ACTIONS(2329), - [anon_sym_default] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_goto] = ACTIONS(2329), - [anon_sym_not] = ACTIONS(2329), - [anon_sym_compl] = ACTIONS(2329), - [anon_sym_DASH_DASH] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2327), - [anon_sym_sizeof] = ACTIONS(2329), - [sym_number_literal] = ACTIONS(2327), - [anon_sym_L_SQUOTE] = ACTIONS(2327), - [anon_sym_u_SQUOTE] = ACTIONS(2327), - [anon_sym_U_SQUOTE] = ACTIONS(2327), - [anon_sym_u8_SQUOTE] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2327), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2329), - [sym_false] = ACTIONS(2329), - [sym_null] = ACTIONS(2329), + [sym_identifier] = ACTIONS(2001), + [aux_sym_preproc_include_token1] = ACTIONS(2001), + [aux_sym_preproc_def_token1] = ACTIONS(2001), + [aux_sym_preproc_if_token1] = ACTIONS(2001), + [aux_sym_preproc_if_token2] = ACTIONS(2001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2001), + [aux_sym_preproc_else_token1] = ACTIONS(2001), + [aux_sym_preproc_elif_token1] = ACTIONS(2001), + [sym_preproc_directive] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1999), + [anon_sym_TILDE] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(1999), + [anon_sym_AMP_AMP] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_typedef] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym___attribute__] = ACTIONS(2001), + [anon_sym_COLON_COLON] = ACTIONS(1999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(2001), + [anon_sym___based] = ACTIONS(2001), + [anon_sym___cdecl] = ACTIONS(2001), + [anon_sym___clrcall] = ACTIONS(2001), + [anon_sym___stdcall] = ACTIONS(2001), + [anon_sym___fastcall] = ACTIONS(2001), + [anon_sym___thiscall] = ACTIONS(2001), + [anon_sym___vectorcall] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_inline] = ACTIONS(2001), + [anon_sym_thread_local] = ACTIONS(2001), + [anon_sym_input] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [anon_sym_volatile] = ACTIONS(2001), + [anon_sym_restrict] = ACTIONS(2001), + [anon_sym__Atomic] = ACTIONS(2001), + [anon_sym_mutable] = ACTIONS(2001), + [anon_sym_constexpr] = ACTIONS(2001), + [anon_sym_constinit] = ACTIONS(2001), + [anon_sym_consteval] = ACTIONS(2001), + [anon_sym_signed] = ACTIONS(2001), + [anon_sym_unsigned] = ACTIONS(2001), + [anon_sym_long] = ACTIONS(2001), + [anon_sym_short] = ACTIONS(2001), + [sym_primitive_type] = ACTIONS(2001), + [anon_sym_enum] = ACTIONS(2001), + [anon_sym_class] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_union] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_switch] = ACTIONS(2001), + [anon_sym_case] = ACTIONS(2001), + [anon_sym_default] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_goto] = ACTIONS(2001), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_compl] = ACTIONS(2001), + [anon_sym_DASH_DASH] = ACTIONS(1999), + [anon_sym_PLUS_PLUS] = ACTIONS(1999), + [anon_sym_sizeof] = ACTIONS(2001), + [sym_number_literal] = ACTIONS(1999), + [anon_sym_L_SQUOTE] = ACTIONS(1999), + [anon_sym_u_SQUOTE] = ACTIONS(1999), + [anon_sym_U_SQUOTE] = ACTIONS(1999), + [anon_sym_u8_SQUOTE] = ACTIONS(1999), + [anon_sym_SQUOTE] = ACTIONS(1999), + [anon_sym_L_DQUOTE] = ACTIONS(1999), + [anon_sym_u_DQUOTE] = ACTIONS(1999), + [anon_sym_U_DQUOTE] = ACTIONS(1999), + [anon_sym_u8_DQUOTE] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2329), - [anon_sym_decltype] = ACTIONS(2329), - [anon_sym_virtual] = ACTIONS(2329), - [anon_sym_explicit] = ACTIONS(2329), - [anon_sym_typename] = ACTIONS(2329), - [anon_sym_template] = ACTIONS(2329), - [anon_sym_operator] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_throw] = ACTIONS(2329), - [anon_sym_namespace] = ACTIONS(2329), - [anon_sym_using] = ACTIONS(2329), - [anon_sym_static_assert] = ACTIONS(2329), - [anon_sym_concept] = ACTIONS(2329), - [anon_sym_co_return] = ACTIONS(2329), - [anon_sym_co_yield] = ACTIONS(2329), - [anon_sym_catch] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2327), - [anon_sym_LR_DQUOTE] = ACTIONS(2327), - [anon_sym_uR_DQUOTE] = ACTIONS(2327), - [anon_sym_UR_DQUOTE] = ACTIONS(2327), - [anon_sym_u8R_DQUOTE] = ACTIONS(2327), - [anon_sym_co_await] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_requires] = ACTIONS(2329), - [sym_this] = ACTIONS(2329), - [sym_nullptr] = ACTIONS(2329), + [sym_auto] = ACTIONS(2001), + [anon_sym_decltype] = ACTIONS(2001), + [anon_sym_virtual] = ACTIONS(2001), + [anon_sym_explicit] = ACTIONS(2001), + [anon_sym_typename] = ACTIONS(2001), + [anon_sym_template] = ACTIONS(2001), + [anon_sym_operator] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_delete] = ACTIONS(2001), + [anon_sym_throw] = ACTIONS(2001), + [anon_sym_namespace] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(2001), + [anon_sym_static_assert] = ACTIONS(2001), + [anon_sym_concept] = ACTIONS(2001), + [anon_sym_co_return] = ACTIONS(2001), + [anon_sym_co_yield] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_R_DQUOTE] = ACTIONS(1999), + [anon_sym_LR_DQUOTE] = ACTIONS(1999), + [anon_sym_uR_DQUOTE] = ACTIONS(1999), + [anon_sym_UR_DQUOTE] = ACTIONS(1999), + [anon_sym_u8R_DQUOTE] = ACTIONS(1999), + [anon_sym_co_await] = ACTIONS(2001), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_requires] = ACTIONS(2001), + [sym_this] = ACTIONS(2001), + [sym_nullptr] = ACTIONS(2001), }, [344] = { - [sym_catch_clause] = STATE(338), - [aux_sym_constructor_try_statement_repeat1] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2355), - [aux_sym_preproc_include_token1] = ACTIONS(2355), - [aux_sym_preproc_def_token1] = ACTIONS(2355), - [aux_sym_preproc_if_token1] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), - [sym_preproc_directive] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_AMP_AMP] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_typedef] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym___attribute__] = ACTIONS(2355), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), - [anon_sym___declspec] = ACTIONS(2355), - [anon_sym___based] = ACTIONS(2355), - [anon_sym___cdecl] = ACTIONS(2355), - [anon_sym___clrcall] = ACTIONS(2355), - [anon_sym___stdcall] = ACTIONS(2355), - [anon_sym___fastcall] = ACTIONS(2355), - [anon_sym___thiscall] = ACTIONS(2355), - [anon_sym___vectorcall] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2355), - [anon_sym_thread_local] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_volatile] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2355), - [anon_sym__Atomic] = ACTIONS(2355), - [anon_sym_mutable] = ACTIONS(2355), - [anon_sym_constexpr] = ACTIONS(2355), - [anon_sym_constinit] = ACTIONS(2355), - [anon_sym_consteval] = ACTIONS(2355), - [anon_sym_signed] = ACTIONS(2355), - [anon_sym_unsigned] = ACTIONS(2355), - [anon_sym_long] = ACTIONS(2355), - [anon_sym_short] = ACTIONS(2355), - [sym_primitive_type] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_class] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_switch] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2355), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_goto] = ACTIONS(2355), - [anon_sym_not] = ACTIONS(2355), - [anon_sym_compl] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_sizeof] = ACTIONS(2355), - [sym_number_literal] = ACTIONS(2357), - [anon_sym_L_SQUOTE] = ACTIONS(2357), - [anon_sym_u_SQUOTE] = ACTIONS(2357), - [anon_sym_U_SQUOTE] = ACTIONS(2357), - [anon_sym_u8_SQUOTE] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_L_DQUOTE] = ACTIONS(2357), - [anon_sym_u_DQUOTE] = ACTIONS(2357), - [anon_sym_U_DQUOTE] = ACTIONS(2357), - [anon_sym_u8_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_true] = ACTIONS(2355), - [sym_false] = ACTIONS(2355), - [sym_null] = ACTIONS(2355), + [sym_catch_clause] = STATE(342), + [aux_sym_constructor_try_statement_repeat1] = STATE(342), + [ts_builtin_sym_end] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2353), + [aux_sym_preproc_include_token1] = ACTIONS(2353), + [aux_sym_preproc_def_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2353), + [sym_preproc_directive] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym___attribute__] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), + [anon_sym___declspec] = ACTIONS(2353), + [anon_sym___based] = ACTIONS(2353), + [anon_sym___cdecl] = ACTIONS(2353), + [anon_sym___clrcall] = ACTIONS(2353), + [anon_sym___stdcall] = ACTIONS(2353), + [anon_sym___fastcall] = ACTIONS(2353), + [anon_sym___thiscall] = ACTIONS(2353), + [anon_sym___vectorcall] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_register] = ACTIONS(2353), + [anon_sym_inline] = ACTIONS(2353), + [anon_sym_thread_local] = ACTIONS(2353), + [anon_sym_input] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_volatile] = ACTIONS(2353), + [anon_sym_restrict] = ACTIONS(2353), + [anon_sym__Atomic] = ACTIONS(2353), + [anon_sym_mutable] = ACTIONS(2353), + [anon_sym_constexpr] = ACTIONS(2353), + [anon_sym_constinit] = ACTIONS(2353), + [anon_sym_consteval] = ACTIONS(2353), + [anon_sym_signed] = ACTIONS(2353), + [anon_sym_unsigned] = ACTIONS(2353), + [anon_sym_long] = ACTIONS(2353), + [anon_sym_short] = ACTIONS(2353), + [sym_primitive_type] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_else] = ACTIONS(2353), + [anon_sym_switch] = ACTIONS(2353), + [anon_sym_case] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_goto] = ACTIONS(2353), + [anon_sym_not] = ACTIONS(2353), + [anon_sym_compl] = ACTIONS(2353), + [anon_sym_DASH_DASH] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_sizeof] = ACTIONS(2353), + [sym_number_literal] = ACTIONS(2355), + [anon_sym_L_SQUOTE] = ACTIONS(2355), + [anon_sym_u_SQUOTE] = ACTIONS(2355), + [anon_sym_U_SQUOTE] = ACTIONS(2355), + [anon_sym_u8_SQUOTE] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2355), + [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(2353), + [sym_false] = ACTIONS(2353), + [sym_null] = ACTIONS(2353), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2355), - [anon_sym_decltype] = ACTIONS(2355), - [anon_sym_virtual] = ACTIONS(2355), - [anon_sym_explicit] = ACTIONS(2355), - [anon_sym_typename] = ACTIONS(2355), - [anon_sym_template] = ACTIONS(2355), - [anon_sym_operator] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_delete] = ACTIONS(2355), - [anon_sym_throw] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2355), - [anon_sym_using] = ACTIONS(2355), - [anon_sym_static_assert] = ACTIONS(2355), - [anon_sym_concept] = ACTIONS(2355), - [anon_sym_co_return] = ACTIONS(2355), - [anon_sym_co_yield] = ACTIONS(2355), + [sym_auto] = ACTIONS(2353), + [anon_sym_decltype] = ACTIONS(2353), + [anon_sym_virtual] = ACTIONS(2353), + [anon_sym_explicit] = ACTIONS(2353), + [anon_sym_typename] = ACTIONS(2353), + [anon_sym_template] = ACTIONS(2353), + [anon_sym_operator] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_delete] = ACTIONS(2353), + [anon_sym_throw] = ACTIONS(2353), + [anon_sym_namespace] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [anon_sym_static_assert] = ACTIONS(2353), + [anon_sym_concept] = ACTIONS(2353), + [anon_sym_co_return] = ACTIONS(2353), + [anon_sym_co_yield] = ACTIONS(2353), [anon_sym_catch] = ACTIONS(2393), - [anon_sym_R_DQUOTE] = ACTIONS(2357), - [anon_sym_LR_DQUOTE] = ACTIONS(2357), - [anon_sym_uR_DQUOTE] = ACTIONS(2357), - [anon_sym_UR_DQUOTE] = ACTIONS(2357), - [anon_sym_u8R_DQUOTE] = ACTIONS(2357), - [anon_sym_co_await] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_requires] = ACTIONS(2355), - [sym_this] = ACTIONS(2355), - [sym_nullptr] = ACTIONS(2355), + [anon_sym_R_DQUOTE] = ACTIONS(2355), + [anon_sym_LR_DQUOTE] = ACTIONS(2355), + [anon_sym_uR_DQUOTE] = ACTIONS(2355), + [anon_sym_UR_DQUOTE] = ACTIONS(2355), + [anon_sym_u8R_DQUOTE] = ACTIONS(2355), + [anon_sym_co_await] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_requires] = ACTIONS(2353), + [sym_this] = ACTIONS(2353), + [sym_nullptr] = ACTIONS(2353), }, [345] = { [sym_identifier] = ACTIONS(2395), @@ -76888,6 +77075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2395), [anon_sym_inline] = ACTIONS(2395), [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), [anon_sym_const] = ACTIONS(2395), [anon_sym_volatile] = ACTIONS(2395), [anon_sym_restrict] = ACTIONS(2395), @@ -77003,6 +77191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2399), [anon_sym_inline] = ACTIONS(2399), [anon_sym_thread_local] = ACTIONS(2399), + [anon_sym_input] = ACTIONS(2399), [anon_sym_const] = ACTIONS(2399), [anon_sym_volatile] = ACTIONS(2399), [anon_sym_restrict] = ACTIONS(2399), @@ -77021,7 +77210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2399), [anon_sym_union] = ACTIONS(2399), [anon_sym_if] = ACTIONS(2399), - [anon_sym_else] = ACTIONS(2403), + [anon_sym_else] = ACTIONS(2399), [anon_sym_switch] = ACTIONS(2399), [anon_sym_case] = ACTIONS(2399), [anon_sym_default] = ACTIONS(2399), @@ -77080,4606 +77269,2674 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2399), }, [347] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2403), + [aux_sym_preproc_include_token1] = ACTIONS(2403), + [aux_sym_preproc_def_token1] = ACTIONS(2403), + [aux_sym_preproc_if_token1] = ACTIONS(2403), + [aux_sym_preproc_if_token2] = ACTIONS(2403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2403), + [aux_sym_preproc_else_token1] = ACTIONS(2403), + [aux_sym_preproc_elif_token1] = ACTIONS(2403), + [sym_preproc_directive] = ACTIONS(2403), + [anon_sym_LPAREN2] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(2405), + [anon_sym_AMP] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_typedef] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym___attribute__] = ACTIONS(2403), + [anon_sym_COLON_COLON] = ACTIONS(2405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), + [anon_sym___declspec] = ACTIONS(2403), + [anon_sym___based] = ACTIONS(2403), + [anon_sym___cdecl] = ACTIONS(2403), + [anon_sym___clrcall] = ACTIONS(2403), + [anon_sym___stdcall] = ACTIONS(2403), + [anon_sym___fastcall] = ACTIONS(2403), + [anon_sym___thiscall] = ACTIONS(2403), + [anon_sym___vectorcall] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_inline] = ACTIONS(2403), + [anon_sym_thread_local] = ACTIONS(2403), + [anon_sym_input] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_volatile] = ACTIONS(2403), + [anon_sym_restrict] = ACTIONS(2403), + [anon_sym__Atomic] = ACTIONS(2403), + [anon_sym_mutable] = ACTIONS(2403), + [anon_sym_constexpr] = ACTIONS(2403), + [anon_sym_constinit] = ACTIONS(2403), + [anon_sym_consteval] = ACTIONS(2403), + [anon_sym_signed] = ACTIONS(2403), + [anon_sym_unsigned] = ACTIONS(2403), + [anon_sym_long] = ACTIONS(2403), + [anon_sym_short] = ACTIONS(2403), + [sym_primitive_type] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_class] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_switch] = ACTIONS(2403), + [anon_sym_case] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_goto] = ACTIONS(2403), + [anon_sym_not] = ACTIONS(2403), + [anon_sym_compl] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2405), + [anon_sym_PLUS_PLUS] = ACTIONS(2405), + [anon_sym_sizeof] = ACTIONS(2403), + [sym_number_literal] = ACTIONS(2405), + [anon_sym_L_SQUOTE] = ACTIONS(2405), + [anon_sym_u_SQUOTE] = ACTIONS(2405), + [anon_sym_U_SQUOTE] = ACTIONS(2405), + [anon_sym_u8_SQUOTE] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_L_DQUOTE] = ACTIONS(2405), + [anon_sym_u_DQUOTE] = ACTIONS(2405), + [anon_sym_U_DQUOTE] = ACTIONS(2405), + [anon_sym_u8_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [sym_true] = ACTIONS(2403), + [sym_false] = ACTIONS(2403), + [sym_null] = ACTIONS(2403), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2403), + [anon_sym_decltype] = ACTIONS(2403), + [anon_sym_virtual] = ACTIONS(2403), + [anon_sym_explicit] = ACTIONS(2403), + [anon_sym_typename] = ACTIONS(2403), + [anon_sym_template] = ACTIONS(2403), + [anon_sym_operator] = ACTIONS(2403), + [anon_sym_try] = ACTIONS(2403), + [anon_sym_delete] = ACTIONS(2403), + [anon_sym_throw] = ACTIONS(2403), + [anon_sym_namespace] = ACTIONS(2403), + [anon_sym_using] = ACTIONS(2403), + [anon_sym_static_assert] = ACTIONS(2403), + [anon_sym_concept] = ACTIONS(2403), + [anon_sym_co_return] = ACTIONS(2403), + [anon_sym_co_yield] = ACTIONS(2403), + [anon_sym_R_DQUOTE] = ACTIONS(2405), + [anon_sym_LR_DQUOTE] = ACTIONS(2405), + [anon_sym_uR_DQUOTE] = ACTIONS(2405), + [anon_sym_UR_DQUOTE] = ACTIONS(2405), + [anon_sym_u8R_DQUOTE] = ACTIONS(2405), + [anon_sym_co_await] = ACTIONS(2403), + [anon_sym_new] = ACTIONS(2403), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2403), + [sym_nullptr] = ACTIONS(2403), }, [348] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2407), + [aux_sym_preproc_include_token1] = ACTIONS(2407), + [aux_sym_preproc_def_token1] = ACTIONS(2407), + [aux_sym_preproc_if_token1] = ACTIONS(2407), + [aux_sym_preproc_if_token2] = ACTIONS(2407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2407), + [aux_sym_preproc_else_token1] = ACTIONS(2407), + [aux_sym_preproc_elif_token1] = ACTIONS(2407), + [sym_preproc_directive] = ACTIONS(2407), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_BANG] = ACTIONS(2409), + [anon_sym_TILDE] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2407), + [anon_sym_PLUS] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_AMP_AMP] = ACTIONS(2409), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2409), + [anon_sym_typedef] = ACTIONS(2407), + [anon_sym_extern] = ACTIONS(2407), + [anon_sym___attribute__] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2409), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2409), + [anon_sym___declspec] = ACTIONS(2407), + [anon_sym___based] = ACTIONS(2407), + [anon_sym___cdecl] = ACTIONS(2407), + [anon_sym___clrcall] = ACTIONS(2407), + [anon_sym___stdcall] = ACTIONS(2407), + [anon_sym___fastcall] = ACTIONS(2407), + [anon_sym___thiscall] = ACTIONS(2407), + [anon_sym___vectorcall] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_static] = ACTIONS(2407), + [anon_sym_register] = ACTIONS(2407), + [anon_sym_inline] = ACTIONS(2407), + [anon_sym_thread_local] = ACTIONS(2407), + [anon_sym_input] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [anon_sym_volatile] = ACTIONS(2407), + [anon_sym_restrict] = ACTIONS(2407), + [anon_sym__Atomic] = ACTIONS(2407), + [anon_sym_mutable] = ACTIONS(2407), + [anon_sym_constexpr] = ACTIONS(2407), + [anon_sym_constinit] = ACTIONS(2407), + [anon_sym_consteval] = ACTIONS(2407), + [anon_sym_signed] = ACTIONS(2407), + [anon_sym_unsigned] = ACTIONS(2407), + [anon_sym_long] = ACTIONS(2407), + [anon_sym_short] = ACTIONS(2407), + [sym_primitive_type] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2407), + [anon_sym_class] = ACTIONS(2407), + [anon_sym_struct] = ACTIONS(2407), + [anon_sym_union] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_else] = ACTIONS(2407), + [anon_sym_switch] = ACTIONS(2407), + [anon_sym_case] = ACTIONS(2407), + [anon_sym_default] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [anon_sym_do] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_goto] = ACTIONS(2407), + [anon_sym_not] = ACTIONS(2407), + [anon_sym_compl] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2409), + [anon_sym_PLUS_PLUS] = ACTIONS(2409), + [anon_sym_sizeof] = ACTIONS(2407), + [sym_number_literal] = ACTIONS(2409), + [anon_sym_L_SQUOTE] = ACTIONS(2409), + [anon_sym_u_SQUOTE] = ACTIONS(2409), + [anon_sym_U_SQUOTE] = ACTIONS(2409), + [anon_sym_u8_SQUOTE] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_L_DQUOTE] = ACTIONS(2409), + [anon_sym_u_DQUOTE] = ACTIONS(2409), + [anon_sym_U_DQUOTE] = ACTIONS(2409), + [anon_sym_u8_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(2409), + [sym_true] = ACTIONS(2407), + [sym_false] = ACTIONS(2407), + [sym_null] = ACTIONS(2407), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2407), + [anon_sym_decltype] = ACTIONS(2407), + [anon_sym_virtual] = ACTIONS(2407), + [anon_sym_explicit] = ACTIONS(2407), + [anon_sym_typename] = ACTIONS(2407), + [anon_sym_template] = ACTIONS(2407), + [anon_sym_operator] = ACTIONS(2407), + [anon_sym_try] = ACTIONS(2407), + [anon_sym_delete] = ACTIONS(2407), + [anon_sym_throw] = ACTIONS(2407), + [anon_sym_namespace] = ACTIONS(2407), + [anon_sym_using] = ACTIONS(2407), + [anon_sym_static_assert] = ACTIONS(2407), + [anon_sym_concept] = ACTIONS(2407), + [anon_sym_co_return] = ACTIONS(2407), + [anon_sym_co_yield] = ACTIONS(2407), + [anon_sym_R_DQUOTE] = ACTIONS(2409), + [anon_sym_LR_DQUOTE] = ACTIONS(2409), + [anon_sym_uR_DQUOTE] = ACTIONS(2409), + [anon_sym_UR_DQUOTE] = ACTIONS(2409), + [anon_sym_u8R_DQUOTE] = ACTIONS(2409), + [anon_sym_co_await] = ACTIONS(2407), + [anon_sym_new] = ACTIONS(2407), + [anon_sym_requires] = ACTIONS(2407), + [sym_this] = ACTIONS(2407), + [sym_nullptr] = ACTIONS(2407), }, [349] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2411), + [aux_sym_preproc_include_token1] = ACTIONS(2411), + [aux_sym_preproc_def_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token2] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2411), + [aux_sym_preproc_else_token1] = ACTIONS(2411), + [aux_sym_preproc_elif_token1] = ACTIONS(2411), + [sym_preproc_directive] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym___attribute__] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2413), + [anon_sym___declspec] = ACTIONS(2411), + [anon_sym___based] = ACTIONS(2411), + [anon_sym___cdecl] = ACTIONS(2411), + [anon_sym___clrcall] = ACTIONS(2411), + [anon_sym___stdcall] = ACTIONS(2411), + [anon_sym___fastcall] = ACTIONS(2411), + [anon_sym___thiscall] = ACTIONS(2411), + [anon_sym___vectorcall] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_thread_local] = ACTIONS(2411), + [anon_sym_input] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym__Atomic] = ACTIONS(2411), + [anon_sym_mutable] = ACTIONS(2411), + [anon_sym_constexpr] = ACTIONS(2411), + [anon_sym_constinit] = ACTIONS(2411), + [anon_sym_consteval] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [sym_primitive_type] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_switch] = ACTIONS(2411), + [anon_sym_case] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_goto] = ACTIONS(2411), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_compl] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_sizeof] = ACTIONS(2411), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_L_SQUOTE] = ACTIONS(2413), + [anon_sym_u_SQUOTE] = ACTIONS(2413), + [anon_sym_U_SQUOTE] = ACTIONS(2413), + [anon_sym_u8_SQUOTE] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_L_DQUOTE] = ACTIONS(2413), + [anon_sym_u_DQUOTE] = ACTIONS(2413), + [anon_sym_U_DQUOTE] = ACTIONS(2413), + [anon_sym_u8_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2411), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_virtual] = ACTIONS(2411), + [anon_sym_explicit] = ACTIONS(2411), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2411), + [anon_sym_operator] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_delete] = ACTIONS(2411), + [anon_sym_throw] = ACTIONS(2411), + [anon_sym_namespace] = ACTIONS(2411), + [anon_sym_using] = ACTIONS(2411), + [anon_sym_static_assert] = ACTIONS(2411), + [anon_sym_concept] = ACTIONS(2411), + [anon_sym_co_return] = ACTIONS(2411), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_R_DQUOTE] = ACTIONS(2413), + [anon_sym_LR_DQUOTE] = ACTIONS(2413), + [anon_sym_uR_DQUOTE] = ACTIONS(2413), + [anon_sym_UR_DQUOTE] = ACTIONS(2413), + [anon_sym_u8R_DQUOTE] = ACTIONS(2413), + [anon_sym_co_await] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_requires] = ACTIONS(2411), + [sym_this] = ACTIONS(2411), + [sym_nullptr] = ACTIONS(2411), }, [350] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2411), + [aux_sym_preproc_include_token1] = ACTIONS(2411), + [aux_sym_preproc_def_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token2] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2411), + [aux_sym_preproc_else_token1] = ACTIONS(2411), + [aux_sym_preproc_elif_token1] = ACTIONS(2411), + [sym_preproc_directive] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym___attribute__] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2413), + [anon_sym___declspec] = ACTIONS(2411), + [anon_sym___based] = ACTIONS(2411), + [anon_sym___cdecl] = ACTIONS(2411), + [anon_sym___clrcall] = ACTIONS(2411), + [anon_sym___stdcall] = ACTIONS(2411), + [anon_sym___fastcall] = ACTIONS(2411), + [anon_sym___thiscall] = ACTIONS(2411), + [anon_sym___vectorcall] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_thread_local] = ACTIONS(2411), + [anon_sym_input] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym__Atomic] = ACTIONS(2411), + [anon_sym_mutable] = ACTIONS(2411), + [anon_sym_constexpr] = ACTIONS(2411), + [anon_sym_constinit] = ACTIONS(2411), + [anon_sym_consteval] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [sym_primitive_type] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_switch] = ACTIONS(2411), + [anon_sym_case] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_goto] = ACTIONS(2411), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_compl] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_sizeof] = ACTIONS(2411), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_L_SQUOTE] = ACTIONS(2413), + [anon_sym_u_SQUOTE] = ACTIONS(2413), + [anon_sym_U_SQUOTE] = ACTIONS(2413), + [anon_sym_u8_SQUOTE] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_L_DQUOTE] = ACTIONS(2413), + [anon_sym_u_DQUOTE] = ACTIONS(2413), + [anon_sym_U_DQUOTE] = ACTIONS(2413), + [anon_sym_u8_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2411), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_virtual] = ACTIONS(2411), + [anon_sym_explicit] = ACTIONS(2411), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2411), + [anon_sym_operator] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_delete] = ACTIONS(2411), + [anon_sym_throw] = ACTIONS(2411), + [anon_sym_namespace] = ACTIONS(2411), + [anon_sym_using] = ACTIONS(2411), + [anon_sym_static_assert] = ACTIONS(2411), + [anon_sym_concept] = ACTIONS(2411), + [anon_sym_co_return] = ACTIONS(2411), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_R_DQUOTE] = ACTIONS(2413), + [anon_sym_LR_DQUOTE] = ACTIONS(2413), + [anon_sym_uR_DQUOTE] = ACTIONS(2413), + [anon_sym_UR_DQUOTE] = ACTIONS(2413), + [anon_sym_u8R_DQUOTE] = ACTIONS(2413), + [anon_sym_co_await] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_requires] = ACTIONS(2411), + [sym_this] = ACTIONS(2411), + [sym_nullptr] = ACTIONS(2411), }, [351] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2415), + [aux_sym_preproc_include_token1] = ACTIONS(2415), + [aux_sym_preproc_def_token1] = ACTIONS(2415), + [aux_sym_preproc_if_token1] = ACTIONS(2415), + [aux_sym_preproc_if_token2] = ACTIONS(2415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2415), + [aux_sym_preproc_else_token1] = ACTIONS(2415), + [aux_sym_preproc_elif_token1] = ACTIONS(2415), + [sym_preproc_directive] = ACTIONS(2415), + [anon_sym_LPAREN2] = ACTIONS(2417), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_TILDE] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP_AMP] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(2417), + [anon_sym_typedef] = ACTIONS(2415), + [anon_sym_extern] = ACTIONS(2415), + [anon_sym___attribute__] = ACTIONS(2415), + [anon_sym_COLON_COLON] = ACTIONS(2417), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2417), + [anon_sym___declspec] = ACTIONS(2415), + [anon_sym___based] = ACTIONS(2415), + [anon_sym___cdecl] = ACTIONS(2415), + [anon_sym___clrcall] = ACTIONS(2415), + [anon_sym___stdcall] = ACTIONS(2415), + [anon_sym___fastcall] = ACTIONS(2415), + [anon_sym___thiscall] = ACTIONS(2415), + [anon_sym___vectorcall] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_static] = ACTIONS(2415), + [anon_sym_register] = ACTIONS(2415), + [anon_sym_inline] = ACTIONS(2415), + [anon_sym_thread_local] = ACTIONS(2415), + [anon_sym_input] = ACTIONS(2415), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_volatile] = ACTIONS(2415), + [anon_sym_restrict] = ACTIONS(2415), + [anon_sym__Atomic] = ACTIONS(2415), + [anon_sym_mutable] = ACTIONS(2415), + [anon_sym_constexpr] = ACTIONS(2415), + [anon_sym_constinit] = ACTIONS(2415), + [anon_sym_consteval] = ACTIONS(2415), + [anon_sym_signed] = ACTIONS(2415), + [anon_sym_unsigned] = ACTIONS(2415), + [anon_sym_long] = ACTIONS(2415), + [anon_sym_short] = ACTIONS(2415), + [sym_primitive_type] = ACTIONS(2415), + [anon_sym_enum] = ACTIONS(2415), + [anon_sym_class] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(2415), + [anon_sym_union] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_else] = ACTIONS(2415), + [anon_sym_switch] = ACTIONS(2415), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [anon_sym_do] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_break] = ACTIONS(2415), + [anon_sym_continue] = ACTIONS(2415), + [anon_sym_goto] = ACTIONS(2415), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2417), + [anon_sym_PLUS_PLUS] = ACTIONS(2417), + [anon_sym_sizeof] = ACTIONS(2415), + [sym_number_literal] = ACTIONS(2417), + [anon_sym_L_SQUOTE] = ACTIONS(2417), + [anon_sym_u_SQUOTE] = ACTIONS(2417), + [anon_sym_U_SQUOTE] = ACTIONS(2417), + [anon_sym_u8_SQUOTE] = ACTIONS(2417), + [anon_sym_SQUOTE] = ACTIONS(2417), + [anon_sym_L_DQUOTE] = ACTIONS(2417), + [anon_sym_u_DQUOTE] = ACTIONS(2417), + [anon_sym_U_DQUOTE] = ACTIONS(2417), + [anon_sym_u8_DQUOTE] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2417), + [sym_true] = ACTIONS(2415), + [sym_false] = ACTIONS(2415), + [sym_null] = ACTIONS(2415), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2415), + [anon_sym_decltype] = ACTIONS(2415), + [anon_sym_virtual] = ACTIONS(2415), + [anon_sym_explicit] = ACTIONS(2415), + [anon_sym_typename] = ACTIONS(2415), + [anon_sym_template] = ACTIONS(2415), + [anon_sym_operator] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2415), + [anon_sym_delete] = ACTIONS(2415), + [anon_sym_throw] = ACTIONS(2415), + [anon_sym_namespace] = ACTIONS(2415), + [anon_sym_using] = ACTIONS(2415), + [anon_sym_static_assert] = ACTIONS(2415), + [anon_sym_concept] = ACTIONS(2415), + [anon_sym_co_return] = ACTIONS(2415), + [anon_sym_co_yield] = ACTIONS(2415), + [anon_sym_R_DQUOTE] = ACTIONS(2417), + [anon_sym_LR_DQUOTE] = ACTIONS(2417), + [anon_sym_uR_DQUOTE] = ACTIONS(2417), + [anon_sym_UR_DQUOTE] = ACTIONS(2417), + [anon_sym_u8R_DQUOTE] = ACTIONS(2417), + [anon_sym_co_await] = ACTIONS(2415), + [anon_sym_new] = ACTIONS(2415), + [anon_sym_requires] = ACTIONS(2415), + [sym_this] = ACTIONS(2415), + [sym_nullptr] = ACTIONS(2415), }, [352] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_catch_clause] = STATE(336), + [aux_sym_constructor_try_statement_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(2368), + [aux_sym_preproc_include_token1] = ACTIONS(2368), + [aux_sym_preproc_def_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token2] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), + [sym_preproc_directive] = ACTIONS(2368), + [anon_sym_LPAREN2] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_typedef] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym___attribute__] = ACTIONS(2368), + [anon_sym_COLON_COLON] = ACTIONS(2370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2370), + [anon_sym___declspec] = ACTIONS(2368), + [anon_sym___based] = ACTIONS(2368), + [anon_sym___cdecl] = ACTIONS(2368), + [anon_sym___clrcall] = ACTIONS(2368), + [anon_sym___stdcall] = ACTIONS(2368), + [anon_sym___fastcall] = ACTIONS(2368), + [anon_sym___thiscall] = ACTIONS(2368), + [anon_sym___vectorcall] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_inline] = ACTIONS(2368), + [anon_sym_thread_local] = ACTIONS(2368), + [anon_sym_input] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_volatile] = ACTIONS(2368), + [anon_sym_restrict] = ACTIONS(2368), + [anon_sym__Atomic] = ACTIONS(2368), + [anon_sym_mutable] = ACTIONS(2368), + [anon_sym_constexpr] = ACTIONS(2368), + [anon_sym_constinit] = ACTIONS(2368), + [anon_sym_consteval] = ACTIONS(2368), + [anon_sym_signed] = ACTIONS(2368), + [anon_sym_unsigned] = ACTIONS(2368), + [anon_sym_long] = ACTIONS(2368), + [anon_sym_short] = ACTIONS(2368), + [sym_primitive_type] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym_not] = ACTIONS(2368), + [anon_sym_compl] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_sizeof] = ACTIONS(2368), + [sym_number_literal] = ACTIONS(2370), + [anon_sym_L_SQUOTE] = ACTIONS(2370), + [anon_sym_u_SQUOTE] = ACTIONS(2370), + [anon_sym_U_SQUOTE] = ACTIONS(2370), + [anon_sym_u8_SQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_L_DQUOTE] = ACTIONS(2370), + [anon_sym_u_DQUOTE] = ACTIONS(2370), + [anon_sym_U_DQUOTE] = ACTIONS(2370), + [anon_sym_u8_DQUOTE] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2368), + [anon_sym_decltype] = ACTIONS(2368), + [anon_sym_virtual] = ACTIONS(2368), + [anon_sym_explicit] = ACTIONS(2368), + [anon_sym_typename] = ACTIONS(2368), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_operator] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_static_assert] = ACTIONS(2368), + [anon_sym_concept] = ACTIONS(2368), + [anon_sym_co_return] = ACTIONS(2368), + [anon_sym_co_yield] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2388), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_requires] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_nullptr] = ACTIONS(2368), }, [353] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2419), + [aux_sym_preproc_include_token1] = ACTIONS(2419), + [aux_sym_preproc_def_token1] = ACTIONS(2419), + [aux_sym_preproc_if_token1] = ACTIONS(2419), + [aux_sym_preproc_if_token2] = ACTIONS(2419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2419), + [aux_sym_preproc_else_token1] = ACTIONS(2419), + [aux_sym_preproc_elif_token1] = ACTIONS(2419), + [sym_preproc_directive] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_AMP_AMP] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2421), + [anon_sym_typedef] = ACTIONS(2419), + [anon_sym_extern] = ACTIONS(2419), + [anon_sym___attribute__] = ACTIONS(2419), + [anon_sym_COLON_COLON] = ACTIONS(2421), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2421), + [anon_sym___declspec] = ACTIONS(2419), + [anon_sym___based] = ACTIONS(2419), + [anon_sym___cdecl] = ACTIONS(2419), + [anon_sym___clrcall] = ACTIONS(2419), + [anon_sym___stdcall] = ACTIONS(2419), + [anon_sym___fastcall] = ACTIONS(2419), + [anon_sym___thiscall] = ACTIONS(2419), + [anon_sym___vectorcall] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_static] = ACTIONS(2419), + [anon_sym_register] = ACTIONS(2419), + [anon_sym_inline] = ACTIONS(2419), + [anon_sym_thread_local] = ACTIONS(2419), + [anon_sym_input] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_volatile] = ACTIONS(2419), + [anon_sym_restrict] = ACTIONS(2419), + [anon_sym__Atomic] = ACTIONS(2419), + [anon_sym_mutable] = ACTIONS(2419), + [anon_sym_constexpr] = ACTIONS(2419), + [anon_sym_constinit] = ACTIONS(2419), + [anon_sym_consteval] = ACTIONS(2419), + [anon_sym_signed] = ACTIONS(2419), + [anon_sym_unsigned] = ACTIONS(2419), + [anon_sym_long] = ACTIONS(2419), + [anon_sym_short] = ACTIONS(2419), + [sym_primitive_type] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2419), + [anon_sym_class] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2419), + [anon_sym_union] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_else] = ACTIONS(2423), + [anon_sym_switch] = ACTIONS(2419), + [anon_sym_case] = ACTIONS(2419), + [anon_sym_default] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [anon_sym_do] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_goto] = ACTIONS(2419), + [anon_sym_not] = ACTIONS(2419), + [anon_sym_compl] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2421), + [anon_sym_PLUS_PLUS] = ACTIONS(2421), + [anon_sym_sizeof] = ACTIONS(2419), + [sym_number_literal] = ACTIONS(2421), + [anon_sym_L_SQUOTE] = ACTIONS(2421), + [anon_sym_u_SQUOTE] = ACTIONS(2421), + [anon_sym_U_SQUOTE] = ACTIONS(2421), + [anon_sym_u8_SQUOTE] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_L_DQUOTE] = ACTIONS(2421), + [anon_sym_u_DQUOTE] = ACTIONS(2421), + [anon_sym_U_DQUOTE] = ACTIONS(2421), + [anon_sym_u8_DQUOTE] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [sym_true] = ACTIONS(2419), + [sym_false] = ACTIONS(2419), + [sym_null] = ACTIONS(2419), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2419), + [anon_sym_decltype] = ACTIONS(2419), + [anon_sym_virtual] = ACTIONS(2419), + [anon_sym_explicit] = ACTIONS(2419), + [anon_sym_typename] = ACTIONS(2419), + [anon_sym_template] = ACTIONS(2419), + [anon_sym_operator] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2419), + [anon_sym_delete] = ACTIONS(2419), + [anon_sym_throw] = ACTIONS(2419), + [anon_sym_namespace] = ACTIONS(2419), + [anon_sym_using] = ACTIONS(2419), + [anon_sym_static_assert] = ACTIONS(2419), + [anon_sym_concept] = ACTIONS(2419), + [anon_sym_co_return] = ACTIONS(2419), + [anon_sym_co_yield] = ACTIONS(2419), + [anon_sym_R_DQUOTE] = ACTIONS(2421), + [anon_sym_LR_DQUOTE] = ACTIONS(2421), + [anon_sym_uR_DQUOTE] = ACTIONS(2421), + [anon_sym_UR_DQUOTE] = ACTIONS(2421), + [anon_sym_u8R_DQUOTE] = ACTIONS(2421), + [anon_sym_co_await] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(2419), + [anon_sym_requires] = ACTIONS(2419), + [sym_this] = ACTIONS(2419), + [sym_nullptr] = ACTIONS(2419), }, [354] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2425), + [aux_sym_preproc_include_token1] = ACTIONS(2425), + [aux_sym_preproc_def_token1] = ACTIONS(2425), + [aux_sym_preproc_if_token1] = ACTIONS(2425), + [aux_sym_preproc_if_token2] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2425), + [aux_sym_preproc_else_token1] = ACTIONS(2425), + [aux_sym_preproc_elif_token1] = ACTIONS(2425), + [sym_preproc_directive] = ACTIONS(2425), + [anon_sym_LPAREN2] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_AMP_AMP] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_typedef] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym___attribute__] = ACTIONS(2425), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2427), + [anon_sym___declspec] = ACTIONS(2425), + [anon_sym___based] = ACTIONS(2425), + [anon_sym___cdecl] = ACTIONS(2425), + [anon_sym___clrcall] = ACTIONS(2425), + [anon_sym___stdcall] = ACTIONS(2425), + [anon_sym___fastcall] = ACTIONS(2425), + [anon_sym___thiscall] = ACTIONS(2425), + [anon_sym___vectorcall] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_inline] = ACTIONS(2425), + [anon_sym_thread_local] = ACTIONS(2425), + [anon_sym_input] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_volatile] = ACTIONS(2425), + [anon_sym_restrict] = ACTIONS(2425), + [anon_sym__Atomic] = ACTIONS(2425), + [anon_sym_mutable] = ACTIONS(2425), + [anon_sym_constexpr] = ACTIONS(2425), + [anon_sym_constinit] = ACTIONS(2425), + [anon_sym_consteval] = ACTIONS(2425), + [anon_sym_signed] = ACTIONS(2425), + [anon_sym_unsigned] = ACTIONS(2425), + [anon_sym_long] = ACTIONS(2425), + [anon_sym_short] = ACTIONS(2425), + [sym_primitive_type] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2425), + [anon_sym_case] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_goto] = ACTIONS(2425), + [anon_sym_not] = ACTIONS(2425), + [anon_sym_compl] = ACTIONS(2425), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_sizeof] = ACTIONS(2425), + [sym_number_literal] = ACTIONS(2427), + [anon_sym_L_SQUOTE] = ACTIONS(2427), + [anon_sym_u_SQUOTE] = ACTIONS(2427), + [anon_sym_U_SQUOTE] = ACTIONS(2427), + [anon_sym_u8_SQUOTE] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_L_DQUOTE] = ACTIONS(2427), + [anon_sym_u_DQUOTE] = ACTIONS(2427), + [anon_sym_U_DQUOTE] = ACTIONS(2427), + [anon_sym_u8_DQUOTE] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym_true] = ACTIONS(2425), + [sym_false] = ACTIONS(2425), + [sym_null] = ACTIONS(2425), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2425), + [anon_sym_decltype] = ACTIONS(2425), + [anon_sym_virtual] = ACTIONS(2425), + [anon_sym_explicit] = ACTIONS(2425), + [anon_sym_typename] = ACTIONS(2425), + [anon_sym_template] = ACTIONS(2425), + [anon_sym_operator] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_delete] = ACTIONS(2425), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_using] = ACTIONS(2425), + [anon_sym_static_assert] = ACTIONS(2425), + [anon_sym_concept] = ACTIONS(2425), + [anon_sym_co_return] = ACTIONS(2425), + [anon_sym_co_yield] = ACTIONS(2425), + [anon_sym_R_DQUOTE] = ACTIONS(2427), + [anon_sym_LR_DQUOTE] = ACTIONS(2427), + [anon_sym_uR_DQUOTE] = ACTIONS(2427), + [anon_sym_UR_DQUOTE] = ACTIONS(2427), + [anon_sym_u8R_DQUOTE] = ACTIONS(2427), + [anon_sym_co_await] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_requires] = ACTIONS(2425), + [sym_this] = ACTIONS(2425), + [sym_nullptr] = ACTIONS(2425), }, [355] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_catch_clause] = STATE(338), + [aux_sym_constructor_try_statement_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(2372), + [aux_sym_preproc_include_token1] = ACTIONS(2372), + [aux_sym_preproc_def_token1] = ACTIONS(2372), + [aux_sym_preproc_if_token1] = ACTIONS(2372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2372), + [sym_preproc_directive] = ACTIONS(2372), + [anon_sym_LPAREN2] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(2374), + [anon_sym_TILDE] = ACTIONS(2374), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_typedef] = ACTIONS(2372), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym___attribute__] = ACTIONS(2372), + [anon_sym_COLON_COLON] = ACTIONS(2374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2374), + [anon_sym___declspec] = ACTIONS(2372), + [anon_sym___based] = ACTIONS(2372), + [anon_sym___cdecl] = ACTIONS(2372), + [anon_sym___clrcall] = ACTIONS(2372), + [anon_sym___stdcall] = ACTIONS(2372), + [anon_sym___fastcall] = ACTIONS(2372), + [anon_sym___thiscall] = ACTIONS(2372), + [anon_sym___vectorcall] = ACTIONS(2372), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_LBRACK] = ACTIONS(2372), + [anon_sym_static] = ACTIONS(2372), + [anon_sym_register] = ACTIONS(2372), + [anon_sym_inline] = ACTIONS(2372), + [anon_sym_thread_local] = ACTIONS(2372), + [anon_sym_input] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [anon_sym_volatile] = ACTIONS(2372), + [anon_sym_restrict] = ACTIONS(2372), + [anon_sym__Atomic] = ACTIONS(2372), + [anon_sym_mutable] = ACTIONS(2372), + [anon_sym_constexpr] = ACTIONS(2372), + [anon_sym_constinit] = ACTIONS(2372), + [anon_sym_consteval] = ACTIONS(2372), + [anon_sym_signed] = ACTIONS(2372), + [anon_sym_unsigned] = ACTIONS(2372), + [anon_sym_long] = ACTIONS(2372), + [anon_sym_short] = ACTIONS(2372), + [sym_primitive_type] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2372), + [anon_sym_class] = ACTIONS(2372), + [anon_sym_struct] = ACTIONS(2372), + [anon_sym_union] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_switch] = ACTIONS(2372), + [anon_sym_case] = ACTIONS(2372), + [anon_sym_default] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_goto] = ACTIONS(2372), + [anon_sym_not] = ACTIONS(2372), + [anon_sym_compl] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2374), + [anon_sym_PLUS_PLUS] = ACTIONS(2374), + [anon_sym_sizeof] = ACTIONS(2372), + [sym_number_literal] = ACTIONS(2374), + [anon_sym_L_SQUOTE] = ACTIONS(2374), + [anon_sym_u_SQUOTE] = ACTIONS(2374), + [anon_sym_U_SQUOTE] = ACTIONS(2374), + [anon_sym_u8_SQUOTE] = ACTIONS(2374), + [anon_sym_SQUOTE] = ACTIONS(2374), + [anon_sym_L_DQUOTE] = ACTIONS(2374), + [anon_sym_u_DQUOTE] = ACTIONS(2374), + [anon_sym_U_DQUOTE] = ACTIONS(2374), + [anon_sym_u8_DQUOTE] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [sym_true] = ACTIONS(2372), + [sym_false] = ACTIONS(2372), + [sym_null] = ACTIONS(2372), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2372), + [anon_sym_decltype] = ACTIONS(2372), + [anon_sym_virtual] = ACTIONS(2372), + [anon_sym_explicit] = ACTIONS(2372), + [anon_sym_typename] = ACTIONS(2372), + [anon_sym_template] = ACTIONS(2372), + [anon_sym_operator] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_delete] = ACTIONS(2372), + [anon_sym_throw] = ACTIONS(2372), + [anon_sym_namespace] = ACTIONS(2372), + [anon_sym_using] = ACTIONS(2372), + [anon_sym_static_assert] = ACTIONS(2372), + [anon_sym_concept] = ACTIONS(2372), + [anon_sym_co_return] = ACTIONS(2372), + [anon_sym_co_yield] = ACTIONS(2372), + [anon_sym_catch] = ACTIONS(2386), + [anon_sym_R_DQUOTE] = ACTIONS(2374), + [anon_sym_LR_DQUOTE] = ACTIONS(2374), + [anon_sym_uR_DQUOTE] = ACTIONS(2374), + [anon_sym_UR_DQUOTE] = ACTIONS(2374), + [anon_sym_u8R_DQUOTE] = ACTIONS(2374), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_requires] = ACTIONS(2372), + [sym_this] = ACTIONS(2372), + [sym_nullptr] = ACTIONS(2372), }, [356] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2425), + [aux_sym_preproc_include_token1] = ACTIONS(2425), + [aux_sym_preproc_def_token1] = ACTIONS(2425), + [aux_sym_preproc_if_token1] = ACTIONS(2425), + [aux_sym_preproc_if_token2] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2425), + [aux_sym_preproc_else_token1] = ACTIONS(2425), + [aux_sym_preproc_elif_token1] = ACTIONS(2425), + [sym_preproc_directive] = ACTIONS(2425), + [anon_sym_LPAREN2] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_AMP_AMP] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_typedef] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym___attribute__] = ACTIONS(2425), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2427), + [anon_sym___declspec] = ACTIONS(2425), + [anon_sym___based] = ACTIONS(2425), + [anon_sym___cdecl] = ACTIONS(2425), + [anon_sym___clrcall] = ACTIONS(2425), + [anon_sym___stdcall] = ACTIONS(2425), + [anon_sym___fastcall] = ACTIONS(2425), + [anon_sym___thiscall] = ACTIONS(2425), + [anon_sym___vectorcall] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_inline] = ACTIONS(2425), + [anon_sym_thread_local] = ACTIONS(2425), + [anon_sym_input] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_volatile] = ACTIONS(2425), + [anon_sym_restrict] = ACTIONS(2425), + [anon_sym__Atomic] = ACTIONS(2425), + [anon_sym_mutable] = ACTIONS(2425), + [anon_sym_constexpr] = ACTIONS(2425), + [anon_sym_constinit] = ACTIONS(2425), + [anon_sym_consteval] = ACTIONS(2425), + [anon_sym_signed] = ACTIONS(2425), + [anon_sym_unsigned] = ACTIONS(2425), + [anon_sym_long] = ACTIONS(2425), + [anon_sym_short] = ACTIONS(2425), + [sym_primitive_type] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2425), + [anon_sym_case] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_goto] = ACTIONS(2425), + [anon_sym_not] = ACTIONS(2425), + [anon_sym_compl] = ACTIONS(2425), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_sizeof] = ACTIONS(2425), + [sym_number_literal] = ACTIONS(2427), + [anon_sym_L_SQUOTE] = ACTIONS(2427), + [anon_sym_u_SQUOTE] = ACTIONS(2427), + [anon_sym_U_SQUOTE] = ACTIONS(2427), + [anon_sym_u8_SQUOTE] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_L_DQUOTE] = ACTIONS(2427), + [anon_sym_u_DQUOTE] = ACTIONS(2427), + [anon_sym_U_DQUOTE] = ACTIONS(2427), + [anon_sym_u8_DQUOTE] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym_true] = ACTIONS(2425), + [sym_false] = ACTIONS(2425), + [sym_null] = ACTIONS(2425), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2425), + [anon_sym_decltype] = ACTIONS(2425), + [anon_sym_virtual] = ACTIONS(2425), + [anon_sym_explicit] = ACTIONS(2425), + [anon_sym_typename] = ACTIONS(2425), + [anon_sym_template] = ACTIONS(2425), + [anon_sym_operator] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_delete] = ACTIONS(2425), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_using] = ACTIONS(2425), + [anon_sym_static_assert] = ACTIONS(2425), + [anon_sym_concept] = ACTIONS(2425), + [anon_sym_co_return] = ACTIONS(2425), + [anon_sym_co_yield] = ACTIONS(2425), + [anon_sym_R_DQUOTE] = ACTIONS(2427), + [anon_sym_LR_DQUOTE] = ACTIONS(2427), + [anon_sym_uR_DQUOTE] = ACTIONS(2427), + [anon_sym_UR_DQUOTE] = ACTIONS(2427), + [anon_sym_u8R_DQUOTE] = ACTIONS(2427), + [anon_sym_co_await] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_requires] = ACTIONS(2425), + [sym_this] = ACTIONS(2425), + [sym_nullptr] = ACTIONS(2425), }, [357] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2429), + [aux_sym_preproc_include_token1] = ACTIONS(2429), + [aux_sym_preproc_def_token1] = ACTIONS(2429), + [aux_sym_preproc_if_token1] = ACTIONS(2429), + [aux_sym_preproc_if_token2] = ACTIONS(2429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2429), + [aux_sym_preproc_else_token1] = ACTIONS(2429), + [aux_sym_preproc_elif_token1] = ACTIONS(2429), + [sym_preproc_directive] = ACTIONS(2429), + [anon_sym_LPAREN2] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(2431), + [anon_sym_AMP_AMP] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2429), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_typedef] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym___attribute__] = ACTIONS(2429), + [anon_sym_COLON_COLON] = ACTIONS(2431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2431), + [anon_sym___declspec] = ACTIONS(2429), + [anon_sym___based] = ACTIONS(2429), + [anon_sym___cdecl] = ACTIONS(2429), + [anon_sym___clrcall] = ACTIONS(2429), + [anon_sym___stdcall] = ACTIONS(2429), + [anon_sym___fastcall] = ACTIONS(2429), + [anon_sym___thiscall] = ACTIONS(2429), + [anon_sym___vectorcall] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_inline] = ACTIONS(2429), + [anon_sym_thread_local] = ACTIONS(2429), + [anon_sym_input] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_volatile] = ACTIONS(2429), + [anon_sym_restrict] = ACTIONS(2429), + [anon_sym__Atomic] = ACTIONS(2429), + [anon_sym_mutable] = ACTIONS(2429), + [anon_sym_constexpr] = ACTIONS(2429), + [anon_sym_constinit] = ACTIONS(2429), + [anon_sym_consteval] = ACTIONS(2429), + [anon_sym_signed] = ACTIONS(2429), + [anon_sym_unsigned] = ACTIONS(2429), + [anon_sym_long] = ACTIONS(2429), + [anon_sym_short] = ACTIONS(2429), + [sym_primitive_type] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_class] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_switch] = ACTIONS(2429), + [anon_sym_case] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_goto] = ACTIONS(2429), + [anon_sym_not] = ACTIONS(2429), + [anon_sym_compl] = ACTIONS(2429), + [anon_sym_DASH_DASH] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2431), + [anon_sym_sizeof] = ACTIONS(2429), + [sym_number_literal] = ACTIONS(2431), + [anon_sym_L_SQUOTE] = ACTIONS(2431), + [anon_sym_u_SQUOTE] = ACTIONS(2431), + [anon_sym_U_SQUOTE] = ACTIONS(2431), + [anon_sym_u8_SQUOTE] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2431), + [anon_sym_L_DQUOTE] = ACTIONS(2431), + [anon_sym_u_DQUOTE] = ACTIONS(2431), + [anon_sym_U_DQUOTE] = ACTIONS(2431), + [anon_sym_u8_DQUOTE] = ACTIONS(2431), + [anon_sym_DQUOTE] = ACTIONS(2431), + [sym_true] = ACTIONS(2429), + [sym_false] = ACTIONS(2429), + [sym_null] = ACTIONS(2429), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2429), + [anon_sym_decltype] = ACTIONS(2429), + [anon_sym_virtual] = ACTIONS(2429), + [anon_sym_explicit] = ACTIONS(2429), + [anon_sym_typename] = ACTIONS(2429), + [anon_sym_template] = ACTIONS(2429), + [anon_sym_operator] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_delete] = ACTIONS(2429), + [anon_sym_throw] = ACTIONS(2429), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_using] = ACTIONS(2429), + [anon_sym_static_assert] = ACTIONS(2429), + [anon_sym_concept] = ACTIONS(2429), + [anon_sym_co_return] = ACTIONS(2429), + [anon_sym_co_yield] = ACTIONS(2429), + [anon_sym_R_DQUOTE] = ACTIONS(2431), + [anon_sym_LR_DQUOTE] = ACTIONS(2431), + [anon_sym_uR_DQUOTE] = ACTIONS(2431), + [anon_sym_UR_DQUOTE] = ACTIONS(2431), + [anon_sym_u8R_DQUOTE] = ACTIONS(2431), + [anon_sym_co_await] = ACTIONS(2429), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_requires] = ACTIONS(2429), + [sym_this] = ACTIONS(2429), + [sym_nullptr] = ACTIONS(2429), }, [358] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2433), + [aux_sym_preproc_include_token1] = ACTIONS(2433), + [aux_sym_preproc_def_token1] = ACTIONS(2433), + [aux_sym_preproc_if_token1] = ACTIONS(2433), + [aux_sym_preproc_if_token2] = ACTIONS(2433), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2433), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2433), + [aux_sym_preproc_else_token1] = ACTIONS(2433), + [aux_sym_preproc_elif_token1] = ACTIONS(2433), + [sym_preproc_directive] = ACTIONS(2433), + [anon_sym_LPAREN2] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(2433), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_typedef] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym___attribute__] = ACTIONS(2433), + [anon_sym_COLON_COLON] = ACTIONS(2435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2435), + [anon_sym___declspec] = ACTIONS(2433), + [anon_sym___based] = ACTIONS(2433), + [anon_sym___cdecl] = ACTIONS(2433), + [anon_sym___clrcall] = ACTIONS(2433), + [anon_sym___stdcall] = ACTIONS(2433), + [anon_sym___fastcall] = ACTIONS(2433), + [anon_sym___thiscall] = ACTIONS(2433), + [anon_sym___vectorcall] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_register] = ACTIONS(2433), + [anon_sym_inline] = ACTIONS(2433), + [anon_sym_thread_local] = ACTIONS(2433), + [anon_sym_input] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_volatile] = ACTIONS(2433), + [anon_sym_restrict] = ACTIONS(2433), + [anon_sym__Atomic] = ACTIONS(2433), + [anon_sym_mutable] = ACTIONS(2433), + [anon_sym_constexpr] = ACTIONS(2433), + [anon_sym_constinit] = ACTIONS(2433), + [anon_sym_consteval] = ACTIONS(2433), + [anon_sym_signed] = ACTIONS(2433), + [anon_sym_unsigned] = ACTIONS(2433), + [anon_sym_long] = ACTIONS(2433), + [anon_sym_short] = ACTIONS(2433), + [sym_primitive_type] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_class] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_union] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_switch] = ACTIONS(2433), + [anon_sym_case] = ACTIONS(2433), + [anon_sym_default] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_goto] = ACTIONS(2433), + [anon_sym_not] = ACTIONS(2433), + [anon_sym_compl] = ACTIONS(2433), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_sizeof] = ACTIONS(2433), + [sym_number_literal] = ACTIONS(2435), + [anon_sym_L_SQUOTE] = ACTIONS(2435), + [anon_sym_u_SQUOTE] = ACTIONS(2435), + [anon_sym_U_SQUOTE] = ACTIONS(2435), + [anon_sym_u8_SQUOTE] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_L_DQUOTE] = ACTIONS(2435), + [anon_sym_u_DQUOTE] = ACTIONS(2435), + [anon_sym_U_DQUOTE] = ACTIONS(2435), + [anon_sym_u8_DQUOTE] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(2435), + [sym_true] = ACTIONS(2433), + [sym_false] = ACTIONS(2433), + [sym_null] = ACTIONS(2433), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2433), + [anon_sym_decltype] = ACTIONS(2433), + [anon_sym_virtual] = ACTIONS(2433), + [anon_sym_explicit] = ACTIONS(2433), + [anon_sym_typename] = ACTIONS(2433), + [anon_sym_template] = ACTIONS(2433), + [anon_sym_operator] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_delete] = ACTIONS(2433), + [anon_sym_throw] = ACTIONS(2433), + [anon_sym_namespace] = ACTIONS(2433), + [anon_sym_using] = ACTIONS(2433), + [anon_sym_static_assert] = ACTIONS(2433), + [anon_sym_concept] = ACTIONS(2433), + [anon_sym_co_return] = ACTIONS(2433), + [anon_sym_co_yield] = ACTIONS(2433), + [anon_sym_R_DQUOTE] = ACTIONS(2435), + [anon_sym_LR_DQUOTE] = ACTIONS(2435), + [anon_sym_uR_DQUOTE] = ACTIONS(2435), + [anon_sym_UR_DQUOTE] = ACTIONS(2435), + [anon_sym_u8R_DQUOTE] = ACTIONS(2435), + [anon_sym_co_await] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2433), + [anon_sym_requires] = ACTIONS(2433), + [sym_this] = ACTIONS(2433), + [sym_nullptr] = ACTIONS(2433), }, [359] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2437), + [aux_sym_preproc_include_token1] = ACTIONS(2437), + [aux_sym_preproc_def_token1] = ACTIONS(2437), + [aux_sym_preproc_if_token1] = ACTIONS(2437), + [aux_sym_preproc_if_token2] = ACTIONS(2437), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2437), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2437), + [aux_sym_preproc_else_token1] = ACTIONS(2437), + [aux_sym_preproc_elif_token1] = ACTIONS(2437), + [sym_preproc_directive] = ACTIONS(2437), + [anon_sym_LPAREN2] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_typedef] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym___attribute__] = ACTIONS(2437), + [anon_sym_COLON_COLON] = ACTIONS(2439), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2439), + [anon_sym___declspec] = ACTIONS(2437), + [anon_sym___based] = ACTIONS(2437), + [anon_sym___cdecl] = ACTIONS(2437), + [anon_sym___clrcall] = ACTIONS(2437), + [anon_sym___stdcall] = ACTIONS(2437), + [anon_sym___fastcall] = ACTIONS(2437), + [anon_sym___thiscall] = ACTIONS(2437), + [anon_sym___vectorcall] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_register] = ACTIONS(2437), + [anon_sym_inline] = ACTIONS(2437), + [anon_sym_thread_local] = ACTIONS(2437), + [anon_sym_input] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_volatile] = ACTIONS(2437), + [anon_sym_restrict] = ACTIONS(2437), + [anon_sym__Atomic] = ACTIONS(2437), + [anon_sym_mutable] = ACTIONS(2437), + [anon_sym_constexpr] = ACTIONS(2437), + [anon_sym_constinit] = ACTIONS(2437), + [anon_sym_consteval] = ACTIONS(2437), + [anon_sym_signed] = ACTIONS(2437), + [anon_sym_unsigned] = ACTIONS(2437), + [anon_sym_long] = ACTIONS(2437), + [anon_sym_short] = ACTIONS(2437), + [sym_primitive_type] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_class] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2437), + [anon_sym_union] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_switch] = ACTIONS(2437), + [anon_sym_case] = ACTIONS(2437), + [anon_sym_default] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_goto] = ACTIONS(2437), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_compl] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(2439), + [anon_sym_sizeof] = ACTIONS(2437), + [sym_number_literal] = ACTIONS(2439), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2439), + [anon_sym_u_DQUOTE] = ACTIONS(2439), + [anon_sym_U_DQUOTE] = ACTIONS(2439), + [anon_sym_u8_DQUOTE] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(2439), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_null] = ACTIONS(2437), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2437), + [anon_sym_decltype] = ACTIONS(2437), + [anon_sym_virtual] = ACTIONS(2437), + [anon_sym_explicit] = ACTIONS(2437), + [anon_sym_typename] = ACTIONS(2437), + [anon_sym_template] = ACTIONS(2437), + [anon_sym_operator] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_delete] = ACTIONS(2437), + [anon_sym_throw] = ACTIONS(2437), + [anon_sym_namespace] = ACTIONS(2437), + [anon_sym_using] = ACTIONS(2437), + [anon_sym_static_assert] = ACTIONS(2437), + [anon_sym_concept] = ACTIONS(2437), + [anon_sym_co_return] = ACTIONS(2437), + [anon_sym_co_yield] = ACTIONS(2437), + [anon_sym_R_DQUOTE] = ACTIONS(2439), + [anon_sym_LR_DQUOTE] = ACTIONS(2439), + [anon_sym_uR_DQUOTE] = ACTIONS(2439), + [anon_sym_UR_DQUOTE] = ACTIONS(2439), + [anon_sym_u8R_DQUOTE] = ACTIONS(2439), + [anon_sym_co_await] = ACTIONS(2437), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_requires] = ACTIONS(2437), + [sym_this] = ACTIONS(2437), + [sym_nullptr] = ACTIONS(2437), }, [360] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2441), + [aux_sym_preproc_include_token1] = ACTIONS(2441), + [aux_sym_preproc_def_token1] = ACTIONS(2441), + [aux_sym_preproc_if_token1] = ACTIONS(2441), + [aux_sym_preproc_if_token2] = ACTIONS(2441), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2441), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2441), + [aux_sym_preproc_else_token1] = ACTIONS(2441), + [aux_sym_preproc_elif_token1] = ACTIONS(2441), + [sym_preproc_directive] = ACTIONS(2441), + [anon_sym_LPAREN2] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2441), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_typedef] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym___attribute__] = ACTIONS(2441), + [anon_sym_COLON_COLON] = ACTIONS(2443), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2443), + [anon_sym___declspec] = ACTIONS(2441), + [anon_sym___based] = ACTIONS(2441), + [anon_sym___cdecl] = ACTIONS(2441), + [anon_sym___clrcall] = ACTIONS(2441), + [anon_sym___stdcall] = ACTIONS(2441), + [anon_sym___fastcall] = ACTIONS(2441), + [anon_sym___thiscall] = ACTIONS(2441), + [anon_sym___vectorcall] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_register] = ACTIONS(2441), + [anon_sym_inline] = ACTIONS(2441), + [anon_sym_thread_local] = ACTIONS(2441), + [anon_sym_input] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_volatile] = ACTIONS(2441), + [anon_sym_restrict] = ACTIONS(2441), + [anon_sym__Atomic] = ACTIONS(2441), + [anon_sym_mutable] = ACTIONS(2441), + [anon_sym_constexpr] = ACTIONS(2441), + [anon_sym_constinit] = ACTIONS(2441), + [anon_sym_consteval] = ACTIONS(2441), + [anon_sym_signed] = ACTIONS(2441), + [anon_sym_unsigned] = ACTIONS(2441), + [anon_sym_long] = ACTIONS(2441), + [anon_sym_short] = ACTIONS(2441), + [sym_primitive_type] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_class] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2441), + [anon_sym_union] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_switch] = ACTIONS(2441), + [anon_sym_case] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_goto] = ACTIONS(2441), + [anon_sym_not] = ACTIONS(2441), + [anon_sym_compl] = ACTIONS(2441), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(2441), + [sym_number_literal] = ACTIONS(2443), + [anon_sym_L_SQUOTE] = ACTIONS(2443), + [anon_sym_u_SQUOTE] = ACTIONS(2443), + [anon_sym_U_SQUOTE] = ACTIONS(2443), + [anon_sym_u8_SQUOTE] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_L_DQUOTE] = ACTIONS(2443), + [anon_sym_u_DQUOTE] = ACTIONS(2443), + [anon_sym_U_DQUOTE] = ACTIONS(2443), + [anon_sym_u8_DQUOTE] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [sym_true] = ACTIONS(2441), + [sym_false] = ACTIONS(2441), + [sym_null] = ACTIONS(2441), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2441), + [anon_sym_decltype] = ACTIONS(2441), + [anon_sym_virtual] = ACTIONS(2441), + [anon_sym_explicit] = ACTIONS(2441), + [anon_sym_typename] = ACTIONS(2441), + [anon_sym_template] = ACTIONS(2441), + [anon_sym_operator] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_delete] = ACTIONS(2441), + [anon_sym_throw] = ACTIONS(2441), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_using] = ACTIONS(2441), + [anon_sym_static_assert] = ACTIONS(2441), + [anon_sym_concept] = ACTIONS(2441), + [anon_sym_co_return] = ACTIONS(2441), + [anon_sym_co_yield] = ACTIONS(2441), + [anon_sym_R_DQUOTE] = ACTIONS(2443), + [anon_sym_LR_DQUOTE] = ACTIONS(2443), + [anon_sym_uR_DQUOTE] = ACTIONS(2443), + [anon_sym_UR_DQUOTE] = ACTIONS(2443), + [anon_sym_u8R_DQUOTE] = ACTIONS(2443), + [anon_sym_co_await] = ACTIONS(2441), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_requires] = ACTIONS(2441), + [sym_this] = ACTIONS(2441), + [sym_nullptr] = ACTIONS(2441), }, [361] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_catch_clause] = STATE(338), + [aux_sym_constructor_try_statement_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(2368), + [aux_sym_preproc_include_token1] = ACTIONS(2368), + [aux_sym_preproc_def_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), + [sym_preproc_directive] = ACTIONS(2368), + [anon_sym_LPAREN2] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_typedef] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym___attribute__] = ACTIONS(2368), + [anon_sym_COLON_COLON] = ACTIONS(2370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2370), + [anon_sym___declspec] = ACTIONS(2368), + [anon_sym___based] = ACTIONS(2368), + [anon_sym___cdecl] = ACTIONS(2368), + [anon_sym___clrcall] = ACTIONS(2368), + [anon_sym___stdcall] = ACTIONS(2368), + [anon_sym___fastcall] = ACTIONS(2368), + [anon_sym___thiscall] = ACTIONS(2368), + [anon_sym___vectorcall] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_inline] = ACTIONS(2368), + [anon_sym_thread_local] = ACTIONS(2368), + [anon_sym_input] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_volatile] = ACTIONS(2368), + [anon_sym_restrict] = ACTIONS(2368), + [anon_sym__Atomic] = ACTIONS(2368), + [anon_sym_mutable] = ACTIONS(2368), + [anon_sym_constexpr] = ACTIONS(2368), + [anon_sym_constinit] = ACTIONS(2368), + [anon_sym_consteval] = ACTIONS(2368), + [anon_sym_signed] = ACTIONS(2368), + [anon_sym_unsigned] = ACTIONS(2368), + [anon_sym_long] = ACTIONS(2368), + [anon_sym_short] = ACTIONS(2368), + [sym_primitive_type] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym_not] = ACTIONS(2368), + [anon_sym_compl] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_sizeof] = ACTIONS(2368), + [sym_number_literal] = ACTIONS(2370), + [anon_sym_L_SQUOTE] = ACTIONS(2370), + [anon_sym_u_SQUOTE] = ACTIONS(2370), + [anon_sym_U_SQUOTE] = ACTIONS(2370), + [anon_sym_u8_SQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_L_DQUOTE] = ACTIONS(2370), + [anon_sym_u_DQUOTE] = ACTIONS(2370), + [anon_sym_U_DQUOTE] = ACTIONS(2370), + [anon_sym_u8_DQUOTE] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2368), + [anon_sym_decltype] = ACTIONS(2368), + [anon_sym_virtual] = ACTIONS(2368), + [anon_sym_explicit] = ACTIONS(2368), + [anon_sym_typename] = ACTIONS(2368), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_operator] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_static_assert] = ACTIONS(2368), + [anon_sym_concept] = ACTIONS(2368), + [anon_sym_co_return] = ACTIONS(2368), + [anon_sym_co_yield] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2386), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_requires] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_nullptr] = ACTIONS(2368), }, [362] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2445), + [aux_sym_preproc_include_token1] = ACTIONS(2445), + [aux_sym_preproc_def_token1] = ACTIONS(2445), + [aux_sym_preproc_if_token1] = ACTIONS(2445), + [aux_sym_preproc_if_token2] = ACTIONS(2445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2445), + [aux_sym_preproc_else_token1] = ACTIONS(2445), + [aux_sym_preproc_elif_token1] = ACTIONS(2445), + [sym_preproc_directive] = ACTIONS(2445), + [anon_sym_LPAREN2] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2447), + [anon_sym_AMP_AMP] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_typedef] = ACTIONS(2445), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym___attribute__] = ACTIONS(2445), + [anon_sym_COLON_COLON] = ACTIONS(2447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2447), + [anon_sym___declspec] = ACTIONS(2445), + [anon_sym___based] = ACTIONS(2445), + [anon_sym___cdecl] = ACTIONS(2445), + [anon_sym___clrcall] = ACTIONS(2445), + [anon_sym___stdcall] = ACTIONS(2445), + [anon_sym___fastcall] = ACTIONS(2445), + [anon_sym___thiscall] = ACTIONS(2445), + [anon_sym___vectorcall] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_register] = ACTIONS(2445), + [anon_sym_inline] = ACTIONS(2445), + [anon_sym_thread_local] = ACTIONS(2445), + [anon_sym_input] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_volatile] = ACTIONS(2445), + [anon_sym_restrict] = ACTIONS(2445), + [anon_sym__Atomic] = ACTIONS(2445), + [anon_sym_mutable] = ACTIONS(2445), + [anon_sym_constexpr] = ACTIONS(2445), + [anon_sym_constinit] = ACTIONS(2445), + [anon_sym_consteval] = ACTIONS(2445), + [anon_sym_signed] = ACTIONS(2445), + [anon_sym_unsigned] = ACTIONS(2445), + [anon_sym_long] = ACTIONS(2445), + [anon_sym_short] = ACTIONS(2445), + [sym_primitive_type] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_class] = ACTIONS(2445), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_union] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_switch] = ACTIONS(2445), + [anon_sym_case] = ACTIONS(2445), + [anon_sym_default] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_goto] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2445), + [anon_sym_compl] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(2447), + [anon_sym_sizeof] = ACTIONS(2445), + [sym_number_literal] = ACTIONS(2447), + [anon_sym_L_SQUOTE] = ACTIONS(2447), + [anon_sym_u_SQUOTE] = ACTIONS(2447), + [anon_sym_U_SQUOTE] = ACTIONS(2447), + [anon_sym_u8_SQUOTE] = ACTIONS(2447), + [anon_sym_SQUOTE] = ACTIONS(2447), + [anon_sym_L_DQUOTE] = ACTIONS(2447), + [anon_sym_u_DQUOTE] = ACTIONS(2447), + [anon_sym_U_DQUOTE] = ACTIONS(2447), + [anon_sym_u8_DQUOTE] = ACTIONS(2447), + [anon_sym_DQUOTE] = ACTIONS(2447), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_null] = ACTIONS(2445), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2445), + [anon_sym_virtual] = ACTIONS(2445), + [anon_sym_explicit] = ACTIONS(2445), + [anon_sym_typename] = ACTIONS(2445), + [anon_sym_template] = ACTIONS(2445), + [anon_sym_operator] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_delete] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_using] = ACTIONS(2445), + [anon_sym_static_assert] = ACTIONS(2445), + [anon_sym_concept] = ACTIONS(2445), + [anon_sym_co_return] = ACTIONS(2445), + [anon_sym_co_yield] = ACTIONS(2445), + [anon_sym_R_DQUOTE] = ACTIONS(2447), + [anon_sym_LR_DQUOTE] = ACTIONS(2447), + [anon_sym_uR_DQUOTE] = ACTIONS(2447), + [anon_sym_UR_DQUOTE] = ACTIONS(2447), + [anon_sym_u8R_DQUOTE] = ACTIONS(2447), + [anon_sym_co_await] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_requires] = ACTIONS(2445), + [sym_this] = ACTIONS(2445), + [sym_nullptr] = ACTIONS(2445), }, [363] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2449), + [aux_sym_preproc_include_token1] = ACTIONS(2449), + [aux_sym_preproc_def_token1] = ACTIONS(2449), + [aux_sym_preproc_if_token1] = ACTIONS(2449), + [aux_sym_preproc_if_token2] = ACTIONS(2449), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2449), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2449), + [aux_sym_preproc_else_token1] = ACTIONS(2449), + [aux_sym_preproc_elif_token1] = ACTIONS(2449), + [sym_preproc_directive] = ACTIONS(2449), + [anon_sym_LPAREN2] = ACTIONS(2451), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_TILDE] = ACTIONS(2451), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2451), + [anon_sym_AMP_AMP] = ACTIONS(2451), + [anon_sym_AMP] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_typedef] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym___attribute__] = ACTIONS(2449), + [anon_sym_COLON_COLON] = ACTIONS(2451), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2451), + [anon_sym___declspec] = ACTIONS(2449), + [anon_sym___based] = ACTIONS(2449), + [anon_sym___cdecl] = ACTIONS(2449), + [anon_sym___clrcall] = ACTIONS(2449), + [anon_sym___stdcall] = ACTIONS(2449), + [anon_sym___fastcall] = ACTIONS(2449), + [anon_sym___thiscall] = ACTIONS(2449), + [anon_sym___vectorcall] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_register] = ACTIONS(2449), + [anon_sym_inline] = ACTIONS(2449), + [anon_sym_thread_local] = ACTIONS(2449), + [anon_sym_input] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_volatile] = ACTIONS(2449), + [anon_sym_restrict] = ACTIONS(2449), + [anon_sym__Atomic] = ACTIONS(2449), + [anon_sym_mutable] = ACTIONS(2449), + [anon_sym_constexpr] = ACTIONS(2449), + [anon_sym_constinit] = ACTIONS(2449), + [anon_sym_consteval] = ACTIONS(2449), + [anon_sym_signed] = ACTIONS(2449), + [anon_sym_unsigned] = ACTIONS(2449), + [anon_sym_long] = ACTIONS(2449), + [anon_sym_short] = ACTIONS(2449), + [sym_primitive_type] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_class] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(2449), + [anon_sym_union] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(2449), + [anon_sym_case] = ACTIONS(2449), + [anon_sym_default] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_goto] = ACTIONS(2449), + [anon_sym_not] = ACTIONS(2449), + [anon_sym_compl] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2451), + [anon_sym_PLUS_PLUS] = ACTIONS(2451), + [anon_sym_sizeof] = ACTIONS(2449), + [sym_number_literal] = ACTIONS(2451), + [anon_sym_L_SQUOTE] = ACTIONS(2451), + [anon_sym_u_SQUOTE] = ACTIONS(2451), + [anon_sym_U_SQUOTE] = ACTIONS(2451), + [anon_sym_u8_SQUOTE] = ACTIONS(2451), + [anon_sym_SQUOTE] = ACTIONS(2451), + [anon_sym_L_DQUOTE] = ACTIONS(2451), + [anon_sym_u_DQUOTE] = ACTIONS(2451), + [anon_sym_U_DQUOTE] = ACTIONS(2451), + [anon_sym_u8_DQUOTE] = ACTIONS(2451), + [anon_sym_DQUOTE] = ACTIONS(2451), + [sym_true] = ACTIONS(2449), + [sym_false] = ACTIONS(2449), + [sym_null] = ACTIONS(2449), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2449), + [anon_sym_decltype] = ACTIONS(2449), + [anon_sym_virtual] = ACTIONS(2449), + [anon_sym_explicit] = ACTIONS(2449), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(2449), + [anon_sym_operator] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_delete] = ACTIONS(2449), + [anon_sym_throw] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_using] = ACTIONS(2449), + [anon_sym_static_assert] = ACTIONS(2449), + [anon_sym_concept] = ACTIONS(2449), + [anon_sym_co_return] = ACTIONS(2449), + [anon_sym_co_yield] = ACTIONS(2449), + [anon_sym_R_DQUOTE] = ACTIONS(2451), + [anon_sym_LR_DQUOTE] = ACTIONS(2451), + [anon_sym_uR_DQUOTE] = ACTIONS(2451), + [anon_sym_UR_DQUOTE] = ACTIONS(2451), + [anon_sym_u8R_DQUOTE] = ACTIONS(2451), + [anon_sym_co_await] = ACTIONS(2449), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_requires] = ACTIONS(2449), + [sym_this] = ACTIONS(2449), + [sym_nullptr] = ACTIONS(2449), }, [364] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2017), + [aux_sym_preproc_include_token1] = ACTIONS(2017), + [aux_sym_preproc_def_token1] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2453), + [aux_sym_preproc_if_token1] = ACTIONS(2017), + [aux_sym_preproc_if_token2] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [aux_sym_preproc_else_token1] = ACTIONS(2017), + [aux_sym_preproc_elif_token1] = ACTIONS(2017), + [sym_preproc_directive] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_typedef] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2015), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym_input] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym_mutable] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_constinit] = ACTIONS(2017), + [anon_sym_consteval] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2017), + [anon_sym_unsigned] = ACTIONS(2017), + [anon_sym_long] = ACTIONS(2017), + [anon_sym_short] = ACTIONS(2017), + [sym_primitive_type] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_class] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_switch] = ACTIONS(2017), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_goto] = ACTIONS(2017), + [anon_sym_not] = ACTIONS(2017), + [anon_sym_compl] = ACTIONS(2017), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_sizeof] = ACTIONS(2017), + [sym_number_literal] = ACTIONS(2015), + [anon_sym_L_SQUOTE] = ACTIONS(2015), + [anon_sym_u_SQUOTE] = ACTIONS(2015), + [anon_sym_U_SQUOTE] = ACTIONS(2015), + [anon_sym_u8_SQUOTE] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(2015), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [sym_null] = ACTIONS(2017), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2017), + [anon_sym_decltype] = ACTIONS(2017), + [anon_sym_virtual] = ACTIONS(2017), + [anon_sym_explicit] = ACTIONS(2017), + [anon_sym_typename] = ACTIONS(2017), + [anon_sym_template] = ACTIONS(2017), + [anon_sym_operator] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_delete] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(2017), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_using] = ACTIONS(2017), + [anon_sym_static_assert] = ACTIONS(2017), + [anon_sym_concept] = ACTIONS(2017), + [anon_sym_co_return] = ACTIONS(2017), + [anon_sym_co_yield] = ACTIONS(2017), + [anon_sym_R_DQUOTE] = ACTIONS(2015), + [anon_sym_LR_DQUOTE] = ACTIONS(2015), + [anon_sym_uR_DQUOTE] = ACTIONS(2015), + [anon_sym_UR_DQUOTE] = ACTIONS(2015), + [anon_sym_u8R_DQUOTE] = ACTIONS(2015), + [anon_sym_co_await] = ACTIONS(2017), + [anon_sym_new] = ACTIONS(2017), + [anon_sym_requires] = ACTIONS(2017), + [sym_this] = ACTIONS(2017), + [sym_nullptr] = ACTIONS(2017), }, [365] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2455), + [aux_sym_preproc_include_token1] = ACTIONS(2455), + [aux_sym_preproc_def_token1] = ACTIONS(2455), + [aux_sym_preproc_if_token1] = ACTIONS(2455), + [aux_sym_preproc_if_token2] = ACTIONS(2455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2455), + [aux_sym_preproc_else_token1] = ACTIONS(2455), + [aux_sym_preproc_elif_token1] = ACTIONS(2455), + [sym_preproc_directive] = ACTIONS(2455), + [anon_sym_LPAREN2] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_typedef] = ACTIONS(2455), + [anon_sym_extern] = ACTIONS(2455), + [anon_sym___attribute__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2457), + [anon_sym___declspec] = ACTIONS(2455), + [anon_sym___based] = ACTIONS(2455), + [anon_sym___cdecl] = ACTIONS(2455), + [anon_sym___clrcall] = ACTIONS(2455), + [anon_sym___stdcall] = ACTIONS(2455), + [anon_sym___fastcall] = ACTIONS(2455), + [anon_sym___thiscall] = ACTIONS(2455), + [anon_sym___vectorcall] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_register] = ACTIONS(2455), + [anon_sym_inline] = ACTIONS(2455), + [anon_sym_thread_local] = ACTIONS(2455), + [anon_sym_input] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2455), + [anon_sym_volatile] = ACTIONS(2455), + [anon_sym_restrict] = ACTIONS(2455), + [anon_sym__Atomic] = ACTIONS(2455), + [anon_sym_mutable] = ACTIONS(2455), + [anon_sym_constexpr] = ACTIONS(2455), + [anon_sym_constinit] = ACTIONS(2455), + [anon_sym_consteval] = ACTIONS(2455), + [anon_sym_signed] = ACTIONS(2455), + [anon_sym_unsigned] = ACTIONS(2455), + [anon_sym_long] = ACTIONS(2455), + [anon_sym_short] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2455), + [anon_sym_enum] = ACTIONS(2455), + [anon_sym_class] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_else] = ACTIONS(2455), + [anon_sym_switch] = ACTIONS(2455), + [anon_sym_case] = ACTIONS(2455), + [anon_sym_default] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_do] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2455), + [anon_sym_continue] = ACTIONS(2455), + [anon_sym_goto] = ACTIONS(2455), + [anon_sym_not] = ACTIONS(2455), + [anon_sym_compl] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_sizeof] = ACTIONS(2455), + [sym_number_literal] = ACTIONS(2457), + [anon_sym_L_SQUOTE] = ACTIONS(2457), + [anon_sym_u_SQUOTE] = ACTIONS(2457), + [anon_sym_U_SQUOTE] = ACTIONS(2457), + [anon_sym_u8_SQUOTE] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_L_DQUOTE] = ACTIONS(2457), + [anon_sym_u_DQUOTE] = ACTIONS(2457), + [anon_sym_U_DQUOTE] = ACTIONS(2457), + [anon_sym_u8_DQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [sym_true] = ACTIONS(2455), + [sym_false] = ACTIONS(2455), + [sym_null] = ACTIONS(2455), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2455), + [anon_sym_decltype] = ACTIONS(2455), + [anon_sym_virtual] = ACTIONS(2455), + [anon_sym_explicit] = ACTIONS(2455), + [anon_sym_typename] = ACTIONS(2455), + [anon_sym_template] = ACTIONS(2455), + [anon_sym_operator] = ACTIONS(2455), + [anon_sym_try] = ACTIONS(2455), + [anon_sym_delete] = ACTIONS(2455), + [anon_sym_throw] = ACTIONS(2455), + [anon_sym_namespace] = ACTIONS(2455), + [anon_sym_using] = ACTIONS(2455), + [anon_sym_static_assert] = ACTIONS(2455), + [anon_sym_concept] = ACTIONS(2455), + [anon_sym_co_return] = ACTIONS(2455), + [anon_sym_co_yield] = ACTIONS(2455), + [anon_sym_R_DQUOTE] = ACTIONS(2457), + [anon_sym_LR_DQUOTE] = ACTIONS(2457), + [anon_sym_uR_DQUOTE] = ACTIONS(2457), + [anon_sym_UR_DQUOTE] = ACTIONS(2457), + [anon_sym_u8R_DQUOTE] = ACTIONS(2457), + [anon_sym_co_await] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2455), + [anon_sym_requires] = ACTIONS(2455), + [sym_this] = ACTIONS(2455), + [sym_nullptr] = ACTIONS(2455), }, [366] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2459), + [aux_sym_preproc_include_token1] = ACTIONS(2459), + [aux_sym_preproc_def_token1] = ACTIONS(2459), + [aux_sym_preproc_if_token1] = ACTIONS(2459), + [aux_sym_preproc_if_token2] = ACTIONS(2459), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), + [aux_sym_preproc_else_token1] = ACTIONS(2459), + [aux_sym_preproc_elif_token1] = ACTIONS(2459), + [sym_preproc_directive] = ACTIONS(2459), + [anon_sym_LPAREN2] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2461), + [anon_sym_TILDE] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_AMP_AMP] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(2459), + [anon_sym_SEMI] = ACTIONS(2461), + [anon_sym_typedef] = ACTIONS(2459), + [anon_sym_extern] = ACTIONS(2459), + [anon_sym___attribute__] = ACTIONS(2459), + [anon_sym_COLON_COLON] = ACTIONS(2461), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), + [anon_sym___declspec] = ACTIONS(2459), + [anon_sym___based] = ACTIONS(2459), + [anon_sym___cdecl] = ACTIONS(2459), + [anon_sym___clrcall] = ACTIONS(2459), + [anon_sym___stdcall] = ACTIONS(2459), + [anon_sym___fastcall] = ACTIONS(2459), + [anon_sym___thiscall] = ACTIONS(2459), + [anon_sym___vectorcall] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2459), + [anon_sym_static] = ACTIONS(2459), + [anon_sym_register] = ACTIONS(2459), + [anon_sym_inline] = ACTIONS(2459), + [anon_sym_thread_local] = ACTIONS(2459), + [anon_sym_input] = ACTIONS(2459), + [anon_sym_const] = ACTIONS(2459), + [anon_sym_volatile] = ACTIONS(2459), + [anon_sym_restrict] = ACTIONS(2459), + [anon_sym__Atomic] = ACTIONS(2459), + [anon_sym_mutable] = ACTIONS(2459), + [anon_sym_constexpr] = ACTIONS(2459), + [anon_sym_constinit] = ACTIONS(2459), + [anon_sym_consteval] = ACTIONS(2459), + [anon_sym_signed] = ACTIONS(2459), + [anon_sym_unsigned] = ACTIONS(2459), + [anon_sym_long] = ACTIONS(2459), + [anon_sym_short] = ACTIONS(2459), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_enum] = ACTIONS(2459), + [anon_sym_class] = ACTIONS(2459), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_union] = ACTIONS(2459), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_else] = ACTIONS(2459), + [anon_sym_switch] = ACTIONS(2459), + [anon_sym_case] = ACTIONS(2459), + [anon_sym_default] = ACTIONS(2459), + [anon_sym_while] = ACTIONS(2459), + [anon_sym_do] = ACTIONS(2459), + [anon_sym_for] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2459), + [anon_sym_break] = ACTIONS(2459), + [anon_sym_continue] = ACTIONS(2459), + [anon_sym_goto] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(2459), + [anon_sym_compl] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2461), + [anon_sym_PLUS_PLUS] = ACTIONS(2461), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_number_literal] = ACTIONS(2461), + [anon_sym_L_SQUOTE] = ACTIONS(2461), + [anon_sym_u_SQUOTE] = ACTIONS(2461), + [anon_sym_U_SQUOTE] = ACTIONS(2461), + [anon_sym_u8_SQUOTE] = ACTIONS(2461), + [anon_sym_SQUOTE] = ACTIONS(2461), + [anon_sym_L_DQUOTE] = ACTIONS(2461), + [anon_sym_u_DQUOTE] = ACTIONS(2461), + [anon_sym_U_DQUOTE] = ACTIONS(2461), + [anon_sym_u8_DQUOTE] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(2461), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_null] = ACTIONS(2459), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2459), + [anon_sym_decltype] = ACTIONS(2459), + [anon_sym_virtual] = ACTIONS(2459), + [anon_sym_explicit] = ACTIONS(2459), + [anon_sym_typename] = ACTIONS(2459), + [anon_sym_template] = ACTIONS(2459), + [anon_sym_operator] = ACTIONS(2459), + [anon_sym_try] = ACTIONS(2459), + [anon_sym_delete] = ACTIONS(2459), + [anon_sym_throw] = ACTIONS(2459), + [anon_sym_namespace] = ACTIONS(2459), + [anon_sym_using] = ACTIONS(2459), + [anon_sym_static_assert] = ACTIONS(2459), + [anon_sym_concept] = ACTIONS(2459), + [anon_sym_co_return] = ACTIONS(2459), + [anon_sym_co_yield] = ACTIONS(2459), + [anon_sym_R_DQUOTE] = ACTIONS(2461), + [anon_sym_LR_DQUOTE] = ACTIONS(2461), + [anon_sym_uR_DQUOTE] = ACTIONS(2461), + [anon_sym_UR_DQUOTE] = ACTIONS(2461), + [anon_sym_u8R_DQUOTE] = ACTIONS(2461), + [anon_sym_co_await] = ACTIONS(2459), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2459), + [sym_this] = ACTIONS(2459), + [sym_nullptr] = ACTIONS(2459), }, [367] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2463), + [aux_sym_preproc_include_token1] = ACTIONS(2463), + [aux_sym_preproc_def_token1] = ACTIONS(2463), + [aux_sym_preproc_if_token1] = ACTIONS(2463), + [aux_sym_preproc_if_token2] = ACTIONS(2463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2463), + [aux_sym_preproc_else_token1] = ACTIONS(2463), + [aux_sym_preproc_elif_token1] = ACTIONS(2463), + [sym_preproc_directive] = ACTIONS(2463), + [anon_sym_LPAREN2] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_TILDE] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_AMP_AMP] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2465), + [anon_sym_typedef] = ACTIONS(2463), + [anon_sym_extern] = ACTIONS(2463), + [anon_sym___attribute__] = ACTIONS(2463), + [anon_sym_COLON_COLON] = ACTIONS(2465), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), + [anon_sym___declspec] = ACTIONS(2463), + [anon_sym___based] = ACTIONS(2463), + [anon_sym___cdecl] = ACTIONS(2463), + [anon_sym___clrcall] = ACTIONS(2463), + [anon_sym___stdcall] = ACTIONS(2463), + [anon_sym___fastcall] = ACTIONS(2463), + [anon_sym___thiscall] = ACTIONS(2463), + [anon_sym___vectorcall] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_static] = ACTIONS(2463), + [anon_sym_register] = ACTIONS(2463), + [anon_sym_inline] = ACTIONS(2463), + [anon_sym_thread_local] = ACTIONS(2463), + [anon_sym_input] = ACTIONS(2463), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_volatile] = ACTIONS(2463), + [anon_sym_restrict] = ACTIONS(2463), + [anon_sym__Atomic] = ACTIONS(2463), + [anon_sym_mutable] = ACTIONS(2463), + [anon_sym_constexpr] = ACTIONS(2463), + [anon_sym_constinit] = ACTIONS(2463), + [anon_sym_consteval] = ACTIONS(2463), + [anon_sym_signed] = ACTIONS(2463), + [anon_sym_unsigned] = ACTIONS(2463), + [anon_sym_long] = ACTIONS(2463), + [anon_sym_short] = ACTIONS(2463), + [sym_primitive_type] = ACTIONS(2463), + [anon_sym_enum] = ACTIONS(2463), + [anon_sym_class] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_else] = ACTIONS(2463), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(2463), + [anon_sym_while] = ACTIONS(2463), + [anon_sym_do] = ACTIONS(2463), + [anon_sym_for] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2463), + [anon_sym_break] = ACTIONS(2463), + [anon_sym_continue] = ACTIONS(2463), + [anon_sym_goto] = ACTIONS(2463), + [anon_sym_not] = ACTIONS(2463), + [anon_sym_compl] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2465), + [anon_sym_PLUS_PLUS] = ACTIONS(2465), + [anon_sym_sizeof] = ACTIONS(2463), + [sym_number_literal] = ACTIONS(2465), + [anon_sym_L_SQUOTE] = ACTIONS(2465), + [anon_sym_u_SQUOTE] = ACTIONS(2465), + [anon_sym_U_SQUOTE] = ACTIONS(2465), + [anon_sym_u8_SQUOTE] = ACTIONS(2465), + [anon_sym_SQUOTE] = ACTIONS(2465), + [anon_sym_L_DQUOTE] = ACTIONS(2465), + [anon_sym_u_DQUOTE] = ACTIONS(2465), + [anon_sym_U_DQUOTE] = ACTIONS(2465), + [anon_sym_u8_DQUOTE] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2465), + [sym_true] = ACTIONS(2463), + [sym_false] = ACTIONS(2463), + [sym_null] = ACTIONS(2463), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2463), + [anon_sym_decltype] = ACTIONS(2463), + [anon_sym_virtual] = ACTIONS(2463), + [anon_sym_explicit] = ACTIONS(2463), + [anon_sym_typename] = ACTIONS(2463), + [anon_sym_template] = ACTIONS(2463), + [anon_sym_operator] = ACTIONS(2463), + [anon_sym_try] = ACTIONS(2463), + [anon_sym_delete] = ACTIONS(2463), + [anon_sym_throw] = ACTIONS(2463), + [anon_sym_namespace] = ACTIONS(2463), + [anon_sym_using] = ACTIONS(2463), + [anon_sym_static_assert] = ACTIONS(2463), + [anon_sym_concept] = ACTIONS(2463), + [anon_sym_co_return] = ACTIONS(2463), + [anon_sym_co_yield] = ACTIONS(2463), + [anon_sym_R_DQUOTE] = ACTIONS(2465), + [anon_sym_LR_DQUOTE] = ACTIONS(2465), + [anon_sym_uR_DQUOTE] = ACTIONS(2465), + [anon_sym_UR_DQUOTE] = ACTIONS(2465), + [anon_sym_u8R_DQUOTE] = ACTIONS(2465), + [anon_sym_co_await] = ACTIONS(2463), + [anon_sym_new] = ACTIONS(2463), + [anon_sym_requires] = ACTIONS(2463), + [sym_this] = ACTIONS(2463), + [sym_nullptr] = ACTIONS(2463), }, [368] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2467), + [aux_sym_preproc_include_token1] = ACTIONS(2467), + [aux_sym_preproc_def_token1] = ACTIONS(2467), + [aux_sym_preproc_if_token1] = ACTIONS(2467), + [aux_sym_preproc_if_token2] = ACTIONS(2467), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2467), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2467), + [aux_sym_preproc_else_token1] = ACTIONS(2467), + [aux_sym_preproc_elif_token1] = ACTIONS(2467), + [sym_preproc_directive] = ACTIONS(2467), + [anon_sym_LPAREN2] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_AMP_AMP] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_typedef] = ACTIONS(2467), + [anon_sym_extern] = ACTIONS(2467), + [anon_sym___attribute__] = ACTIONS(2467), + [anon_sym_COLON_COLON] = ACTIONS(2469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2469), + [anon_sym___declspec] = ACTIONS(2467), + [anon_sym___based] = ACTIONS(2467), + [anon_sym___cdecl] = ACTIONS(2467), + [anon_sym___clrcall] = ACTIONS(2467), + [anon_sym___stdcall] = ACTIONS(2467), + [anon_sym___fastcall] = ACTIONS(2467), + [anon_sym___thiscall] = ACTIONS(2467), + [anon_sym___vectorcall] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_static] = ACTIONS(2467), + [anon_sym_register] = ACTIONS(2467), + [anon_sym_inline] = ACTIONS(2467), + [anon_sym_thread_local] = ACTIONS(2467), + [anon_sym_input] = ACTIONS(2467), + [anon_sym_const] = ACTIONS(2467), + [anon_sym_volatile] = ACTIONS(2467), + [anon_sym_restrict] = ACTIONS(2467), + [anon_sym__Atomic] = ACTIONS(2467), + [anon_sym_mutable] = ACTIONS(2467), + [anon_sym_constexpr] = ACTIONS(2467), + [anon_sym_constinit] = ACTIONS(2467), + [anon_sym_consteval] = ACTIONS(2467), + [anon_sym_signed] = ACTIONS(2467), + [anon_sym_unsigned] = ACTIONS(2467), + [anon_sym_long] = ACTIONS(2467), + [anon_sym_short] = ACTIONS(2467), + [sym_primitive_type] = ACTIONS(2467), + [anon_sym_enum] = ACTIONS(2467), + [anon_sym_class] = ACTIONS(2467), + [anon_sym_struct] = ACTIONS(2467), + [anon_sym_union] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_else] = ACTIONS(2467), + [anon_sym_switch] = ACTIONS(2467), + [anon_sym_case] = ACTIONS(2467), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2467), + [anon_sym_do] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_goto] = ACTIONS(2467), + [anon_sym_not] = ACTIONS(2467), + [anon_sym_compl] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2469), + [anon_sym_PLUS_PLUS] = ACTIONS(2469), + [anon_sym_sizeof] = ACTIONS(2467), + [sym_number_literal] = ACTIONS(2469), + [anon_sym_L_SQUOTE] = ACTIONS(2469), + [anon_sym_u_SQUOTE] = ACTIONS(2469), + [anon_sym_U_SQUOTE] = ACTIONS(2469), + [anon_sym_u8_SQUOTE] = ACTIONS(2469), + [anon_sym_SQUOTE] = ACTIONS(2469), + [anon_sym_L_DQUOTE] = ACTIONS(2469), + [anon_sym_u_DQUOTE] = ACTIONS(2469), + [anon_sym_U_DQUOTE] = ACTIONS(2469), + [anon_sym_u8_DQUOTE] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2469), + [sym_true] = ACTIONS(2467), + [sym_false] = ACTIONS(2467), + [sym_null] = ACTIONS(2467), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2467), + [anon_sym_decltype] = ACTIONS(2467), + [anon_sym_virtual] = ACTIONS(2467), + [anon_sym_explicit] = ACTIONS(2467), + [anon_sym_typename] = ACTIONS(2467), + [anon_sym_template] = ACTIONS(2467), + [anon_sym_operator] = ACTIONS(2467), + [anon_sym_try] = ACTIONS(2467), + [anon_sym_delete] = ACTIONS(2467), + [anon_sym_throw] = ACTIONS(2467), + [anon_sym_namespace] = ACTIONS(2467), + [anon_sym_using] = ACTIONS(2467), + [anon_sym_static_assert] = ACTIONS(2467), + [anon_sym_concept] = ACTIONS(2467), + [anon_sym_co_return] = ACTIONS(2467), + [anon_sym_co_yield] = ACTIONS(2467), + [anon_sym_R_DQUOTE] = ACTIONS(2469), + [anon_sym_LR_DQUOTE] = ACTIONS(2469), + [anon_sym_uR_DQUOTE] = ACTIONS(2469), + [anon_sym_UR_DQUOTE] = ACTIONS(2469), + [anon_sym_u8R_DQUOTE] = ACTIONS(2469), + [anon_sym_co_await] = ACTIONS(2467), + [anon_sym_new] = ACTIONS(2467), + [anon_sym_requires] = ACTIONS(2467), + [sym_this] = ACTIONS(2467), + [sym_nullptr] = ACTIONS(2467), }, [369] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2471), + [aux_sym_preproc_include_token1] = ACTIONS(2471), + [aux_sym_preproc_def_token1] = ACTIONS(2471), + [aux_sym_preproc_if_token1] = ACTIONS(2471), + [aux_sym_preproc_if_token2] = ACTIONS(2471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2471), + [aux_sym_preproc_else_token1] = ACTIONS(2471), + [aux_sym_preproc_elif_token1] = ACTIONS(2471), + [sym_preproc_directive] = ACTIONS(2471), + [anon_sym_LPAREN2] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2473), + [anon_sym_TILDE] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_typedef] = ACTIONS(2471), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym___attribute__] = ACTIONS(2471), + [anon_sym_COLON_COLON] = ACTIONS(2473), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2473), + [anon_sym___declspec] = ACTIONS(2471), + [anon_sym___based] = ACTIONS(2471), + [anon_sym___cdecl] = ACTIONS(2471), + [anon_sym___clrcall] = ACTIONS(2471), + [anon_sym___stdcall] = ACTIONS(2471), + [anon_sym___fastcall] = ACTIONS(2471), + [anon_sym___thiscall] = ACTIONS(2471), + [anon_sym___vectorcall] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_static] = ACTIONS(2471), + [anon_sym_register] = ACTIONS(2471), + [anon_sym_inline] = ACTIONS(2471), + [anon_sym_thread_local] = ACTIONS(2471), + [anon_sym_input] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [anon_sym_volatile] = ACTIONS(2471), + [anon_sym_restrict] = ACTIONS(2471), + [anon_sym__Atomic] = ACTIONS(2471), + [anon_sym_mutable] = ACTIONS(2471), + [anon_sym_constexpr] = ACTIONS(2471), + [anon_sym_constinit] = ACTIONS(2471), + [anon_sym_consteval] = ACTIONS(2471), + [anon_sym_signed] = ACTIONS(2471), + [anon_sym_unsigned] = ACTIONS(2471), + [anon_sym_long] = ACTIONS(2471), + [anon_sym_short] = ACTIONS(2471), + [sym_primitive_type] = ACTIONS(2471), + [anon_sym_enum] = ACTIONS(2471), + [anon_sym_class] = ACTIONS(2471), + [anon_sym_struct] = ACTIONS(2471), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_else] = ACTIONS(2471), + [anon_sym_switch] = ACTIONS(2471), + [anon_sym_case] = ACTIONS(2471), + [anon_sym_default] = ACTIONS(2471), + [anon_sym_while] = ACTIONS(2471), + [anon_sym_do] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_goto] = ACTIONS(2471), + [anon_sym_not] = ACTIONS(2471), + [anon_sym_compl] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(2473), + [anon_sym_PLUS_PLUS] = ACTIONS(2473), + [anon_sym_sizeof] = ACTIONS(2471), + [sym_number_literal] = ACTIONS(2473), + [anon_sym_L_SQUOTE] = ACTIONS(2473), + [anon_sym_u_SQUOTE] = ACTIONS(2473), + [anon_sym_U_SQUOTE] = ACTIONS(2473), + [anon_sym_u8_SQUOTE] = ACTIONS(2473), + [anon_sym_SQUOTE] = ACTIONS(2473), + [anon_sym_L_DQUOTE] = ACTIONS(2473), + [anon_sym_u_DQUOTE] = ACTIONS(2473), + [anon_sym_U_DQUOTE] = ACTIONS(2473), + [anon_sym_u8_DQUOTE] = ACTIONS(2473), + [anon_sym_DQUOTE] = ACTIONS(2473), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_null] = ACTIONS(2471), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2471), + [anon_sym_decltype] = ACTIONS(2471), + [anon_sym_virtual] = ACTIONS(2471), + [anon_sym_explicit] = ACTIONS(2471), + [anon_sym_typename] = ACTIONS(2471), + [anon_sym_template] = ACTIONS(2471), + [anon_sym_operator] = ACTIONS(2471), + [anon_sym_try] = ACTIONS(2471), + [anon_sym_delete] = ACTIONS(2471), + [anon_sym_throw] = ACTIONS(2471), + [anon_sym_namespace] = ACTIONS(2471), + [anon_sym_using] = ACTIONS(2471), + [anon_sym_static_assert] = ACTIONS(2471), + [anon_sym_concept] = ACTIONS(2471), + [anon_sym_co_return] = ACTIONS(2471), + [anon_sym_co_yield] = ACTIONS(2471), + [anon_sym_R_DQUOTE] = ACTIONS(2473), + [anon_sym_LR_DQUOTE] = ACTIONS(2473), + [anon_sym_uR_DQUOTE] = ACTIONS(2473), + [anon_sym_UR_DQUOTE] = ACTIONS(2473), + [anon_sym_u8R_DQUOTE] = ACTIONS(2473), + [anon_sym_co_await] = ACTIONS(2471), + [anon_sym_new] = ACTIONS(2471), + [anon_sym_requires] = ACTIONS(2471), + [sym_this] = ACTIONS(2471), + [sym_nullptr] = ACTIONS(2471), }, [370] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [371] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [372] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [373] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [374] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [375] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [376] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [377] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [378] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3590), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5695), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(5908), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2451), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [379] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [380] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [381] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [382] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [383] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3589), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5659), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(5936), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2463), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [384] = { - [sym_identifier] = ACTIONS(2465), - [aux_sym_preproc_include_token1] = ACTIONS(2465), - [aux_sym_preproc_def_token1] = ACTIONS(2465), - [aux_sym_preproc_if_token1] = ACTIONS(2465), - [aux_sym_preproc_if_token2] = ACTIONS(2465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2465), - [aux_sym_preproc_else_token1] = ACTIONS(2465), - [aux_sym_preproc_elif_token1] = ACTIONS(2465), - [sym_preproc_directive] = ACTIONS(2465), - [anon_sym_LPAREN2] = ACTIONS(2467), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2467), - [anon_sym_AMP_AMP] = ACTIONS(2467), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_typedef] = ACTIONS(2465), - [anon_sym_extern] = ACTIONS(2465), - [anon_sym___attribute__] = ACTIONS(2465), - [anon_sym_COLON_COLON] = ACTIONS(2467), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2467), - [anon_sym___declspec] = ACTIONS(2465), - [anon_sym___based] = ACTIONS(2465), - [anon_sym___cdecl] = ACTIONS(2465), - [anon_sym___clrcall] = ACTIONS(2465), - [anon_sym___stdcall] = ACTIONS(2465), - [anon_sym___fastcall] = ACTIONS(2465), - [anon_sym___thiscall] = ACTIONS(2465), - [anon_sym___vectorcall] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_static] = ACTIONS(2465), - [anon_sym_register] = ACTIONS(2465), - [anon_sym_inline] = ACTIONS(2465), - [anon_sym_thread_local] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_volatile] = ACTIONS(2465), - [anon_sym_restrict] = ACTIONS(2465), - [anon_sym__Atomic] = ACTIONS(2465), - [anon_sym_mutable] = ACTIONS(2465), - [anon_sym_constexpr] = ACTIONS(2465), - [anon_sym_constinit] = ACTIONS(2465), - [anon_sym_consteval] = ACTIONS(2465), - [anon_sym_signed] = ACTIONS(2465), - [anon_sym_unsigned] = ACTIONS(2465), - [anon_sym_long] = ACTIONS(2465), - [anon_sym_short] = ACTIONS(2465), - [sym_primitive_type] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_class] = ACTIONS(2465), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_union] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_switch] = ACTIONS(2465), - [anon_sym_case] = ACTIONS(2465), - [anon_sym_default] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_not] = ACTIONS(2465), - [anon_sym_compl] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2467), - [anon_sym_PLUS_PLUS] = ACTIONS(2467), - [anon_sym_sizeof] = ACTIONS(2465), - [sym_number_literal] = ACTIONS(2467), - [anon_sym_L_SQUOTE] = ACTIONS(2467), - [anon_sym_u_SQUOTE] = ACTIONS(2467), - [anon_sym_U_SQUOTE] = ACTIONS(2467), - [anon_sym_u8_SQUOTE] = ACTIONS(2467), - [anon_sym_SQUOTE] = ACTIONS(2467), - [anon_sym_L_DQUOTE] = ACTIONS(2467), - [anon_sym_u_DQUOTE] = ACTIONS(2467), - [anon_sym_U_DQUOTE] = ACTIONS(2467), - [anon_sym_u8_DQUOTE] = ACTIONS(2467), - [anon_sym_DQUOTE] = ACTIONS(2467), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_null] = ACTIONS(2465), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2465), - [anon_sym_decltype] = ACTIONS(2465), - [anon_sym_virtual] = ACTIONS(2465), - [anon_sym_explicit] = ACTIONS(2465), - [anon_sym_typename] = ACTIONS(2465), - [anon_sym_template] = ACTIONS(2465), - [anon_sym_operator] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_delete] = ACTIONS(2465), - [anon_sym_throw] = ACTIONS(2465), - [anon_sym_namespace] = ACTIONS(2465), - [anon_sym_using] = ACTIONS(2465), - [anon_sym_static_assert] = ACTIONS(2465), - [anon_sym_concept] = ACTIONS(2465), - [anon_sym_co_return] = ACTIONS(2465), - [anon_sym_co_yield] = ACTIONS(2465), - [anon_sym_R_DQUOTE] = ACTIONS(2467), - [anon_sym_LR_DQUOTE] = ACTIONS(2467), - [anon_sym_uR_DQUOTE] = ACTIONS(2467), - [anon_sym_UR_DQUOTE] = ACTIONS(2467), - [anon_sym_u8R_DQUOTE] = ACTIONS(2467), - [anon_sym_co_await] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_requires] = ACTIONS(2465), - [sym_this] = ACTIONS(2465), - [sym_nullptr] = ACTIONS(2465), - }, - [385] = { - [sym_identifier] = ACTIONS(2469), - [aux_sym_preproc_include_token1] = ACTIONS(2469), - [aux_sym_preproc_def_token1] = ACTIONS(2469), - [aux_sym_preproc_if_token1] = ACTIONS(2469), - [aux_sym_preproc_if_token2] = ACTIONS(2469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2469), - [aux_sym_preproc_else_token1] = ACTIONS(2469), - [aux_sym_preproc_elif_token1] = ACTIONS(2469), - [sym_preproc_directive] = ACTIONS(2469), - [anon_sym_LPAREN2] = ACTIONS(2471), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_PLUS] = ACTIONS(2469), - [anon_sym_STAR] = ACTIONS(2471), - [anon_sym_AMP_AMP] = ACTIONS(2471), - [anon_sym_AMP] = ACTIONS(2469), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_typedef] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(2469), - [anon_sym___attribute__] = ACTIONS(2469), - [anon_sym_COLON_COLON] = ACTIONS(2471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2471), - [anon_sym___declspec] = ACTIONS(2469), - [anon_sym___based] = ACTIONS(2469), - [anon_sym___cdecl] = ACTIONS(2469), - [anon_sym___clrcall] = ACTIONS(2469), - [anon_sym___stdcall] = ACTIONS(2469), - [anon_sym___fastcall] = ACTIONS(2469), - [anon_sym___thiscall] = ACTIONS(2469), - [anon_sym___vectorcall] = ACTIONS(2469), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_static] = ACTIONS(2469), - [anon_sym_register] = ACTIONS(2469), - [anon_sym_inline] = ACTIONS(2469), - [anon_sym_thread_local] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [anon_sym_volatile] = ACTIONS(2469), - [anon_sym_restrict] = ACTIONS(2469), - [anon_sym__Atomic] = ACTIONS(2469), - [anon_sym_mutable] = ACTIONS(2469), - [anon_sym_constexpr] = ACTIONS(2469), - [anon_sym_constinit] = ACTIONS(2469), - [anon_sym_consteval] = ACTIONS(2469), - [anon_sym_signed] = ACTIONS(2469), - [anon_sym_unsigned] = ACTIONS(2469), - [anon_sym_long] = ACTIONS(2469), - [anon_sym_short] = ACTIONS(2469), - [sym_primitive_type] = ACTIONS(2469), - [anon_sym_enum] = ACTIONS(2469), - [anon_sym_class] = ACTIONS(2469), - [anon_sym_struct] = ACTIONS(2469), - [anon_sym_union] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_switch] = ACTIONS(2469), - [anon_sym_case] = ACTIONS(2469), - [anon_sym_default] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_goto] = ACTIONS(2469), - [anon_sym_not] = ACTIONS(2469), - [anon_sym_compl] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2471), - [anon_sym_sizeof] = ACTIONS(2469), - [sym_number_literal] = ACTIONS(2471), - [anon_sym_L_SQUOTE] = ACTIONS(2471), - [anon_sym_u_SQUOTE] = ACTIONS(2471), - [anon_sym_U_SQUOTE] = ACTIONS(2471), - [anon_sym_u8_SQUOTE] = ACTIONS(2471), - [anon_sym_SQUOTE] = ACTIONS(2471), - [anon_sym_L_DQUOTE] = ACTIONS(2471), - [anon_sym_u_DQUOTE] = ACTIONS(2471), - [anon_sym_U_DQUOTE] = ACTIONS(2471), - [anon_sym_u8_DQUOTE] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(2471), - [sym_true] = ACTIONS(2469), - [sym_false] = ACTIONS(2469), - [sym_null] = ACTIONS(2469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2469), - [anon_sym_decltype] = ACTIONS(2469), - [anon_sym_virtual] = ACTIONS(2469), - [anon_sym_explicit] = ACTIONS(2469), - [anon_sym_typename] = ACTIONS(2469), - [anon_sym_template] = ACTIONS(2469), - [anon_sym_operator] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_delete] = ACTIONS(2469), - [anon_sym_throw] = ACTIONS(2469), - [anon_sym_namespace] = ACTIONS(2469), - [anon_sym_using] = ACTIONS(2469), - [anon_sym_static_assert] = ACTIONS(2469), - [anon_sym_concept] = ACTIONS(2469), - [anon_sym_co_return] = ACTIONS(2469), - [anon_sym_co_yield] = ACTIONS(2469), - [anon_sym_R_DQUOTE] = ACTIONS(2471), - [anon_sym_LR_DQUOTE] = ACTIONS(2471), - [anon_sym_uR_DQUOTE] = ACTIONS(2471), - [anon_sym_UR_DQUOTE] = ACTIONS(2471), - [anon_sym_u8R_DQUOTE] = ACTIONS(2471), - [anon_sym_co_await] = ACTIONS(2469), - [anon_sym_new] = ACTIONS(2469), - [anon_sym_requires] = ACTIONS(2469), - [sym_this] = ACTIONS(2469), - [sym_nullptr] = ACTIONS(2469), - }, - [386] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3587), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5663), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(5947), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2473), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [387] = { [sym_identifier] = ACTIONS(2475), [aux_sym_preproc_include_token1] = ACTIONS(2475), [aux_sym_preproc_def_token1] = ACTIONS(2475), @@ -81718,6 +79975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2475), [anon_sym_inline] = ACTIONS(2475), [anon_sym_thread_local] = ACTIONS(2475), + [anon_sym_input] = ACTIONS(2475), [anon_sym_const] = ACTIONS(2475), [anon_sym_volatile] = ACTIONS(2475), [anon_sym_restrict] = ACTIONS(2475), @@ -81794,7 +80052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2475), [sym_nullptr] = ACTIONS(2475), }, - [388] = { + [371] = { [sym_identifier] = ACTIONS(2479), [aux_sym_preproc_include_token1] = ACTIONS(2479), [aux_sym_preproc_def_token1] = ACTIONS(2479), @@ -81833,6 +80091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2479), [anon_sym_inline] = ACTIONS(2479), [anon_sym_thread_local] = ACTIONS(2479), + [anon_sym_input] = ACTIONS(2479), [anon_sym_const] = ACTIONS(2479), [anon_sym_volatile] = ACTIONS(2479), [anon_sym_restrict] = ACTIONS(2479), @@ -81909,7 +80168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2479), [sym_nullptr] = ACTIONS(2479), }, - [389] = { + [372] = { [sym_identifier] = ACTIONS(2483), [aux_sym_preproc_include_token1] = ACTIONS(2483), [aux_sym_preproc_def_token1] = ACTIONS(2483), @@ -81948,6 +80207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2483), [anon_sym_inline] = ACTIONS(2483), [anon_sym_thread_local] = ACTIONS(2483), + [anon_sym_input] = ACTIONS(2483), [anon_sym_const] = ACTIONS(2483), [anon_sym_volatile] = ACTIONS(2483), [anon_sym_restrict] = ACTIONS(2483), @@ -82024,122 +80284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2483), [sym_nullptr] = ACTIONS(2483), }, - [390] = { - [sym_catch_clause] = STATE(338), - [aux_sym_constructor_try_statement_repeat1] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2370), - [sym_identifier] = ACTIONS(2368), - [aux_sym_preproc_include_token1] = ACTIONS(2368), - [aux_sym_preproc_def_token1] = ACTIONS(2368), - [aux_sym_preproc_if_token1] = ACTIONS(2368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), - [sym_preproc_directive] = ACTIONS(2368), - [anon_sym_LPAREN2] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_TILDE] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_PLUS] = ACTIONS(2368), - [anon_sym_STAR] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_typedef] = ACTIONS(2368), - [anon_sym_extern] = ACTIONS(2368), - [anon_sym___attribute__] = ACTIONS(2368), - [anon_sym_COLON_COLON] = ACTIONS(2370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2370), - [anon_sym___declspec] = ACTIONS(2368), - [anon_sym___based] = ACTIONS(2368), - [anon_sym___cdecl] = ACTIONS(2368), - [anon_sym___clrcall] = ACTIONS(2368), - [anon_sym___stdcall] = ACTIONS(2368), - [anon_sym___fastcall] = ACTIONS(2368), - [anon_sym___thiscall] = ACTIONS(2368), - [anon_sym___vectorcall] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2368), - [anon_sym_static] = ACTIONS(2368), - [anon_sym_register] = ACTIONS(2368), - [anon_sym_inline] = ACTIONS(2368), - [anon_sym_thread_local] = ACTIONS(2368), - [anon_sym_const] = ACTIONS(2368), - [anon_sym_volatile] = ACTIONS(2368), - [anon_sym_restrict] = ACTIONS(2368), - [anon_sym__Atomic] = ACTIONS(2368), - [anon_sym_mutable] = ACTIONS(2368), - [anon_sym_constexpr] = ACTIONS(2368), - [anon_sym_constinit] = ACTIONS(2368), - [anon_sym_consteval] = ACTIONS(2368), - [anon_sym_signed] = ACTIONS(2368), - [anon_sym_unsigned] = ACTIONS(2368), - [anon_sym_long] = ACTIONS(2368), - [anon_sym_short] = ACTIONS(2368), - [sym_primitive_type] = ACTIONS(2368), - [anon_sym_enum] = ACTIONS(2368), - [anon_sym_class] = ACTIONS(2368), - [anon_sym_struct] = ACTIONS(2368), - [anon_sym_union] = ACTIONS(2368), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_switch] = ACTIONS(2368), - [anon_sym_case] = ACTIONS(2368), - [anon_sym_default] = ACTIONS(2368), - [anon_sym_while] = ACTIONS(2368), - [anon_sym_do] = ACTIONS(2368), - [anon_sym_for] = ACTIONS(2368), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_goto] = ACTIONS(2368), - [anon_sym_not] = ACTIONS(2368), - [anon_sym_compl] = ACTIONS(2368), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_sizeof] = ACTIONS(2368), - [sym_number_literal] = ACTIONS(2370), - [anon_sym_L_SQUOTE] = ACTIONS(2370), - [anon_sym_u_SQUOTE] = ACTIONS(2370), - [anon_sym_U_SQUOTE] = ACTIONS(2370), - [anon_sym_u8_SQUOTE] = ACTIONS(2370), - [anon_sym_SQUOTE] = ACTIONS(2370), - [anon_sym_L_DQUOTE] = ACTIONS(2370), - [anon_sym_u_DQUOTE] = ACTIONS(2370), - [anon_sym_U_DQUOTE] = ACTIONS(2370), - [anon_sym_u8_DQUOTE] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [sym_true] = ACTIONS(2368), - [sym_false] = ACTIONS(2368), - [sym_null] = ACTIONS(2368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2368), - [anon_sym_decltype] = ACTIONS(2368), - [anon_sym_virtual] = ACTIONS(2368), - [anon_sym_explicit] = ACTIONS(2368), - [anon_sym_typename] = ACTIONS(2368), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_operator] = ACTIONS(2368), - [anon_sym_try] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2368), - [anon_sym_throw] = ACTIONS(2368), - [anon_sym_namespace] = ACTIONS(2368), - [anon_sym_using] = ACTIONS(2368), - [anon_sym_static_assert] = ACTIONS(2368), - [anon_sym_concept] = ACTIONS(2368), - [anon_sym_co_return] = ACTIONS(2368), - [anon_sym_co_yield] = ACTIONS(2368), - [anon_sym_catch] = ACTIONS(2393), - [anon_sym_R_DQUOTE] = ACTIONS(2370), - [anon_sym_LR_DQUOTE] = ACTIONS(2370), - [anon_sym_uR_DQUOTE] = ACTIONS(2370), - [anon_sym_UR_DQUOTE] = ACTIONS(2370), - [anon_sym_u8R_DQUOTE] = ACTIONS(2370), - [anon_sym_co_await] = ACTIONS(2368), - [anon_sym_new] = ACTIONS(2368), - [anon_sym_requires] = ACTIONS(2368), - [sym_this] = ACTIONS(2368), - [sym_nullptr] = ACTIONS(2368), - }, - [391] = { + [373] = { [sym_identifier] = ACTIONS(2487), [aux_sym_preproc_include_token1] = ACTIONS(2487), [aux_sym_preproc_def_token1] = ACTIONS(2487), @@ -82178,6 +80323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2487), [anon_sym_inline] = ACTIONS(2487), [anon_sym_thread_local] = ACTIONS(2487), + [anon_sym_input] = ACTIONS(2487), [anon_sym_const] = ACTIONS(2487), [anon_sym_volatile] = ACTIONS(2487), [anon_sym_restrict] = ACTIONS(2487), @@ -82254,7 +80400,1747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2487), [sym_nullptr] = ACTIONS(2487), }, - [392] = { + [374] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [375] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [376] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [377] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [378] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [379] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [380] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [381] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [382] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [383] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [384] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [385] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [386] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [387] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [388] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [389] = { [sym_identifier] = ACTIONS(2491), [aux_sym_preproc_include_token1] = ACTIONS(2491), [aux_sym_preproc_def_token1] = ACTIONS(2491), @@ -82293,6 +82179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2491), [anon_sym_inline] = ACTIONS(2491), [anon_sym_thread_local] = ACTIONS(2491), + [anon_sym_input] = ACTIONS(2491), [anon_sym_const] = ACTIONS(2491), [anon_sym_volatile] = ACTIONS(2491), [anon_sym_restrict] = ACTIONS(2491), @@ -82369,7 +82256,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2491), [sym_nullptr] = ACTIONS(2491), }, - [393] = { + [390] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [391] = { [sym_identifier] = ACTIONS(2495), [aux_sym_preproc_include_token1] = ACTIONS(2495), [aux_sym_preproc_def_token1] = ACTIONS(2495), @@ -82408,6 +82411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2495), [anon_sym_inline] = ACTIONS(2495), [anon_sym_thread_local] = ACTIONS(2495), + [anon_sym_input] = ACTIONS(2495), [anon_sym_const] = ACTIONS(2495), [anon_sym_volatile] = ACTIONS(2495), [anon_sym_restrict] = ACTIONS(2495), @@ -82484,7 +82488,1631 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2495), [sym_nullptr] = ACTIONS(2495), }, + [392] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [393] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, [394] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [395] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [396] = { + [sym_catch_clause] = STATE(342), + [aux_sym_constructor_try_statement_repeat1] = STATE(342), + [ts_builtin_sym_end] = ACTIONS(2374), + [sym_identifier] = ACTIONS(2372), + [aux_sym_preproc_include_token1] = ACTIONS(2372), + [aux_sym_preproc_def_token1] = ACTIONS(2372), + [aux_sym_preproc_if_token1] = ACTIONS(2372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2372), + [sym_preproc_directive] = ACTIONS(2372), + [anon_sym_LPAREN2] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(2374), + [anon_sym_TILDE] = ACTIONS(2374), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_typedef] = ACTIONS(2372), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym___attribute__] = ACTIONS(2372), + [anon_sym_COLON_COLON] = ACTIONS(2374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2374), + [anon_sym___declspec] = ACTIONS(2372), + [anon_sym___based] = ACTIONS(2372), + [anon_sym___cdecl] = ACTIONS(2372), + [anon_sym___clrcall] = ACTIONS(2372), + [anon_sym___stdcall] = ACTIONS(2372), + [anon_sym___fastcall] = ACTIONS(2372), + [anon_sym___thiscall] = ACTIONS(2372), + [anon_sym___vectorcall] = ACTIONS(2372), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_LBRACK] = ACTIONS(2372), + [anon_sym_static] = ACTIONS(2372), + [anon_sym_register] = ACTIONS(2372), + [anon_sym_inline] = ACTIONS(2372), + [anon_sym_thread_local] = ACTIONS(2372), + [anon_sym_input] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [anon_sym_volatile] = ACTIONS(2372), + [anon_sym_restrict] = ACTIONS(2372), + [anon_sym__Atomic] = ACTIONS(2372), + [anon_sym_mutable] = ACTIONS(2372), + [anon_sym_constexpr] = ACTIONS(2372), + [anon_sym_constinit] = ACTIONS(2372), + [anon_sym_consteval] = ACTIONS(2372), + [anon_sym_signed] = ACTIONS(2372), + [anon_sym_unsigned] = ACTIONS(2372), + [anon_sym_long] = ACTIONS(2372), + [anon_sym_short] = ACTIONS(2372), + [sym_primitive_type] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2372), + [anon_sym_class] = ACTIONS(2372), + [anon_sym_struct] = ACTIONS(2372), + [anon_sym_union] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_switch] = ACTIONS(2372), + [anon_sym_case] = ACTIONS(2372), + [anon_sym_default] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_goto] = ACTIONS(2372), + [anon_sym_not] = ACTIONS(2372), + [anon_sym_compl] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2374), + [anon_sym_PLUS_PLUS] = ACTIONS(2374), + [anon_sym_sizeof] = ACTIONS(2372), + [sym_number_literal] = ACTIONS(2374), + [anon_sym_L_SQUOTE] = ACTIONS(2374), + [anon_sym_u_SQUOTE] = ACTIONS(2374), + [anon_sym_U_SQUOTE] = ACTIONS(2374), + [anon_sym_u8_SQUOTE] = ACTIONS(2374), + [anon_sym_SQUOTE] = ACTIONS(2374), + [anon_sym_L_DQUOTE] = ACTIONS(2374), + [anon_sym_u_DQUOTE] = ACTIONS(2374), + [anon_sym_U_DQUOTE] = ACTIONS(2374), + [anon_sym_u8_DQUOTE] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [sym_true] = ACTIONS(2372), + [sym_false] = ACTIONS(2372), + [sym_null] = ACTIONS(2372), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2372), + [anon_sym_decltype] = ACTIONS(2372), + [anon_sym_virtual] = ACTIONS(2372), + [anon_sym_explicit] = ACTIONS(2372), + [anon_sym_typename] = ACTIONS(2372), + [anon_sym_template] = ACTIONS(2372), + [anon_sym_operator] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_delete] = ACTIONS(2372), + [anon_sym_throw] = ACTIONS(2372), + [anon_sym_namespace] = ACTIONS(2372), + [anon_sym_using] = ACTIONS(2372), + [anon_sym_static_assert] = ACTIONS(2372), + [anon_sym_concept] = ACTIONS(2372), + [anon_sym_co_return] = ACTIONS(2372), + [anon_sym_co_yield] = ACTIONS(2372), + [anon_sym_catch] = ACTIONS(2393), + [anon_sym_R_DQUOTE] = ACTIONS(2374), + [anon_sym_LR_DQUOTE] = ACTIONS(2374), + [anon_sym_uR_DQUOTE] = ACTIONS(2374), + [anon_sym_UR_DQUOTE] = ACTIONS(2374), + [anon_sym_u8R_DQUOTE] = ACTIONS(2374), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_requires] = ACTIONS(2372), + [sym_this] = ACTIONS(2372), + [sym_nullptr] = ACTIONS(2372), + }, + [397] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [398] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [399] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [400] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [401] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [402] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [403] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [404] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [405] = { + [sym_catch_clause] = STATE(342), + [aux_sym_constructor_try_statement_repeat1] = STATE(342), + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2368), + [aux_sym_preproc_include_token1] = ACTIONS(2368), + [aux_sym_preproc_def_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), + [sym_preproc_directive] = ACTIONS(2368), + [anon_sym_LPAREN2] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_typedef] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym___attribute__] = ACTIONS(2368), + [anon_sym_COLON_COLON] = ACTIONS(2370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2370), + [anon_sym___declspec] = ACTIONS(2368), + [anon_sym___based] = ACTIONS(2368), + [anon_sym___cdecl] = ACTIONS(2368), + [anon_sym___clrcall] = ACTIONS(2368), + [anon_sym___stdcall] = ACTIONS(2368), + [anon_sym___fastcall] = ACTIONS(2368), + [anon_sym___thiscall] = ACTIONS(2368), + [anon_sym___vectorcall] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_inline] = ACTIONS(2368), + [anon_sym_thread_local] = ACTIONS(2368), + [anon_sym_input] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_volatile] = ACTIONS(2368), + [anon_sym_restrict] = ACTIONS(2368), + [anon_sym__Atomic] = ACTIONS(2368), + [anon_sym_mutable] = ACTIONS(2368), + [anon_sym_constexpr] = ACTIONS(2368), + [anon_sym_constinit] = ACTIONS(2368), + [anon_sym_consteval] = ACTIONS(2368), + [anon_sym_signed] = ACTIONS(2368), + [anon_sym_unsigned] = ACTIONS(2368), + [anon_sym_long] = ACTIONS(2368), + [anon_sym_short] = ACTIONS(2368), + [sym_primitive_type] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym_not] = ACTIONS(2368), + [anon_sym_compl] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_sizeof] = ACTIONS(2368), + [sym_number_literal] = ACTIONS(2370), + [anon_sym_L_SQUOTE] = ACTIONS(2370), + [anon_sym_u_SQUOTE] = ACTIONS(2370), + [anon_sym_U_SQUOTE] = ACTIONS(2370), + [anon_sym_u8_SQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_L_DQUOTE] = ACTIONS(2370), + [anon_sym_u_DQUOTE] = ACTIONS(2370), + [anon_sym_U_DQUOTE] = ACTIONS(2370), + [anon_sym_u8_DQUOTE] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2368), + [anon_sym_decltype] = ACTIONS(2368), + [anon_sym_virtual] = ACTIONS(2368), + [anon_sym_explicit] = ACTIONS(2368), + [anon_sym_typename] = ACTIONS(2368), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_operator] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_static_assert] = ACTIONS(2368), + [anon_sym_concept] = ACTIONS(2368), + [anon_sym_co_return] = ACTIONS(2368), + [anon_sym_co_yield] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2393), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_requires] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_nullptr] = ACTIONS(2368), + }, + [406] = { [sym_identifier] = ACTIONS(2499), [aux_sym_preproc_include_token1] = ACTIONS(2499), [aux_sym_preproc_def_token1] = ACTIONS(2499), @@ -82523,6 +84151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2499), [anon_sym_inline] = ACTIONS(2499), [anon_sym_thread_local] = ACTIONS(2499), + [anon_sym_input] = ACTIONS(2499), [anon_sym_const] = ACTIONS(2499), [anon_sym_volatile] = ACTIONS(2499), [anon_sym_restrict] = ACTIONS(2499), @@ -82599,7 +84228,587 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2499), [sym_nullptr] = ACTIONS(2499), }, - [395] = { + [407] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [408] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [409] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [410] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [411] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [412] = { [sym_identifier] = ACTIONS(2503), [aux_sym_preproc_include_token1] = ACTIONS(2503), [aux_sym_preproc_def_token1] = ACTIONS(2503), @@ -82638,6 +84847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2503), [anon_sym_inline] = ACTIONS(2503), [anon_sym_thread_local] = ACTIONS(2503), + [anon_sym_input] = ACTIONS(2503), [anon_sym_const] = ACTIONS(2503), [anon_sym_volatile] = ACTIONS(2503), [anon_sym_restrict] = ACTIONS(2503), @@ -82714,7 +84924,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2503), [sym_nullptr] = ACTIONS(2503), }, - [396] = { + [413] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [414] = { [sym_identifier] = ACTIONS(2507), [aux_sym_preproc_include_token1] = ACTIONS(2507), [aux_sym_preproc_def_token1] = ACTIONS(2507), @@ -82753,6 +85079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2507), [anon_sym_inline] = ACTIONS(2507), [anon_sym_thread_local] = ACTIONS(2507), + [anon_sym_input] = ACTIONS(2507), [anon_sym_const] = ACTIONS(2507), [anon_sym_volatile] = ACTIONS(2507), [anon_sym_restrict] = ACTIONS(2507), @@ -82829,2420 +85156,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2507), [sym_nullptr] = ACTIONS(2507), }, - [397] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [398] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [399] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [400] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [401] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3592), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5635), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(5970), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2515), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [402] = { - [sym_catch_clause] = STATE(337), - [aux_sym_constructor_try_statement_repeat1] = STATE(337), - [sym_identifier] = ACTIONS(2372), - [aux_sym_preproc_include_token1] = ACTIONS(2372), - [aux_sym_preproc_def_token1] = ACTIONS(2372), - [aux_sym_preproc_if_token1] = ACTIONS(2372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2372), - [sym_preproc_directive] = ACTIONS(2372), - [anon_sym_LPAREN2] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_PLUS] = ACTIONS(2372), - [anon_sym_STAR] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_typedef] = ACTIONS(2372), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym___attribute__] = ACTIONS(2372), - [anon_sym_COLON_COLON] = ACTIONS(2374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2374), - [anon_sym___declspec] = ACTIONS(2372), - [anon_sym___based] = ACTIONS(2372), - [anon_sym___cdecl] = ACTIONS(2372), - [anon_sym___clrcall] = ACTIONS(2372), - [anon_sym___stdcall] = ACTIONS(2372), - [anon_sym___fastcall] = ACTIONS(2372), - [anon_sym___thiscall] = ACTIONS(2372), - [anon_sym___vectorcall] = ACTIONS(2372), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2372), - [anon_sym_static] = ACTIONS(2372), - [anon_sym_register] = ACTIONS(2372), - [anon_sym_inline] = ACTIONS(2372), - [anon_sym_thread_local] = ACTIONS(2372), - [anon_sym_const] = ACTIONS(2372), - [anon_sym_volatile] = ACTIONS(2372), - [anon_sym_restrict] = ACTIONS(2372), - [anon_sym__Atomic] = ACTIONS(2372), - [anon_sym_mutable] = ACTIONS(2372), - [anon_sym_constexpr] = ACTIONS(2372), - [anon_sym_constinit] = ACTIONS(2372), - [anon_sym_consteval] = ACTIONS(2372), - [anon_sym_signed] = ACTIONS(2372), - [anon_sym_unsigned] = ACTIONS(2372), - [anon_sym_long] = ACTIONS(2372), - [anon_sym_short] = ACTIONS(2372), - [sym_primitive_type] = ACTIONS(2372), - [anon_sym_enum] = ACTIONS(2372), - [anon_sym_class] = ACTIONS(2372), - [anon_sym_struct] = ACTIONS(2372), - [anon_sym_union] = ACTIONS(2372), - [anon_sym_if] = ACTIONS(2372), - [anon_sym_switch] = ACTIONS(2372), - [anon_sym_case] = ACTIONS(2372), - [anon_sym_default] = ACTIONS(2372), - [anon_sym_while] = ACTIONS(2372), - [anon_sym_do] = ACTIONS(2372), - [anon_sym_for] = ACTIONS(2372), - [anon_sym_return] = ACTIONS(2372), - [anon_sym_break] = ACTIONS(2372), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2372), - [anon_sym_not] = ACTIONS(2372), - [anon_sym_compl] = ACTIONS(2372), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_sizeof] = ACTIONS(2372), - [sym_number_literal] = ACTIONS(2374), - [anon_sym_L_SQUOTE] = ACTIONS(2374), - [anon_sym_u_SQUOTE] = ACTIONS(2374), - [anon_sym_U_SQUOTE] = ACTIONS(2374), - [anon_sym_u8_SQUOTE] = ACTIONS(2374), - [anon_sym_SQUOTE] = ACTIONS(2374), - [anon_sym_L_DQUOTE] = ACTIONS(2374), - [anon_sym_u_DQUOTE] = ACTIONS(2374), - [anon_sym_U_DQUOTE] = ACTIONS(2374), - [anon_sym_u8_DQUOTE] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2374), - [sym_true] = ACTIONS(2372), - [sym_false] = ACTIONS(2372), - [sym_null] = ACTIONS(2372), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2372), - [anon_sym_decltype] = ACTIONS(2372), - [anon_sym_virtual] = ACTIONS(2372), - [anon_sym_explicit] = ACTIONS(2372), - [anon_sym_typename] = ACTIONS(2372), - [anon_sym_template] = ACTIONS(2372), - [anon_sym_operator] = ACTIONS(2372), - [anon_sym_try] = ACTIONS(2372), - [anon_sym_delete] = ACTIONS(2372), - [anon_sym_throw] = ACTIONS(2372), - [anon_sym_namespace] = ACTIONS(2372), - [anon_sym_using] = ACTIONS(2372), - [anon_sym_static_assert] = ACTIONS(2372), - [anon_sym_concept] = ACTIONS(2372), - [anon_sym_co_return] = ACTIONS(2372), - [anon_sym_co_yield] = ACTIONS(2372), - [anon_sym_catch] = ACTIONS(2388), - [anon_sym_R_DQUOTE] = ACTIONS(2374), - [anon_sym_LR_DQUOTE] = ACTIONS(2374), - [anon_sym_uR_DQUOTE] = ACTIONS(2374), - [anon_sym_UR_DQUOTE] = ACTIONS(2374), - [anon_sym_u8R_DQUOTE] = ACTIONS(2374), - [anon_sym_co_await] = ACTIONS(2372), - [anon_sym_new] = ACTIONS(2372), - [anon_sym_requires] = ACTIONS(2372), - [sym_this] = ACTIONS(2372), - [sym_nullptr] = ACTIONS(2372), - }, - [403] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [404] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3594), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5614), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(5992), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2517), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [405] = { - [sym_identifier] = ACTIONS(2519), - [aux_sym_preproc_include_token1] = ACTIONS(2519), - [aux_sym_preproc_def_token1] = ACTIONS(2519), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_if_token2] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2519), - [aux_sym_preproc_else_token1] = ACTIONS(2519), - [aux_sym_preproc_elif_token1] = ACTIONS(2519), - [sym_preproc_directive] = ACTIONS(2519), - [anon_sym_LPAREN2] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2521), - [anon_sym_AMP_AMP] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_typedef] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2519), - [anon_sym___attribute__] = ACTIONS(2519), - [anon_sym_COLON_COLON] = ACTIONS(2521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), - [anon_sym___declspec] = ACTIONS(2519), - [anon_sym___based] = ACTIONS(2519), - [anon_sym___cdecl] = ACTIONS(2519), - [anon_sym___clrcall] = ACTIONS(2519), - [anon_sym___stdcall] = ACTIONS(2519), - [anon_sym___fastcall] = ACTIONS(2519), - [anon_sym___thiscall] = ACTIONS(2519), - [anon_sym___vectorcall] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_register] = ACTIONS(2519), - [anon_sym_inline] = ACTIONS(2519), - [anon_sym_thread_local] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_volatile] = ACTIONS(2519), - [anon_sym_restrict] = ACTIONS(2519), - [anon_sym__Atomic] = ACTIONS(2519), - [anon_sym_mutable] = ACTIONS(2519), - [anon_sym_constexpr] = ACTIONS(2519), - [anon_sym_constinit] = ACTIONS(2519), - [anon_sym_consteval] = ACTIONS(2519), - [anon_sym_signed] = ACTIONS(2519), - [anon_sym_unsigned] = ACTIONS(2519), - [anon_sym_long] = ACTIONS(2519), - [anon_sym_short] = ACTIONS(2519), - [sym_primitive_type] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_class] = ACTIONS(2519), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_else] = ACTIONS(2519), - [anon_sym_switch] = ACTIONS(2519), - [anon_sym_case] = ACTIONS(2519), - [anon_sym_default] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_do] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_goto] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2519), - [anon_sym_compl] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2521), - [anon_sym_PLUS_PLUS] = ACTIONS(2521), - [anon_sym_sizeof] = ACTIONS(2519), - [sym_number_literal] = ACTIONS(2521), - [anon_sym_L_SQUOTE] = ACTIONS(2521), - [anon_sym_u_SQUOTE] = ACTIONS(2521), - [anon_sym_U_SQUOTE] = ACTIONS(2521), - [anon_sym_u8_SQUOTE] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2521), - [anon_sym_L_DQUOTE] = ACTIONS(2521), - [anon_sym_u_DQUOTE] = ACTIONS(2521), - [anon_sym_U_DQUOTE] = ACTIONS(2521), - [anon_sym_u8_DQUOTE] = ACTIONS(2521), - [anon_sym_DQUOTE] = ACTIONS(2521), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [sym_null] = ACTIONS(2519), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2519), - [anon_sym_decltype] = ACTIONS(2519), - [anon_sym_virtual] = ACTIONS(2519), - [anon_sym_explicit] = ACTIONS(2519), - [anon_sym_typename] = ACTIONS(2519), - [anon_sym_template] = ACTIONS(2519), - [anon_sym_operator] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_throw] = ACTIONS(2519), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_using] = ACTIONS(2519), - [anon_sym_static_assert] = ACTIONS(2519), - [anon_sym_concept] = ACTIONS(2519), - [anon_sym_co_return] = ACTIONS(2519), - [anon_sym_co_yield] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2519), - [anon_sym_new] = ACTIONS(2519), - [anon_sym_requires] = ACTIONS(2519), - [sym_this] = ACTIONS(2519), - [sym_nullptr] = ACTIONS(2519), - }, - [406] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3596), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5566), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(6023), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2523), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [407] = { - [sym_identifier] = ACTIONS(2525), - [aux_sym_preproc_include_token1] = ACTIONS(2525), - [aux_sym_preproc_def_token1] = ACTIONS(2525), - [aux_sym_preproc_if_token1] = ACTIONS(2525), - [aux_sym_preproc_if_token2] = ACTIONS(2525), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2525), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2525), - [aux_sym_preproc_else_token1] = ACTIONS(2525), - [aux_sym_preproc_elif_token1] = ACTIONS(2525), - [sym_preproc_directive] = ACTIONS(2525), - [anon_sym_LPAREN2] = ACTIONS(2527), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_TILDE] = ACTIONS(2527), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_STAR] = ACTIONS(2527), - [anon_sym_AMP_AMP] = ACTIONS(2527), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_typedef] = ACTIONS(2525), - [anon_sym_extern] = ACTIONS(2525), - [anon_sym___attribute__] = ACTIONS(2525), - [anon_sym_COLON_COLON] = ACTIONS(2527), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2527), - [anon_sym___declspec] = ACTIONS(2525), - [anon_sym___based] = ACTIONS(2525), - [anon_sym___cdecl] = ACTIONS(2525), - [anon_sym___clrcall] = ACTIONS(2525), - [anon_sym___stdcall] = ACTIONS(2525), - [anon_sym___fastcall] = ACTIONS(2525), - [anon_sym___thiscall] = ACTIONS(2525), - [anon_sym___vectorcall] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_register] = ACTIONS(2525), - [anon_sym_inline] = ACTIONS(2525), - [anon_sym_thread_local] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_volatile] = ACTIONS(2525), - [anon_sym_restrict] = ACTIONS(2525), - [anon_sym__Atomic] = ACTIONS(2525), - [anon_sym_mutable] = ACTIONS(2525), - [anon_sym_constexpr] = ACTIONS(2525), - [anon_sym_constinit] = ACTIONS(2525), - [anon_sym_consteval] = ACTIONS(2525), - [anon_sym_signed] = ACTIONS(2525), - [anon_sym_unsigned] = ACTIONS(2525), - [anon_sym_long] = ACTIONS(2525), - [anon_sym_short] = ACTIONS(2525), - [sym_primitive_type] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_struct] = ACTIONS(2525), - [anon_sym_union] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_else] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_goto] = ACTIONS(2525), - [anon_sym_not] = ACTIONS(2525), - [anon_sym_compl] = ACTIONS(2525), - [anon_sym_DASH_DASH] = ACTIONS(2527), - [anon_sym_PLUS_PLUS] = ACTIONS(2527), - [anon_sym_sizeof] = ACTIONS(2525), - [sym_number_literal] = ACTIONS(2527), - [anon_sym_L_SQUOTE] = ACTIONS(2527), - [anon_sym_u_SQUOTE] = ACTIONS(2527), - [anon_sym_U_SQUOTE] = ACTIONS(2527), - [anon_sym_u8_SQUOTE] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2527), - [anon_sym_L_DQUOTE] = ACTIONS(2527), - [anon_sym_u_DQUOTE] = ACTIONS(2527), - [anon_sym_U_DQUOTE] = ACTIONS(2527), - [anon_sym_u8_DQUOTE] = ACTIONS(2527), - [anon_sym_DQUOTE] = ACTIONS(2527), - [sym_true] = ACTIONS(2525), - [sym_false] = ACTIONS(2525), - [sym_null] = ACTIONS(2525), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2525), - [anon_sym_decltype] = ACTIONS(2525), - [anon_sym_virtual] = ACTIONS(2525), - [anon_sym_explicit] = ACTIONS(2525), - [anon_sym_typename] = ACTIONS(2525), - [anon_sym_template] = ACTIONS(2525), - [anon_sym_operator] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_delete] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_namespace] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(2525), - [anon_sym_static_assert] = ACTIONS(2525), - [anon_sym_concept] = ACTIONS(2525), - [anon_sym_co_return] = ACTIONS(2525), - [anon_sym_co_yield] = ACTIONS(2525), - [anon_sym_R_DQUOTE] = ACTIONS(2527), - [anon_sym_LR_DQUOTE] = ACTIONS(2527), - [anon_sym_uR_DQUOTE] = ACTIONS(2527), - [anon_sym_UR_DQUOTE] = ACTIONS(2527), - [anon_sym_u8R_DQUOTE] = ACTIONS(2527), - [anon_sym_co_await] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2525), - [sym_this] = ACTIONS(2525), - [sym_nullptr] = ACTIONS(2525), - }, - [408] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3586), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5525), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(6057), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2529), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [409] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3621), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5588), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(5982), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2531), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [410] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [411] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3598), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5767), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(6104), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2533), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [412] = { - [sym_identifier] = ACTIONS(2535), - [aux_sym_preproc_include_token1] = ACTIONS(2535), - [aux_sym_preproc_def_token1] = ACTIONS(2535), - [aux_sym_preproc_if_token1] = ACTIONS(2535), - [aux_sym_preproc_if_token2] = ACTIONS(2535), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2535), - [aux_sym_preproc_else_token1] = ACTIONS(2535), - [aux_sym_preproc_elif_token1] = ACTIONS(2535), - [sym_preproc_directive] = ACTIONS(2535), - [anon_sym_LPAREN2] = ACTIONS(2537), - [anon_sym_BANG] = ACTIONS(2537), - [anon_sym_TILDE] = ACTIONS(2537), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP_AMP] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_typedef] = ACTIONS(2535), - [anon_sym_extern] = ACTIONS(2535), - [anon_sym___attribute__] = ACTIONS(2535), - [anon_sym_COLON_COLON] = ACTIONS(2537), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), - [anon_sym___declspec] = ACTIONS(2535), - [anon_sym___based] = ACTIONS(2535), - [anon_sym___cdecl] = ACTIONS(2535), - [anon_sym___clrcall] = ACTIONS(2535), - [anon_sym___stdcall] = ACTIONS(2535), - [anon_sym___fastcall] = ACTIONS(2535), - [anon_sym___thiscall] = ACTIONS(2535), - [anon_sym___vectorcall] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2535), - [anon_sym_static] = ACTIONS(2535), - [anon_sym_register] = ACTIONS(2535), - [anon_sym_inline] = ACTIONS(2535), - [anon_sym_thread_local] = ACTIONS(2535), - [anon_sym_const] = ACTIONS(2535), - [anon_sym_volatile] = ACTIONS(2535), - [anon_sym_restrict] = ACTIONS(2535), - [anon_sym__Atomic] = ACTIONS(2535), - [anon_sym_mutable] = ACTIONS(2535), - [anon_sym_constexpr] = ACTIONS(2535), - [anon_sym_constinit] = ACTIONS(2535), - [anon_sym_consteval] = ACTIONS(2535), - [anon_sym_signed] = ACTIONS(2535), - [anon_sym_unsigned] = ACTIONS(2535), - [anon_sym_long] = ACTIONS(2535), - [anon_sym_short] = ACTIONS(2535), - [sym_primitive_type] = ACTIONS(2535), - [anon_sym_enum] = ACTIONS(2535), - [anon_sym_class] = ACTIONS(2535), - [anon_sym_struct] = ACTIONS(2535), - [anon_sym_union] = ACTIONS(2535), - [anon_sym_if] = ACTIONS(2535), - [anon_sym_else] = ACTIONS(2535), - [anon_sym_switch] = ACTIONS(2535), - [anon_sym_case] = ACTIONS(2535), - [anon_sym_default] = ACTIONS(2535), - [anon_sym_while] = ACTIONS(2535), - [anon_sym_do] = ACTIONS(2535), - [anon_sym_for] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2535), - [anon_sym_continue] = ACTIONS(2535), - [anon_sym_goto] = ACTIONS(2535), - [anon_sym_not] = ACTIONS(2535), - [anon_sym_compl] = ACTIONS(2535), - [anon_sym_DASH_DASH] = ACTIONS(2537), - [anon_sym_PLUS_PLUS] = ACTIONS(2537), - [anon_sym_sizeof] = ACTIONS(2535), - [sym_number_literal] = ACTIONS(2537), - [anon_sym_L_SQUOTE] = ACTIONS(2537), - [anon_sym_u_SQUOTE] = ACTIONS(2537), - [anon_sym_U_SQUOTE] = ACTIONS(2537), - [anon_sym_u8_SQUOTE] = ACTIONS(2537), - [anon_sym_SQUOTE] = ACTIONS(2537), - [anon_sym_L_DQUOTE] = ACTIONS(2537), - [anon_sym_u_DQUOTE] = ACTIONS(2537), - [anon_sym_U_DQUOTE] = ACTIONS(2537), - [anon_sym_u8_DQUOTE] = ACTIONS(2537), - [anon_sym_DQUOTE] = ACTIONS(2537), - [sym_true] = ACTIONS(2535), - [sym_false] = ACTIONS(2535), - [sym_null] = ACTIONS(2535), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2535), - [anon_sym_decltype] = ACTIONS(2535), - [anon_sym_virtual] = ACTIONS(2535), - [anon_sym_explicit] = ACTIONS(2535), - [anon_sym_typename] = ACTIONS(2535), - [anon_sym_template] = ACTIONS(2535), - [anon_sym_operator] = ACTIONS(2535), - [anon_sym_try] = ACTIONS(2535), - [anon_sym_delete] = ACTIONS(2535), - [anon_sym_throw] = ACTIONS(2535), - [anon_sym_namespace] = ACTIONS(2535), - [anon_sym_using] = ACTIONS(2535), - [anon_sym_static_assert] = ACTIONS(2535), - [anon_sym_concept] = ACTIONS(2535), - [anon_sym_co_return] = ACTIONS(2535), - [anon_sym_co_yield] = ACTIONS(2535), - [anon_sym_R_DQUOTE] = ACTIONS(2537), - [anon_sym_LR_DQUOTE] = ACTIONS(2537), - [anon_sym_uR_DQUOTE] = ACTIONS(2537), - [anon_sym_UR_DQUOTE] = ACTIONS(2537), - [anon_sym_u8R_DQUOTE] = ACTIONS(2537), - [anon_sym_co_await] = ACTIONS(2535), - [anon_sym_new] = ACTIONS(2535), - [anon_sym_requires] = ACTIONS(2535), - [sym_this] = ACTIONS(2535), - [sym_nullptr] = ACTIONS(2535), - }, - [413] = { - [sym_identifier] = ACTIONS(2539), - [aux_sym_preproc_include_token1] = ACTIONS(2539), - [aux_sym_preproc_def_token1] = ACTIONS(2539), - [aux_sym_preproc_if_token1] = ACTIONS(2539), - [aux_sym_preproc_if_token2] = ACTIONS(2539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2539), - [aux_sym_preproc_else_token1] = ACTIONS(2539), - [aux_sym_preproc_elif_token1] = ACTIONS(2539), - [sym_preproc_directive] = ACTIONS(2539), - [anon_sym_LPAREN2] = ACTIONS(2541), - [anon_sym_BANG] = ACTIONS(2541), - [anon_sym_TILDE] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_PLUS] = ACTIONS(2539), - [anon_sym_STAR] = ACTIONS(2541), - [anon_sym_AMP_AMP] = ACTIONS(2541), - [anon_sym_AMP] = ACTIONS(2539), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_typedef] = ACTIONS(2539), - [anon_sym_extern] = ACTIONS(2539), - [anon_sym___attribute__] = ACTIONS(2539), - [anon_sym_COLON_COLON] = ACTIONS(2541), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2541), - [anon_sym___declspec] = ACTIONS(2539), - [anon_sym___based] = ACTIONS(2539), - [anon_sym___cdecl] = ACTIONS(2539), - [anon_sym___clrcall] = ACTIONS(2539), - [anon_sym___stdcall] = ACTIONS(2539), - [anon_sym___fastcall] = ACTIONS(2539), - [anon_sym___thiscall] = ACTIONS(2539), - [anon_sym___vectorcall] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2539), - [anon_sym_static] = ACTIONS(2539), - [anon_sym_register] = ACTIONS(2539), - [anon_sym_inline] = ACTIONS(2539), - [anon_sym_thread_local] = ACTIONS(2539), - [anon_sym_const] = ACTIONS(2539), - [anon_sym_volatile] = ACTIONS(2539), - [anon_sym_restrict] = ACTIONS(2539), - [anon_sym__Atomic] = ACTIONS(2539), - [anon_sym_mutable] = ACTIONS(2539), - [anon_sym_constexpr] = ACTIONS(2539), - [anon_sym_constinit] = ACTIONS(2539), - [anon_sym_consteval] = ACTIONS(2539), - [anon_sym_signed] = ACTIONS(2539), - [anon_sym_unsigned] = ACTIONS(2539), - [anon_sym_long] = ACTIONS(2539), - [anon_sym_short] = ACTIONS(2539), - [sym_primitive_type] = ACTIONS(2539), - [anon_sym_enum] = ACTIONS(2539), - [anon_sym_class] = ACTIONS(2539), - [anon_sym_struct] = ACTIONS(2539), - [anon_sym_union] = ACTIONS(2539), - [anon_sym_if] = ACTIONS(2539), - [anon_sym_else] = ACTIONS(2539), - [anon_sym_switch] = ACTIONS(2539), - [anon_sym_case] = ACTIONS(2539), - [anon_sym_default] = ACTIONS(2539), - [anon_sym_while] = ACTIONS(2539), - [anon_sym_do] = ACTIONS(2539), - [anon_sym_for] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2539), - [anon_sym_break] = ACTIONS(2539), - [anon_sym_continue] = ACTIONS(2539), - [anon_sym_goto] = ACTIONS(2539), - [anon_sym_not] = ACTIONS(2539), - [anon_sym_compl] = ACTIONS(2539), - [anon_sym_DASH_DASH] = ACTIONS(2541), - [anon_sym_PLUS_PLUS] = ACTIONS(2541), - [anon_sym_sizeof] = ACTIONS(2539), - [sym_number_literal] = ACTIONS(2541), - [anon_sym_L_SQUOTE] = ACTIONS(2541), - [anon_sym_u_SQUOTE] = ACTIONS(2541), - [anon_sym_U_SQUOTE] = ACTIONS(2541), - [anon_sym_u8_SQUOTE] = ACTIONS(2541), - [anon_sym_SQUOTE] = ACTIONS(2541), - [anon_sym_L_DQUOTE] = ACTIONS(2541), - [anon_sym_u_DQUOTE] = ACTIONS(2541), - [anon_sym_U_DQUOTE] = ACTIONS(2541), - [anon_sym_u8_DQUOTE] = ACTIONS(2541), - [anon_sym_DQUOTE] = ACTIONS(2541), - [sym_true] = ACTIONS(2539), - [sym_false] = ACTIONS(2539), - [sym_null] = ACTIONS(2539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2539), - [anon_sym_decltype] = ACTIONS(2539), - [anon_sym_virtual] = ACTIONS(2539), - [anon_sym_explicit] = ACTIONS(2539), - [anon_sym_typename] = ACTIONS(2539), - [anon_sym_template] = ACTIONS(2539), - [anon_sym_operator] = ACTIONS(2539), - [anon_sym_try] = ACTIONS(2539), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_throw] = ACTIONS(2539), - [anon_sym_namespace] = ACTIONS(2539), - [anon_sym_using] = ACTIONS(2539), - [anon_sym_static_assert] = ACTIONS(2539), - [anon_sym_concept] = ACTIONS(2539), - [anon_sym_co_return] = ACTIONS(2539), - [anon_sym_co_yield] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2541), - [anon_sym_LR_DQUOTE] = ACTIONS(2541), - [anon_sym_uR_DQUOTE] = ACTIONS(2541), - [anon_sym_UR_DQUOTE] = ACTIONS(2541), - [anon_sym_u8R_DQUOTE] = ACTIONS(2541), - [anon_sym_co_await] = ACTIONS(2539), - [anon_sym_new] = ACTIONS(2539), - [anon_sym_requires] = ACTIONS(2539), - [sym_this] = ACTIONS(2539), - [sym_nullptr] = ACTIONS(2539), - }, - [414] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3601), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5637), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(5963), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, [415] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, [416] = { - [sym_catch_clause] = STATE(337), - [aux_sym_constructor_try_statement_repeat1] = STATE(337), - [sym_identifier] = ACTIONS(2368), - [aux_sym_preproc_include_token1] = ACTIONS(2368), - [aux_sym_preproc_def_token1] = ACTIONS(2368), - [aux_sym_preproc_if_token1] = ACTIONS(2368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), - [sym_preproc_directive] = ACTIONS(2368), - [anon_sym_LPAREN2] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_TILDE] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_PLUS] = ACTIONS(2368), - [anon_sym_STAR] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_typedef] = ACTIONS(2368), - [anon_sym_extern] = ACTIONS(2368), - [anon_sym___attribute__] = ACTIONS(2368), - [anon_sym_COLON_COLON] = ACTIONS(2370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2370), - [anon_sym___declspec] = ACTIONS(2368), - [anon_sym___based] = ACTIONS(2368), - [anon_sym___cdecl] = ACTIONS(2368), - [anon_sym___clrcall] = ACTIONS(2368), - [anon_sym___stdcall] = ACTIONS(2368), - [anon_sym___fastcall] = ACTIONS(2368), - [anon_sym___thiscall] = ACTIONS(2368), - [anon_sym___vectorcall] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_RBRACE] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2368), - [anon_sym_static] = ACTIONS(2368), - [anon_sym_register] = ACTIONS(2368), - [anon_sym_inline] = ACTIONS(2368), - [anon_sym_thread_local] = ACTIONS(2368), - [anon_sym_const] = ACTIONS(2368), - [anon_sym_volatile] = ACTIONS(2368), - [anon_sym_restrict] = ACTIONS(2368), - [anon_sym__Atomic] = ACTIONS(2368), - [anon_sym_mutable] = ACTIONS(2368), - [anon_sym_constexpr] = ACTIONS(2368), - [anon_sym_constinit] = ACTIONS(2368), - [anon_sym_consteval] = ACTIONS(2368), - [anon_sym_signed] = ACTIONS(2368), - [anon_sym_unsigned] = ACTIONS(2368), - [anon_sym_long] = ACTIONS(2368), - [anon_sym_short] = ACTIONS(2368), - [sym_primitive_type] = ACTIONS(2368), - [anon_sym_enum] = ACTIONS(2368), - [anon_sym_class] = ACTIONS(2368), - [anon_sym_struct] = ACTIONS(2368), - [anon_sym_union] = ACTIONS(2368), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_switch] = ACTIONS(2368), - [anon_sym_case] = ACTIONS(2368), - [anon_sym_default] = ACTIONS(2368), - [anon_sym_while] = ACTIONS(2368), - [anon_sym_do] = ACTIONS(2368), - [anon_sym_for] = ACTIONS(2368), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_goto] = ACTIONS(2368), - [anon_sym_not] = ACTIONS(2368), - [anon_sym_compl] = ACTIONS(2368), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_sizeof] = ACTIONS(2368), - [sym_number_literal] = ACTIONS(2370), - [anon_sym_L_SQUOTE] = ACTIONS(2370), - [anon_sym_u_SQUOTE] = ACTIONS(2370), - [anon_sym_U_SQUOTE] = ACTIONS(2370), - [anon_sym_u8_SQUOTE] = ACTIONS(2370), - [anon_sym_SQUOTE] = ACTIONS(2370), - [anon_sym_L_DQUOTE] = ACTIONS(2370), - [anon_sym_u_DQUOTE] = ACTIONS(2370), - [anon_sym_U_DQUOTE] = ACTIONS(2370), - [anon_sym_u8_DQUOTE] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [sym_true] = ACTIONS(2368), - [sym_false] = ACTIONS(2368), - [sym_null] = ACTIONS(2368), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2368), - [anon_sym_decltype] = ACTIONS(2368), - [anon_sym_virtual] = ACTIONS(2368), - [anon_sym_explicit] = ACTIONS(2368), - [anon_sym_typename] = ACTIONS(2368), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_operator] = ACTIONS(2368), - [anon_sym_try] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2368), - [anon_sym_throw] = ACTIONS(2368), - [anon_sym_namespace] = ACTIONS(2368), - [anon_sym_using] = ACTIONS(2368), - [anon_sym_static_assert] = ACTIONS(2368), - [anon_sym_concept] = ACTIONS(2368), - [anon_sym_co_return] = ACTIONS(2368), - [anon_sym_co_yield] = ACTIONS(2368), - [anon_sym_catch] = ACTIONS(2388), - [anon_sym_R_DQUOTE] = ACTIONS(2370), - [anon_sym_LR_DQUOTE] = ACTIONS(2370), - [anon_sym_uR_DQUOTE] = ACTIONS(2370), - [anon_sym_UR_DQUOTE] = ACTIONS(2370), - [anon_sym_u8R_DQUOTE] = ACTIONS(2370), - [anon_sym_co_await] = ACTIONS(2368), - [anon_sym_new] = ACTIONS(2368), - [anon_sym_requires] = ACTIONS(2368), - [sym_this] = ACTIONS(2368), - [sym_nullptr] = ACTIONS(2368), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, [417] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, [418] = { [sym_identifier] = ACTIONS(2511), @@ -85283,6 +85543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2511), [anon_sym_inline] = ACTIONS(2511), [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_input] = ACTIONS(2511), [anon_sym_const] = ACTIONS(2511), [anon_sym_volatile] = ACTIONS(2511), [anon_sym_restrict] = ACTIONS(2511), @@ -85360,23821 +85621,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2511), }, [419] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2515), + [aux_sym_preproc_include_token1] = ACTIONS(2515), + [aux_sym_preproc_def_token1] = ACTIONS(2515), + [aux_sym_preproc_if_token1] = ACTIONS(2515), + [aux_sym_preproc_if_token2] = ACTIONS(2515), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2515), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2515), + [aux_sym_preproc_else_token1] = ACTIONS(2515), + [aux_sym_preproc_elif_token1] = ACTIONS(2515), + [sym_preproc_directive] = ACTIONS(2515), + [anon_sym_LPAREN2] = ACTIONS(2517), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_TILDE] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2515), + [anon_sym_PLUS] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2517), + [anon_sym_typedef] = ACTIONS(2515), + [anon_sym_extern] = ACTIONS(2515), + [anon_sym___attribute__] = ACTIONS(2515), + [anon_sym_COLON_COLON] = ACTIONS(2517), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2517), + [anon_sym___declspec] = ACTIONS(2515), + [anon_sym___based] = ACTIONS(2515), + [anon_sym___cdecl] = ACTIONS(2515), + [anon_sym___clrcall] = ACTIONS(2515), + [anon_sym___stdcall] = ACTIONS(2515), + [anon_sym___fastcall] = ACTIONS(2515), + [anon_sym___thiscall] = ACTIONS(2515), + [anon_sym___vectorcall] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_static] = ACTIONS(2515), + [anon_sym_register] = ACTIONS(2515), + [anon_sym_inline] = ACTIONS(2515), + [anon_sym_thread_local] = ACTIONS(2515), + [anon_sym_input] = ACTIONS(2515), + [anon_sym_const] = ACTIONS(2515), + [anon_sym_volatile] = ACTIONS(2515), + [anon_sym_restrict] = ACTIONS(2515), + [anon_sym__Atomic] = ACTIONS(2515), + [anon_sym_mutable] = ACTIONS(2515), + [anon_sym_constexpr] = ACTIONS(2515), + [anon_sym_constinit] = ACTIONS(2515), + [anon_sym_consteval] = ACTIONS(2515), + [anon_sym_signed] = ACTIONS(2515), + [anon_sym_unsigned] = ACTIONS(2515), + [anon_sym_long] = ACTIONS(2515), + [anon_sym_short] = ACTIONS(2515), + [sym_primitive_type] = ACTIONS(2515), + [anon_sym_enum] = ACTIONS(2515), + [anon_sym_class] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(2515), + [anon_sym_union] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2515), + [anon_sym_else] = ACTIONS(2515), + [anon_sym_switch] = ACTIONS(2515), + [anon_sym_case] = ACTIONS(2515), + [anon_sym_default] = ACTIONS(2515), + [anon_sym_while] = ACTIONS(2515), + [anon_sym_do] = ACTIONS(2515), + [anon_sym_for] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2515), + [anon_sym_break] = ACTIONS(2515), + [anon_sym_continue] = ACTIONS(2515), + [anon_sym_goto] = ACTIONS(2515), + [anon_sym_not] = ACTIONS(2515), + [anon_sym_compl] = ACTIONS(2515), + [anon_sym_DASH_DASH] = ACTIONS(2517), + [anon_sym_PLUS_PLUS] = ACTIONS(2517), + [anon_sym_sizeof] = ACTIONS(2515), + [sym_number_literal] = ACTIONS(2517), + [anon_sym_L_SQUOTE] = ACTIONS(2517), + [anon_sym_u_SQUOTE] = ACTIONS(2517), + [anon_sym_U_SQUOTE] = ACTIONS(2517), + [anon_sym_u8_SQUOTE] = ACTIONS(2517), + [anon_sym_SQUOTE] = ACTIONS(2517), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_null] = ACTIONS(2515), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2515), + [anon_sym_decltype] = ACTIONS(2515), + [anon_sym_virtual] = ACTIONS(2515), + [anon_sym_explicit] = ACTIONS(2515), + [anon_sym_typename] = ACTIONS(2515), + [anon_sym_template] = ACTIONS(2515), + [anon_sym_operator] = ACTIONS(2515), + [anon_sym_try] = ACTIONS(2515), + [anon_sym_delete] = ACTIONS(2515), + [anon_sym_throw] = ACTIONS(2515), + [anon_sym_namespace] = ACTIONS(2515), + [anon_sym_using] = ACTIONS(2515), + [anon_sym_static_assert] = ACTIONS(2515), + [anon_sym_concept] = ACTIONS(2515), + [anon_sym_co_return] = ACTIONS(2515), + [anon_sym_co_yield] = ACTIONS(2515), + [anon_sym_R_DQUOTE] = ACTIONS(2517), + [anon_sym_LR_DQUOTE] = ACTIONS(2517), + [anon_sym_uR_DQUOTE] = ACTIONS(2517), + [anon_sym_UR_DQUOTE] = ACTIONS(2517), + [anon_sym_u8R_DQUOTE] = ACTIONS(2517), + [anon_sym_co_await] = ACTIONS(2515), + [anon_sym_new] = ACTIONS(2515), + [anon_sym_requires] = ACTIONS(2515), + [sym_this] = ACTIONS(2515), + [sym_nullptr] = ACTIONS(2515), }, [420] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3606), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5645), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(6064), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2545), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [421] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [422] = { - [sym_catch_clause] = STATE(338), - [aux_sym_constructor_try_statement_repeat1] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2374), - [sym_identifier] = ACTIONS(2372), - [aux_sym_preproc_include_token1] = ACTIONS(2372), - [aux_sym_preproc_def_token1] = ACTIONS(2372), - [aux_sym_preproc_if_token1] = ACTIONS(2372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2372), - [sym_preproc_directive] = ACTIONS(2372), - [anon_sym_LPAREN2] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_PLUS] = ACTIONS(2372), - [anon_sym_STAR] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_typedef] = ACTIONS(2372), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym___attribute__] = ACTIONS(2372), - [anon_sym_COLON_COLON] = ACTIONS(2374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2374), - [anon_sym___declspec] = ACTIONS(2372), - [anon_sym___based] = ACTIONS(2372), - [anon_sym___cdecl] = ACTIONS(2372), - [anon_sym___clrcall] = ACTIONS(2372), - [anon_sym___stdcall] = ACTIONS(2372), - [anon_sym___fastcall] = ACTIONS(2372), - [anon_sym___thiscall] = ACTIONS(2372), - [anon_sym___vectorcall] = ACTIONS(2372), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2372), - [anon_sym_static] = ACTIONS(2372), - [anon_sym_register] = ACTIONS(2372), - [anon_sym_inline] = ACTIONS(2372), - [anon_sym_thread_local] = ACTIONS(2372), - [anon_sym_const] = ACTIONS(2372), - [anon_sym_volatile] = ACTIONS(2372), - [anon_sym_restrict] = ACTIONS(2372), - [anon_sym__Atomic] = ACTIONS(2372), - [anon_sym_mutable] = ACTIONS(2372), - [anon_sym_constexpr] = ACTIONS(2372), - [anon_sym_constinit] = ACTIONS(2372), - [anon_sym_consteval] = ACTIONS(2372), - [anon_sym_signed] = ACTIONS(2372), - [anon_sym_unsigned] = ACTIONS(2372), - [anon_sym_long] = ACTIONS(2372), - [anon_sym_short] = ACTIONS(2372), - [sym_primitive_type] = ACTIONS(2372), - [anon_sym_enum] = ACTIONS(2372), - [anon_sym_class] = ACTIONS(2372), - [anon_sym_struct] = ACTIONS(2372), - [anon_sym_union] = ACTIONS(2372), - [anon_sym_if] = ACTIONS(2372), - [anon_sym_switch] = ACTIONS(2372), - [anon_sym_case] = ACTIONS(2372), - [anon_sym_default] = ACTIONS(2372), - [anon_sym_while] = ACTIONS(2372), - [anon_sym_do] = ACTIONS(2372), - [anon_sym_for] = ACTIONS(2372), - [anon_sym_return] = ACTIONS(2372), - [anon_sym_break] = ACTIONS(2372), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2372), - [anon_sym_not] = ACTIONS(2372), - [anon_sym_compl] = ACTIONS(2372), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_sizeof] = ACTIONS(2372), - [sym_number_literal] = ACTIONS(2374), - [anon_sym_L_SQUOTE] = ACTIONS(2374), - [anon_sym_u_SQUOTE] = ACTIONS(2374), - [anon_sym_U_SQUOTE] = ACTIONS(2374), - [anon_sym_u8_SQUOTE] = ACTIONS(2374), - [anon_sym_SQUOTE] = ACTIONS(2374), - [anon_sym_L_DQUOTE] = ACTIONS(2374), - [anon_sym_u_DQUOTE] = ACTIONS(2374), - [anon_sym_U_DQUOTE] = ACTIONS(2374), - [anon_sym_u8_DQUOTE] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2374), - [sym_true] = ACTIONS(2372), - [sym_false] = ACTIONS(2372), - [sym_null] = ACTIONS(2372), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2372), - [anon_sym_decltype] = ACTIONS(2372), - [anon_sym_virtual] = ACTIONS(2372), - [anon_sym_explicit] = ACTIONS(2372), - [anon_sym_typename] = ACTIONS(2372), - [anon_sym_template] = ACTIONS(2372), - [anon_sym_operator] = ACTIONS(2372), - [anon_sym_try] = ACTIONS(2372), - [anon_sym_delete] = ACTIONS(2372), - [anon_sym_throw] = ACTIONS(2372), - [anon_sym_namespace] = ACTIONS(2372), - [anon_sym_using] = ACTIONS(2372), - [anon_sym_static_assert] = ACTIONS(2372), - [anon_sym_concept] = ACTIONS(2372), - [anon_sym_co_return] = ACTIONS(2372), - [anon_sym_co_yield] = ACTIONS(2372), - [anon_sym_catch] = ACTIONS(2393), - [anon_sym_R_DQUOTE] = ACTIONS(2374), - [anon_sym_LR_DQUOTE] = ACTIONS(2374), - [anon_sym_uR_DQUOTE] = ACTIONS(2374), - [anon_sym_UR_DQUOTE] = ACTIONS(2374), - [anon_sym_u8R_DQUOTE] = ACTIONS(2374), - [anon_sym_co_await] = ACTIONS(2372), - [anon_sym_new] = ACTIONS(2372), - [anon_sym_requires] = ACTIONS(2372), - [sym_this] = ACTIONS(2372), - [sym_nullptr] = ACTIONS(2372), - }, - [423] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [424] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [425] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [426] = { - [sym_identifier] = ACTIONS(2337), - [aux_sym_preproc_include_token1] = ACTIONS(2337), - [aux_sym_preproc_def_token1] = ACTIONS(2337), - [anon_sym_COMMA] = ACTIONS(2547), - [aux_sym_preproc_if_token1] = ACTIONS(2337), - [aux_sym_preproc_if_token2] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), - [aux_sym_preproc_else_token1] = ACTIONS(2337), - [aux_sym_preproc_elif_token1] = ACTIONS(2337), - [sym_preproc_directive] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2335), - [anon_sym_AMP_AMP] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_typedef] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym___attribute__] = ACTIONS(2337), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), - [anon_sym___declspec] = ACTIONS(2337), - [anon_sym___based] = ACTIONS(2337), - [anon_sym___cdecl] = ACTIONS(2337), - [anon_sym___clrcall] = ACTIONS(2337), - [anon_sym___stdcall] = ACTIONS(2337), - [anon_sym___fastcall] = ACTIONS(2337), - [anon_sym___thiscall] = ACTIONS(2337), - [anon_sym___vectorcall] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_inline] = ACTIONS(2337), - [anon_sym_thread_local] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_volatile] = ACTIONS(2337), - [anon_sym_restrict] = ACTIONS(2337), - [anon_sym__Atomic] = ACTIONS(2337), - [anon_sym_mutable] = ACTIONS(2337), - [anon_sym_constexpr] = ACTIONS(2337), - [anon_sym_constinit] = ACTIONS(2337), - [anon_sym_consteval] = ACTIONS(2337), - [anon_sym_signed] = ACTIONS(2337), - [anon_sym_unsigned] = ACTIONS(2337), - [anon_sym_long] = ACTIONS(2337), - [anon_sym_short] = ACTIONS(2337), - [sym_primitive_type] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2337), - [anon_sym_union] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_case] = ACTIONS(2337), - [anon_sym_default] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_goto] = ACTIONS(2337), - [anon_sym_not] = ACTIONS(2337), - [anon_sym_compl] = ACTIONS(2337), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_sizeof] = ACTIONS(2337), - [sym_number_literal] = ACTIONS(2335), - [anon_sym_L_SQUOTE] = ACTIONS(2335), - [anon_sym_u_SQUOTE] = ACTIONS(2335), - [anon_sym_U_SQUOTE] = ACTIONS(2335), - [anon_sym_u8_SQUOTE] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_L_DQUOTE] = ACTIONS(2335), - [anon_sym_u_DQUOTE] = ACTIONS(2335), - [anon_sym_U_DQUOTE] = ACTIONS(2335), - [anon_sym_u8_DQUOTE] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_true] = ACTIONS(2337), - [sym_false] = ACTIONS(2337), - [sym_null] = ACTIONS(2337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2337), - [anon_sym_decltype] = ACTIONS(2337), - [anon_sym_virtual] = ACTIONS(2337), - [anon_sym_explicit] = ACTIONS(2337), - [anon_sym_typename] = ACTIONS(2337), - [anon_sym_template] = ACTIONS(2337), - [anon_sym_operator] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_delete] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_using] = ACTIONS(2337), - [anon_sym_static_assert] = ACTIONS(2337), - [anon_sym_concept] = ACTIONS(2337), - [anon_sym_co_return] = ACTIONS(2337), - [anon_sym_co_yield] = ACTIONS(2337), - [anon_sym_R_DQUOTE] = ACTIONS(2335), - [anon_sym_LR_DQUOTE] = ACTIONS(2335), - [anon_sym_uR_DQUOTE] = ACTIONS(2335), - [anon_sym_UR_DQUOTE] = ACTIONS(2335), - [anon_sym_u8R_DQUOTE] = ACTIONS(2335), - [anon_sym_co_await] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_requires] = ACTIONS(2337), - [sym_this] = ACTIONS(2337), - [sym_nullptr] = ACTIONS(2337), - }, - [427] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [428] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [429] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3612), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5643), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(5953), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2549), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [430] = { - [sym_identifier] = ACTIONS(2551), - [aux_sym_preproc_include_token1] = ACTIONS(2551), - [aux_sym_preproc_def_token1] = ACTIONS(2551), - [aux_sym_preproc_if_token1] = ACTIONS(2551), - [aux_sym_preproc_if_token2] = ACTIONS(2551), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2551), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2551), - [aux_sym_preproc_else_token1] = ACTIONS(2551), - [aux_sym_preproc_elif_token1] = ACTIONS(2551), - [sym_preproc_directive] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2553), - [anon_sym_TILDE] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2551), - [anon_sym_PLUS] = ACTIONS(2551), - [anon_sym_STAR] = ACTIONS(2553), - [anon_sym_AMP_AMP] = ACTIONS(2553), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2553), - [anon_sym_typedef] = ACTIONS(2551), - [anon_sym_extern] = ACTIONS(2551), - [anon_sym___attribute__] = ACTIONS(2551), - [anon_sym_COLON_COLON] = ACTIONS(2553), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), - [anon_sym___declspec] = ACTIONS(2551), - [anon_sym___based] = ACTIONS(2551), - [anon_sym___cdecl] = ACTIONS(2551), - [anon_sym___clrcall] = ACTIONS(2551), - [anon_sym___stdcall] = ACTIONS(2551), - [anon_sym___fastcall] = ACTIONS(2551), - [anon_sym___thiscall] = ACTIONS(2551), - [anon_sym___vectorcall] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_static] = ACTIONS(2551), - [anon_sym_register] = ACTIONS(2551), - [anon_sym_inline] = ACTIONS(2551), - [anon_sym_thread_local] = ACTIONS(2551), - [anon_sym_const] = ACTIONS(2551), - [anon_sym_volatile] = ACTIONS(2551), - [anon_sym_restrict] = ACTIONS(2551), - [anon_sym__Atomic] = ACTIONS(2551), - [anon_sym_mutable] = ACTIONS(2551), - [anon_sym_constexpr] = ACTIONS(2551), - [anon_sym_constinit] = ACTIONS(2551), - [anon_sym_consteval] = ACTIONS(2551), - [anon_sym_signed] = ACTIONS(2551), - [anon_sym_unsigned] = ACTIONS(2551), - [anon_sym_long] = ACTIONS(2551), - [anon_sym_short] = ACTIONS(2551), - [sym_primitive_type] = ACTIONS(2551), - [anon_sym_enum] = ACTIONS(2551), - [anon_sym_class] = ACTIONS(2551), - [anon_sym_struct] = ACTIONS(2551), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_if] = ACTIONS(2551), - [anon_sym_else] = ACTIONS(2551), - [anon_sym_switch] = ACTIONS(2551), - [anon_sym_case] = ACTIONS(2551), - [anon_sym_default] = ACTIONS(2551), - [anon_sym_while] = ACTIONS(2551), - [anon_sym_do] = ACTIONS(2551), - [anon_sym_for] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2551), - [anon_sym_break] = ACTIONS(2551), - [anon_sym_continue] = ACTIONS(2551), - [anon_sym_goto] = ACTIONS(2551), - [anon_sym_not] = ACTIONS(2551), - [anon_sym_compl] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2551), - [sym_number_literal] = ACTIONS(2553), - [anon_sym_L_SQUOTE] = ACTIONS(2553), - [anon_sym_u_SQUOTE] = ACTIONS(2553), - [anon_sym_U_SQUOTE] = ACTIONS(2553), - [anon_sym_u8_SQUOTE] = ACTIONS(2553), - [anon_sym_SQUOTE] = ACTIONS(2553), - [anon_sym_L_DQUOTE] = ACTIONS(2553), - [anon_sym_u_DQUOTE] = ACTIONS(2553), - [anon_sym_U_DQUOTE] = ACTIONS(2553), - [anon_sym_u8_DQUOTE] = ACTIONS(2553), - [anon_sym_DQUOTE] = ACTIONS(2553), - [sym_true] = ACTIONS(2551), - [sym_false] = ACTIONS(2551), - [sym_null] = ACTIONS(2551), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2551), - [anon_sym_decltype] = ACTIONS(2551), - [anon_sym_virtual] = ACTIONS(2551), - [anon_sym_explicit] = ACTIONS(2551), - [anon_sym_typename] = ACTIONS(2551), - [anon_sym_template] = ACTIONS(2551), - [anon_sym_operator] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2551), - [anon_sym_delete] = ACTIONS(2551), - [anon_sym_throw] = ACTIONS(2551), - [anon_sym_namespace] = ACTIONS(2551), - [anon_sym_using] = ACTIONS(2551), - [anon_sym_static_assert] = ACTIONS(2551), - [anon_sym_concept] = ACTIONS(2551), - [anon_sym_co_return] = ACTIONS(2551), - [anon_sym_co_yield] = ACTIONS(2551), - [anon_sym_R_DQUOTE] = ACTIONS(2553), - [anon_sym_LR_DQUOTE] = ACTIONS(2553), - [anon_sym_uR_DQUOTE] = ACTIONS(2553), - [anon_sym_UR_DQUOTE] = ACTIONS(2553), - [anon_sym_u8R_DQUOTE] = ACTIONS(2553), - [anon_sym_co_await] = ACTIONS(2551), - [anon_sym_new] = ACTIONS(2551), - [anon_sym_requires] = ACTIONS(2551), - [sym_this] = ACTIONS(2551), - [sym_nullptr] = ACTIONS(2551), - }, - [431] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [432] = { - [sym_identifier] = ACTIONS(2555), - [aux_sym_preproc_include_token1] = ACTIONS(2555), - [aux_sym_preproc_def_token1] = ACTIONS(2555), - [aux_sym_preproc_if_token1] = ACTIONS(2555), - [aux_sym_preproc_if_token2] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), - [aux_sym_preproc_else_token1] = ACTIONS(2555), - [aux_sym_preproc_elif_token1] = ACTIONS(2555), - [sym_preproc_directive] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2557), - [anon_sym_TILDE] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_AMP_AMP] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2557), - [anon_sym_typedef] = ACTIONS(2555), - [anon_sym_extern] = ACTIONS(2555), - [anon_sym___attribute__] = ACTIONS(2555), - [anon_sym_COLON_COLON] = ACTIONS(2557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), - [anon_sym___declspec] = ACTIONS(2555), - [anon_sym___based] = ACTIONS(2555), - [anon_sym___cdecl] = ACTIONS(2555), - [anon_sym___clrcall] = ACTIONS(2555), - [anon_sym___stdcall] = ACTIONS(2555), - [anon_sym___fastcall] = ACTIONS(2555), - [anon_sym___thiscall] = ACTIONS(2555), - [anon_sym___vectorcall] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2555), - [anon_sym_register] = ACTIONS(2555), - [anon_sym_inline] = ACTIONS(2555), - [anon_sym_thread_local] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2555), - [anon_sym_volatile] = ACTIONS(2555), - [anon_sym_restrict] = ACTIONS(2555), - [anon_sym__Atomic] = ACTIONS(2555), - [anon_sym_mutable] = ACTIONS(2555), - [anon_sym_constexpr] = ACTIONS(2555), - [anon_sym_constinit] = ACTIONS(2555), - [anon_sym_consteval] = ACTIONS(2555), - [anon_sym_signed] = ACTIONS(2555), - [anon_sym_unsigned] = ACTIONS(2555), - [anon_sym_long] = ACTIONS(2555), - [anon_sym_short] = ACTIONS(2555), - [sym_primitive_type] = ACTIONS(2555), - [anon_sym_enum] = ACTIONS(2555), - [anon_sym_class] = ACTIONS(2555), - [anon_sym_struct] = ACTIONS(2555), - [anon_sym_union] = ACTIONS(2555), - [anon_sym_if] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2555), - [anon_sym_switch] = ACTIONS(2555), - [anon_sym_case] = ACTIONS(2555), - [anon_sym_default] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2555), - [anon_sym_do] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_break] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2555), - [anon_sym_goto] = ACTIONS(2555), - [anon_sym_not] = ACTIONS(2555), - [anon_sym_compl] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2557), - [anon_sym_PLUS_PLUS] = ACTIONS(2557), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2557), - [anon_sym_u_SQUOTE] = ACTIONS(2557), - [anon_sym_U_SQUOTE] = ACTIONS(2557), - [anon_sym_u8_SQUOTE] = ACTIONS(2557), - [anon_sym_SQUOTE] = ACTIONS(2557), - [anon_sym_L_DQUOTE] = ACTIONS(2557), - [anon_sym_u_DQUOTE] = ACTIONS(2557), - [anon_sym_U_DQUOTE] = ACTIONS(2557), - [anon_sym_u8_DQUOTE] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(2557), - [sym_true] = ACTIONS(2555), - [sym_false] = ACTIONS(2555), - [sym_null] = ACTIONS(2555), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2555), - [anon_sym_decltype] = ACTIONS(2555), - [anon_sym_virtual] = ACTIONS(2555), - [anon_sym_explicit] = ACTIONS(2555), - [anon_sym_typename] = ACTIONS(2555), - [anon_sym_template] = ACTIONS(2555), - [anon_sym_operator] = ACTIONS(2555), - [anon_sym_try] = ACTIONS(2555), - [anon_sym_delete] = ACTIONS(2555), - [anon_sym_throw] = ACTIONS(2555), - [anon_sym_namespace] = ACTIONS(2555), - [anon_sym_using] = ACTIONS(2555), - [anon_sym_static_assert] = ACTIONS(2555), - [anon_sym_concept] = ACTIONS(2555), - [anon_sym_co_return] = ACTIONS(2555), - [anon_sym_co_yield] = ACTIONS(2555), - [anon_sym_R_DQUOTE] = ACTIONS(2557), - [anon_sym_LR_DQUOTE] = ACTIONS(2557), - [anon_sym_uR_DQUOTE] = ACTIONS(2557), - [anon_sym_UR_DQUOTE] = ACTIONS(2557), - [anon_sym_u8R_DQUOTE] = ACTIONS(2557), - [anon_sym_co_await] = ACTIONS(2555), - [anon_sym_new] = ACTIONS(2555), - [anon_sym_requires] = ACTIONS(2555), - [sym_this] = ACTIONS(2555), - [sym_nullptr] = ACTIONS(2555), - }, - [433] = { - [sym_identifier] = ACTIONS(2555), - [aux_sym_preproc_include_token1] = ACTIONS(2555), - [aux_sym_preproc_def_token1] = ACTIONS(2555), - [aux_sym_preproc_if_token1] = ACTIONS(2555), - [aux_sym_preproc_if_token2] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), - [aux_sym_preproc_else_token1] = ACTIONS(2555), - [aux_sym_preproc_elif_token1] = ACTIONS(2555), - [sym_preproc_directive] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2557), - [anon_sym_TILDE] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_AMP_AMP] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2557), - [anon_sym_typedef] = ACTIONS(2555), - [anon_sym_extern] = ACTIONS(2555), - [anon_sym___attribute__] = ACTIONS(2555), - [anon_sym_COLON_COLON] = ACTIONS(2557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), - [anon_sym___declspec] = ACTIONS(2555), - [anon_sym___based] = ACTIONS(2555), - [anon_sym___cdecl] = ACTIONS(2555), - [anon_sym___clrcall] = ACTIONS(2555), - [anon_sym___stdcall] = ACTIONS(2555), - [anon_sym___fastcall] = ACTIONS(2555), - [anon_sym___thiscall] = ACTIONS(2555), - [anon_sym___vectorcall] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2555), - [anon_sym_register] = ACTIONS(2555), - [anon_sym_inline] = ACTIONS(2555), - [anon_sym_thread_local] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2555), - [anon_sym_volatile] = ACTIONS(2555), - [anon_sym_restrict] = ACTIONS(2555), - [anon_sym__Atomic] = ACTIONS(2555), - [anon_sym_mutable] = ACTIONS(2555), - [anon_sym_constexpr] = ACTIONS(2555), - [anon_sym_constinit] = ACTIONS(2555), - [anon_sym_consteval] = ACTIONS(2555), - [anon_sym_signed] = ACTIONS(2555), - [anon_sym_unsigned] = ACTIONS(2555), - [anon_sym_long] = ACTIONS(2555), - [anon_sym_short] = ACTIONS(2555), - [sym_primitive_type] = ACTIONS(2555), - [anon_sym_enum] = ACTIONS(2555), - [anon_sym_class] = ACTIONS(2555), - [anon_sym_struct] = ACTIONS(2555), - [anon_sym_union] = ACTIONS(2555), - [anon_sym_if] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2555), - [anon_sym_switch] = ACTIONS(2555), - [anon_sym_case] = ACTIONS(2555), - [anon_sym_default] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2555), - [anon_sym_do] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_break] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2555), - [anon_sym_goto] = ACTIONS(2555), - [anon_sym_not] = ACTIONS(2555), - [anon_sym_compl] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2557), - [anon_sym_PLUS_PLUS] = ACTIONS(2557), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2557), - [anon_sym_u_SQUOTE] = ACTIONS(2557), - [anon_sym_U_SQUOTE] = ACTIONS(2557), - [anon_sym_u8_SQUOTE] = ACTIONS(2557), - [anon_sym_SQUOTE] = ACTIONS(2557), - [anon_sym_L_DQUOTE] = ACTIONS(2557), - [anon_sym_u_DQUOTE] = ACTIONS(2557), - [anon_sym_U_DQUOTE] = ACTIONS(2557), - [anon_sym_u8_DQUOTE] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(2557), - [sym_true] = ACTIONS(2555), - [sym_false] = ACTIONS(2555), - [sym_null] = ACTIONS(2555), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2555), - [anon_sym_decltype] = ACTIONS(2555), - [anon_sym_virtual] = ACTIONS(2555), - [anon_sym_explicit] = ACTIONS(2555), - [anon_sym_typename] = ACTIONS(2555), - [anon_sym_template] = ACTIONS(2555), - [anon_sym_operator] = ACTIONS(2555), - [anon_sym_try] = ACTIONS(2555), - [anon_sym_delete] = ACTIONS(2555), - [anon_sym_throw] = ACTIONS(2555), - [anon_sym_namespace] = ACTIONS(2555), - [anon_sym_using] = ACTIONS(2555), - [anon_sym_static_assert] = ACTIONS(2555), - [anon_sym_concept] = ACTIONS(2555), - [anon_sym_co_return] = ACTIONS(2555), - [anon_sym_co_yield] = ACTIONS(2555), - [anon_sym_R_DQUOTE] = ACTIONS(2557), - [anon_sym_LR_DQUOTE] = ACTIONS(2557), - [anon_sym_uR_DQUOTE] = ACTIONS(2557), - [anon_sym_UR_DQUOTE] = ACTIONS(2557), - [anon_sym_u8R_DQUOTE] = ACTIONS(2557), - [anon_sym_co_await] = ACTIONS(2555), - [anon_sym_new] = ACTIONS(2555), - [anon_sym_requires] = ACTIONS(2555), - [sym_this] = ACTIONS(2555), - [sym_nullptr] = ACTIONS(2555), - }, - [434] = { - [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_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_LBRACK] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_register] = ACTIONS(2559), - [anon_sym_inline] = ACTIONS(2559), - [anon_sym_thread_local] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_volatile] = ACTIONS(2559), - [anon_sym_restrict] = ACTIONS(2559), - [anon_sym__Atomic] = ACTIONS(2559), - [anon_sym_mutable] = ACTIONS(2559), - [anon_sym_constexpr] = ACTIONS(2559), - [anon_sym_constinit] = ACTIONS(2559), - [anon_sym_consteval] = ACTIONS(2559), - [anon_sym_signed] = ACTIONS(2559), - [anon_sym_unsigned] = ACTIONS(2559), - [anon_sym_long] = ACTIONS(2559), - [anon_sym_short] = 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_else] = 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), - [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), - [sym_null] = ACTIONS(2559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2559), - [anon_sym_decltype] = ACTIONS(2559), - [anon_sym_virtual] = 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_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_nullptr] = ACTIONS(2559), - }, - [435] = { - [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_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_LBRACK] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = 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_else] = 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), - [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), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = 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_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_nullptr] = ACTIONS(2563), - }, - [436] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [437] = { - [sym_identifier] = ACTIONS(2567), - [aux_sym_preproc_include_token1] = ACTIONS(2567), - [aux_sym_preproc_def_token1] = ACTIONS(2567), - [aux_sym_preproc_if_token1] = ACTIONS(2567), - [aux_sym_preproc_if_token2] = ACTIONS(2567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2567), - [aux_sym_preproc_else_token1] = ACTIONS(2567), - [aux_sym_preproc_elif_token1] = ACTIONS(2567), - [sym_preproc_directive] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(2569), - [anon_sym_AMP_AMP] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2569), - [anon_sym_typedef] = ACTIONS(2567), - [anon_sym_extern] = ACTIONS(2567), - [anon_sym___attribute__] = ACTIONS(2567), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2569), - [anon_sym___declspec] = ACTIONS(2567), - [anon_sym___based] = ACTIONS(2567), - [anon_sym___cdecl] = ACTIONS(2567), - [anon_sym___clrcall] = ACTIONS(2567), - [anon_sym___stdcall] = ACTIONS(2567), - [anon_sym___fastcall] = ACTIONS(2567), - [anon_sym___thiscall] = ACTIONS(2567), - [anon_sym___vectorcall] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2569), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_static] = ACTIONS(2567), - [anon_sym_register] = ACTIONS(2567), - [anon_sym_inline] = ACTIONS(2567), - [anon_sym_thread_local] = ACTIONS(2567), - [anon_sym_const] = ACTIONS(2567), - [anon_sym_volatile] = ACTIONS(2567), - [anon_sym_restrict] = ACTIONS(2567), - [anon_sym__Atomic] = ACTIONS(2567), - [anon_sym_mutable] = ACTIONS(2567), - [anon_sym_constexpr] = ACTIONS(2567), - [anon_sym_constinit] = ACTIONS(2567), - [anon_sym_consteval] = ACTIONS(2567), - [anon_sym_signed] = ACTIONS(2567), - [anon_sym_unsigned] = ACTIONS(2567), - [anon_sym_long] = ACTIONS(2567), - [anon_sym_short] = ACTIONS(2567), - [sym_primitive_type] = ACTIONS(2567), - [anon_sym_enum] = ACTIONS(2567), - [anon_sym_class] = ACTIONS(2567), - [anon_sym_struct] = ACTIONS(2567), - [anon_sym_union] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_else] = ACTIONS(2567), - [anon_sym_switch] = ACTIONS(2567), - [anon_sym_case] = ACTIONS(2567), - [anon_sym_default] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_break] = ACTIONS(2567), - [anon_sym_continue] = ACTIONS(2567), - [anon_sym_goto] = ACTIONS(2567), - [anon_sym_not] = ACTIONS(2567), - [anon_sym_compl] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2569), - [anon_sym_PLUS_PLUS] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2567), - [sym_number_literal] = ACTIONS(2569), - [anon_sym_L_SQUOTE] = ACTIONS(2569), - [anon_sym_u_SQUOTE] = ACTIONS(2569), - [anon_sym_U_SQUOTE] = ACTIONS(2569), - [anon_sym_u8_SQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_L_DQUOTE] = ACTIONS(2569), - [anon_sym_u_DQUOTE] = ACTIONS(2569), - [anon_sym_U_DQUOTE] = ACTIONS(2569), - [anon_sym_u8_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE] = ACTIONS(2569), - [sym_true] = ACTIONS(2567), - [sym_false] = ACTIONS(2567), - [sym_null] = ACTIONS(2567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2567), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_virtual] = ACTIONS(2567), - [anon_sym_explicit] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2567), - [anon_sym_template] = ACTIONS(2567), - [anon_sym_operator] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_delete] = ACTIONS(2567), - [anon_sym_throw] = ACTIONS(2567), - [anon_sym_namespace] = ACTIONS(2567), - [anon_sym_using] = ACTIONS(2567), - [anon_sym_static_assert] = ACTIONS(2567), - [anon_sym_concept] = ACTIONS(2567), - [anon_sym_co_return] = ACTIONS(2567), - [anon_sym_co_yield] = ACTIONS(2567), - [anon_sym_R_DQUOTE] = ACTIONS(2569), - [anon_sym_LR_DQUOTE] = ACTIONS(2569), - [anon_sym_uR_DQUOTE] = ACTIONS(2569), - [anon_sym_UR_DQUOTE] = ACTIONS(2569), - [anon_sym_u8R_DQUOTE] = ACTIONS(2569), - [anon_sym_co_await] = ACTIONS(2567), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_requires] = ACTIONS(2567), - [sym_this] = ACTIONS(2567), - [sym_nullptr] = ACTIONS(2567), - }, - [438] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [439] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [440] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [441] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [442] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3620), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5804), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(5826), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2571), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [443] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [444] = { - [sym_identifier] = ACTIONS(2573), - [aux_sym_preproc_include_token1] = ACTIONS(2573), - [aux_sym_preproc_def_token1] = ACTIONS(2573), - [aux_sym_preproc_if_token1] = ACTIONS(2573), - [aux_sym_preproc_if_token2] = ACTIONS(2573), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2573), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2573), - [aux_sym_preproc_else_token1] = ACTIONS(2573), - [aux_sym_preproc_elif_token1] = ACTIONS(2573), - [sym_preproc_directive] = ACTIONS(2573), - [anon_sym_LPAREN2] = ACTIONS(2575), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_typedef] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2575), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym___based] = ACTIONS(2573), - [anon_sym___cdecl] = ACTIONS(2573), - [anon_sym___clrcall] = ACTIONS(2573), - [anon_sym___stdcall] = ACTIONS(2573), - [anon_sym___fastcall] = ACTIONS(2573), - [anon_sym___thiscall] = ACTIONS(2573), - [anon_sym___vectorcall] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2573), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_else] = ACTIONS(2573), - [anon_sym_switch] = ACTIONS(2573), - [anon_sym_case] = ACTIONS(2573), - [anon_sym_default] = ACTIONS(2573), - [anon_sym_while] = ACTIONS(2573), - [anon_sym_do] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2573), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_break] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2573), - [anon_sym_goto] = ACTIONS(2573), - [anon_sym_not] = ACTIONS(2573), - [anon_sym_compl] = ACTIONS(2573), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_sizeof] = ACTIONS(2573), - [sym_number_literal] = ACTIONS(2575), - [anon_sym_L_SQUOTE] = ACTIONS(2575), - [anon_sym_u_SQUOTE] = ACTIONS(2575), - [anon_sym_U_SQUOTE] = ACTIONS(2575), - [anon_sym_u8_SQUOTE] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2575), - [anon_sym_L_DQUOTE] = ACTIONS(2575), - [anon_sym_u_DQUOTE] = ACTIONS(2575), - [anon_sym_U_DQUOTE] = ACTIONS(2575), - [anon_sym_u8_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [sym_true] = ACTIONS(2573), - [sym_false] = ACTIONS(2573), - [sym_null] = ACTIONS(2573), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2573), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_explicit] = ACTIONS(2573), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2573), - [anon_sym_operator] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_throw] = ACTIONS(2573), - [anon_sym_namespace] = ACTIONS(2573), - [anon_sym_using] = ACTIONS(2573), - [anon_sym_static_assert] = ACTIONS(2573), - [anon_sym_concept] = ACTIONS(2573), - [anon_sym_co_return] = ACTIONS(2573), - [anon_sym_co_yield] = ACTIONS(2573), - [anon_sym_R_DQUOTE] = ACTIONS(2575), - [anon_sym_LR_DQUOTE] = ACTIONS(2575), - [anon_sym_uR_DQUOTE] = ACTIONS(2575), - [anon_sym_UR_DQUOTE] = ACTIONS(2575), - [anon_sym_u8R_DQUOTE] = ACTIONS(2575), - [anon_sym_co_await] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2573), - [anon_sym_requires] = ACTIONS(2573), - [sym_this] = ACTIONS(2573), - [sym_nullptr] = ACTIONS(2573), - }, - [445] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [446] = { - [sym_catch_clause] = STATE(342), - [aux_sym_constructor_try_statement_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2368), - [aux_sym_preproc_include_token1] = ACTIONS(2368), - [aux_sym_preproc_def_token1] = ACTIONS(2368), - [aux_sym_preproc_if_token1] = ACTIONS(2368), - [aux_sym_preproc_if_token2] = ACTIONS(2368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), - [sym_preproc_directive] = ACTIONS(2368), - [anon_sym_LPAREN2] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_TILDE] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_PLUS] = ACTIONS(2368), - [anon_sym_STAR] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_typedef] = ACTIONS(2368), - [anon_sym_extern] = ACTIONS(2368), - [anon_sym___attribute__] = ACTIONS(2368), - [anon_sym_COLON_COLON] = ACTIONS(2370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2370), - [anon_sym___declspec] = ACTIONS(2368), - [anon_sym___based] = ACTIONS(2368), - [anon_sym___cdecl] = ACTIONS(2368), - [anon_sym___clrcall] = ACTIONS(2368), - [anon_sym___stdcall] = ACTIONS(2368), - [anon_sym___fastcall] = ACTIONS(2368), - [anon_sym___thiscall] = ACTIONS(2368), - [anon_sym___vectorcall] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2368), - [anon_sym_static] = ACTIONS(2368), - [anon_sym_register] = ACTIONS(2368), - [anon_sym_inline] = ACTIONS(2368), - [anon_sym_thread_local] = ACTIONS(2368), - [anon_sym_const] = ACTIONS(2368), - [anon_sym_volatile] = ACTIONS(2368), - [anon_sym_restrict] = ACTIONS(2368), - [anon_sym__Atomic] = ACTIONS(2368), - [anon_sym_mutable] = ACTIONS(2368), - [anon_sym_constexpr] = ACTIONS(2368), - [anon_sym_constinit] = ACTIONS(2368), - [anon_sym_consteval] = ACTIONS(2368), - [anon_sym_signed] = ACTIONS(2368), - [anon_sym_unsigned] = ACTIONS(2368), - [anon_sym_long] = ACTIONS(2368), - [anon_sym_short] = ACTIONS(2368), - [sym_primitive_type] = ACTIONS(2368), - [anon_sym_enum] = ACTIONS(2368), - [anon_sym_class] = ACTIONS(2368), - [anon_sym_struct] = ACTIONS(2368), - [anon_sym_union] = ACTIONS(2368), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_switch] = ACTIONS(2368), - [anon_sym_case] = ACTIONS(2368), - [anon_sym_default] = ACTIONS(2368), - [anon_sym_while] = ACTIONS(2368), - [anon_sym_do] = ACTIONS(2368), - [anon_sym_for] = ACTIONS(2368), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_goto] = ACTIONS(2368), - [anon_sym_not] = ACTIONS(2368), - [anon_sym_compl] = ACTIONS(2368), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_sizeof] = ACTIONS(2368), - [sym_number_literal] = ACTIONS(2370), - [anon_sym_L_SQUOTE] = ACTIONS(2370), - [anon_sym_u_SQUOTE] = ACTIONS(2370), - [anon_sym_U_SQUOTE] = ACTIONS(2370), - [anon_sym_u8_SQUOTE] = ACTIONS(2370), - [anon_sym_SQUOTE] = ACTIONS(2370), - [anon_sym_L_DQUOTE] = ACTIONS(2370), - [anon_sym_u_DQUOTE] = ACTIONS(2370), - [anon_sym_U_DQUOTE] = ACTIONS(2370), - [anon_sym_u8_DQUOTE] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [sym_true] = ACTIONS(2368), - [sym_false] = ACTIONS(2368), - [sym_null] = ACTIONS(2368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2368), - [anon_sym_decltype] = ACTIONS(2368), - [anon_sym_virtual] = ACTIONS(2368), - [anon_sym_explicit] = ACTIONS(2368), - [anon_sym_typename] = ACTIONS(2368), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_operator] = ACTIONS(2368), - [anon_sym_try] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2368), - [anon_sym_throw] = ACTIONS(2368), - [anon_sym_namespace] = ACTIONS(2368), - [anon_sym_using] = ACTIONS(2368), - [anon_sym_static_assert] = ACTIONS(2368), - [anon_sym_concept] = ACTIONS(2368), - [anon_sym_co_return] = ACTIONS(2368), - [anon_sym_co_yield] = ACTIONS(2368), - [anon_sym_catch] = ACTIONS(2376), - [anon_sym_R_DQUOTE] = ACTIONS(2370), - [anon_sym_LR_DQUOTE] = ACTIONS(2370), - [anon_sym_uR_DQUOTE] = ACTIONS(2370), - [anon_sym_UR_DQUOTE] = ACTIONS(2370), - [anon_sym_u8R_DQUOTE] = ACTIONS(2370), - [anon_sym_co_await] = ACTIONS(2368), - [anon_sym_new] = ACTIONS(2368), - [anon_sym_requires] = ACTIONS(2368), - [sym_this] = ACTIONS(2368), - [sym_nullptr] = ACTIONS(2368), - }, - [447] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [448] = { - [sym_identifier] = ACTIONS(2577), - [aux_sym_preproc_include_token1] = ACTIONS(2577), - [aux_sym_preproc_def_token1] = ACTIONS(2577), - [aux_sym_preproc_if_token1] = ACTIONS(2577), - [aux_sym_preproc_if_token2] = ACTIONS(2577), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2577), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2577), - [aux_sym_preproc_else_token1] = ACTIONS(2577), - [aux_sym_preproc_elif_token1] = ACTIONS(2577), - [sym_preproc_directive] = ACTIONS(2577), - [anon_sym_LPAREN2] = ACTIONS(2579), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2577), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_typedef] = ACTIONS(2577), - [anon_sym_extern] = ACTIONS(2577), - [anon_sym___attribute__] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2579), - [anon_sym___declspec] = ACTIONS(2577), - [anon_sym___based] = ACTIONS(2577), - [anon_sym___cdecl] = ACTIONS(2577), - [anon_sym___clrcall] = ACTIONS(2577), - [anon_sym___stdcall] = ACTIONS(2577), - [anon_sym___fastcall] = ACTIONS(2577), - [anon_sym___thiscall] = ACTIONS(2577), - [anon_sym___vectorcall] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2577), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_register] = ACTIONS(2577), - [anon_sym_inline] = ACTIONS(2577), - [anon_sym_thread_local] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_volatile] = ACTIONS(2577), - [anon_sym_restrict] = ACTIONS(2577), - [anon_sym__Atomic] = ACTIONS(2577), - [anon_sym_mutable] = ACTIONS(2577), - [anon_sym_constexpr] = ACTIONS(2577), - [anon_sym_constinit] = ACTIONS(2577), - [anon_sym_consteval] = ACTIONS(2577), - [anon_sym_signed] = ACTIONS(2577), - [anon_sym_unsigned] = ACTIONS(2577), - [anon_sym_long] = ACTIONS(2577), - [anon_sym_short] = ACTIONS(2577), - [sym_primitive_type] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_struct] = ACTIONS(2577), - [anon_sym_union] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_else] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_case] = ACTIONS(2577), - [anon_sym_default] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_goto] = ACTIONS(2577), - [anon_sym_not] = ACTIONS(2577), - [anon_sym_compl] = ACTIONS(2577), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_sizeof] = ACTIONS(2577), - [sym_number_literal] = ACTIONS(2579), - [anon_sym_L_SQUOTE] = ACTIONS(2579), - [anon_sym_u_SQUOTE] = ACTIONS(2579), - [anon_sym_U_SQUOTE] = ACTIONS(2579), - [anon_sym_u8_SQUOTE] = ACTIONS(2579), - [anon_sym_SQUOTE] = ACTIONS(2579), - [anon_sym_L_DQUOTE] = ACTIONS(2579), - [anon_sym_u_DQUOTE] = ACTIONS(2579), - [anon_sym_U_DQUOTE] = ACTIONS(2579), - [anon_sym_u8_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym_true] = ACTIONS(2577), - [sym_false] = ACTIONS(2577), - [sym_null] = ACTIONS(2577), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2577), - [anon_sym_decltype] = ACTIONS(2577), - [anon_sym_virtual] = ACTIONS(2577), - [anon_sym_explicit] = ACTIONS(2577), - [anon_sym_typename] = ACTIONS(2577), - [anon_sym_template] = ACTIONS(2577), - [anon_sym_operator] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_delete] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [anon_sym_static_assert] = ACTIONS(2577), - [anon_sym_concept] = ACTIONS(2577), - [anon_sym_co_return] = ACTIONS(2577), - [anon_sym_co_yield] = ACTIONS(2577), - [anon_sym_R_DQUOTE] = ACTIONS(2579), - [anon_sym_LR_DQUOTE] = ACTIONS(2579), - [anon_sym_uR_DQUOTE] = ACTIONS(2579), - [anon_sym_UR_DQUOTE] = ACTIONS(2579), - [anon_sym_u8R_DQUOTE] = ACTIONS(2579), - [anon_sym_co_await] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2577), - [sym_this] = ACTIONS(2577), - [sym_nullptr] = ACTIONS(2577), - }, - [449] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3605), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5764), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(5854), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2581), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [450] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [451] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [452] = { - [sym_identifier] = ACTIONS(2583), - [aux_sym_preproc_include_token1] = ACTIONS(2583), - [aux_sym_preproc_def_token1] = ACTIONS(2583), - [aux_sym_preproc_if_token1] = ACTIONS(2583), - [aux_sym_preproc_if_token2] = ACTIONS(2583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2583), - [aux_sym_preproc_else_token1] = ACTIONS(2583), - [aux_sym_preproc_elif_token1] = ACTIONS(2583), - [sym_preproc_directive] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_typedef] = ACTIONS(2583), - [anon_sym_extern] = ACTIONS(2583), - [anon_sym___attribute__] = ACTIONS(2583), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), - [anon_sym___declspec] = ACTIONS(2583), - [anon_sym___based] = ACTIONS(2583), - [anon_sym___cdecl] = ACTIONS(2583), - [anon_sym___clrcall] = ACTIONS(2583), - [anon_sym___stdcall] = ACTIONS(2583), - [anon_sym___fastcall] = ACTIONS(2583), - [anon_sym___thiscall] = ACTIONS(2583), - [anon_sym___vectorcall] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_register] = ACTIONS(2583), - [anon_sym_inline] = ACTIONS(2583), - [anon_sym_thread_local] = ACTIONS(2583), - [anon_sym_const] = ACTIONS(2583), - [anon_sym_volatile] = ACTIONS(2583), - [anon_sym_restrict] = ACTIONS(2583), - [anon_sym__Atomic] = ACTIONS(2583), - [anon_sym_mutable] = ACTIONS(2583), - [anon_sym_constexpr] = ACTIONS(2583), - [anon_sym_constinit] = ACTIONS(2583), - [anon_sym_consteval] = ACTIONS(2583), - [anon_sym_signed] = ACTIONS(2583), - [anon_sym_unsigned] = ACTIONS(2583), - [anon_sym_long] = ACTIONS(2583), - [anon_sym_short] = ACTIONS(2583), - [sym_primitive_type] = ACTIONS(2583), - [anon_sym_enum] = ACTIONS(2583), - [anon_sym_class] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2583), - [anon_sym_union] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_else] = ACTIONS(2583), - [anon_sym_switch] = ACTIONS(2583), - [anon_sym_case] = ACTIONS(2583), - [anon_sym_default] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_break] = ACTIONS(2583), - [anon_sym_continue] = ACTIONS(2583), - [anon_sym_goto] = ACTIONS(2583), - [anon_sym_not] = ACTIONS(2583), - [anon_sym_compl] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_sizeof] = ACTIONS(2583), - [sym_number_literal] = ACTIONS(2585), - [anon_sym_L_SQUOTE] = ACTIONS(2585), - [anon_sym_u_SQUOTE] = ACTIONS(2585), - [anon_sym_U_SQUOTE] = ACTIONS(2585), - [anon_sym_u8_SQUOTE] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_L_DQUOTE] = ACTIONS(2585), - [anon_sym_u_DQUOTE] = ACTIONS(2585), - [anon_sym_U_DQUOTE] = ACTIONS(2585), - [anon_sym_u8_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(2585), - [sym_true] = ACTIONS(2583), - [sym_false] = ACTIONS(2583), - [sym_null] = ACTIONS(2583), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2583), - [anon_sym_decltype] = ACTIONS(2583), - [anon_sym_virtual] = ACTIONS(2583), - [anon_sym_explicit] = ACTIONS(2583), - [anon_sym_typename] = ACTIONS(2583), - [anon_sym_template] = ACTIONS(2583), - [anon_sym_operator] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_delete] = ACTIONS(2583), - [anon_sym_throw] = ACTIONS(2583), - [anon_sym_namespace] = ACTIONS(2583), - [anon_sym_using] = ACTIONS(2583), - [anon_sym_static_assert] = ACTIONS(2583), - [anon_sym_concept] = ACTIONS(2583), - [anon_sym_co_return] = ACTIONS(2583), - [anon_sym_co_yield] = ACTIONS(2583), - [anon_sym_R_DQUOTE] = ACTIONS(2585), - [anon_sym_LR_DQUOTE] = ACTIONS(2585), - [anon_sym_uR_DQUOTE] = ACTIONS(2585), - [anon_sym_UR_DQUOTE] = ACTIONS(2585), - [anon_sym_u8R_DQUOTE] = ACTIONS(2585), - [anon_sym_co_await] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_requires] = ACTIONS(2583), - [sym_this] = ACTIONS(2583), - [sym_nullptr] = ACTIONS(2583), - }, - [453] = { - [sym_identifier] = ACTIONS(2587), - [aux_sym_preproc_include_token1] = ACTIONS(2587), - [aux_sym_preproc_def_token1] = ACTIONS(2587), - [aux_sym_preproc_if_token1] = ACTIONS(2587), - [aux_sym_preproc_if_token2] = ACTIONS(2587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2587), - [aux_sym_preproc_else_token1] = ACTIONS(2587), - [aux_sym_preproc_elif_token1] = ACTIONS(2587), - [sym_preproc_directive] = ACTIONS(2587), - [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2589), - [anon_sym_TILDE] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_AMP_AMP] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2589), - [anon_sym_typedef] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym___attribute__] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2589), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), - [anon_sym___declspec] = ACTIONS(2587), - [anon_sym___based] = ACTIONS(2587), - [anon_sym___cdecl] = ACTIONS(2587), - [anon_sym___clrcall] = ACTIONS(2587), - [anon_sym___stdcall] = ACTIONS(2587), - [anon_sym___fastcall] = ACTIONS(2587), - [anon_sym___thiscall] = ACTIONS(2587), - [anon_sym___vectorcall] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_register] = ACTIONS(2587), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_thread_local] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_constexpr] = ACTIONS(2587), - [anon_sym_constinit] = ACTIONS(2587), - [anon_sym_consteval] = ACTIONS(2587), - [anon_sym_signed] = ACTIONS(2587), - [anon_sym_unsigned] = ACTIONS(2587), - [anon_sym_long] = ACTIONS(2587), - [anon_sym_short] = ACTIONS(2587), - [sym_primitive_type] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_class] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_else] = ACTIONS(2587), - [anon_sym_switch] = ACTIONS(2587), - [anon_sym_case] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_goto] = ACTIONS(2587), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_compl] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2589), - [anon_sym_PLUS_PLUS] = ACTIONS(2589), - [anon_sym_sizeof] = ACTIONS(2587), - [sym_number_literal] = ACTIONS(2589), - [anon_sym_L_SQUOTE] = ACTIONS(2589), - [anon_sym_u_SQUOTE] = ACTIONS(2589), - [anon_sym_U_SQUOTE] = ACTIONS(2589), - [anon_sym_u8_SQUOTE] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_L_DQUOTE] = ACTIONS(2589), - [anon_sym_u_DQUOTE] = ACTIONS(2589), - [anon_sym_U_DQUOTE] = ACTIONS(2589), - [anon_sym_u8_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE] = ACTIONS(2589), - [sym_true] = ACTIONS(2587), - [sym_false] = ACTIONS(2587), - [sym_null] = ACTIONS(2587), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2587), - [anon_sym_decltype] = ACTIONS(2587), - [anon_sym_virtual] = ACTIONS(2587), - [anon_sym_explicit] = ACTIONS(2587), - [anon_sym_typename] = ACTIONS(2587), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_operator] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(2587), - [anon_sym_throw] = ACTIONS(2587), - [anon_sym_namespace] = ACTIONS(2587), - [anon_sym_using] = ACTIONS(2587), - [anon_sym_static_assert] = ACTIONS(2587), - [anon_sym_concept] = ACTIONS(2587), - [anon_sym_co_return] = ACTIONS(2587), - [anon_sym_co_yield] = ACTIONS(2587), - [anon_sym_R_DQUOTE] = ACTIONS(2589), - [anon_sym_LR_DQUOTE] = ACTIONS(2589), - [anon_sym_uR_DQUOTE] = ACTIONS(2589), - [anon_sym_UR_DQUOTE] = ACTIONS(2589), - [anon_sym_u8R_DQUOTE] = ACTIONS(2589), - [anon_sym_co_await] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_requires] = ACTIONS(2587), - [sym_this] = ACTIONS(2587), - [sym_nullptr] = ACTIONS(2587), - }, - [454] = { - [sym_identifier] = ACTIONS(2591), - [aux_sym_preproc_include_token1] = ACTIONS(2591), - [aux_sym_preproc_def_token1] = ACTIONS(2591), - [aux_sym_preproc_if_token1] = ACTIONS(2591), - [aux_sym_preproc_if_token2] = ACTIONS(2591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2591), - [aux_sym_preproc_else_token1] = ACTIONS(2591), - [aux_sym_preproc_elif_token1] = ACTIONS(2591), - [sym_preproc_directive] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2593), - [anon_sym_TILDE] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_AMP_AMP] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_typedef] = ACTIONS(2591), - [anon_sym_extern] = ACTIONS(2591), - [anon_sym___attribute__] = ACTIONS(2591), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), - [anon_sym___declspec] = ACTIONS(2591), - [anon_sym___based] = ACTIONS(2591), - [anon_sym___cdecl] = ACTIONS(2591), - [anon_sym___clrcall] = ACTIONS(2591), - [anon_sym___stdcall] = ACTIONS(2591), - [anon_sym___fastcall] = ACTIONS(2591), - [anon_sym___thiscall] = ACTIONS(2591), - [anon_sym___vectorcall] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_static] = ACTIONS(2591), - [anon_sym_register] = ACTIONS(2591), - [anon_sym_inline] = ACTIONS(2591), - [anon_sym_thread_local] = ACTIONS(2591), - [anon_sym_const] = ACTIONS(2591), - [anon_sym_volatile] = ACTIONS(2591), - [anon_sym_restrict] = ACTIONS(2591), - [anon_sym__Atomic] = ACTIONS(2591), - [anon_sym_mutable] = ACTIONS(2591), - [anon_sym_constexpr] = ACTIONS(2591), - [anon_sym_constinit] = ACTIONS(2591), - [anon_sym_consteval] = ACTIONS(2591), - [anon_sym_signed] = ACTIONS(2591), - [anon_sym_unsigned] = ACTIONS(2591), - [anon_sym_long] = ACTIONS(2591), - [anon_sym_short] = ACTIONS(2591), - [sym_primitive_type] = ACTIONS(2591), - [anon_sym_enum] = ACTIONS(2591), - [anon_sym_class] = ACTIONS(2591), - [anon_sym_struct] = ACTIONS(2591), - [anon_sym_union] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_else] = ACTIONS(2591), - [anon_sym_switch] = ACTIONS(2591), - [anon_sym_case] = ACTIONS(2591), - [anon_sym_default] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_break] = ACTIONS(2591), - [anon_sym_continue] = ACTIONS(2591), - [anon_sym_goto] = ACTIONS(2591), - [anon_sym_not] = ACTIONS(2591), - [anon_sym_compl] = ACTIONS(2591), - [anon_sym_DASH_DASH] = ACTIONS(2593), - [anon_sym_PLUS_PLUS] = ACTIONS(2593), - [anon_sym_sizeof] = ACTIONS(2591), - [sym_number_literal] = ACTIONS(2593), - [anon_sym_L_SQUOTE] = ACTIONS(2593), - [anon_sym_u_SQUOTE] = ACTIONS(2593), - [anon_sym_U_SQUOTE] = ACTIONS(2593), - [anon_sym_u8_SQUOTE] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_L_DQUOTE] = ACTIONS(2593), - [anon_sym_u_DQUOTE] = ACTIONS(2593), - [anon_sym_U_DQUOTE] = ACTIONS(2593), - [anon_sym_u8_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE] = ACTIONS(2593), - [sym_true] = ACTIONS(2591), - [sym_false] = ACTIONS(2591), - [sym_null] = ACTIONS(2591), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2591), - [anon_sym_decltype] = ACTIONS(2591), - [anon_sym_virtual] = ACTIONS(2591), - [anon_sym_explicit] = ACTIONS(2591), - [anon_sym_typename] = ACTIONS(2591), - [anon_sym_template] = ACTIONS(2591), - [anon_sym_operator] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_delete] = ACTIONS(2591), - [anon_sym_throw] = ACTIONS(2591), - [anon_sym_namespace] = ACTIONS(2591), - [anon_sym_using] = ACTIONS(2591), - [anon_sym_static_assert] = ACTIONS(2591), - [anon_sym_concept] = ACTIONS(2591), - [anon_sym_co_return] = ACTIONS(2591), - [anon_sym_co_yield] = ACTIONS(2591), - [anon_sym_R_DQUOTE] = ACTIONS(2593), - [anon_sym_LR_DQUOTE] = ACTIONS(2593), - [anon_sym_uR_DQUOTE] = ACTIONS(2593), - [anon_sym_UR_DQUOTE] = ACTIONS(2593), - [anon_sym_u8R_DQUOTE] = ACTIONS(2593), - [anon_sym_co_await] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_requires] = ACTIONS(2591), - [sym_this] = ACTIONS(2591), - [sym_nullptr] = ACTIONS(2591), - }, - [455] = { - [sym_identifier] = ACTIONS(2595), - [aux_sym_preproc_include_token1] = ACTIONS(2595), - [aux_sym_preproc_def_token1] = ACTIONS(2595), - [aux_sym_preproc_if_token1] = ACTIONS(2595), - [aux_sym_preproc_if_token2] = ACTIONS(2595), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), - [aux_sym_preproc_else_token1] = ACTIONS(2595), - [aux_sym_preproc_elif_token1] = ACTIONS(2595), - [sym_preproc_directive] = ACTIONS(2595), - [anon_sym_LPAREN2] = ACTIONS(2597), - [anon_sym_BANG] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2595), - [anon_sym_PLUS] = ACTIONS(2595), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_AMP_AMP] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2597), - [anon_sym_typedef] = ACTIONS(2595), - [anon_sym_extern] = ACTIONS(2595), - [anon_sym___attribute__] = ACTIONS(2595), - [anon_sym_COLON_COLON] = ACTIONS(2597), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), - [anon_sym___declspec] = ACTIONS(2595), - [anon_sym___based] = ACTIONS(2595), - [anon_sym___cdecl] = ACTIONS(2595), - [anon_sym___clrcall] = ACTIONS(2595), - [anon_sym___stdcall] = ACTIONS(2595), - [anon_sym___fastcall] = ACTIONS(2595), - [anon_sym___thiscall] = ACTIONS(2595), - [anon_sym___vectorcall] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_static] = ACTIONS(2595), - [anon_sym_register] = ACTIONS(2595), - [anon_sym_inline] = ACTIONS(2595), - [anon_sym_thread_local] = ACTIONS(2595), - [anon_sym_const] = ACTIONS(2595), - [anon_sym_volatile] = ACTIONS(2595), - [anon_sym_restrict] = ACTIONS(2595), - [anon_sym__Atomic] = ACTIONS(2595), - [anon_sym_mutable] = ACTIONS(2595), - [anon_sym_constexpr] = ACTIONS(2595), - [anon_sym_constinit] = ACTIONS(2595), - [anon_sym_consteval] = ACTIONS(2595), - [anon_sym_signed] = ACTIONS(2595), - [anon_sym_unsigned] = ACTIONS(2595), - [anon_sym_long] = ACTIONS(2595), - [anon_sym_short] = ACTIONS(2595), - [sym_primitive_type] = ACTIONS(2595), - [anon_sym_enum] = ACTIONS(2595), - [anon_sym_class] = ACTIONS(2595), - [anon_sym_struct] = ACTIONS(2595), - [anon_sym_union] = ACTIONS(2595), - [anon_sym_if] = ACTIONS(2595), - [anon_sym_else] = ACTIONS(2595), - [anon_sym_switch] = ACTIONS(2595), - [anon_sym_case] = ACTIONS(2595), - [anon_sym_default] = ACTIONS(2595), - [anon_sym_while] = ACTIONS(2595), - [anon_sym_do] = ACTIONS(2595), - [anon_sym_for] = ACTIONS(2595), - [anon_sym_return] = ACTIONS(2595), - [anon_sym_break] = ACTIONS(2595), - [anon_sym_continue] = ACTIONS(2595), - [anon_sym_goto] = ACTIONS(2595), - [anon_sym_not] = ACTIONS(2595), - [anon_sym_compl] = ACTIONS(2595), - [anon_sym_DASH_DASH] = ACTIONS(2597), - [anon_sym_PLUS_PLUS] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2595), - [sym_number_literal] = ACTIONS(2597), - [anon_sym_L_SQUOTE] = ACTIONS(2597), - [anon_sym_u_SQUOTE] = ACTIONS(2597), - [anon_sym_U_SQUOTE] = ACTIONS(2597), - [anon_sym_u8_SQUOTE] = ACTIONS(2597), - [anon_sym_SQUOTE] = ACTIONS(2597), - [anon_sym_L_DQUOTE] = ACTIONS(2597), - [anon_sym_u_DQUOTE] = ACTIONS(2597), - [anon_sym_U_DQUOTE] = ACTIONS(2597), - [anon_sym_u8_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [sym_true] = ACTIONS(2595), - [sym_false] = ACTIONS(2595), - [sym_null] = ACTIONS(2595), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2595), - [anon_sym_decltype] = ACTIONS(2595), - [anon_sym_virtual] = ACTIONS(2595), - [anon_sym_explicit] = ACTIONS(2595), - [anon_sym_typename] = ACTIONS(2595), - [anon_sym_template] = ACTIONS(2595), - [anon_sym_operator] = ACTIONS(2595), - [anon_sym_try] = ACTIONS(2595), - [anon_sym_delete] = ACTIONS(2595), - [anon_sym_throw] = ACTIONS(2595), - [anon_sym_namespace] = ACTIONS(2595), - [anon_sym_using] = ACTIONS(2595), - [anon_sym_static_assert] = ACTIONS(2595), - [anon_sym_concept] = ACTIONS(2595), - [anon_sym_co_return] = ACTIONS(2595), - [anon_sym_co_yield] = ACTIONS(2595), - [anon_sym_R_DQUOTE] = ACTIONS(2597), - [anon_sym_LR_DQUOTE] = ACTIONS(2597), - [anon_sym_uR_DQUOTE] = ACTIONS(2597), - [anon_sym_UR_DQUOTE] = ACTIONS(2597), - [anon_sym_u8R_DQUOTE] = ACTIONS(2597), - [anon_sym_co_await] = ACTIONS(2595), - [anon_sym_new] = ACTIONS(2595), - [anon_sym_requires] = ACTIONS(2595), - [sym_this] = ACTIONS(2595), - [sym_nullptr] = ACTIONS(2595), - }, - [456] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [457] = { - [sym_identifier] = ACTIONS(2599), - [aux_sym_preproc_include_token1] = ACTIONS(2599), - [aux_sym_preproc_def_token1] = ACTIONS(2599), - [aux_sym_preproc_if_token1] = ACTIONS(2599), - [aux_sym_preproc_if_token2] = ACTIONS(2599), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2599), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2599), - [aux_sym_preproc_else_token1] = ACTIONS(2599), - [aux_sym_preproc_elif_token1] = ACTIONS(2599), - [sym_preproc_directive] = ACTIONS(2599), - [anon_sym_LPAREN2] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2599), - [anon_sym_PLUS] = ACTIONS(2599), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_AMP_AMP] = ACTIONS(2601), - [anon_sym_AMP] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2601), - [anon_sym_typedef] = ACTIONS(2599), - [anon_sym_extern] = ACTIONS(2599), - [anon_sym___attribute__] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), - [anon_sym___declspec] = ACTIONS(2599), - [anon_sym___based] = ACTIONS(2599), - [anon_sym___cdecl] = ACTIONS(2599), - [anon_sym___clrcall] = ACTIONS(2599), - [anon_sym___stdcall] = ACTIONS(2599), - [anon_sym___fastcall] = ACTIONS(2599), - [anon_sym___thiscall] = ACTIONS(2599), - [anon_sym___vectorcall] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_static] = ACTIONS(2599), - [anon_sym_register] = ACTIONS(2599), - [anon_sym_inline] = ACTIONS(2599), - [anon_sym_thread_local] = ACTIONS(2599), - [anon_sym_const] = ACTIONS(2599), - [anon_sym_volatile] = ACTIONS(2599), - [anon_sym_restrict] = ACTIONS(2599), - [anon_sym__Atomic] = ACTIONS(2599), - [anon_sym_mutable] = ACTIONS(2599), - [anon_sym_constexpr] = ACTIONS(2599), - [anon_sym_constinit] = ACTIONS(2599), - [anon_sym_consteval] = ACTIONS(2599), - [anon_sym_signed] = ACTIONS(2599), - [anon_sym_unsigned] = ACTIONS(2599), - [anon_sym_long] = ACTIONS(2599), - [anon_sym_short] = ACTIONS(2599), - [sym_primitive_type] = ACTIONS(2599), - [anon_sym_enum] = ACTIONS(2599), - [anon_sym_class] = ACTIONS(2599), - [anon_sym_struct] = ACTIONS(2599), - [anon_sym_union] = ACTIONS(2599), - [anon_sym_if] = ACTIONS(2599), - [anon_sym_else] = ACTIONS(2599), - [anon_sym_switch] = ACTIONS(2599), - [anon_sym_case] = ACTIONS(2599), - [anon_sym_default] = ACTIONS(2599), - [anon_sym_while] = ACTIONS(2599), - [anon_sym_do] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2599), - [anon_sym_break] = ACTIONS(2599), - [anon_sym_continue] = ACTIONS(2599), - [anon_sym_goto] = ACTIONS(2599), - [anon_sym_not] = ACTIONS(2599), - [anon_sym_compl] = ACTIONS(2599), - [anon_sym_DASH_DASH] = ACTIONS(2601), - [anon_sym_PLUS_PLUS] = ACTIONS(2601), - [anon_sym_sizeof] = ACTIONS(2599), - [sym_number_literal] = ACTIONS(2601), - [anon_sym_L_SQUOTE] = ACTIONS(2601), - [anon_sym_u_SQUOTE] = ACTIONS(2601), - [anon_sym_U_SQUOTE] = ACTIONS(2601), - [anon_sym_u8_SQUOTE] = ACTIONS(2601), - [anon_sym_SQUOTE] = ACTIONS(2601), - [anon_sym_L_DQUOTE] = ACTIONS(2601), - [anon_sym_u_DQUOTE] = ACTIONS(2601), - [anon_sym_U_DQUOTE] = ACTIONS(2601), - [anon_sym_u8_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [sym_true] = ACTIONS(2599), - [sym_false] = ACTIONS(2599), - [sym_null] = ACTIONS(2599), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2599), - [anon_sym_decltype] = ACTIONS(2599), - [anon_sym_virtual] = ACTIONS(2599), - [anon_sym_explicit] = ACTIONS(2599), - [anon_sym_typename] = ACTIONS(2599), - [anon_sym_template] = ACTIONS(2599), - [anon_sym_operator] = ACTIONS(2599), - [anon_sym_try] = ACTIONS(2599), - [anon_sym_delete] = ACTIONS(2599), - [anon_sym_throw] = ACTIONS(2599), - [anon_sym_namespace] = ACTIONS(2599), - [anon_sym_using] = ACTIONS(2599), - [anon_sym_static_assert] = ACTIONS(2599), - [anon_sym_concept] = ACTIONS(2599), - [anon_sym_co_return] = ACTIONS(2599), - [anon_sym_co_yield] = ACTIONS(2599), - [anon_sym_R_DQUOTE] = ACTIONS(2601), - [anon_sym_LR_DQUOTE] = ACTIONS(2601), - [anon_sym_uR_DQUOTE] = ACTIONS(2601), - [anon_sym_UR_DQUOTE] = ACTIONS(2601), - [anon_sym_u8R_DQUOTE] = ACTIONS(2601), - [anon_sym_co_await] = ACTIONS(2599), - [anon_sym_new] = ACTIONS(2599), - [anon_sym_requires] = ACTIONS(2599), - [sym_this] = ACTIONS(2599), - [sym_nullptr] = ACTIONS(2599), - }, - [458] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [459] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [460] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [461] = { - [sym_identifier] = ACTIONS(2603), - [aux_sym_preproc_include_token1] = ACTIONS(2603), - [aux_sym_preproc_def_token1] = ACTIONS(2603), - [aux_sym_preproc_if_token1] = ACTIONS(2603), - [aux_sym_preproc_if_token2] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), - [aux_sym_preproc_else_token1] = ACTIONS(2603), - [aux_sym_preproc_elif_token1] = ACTIONS(2603), - [sym_preproc_directive] = ACTIONS(2603), - [anon_sym_LPAREN2] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2603), - [anon_sym_PLUS] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2605), - [anon_sym_typedef] = ACTIONS(2603), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym___attribute__] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2605), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), - [anon_sym___declspec] = ACTIONS(2603), - [anon_sym___based] = ACTIONS(2603), - [anon_sym___cdecl] = ACTIONS(2603), - [anon_sym___clrcall] = ACTIONS(2603), - [anon_sym___stdcall] = ACTIONS(2603), - [anon_sym___fastcall] = ACTIONS(2603), - [anon_sym___thiscall] = ACTIONS(2603), - [anon_sym___vectorcall] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2603), - [anon_sym_register] = ACTIONS(2603), - [anon_sym_inline] = ACTIONS(2603), - [anon_sym_thread_local] = ACTIONS(2603), - [anon_sym_const] = ACTIONS(2603), - [anon_sym_volatile] = ACTIONS(2603), - [anon_sym_restrict] = ACTIONS(2603), - [anon_sym__Atomic] = ACTIONS(2603), - [anon_sym_mutable] = ACTIONS(2603), - [anon_sym_constexpr] = ACTIONS(2603), - [anon_sym_constinit] = ACTIONS(2603), - [anon_sym_consteval] = ACTIONS(2603), - [anon_sym_signed] = ACTIONS(2603), - [anon_sym_unsigned] = ACTIONS(2603), - [anon_sym_long] = ACTIONS(2603), - [anon_sym_short] = ACTIONS(2603), - [sym_primitive_type] = ACTIONS(2603), - [anon_sym_enum] = ACTIONS(2603), - [anon_sym_class] = ACTIONS(2603), - [anon_sym_struct] = ACTIONS(2603), - [anon_sym_union] = ACTIONS(2603), - [anon_sym_if] = ACTIONS(2603), - [anon_sym_else] = ACTIONS(2603), - [anon_sym_switch] = ACTIONS(2603), - [anon_sym_case] = ACTIONS(2603), - [anon_sym_default] = ACTIONS(2603), - [anon_sym_while] = ACTIONS(2603), - [anon_sym_do] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2603), - [anon_sym_break] = ACTIONS(2603), - [anon_sym_continue] = ACTIONS(2603), - [anon_sym_goto] = ACTIONS(2603), - [anon_sym_not] = ACTIONS(2603), - [anon_sym_compl] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2605), - [anon_sym_PLUS_PLUS] = ACTIONS(2605), - [anon_sym_sizeof] = ACTIONS(2603), - [sym_number_literal] = ACTIONS(2605), - [anon_sym_L_SQUOTE] = ACTIONS(2605), - [anon_sym_u_SQUOTE] = ACTIONS(2605), - [anon_sym_U_SQUOTE] = ACTIONS(2605), - [anon_sym_u8_SQUOTE] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(2605), - [anon_sym_L_DQUOTE] = ACTIONS(2605), - [anon_sym_u_DQUOTE] = ACTIONS(2605), - [anon_sym_U_DQUOTE] = ACTIONS(2605), - [anon_sym_u8_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [sym_true] = ACTIONS(2603), - [sym_false] = ACTIONS(2603), - [sym_null] = ACTIONS(2603), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2603), - [anon_sym_decltype] = ACTIONS(2603), - [anon_sym_virtual] = ACTIONS(2603), - [anon_sym_explicit] = ACTIONS(2603), - [anon_sym_typename] = ACTIONS(2603), - [anon_sym_template] = ACTIONS(2603), - [anon_sym_operator] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2603), - [anon_sym_delete] = ACTIONS(2603), - [anon_sym_throw] = ACTIONS(2603), - [anon_sym_namespace] = ACTIONS(2603), - [anon_sym_using] = ACTIONS(2603), - [anon_sym_static_assert] = ACTIONS(2603), - [anon_sym_concept] = ACTIONS(2603), - [anon_sym_co_return] = ACTIONS(2603), - [anon_sym_co_yield] = ACTIONS(2603), - [anon_sym_R_DQUOTE] = ACTIONS(2605), - [anon_sym_LR_DQUOTE] = ACTIONS(2605), - [anon_sym_uR_DQUOTE] = ACTIONS(2605), - [anon_sym_UR_DQUOTE] = ACTIONS(2605), - [anon_sym_u8R_DQUOTE] = ACTIONS(2605), - [anon_sym_co_await] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2603), - [anon_sym_requires] = ACTIONS(2603), - [sym_this] = ACTIONS(2603), - [sym_nullptr] = ACTIONS(2603), - }, - [462] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3632), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5723), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(6101), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2607), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [463] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [464] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3641), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5661), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(5943), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(2609), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [465] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [466] = { - [sym_identifier] = ACTIONS(2603), - [aux_sym_preproc_include_token1] = ACTIONS(2603), - [aux_sym_preproc_def_token1] = ACTIONS(2603), - [aux_sym_preproc_if_token1] = ACTIONS(2603), - [aux_sym_preproc_if_token2] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), - [aux_sym_preproc_else_token1] = ACTIONS(2603), - [aux_sym_preproc_elif_token1] = ACTIONS(2603), - [sym_preproc_directive] = ACTIONS(2603), - [anon_sym_LPAREN2] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2603), - [anon_sym_PLUS] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2605), - [anon_sym_typedef] = ACTIONS(2603), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym___attribute__] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2605), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), - [anon_sym___declspec] = ACTIONS(2603), - [anon_sym___based] = ACTIONS(2603), - [anon_sym___cdecl] = ACTIONS(2603), - [anon_sym___clrcall] = ACTIONS(2603), - [anon_sym___stdcall] = ACTIONS(2603), - [anon_sym___fastcall] = ACTIONS(2603), - [anon_sym___thiscall] = ACTIONS(2603), - [anon_sym___vectorcall] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2603), - [anon_sym_register] = ACTIONS(2603), - [anon_sym_inline] = ACTIONS(2603), - [anon_sym_thread_local] = ACTIONS(2603), - [anon_sym_const] = ACTIONS(2603), - [anon_sym_volatile] = ACTIONS(2603), - [anon_sym_restrict] = ACTIONS(2603), - [anon_sym__Atomic] = ACTIONS(2603), - [anon_sym_mutable] = ACTIONS(2603), - [anon_sym_constexpr] = ACTIONS(2603), - [anon_sym_constinit] = ACTIONS(2603), - [anon_sym_consteval] = ACTIONS(2603), - [anon_sym_signed] = ACTIONS(2603), - [anon_sym_unsigned] = ACTIONS(2603), - [anon_sym_long] = ACTIONS(2603), - [anon_sym_short] = ACTIONS(2603), - [sym_primitive_type] = ACTIONS(2603), - [anon_sym_enum] = ACTIONS(2603), - [anon_sym_class] = ACTIONS(2603), - [anon_sym_struct] = ACTIONS(2603), - [anon_sym_union] = ACTIONS(2603), - [anon_sym_if] = ACTIONS(2603), - [anon_sym_else] = ACTIONS(2603), - [anon_sym_switch] = ACTIONS(2603), - [anon_sym_case] = ACTIONS(2603), - [anon_sym_default] = ACTIONS(2603), - [anon_sym_while] = ACTIONS(2603), - [anon_sym_do] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2603), - [anon_sym_break] = ACTIONS(2603), - [anon_sym_continue] = ACTIONS(2603), - [anon_sym_goto] = ACTIONS(2603), - [anon_sym_not] = ACTIONS(2603), - [anon_sym_compl] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2605), - [anon_sym_PLUS_PLUS] = ACTIONS(2605), - [anon_sym_sizeof] = ACTIONS(2603), - [sym_number_literal] = ACTIONS(2605), - [anon_sym_L_SQUOTE] = ACTIONS(2605), - [anon_sym_u_SQUOTE] = ACTIONS(2605), - [anon_sym_U_SQUOTE] = ACTIONS(2605), - [anon_sym_u8_SQUOTE] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(2605), - [anon_sym_L_DQUOTE] = ACTIONS(2605), - [anon_sym_u_DQUOTE] = ACTIONS(2605), - [anon_sym_U_DQUOTE] = ACTIONS(2605), - [anon_sym_u8_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [sym_true] = ACTIONS(2603), - [sym_false] = ACTIONS(2603), - [sym_null] = ACTIONS(2603), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2603), - [anon_sym_decltype] = ACTIONS(2603), - [anon_sym_virtual] = ACTIONS(2603), - [anon_sym_explicit] = ACTIONS(2603), - [anon_sym_typename] = ACTIONS(2603), - [anon_sym_template] = ACTIONS(2603), - [anon_sym_operator] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2603), - [anon_sym_delete] = ACTIONS(2603), - [anon_sym_throw] = ACTIONS(2603), - [anon_sym_namespace] = ACTIONS(2603), - [anon_sym_using] = ACTIONS(2603), - [anon_sym_static_assert] = ACTIONS(2603), - [anon_sym_concept] = ACTIONS(2603), - [anon_sym_co_return] = ACTIONS(2603), - [anon_sym_co_yield] = ACTIONS(2603), - [anon_sym_R_DQUOTE] = ACTIONS(2605), - [anon_sym_LR_DQUOTE] = ACTIONS(2605), - [anon_sym_uR_DQUOTE] = ACTIONS(2605), - [anon_sym_UR_DQUOTE] = ACTIONS(2605), - [anon_sym_u8R_DQUOTE] = ACTIONS(2605), - [anon_sym_co_await] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2603), - [anon_sym_requires] = ACTIONS(2603), - [sym_this] = ACTIONS(2603), - [sym_nullptr] = ACTIONS(2603), - }, - [467] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [468] = { - [sym_identifier] = ACTIONS(2611), - [aux_sym_preproc_include_token1] = ACTIONS(2611), - [aux_sym_preproc_def_token1] = ACTIONS(2611), - [aux_sym_preproc_if_token1] = ACTIONS(2611), - [aux_sym_preproc_if_token2] = ACTIONS(2611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), - [aux_sym_preproc_else_token1] = ACTIONS(2611), - [aux_sym_preproc_elif_token1] = ACTIONS(2611), - [sym_preproc_directive] = ACTIONS(2611), - [anon_sym_LPAREN2] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2611), - [anon_sym_PLUS] = ACTIONS(2611), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_typedef] = ACTIONS(2611), - [anon_sym_extern] = ACTIONS(2611), - [anon_sym___attribute__] = ACTIONS(2611), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), - [anon_sym___declspec] = ACTIONS(2611), - [anon_sym___based] = ACTIONS(2611), - [anon_sym___cdecl] = ACTIONS(2611), - [anon_sym___clrcall] = ACTIONS(2611), - [anon_sym___stdcall] = ACTIONS(2611), - [anon_sym___fastcall] = ACTIONS(2611), - [anon_sym___thiscall] = ACTIONS(2611), - [anon_sym___vectorcall] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2611), - [anon_sym_static] = ACTIONS(2611), - [anon_sym_register] = ACTIONS(2611), - [anon_sym_inline] = ACTIONS(2611), - [anon_sym_thread_local] = ACTIONS(2611), - [anon_sym_const] = ACTIONS(2611), - [anon_sym_volatile] = ACTIONS(2611), - [anon_sym_restrict] = ACTIONS(2611), - [anon_sym__Atomic] = ACTIONS(2611), - [anon_sym_mutable] = ACTIONS(2611), - [anon_sym_constexpr] = ACTIONS(2611), - [anon_sym_constinit] = ACTIONS(2611), - [anon_sym_consteval] = ACTIONS(2611), - [anon_sym_signed] = ACTIONS(2611), - [anon_sym_unsigned] = ACTIONS(2611), - [anon_sym_long] = ACTIONS(2611), - [anon_sym_short] = ACTIONS(2611), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_enum] = ACTIONS(2611), - [anon_sym_class] = ACTIONS(2611), - [anon_sym_struct] = ACTIONS(2611), - [anon_sym_union] = ACTIONS(2611), - [anon_sym_if] = ACTIONS(2611), - [anon_sym_else] = ACTIONS(2611), - [anon_sym_switch] = ACTIONS(2611), - [anon_sym_case] = ACTIONS(2611), - [anon_sym_default] = ACTIONS(2611), - [anon_sym_while] = ACTIONS(2611), - [anon_sym_do] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2611), - [anon_sym_break] = ACTIONS(2611), - [anon_sym_continue] = ACTIONS(2611), - [anon_sym_goto] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(2611), - [anon_sym_compl] = ACTIONS(2611), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_sizeof] = ACTIONS(2611), - [sym_number_literal] = ACTIONS(2613), - [anon_sym_L_SQUOTE] = ACTIONS(2613), - [anon_sym_u_SQUOTE] = ACTIONS(2613), - [anon_sym_U_SQUOTE] = ACTIONS(2613), - [anon_sym_u8_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_L_DQUOTE] = ACTIONS(2613), - [anon_sym_u_DQUOTE] = ACTIONS(2613), - [anon_sym_U_DQUOTE] = ACTIONS(2613), - [anon_sym_u8_DQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [sym_true] = ACTIONS(2611), - [sym_false] = ACTIONS(2611), - [sym_null] = ACTIONS(2611), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2611), - [anon_sym_decltype] = ACTIONS(2611), - [anon_sym_virtual] = ACTIONS(2611), - [anon_sym_explicit] = ACTIONS(2611), - [anon_sym_typename] = ACTIONS(2611), - [anon_sym_template] = ACTIONS(2611), - [anon_sym_operator] = ACTIONS(2611), - [anon_sym_try] = ACTIONS(2611), - [anon_sym_delete] = ACTIONS(2611), - [anon_sym_throw] = ACTIONS(2611), - [anon_sym_namespace] = ACTIONS(2611), - [anon_sym_using] = ACTIONS(2611), - [anon_sym_static_assert] = ACTIONS(2611), - [anon_sym_concept] = ACTIONS(2611), - [anon_sym_co_return] = ACTIONS(2611), - [anon_sym_co_yield] = ACTIONS(2611), - [anon_sym_R_DQUOTE] = ACTIONS(2613), - [anon_sym_LR_DQUOTE] = ACTIONS(2613), - [anon_sym_uR_DQUOTE] = ACTIONS(2613), - [anon_sym_UR_DQUOTE] = ACTIONS(2613), - [anon_sym_u8R_DQUOTE] = ACTIONS(2613), - [anon_sym_co_await] = ACTIONS(2611), - [anon_sym_new] = ACTIONS(2611), - [anon_sym_requires] = ACTIONS(2611), - [sym_this] = ACTIONS(2611), - [sym_nullptr] = ACTIONS(2611), - }, - [469] = { - [sym_identifier] = ACTIONS(2615), - [aux_sym_preproc_include_token1] = ACTIONS(2615), - [aux_sym_preproc_def_token1] = ACTIONS(2615), - [aux_sym_preproc_if_token1] = ACTIONS(2615), - [aux_sym_preproc_if_token2] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), - [aux_sym_preproc_else_token1] = ACTIONS(2615), - [aux_sym_preproc_elif_token1] = ACTIONS(2615), - [sym_preproc_directive] = ACTIONS(2615), - [anon_sym_LPAREN2] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2615), - [anon_sym_PLUS] = ACTIONS(2615), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_typedef] = ACTIONS(2615), - [anon_sym_extern] = ACTIONS(2615), - [anon_sym___attribute__] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), - [anon_sym___declspec] = ACTIONS(2615), - [anon_sym___based] = ACTIONS(2615), - [anon_sym___cdecl] = ACTIONS(2615), - [anon_sym___clrcall] = ACTIONS(2615), - [anon_sym___stdcall] = ACTIONS(2615), - [anon_sym___fastcall] = ACTIONS(2615), - [anon_sym___thiscall] = ACTIONS(2615), - [anon_sym___vectorcall] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_static] = ACTIONS(2615), - [anon_sym_register] = ACTIONS(2615), - [anon_sym_inline] = ACTIONS(2615), - [anon_sym_thread_local] = ACTIONS(2615), - [anon_sym_const] = ACTIONS(2615), - [anon_sym_volatile] = ACTIONS(2615), - [anon_sym_restrict] = ACTIONS(2615), - [anon_sym__Atomic] = ACTIONS(2615), - [anon_sym_mutable] = ACTIONS(2615), - [anon_sym_constexpr] = ACTIONS(2615), - [anon_sym_constinit] = ACTIONS(2615), - [anon_sym_consteval] = ACTIONS(2615), - [anon_sym_signed] = ACTIONS(2615), - [anon_sym_unsigned] = ACTIONS(2615), - [anon_sym_long] = ACTIONS(2615), - [anon_sym_short] = ACTIONS(2615), - [sym_primitive_type] = ACTIONS(2615), - [anon_sym_enum] = ACTIONS(2615), - [anon_sym_class] = ACTIONS(2615), - [anon_sym_struct] = ACTIONS(2615), - [anon_sym_union] = ACTIONS(2615), - [anon_sym_if] = ACTIONS(2615), - [anon_sym_else] = ACTIONS(2615), - [anon_sym_switch] = ACTIONS(2615), - [anon_sym_case] = ACTIONS(2615), - [anon_sym_default] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2615), - [anon_sym_do] = ACTIONS(2615), - [anon_sym_for] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_goto] = ACTIONS(2615), - [anon_sym_not] = ACTIONS(2615), - [anon_sym_compl] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_sizeof] = ACTIONS(2615), - [sym_number_literal] = ACTIONS(2617), - [anon_sym_L_SQUOTE] = ACTIONS(2617), - [anon_sym_u_SQUOTE] = ACTIONS(2617), - [anon_sym_U_SQUOTE] = ACTIONS(2617), - [anon_sym_u8_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_L_DQUOTE] = ACTIONS(2617), - [anon_sym_u_DQUOTE] = ACTIONS(2617), - [anon_sym_U_DQUOTE] = ACTIONS(2617), - [anon_sym_u8_DQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [sym_true] = ACTIONS(2615), - [sym_false] = ACTIONS(2615), - [sym_null] = ACTIONS(2615), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2615), - [anon_sym_decltype] = ACTIONS(2615), - [anon_sym_virtual] = ACTIONS(2615), - [anon_sym_explicit] = ACTIONS(2615), - [anon_sym_typename] = ACTIONS(2615), - [anon_sym_template] = ACTIONS(2615), - [anon_sym_operator] = ACTIONS(2615), - [anon_sym_try] = ACTIONS(2615), - [anon_sym_delete] = ACTIONS(2615), - [anon_sym_throw] = ACTIONS(2615), - [anon_sym_namespace] = ACTIONS(2615), - [anon_sym_using] = ACTIONS(2615), - [anon_sym_static_assert] = ACTIONS(2615), - [anon_sym_concept] = ACTIONS(2615), - [anon_sym_co_return] = ACTIONS(2615), - [anon_sym_co_yield] = ACTIONS(2615), - [anon_sym_R_DQUOTE] = ACTIONS(2617), - [anon_sym_LR_DQUOTE] = ACTIONS(2617), - [anon_sym_uR_DQUOTE] = ACTIONS(2617), - [anon_sym_UR_DQUOTE] = ACTIONS(2617), - [anon_sym_u8R_DQUOTE] = ACTIONS(2617), - [anon_sym_co_await] = ACTIONS(2615), - [anon_sym_new] = ACTIONS(2615), - [anon_sym_requires] = ACTIONS(2615), - [sym_this] = ACTIONS(2615), - [sym_nullptr] = ACTIONS(2615), - }, - [470] = { - [sym_identifier] = ACTIONS(2619), - [aux_sym_preproc_include_token1] = ACTIONS(2619), - [aux_sym_preproc_def_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token2] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), - [aux_sym_preproc_else_token1] = ACTIONS(2619), - [aux_sym_preproc_elif_token1] = ACTIONS(2619), - [sym_preproc_directive] = ACTIONS(2619), - [anon_sym_LPAREN2] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2619), - [anon_sym_PLUS] = ACTIONS(2619), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_typedef] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym___attribute__] = ACTIONS(2619), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), - [anon_sym___declspec] = ACTIONS(2619), - [anon_sym___based] = ACTIONS(2619), - [anon_sym___cdecl] = ACTIONS(2619), - [anon_sym___clrcall] = ACTIONS(2619), - [anon_sym___stdcall] = ACTIONS(2619), - [anon_sym___fastcall] = ACTIONS(2619), - [anon_sym___thiscall] = ACTIONS(2619), - [anon_sym___vectorcall] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_register] = ACTIONS(2619), - [anon_sym_inline] = ACTIONS(2619), - [anon_sym_thread_local] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_volatile] = ACTIONS(2619), - [anon_sym_restrict] = ACTIONS(2619), - [anon_sym__Atomic] = ACTIONS(2619), - [anon_sym_mutable] = ACTIONS(2619), - [anon_sym_constexpr] = ACTIONS(2619), - [anon_sym_constinit] = ACTIONS(2619), - [anon_sym_consteval] = ACTIONS(2619), - [anon_sym_signed] = ACTIONS(2619), - [anon_sym_unsigned] = ACTIONS(2619), - [anon_sym_long] = ACTIONS(2619), - [anon_sym_short] = ACTIONS(2619), - [sym_primitive_type] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_class] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [anon_sym_if] = ACTIONS(2619), - [anon_sym_else] = ACTIONS(2619), - [anon_sym_switch] = ACTIONS(2619), - [anon_sym_case] = ACTIONS(2619), - [anon_sym_default] = ACTIONS(2619), - [anon_sym_while] = ACTIONS(2619), - [anon_sym_do] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2619), - [anon_sym_return] = ACTIONS(2619), - [anon_sym_break] = ACTIONS(2619), - [anon_sym_continue] = ACTIONS(2619), - [anon_sym_goto] = ACTIONS(2619), - [anon_sym_not] = ACTIONS(2619), - [anon_sym_compl] = ACTIONS(2619), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_sizeof] = ACTIONS(2619), - [sym_number_literal] = ACTIONS(2621), - [anon_sym_L_SQUOTE] = ACTIONS(2621), - [anon_sym_u_SQUOTE] = ACTIONS(2621), - [anon_sym_U_SQUOTE] = ACTIONS(2621), - [anon_sym_u8_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_L_DQUOTE] = ACTIONS(2621), - [anon_sym_u_DQUOTE] = ACTIONS(2621), - [anon_sym_U_DQUOTE] = ACTIONS(2621), - [anon_sym_u8_DQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [sym_true] = ACTIONS(2619), - [sym_false] = ACTIONS(2619), - [sym_null] = ACTIONS(2619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2619), - [anon_sym_decltype] = ACTIONS(2619), - [anon_sym_virtual] = ACTIONS(2619), - [anon_sym_explicit] = ACTIONS(2619), - [anon_sym_typename] = ACTIONS(2619), - [anon_sym_template] = ACTIONS(2619), - [anon_sym_operator] = ACTIONS(2619), - [anon_sym_try] = ACTIONS(2619), - [anon_sym_delete] = ACTIONS(2619), - [anon_sym_throw] = ACTIONS(2619), - [anon_sym_namespace] = ACTIONS(2619), - [anon_sym_using] = ACTIONS(2619), - [anon_sym_static_assert] = ACTIONS(2619), - [anon_sym_concept] = ACTIONS(2619), - [anon_sym_co_return] = ACTIONS(2619), - [anon_sym_co_yield] = ACTIONS(2619), - [anon_sym_R_DQUOTE] = ACTIONS(2621), - [anon_sym_LR_DQUOTE] = ACTIONS(2621), - [anon_sym_uR_DQUOTE] = ACTIONS(2621), - [anon_sym_UR_DQUOTE] = ACTIONS(2621), - [anon_sym_u8R_DQUOTE] = ACTIONS(2621), - [anon_sym_co_await] = ACTIONS(2619), - [anon_sym_new] = ACTIONS(2619), - [anon_sym_requires] = ACTIONS(2619), - [sym_this] = ACTIONS(2619), - [sym_nullptr] = ACTIONS(2619), - }, - [471] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [472] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [473] = { - [sym_identifier] = ACTIONS(2623), - [aux_sym_preproc_include_token1] = ACTIONS(2623), - [aux_sym_preproc_def_token1] = ACTIONS(2623), - [aux_sym_preproc_if_token1] = ACTIONS(2623), - [aux_sym_preproc_if_token2] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), - [aux_sym_preproc_else_token1] = ACTIONS(2623), - [aux_sym_preproc_elif_token1] = ACTIONS(2623), - [sym_preproc_directive] = ACTIONS(2623), - [anon_sym_LPAREN2] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2623), - [anon_sym_PLUS] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_typedef] = ACTIONS(2623), - [anon_sym_extern] = ACTIONS(2623), - [anon_sym___attribute__] = ACTIONS(2623), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), - [anon_sym___declspec] = ACTIONS(2623), - [anon_sym___based] = ACTIONS(2623), - [anon_sym___cdecl] = ACTIONS(2623), - [anon_sym___clrcall] = ACTIONS(2623), - [anon_sym___stdcall] = ACTIONS(2623), - [anon_sym___fastcall] = ACTIONS(2623), - [anon_sym___thiscall] = ACTIONS(2623), - [anon_sym___vectorcall] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_static] = ACTIONS(2623), - [anon_sym_register] = ACTIONS(2623), - [anon_sym_inline] = ACTIONS(2623), - [anon_sym_thread_local] = ACTIONS(2623), - [anon_sym_const] = ACTIONS(2623), - [anon_sym_volatile] = ACTIONS(2623), - [anon_sym_restrict] = ACTIONS(2623), - [anon_sym__Atomic] = ACTIONS(2623), - [anon_sym_mutable] = ACTIONS(2623), - [anon_sym_constexpr] = ACTIONS(2623), - [anon_sym_constinit] = ACTIONS(2623), - [anon_sym_consteval] = ACTIONS(2623), - [anon_sym_signed] = ACTIONS(2623), - [anon_sym_unsigned] = ACTIONS(2623), - [anon_sym_long] = ACTIONS(2623), - [anon_sym_short] = ACTIONS(2623), - [sym_primitive_type] = ACTIONS(2623), - [anon_sym_enum] = ACTIONS(2623), - [anon_sym_class] = ACTIONS(2623), - [anon_sym_struct] = ACTIONS(2623), - [anon_sym_union] = ACTIONS(2623), - [anon_sym_if] = ACTIONS(2623), - [anon_sym_else] = ACTIONS(2623), - [anon_sym_switch] = ACTIONS(2623), - [anon_sym_case] = ACTIONS(2623), - [anon_sym_default] = ACTIONS(2623), - [anon_sym_while] = ACTIONS(2623), - [anon_sym_do] = ACTIONS(2623), - [anon_sym_for] = ACTIONS(2623), - [anon_sym_return] = ACTIONS(2623), - [anon_sym_break] = ACTIONS(2623), - [anon_sym_continue] = ACTIONS(2623), - [anon_sym_goto] = ACTIONS(2623), - [anon_sym_not] = ACTIONS(2623), - [anon_sym_compl] = ACTIONS(2623), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_sizeof] = ACTIONS(2623), - [sym_number_literal] = ACTIONS(2625), - [anon_sym_L_SQUOTE] = ACTIONS(2625), - [anon_sym_u_SQUOTE] = ACTIONS(2625), - [anon_sym_U_SQUOTE] = ACTIONS(2625), - [anon_sym_u8_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_L_DQUOTE] = ACTIONS(2625), - [anon_sym_u_DQUOTE] = ACTIONS(2625), - [anon_sym_U_DQUOTE] = ACTIONS(2625), - [anon_sym_u8_DQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [sym_true] = ACTIONS(2623), - [sym_false] = ACTIONS(2623), - [sym_null] = ACTIONS(2623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2623), - [anon_sym_decltype] = ACTIONS(2623), - [anon_sym_virtual] = ACTIONS(2623), - [anon_sym_explicit] = ACTIONS(2623), - [anon_sym_typename] = ACTIONS(2623), - [anon_sym_template] = ACTIONS(2623), - [anon_sym_operator] = ACTIONS(2623), - [anon_sym_try] = ACTIONS(2623), - [anon_sym_delete] = ACTIONS(2623), - [anon_sym_throw] = ACTIONS(2623), - [anon_sym_namespace] = ACTIONS(2623), - [anon_sym_using] = ACTIONS(2623), - [anon_sym_static_assert] = ACTIONS(2623), - [anon_sym_concept] = ACTIONS(2623), - [anon_sym_co_return] = ACTIONS(2623), - [anon_sym_co_yield] = ACTIONS(2623), - [anon_sym_R_DQUOTE] = ACTIONS(2625), - [anon_sym_LR_DQUOTE] = ACTIONS(2625), - [anon_sym_uR_DQUOTE] = ACTIONS(2625), - [anon_sym_UR_DQUOTE] = ACTIONS(2625), - [anon_sym_u8R_DQUOTE] = ACTIONS(2625), - [anon_sym_co_await] = ACTIONS(2623), - [anon_sym_new] = ACTIONS(2623), - [anon_sym_requires] = ACTIONS(2623), - [sym_this] = ACTIONS(2623), - [sym_nullptr] = ACTIONS(2623), - }, - [474] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [475] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [476] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [477] = { - [sym_catch_clause] = STATE(342), - [aux_sym_constructor_try_statement_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2372), - [aux_sym_preproc_include_token1] = ACTIONS(2372), - [aux_sym_preproc_def_token1] = ACTIONS(2372), - [aux_sym_preproc_if_token1] = ACTIONS(2372), - [aux_sym_preproc_if_token2] = ACTIONS(2372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2372), - [sym_preproc_directive] = ACTIONS(2372), - [anon_sym_LPAREN2] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_PLUS] = ACTIONS(2372), - [anon_sym_STAR] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_typedef] = ACTIONS(2372), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym___attribute__] = ACTIONS(2372), - [anon_sym_COLON_COLON] = ACTIONS(2374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2374), - [anon_sym___declspec] = ACTIONS(2372), - [anon_sym___based] = ACTIONS(2372), - [anon_sym___cdecl] = ACTIONS(2372), - [anon_sym___clrcall] = ACTIONS(2372), - [anon_sym___stdcall] = ACTIONS(2372), - [anon_sym___fastcall] = ACTIONS(2372), - [anon_sym___thiscall] = ACTIONS(2372), - [anon_sym___vectorcall] = ACTIONS(2372), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2372), - [anon_sym_static] = ACTIONS(2372), - [anon_sym_register] = ACTIONS(2372), - [anon_sym_inline] = ACTIONS(2372), - [anon_sym_thread_local] = ACTIONS(2372), - [anon_sym_const] = ACTIONS(2372), - [anon_sym_volatile] = ACTIONS(2372), - [anon_sym_restrict] = ACTIONS(2372), - [anon_sym__Atomic] = ACTIONS(2372), - [anon_sym_mutable] = ACTIONS(2372), - [anon_sym_constexpr] = ACTIONS(2372), - [anon_sym_constinit] = ACTIONS(2372), - [anon_sym_consteval] = ACTIONS(2372), - [anon_sym_signed] = ACTIONS(2372), - [anon_sym_unsigned] = ACTIONS(2372), - [anon_sym_long] = ACTIONS(2372), - [anon_sym_short] = ACTIONS(2372), - [sym_primitive_type] = ACTIONS(2372), - [anon_sym_enum] = ACTIONS(2372), - [anon_sym_class] = ACTIONS(2372), - [anon_sym_struct] = ACTIONS(2372), - [anon_sym_union] = ACTIONS(2372), - [anon_sym_if] = ACTIONS(2372), - [anon_sym_switch] = ACTIONS(2372), - [anon_sym_case] = ACTIONS(2372), - [anon_sym_default] = ACTIONS(2372), - [anon_sym_while] = ACTIONS(2372), - [anon_sym_do] = ACTIONS(2372), - [anon_sym_for] = ACTIONS(2372), - [anon_sym_return] = ACTIONS(2372), - [anon_sym_break] = ACTIONS(2372), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2372), - [anon_sym_not] = ACTIONS(2372), - [anon_sym_compl] = ACTIONS(2372), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_sizeof] = ACTIONS(2372), - [sym_number_literal] = ACTIONS(2374), - [anon_sym_L_SQUOTE] = ACTIONS(2374), - [anon_sym_u_SQUOTE] = ACTIONS(2374), - [anon_sym_U_SQUOTE] = ACTIONS(2374), - [anon_sym_u8_SQUOTE] = ACTIONS(2374), - [anon_sym_SQUOTE] = ACTIONS(2374), - [anon_sym_L_DQUOTE] = ACTIONS(2374), - [anon_sym_u_DQUOTE] = ACTIONS(2374), - [anon_sym_U_DQUOTE] = ACTIONS(2374), - [anon_sym_u8_DQUOTE] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2374), - [sym_true] = ACTIONS(2372), - [sym_false] = ACTIONS(2372), - [sym_null] = ACTIONS(2372), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2372), - [anon_sym_decltype] = ACTIONS(2372), - [anon_sym_virtual] = ACTIONS(2372), - [anon_sym_explicit] = ACTIONS(2372), - [anon_sym_typename] = ACTIONS(2372), - [anon_sym_template] = ACTIONS(2372), - [anon_sym_operator] = ACTIONS(2372), - [anon_sym_try] = ACTIONS(2372), - [anon_sym_delete] = ACTIONS(2372), - [anon_sym_throw] = ACTIONS(2372), - [anon_sym_namespace] = ACTIONS(2372), - [anon_sym_using] = ACTIONS(2372), - [anon_sym_static_assert] = ACTIONS(2372), - [anon_sym_concept] = ACTIONS(2372), - [anon_sym_co_return] = ACTIONS(2372), - [anon_sym_co_yield] = ACTIONS(2372), - [anon_sym_catch] = ACTIONS(2376), - [anon_sym_R_DQUOTE] = ACTIONS(2374), - [anon_sym_LR_DQUOTE] = ACTIONS(2374), - [anon_sym_uR_DQUOTE] = ACTIONS(2374), - [anon_sym_UR_DQUOTE] = ACTIONS(2374), - [anon_sym_u8R_DQUOTE] = ACTIONS(2374), - [anon_sym_co_await] = ACTIONS(2372), - [anon_sym_new] = ACTIONS(2372), - [anon_sym_requires] = ACTIONS(2372), - [sym_this] = ACTIONS(2372), - [sym_nullptr] = ACTIONS(2372), - }, - [478] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [479] = { - [sym_identifier] = ACTIONS(2627), - [aux_sym_preproc_include_token1] = ACTIONS(2627), - [aux_sym_preproc_def_token1] = ACTIONS(2627), - [aux_sym_preproc_if_token1] = ACTIONS(2627), - [aux_sym_preproc_if_token2] = ACTIONS(2627), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), - [aux_sym_preproc_else_token1] = ACTIONS(2627), - [aux_sym_preproc_elif_token1] = ACTIONS(2627), - [sym_preproc_directive] = ACTIONS(2627), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_PLUS] = ACTIONS(2627), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_AMP_AMP] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym_typedef] = ACTIONS(2627), - [anon_sym_extern] = ACTIONS(2627), - [anon_sym___attribute__] = ACTIONS(2627), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), - [anon_sym___declspec] = ACTIONS(2627), - [anon_sym___based] = ACTIONS(2627), - [anon_sym___cdecl] = ACTIONS(2627), - [anon_sym___clrcall] = ACTIONS(2627), - [anon_sym___stdcall] = ACTIONS(2627), - [anon_sym___fastcall] = ACTIONS(2627), - [anon_sym___thiscall] = ACTIONS(2627), - [anon_sym___vectorcall] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_static] = ACTIONS(2627), - [anon_sym_register] = ACTIONS(2627), - [anon_sym_inline] = ACTIONS(2627), - [anon_sym_thread_local] = ACTIONS(2627), - [anon_sym_const] = ACTIONS(2627), - [anon_sym_volatile] = ACTIONS(2627), - [anon_sym_restrict] = ACTIONS(2627), - [anon_sym__Atomic] = ACTIONS(2627), - [anon_sym_mutable] = ACTIONS(2627), - [anon_sym_constexpr] = ACTIONS(2627), - [anon_sym_constinit] = ACTIONS(2627), - [anon_sym_consteval] = ACTIONS(2627), - [anon_sym_signed] = ACTIONS(2627), - [anon_sym_unsigned] = ACTIONS(2627), - [anon_sym_long] = ACTIONS(2627), - [anon_sym_short] = ACTIONS(2627), - [sym_primitive_type] = ACTIONS(2627), - [anon_sym_enum] = ACTIONS(2627), - [anon_sym_class] = ACTIONS(2627), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_union] = ACTIONS(2627), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2627), - [anon_sym_switch] = ACTIONS(2627), - [anon_sym_case] = ACTIONS(2627), - [anon_sym_default] = ACTIONS(2627), - [anon_sym_while] = ACTIONS(2627), - [anon_sym_do] = ACTIONS(2627), - [anon_sym_for] = ACTIONS(2627), - [anon_sym_return] = ACTIONS(2627), - [anon_sym_break] = ACTIONS(2627), - [anon_sym_continue] = ACTIONS(2627), - [anon_sym_goto] = ACTIONS(2627), - [anon_sym_not] = ACTIONS(2627), - [anon_sym_compl] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_sizeof] = ACTIONS(2627), - [sym_number_literal] = ACTIONS(2629), - [anon_sym_L_SQUOTE] = ACTIONS(2629), - [anon_sym_u_SQUOTE] = ACTIONS(2629), - [anon_sym_U_SQUOTE] = ACTIONS(2629), - [anon_sym_u8_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_L_DQUOTE] = ACTIONS(2629), - [anon_sym_u_DQUOTE] = ACTIONS(2629), - [anon_sym_U_DQUOTE] = ACTIONS(2629), - [anon_sym_u8_DQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [sym_null] = ACTIONS(2627), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2627), - [anon_sym_decltype] = ACTIONS(2627), - [anon_sym_virtual] = ACTIONS(2627), - [anon_sym_explicit] = ACTIONS(2627), - [anon_sym_typename] = ACTIONS(2627), - [anon_sym_template] = ACTIONS(2627), - [anon_sym_operator] = ACTIONS(2627), - [anon_sym_try] = ACTIONS(2627), - [anon_sym_delete] = ACTIONS(2627), - [anon_sym_throw] = ACTIONS(2627), - [anon_sym_namespace] = ACTIONS(2627), - [anon_sym_using] = ACTIONS(2627), - [anon_sym_static_assert] = ACTIONS(2627), - [anon_sym_concept] = ACTIONS(2627), - [anon_sym_co_return] = ACTIONS(2627), - [anon_sym_co_yield] = ACTIONS(2627), - [anon_sym_R_DQUOTE] = ACTIONS(2629), - [anon_sym_LR_DQUOTE] = ACTIONS(2629), - [anon_sym_uR_DQUOTE] = ACTIONS(2629), - [anon_sym_UR_DQUOTE] = ACTIONS(2629), - [anon_sym_u8R_DQUOTE] = ACTIONS(2629), - [anon_sym_co_await] = ACTIONS(2627), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_requires] = ACTIONS(2627), - [sym_this] = ACTIONS(2627), - [sym_nullptr] = ACTIONS(2627), - }, - [480] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [481] = { - [sym_identifier] = ACTIONS(2631), - [aux_sym_preproc_include_token1] = ACTIONS(2631), - [aux_sym_preproc_def_token1] = ACTIONS(2631), - [aux_sym_preproc_if_token1] = ACTIONS(2631), - [aux_sym_preproc_if_token2] = ACTIONS(2631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), - [aux_sym_preproc_else_token1] = ACTIONS(2631), - [aux_sym_preproc_elif_token1] = ACTIONS(2631), - [sym_preproc_directive] = ACTIONS(2631), - [anon_sym_LPAREN2] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2631), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_typedef] = ACTIONS(2631), - [anon_sym_extern] = ACTIONS(2631), - [anon_sym___attribute__] = ACTIONS(2631), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), - [anon_sym___declspec] = ACTIONS(2631), - [anon_sym___based] = ACTIONS(2631), - [anon_sym___cdecl] = ACTIONS(2631), - [anon_sym___clrcall] = ACTIONS(2631), - [anon_sym___stdcall] = ACTIONS(2631), - [anon_sym___fastcall] = ACTIONS(2631), - [anon_sym___thiscall] = ACTIONS(2631), - [anon_sym___vectorcall] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_register] = ACTIONS(2631), - [anon_sym_inline] = ACTIONS(2631), - [anon_sym_thread_local] = ACTIONS(2631), - [anon_sym_const] = ACTIONS(2631), - [anon_sym_volatile] = ACTIONS(2631), - [anon_sym_restrict] = ACTIONS(2631), - [anon_sym__Atomic] = ACTIONS(2631), - [anon_sym_mutable] = ACTIONS(2631), - [anon_sym_constexpr] = ACTIONS(2631), - [anon_sym_constinit] = ACTIONS(2631), - [anon_sym_consteval] = ACTIONS(2631), - [anon_sym_signed] = ACTIONS(2631), - [anon_sym_unsigned] = ACTIONS(2631), - [anon_sym_long] = ACTIONS(2631), - [anon_sym_short] = ACTIONS(2631), - [sym_primitive_type] = ACTIONS(2631), - [anon_sym_enum] = ACTIONS(2631), - [anon_sym_class] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2631), - [anon_sym_union] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_else] = ACTIONS(2631), - [anon_sym_switch] = ACTIONS(2631), - [anon_sym_case] = ACTIONS(2631), - [anon_sym_default] = ACTIONS(2631), - [anon_sym_while] = ACTIONS(2631), - [anon_sym_do] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_return] = ACTIONS(2631), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_continue] = ACTIONS(2631), - [anon_sym_goto] = ACTIONS(2631), - [anon_sym_not] = ACTIONS(2631), - [anon_sym_compl] = ACTIONS(2631), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_sizeof] = ACTIONS(2631), - [sym_number_literal] = ACTIONS(2633), - [anon_sym_L_SQUOTE] = ACTIONS(2633), - [anon_sym_u_SQUOTE] = ACTIONS(2633), - [anon_sym_U_SQUOTE] = ACTIONS(2633), - [anon_sym_u8_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_L_DQUOTE] = ACTIONS(2633), - [anon_sym_u_DQUOTE] = ACTIONS(2633), - [anon_sym_U_DQUOTE] = ACTIONS(2633), - [anon_sym_u8_DQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [sym_true] = ACTIONS(2631), - [sym_false] = ACTIONS(2631), - [sym_null] = ACTIONS(2631), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2631), - [anon_sym_decltype] = ACTIONS(2631), - [anon_sym_virtual] = ACTIONS(2631), - [anon_sym_explicit] = ACTIONS(2631), - [anon_sym_typename] = ACTIONS(2631), - [anon_sym_template] = ACTIONS(2631), - [anon_sym_operator] = ACTIONS(2631), - [anon_sym_try] = ACTIONS(2631), - [anon_sym_delete] = ACTIONS(2631), - [anon_sym_throw] = ACTIONS(2631), - [anon_sym_namespace] = ACTIONS(2631), - [anon_sym_using] = ACTIONS(2631), - [anon_sym_static_assert] = ACTIONS(2631), - [anon_sym_concept] = ACTIONS(2631), - [anon_sym_co_return] = ACTIONS(2631), - [anon_sym_co_yield] = ACTIONS(2631), - [anon_sym_R_DQUOTE] = ACTIONS(2633), - [anon_sym_LR_DQUOTE] = ACTIONS(2633), - [anon_sym_uR_DQUOTE] = ACTIONS(2633), - [anon_sym_UR_DQUOTE] = ACTIONS(2633), - [anon_sym_u8R_DQUOTE] = ACTIONS(2633), - [anon_sym_co_await] = ACTIONS(2631), - [anon_sym_new] = ACTIONS(2631), - [anon_sym_requires] = ACTIONS(2631), - [sym_this] = ACTIONS(2631), - [sym_nullptr] = ACTIONS(2631), - }, - [482] = { - [sym_identifier] = ACTIONS(2635), - [aux_sym_preproc_include_token1] = ACTIONS(2635), - [aux_sym_preproc_def_token1] = ACTIONS(2635), - [aux_sym_preproc_if_token1] = ACTIONS(2635), - [aux_sym_preproc_if_token2] = ACTIONS(2635), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), - [aux_sym_preproc_else_token1] = ACTIONS(2635), - [aux_sym_preproc_elif_token1] = ACTIONS(2635), - [sym_preproc_directive] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2635), - [anon_sym_extern] = ACTIONS(2635), - [anon_sym___attribute__] = ACTIONS(2635), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), - [anon_sym___declspec] = ACTIONS(2635), - [anon_sym___based] = ACTIONS(2635), - [anon_sym___cdecl] = ACTIONS(2635), - [anon_sym___clrcall] = ACTIONS(2635), - [anon_sym___stdcall] = ACTIONS(2635), - [anon_sym___fastcall] = ACTIONS(2635), - [anon_sym___thiscall] = ACTIONS(2635), - [anon_sym___vectorcall] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_static] = ACTIONS(2635), - [anon_sym_register] = ACTIONS(2635), - [anon_sym_inline] = ACTIONS(2635), - [anon_sym_thread_local] = ACTIONS(2635), - [anon_sym_const] = ACTIONS(2635), - [anon_sym_volatile] = ACTIONS(2635), - [anon_sym_restrict] = ACTIONS(2635), - [anon_sym__Atomic] = ACTIONS(2635), - [anon_sym_mutable] = ACTIONS(2635), - [anon_sym_constexpr] = ACTIONS(2635), - [anon_sym_constinit] = ACTIONS(2635), - [anon_sym_consteval] = ACTIONS(2635), - [anon_sym_signed] = ACTIONS(2635), - [anon_sym_unsigned] = ACTIONS(2635), - [anon_sym_long] = ACTIONS(2635), - [anon_sym_short] = ACTIONS(2635), - [sym_primitive_type] = ACTIONS(2635), - [anon_sym_enum] = ACTIONS(2635), - [anon_sym_class] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2635), - [anon_sym_union] = ACTIONS(2635), - [anon_sym_if] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(2635), - [anon_sym_switch] = ACTIONS(2635), - [anon_sym_case] = ACTIONS(2635), - [anon_sym_default] = ACTIONS(2635), - [anon_sym_while] = ACTIONS(2635), - [anon_sym_do] = ACTIONS(2635), - [anon_sym_for] = ACTIONS(2635), - [anon_sym_return] = ACTIONS(2635), - [anon_sym_break] = ACTIONS(2635), - [anon_sym_continue] = ACTIONS(2635), - [anon_sym_goto] = ACTIONS(2635), - [anon_sym_not] = ACTIONS(2635), - [anon_sym_compl] = ACTIONS(2635), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_sizeof] = ACTIONS(2635), - [sym_number_literal] = ACTIONS(2637), - [anon_sym_L_SQUOTE] = ACTIONS(2637), - [anon_sym_u_SQUOTE] = ACTIONS(2637), - [anon_sym_U_SQUOTE] = ACTIONS(2637), - [anon_sym_u8_SQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_L_DQUOTE] = ACTIONS(2637), - [anon_sym_u_DQUOTE] = ACTIONS(2637), - [anon_sym_U_DQUOTE] = ACTIONS(2637), - [anon_sym_u8_DQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [sym_true] = ACTIONS(2635), - [sym_false] = ACTIONS(2635), - [sym_null] = ACTIONS(2635), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2635), - [anon_sym_decltype] = ACTIONS(2635), - [anon_sym_virtual] = ACTIONS(2635), - [anon_sym_explicit] = ACTIONS(2635), - [anon_sym_typename] = ACTIONS(2635), - [anon_sym_template] = ACTIONS(2635), - [anon_sym_operator] = ACTIONS(2635), - [anon_sym_try] = ACTIONS(2635), - [anon_sym_delete] = ACTIONS(2635), - [anon_sym_throw] = ACTIONS(2635), - [anon_sym_namespace] = ACTIONS(2635), - [anon_sym_using] = ACTIONS(2635), - [anon_sym_static_assert] = ACTIONS(2635), - [anon_sym_concept] = ACTIONS(2635), - [anon_sym_co_return] = ACTIONS(2635), - [anon_sym_co_yield] = ACTIONS(2635), - [anon_sym_R_DQUOTE] = ACTIONS(2637), - [anon_sym_LR_DQUOTE] = ACTIONS(2637), - [anon_sym_uR_DQUOTE] = ACTIONS(2637), - [anon_sym_UR_DQUOTE] = ACTIONS(2637), - [anon_sym_u8R_DQUOTE] = ACTIONS(2637), - [anon_sym_co_await] = ACTIONS(2635), - [anon_sym_new] = ACTIONS(2635), - [anon_sym_requires] = ACTIONS(2635), - [sym_this] = ACTIONS(2635), - [sym_nullptr] = ACTIONS(2635), - }, - [483] = { - [sym_identifier] = ACTIONS(2639), - [aux_sym_preproc_include_token1] = ACTIONS(2639), - [aux_sym_preproc_def_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token2] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), - [aux_sym_preproc_else_token1] = ACTIONS(2639), - [aux_sym_preproc_elif_token1] = ACTIONS(2639), - [sym_preproc_directive] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2639), - [anon_sym_PLUS] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym___based] = ACTIONS(2639), - [anon_sym___cdecl] = ACTIONS(2639), - [anon_sym___clrcall] = ACTIONS(2639), - [anon_sym___stdcall] = ACTIONS(2639), - [anon_sym___fastcall] = ACTIONS(2639), - [anon_sym___thiscall] = ACTIONS(2639), - [anon_sym___vectorcall] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_else] = ACTIONS(2639), - [anon_sym_switch] = ACTIONS(2639), - [anon_sym_case] = ACTIONS(2639), - [anon_sym_default] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_do] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_goto] = ACTIONS(2639), - [anon_sym_not] = ACTIONS(2639), - [anon_sym_compl] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_sizeof] = ACTIONS(2639), - [sym_number_literal] = ACTIONS(2641), - [anon_sym_L_SQUOTE] = ACTIONS(2641), - [anon_sym_u_SQUOTE] = ACTIONS(2641), - [anon_sym_U_SQUOTE] = ACTIONS(2641), - [anon_sym_u8_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_L_DQUOTE] = ACTIONS(2641), - [anon_sym_u_DQUOTE] = ACTIONS(2641), - [anon_sym_U_DQUOTE] = ACTIONS(2641), - [anon_sym_u8_DQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_true] = ACTIONS(2639), - [sym_false] = ACTIONS(2639), - [sym_null] = ACTIONS(2639), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_explicit] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_operator] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [anon_sym_delete] = ACTIONS(2639), - [anon_sym_throw] = ACTIONS(2639), - [anon_sym_namespace] = ACTIONS(2639), - [anon_sym_using] = ACTIONS(2639), - [anon_sym_static_assert] = ACTIONS(2639), - [anon_sym_concept] = ACTIONS(2639), - [anon_sym_co_return] = ACTIONS(2639), - [anon_sym_co_yield] = ACTIONS(2639), - [anon_sym_R_DQUOTE] = ACTIONS(2641), - [anon_sym_LR_DQUOTE] = ACTIONS(2641), - [anon_sym_uR_DQUOTE] = ACTIONS(2641), - [anon_sym_UR_DQUOTE] = ACTIONS(2641), - [anon_sym_u8R_DQUOTE] = ACTIONS(2641), - [anon_sym_co_await] = ACTIONS(2639), - [anon_sym_new] = ACTIONS(2639), - [anon_sym_requires] = ACTIONS(2639), - [sym_this] = ACTIONS(2639), - [sym_nullptr] = ACTIONS(2639), - }, - [484] = { - [sym_identifier] = ACTIONS(2643), - [aux_sym_preproc_include_token1] = ACTIONS(2643), - [aux_sym_preproc_def_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token2] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), - [aux_sym_preproc_else_token1] = ACTIONS(2643), - [aux_sym_preproc_elif_token1] = ACTIONS(2643), - [sym_preproc_directive] = ACTIONS(2643), - [anon_sym_LPAREN2] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_AMP_AMP] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_typedef] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym___attribute__] = ACTIONS(2643), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), - [anon_sym___declspec] = ACTIONS(2643), - [anon_sym___based] = ACTIONS(2643), - [anon_sym___cdecl] = ACTIONS(2643), - [anon_sym___clrcall] = ACTIONS(2643), - [anon_sym___stdcall] = ACTIONS(2643), - [anon_sym___fastcall] = ACTIONS(2643), - [anon_sym___thiscall] = ACTIONS(2643), - [anon_sym___vectorcall] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_register] = ACTIONS(2643), - [anon_sym_inline] = ACTIONS(2643), - [anon_sym_thread_local] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_volatile] = ACTIONS(2643), - [anon_sym_restrict] = ACTIONS(2643), - [anon_sym__Atomic] = ACTIONS(2643), - [anon_sym_mutable] = ACTIONS(2643), - [anon_sym_constexpr] = ACTIONS(2643), - [anon_sym_constinit] = ACTIONS(2643), - [anon_sym_consteval] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2643), - [anon_sym_unsigned] = ACTIONS(2643), - [anon_sym_long] = ACTIONS(2643), - [anon_sym_short] = ACTIONS(2643), - [sym_primitive_type] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_else] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2643), - [anon_sym_case] = ACTIONS(2643), - [anon_sym_default] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym_not] = ACTIONS(2643), - [anon_sym_compl] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2643), - [sym_number_literal] = ACTIONS(2645), - [anon_sym_L_SQUOTE] = ACTIONS(2645), - [anon_sym_u_SQUOTE] = ACTIONS(2645), - [anon_sym_U_SQUOTE] = ACTIONS(2645), - [anon_sym_u8_SQUOTE] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2645), - [anon_sym_L_DQUOTE] = ACTIONS(2645), - [anon_sym_u_DQUOTE] = ACTIONS(2645), - [anon_sym_U_DQUOTE] = ACTIONS(2645), - [anon_sym_u8_DQUOTE] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2645), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_null] = ACTIONS(2643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2643), - [anon_sym_decltype] = ACTIONS(2643), - [anon_sym_virtual] = ACTIONS(2643), - [anon_sym_explicit] = ACTIONS(2643), - [anon_sym_typename] = ACTIONS(2643), - [anon_sym_template] = ACTIONS(2643), - [anon_sym_operator] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2643), - [anon_sym_delete] = ACTIONS(2643), - [anon_sym_throw] = ACTIONS(2643), - [anon_sym_namespace] = ACTIONS(2643), - [anon_sym_using] = ACTIONS(2643), - [anon_sym_static_assert] = ACTIONS(2643), - [anon_sym_concept] = ACTIONS(2643), - [anon_sym_co_return] = ACTIONS(2643), - [anon_sym_co_yield] = ACTIONS(2643), - [anon_sym_R_DQUOTE] = ACTIONS(2645), - [anon_sym_LR_DQUOTE] = ACTIONS(2645), - [anon_sym_uR_DQUOTE] = ACTIONS(2645), - [anon_sym_UR_DQUOTE] = ACTIONS(2645), - [anon_sym_u8R_DQUOTE] = ACTIONS(2645), - [anon_sym_co_await] = ACTIONS(2643), - [anon_sym_new] = ACTIONS(2643), - [anon_sym_requires] = ACTIONS(2643), - [sym_this] = ACTIONS(2643), - [sym_nullptr] = ACTIONS(2643), - }, - [485] = { - [sym_identifier] = ACTIONS(2649), - [aux_sym_preproc_include_token1] = ACTIONS(2649), - [aux_sym_preproc_def_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token2] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), - [aux_sym_preproc_else_token1] = ACTIONS(2649), - [aux_sym_preproc_elif_token1] = ACTIONS(2649), - [sym_preproc_directive] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym_typedef] = ACTIONS(2649), - [anon_sym_extern] = ACTIONS(2649), - [anon_sym___attribute__] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), - [anon_sym___declspec] = ACTIONS(2649), - [anon_sym___based] = ACTIONS(2649), - [anon_sym___cdecl] = ACTIONS(2649), - [anon_sym___clrcall] = ACTIONS(2649), - [anon_sym___stdcall] = ACTIONS(2649), - [anon_sym___fastcall] = ACTIONS(2649), - [anon_sym___thiscall] = ACTIONS(2649), - [anon_sym___vectorcall] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_register] = ACTIONS(2649), - [anon_sym_inline] = ACTIONS(2649), - [anon_sym_thread_local] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_volatile] = ACTIONS(2649), - [anon_sym_restrict] = ACTIONS(2649), - [anon_sym__Atomic] = ACTIONS(2649), - [anon_sym_mutable] = ACTIONS(2649), - [anon_sym_constexpr] = ACTIONS(2649), - [anon_sym_constinit] = ACTIONS(2649), - [anon_sym_consteval] = ACTIONS(2649), - [anon_sym_signed] = ACTIONS(2649), - [anon_sym_unsigned] = ACTIONS(2649), - [anon_sym_long] = ACTIONS(2649), - [anon_sym_short] = ACTIONS(2649), - [sym_primitive_type] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_class] = ACTIONS(2649), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_switch] = ACTIONS(2649), - [anon_sym_case] = ACTIONS(2649), - [anon_sym_default] = ACTIONS(2649), - [anon_sym_while] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_compl] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_PLUS_PLUS] = ACTIONS(2651), - [anon_sym_sizeof] = ACTIONS(2649), - [sym_number_literal] = ACTIONS(2651), - [anon_sym_L_SQUOTE] = ACTIONS(2651), - [anon_sym_u_SQUOTE] = ACTIONS(2651), - [anon_sym_U_SQUOTE] = ACTIONS(2651), - [anon_sym_u8_SQUOTE] = ACTIONS(2651), - [anon_sym_SQUOTE] = ACTIONS(2651), - [anon_sym_L_DQUOTE] = ACTIONS(2651), - [anon_sym_u_DQUOTE] = ACTIONS(2651), - [anon_sym_U_DQUOTE] = ACTIONS(2651), - [anon_sym_u8_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_null] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2649), - [anon_sym_decltype] = ACTIONS(2649), - [anon_sym_virtual] = ACTIONS(2649), - [anon_sym_explicit] = ACTIONS(2649), - [anon_sym_typename] = ACTIONS(2649), - [anon_sym_template] = ACTIONS(2649), - [anon_sym_operator] = ACTIONS(2649), - [anon_sym_try] = ACTIONS(2649), - [anon_sym_delete] = ACTIONS(2649), - [anon_sym_throw] = ACTIONS(2649), - [anon_sym_namespace] = ACTIONS(2649), - [anon_sym_using] = ACTIONS(2649), - [anon_sym_static_assert] = ACTIONS(2649), - [anon_sym_concept] = ACTIONS(2649), - [anon_sym_co_return] = ACTIONS(2649), - [anon_sym_co_yield] = ACTIONS(2649), - [anon_sym_R_DQUOTE] = ACTIONS(2651), - [anon_sym_LR_DQUOTE] = ACTIONS(2651), - [anon_sym_uR_DQUOTE] = ACTIONS(2651), - [anon_sym_UR_DQUOTE] = ACTIONS(2651), - [anon_sym_u8R_DQUOTE] = ACTIONS(2651), - [anon_sym_co_await] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2649), - [anon_sym_requires] = ACTIONS(2649), - [sym_this] = ACTIONS(2649), - [sym_nullptr] = ACTIONS(2649), - }, - [486] = { - [sym_identifier] = ACTIONS(2653), - [aux_sym_preproc_include_token1] = ACTIONS(2653), - [aux_sym_preproc_def_token1] = ACTIONS(2653), - [aux_sym_preproc_if_token1] = ACTIONS(2653), - [aux_sym_preproc_if_token2] = ACTIONS(2653), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2653), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2653), - [aux_sym_preproc_else_token1] = ACTIONS(2653), - [aux_sym_preproc_elif_token1] = ACTIONS(2653), - [sym_preproc_directive] = ACTIONS(2653), - [anon_sym_LPAREN2] = ACTIONS(2655), - [anon_sym_BANG] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2655), - [anon_sym_AMP_AMP] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_SEMI] = ACTIONS(2655), - [anon_sym_typedef] = ACTIONS(2653), - [anon_sym_extern] = ACTIONS(2653), - [anon_sym___attribute__] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2655), - [anon_sym___declspec] = ACTIONS(2653), - [anon_sym___based] = ACTIONS(2653), - [anon_sym___cdecl] = ACTIONS(2653), - [anon_sym___clrcall] = ACTIONS(2653), - [anon_sym___stdcall] = ACTIONS(2653), - [anon_sym___fastcall] = ACTIONS(2653), - [anon_sym___thiscall] = ACTIONS(2653), - [anon_sym___vectorcall] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_static] = ACTIONS(2653), - [anon_sym_register] = ACTIONS(2653), - [anon_sym_inline] = ACTIONS(2653), - [anon_sym_thread_local] = ACTIONS(2653), - [anon_sym_const] = ACTIONS(2653), - [anon_sym_volatile] = ACTIONS(2653), - [anon_sym_restrict] = ACTIONS(2653), - [anon_sym__Atomic] = ACTIONS(2653), - [anon_sym_mutable] = ACTIONS(2653), - [anon_sym_constexpr] = ACTIONS(2653), - [anon_sym_constinit] = ACTIONS(2653), - [anon_sym_consteval] = ACTIONS(2653), - [anon_sym_signed] = ACTIONS(2653), - [anon_sym_unsigned] = ACTIONS(2653), - [anon_sym_long] = ACTIONS(2653), - [anon_sym_short] = ACTIONS(2653), - [sym_primitive_type] = ACTIONS(2653), - [anon_sym_enum] = ACTIONS(2653), - [anon_sym_class] = ACTIONS(2653), - [anon_sym_struct] = ACTIONS(2653), - [anon_sym_union] = ACTIONS(2653), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [anon_sym_case] = ACTIONS(2653), - [anon_sym_default] = ACTIONS(2653), - [anon_sym_while] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2653), - [anon_sym_return] = ACTIONS(2653), - [anon_sym_break] = ACTIONS(2653), - [anon_sym_continue] = ACTIONS(2653), - [anon_sym_goto] = ACTIONS(2653), - [anon_sym_not] = ACTIONS(2653), - [anon_sym_compl] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2653), - [sym_number_literal] = ACTIONS(2655), - [anon_sym_L_SQUOTE] = ACTIONS(2655), - [anon_sym_u_SQUOTE] = ACTIONS(2655), - [anon_sym_U_SQUOTE] = ACTIONS(2655), - [anon_sym_u8_SQUOTE] = ACTIONS(2655), - [anon_sym_SQUOTE] = ACTIONS(2655), - [anon_sym_L_DQUOTE] = ACTIONS(2655), - [anon_sym_u_DQUOTE] = ACTIONS(2655), - [anon_sym_U_DQUOTE] = ACTIONS(2655), - [anon_sym_u8_DQUOTE] = ACTIONS(2655), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym_true] = ACTIONS(2653), - [sym_false] = ACTIONS(2653), - [sym_null] = ACTIONS(2653), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2653), - [anon_sym_decltype] = ACTIONS(2653), - [anon_sym_virtual] = ACTIONS(2653), - [anon_sym_explicit] = ACTIONS(2653), - [anon_sym_typename] = ACTIONS(2653), - [anon_sym_template] = ACTIONS(2653), - [anon_sym_operator] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_delete] = ACTIONS(2653), - [anon_sym_throw] = ACTIONS(2653), - [anon_sym_namespace] = ACTIONS(2653), - [anon_sym_using] = ACTIONS(2653), - [anon_sym_static_assert] = ACTIONS(2653), - [anon_sym_concept] = ACTIONS(2653), - [anon_sym_co_return] = ACTIONS(2653), - [anon_sym_co_yield] = ACTIONS(2653), - [anon_sym_R_DQUOTE] = ACTIONS(2655), - [anon_sym_LR_DQUOTE] = ACTIONS(2655), - [anon_sym_uR_DQUOTE] = ACTIONS(2655), - [anon_sym_UR_DQUOTE] = ACTIONS(2655), - [anon_sym_u8R_DQUOTE] = ACTIONS(2655), - [anon_sym_co_await] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2653), - [anon_sym_requires] = ACTIONS(2653), - [sym_this] = ACTIONS(2653), - [sym_nullptr] = ACTIONS(2653), - }, - [487] = { - [sym_identifier] = ACTIONS(2657), - [aux_sym_preproc_include_token1] = ACTIONS(2657), - [aux_sym_preproc_def_token1] = ACTIONS(2657), - [aux_sym_preproc_if_token1] = ACTIONS(2657), - [aux_sym_preproc_if_token2] = ACTIONS(2657), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2657), - [aux_sym_preproc_else_token1] = ACTIONS(2657), - [aux_sym_preproc_elif_token1] = ACTIONS(2657), - [sym_preproc_directive] = ACTIONS(2657), - [anon_sym_LPAREN2] = ACTIONS(2659), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2659), - [anon_sym_AMP_AMP] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_SEMI] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2657), - [anon_sym_extern] = ACTIONS(2657), - [anon_sym___attribute__] = ACTIONS(2657), - [anon_sym_COLON_COLON] = ACTIONS(2659), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2659), - [anon_sym___declspec] = ACTIONS(2657), - [anon_sym___based] = ACTIONS(2657), - [anon_sym___cdecl] = ACTIONS(2657), - [anon_sym___clrcall] = ACTIONS(2657), - [anon_sym___stdcall] = ACTIONS(2657), - [anon_sym___fastcall] = ACTIONS(2657), - [anon_sym___thiscall] = ACTIONS(2657), - [anon_sym___vectorcall] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_static] = ACTIONS(2657), - [anon_sym_register] = ACTIONS(2657), - [anon_sym_inline] = ACTIONS(2657), - [anon_sym_thread_local] = ACTIONS(2657), - [anon_sym_const] = ACTIONS(2657), - [anon_sym_volatile] = ACTIONS(2657), - [anon_sym_restrict] = ACTIONS(2657), - [anon_sym__Atomic] = ACTIONS(2657), - [anon_sym_mutable] = ACTIONS(2657), - [anon_sym_constexpr] = ACTIONS(2657), - [anon_sym_constinit] = ACTIONS(2657), - [anon_sym_consteval] = ACTIONS(2657), - [anon_sym_signed] = ACTIONS(2657), - [anon_sym_unsigned] = ACTIONS(2657), - [anon_sym_long] = ACTIONS(2657), - [anon_sym_short] = ACTIONS(2657), - [sym_primitive_type] = ACTIONS(2657), - [anon_sym_enum] = ACTIONS(2657), - [anon_sym_class] = ACTIONS(2657), - [anon_sym_struct] = ACTIONS(2657), - [anon_sym_union] = ACTIONS(2657), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [anon_sym_case] = ACTIONS(2657), - [anon_sym_default] = ACTIONS(2657), - [anon_sym_while] = ACTIONS(2657), - [anon_sym_do] = ACTIONS(2657), - [anon_sym_for] = ACTIONS(2657), - [anon_sym_return] = ACTIONS(2657), - [anon_sym_break] = ACTIONS(2657), - [anon_sym_continue] = ACTIONS(2657), - [anon_sym_goto] = ACTIONS(2657), - [anon_sym_not] = ACTIONS(2657), - [anon_sym_compl] = ACTIONS(2657), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_sizeof] = ACTIONS(2657), - [sym_number_literal] = ACTIONS(2659), - [anon_sym_L_SQUOTE] = ACTIONS(2659), - [anon_sym_u_SQUOTE] = ACTIONS(2659), - [anon_sym_U_SQUOTE] = ACTIONS(2659), - [anon_sym_u8_SQUOTE] = ACTIONS(2659), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_L_DQUOTE] = ACTIONS(2659), - [anon_sym_u_DQUOTE] = ACTIONS(2659), - [anon_sym_U_DQUOTE] = ACTIONS(2659), - [anon_sym_u8_DQUOTE] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2659), - [sym_true] = ACTIONS(2657), - [sym_false] = ACTIONS(2657), - [sym_null] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2657), - [anon_sym_decltype] = ACTIONS(2657), - [anon_sym_virtual] = ACTIONS(2657), - [anon_sym_explicit] = ACTIONS(2657), - [anon_sym_typename] = ACTIONS(2657), - [anon_sym_template] = ACTIONS(2657), - [anon_sym_operator] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_delete] = ACTIONS(2657), - [anon_sym_throw] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2657), - [anon_sym_using] = ACTIONS(2657), - [anon_sym_static_assert] = ACTIONS(2657), - [anon_sym_concept] = ACTIONS(2657), - [anon_sym_co_return] = ACTIONS(2657), - [anon_sym_co_yield] = ACTIONS(2657), - [anon_sym_R_DQUOTE] = ACTIONS(2659), - [anon_sym_LR_DQUOTE] = ACTIONS(2659), - [anon_sym_uR_DQUOTE] = ACTIONS(2659), - [anon_sym_UR_DQUOTE] = ACTIONS(2659), - [anon_sym_u8R_DQUOTE] = ACTIONS(2659), - [anon_sym_co_await] = ACTIONS(2657), - [anon_sym_new] = ACTIONS(2657), - [anon_sym_requires] = ACTIONS(2657), - [sym_this] = ACTIONS(2657), - [sym_nullptr] = ACTIONS(2657), - }, - [488] = { - [sym_identifier] = ACTIONS(2661), - [aux_sym_preproc_include_token1] = ACTIONS(2661), - [aux_sym_preproc_def_token1] = ACTIONS(2661), - [aux_sym_preproc_if_token1] = ACTIONS(2661), - [aux_sym_preproc_if_token2] = ACTIONS(2661), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2661), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2661), - [aux_sym_preproc_else_token1] = ACTIONS(2661), - [aux_sym_preproc_elif_token1] = ACTIONS(2661), - [sym_preproc_directive] = ACTIONS(2661), - [anon_sym_LPAREN2] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_PLUS] = ACTIONS(2661), - [anon_sym_STAR] = ACTIONS(2663), - [anon_sym_AMP_AMP] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2661), - [anon_sym_SEMI] = ACTIONS(2663), - [anon_sym_typedef] = ACTIONS(2661), - [anon_sym_extern] = ACTIONS(2661), - [anon_sym___attribute__] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2663), - [anon_sym___declspec] = ACTIONS(2661), - [anon_sym___based] = ACTIONS(2661), - [anon_sym___cdecl] = ACTIONS(2661), - [anon_sym___clrcall] = ACTIONS(2661), - [anon_sym___stdcall] = ACTIONS(2661), - [anon_sym___fastcall] = ACTIONS(2661), - [anon_sym___thiscall] = ACTIONS(2661), - [anon_sym___vectorcall] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_static] = ACTIONS(2661), - [anon_sym_register] = ACTIONS(2661), - [anon_sym_inline] = ACTIONS(2661), - [anon_sym_thread_local] = ACTIONS(2661), - [anon_sym_const] = ACTIONS(2661), - [anon_sym_volatile] = ACTIONS(2661), - [anon_sym_restrict] = ACTIONS(2661), - [anon_sym__Atomic] = ACTIONS(2661), - [anon_sym_mutable] = ACTIONS(2661), - [anon_sym_constexpr] = ACTIONS(2661), - [anon_sym_constinit] = ACTIONS(2661), - [anon_sym_consteval] = ACTIONS(2661), - [anon_sym_signed] = ACTIONS(2661), - [anon_sym_unsigned] = ACTIONS(2661), - [anon_sym_long] = ACTIONS(2661), - [anon_sym_short] = ACTIONS(2661), - [sym_primitive_type] = ACTIONS(2661), - [anon_sym_enum] = ACTIONS(2661), - [anon_sym_class] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2661), - [anon_sym_union] = ACTIONS(2661), - [anon_sym_if] = ACTIONS(2661), - [anon_sym_switch] = ACTIONS(2661), - [anon_sym_case] = ACTIONS(2661), - [anon_sym_default] = ACTIONS(2661), - [anon_sym_while] = ACTIONS(2661), - [anon_sym_do] = ACTIONS(2661), - [anon_sym_for] = ACTIONS(2661), - [anon_sym_return] = ACTIONS(2661), - [anon_sym_break] = ACTIONS(2661), - [anon_sym_continue] = ACTIONS(2661), - [anon_sym_goto] = ACTIONS(2661), - [anon_sym_not] = ACTIONS(2661), - [anon_sym_compl] = ACTIONS(2661), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_sizeof] = ACTIONS(2661), - [sym_number_literal] = ACTIONS(2663), - [anon_sym_L_SQUOTE] = ACTIONS(2663), - [anon_sym_u_SQUOTE] = ACTIONS(2663), - [anon_sym_U_SQUOTE] = ACTIONS(2663), - [anon_sym_u8_SQUOTE] = ACTIONS(2663), - [anon_sym_SQUOTE] = ACTIONS(2663), - [anon_sym_L_DQUOTE] = ACTIONS(2663), - [anon_sym_u_DQUOTE] = ACTIONS(2663), - [anon_sym_U_DQUOTE] = ACTIONS(2663), - [anon_sym_u8_DQUOTE] = ACTIONS(2663), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym_true] = ACTIONS(2661), - [sym_false] = ACTIONS(2661), - [sym_null] = ACTIONS(2661), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2661), - [anon_sym_decltype] = ACTIONS(2661), - [anon_sym_virtual] = ACTIONS(2661), - [anon_sym_explicit] = ACTIONS(2661), - [anon_sym_typename] = ACTIONS(2661), - [anon_sym_template] = ACTIONS(2661), - [anon_sym_operator] = ACTIONS(2661), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_delete] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2661), - [anon_sym_namespace] = ACTIONS(2661), - [anon_sym_using] = ACTIONS(2661), - [anon_sym_static_assert] = ACTIONS(2661), - [anon_sym_concept] = ACTIONS(2661), - [anon_sym_co_return] = ACTIONS(2661), - [anon_sym_co_yield] = ACTIONS(2661), - [anon_sym_R_DQUOTE] = ACTIONS(2663), - [anon_sym_LR_DQUOTE] = ACTIONS(2663), - [anon_sym_uR_DQUOTE] = ACTIONS(2663), - [anon_sym_UR_DQUOTE] = ACTIONS(2663), - [anon_sym_u8R_DQUOTE] = ACTIONS(2663), - [anon_sym_co_await] = ACTIONS(2661), - [anon_sym_new] = ACTIONS(2661), - [anon_sym_requires] = ACTIONS(2661), - [sym_this] = ACTIONS(2661), - [sym_nullptr] = ACTIONS(2661), - }, - [489] = { - [sym_type_qualifier] = STATE(3388), - [sym__type_specifier] = STATE(4205), - [sym_sized_type_specifier] = STATE(3153), - [sym_enum_specifier] = STATE(3153), - [sym_struct_specifier] = STATE(3153), - [sym_union_specifier] = STATE(3153), - [sym__expression] = STATE(3699), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_type_descriptor] = STATE(5881), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym_placeholder_type_specifier] = STATE(3153), - [sym_decltype_auto] = STATE(3152), - [sym_decltype] = STATE(3153), - [sym_class_specifier] = STATE(3153), - [sym__class_name] = STATE(6582), - [sym_dependent_type] = STATE(3153), - [sym_template_type] = STATE(4444), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_type_parameter_pack_expansion] = STATE(6477), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4922), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(4485), - [sym_user_defined_literal] = STATE(3901), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_sized_type_specifier_repeat1] = STATE(2341), - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2445), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2449), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [490] = { - [sym_identifier] = ACTIONS(2665), - [aux_sym_preproc_include_token1] = ACTIONS(2665), - [aux_sym_preproc_def_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token2] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), - [aux_sym_preproc_else_token1] = ACTIONS(2665), - [aux_sym_preproc_elif_token1] = ACTIONS(2665), - [sym_preproc_directive] = ACTIONS(2665), - [anon_sym_LPAREN2] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym_typedef] = ACTIONS(2665), - [anon_sym_extern] = ACTIONS(2665), - [anon_sym___attribute__] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2667), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), - [anon_sym___declspec] = ACTIONS(2665), - [anon_sym___based] = ACTIONS(2665), - [anon_sym___cdecl] = ACTIONS(2665), - [anon_sym___clrcall] = ACTIONS(2665), - [anon_sym___stdcall] = ACTIONS(2665), - [anon_sym___fastcall] = ACTIONS(2665), - [anon_sym___thiscall] = ACTIONS(2665), - [anon_sym___vectorcall] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_register] = ACTIONS(2665), - [anon_sym_inline] = ACTIONS(2665), - [anon_sym_thread_local] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_volatile] = ACTIONS(2665), - [anon_sym_restrict] = ACTIONS(2665), - [anon_sym__Atomic] = ACTIONS(2665), - [anon_sym_mutable] = ACTIONS(2665), - [anon_sym_constexpr] = ACTIONS(2665), - [anon_sym_constinit] = ACTIONS(2665), - [anon_sym_consteval] = ACTIONS(2665), - [anon_sym_signed] = ACTIONS(2665), - [anon_sym_unsigned] = ACTIONS(2665), - [anon_sym_long] = ACTIONS(2665), - [anon_sym_short] = ACTIONS(2665), - [sym_primitive_type] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_union] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_default] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_do] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_goto] = ACTIONS(2665), - [anon_sym_not] = ACTIONS(2665), - [anon_sym_compl] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_sizeof] = ACTIONS(2665), - [sym_number_literal] = ACTIONS(2667), - [anon_sym_L_SQUOTE] = ACTIONS(2667), - [anon_sym_u_SQUOTE] = ACTIONS(2667), - [anon_sym_U_SQUOTE] = ACTIONS(2667), - [anon_sym_u8_SQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_L_DQUOTE] = ACTIONS(2667), - [anon_sym_u_DQUOTE] = ACTIONS(2667), - [anon_sym_U_DQUOTE] = ACTIONS(2667), - [anon_sym_u8_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [sym_null] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2665), - [anon_sym_decltype] = ACTIONS(2665), - [anon_sym_virtual] = ACTIONS(2665), - [anon_sym_explicit] = ACTIONS(2665), - [anon_sym_typename] = ACTIONS(2665), - [anon_sym_template] = ACTIONS(2665), - [anon_sym_operator] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_delete] = ACTIONS(2665), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_namespace] = ACTIONS(2665), - [anon_sym_using] = ACTIONS(2665), - [anon_sym_static_assert] = ACTIONS(2665), - [anon_sym_concept] = ACTIONS(2665), - [anon_sym_co_return] = ACTIONS(2665), - [anon_sym_co_yield] = ACTIONS(2665), - [anon_sym_R_DQUOTE] = ACTIONS(2667), - [anon_sym_LR_DQUOTE] = ACTIONS(2667), - [anon_sym_uR_DQUOTE] = ACTIONS(2667), - [anon_sym_UR_DQUOTE] = ACTIONS(2667), - [anon_sym_u8R_DQUOTE] = ACTIONS(2667), - [anon_sym_co_await] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(2665), - [anon_sym_requires] = ACTIONS(2665), - [sym_this] = ACTIONS(2665), - [sym_nullptr] = ACTIONS(2665), - }, - [491] = { - [sym_identifier] = ACTIONS(2669), - [aux_sym_preproc_include_token1] = ACTIONS(2669), - [aux_sym_preproc_def_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token2] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), - [aux_sym_preproc_else_token1] = ACTIONS(2669), - [aux_sym_preproc_elif_token1] = ACTIONS(2669), - [sym_preproc_directive] = ACTIONS(2669), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_typedef] = ACTIONS(2669), - [anon_sym_extern] = ACTIONS(2669), - [anon_sym___attribute__] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), - [anon_sym___declspec] = ACTIONS(2669), - [anon_sym___based] = ACTIONS(2669), - [anon_sym___cdecl] = ACTIONS(2669), - [anon_sym___clrcall] = ACTIONS(2669), - [anon_sym___stdcall] = ACTIONS(2669), - [anon_sym___fastcall] = ACTIONS(2669), - [anon_sym___thiscall] = ACTIONS(2669), - [anon_sym___vectorcall] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_register] = ACTIONS(2669), - [anon_sym_inline] = ACTIONS(2669), - [anon_sym_thread_local] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_volatile] = ACTIONS(2669), - [anon_sym_restrict] = ACTIONS(2669), - [anon_sym__Atomic] = ACTIONS(2669), - [anon_sym_mutable] = ACTIONS(2669), - [anon_sym_constexpr] = ACTIONS(2669), - [anon_sym_constinit] = ACTIONS(2669), - [anon_sym_consteval] = ACTIONS(2669), - [anon_sym_signed] = ACTIONS(2669), - [anon_sym_unsigned] = ACTIONS(2669), - [anon_sym_long] = ACTIONS(2669), - [anon_sym_short] = ACTIONS(2669), - [sym_primitive_type] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_default] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym_not] = ACTIONS(2669), - [anon_sym_compl] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_sizeof] = ACTIONS(2669), - [sym_number_literal] = ACTIONS(2671), - [anon_sym_L_SQUOTE] = ACTIONS(2671), - [anon_sym_u_SQUOTE] = ACTIONS(2671), - [anon_sym_U_SQUOTE] = ACTIONS(2671), - [anon_sym_u8_SQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_L_DQUOTE] = ACTIONS(2671), - [anon_sym_u_DQUOTE] = ACTIONS(2671), - [anon_sym_U_DQUOTE] = ACTIONS(2671), - [anon_sym_u8_DQUOTE] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_null] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2669), - [anon_sym_decltype] = ACTIONS(2669), - [anon_sym_virtual] = ACTIONS(2669), - [anon_sym_explicit] = ACTIONS(2669), - [anon_sym_typename] = ACTIONS(2669), - [anon_sym_template] = ACTIONS(2669), - [anon_sym_operator] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_namespace] = ACTIONS(2669), - [anon_sym_using] = ACTIONS(2669), - [anon_sym_static_assert] = ACTIONS(2669), - [anon_sym_concept] = ACTIONS(2669), - [anon_sym_co_return] = ACTIONS(2669), - [anon_sym_co_yield] = ACTIONS(2669), - [anon_sym_R_DQUOTE] = ACTIONS(2671), - [anon_sym_LR_DQUOTE] = ACTIONS(2671), - [anon_sym_uR_DQUOTE] = ACTIONS(2671), - [anon_sym_UR_DQUOTE] = ACTIONS(2671), - [anon_sym_u8R_DQUOTE] = ACTIONS(2671), - [anon_sym_co_await] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_requires] = ACTIONS(2669), - [sym_this] = ACTIONS(2669), - [sym_nullptr] = ACTIONS(2669), - }, - [492] = { - [sym_identifier] = ACTIONS(2673), - [aux_sym_preproc_include_token1] = ACTIONS(2673), - [aux_sym_preproc_def_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token2] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), - [aux_sym_preproc_else_token1] = ACTIONS(2673), - [aux_sym_preproc_elif_token1] = ACTIONS(2673), - [sym_preproc_directive] = ACTIONS(2673), - [anon_sym_LPAREN2] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_AMP_AMP] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_typedef] = ACTIONS(2673), - [anon_sym_extern] = ACTIONS(2673), - [anon_sym___attribute__] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), - [anon_sym___declspec] = ACTIONS(2673), - [anon_sym___based] = ACTIONS(2673), - [anon_sym___cdecl] = ACTIONS(2673), - [anon_sym___clrcall] = ACTIONS(2673), - [anon_sym___stdcall] = ACTIONS(2673), - [anon_sym___fastcall] = ACTIONS(2673), - [anon_sym___thiscall] = ACTIONS(2673), - [anon_sym___vectorcall] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_register] = ACTIONS(2673), - [anon_sym_inline] = ACTIONS(2673), - [anon_sym_thread_local] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_volatile] = ACTIONS(2673), - [anon_sym_restrict] = ACTIONS(2673), - [anon_sym__Atomic] = ACTIONS(2673), - [anon_sym_mutable] = ACTIONS(2673), - [anon_sym_constexpr] = ACTIONS(2673), - [anon_sym_constinit] = ACTIONS(2673), - [anon_sym_consteval] = ACTIONS(2673), - [anon_sym_signed] = ACTIONS(2673), - [anon_sym_unsigned] = ACTIONS(2673), - [anon_sym_long] = ACTIONS(2673), - [anon_sym_short] = ACTIONS(2673), - [sym_primitive_type] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_union] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_goto] = ACTIONS(2673), - [anon_sym_not] = ACTIONS(2673), - [anon_sym_compl] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_sizeof] = ACTIONS(2673), - [sym_number_literal] = ACTIONS(2675), - [anon_sym_L_SQUOTE] = ACTIONS(2675), - [anon_sym_u_SQUOTE] = ACTIONS(2675), - [anon_sym_U_SQUOTE] = ACTIONS(2675), - [anon_sym_u8_SQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_L_DQUOTE] = ACTIONS(2675), - [anon_sym_u_DQUOTE] = ACTIONS(2675), - [anon_sym_U_DQUOTE] = ACTIONS(2675), - [anon_sym_u8_DQUOTE] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2673), - [anon_sym_decltype] = ACTIONS(2673), - [anon_sym_virtual] = ACTIONS(2673), - [anon_sym_explicit] = ACTIONS(2673), - [anon_sym_typename] = ACTIONS(2673), - [anon_sym_template] = ACTIONS(2673), - [anon_sym_operator] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_static_assert] = ACTIONS(2673), - [anon_sym_concept] = ACTIONS(2673), - [anon_sym_co_return] = ACTIONS(2673), - [anon_sym_co_yield] = ACTIONS(2673), - [anon_sym_R_DQUOTE] = ACTIONS(2675), - [anon_sym_LR_DQUOTE] = ACTIONS(2675), - [anon_sym_uR_DQUOTE] = ACTIONS(2675), - [anon_sym_UR_DQUOTE] = ACTIONS(2675), - [anon_sym_u8R_DQUOTE] = ACTIONS(2675), - [anon_sym_co_await] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_requires] = ACTIONS(2673), - [sym_this] = ACTIONS(2673), - [sym_nullptr] = ACTIONS(2673), - }, - [493] = { - [sym_identifier] = ACTIONS(2677), - [aux_sym_preproc_include_token1] = ACTIONS(2677), - [aux_sym_preproc_def_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token2] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), - [aux_sym_preproc_else_token1] = ACTIONS(2677), - [aux_sym_preproc_elif_token1] = ACTIONS(2677), - [sym_preproc_directive] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2677), - [anon_sym_extern] = ACTIONS(2677), - [anon_sym___attribute__] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), - [anon_sym___declspec] = ACTIONS(2677), - [anon_sym___based] = ACTIONS(2677), - [anon_sym___cdecl] = ACTIONS(2677), - [anon_sym___clrcall] = ACTIONS(2677), - [anon_sym___stdcall] = ACTIONS(2677), - [anon_sym___fastcall] = ACTIONS(2677), - [anon_sym___thiscall] = ACTIONS(2677), - [anon_sym___vectorcall] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_register] = ACTIONS(2677), - [anon_sym_inline] = ACTIONS(2677), - [anon_sym_thread_local] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_volatile] = ACTIONS(2677), - [anon_sym_restrict] = ACTIONS(2677), - [anon_sym__Atomic] = ACTIONS(2677), - [anon_sym_mutable] = ACTIONS(2677), - [anon_sym_constexpr] = ACTIONS(2677), - [anon_sym_constinit] = ACTIONS(2677), - [anon_sym_consteval] = ACTIONS(2677), - [anon_sym_signed] = ACTIONS(2677), - [anon_sym_unsigned] = ACTIONS(2677), - [anon_sym_long] = ACTIONS(2677), - [anon_sym_short] = ACTIONS(2677), - [sym_primitive_type] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2677), - [anon_sym_default] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_goto] = ACTIONS(2677), - [anon_sym_not] = ACTIONS(2677), - [anon_sym_compl] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_sizeof] = ACTIONS(2677), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_L_SQUOTE] = ACTIONS(2679), - [anon_sym_u_SQUOTE] = ACTIONS(2679), - [anon_sym_U_SQUOTE] = ACTIONS(2679), - [anon_sym_u8_SQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_L_DQUOTE] = ACTIONS(2679), - [anon_sym_u_DQUOTE] = ACTIONS(2679), - [anon_sym_U_DQUOTE] = ACTIONS(2679), - [anon_sym_u8_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_null] = ACTIONS(2677), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2677), - [anon_sym_decltype] = ACTIONS(2677), - [anon_sym_virtual] = ACTIONS(2677), - [anon_sym_explicit] = ACTIONS(2677), - [anon_sym_typename] = ACTIONS(2677), - [anon_sym_template] = ACTIONS(2677), - [anon_sym_operator] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_using] = ACTIONS(2677), - [anon_sym_static_assert] = ACTIONS(2677), - [anon_sym_concept] = ACTIONS(2677), - [anon_sym_co_return] = ACTIONS(2677), - [anon_sym_co_yield] = ACTIONS(2677), - [anon_sym_R_DQUOTE] = ACTIONS(2679), - [anon_sym_LR_DQUOTE] = ACTIONS(2679), - [anon_sym_uR_DQUOTE] = ACTIONS(2679), - [anon_sym_UR_DQUOTE] = ACTIONS(2679), - [anon_sym_u8R_DQUOTE] = ACTIONS(2679), - [anon_sym_co_await] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_requires] = ACTIONS(2677), - [sym_this] = ACTIONS(2677), - [sym_nullptr] = ACTIONS(2677), - }, - [494] = { - [sym_identifier] = ACTIONS(2681), - [aux_sym_preproc_include_token1] = ACTIONS(2681), - [aux_sym_preproc_def_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token2] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), - [aux_sym_preproc_else_token1] = ACTIONS(2681), - [aux_sym_preproc_elif_token1] = ACTIONS(2681), - [sym_preproc_directive] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_AMP_AMP] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2681), - [anon_sym___attribute__] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), - [anon_sym___declspec] = ACTIONS(2681), - [anon_sym___based] = ACTIONS(2681), - [anon_sym___cdecl] = ACTIONS(2681), - [anon_sym___clrcall] = ACTIONS(2681), - [anon_sym___stdcall] = ACTIONS(2681), - [anon_sym___fastcall] = ACTIONS(2681), - [anon_sym___thiscall] = ACTIONS(2681), - [anon_sym___vectorcall] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_register] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2681), - [anon_sym_thread_local] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_volatile] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2681), - [anon_sym__Atomic] = ACTIONS(2681), - [anon_sym_mutable] = ACTIONS(2681), - [anon_sym_constexpr] = ACTIONS(2681), - [anon_sym_constinit] = ACTIONS(2681), - [anon_sym_consteval] = ACTIONS(2681), - [anon_sym_signed] = ACTIONS(2681), - [anon_sym_unsigned] = ACTIONS(2681), - [anon_sym_long] = ACTIONS(2681), - [anon_sym_short] = ACTIONS(2681), - [sym_primitive_type] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_switch] = ACTIONS(2681), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_goto] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_compl] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_sizeof] = ACTIONS(2681), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_L_SQUOTE] = ACTIONS(2683), - [anon_sym_u_SQUOTE] = ACTIONS(2683), - [anon_sym_U_SQUOTE] = ACTIONS(2683), - [anon_sym_u8_SQUOTE] = ACTIONS(2683), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_L_DQUOTE] = ACTIONS(2683), - [anon_sym_u_DQUOTE] = ACTIONS(2683), - [anon_sym_U_DQUOTE] = ACTIONS(2683), - [anon_sym_u8_DQUOTE] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_null] = ACTIONS(2681), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2681), - [anon_sym_decltype] = ACTIONS(2681), - [anon_sym_virtual] = ACTIONS(2681), - [anon_sym_explicit] = ACTIONS(2681), - [anon_sym_typename] = ACTIONS(2681), - [anon_sym_template] = ACTIONS(2681), - [anon_sym_operator] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_delete] = ACTIONS(2681), - [anon_sym_throw] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2681), - [anon_sym_static_assert] = ACTIONS(2681), - [anon_sym_concept] = ACTIONS(2681), - [anon_sym_co_return] = ACTIONS(2681), - [anon_sym_co_yield] = ACTIONS(2681), - [anon_sym_R_DQUOTE] = ACTIONS(2683), - [anon_sym_LR_DQUOTE] = ACTIONS(2683), - [anon_sym_uR_DQUOTE] = ACTIONS(2683), - [anon_sym_UR_DQUOTE] = ACTIONS(2683), - [anon_sym_u8R_DQUOTE] = ACTIONS(2683), - [anon_sym_co_await] = ACTIONS(2681), - [anon_sym_new] = ACTIONS(2681), - [anon_sym_requires] = ACTIONS(2681), - [sym_this] = ACTIONS(2681), - [sym_nullptr] = ACTIONS(2681), - }, - [495] = { - [sym_identifier] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token2] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [aux_sym_preproc_else_token1] = ACTIONS(2685), - [aux_sym_preproc_elif_token1] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym___attribute__] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2687), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), - [anon_sym___declspec] = ACTIONS(2685), - [anon_sym___based] = ACTIONS(2685), - [anon_sym___cdecl] = ACTIONS(2685), - [anon_sym___clrcall] = ACTIONS(2685), - [anon_sym___stdcall] = ACTIONS(2685), - [anon_sym___fastcall] = ACTIONS(2685), - [anon_sym___thiscall] = ACTIONS(2685), - [anon_sym___vectorcall] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_thread_local] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [anon_sym_mutable] = ACTIONS(2685), - [anon_sym_constexpr] = ACTIONS(2685), - [anon_sym_constinit] = ACTIONS(2685), - [anon_sym_consteval] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_not] = ACTIONS(2685), - [anon_sym_compl] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_L_SQUOTE] = ACTIONS(2687), - [anon_sym_u_SQUOTE] = ACTIONS(2687), - [anon_sym_U_SQUOTE] = ACTIONS(2687), - [anon_sym_u8_SQUOTE] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_L_DQUOTE] = ACTIONS(2687), - [anon_sym_u_DQUOTE] = ACTIONS(2687), - [anon_sym_U_DQUOTE] = ACTIONS(2687), - [anon_sym_u8_DQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2685), - [anon_sym_decltype] = ACTIONS(2685), - [anon_sym_virtual] = ACTIONS(2685), - [anon_sym_explicit] = ACTIONS(2685), - [anon_sym_typename] = ACTIONS(2685), - [anon_sym_template] = ACTIONS(2685), - [anon_sym_operator] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_throw] = ACTIONS(2685), - [anon_sym_namespace] = ACTIONS(2685), - [anon_sym_using] = ACTIONS(2685), - [anon_sym_static_assert] = ACTIONS(2685), - [anon_sym_concept] = ACTIONS(2685), - [anon_sym_co_return] = ACTIONS(2685), - [anon_sym_co_yield] = ACTIONS(2685), - [anon_sym_R_DQUOTE] = ACTIONS(2687), - [anon_sym_LR_DQUOTE] = ACTIONS(2687), - [anon_sym_uR_DQUOTE] = ACTIONS(2687), - [anon_sym_UR_DQUOTE] = ACTIONS(2687), - [anon_sym_u8R_DQUOTE] = ACTIONS(2687), - [anon_sym_co_await] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_requires] = ACTIONS(2685), - [sym_this] = ACTIONS(2685), - [sym_nullptr] = ACTIONS(2685), - }, - [496] = { - [sym_identifier] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token2] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [aux_sym_preproc_else_token1] = ACTIONS(2685), - [aux_sym_preproc_elif_token1] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym___attribute__] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2687), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), - [anon_sym___declspec] = ACTIONS(2685), - [anon_sym___based] = ACTIONS(2685), - [anon_sym___cdecl] = ACTIONS(2685), - [anon_sym___clrcall] = ACTIONS(2685), - [anon_sym___stdcall] = ACTIONS(2685), - [anon_sym___fastcall] = ACTIONS(2685), - [anon_sym___thiscall] = ACTIONS(2685), - [anon_sym___vectorcall] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_thread_local] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [anon_sym_mutable] = ACTIONS(2685), - [anon_sym_constexpr] = ACTIONS(2685), - [anon_sym_constinit] = ACTIONS(2685), - [anon_sym_consteval] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_not] = ACTIONS(2685), - [anon_sym_compl] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_L_SQUOTE] = ACTIONS(2687), - [anon_sym_u_SQUOTE] = ACTIONS(2687), - [anon_sym_U_SQUOTE] = ACTIONS(2687), - [anon_sym_u8_SQUOTE] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_L_DQUOTE] = ACTIONS(2687), - [anon_sym_u_DQUOTE] = ACTIONS(2687), - [anon_sym_U_DQUOTE] = ACTIONS(2687), - [anon_sym_u8_DQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2685), - [anon_sym_decltype] = ACTIONS(2685), - [anon_sym_virtual] = ACTIONS(2685), - [anon_sym_explicit] = ACTIONS(2685), - [anon_sym_typename] = ACTIONS(2685), - [anon_sym_template] = ACTIONS(2685), - [anon_sym_operator] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_throw] = ACTIONS(2685), - [anon_sym_namespace] = ACTIONS(2685), - [anon_sym_using] = ACTIONS(2685), - [anon_sym_static_assert] = ACTIONS(2685), - [anon_sym_concept] = ACTIONS(2685), - [anon_sym_co_return] = ACTIONS(2685), - [anon_sym_co_yield] = ACTIONS(2685), - [anon_sym_R_DQUOTE] = ACTIONS(2687), - [anon_sym_LR_DQUOTE] = ACTIONS(2687), - [anon_sym_uR_DQUOTE] = ACTIONS(2687), - [anon_sym_UR_DQUOTE] = ACTIONS(2687), - [anon_sym_u8R_DQUOTE] = ACTIONS(2687), - [anon_sym_co_await] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_requires] = ACTIONS(2685), - [sym_this] = ACTIONS(2685), - [sym_nullptr] = ACTIONS(2685), - }, - [497] = { - [sym_identifier] = ACTIONS(2689), - [aux_sym_preproc_include_token1] = ACTIONS(2689), - [aux_sym_preproc_def_token1] = ACTIONS(2689), - [aux_sym_preproc_if_token1] = ACTIONS(2689), - [aux_sym_preproc_if_token2] = ACTIONS(2689), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2689), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2689), - [aux_sym_preproc_else_token1] = ACTIONS(2689), - [aux_sym_preproc_elif_token1] = ACTIONS(2689), - [sym_preproc_directive] = ACTIONS(2689), - [anon_sym_LPAREN2] = ACTIONS(2691), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2689), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_SEMI] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2689), - [anon_sym_extern] = ACTIONS(2689), - [anon_sym___attribute__] = ACTIONS(2689), - [anon_sym_COLON_COLON] = ACTIONS(2691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2691), - [anon_sym___declspec] = ACTIONS(2689), - [anon_sym___based] = ACTIONS(2689), - [anon_sym___cdecl] = ACTIONS(2689), - [anon_sym___clrcall] = ACTIONS(2689), - [anon_sym___stdcall] = ACTIONS(2689), - [anon_sym___fastcall] = ACTIONS(2689), - [anon_sym___thiscall] = ACTIONS(2689), - [anon_sym___vectorcall] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_static] = ACTIONS(2689), - [anon_sym_register] = ACTIONS(2689), - [anon_sym_inline] = ACTIONS(2689), - [anon_sym_thread_local] = ACTIONS(2689), - [anon_sym_const] = ACTIONS(2689), - [anon_sym_volatile] = ACTIONS(2689), - [anon_sym_restrict] = ACTIONS(2689), - [anon_sym__Atomic] = ACTIONS(2689), - [anon_sym_mutable] = ACTIONS(2689), - [anon_sym_constexpr] = ACTIONS(2689), - [anon_sym_constinit] = ACTIONS(2689), - [anon_sym_consteval] = ACTIONS(2689), - [anon_sym_signed] = ACTIONS(2689), - [anon_sym_unsigned] = ACTIONS(2689), - [anon_sym_long] = ACTIONS(2689), - [anon_sym_short] = ACTIONS(2689), - [sym_primitive_type] = ACTIONS(2689), - [anon_sym_enum] = ACTIONS(2689), - [anon_sym_class] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(2689), - [anon_sym_union] = ACTIONS(2689), - [anon_sym_if] = ACTIONS(2689), - [anon_sym_switch] = ACTIONS(2689), - [anon_sym_case] = ACTIONS(2689), - [anon_sym_default] = ACTIONS(2689), - [anon_sym_while] = ACTIONS(2689), - [anon_sym_do] = ACTIONS(2689), - [anon_sym_for] = ACTIONS(2689), - [anon_sym_return] = ACTIONS(2689), - [anon_sym_break] = ACTIONS(2689), - [anon_sym_continue] = ACTIONS(2689), - [anon_sym_goto] = ACTIONS(2689), - [anon_sym_not] = ACTIONS(2689), - [anon_sym_compl] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2691), - [anon_sym_sizeof] = ACTIONS(2689), - [sym_number_literal] = ACTIONS(2691), - [anon_sym_L_SQUOTE] = ACTIONS(2691), - [anon_sym_u_SQUOTE] = ACTIONS(2691), - [anon_sym_U_SQUOTE] = ACTIONS(2691), - [anon_sym_u8_SQUOTE] = ACTIONS(2691), - [anon_sym_SQUOTE] = ACTIONS(2691), - [anon_sym_L_DQUOTE] = ACTIONS(2691), - [anon_sym_u_DQUOTE] = ACTIONS(2691), - [anon_sym_U_DQUOTE] = ACTIONS(2691), - [anon_sym_u8_DQUOTE] = ACTIONS(2691), - [anon_sym_DQUOTE] = ACTIONS(2691), - [sym_true] = ACTIONS(2689), - [sym_false] = ACTIONS(2689), - [sym_null] = ACTIONS(2689), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2689), - [anon_sym_decltype] = ACTIONS(2689), - [anon_sym_virtual] = ACTIONS(2689), - [anon_sym_explicit] = ACTIONS(2689), - [anon_sym_typename] = ACTIONS(2689), - [anon_sym_template] = ACTIONS(2689), - [anon_sym_operator] = ACTIONS(2689), - [anon_sym_try] = ACTIONS(2689), - [anon_sym_delete] = ACTIONS(2689), - [anon_sym_throw] = ACTIONS(2689), - [anon_sym_namespace] = ACTIONS(2689), - [anon_sym_using] = ACTIONS(2689), - [anon_sym_static_assert] = ACTIONS(2689), - [anon_sym_concept] = ACTIONS(2689), - [anon_sym_co_return] = ACTIONS(2689), - [anon_sym_co_yield] = ACTIONS(2689), - [anon_sym_R_DQUOTE] = ACTIONS(2691), - [anon_sym_LR_DQUOTE] = ACTIONS(2691), - [anon_sym_uR_DQUOTE] = ACTIONS(2691), - [anon_sym_UR_DQUOTE] = ACTIONS(2691), - [anon_sym_u8R_DQUOTE] = ACTIONS(2691), - [anon_sym_co_await] = ACTIONS(2689), - [anon_sym_new] = ACTIONS(2689), - [anon_sym_requires] = ACTIONS(2689), - [sym_this] = ACTIONS(2689), - [sym_nullptr] = ACTIONS(2689), - }, - [498] = { - [sym_identifier] = ACTIONS(2693), - [aux_sym_preproc_include_token1] = ACTIONS(2693), - [aux_sym_preproc_def_token1] = ACTIONS(2693), - [aux_sym_preproc_if_token1] = ACTIONS(2693), - [aux_sym_preproc_if_token2] = ACTIONS(2693), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2693), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2693), - [aux_sym_preproc_else_token1] = ACTIONS(2693), - [aux_sym_preproc_elif_token1] = ACTIONS(2693), - [sym_preproc_directive] = ACTIONS(2693), - [anon_sym_LPAREN2] = ACTIONS(2695), - [anon_sym_BANG] = ACTIONS(2695), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2695), - [anon_sym_AMP_AMP] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_SEMI] = ACTIONS(2695), - [anon_sym_typedef] = ACTIONS(2693), - [anon_sym_extern] = ACTIONS(2693), - [anon_sym___attribute__] = ACTIONS(2693), - [anon_sym_COLON_COLON] = ACTIONS(2695), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2695), - [anon_sym___declspec] = ACTIONS(2693), - [anon_sym___based] = ACTIONS(2693), - [anon_sym___cdecl] = ACTIONS(2693), - [anon_sym___clrcall] = ACTIONS(2693), - [anon_sym___stdcall] = ACTIONS(2693), - [anon_sym___fastcall] = ACTIONS(2693), - [anon_sym___thiscall] = ACTIONS(2693), - [anon_sym___vectorcall] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_static] = ACTIONS(2693), - [anon_sym_register] = ACTIONS(2693), - [anon_sym_inline] = ACTIONS(2693), - [anon_sym_thread_local] = ACTIONS(2693), - [anon_sym_const] = ACTIONS(2693), - [anon_sym_volatile] = ACTIONS(2693), - [anon_sym_restrict] = ACTIONS(2693), - [anon_sym__Atomic] = ACTIONS(2693), - [anon_sym_mutable] = ACTIONS(2693), - [anon_sym_constexpr] = ACTIONS(2693), - [anon_sym_constinit] = ACTIONS(2693), - [anon_sym_consteval] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2693), - [anon_sym_unsigned] = ACTIONS(2693), - [anon_sym_long] = ACTIONS(2693), - [anon_sym_short] = ACTIONS(2693), - [sym_primitive_type] = ACTIONS(2693), - [anon_sym_enum] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_struct] = ACTIONS(2693), - [anon_sym_union] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2693), - [anon_sym_default] = ACTIONS(2693), - [anon_sym_while] = ACTIONS(2693), - [anon_sym_do] = ACTIONS(2693), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2693), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2693), - [anon_sym_goto] = ACTIONS(2693), - [anon_sym_not] = ACTIONS(2693), - [anon_sym_compl] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_sizeof] = ACTIONS(2693), - [sym_number_literal] = ACTIONS(2695), - [anon_sym_L_SQUOTE] = ACTIONS(2695), - [anon_sym_u_SQUOTE] = ACTIONS(2695), - [anon_sym_U_SQUOTE] = ACTIONS(2695), - [anon_sym_u8_SQUOTE] = ACTIONS(2695), - [anon_sym_SQUOTE] = ACTIONS(2695), - [anon_sym_L_DQUOTE] = ACTIONS(2695), - [anon_sym_u_DQUOTE] = ACTIONS(2695), - [anon_sym_U_DQUOTE] = ACTIONS(2695), - [anon_sym_u8_DQUOTE] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(2695), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_null] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2693), - [anon_sym_decltype] = ACTIONS(2693), - [anon_sym_virtual] = ACTIONS(2693), - [anon_sym_explicit] = ACTIONS(2693), - [anon_sym_typename] = ACTIONS(2693), - [anon_sym_template] = ACTIONS(2693), - [anon_sym_operator] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_delete] = ACTIONS(2693), - [anon_sym_throw] = ACTIONS(2693), - [anon_sym_namespace] = ACTIONS(2693), - [anon_sym_using] = ACTIONS(2693), - [anon_sym_static_assert] = ACTIONS(2693), - [anon_sym_concept] = ACTIONS(2693), - [anon_sym_co_return] = ACTIONS(2693), - [anon_sym_co_yield] = ACTIONS(2693), - [anon_sym_R_DQUOTE] = ACTIONS(2695), - [anon_sym_LR_DQUOTE] = ACTIONS(2695), - [anon_sym_uR_DQUOTE] = ACTIONS(2695), - [anon_sym_UR_DQUOTE] = ACTIONS(2695), - [anon_sym_u8R_DQUOTE] = ACTIONS(2695), - [anon_sym_co_await] = ACTIONS(2693), - [anon_sym_new] = ACTIONS(2693), - [anon_sym_requires] = ACTIONS(2693), - [sym_this] = ACTIONS(2693), - [sym_nullptr] = ACTIONS(2693), - }, - [499] = { - [sym_identifier] = ACTIONS(2697), - [aux_sym_preproc_include_token1] = ACTIONS(2697), - [aux_sym_preproc_def_token1] = ACTIONS(2697), - [aux_sym_preproc_if_token1] = ACTIONS(2697), - [aux_sym_preproc_if_token2] = ACTIONS(2697), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2697), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2697), - [sym_preproc_directive] = ACTIONS(2697), - [anon_sym_LPAREN2] = ACTIONS(2699), - [anon_sym_BANG] = ACTIONS(2699), - [anon_sym_TILDE] = ACTIONS(2699), - [anon_sym_DASH] = ACTIONS(2697), - [anon_sym_PLUS] = ACTIONS(2697), - [anon_sym_STAR] = ACTIONS(2699), - [anon_sym_AMP_AMP] = ACTIONS(2699), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_SEMI] = ACTIONS(2699), - [anon_sym_typedef] = ACTIONS(2697), - [anon_sym_extern] = ACTIONS(2697), - [anon_sym___attribute__] = ACTIONS(2697), - [anon_sym_COLON_COLON] = ACTIONS(2699), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2699), - [anon_sym___declspec] = ACTIONS(2697), - [anon_sym___based] = ACTIONS(2697), - [anon_sym___cdecl] = ACTIONS(2697), - [anon_sym___clrcall] = ACTIONS(2697), - [anon_sym___stdcall] = ACTIONS(2697), - [anon_sym___fastcall] = ACTIONS(2697), - [anon_sym___thiscall] = ACTIONS(2697), - [anon_sym___vectorcall] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2697), - [anon_sym_static] = ACTIONS(2697), - [anon_sym_register] = ACTIONS(2697), - [anon_sym_inline] = ACTIONS(2697), - [anon_sym_thread_local] = ACTIONS(2697), - [anon_sym_const] = ACTIONS(2697), - [anon_sym_volatile] = ACTIONS(2697), - [anon_sym_restrict] = ACTIONS(2697), - [anon_sym__Atomic] = ACTIONS(2697), - [anon_sym_mutable] = ACTIONS(2697), - [anon_sym_constexpr] = ACTIONS(2697), - [anon_sym_constinit] = ACTIONS(2697), - [anon_sym_consteval] = ACTIONS(2697), - [anon_sym_signed] = ACTIONS(2697), - [anon_sym_unsigned] = ACTIONS(2697), - [anon_sym_long] = ACTIONS(2697), - [anon_sym_short] = ACTIONS(2697), - [sym_primitive_type] = ACTIONS(2697), - [anon_sym_enum] = ACTIONS(2697), - [anon_sym_class] = ACTIONS(2697), - [anon_sym_struct] = ACTIONS(2697), - [anon_sym_union] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_switch] = ACTIONS(2697), - [anon_sym_case] = ACTIONS(2697), - [anon_sym_default] = ACTIONS(2697), - [anon_sym_while] = ACTIONS(2697), - [anon_sym_do] = ACTIONS(2697), - [anon_sym_for] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_break] = ACTIONS(2697), - [anon_sym_continue] = ACTIONS(2697), - [anon_sym_goto] = ACTIONS(2697), - [anon_sym_not] = ACTIONS(2697), - [anon_sym_compl] = ACTIONS(2697), - [anon_sym_DASH_DASH] = ACTIONS(2699), - [anon_sym_PLUS_PLUS] = ACTIONS(2699), - [anon_sym_sizeof] = ACTIONS(2697), - [sym_number_literal] = ACTIONS(2699), - [anon_sym_L_SQUOTE] = ACTIONS(2699), - [anon_sym_u_SQUOTE] = ACTIONS(2699), - [anon_sym_U_SQUOTE] = ACTIONS(2699), - [anon_sym_u8_SQUOTE] = ACTIONS(2699), - [anon_sym_SQUOTE] = ACTIONS(2699), - [anon_sym_L_DQUOTE] = ACTIONS(2699), - [anon_sym_u_DQUOTE] = ACTIONS(2699), - [anon_sym_U_DQUOTE] = ACTIONS(2699), - [anon_sym_u8_DQUOTE] = ACTIONS(2699), - [anon_sym_DQUOTE] = ACTIONS(2699), - [sym_true] = ACTIONS(2697), - [sym_false] = ACTIONS(2697), - [sym_null] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2697), - [anon_sym_decltype] = ACTIONS(2697), - [anon_sym_virtual] = ACTIONS(2697), - [anon_sym_explicit] = ACTIONS(2697), - [anon_sym_typename] = ACTIONS(2697), - [anon_sym_template] = ACTIONS(2697), - [anon_sym_operator] = ACTIONS(2697), - [anon_sym_try] = ACTIONS(2697), - [anon_sym_delete] = ACTIONS(2697), - [anon_sym_throw] = ACTIONS(2697), - [anon_sym_namespace] = ACTIONS(2697), - [anon_sym_using] = ACTIONS(2697), - [anon_sym_static_assert] = ACTIONS(2697), - [anon_sym_concept] = ACTIONS(2697), - [anon_sym_co_return] = ACTIONS(2697), - [anon_sym_co_yield] = ACTIONS(2697), - [anon_sym_R_DQUOTE] = ACTIONS(2699), - [anon_sym_LR_DQUOTE] = ACTIONS(2699), - [anon_sym_uR_DQUOTE] = ACTIONS(2699), - [anon_sym_UR_DQUOTE] = ACTIONS(2699), - [anon_sym_u8R_DQUOTE] = ACTIONS(2699), - [anon_sym_co_await] = ACTIONS(2697), - [anon_sym_new] = ACTIONS(2697), - [anon_sym_requires] = ACTIONS(2697), - [sym_this] = ACTIONS(2697), - [sym_nullptr] = ACTIONS(2697), - }, - [500] = { - [sym_identifier] = ACTIONS(2701), - [aux_sym_preproc_include_token1] = ACTIONS(2701), - [aux_sym_preproc_def_token1] = ACTIONS(2701), - [aux_sym_preproc_if_token1] = ACTIONS(2701), - [aux_sym_preproc_if_token2] = ACTIONS(2701), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2701), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2701), - [aux_sym_preproc_else_token1] = ACTIONS(2701), - [aux_sym_preproc_elif_token1] = ACTIONS(2701), - [sym_preproc_directive] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_BANG] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2703), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_AMP_AMP] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_SEMI] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2701), - [anon_sym_extern] = ACTIONS(2701), - [anon_sym___attribute__] = ACTIONS(2701), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2703), - [anon_sym___declspec] = ACTIONS(2701), - [anon_sym___based] = ACTIONS(2701), - [anon_sym___cdecl] = ACTIONS(2701), - [anon_sym___clrcall] = ACTIONS(2701), - [anon_sym___stdcall] = ACTIONS(2701), - [anon_sym___fastcall] = ACTIONS(2701), - [anon_sym___thiscall] = ACTIONS(2701), - [anon_sym___vectorcall] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_static] = ACTIONS(2701), - [anon_sym_register] = ACTIONS(2701), - [anon_sym_inline] = ACTIONS(2701), - [anon_sym_thread_local] = ACTIONS(2701), - [anon_sym_const] = ACTIONS(2701), - [anon_sym_volatile] = ACTIONS(2701), - [anon_sym_restrict] = ACTIONS(2701), - [anon_sym__Atomic] = ACTIONS(2701), - [anon_sym_mutable] = ACTIONS(2701), - [anon_sym_constexpr] = ACTIONS(2701), - [anon_sym_constinit] = ACTIONS(2701), - [anon_sym_consteval] = ACTIONS(2701), - [anon_sym_signed] = ACTIONS(2701), - [anon_sym_unsigned] = ACTIONS(2701), - [anon_sym_long] = ACTIONS(2701), - [anon_sym_short] = ACTIONS(2701), - [sym_primitive_type] = ACTIONS(2701), - [anon_sym_enum] = ACTIONS(2701), - [anon_sym_class] = ACTIONS(2701), - [anon_sym_struct] = ACTIONS(2701), - [anon_sym_union] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_switch] = ACTIONS(2701), - [anon_sym_case] = ACTIONS(2701), - [anon_sym_default] = ACTIONS(2701), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_break] = ACTIONS(2701), - [anon_sym_continue] = ACTIONS(2701), - [anon_sym_goto] = ACTIONS(2701), - [anon_sym_not] = ACTIONS(2701), - [anon_sym_compl] = ACTIONS(2701), - [anon_sym_DASH_DASH] = ACTIONS(2703), - [anon_sym_PLUS_PLUS] = ACTIONS(2703), - [anon_sym_sizeof] = ACTIONS(2701), - [sym_number_literal] = ACTIONS(2703), - [anon_sym_L_SQUOTE] = ACTIONS(2703), - [anon_sym_u_SQUOTE] = ACTIONS(2703), - [anon_sym_U_SQUOTE] = ACTIONS(2703), - [anon_sym_u8_SQUOTE] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_L_DQUOTE] = ACTIONS(2703), - [anon_sym_u_DQUOTE] = ACTIONS(2703), - [anon_sym_U_DQUOTE] = ACTIONS(2703), - [anon_sym_u8_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE] = ACTIONS(2703), - [sym_true] = ACTIONS(2701), - [sym_false] = ACTIONS(2701), - [sym_null] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2701), - [anon_sym_decltype] = ACTIONS(2701), - [anon_sym_virtual] = ACTIONS(2701), - [anon_sym_explicit] = ACTIONS(2701), - [anon_sym_typename] = ACTIONS(2701), - [anon_sym_template] = ACTIONS(2701), - [anon_sym_operator] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_delete] = ACTIONS(2701), - [anon_sym_throw] = ACTIONS(2701), - [anon_sym_namespace] = ACTIONS(2701), - [anon_sym_using] = ACTIONS(2701), - [anon_sym_static_assert] = ACTIONS(2701), - [anon_sym_concept] = ACTIONS(2701), - [anon_sym_co_return] = ACTIONS(2701), - [anon_sym_co_yield] = ACTIONS(2701), - [anon_sym_R_DQUOTE] = ACTIONS(2703), - [anon_sym_LR_DQUOTE] = ACTIONS(2703), - [anon_sym_uR_DQUOTE] = ACTIONS(2703), - [anon_sym_UR_DQUOTE] = ACTIONS(2703), - [anon_sym_u8R_DQUOTE] = ACTIONS(2703), - [anon_sym_co_await] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_requires] = ACTIONS(2701), - [sym_this] = ACTIONS(2701), - [sym_nullptr] = ACTIONS(2701), - }, - [501] = { - [sym_identifier] = ACTIONS(2705), - [aux_sym_preproc_include_token1] = ACTIONS(2705), - [aux_sym_preproc_def_token1] = ACTIONS(2705), - [aux_sym_preproc_if_token1] = ACTIONS(2705), - [aux_sym_preproc_if_token2] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), - [aux_sym_preproc_else_token1] = ACTIONS(2705), - [aux_sym_preproc_elif_token1] = ACTIONS(2705), - [sym_preproc_directive] = ACTIONS(2705), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2705), - [anon_sym_extern] = ACTIONS(2705), - [anon_sym___attribute__] = ACTIONS(2705), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), - [anon_sym___declspec] = ACTIONS(2705), - [anon_sym___based] = ACTIONS(2705), - [anon_sym___cdecl] = ACTIONS(2705), - [anon_sym___clrcall] = ACTIONS(2705), - [anon_sym___stdcall] = ACTIONS(2705), - [anon_sym___fastcall] = ACTIONS(2705), - [anon_sym___thiscall] = ACTIONS(2705), - [anon_sym___vectorcall] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_static] = ACTIONS(2705), - [anon_sym_register] = ACTIONS(2705), - [anon_sym_inline] = ACTIONS(2705), - [anon_sym_thread_local] = ACTIONS(2705), - [anon_sym_const] = ACTIONS(2705), - [anon_sym_volatile] = ACTIONS(2705), - [anon_sym_restrict] = ACTIONS(2705), - [anon_sym__Atomic] = ACTIONS(2705), - [anon_sym_mutable] = ACTIONS(2705), - [anon_sym_constexpr] = ACTIONS(2705), - [anon_sym_constinit] = ACTIONS(2705), - [anon_sym_consteval] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2705), - [anon_sym_unsigned] = ACTIONS(2705), - [anon_sym_long] = ACTIONS(2705), - [anon_sym_short] = ACTIONS(2705), - [sym_primitive_type] = ACTIONS(2705), - [anon_sym_enum] = ACTIONS(2705), - [anon_sym_class] = ACTIONS(2705), - [anon_sym_struct] = ACTIONS(2705), - [anon_sym_union] = ACTIONS(2705), - [anon_sym_if] = ACTIONS(2705), - [anon_sym_switch] = ACTIONS(2705), - [anon_sym_case] = ACTIONS(2705), - [anon_sym_default] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2705), - [anon_sym_do] = ACTIONS(2705), - [anon_sym_for] = ACTIONS(2705), - [anon_sym_return] = ACTIONS(2705), - [anon_sym_break] = ACTIONS(2705), - [anon_sym_continue] = ACTIONS(2705), - [anon_sym_goto] = ACTIONS(2705), - [anon_sym_not] = ACTIONS(2705), - [anon_sym_compl] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2707), - [anon_sym_sizeof] = ACTIONS(2705), - [sym_number_literal] = ACTIONS(2707), - [anon_sym_L_SQUOTE] = ACTIONS(2707), - [anon_sym_u_SQUOTE] = ACTIONS(2707), - [anon_sym_U_SQUOTE] = ACTIONS(2707), - [anon_sym_u8_SQUOTE] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_L_DQUOTE] = ACTIONS(2707), - [anon_sym_u_DQUOTE] = ACTIONS(2707), - [anon_sym_U_DQUOTE] = ACTIONS(2707), - [anon_sym_u8_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2707), - [sym_true] = ACTIONS(2705), - [sym_false] = ACTIONS(2705), - [sym_null] = ACTIONS(2705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2705), - [anon_sym_decltype] = ACTIONS(2705), - [anon_sym_virtual] = ACTIONS(2705), - [anon_sym_explicit] = ACTIONS(2705), - [anon_sym_typename] = ACTIONS(2705), - [anon_sym_template] = ACTIONS(2705), - [anon_sym_operator] = ACTIONS(2705), - [anon_sym_try] = ACTIONS(2705), - [anon_sym_delete] = ACTIONS(2705), - [anon_sym_throw] = ACTIONS(2705), - [anon_sym_namespace] = ACTIONS(2705), - [anon_sym_using] = ACTIONS(2705), - [anon_sym_static_assert] = ACTIONS(2705), - [anon_sym_concept] = ACTIONS(2705), - [anon_sym_co_return] = ACTIONS(2705), - [anon_sym_co_yield] = ACTIONS(2705), - [anon_sym_R_DQUOTE] = ACTIONS(2707), - [anon_sym_LR_DQUOTE] = ACTIONS(2707), - [anon_sym_uR_DQUOTE] = ACTIONS(2707), - [anon_sym_UR_DQUOTE] = ACTIONS(2707), - [anon_sym_u8R_DQUOTE] = ACTIONS(2707), - [anon_sym_co_await] = ACTIONS(2705), - [anon_sym_new] = ACTIONS(2705), - [anon_sym_requires] = ACTIONS(2705), - [sym_this] = ACTIONS(2705), - [sym_nullptr] = ACTIONS(2705), - }, - [502] = { - [sym_identifier] = ACTIONS(2709), - [aux_sym_preproc_include_token1] = ACTIONS(2709), - [aux_sym_preproc_def_token1] = ACTIONS(2709), - [aux_sym_preproc_if_token1] = ACTIONS(2709), - [aux_sym_preproc_if_token2] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), - [aux_sym_preproc_else_token1] = ACTIONS(2709), - [aux_sym_preproc_elif_token1] = ACTIONS(2709), - [sym_preproc_directive] = ACTIONS(2709), - [anon_sym_LPAREN2] = ACTIONS(2711), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_TILDE] = ACTIONS(2711), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2711), - [anon_sym_AMP_AMP] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2709), - [anon_sym_extern] = ACTIONS(2709), - [anon_sym___attribute__] = ACTIONS(2709), - [anon_sym_COLON_COLON] = ACTIONS(2711), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), - [anon_sym___declspec] = ACTIONS(2709), - [anon_sym___based] = ACTIONS(2709), - [anon_sym___cdecl] = ACTIONS(2709), - [anon_sym___clrcall] = ACTIONS(2709), - [anon_sym___stdcall] = ACTIONS(2709), - [anon_sym___fastcall] = ACTIONS(2709), - [anon_sym___thiscall] = ACTIONS(2709), - [anon_sym___vectorcall] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_static] = ACTIONS(2709), - [anon_sym_register] = ACTIONS(2709), - [anon_sym_inline] = ACTIONS(2709), - [anon_sym_thread_local] = ACTIONS(2709), - [anon_sym_const] = ACTIONS(2709), - [anon_sym_volatile] = ACTIONS(2709), - [anon_sym_restrict] = ACTIONS(2709), - [anon_sym__Atomic] = ACTIONS(2709), - [anon_sym_mutable] = ACTIONS(2709), - [anon_sym_constexpr] = ACTIONS(2709), - [anon_sym_constinit] = ACTIONS(2709), - [anon_sym_consteval] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2709), - [anon_sym_unsigned] = ACTIONS(2709), - [anon_sym_long] = ACTIONS(2709), - [anon_sym_short] = ACTIONS(2709), - [sym_primitive_type] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_union] = ACTIONS(2709), - [anon_sym_if] = ACTIONS(2709), - [anon_sym_switch] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2709), - [anon_sym_default] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2709), - [anon_sym_do] = ACTIONS(2709), - [anon_sym_for] = ACTIONS(2709), - [anon_sym_return] = ACTIONS(2709), - [anon_sym_break] = ACTIONS(2709), - [anon_sym_continue] = ACTIONS(2709), - [anon_sym_goto] = ACTIONS(2709), - [anon_sym_not] = ACTIONS(2709), - [anon_sym_compl] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2711), - [anon_sym_PLUS_PLUS] = ACTIONS(2711), - [anon_sym_sizeof] = ACTIONS(2709), - [sym_number_literal] = ACTIONS(2711), - [anon_sym_L_SQUOTE] = ACTIONS(2711), - [anon_sym_u_SQUOTE] = ACTIONS(2711), - [anon_sym_U_SQUOTE] = ACTIONS(2711), - [anon_sym_u8_SQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_L_DQUOTE] = ACTIONS(2711), - [anon_sym_u_DQUOTE] = ACTIONS(2711), - [anon_sym_U_DQUOTE] = ACTIONS(2711), - [anon_sym_u8_DQUOTE] = ACTIONS(2711), - [anon_sym_DQUOTE] = ACTIONS(2711), - [sym_true] = ACTIONS(2709), - [sym_false] = ACTIONS(2709), - [sym_null] = ACTIONS(2709), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2709), - [anon_sym_decltype] = ACTIONS(2709), - [anon_sym_virtual] = ACTIONS(2709), - [anon_sym_explicit] = ACTIONS(2709), - [anon_sym_typename] = ACTIONS(2709), - [anon_sym_template] = ACTIONS(2709), - [anon_sym_operator] = ACTIONS(2709), - [anon_sym_try] = ACTIONS(2709), - [anon_sym_delete] = ACTIONS(2709), - [anon_sym_throw] = ACTIONS(2709), - [anon_sym_namespace] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2709), - [anon_sym_static_assert] = ACTIONS(2709), - [anon_sym_concept] = ACTIONS(2709), - [anon_sym_co_return] = ACTIONS(2709), - [anon_sym_co_yield] = ACTIONS(2709), - [anon_sym_R_DQUOTE] = ACTIONS(2711), - [anon_sym_LR_DQUOTE] = ACTIONS(2711), - [anon_sym_uR_DQUOTE] = ACTIONS(2711), - [anon_sym_UR_DQUOTE] = ACTIONS(2711), - [anon_sym_u8R_DQUOTE] = ACTIONS(2711), - [anon_sym_co_await] = ACTIONS(2709), - [anon_sym_new] = ACTIONS(2709), - [anon_sym_requires] = ACTIONS(2709), - [sym_this] = ACTIONS(2709), - [sym_nullptr] = ACTIONS(2709), - }, - [503] = { - [sym_identifier] = ACTIONS(2713), - [aux_sym_preproc_include_token1] = ACTIONS(2713), - [aux_sym_preproc_def_token1] = ACTIONS(2713), - [aux_sym_preproc_if_token1] = ACTIONS(2713), - [aux_sym_preproc_if_token2] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), - [aux_sym_preproc_else_token1] = ACTIONS(2713), - [aux_sym_preproc_elif_token1] = ACTIONS(2713), - [sym_preproc_directive] = ACTIONS(2713), - [anon_sym_LPAREN2] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_PLUS] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_AMP_AMP] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2713), - [anon_sym_SEMI] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(2713), - [anon_sym___attribute__] = ACTIONS(2713), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), - [anon_sym___declspec] = ACTIONS(2713), - [anon_sym___based] = ACTIONS(2713), - [anon_sym___cdecl] = ACTIONS(2713), - [anon_sym___clrcall] = ACTIONS(2713), - [anon_sym___stdcall] = ACTIONS(2713), - [anon_sym___fastcall] = ACTIONS(2713), - [anon_sym___thiscall] = ACTIONS(2713), - [anon_sym___vectorcall] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_static] = ACTIONS(2713), - [anon_sym_register] = ACTIONS(2713), - [anon_sym_inline] = ACTIONS(2713), - [anon_sym_thread_local] = ACTIONS(2713), - [anon_sym_const] = ACTIONS(2713), - [anon_sym_volatile] = ACTIONS(2713), - [anon_sym_restrict] = ACTIONS(2713), - [anon_sym__Atomic] = ACTIONS(2713), - [anon_sym_mutable] = ACTIONS(2713), - [anon_sym_constexpr] = ACTIONS(2713), - [anon_sym_constinit] = ACTIONS(2713), - [anon_sym_consteval] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2713), - [anon_sym_unsigned] = ACTIONS(2713), - [anon_sym_long] = ACTIONS(2713), - [anon_sym_short] = ACTIONS(2713), - [sym_primitive_type] = ACTIONS(2713), - [anon_sym_enum] = ACTIONS(2713), - [anon_sym_class] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2713), - [anon_sym_union] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2713), - [anon_sym_switch] = ACTIONS(2713), - [anon_sym_case] = ACTIONS(2713), - [anon_sym_default] = ACTIONS(2713), - [anon_sym_while] = ACTIONS(2713), - [anon_sym_do] = ACTIONS(2713), - [anon_sym_for] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2713), - [anon_sym_break] = ACTIONS(2713), - [anon_sym_continue] = ACTIONS(2713), - [anon_sym_goto] = ACTIONS(2713), - [anon_sym_not] = ACTIONS(2713), - [anon_sym_compl] = ACTIONS(2713), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_sizeof] = ACTIONS(2713), - [sym_number_literal] = ACTIONS(2715), - [anon_sym_L_SQUOTE] = ACTIONS(2715), - [anon_sym_u_SQUOTE] = ACTIONS(2715), - [anon_sym_U_SQUOTE] = ACTIONS(2715), - [anon_sym_u8_SQUOTE] = ACTIONS(2715), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_L_DQUOTE] = ACTIONS(2715), - [anon_sym_u_DQUOTE] = ACTIONS(2715), - [anon_sym_U_DQUOTE] = ACTIONS(2715), - [anon_sym_u8_DQUOTE] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [sym_true] = ACTIONS(2713), - [sym_false] = ACTIONS(2713), - [sym_null] = ACTIONS(2713), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2713), - [anon_sym_decltype] = ACTIONS(2713), - [anon_sym_virtual] = ACTIONS(2713), - [anon_sym_explicit] = ACTIONS(2713), - [anon_sym_typename] = ACTIONS(2713), - [anon_sym_template] = ACTIONS(2713), - [anon_sym_operator] = ACTIONS(2713), - [anon_sym_try] = ACTIONS(2713), - [anon_sym_delete] = ACTIONS(2713), - [anon_sym_throw] = ACTIONS(2713), - [anon_sym_namespace] = ACTIONS(2713), - [anon_sym_using] = ACTIONS(2713), - [anon_sym_static_assert] = ACTIONS(2713), - [anon_sym_concept] = ACTIONS(2713), - [anon_sym_co_return] = ACTIONS(2713), - [anon_sym_co_yield] = ACTIONS(2713), - [anon_sym_R_DQUOTE] = ACTIONS(2715), - [anon_sym_LR_DQUOTE] = ACTIONS(2715), - [anon_sym_uR_DQUOTE] = ACTIONS(2715), - [anon_sym_UR_DQUOTE] = ACTIONS(2715), - [anon_sym_u8R_DQUOTE] = ACTIONS(2715), - [anon_sym_co_await] = ACTIONS(2713), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_requires] = ACTIONS(2713), - [sym_this] = ACTIONS(2713), - [sym_nullptr] = ACTIONS(2713), - }, - [504] = { - [sym_identifier] = ACTIONS(2717), - [aux_sym_preproc_include_token1] = ACTIONS(2717), - [aux_sym_preproc_def_token1] = ACTIONS(2717), - [aux_sym_preproc_if_token1] = ACTIONS(2717), - [aux_sym_preproc_if_token2] = ACTIONS(2717), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), - [aux_sym_preproc_else_token1] = ACTIONS(2717), - [aux_sym_preproc_elif_token1] = ACTIONS(2717), - [sym_preproc_directive] = ACTIONS(2717), - [anon_sym_LPAREN2] = ACTIONS(2719), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_TILDE] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_STAR] = ACTIONS(2719), - [anon_sym_AMP_AMP] = ACTIONS(2719), - [anon_sym_AMP] = ACTIONS(2717), - [anon_sym_SEMI] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2717), - [anon_sym_extern] = ACTIONS(2717), - [anon_sym___attribute__] = ACTIONS(2717), - [anon_sym_COLON_COLON] = ACTIONS(2719), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), - [anon_sym___declspec] = ACTIONS(2717), - [anon_sym___based] = ACTIONS(2717), - [anon_sym___cdecl] = ACTIONS(2717), - [anon_sym___clrcall] = ACTIONS(2717), - [anon_sym___stdcall] = ACTIONS(2717), - [anon_sym___fastcall] = ACTIONS(2717), - [anon_sym___thiscall] = ACTIONS(2717), - [anon_sym___vectorcall] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(2717), - [anon_sym_register] = ACTIONS(2717), - [anon_sym_inline] = ACTIONS(2717), - [anon_sym_thread_local] = ACTIONS(2717), - [anon_sym_const] = ACTIONS(2717), - [anon_sym_volatile] = ACTIONS(2717), - [anon_sym_restrict] = ACTIONS(2717), - [anon_sym__Atomic] = ACTIONS(2717), - [anon_sym_mutable] = ACTIONS(2717), - [anon_sym_constexpr] = ACTIONS(2717), - [anon_sym_constinit] = ACTIONS(2717), - [anon_sym_consteval] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2717), - [anon_sym_unsigned] = ACTIONS(2717), - [anon_sym_long] = ACTIONS(2717), - [anon_sym_short] = ACTIONS(2717), - [sym_primitive_type] = ACTIONS(2717), - [anon_sym_enum] = ACTIONS(2717), - [anon_sym_class] = ACTIONS(2717), - [anon_sym_struct] = ACTIONS(2717), - [anon_sym_union] = ACTIONS(2717), - [anon_sym_if] = ACTIONS(2717), - [anon_sym_switch] = ACTIONS(2717), - [anon_sym_case] = ACTIONS(2717), - [anon_sym_default] = ACTIONS(2717), - [anon_sym_while] = ACTIONS(2717), - [anon_sym_do] = ACTIONS(2717), - [anon_sym_for] = ACTIONS(2717), - [anon_sym_return] = ACTIONS(2717), - [anon_sym_break] = ACTIONS(2717), - [anon_sym_continue] = ACTIONS(2717), - [anon_sym_goto] = ACTIONS(2717), - [anon_sym_not] = ACTIONS(2717), - [anon_sym_compl] = ACTIONS(2717), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_sizeof] = ACTIONS(2717), - [sym_number_literal] = ACTIONS(2719), - [anon_sym_L_SQUOTE] = ACTIONS(2719), - [anon_sym_u_SQUOTE] = ACTIONS(2719), - [anon_sym_U_SQUOTE] = ACTIONS(2719), - [anon_sym_u8_SQUOTE] = ACTIONS(2719), - [anon_sym_SQUOTE] = ACTIONS(2719), - [anon_sym_L_DQUOTE] = ACTIONS(2719), - [anon_sym_u_DQUOTE] = ACTIONS(2719), - [anon_sym_U_DQUOTE] = ACTIONS(2719), - [anon_sym_u8_DQUOTE] = ACTIONS(2719), - [anon_sym_DQUOTE] = ACTIONS(2719), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2717), - [anon_sym_decltype] = ACTIONS(2717), - [anon_sym_virtual] = ACTIONS(2717), - [anon_sym_explicit] = ACTIONS(2717), - [anon_sym_typename] = ACTIONS(2717), - [anon_sym_template] = ACTIONS(2717), - [anon_sym_operator] = ACTIONS(2717), - [anon_sym_try] = ACTIONS(2717), - [anon_sym_delete] = ACTIONS(2717), - [anon_sym_throw] = ACTIONS(2717), - [anon_sym_namespace] = ACTIONS(2717), - [anon_sym_using] = ACTIONS(2717), - [anon_sym_static_assert] = ACTIONS(2717), - [anon_sym_concept] = ACTIONS(2717), - [anon_sym_co_return] = ACTIONS(2717), - [anon_sym_co_yield] = ACTIONS(2717), - [anon_sym_R_DQUOTE] = ACTIONS(2719), - [anon_sym_LR_DQUOTE] = ACTIONS(2719), - [anon_sym_uR_DQUOTE] = ACTIONS(2719), - [anon_sym_UR_DQUOTE] = ACTIONS(2719), - [anon_sym_u8R_DQUOTE] = ACTIONS(2719), - [anon_sym_co_await] = ACTIONS(2717), - [anon_sym_new] = ACTIONS(2717), - [anon_sym_requires] = ACTIONS(2717), - [sym_this] = ACTIONS(2717), - [sym_nullptr] = ACTIONS(2717), - }, - [505] = { - [sym_identifier] = ACTIONS(2721), - [aux_sym_preproc_include_token1] = ACTIONS(2721), - [aux_sym_preproc_def_token1] = ACTIONS(2721), - [aux_sym_preproc_if_token1] = ACTIONS(2721), - [aux_sym_preproc_if_token2] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), - [aux_sym_preproc_else_token1] = ACTIONS(2721), - [aux_sym_preproc_elif_token1] = ACTIONS(2721), - [sym_preproc_directive] = ACTIONS(2721), - [anon_sym_LPAREN2] = ACTIONS(2723), - [anon_sym_BANG] = ACTIONS(2723), - [anon_sym_TILDE] = ACTIONS(2723), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_PLUS] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_AMP_AMP] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_SEMI] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2721), - [anon_sym_extern] = ACTIONS(2721), - [anon_sym___attribute__] = ACTIONS(2721), - [anon_sym_COLON_COLON] = ACTIONS(2723), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), - [anon_sym___declspec] = ACTIONS(2721), - [anon_sym___based] = ACTIONS(2721), - [anon_sym___cdecl] = ACTIONS(2721), - [anon_sym___clrcall] = ACTIONS(2721), - [anon_sym___stdcall] = ACTIONS(2721), - [anon_sym___fastcall] = ACTIONS(2721), - [anon_sym___thiscall] = ACTIONS(2721), - [anon_sym___vectorcall] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2721), - [anon_sym_static] = ACTIONS(2721), - [anon_sym_register] = ACTIONS(2721), - [anon_sym_inline] = ACTIONS(2721), - [anon_sym_thread_local] = ACTIONS(2721), - [anon_sym_const] = ACTIONS(2721), - [anon_sym_volatile] = ACTIONS(2721), - [anon_sym_restrict] = ACTIONS(2721), - [anon_sym__Atomic] = ACTIONS(2721), - [anon_sym_mutable] = ACTIONS(2721), - [anon_sym_constexpr] = ACTIONS(2721), - [anon_sym_constinit] = ACTIONS(2721), - [anon_sym_consteval] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2721), - [anon_sym_unsigned] = ACTIONS(2721), - [anon_sym_long] = ACTIONS(2721), - [anon_sym_short] = ACTIONS(2721), - [sym_primitive_type] = ACTIONS(2721), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2721), - [anon_sym_struct] = ACTIONS(2721), - [anon_sym_union] = ACTIONS(2721), - [anon_sym_if] = ACTIONS(2721), - [anon_sym_switch] = ACTIONS(2721), - [anon_sym_case] = ACTIONS(2721), - [anon_sym_default] = ACTIONS(2721), - [anon_sym_while] = ACTIONS(2721), - [anon_sym_do] = ACTIONS(2721), - [anon_sym_for] = ACTIONS(2721), - [anon_sym_return] = ACTIONS(2721), - [anon_sym_break] = ACTIONS(2721), - [anon_sym_continue] = ACTIONS(2721), - [anon_sym_goto] = ACTIONS(2721), - [anon_sym_not] = ACTIONS(2721), - [anon_sym_compl] = ACTIONS(2721), - [anon_sym_DASH_DASH] = ACTIONS(2723), - [anon_sym_PLUS_PLUS] = ACTIONS(2723), - [anon_sym_sizeof] = ACTIONS(2721), - [sym_number_literal] = ACTIONS(2723), - [anon_sym_L_SQUOTE] = ACTIONS(2723), - [anon_sym_u_SQUOTE] = ACTIONS(2723), - [anon_sym_U_SQUOTE] = ACTIONS(2723), - [anon_sym_u8_SQUOTE] = ACTIONS(2723), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_L_DQUOTE] = ACTIONS(2723), - [anon_sym_u_DQUOTE] = ACTIONS(2723), - [anon_sym_U_DQUOTE] = ACTIONS(2723), - [anon_sym_u8_DQUOTE] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2723), - [sym_true] = ACTIONS(2721), - [sym_false] = ACTIONS(2721), - [sym_null] = ACTIONS(2721), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2721), - [anon_sym_decltype] = ACTIONS(2721), - [anon_sym_virtual] = ACTIONS(2721), - [anon_sym_explicit] = ACTIONS(2721), - [anon_sym_typename] = ACTIONS(2721), - [anon_sym_template] = ACTIONS(2721), - [anon_sym_operator] = ACTIONS(2721), - [anon_sym_try] = ACTIONS(2721), - [anon_sym_delete] = ACTIONS(2721), - [anon_sym_throw] = ACTIONS(2721), - [anon_sym_namespace] = ACTIONS(2721), - [anon_sym_using] = ACTIONS(2721), - [anon_sym_static_assert] = ACTIONS(2721), - [anon_sym_concept] = ACTIONS(2721), - [anon_sym_co_return] = ACTIONS(2721), - [anon_sym_co_yield] = ACTIONS(2721), - [anon_sym_R_DQUOTE] = ACTIONS(2723), - [anon_sym_LR_DQUOTE] = ACTIONS(2723), - [anon_sym_uR_DQUOTE] = ACTIONS(2723), - [anon_sym_UR_DQUOTE] = ACTIONS(2723), - [anon_sym_u8R_DQUOTE] = ACTIONS(2723), - [anon_sym_co_await] = ACTIONS(2721), - [anon_sym_new] = ACTIONS(2721), - [anon_sym_requires] = ACTIONS(2721), - [sym_this] = ACTIONS(2721), - [sym_nullptr] = ACTIONS(2721), - }, - [506] = { - [sym_identifier] = ACTIONS(2725), - [aux_sym_preproc_include_token1] = ACTIONS(2725), - [aux_sym_preproc_def_token1] = ACTIONS(2725), - [aux_sym_preproc_if_token1] = ACTIONS(2725), - [aux_sym_preproc_if_token2] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), - [aux_sym_preproc_else_token1] = ACTIONS(2725), - [aux_sym_preproc_elif_token1] = ACTIONS(2725), - [sym_preproc_directive] = ACTIONS(2725), - [anon_sym_LPAREN2] = ACTIONS(2727), - [anon_sym_BANG] = ACTIONS(2727), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_AMP_AMP] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2725), - [anon_sym_extern] = ACTIONS(2725), - [anon_sym___attribute__] = ACTIONS(2725), - [anon_sym_COLON_COLON] = ACTIONS(2727), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), - [anon_sym___declspec] = ACTIONS(2725), - [anon_sym___based] = ACTIONS(2725), - [anon_sym___cdecl] = ACTIONS(2725), - [anon_sym___clrcall] = ACTIONS(2725), - [anon_sym___stdcall] = ACTIONS(2725), - [anon_sym___fastcall] = ACTIONS(2725), - [anon_sym___thiscall] = ACTIONS(2725), - [anon_sym___vectorcall] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_register] = ACTIONS(2725), - [anon_sym_inline] = ACTIONS(2725), - [anon_sym_thread_local] = ACTIONS(2725), - [anon_sym_const] = ACTIONS(2725), - [anon_sym_volatile] = ACTIONS(2725), - [anon_sym_restrict] = ACTIONS(2725), - [anon_sym__Atomic] = ACTIONS(2725), - [anon_sym_mutable] = ACTIONS(2725), - [anon_sym_constexpr] = ACTIONS(2725), - [anon_sym_constinit] = ACTIONS(2725), - [anon_sym_consteval] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2725), - [anon_sym_unsigned] = ACTIONS(2725), - [anon_sym_long] = ACTIONS(2725), - [anon_sym_short] = ACTIONS(2725), - [sym_primitive_type] = ACTIONS(2725), - [anon_sym_enum] = ACTIONS(2725), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2725), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_switch] = ACTIONS(2725), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_default] = ACTIONS(2725), - [anon_sym_while] = ACTIONS(2725), - [anon_sym_do] = ACTIONS(2725), - [anon_sym_for] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2725), - [anon_sym_break] = ACTIONS(2725), - [anon_sym_continue] = ACTIONS(2725), - [anon_sym_goto] = ACTIONS(2725), - [anon_sym_not] = ACTIONS(2725), - [anon_sym_compl] = ACTIONS(2725), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_sizeof] = ACTIONS(2725), - [sym_number_literal] = ACTIONS(2727), - [anon_sym_L_SQUOTE] = ACTIONS(2727), - [anon_sym_u_SQUOTE] = ACTIONS(2727), - [anon_sym_U_SQUOTE] = ACTIONS(2727), - [anon_sym_u8_SQUOTE] = ACTIONS(2727), - [anon_sym_SQUOTE] = ACTIONS(2727), - [anon_sym_L_DQUOTE] = ACTIONS(2727), - [anon_sym_u_DQUOTE] = ACTIONS(2727), - [anon_sym_U_DQUOTE] = ACTIONS(2727), - [anon_sym_u8_DQUOTE] = ACTIONS(2727), - [anon_sym_DQUOTE] = ACTIONS(2727), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_null] = ACTIONS(2725), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2725), - [anon_sym_decltype] = ACTIONS(2725), - [anon_sym_virtual] = ACTIONS(2725), - [anon_sym_explicit] = ACTIONS(2725), - [anon_sym_typename] = ACTIONS(2725), - [anon_sym_template] = ACTIONS(2725), - [anon_sym_operator] = ACTIONS(2725), - [anon_sym_try] = ACTIONS(2725), - [anon_sym_delete] = ACTIONS(2725), - [anon_sym_throw] = ACTIONS(2725), - [anon_sym_namespace] = ACTIONS(2725), - [anon_sym_using] = ACTIONS(2725), - [anon_sym_static_assert] = ACTIONS(2725), - [anon_sym_concept] = ACTIONS(2725), - [anon_sym_co_return] = ACTIONS(2725), - [anon_sym_co_yield] = ACTIONS(2725), - [anon_sym_R_DQUOTE] = ACTIONS(2727), - [anon_sym_LR_DQUOTE] = ACTIONS(2727), - [anon_sym_uR_DQUOTE] = ACTIONS(2727), - [anon_sym_UR_DQUOTE] = ACTIONS(2727), - [anon_sym_u8R_DQUOTE] = ACTIONS(2727), - [anon_sym_co_await] = ACTIONS(2725), - [anon_sym_new] = ACTIONS(2725), - [anon_sym_requires] = ACTIONS(2725), - [sym_this] = ACTIONS(2725), - [sym_nullptr] = ACTIONS(2725), - }, - [507] = { - [sym_identifier] = ACTIONS(2729), - [aux_sym_preproc_include_token1] = ACTIONS(2729), - [aux_sym_preproc_def_token1] = ACTIONS(2729), - [aux_sym_preproc_if_token1] = ACTIONS(2729), - [aux_sym_preproc_if_token2] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), - [aux_sym_preproc_else_token1] = ACTIONS(2729), - [aux_sym_preproc_elif_token1] = ACTIONS(2729), - [sym_preproc_directive] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_TILDE] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_AMP_AMP] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_SEMI] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2729), - [anon_sym_extern] = ACTIONS(2729), - [anon_sym___attribute__] = ACTIONS(2729), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), - [anon_sym___declspec] = ACTIONS(2729), - [anon_sym___based] = ACTIONS(2729), - [anon_sym___cdecl] = ACTIONS(2729), - [anon_sym___clrcall] = ACTIONS(2729), - [anon_sym___stdcall] = ACTIONS(2729), - [anon_sym___fastcall] = ACTIONS(2729), - [anon_sym___thiscall] = ACTIONS(2729), - [anon_sym___vectorcall] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_register] = ACTIONS(2729), - [anon_sym_inline] = ACTIONS(2729), - [anon_sym_thread_local] = ACTIONS(2729), - [anon_sym_const] = ACTIONS(2729), - [anon_sym_volatile] = ACTIONS(2729), - [anon_sym_restrict] = ACTIONS(2729), - [anon_sym__Atomic] = ACTIONS(2729), - [anon_sym_mutable] = ACTIONS(2729), - [anon_sym_constexpr] = ACTIONS(2729), - [anon_sym_constinit] = ACTIONS(2729), - [anon_sym_consteval] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2729), - [anon_sym_unsigned] = ACTIONS(2729), - [anon_sym_long] = ACTIONS(2729), - [anon_sym_short] = ACTIONS(2729), - [sym_primitive_type] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_union] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_switch] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_default] = ACTIONS(2729), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_break] = ACTIONS(2729), - [anon_sym_continue] = ACTIONS(2729), - [anon_sym_goto] = ACTIONS(2729), - [anon_sym_not] = ACTIONS(2729), - [anon_sym_compl] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_sizeof] = ACTIONS(2729), - [sym_number_literal] = ACTIONS(2731), - [anon_sym_L_SQUOTE] = ACTIONS(2731), - [anon_sym_u_SQUOTE] = ACTIONS(2731), - [anon_sym_U_SQUOTE] = ACTIONS(2731), - [anon_sym_u8_SQUOTE] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_L_DQUOTE] = ACTIONS(2731), - [anon_sym_u_DQUOTE] = ACTIONS(2731), - [anon_sym_U_DQUOTE] = ACTIONS(2731), - [anon_sym_u8_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2731), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_null] = ACTIONS(2729), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2729), - [anon_sym_decltype] = ACTIONS(2729), - [anon_sym_virtual] = ACTIONS(2729), - [anon_sym_explicit] = ACTIONS(2729), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2729), - [anon_sym_operator] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_delete] = ACTIONS(2729), - [anon_sym_throw] = ACTIONS(2729), - [anon_sym_namespace] = ACTIONS(2729), - [anon_sym_using] = ACTIONS(2729), - [anon_sym_static_assert] = ACTIONS(2729), - [anon_sym_concept] = ACTIONS(2729), - [anon_sym_co_return] = ACTIONS(2729), - [anon_sym_co_yield] = ACTIONS(2729), - [anon_sym_R_DQUOTE] = ACTIONS(2731), - [anon_sym_LR_DQUOTE] = ACTIONS(2731), - [anon_sym_uR_DQUOTE] = ACTIONS(2731), - [anon_sym_UR_DQUOTE] = ACTIONS(2731), - [anon_sym_u8R_DQUOTE] = ACTIONS(2731), - [anon_sym_co_await] = ACTIONS(2729), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_requires] = ACTIONS(2729), - [sym_this] = ACTIONS(2729), - [sym_nullptr] = ACTIONS(2729), - }, - [508] = { - [sym_identifier] = ACTIONS(2733), - [aux_sym_preproc_include_token1] = ACTIONS(2733), - [aux_sym_preproc_def_token1] = ACTIONS(2733), - [aux_sym_preproc_if_token1] = ACTIONS(2733), - [aux_sym_preproc_if_token2] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), - [aux_sym_preproc_else_token1] = ACTIONS(2733), - [aux_sym_preproc_elif_token1] = ACTIONS(2733), - [sym_preproc_directive] = ACTIONS(2733), - [anon_sym_LPAREN2] = ACTIONS(2735), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_TILDE] = ACTIONS(2735), - [anon_sym_DASH] = ACTIONS(2733), - [anon_sym_PLUS] = ACTIONS(2733), - [anon_sym_STAR] = ACTIONS(2735), - [anon_sym_AMP_AMP] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2733), - [anon_sym_SEMI] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2733), - [anon_sym_extern] = ACTIONS(2733), - [anon_sym___attribute__] = ACTIONS(2733), - [anon_sym_COLON_COLON] = ACTIONS(2735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), - [anon_sym___declspec] = ACTIONS(2733), - [anon_sym___based] = ACTIONS(2733), - [anon_sym___cdecl] = ACTIONS(2733), - [anon_sym___clrcall] = ACTIONS(2733), - [anon_sym___stdcall] = ACTIONS(2733), - [anon_sym___fastcall] = ACTIONS(2733), - [anon_sym___thiscall] = ACTIONS(2733), - [anon_sym___vectorcall] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2733), - [anon_sym_static] = ACTIONS(2733), - [anon_sym_register] = ACTIONS(2733), - [anon_sym_inline] = ACTIONS(2733), - [anon_sym_thread_local] = ACTIONS(2733), - [anon_sym_const] = ACTIONS(2733), - [anon_sym_volatile] = ACTIONS(2733), - [anon_sym_restrict] = ACTIONS(2733), - [anon_sym__Atomic] = ACTIONS(2733), - [anon_sym_mutable] = ACTIONS(2733), - [anon_sym_constexpr] = ACTIONS(2733), - [anon_sym_constinit] = ACTIONS(2733), - [anon_sym_consteval] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2733), - [anon_sym_unsigned] = ACTIONS(2733), - [anon_sym_long] = ACTIONS(2733), - [anon_sym_short] = ACTIONS(2733), - [sym_primitive_type] = ACTIONS(2733), - [anon_sym_enum] = ACTIONS(2733), - [anon_sym_class] = ACTIONS(2733), - [anon_sym_struct] = ACTIONS(2733), - [anon_sym_union] = ACTIONS(2733), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2733), - [anon_sym_case] = ACTIONS(2733), - [anon_sym_default] = ACTIONS(2733), - [anon_sym_while] = ACTIONS(2733), - [anon_sym_do] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_break] = ACTIONS(2733), - [anon_sym_continue] = ACTIONS(2733), - [anon_sym_goto] = ACTIONS(2733), - [anon_sym_not] = ACTIONS(2733), - [anon_sym_compl] = ACTIONS(2733), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_sizeof] = ACTIONS(2733), - [sym_number_literal] = ACTIONS(2735), - [anon_sym_L_SQUOTE] = ACTIONS(2735), - [anon_sym_u_SQUOTE] = ACTIONS(2735), - [anon_sym_U_SQUOTE] = ACTIONS(2735), - [anon_sym_u8_SQUOTE] = ACTIONS(2735), - [anon_sym_SQUOTE] = ACTIONS(2735), - [anon_sym_L_DQUOTE] = ACTIONS(2735), - [anon_sym_u_DQUOTE] = ACTIONS(2735), - [anon_sym_U_DQUOTE] = ACTIONS(2735), - [anon_sym_u8_DQUOTE] = ACTIONS(2735), - [anon_sym_DQUOTE] = ACTIONS(2735), - [sym_true] = ACTIONS(2733), - [sym_false] = ACTIONS(2733), - [sym_null] = ACTIONS(2733), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2733), - [anon_sym_decltype] = ACTIONS(2733), - [anon_sym_virtual] = ACTIONS(2733), - [anon_sym_explicit] = ACTIONS(2733), - [anon_sym_typename] = ACTIONS(2733), - [anon_sym_template] = ACTIONS(2733), - [anon_sym_operator] = ACTIONS(2733), - [anon_sym_try] = ACTIONS(2733), - [anon_sym_delete] = ACTIONS(2733), - [anon_sym_throw] = ACTIONS(2733), - [anon_sym_namespace] = ACTIONS(2733), - [anon_sym_using] = ACTIONS(2733), - [anon_sym_static_assert] = ACTIONS(2733), - [anon_sym_concept] = ACTIONS(2733), - [anon_sym_co_return] = ACTIONS(2733), - [anon_sym_co_yield] = ACTIONS(2733), - [anon_sym_R_DQUOTE] = ACTIONS(2735), - [anon_sym_LR_DQUOTE] = ACTIONS(2735), - [anon_sym_uR_DQUOTE] = ACTIONS(2735), - [anon_sym_UR_DQUOTE] = ACTIONS(2735), - [anon_sym_u8R_DQUOTE] = ACTIONS(2735), - [anon_sym_co_await] = ACTIONS(2733), - [anon_sym_new] = ACTIONS(2733), - [anon_sym_requires] = ACTIONS(2733), - [sym_this] = ACTIONS(2733), - [sym_nullptr] = ACTIONS(2733), - }, - [509] = { - [sym_identifier] = ACTIONS(2737), - [aux_sym_preproc_include_token1] = ACTIONS(2737), - [aux_sym_preproc_def_token1] = ACTIONS(2737), - [aux_sym_preproc_if_token1] = ACTIONS(2737), - [aux_sym_preproc_if_token2] = ACTIONS(2737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2737), - [aux_sym_preproc_else_token1] = ACTIONS(2737), - [aux_sym_preproc_elif_token1] = ACTIONS(2737), - [sym_preproc_directive] = ACTIONS(2737), - [anon_sym_LPAREN2] = ACTIONS(2739), - [anon_sym_BANG] = ACTIONS(2739), - [anon_sym_TILDE] = ACTIONS(2739), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_PLUS] = ACTIONS(2737), - [anon_sym_STAR] = ACTIONS(2739), - [anon_sym_AMP_AMP] = ACTIONS(2739), - [anon_sym_AMP] = ACTIONS(2737), - [anon_sym_SEMI] = ACTIONS(2739), - [anon_sym_typedef] = ACTIONS(2737), - [anon_sym_extern] = ACTIONS(2737), - [anon_sym___attribute__] = ACTIONS(2737), - [anon_sym_COLON_COLON] = ACTIONS(2739), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2739), - [anon_sym___declspec] = ACTIONS(2737), - [anon_sym___based] = ACTIONS(2737), - [anon_sym___cdecl] = ACTIONS(2737), - [anon_sym___clrcall] = ACTIONS(2737), - [anon_sym___stdcall] = ACTIONS(2737), - [anon_sym___fastcall] = ACTIONS(2737), - [anon_sym___thiscall] = ACTIONS(2737), - [anon_sym___vectorcall] = ACTIONS(2737), - [anon_sym_LBRACE] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2737), - [anon_sym_static] = ACTIONS(2737), - [anon_sym_register] = ACTIONS(2737), - [anon_sym_inline] = ACTIONS(2737), - [anon_sym_thread_local] = ACTIONS(2737), - [anon_sym_const] = ACTIONS(2737), - [anon_sym_volatile] = ACTIONS(2737), - [anon_sym_restrict] = ACTIONS(2737), - [anon_sym__Atomic] = ACTIONS(2737), - [anon_sym_mutable] = ACTIONS(2737), - [anon_sym_constexpr] = ACTIONS(2737), - [anon_sym_constinit] = ACTIONS(2737), - [anon_sym_consteval] = ACTIONS(2737), - [anon_sym_signed] = ACTIONS(2737), - [anon_sym_unsigned] = ACTIONS(2737), - [anon_sym_long] = ACTIONS(2737), - [anon_sym_short] = ACTIONS(2737), - [sym_primitive_type] = ACTIONS(2737), - [anon_sym_enum] = ACTIONS(2737), - [anon_sym_class] = ACTIONS(2737), - [anon_sym_struct] = ACTIONS(2737), - [anon_sym_union] = ACTIONS(2737), - [anon_sym_if] = ACTIONS(2737), - [anon_sym_switch] = ACTIONS(2737), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2737), - [anon_sym_while] = ACTIONS(2737), - [anon_sym_do] = ACTIONS(2737), - [anon_sym_for] = ACTIONS(2737), - [anon_sym_return] = ACTIONS(2737), - [anon_sym_break] = ACTIONS(2737), - [anon_sym_continue] = ACTIONS(2737), - [anon_sym_goto] = ACTIONS(2737), - [anon_sym_not] = ACTIONS(2737), - [anon_sym_compl] = ACTIONS(2737), - [anon_sym_DASH_DASH] = ACTIONS(2739), - [anon_sym_PLUS_PLUS] = ACTIONS(2739), - [anon_sym_sizeof] = ACTIONS(2737), - [sym_number_literal] = ACTIONS(2739), - [anon_sym_L_SQUOTE] = ACTIONS(2739), - [anon_sym_u_SQUOTE] = ACTIONS(2739), - [anon_sym_U_SQUOTE] = ACTIONS(2739), - [anon_sym_u8_SQUOTE] = ACTIONS(2739), - [anon_sym_SQUOTE] = ACTIONS(2739), - [anon_sym_L_DQUOTE] = ACTIONS(2739), - [anon_sym_u_DQUOTE] = ACTIONS(2739), - [anon_sym_U_DQUOTE] = ACTIONS(2739), - [anon_sym_u8_DQUOTE] = ACTIONS(2739), - [anon_sym_DQUOTE] = ACTIONS(2739), - [sym_true] = ACTIONS(2737), - [sym_false] = ACTIONS(2737), - [sym_null] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2737), - [anon_sym_decltype] = ACTIONS(2737), - [anon_sym_virtual] = ACTIONS(2737), - [anon_sym_explicit] = ACTIONS(2737), - [anon_sym_typename] = ACTIONS(2737), - [anon_sym_template] = ACTIONS(2737), - [anon_sym_operator] = ACTIONS(2737), - [anon_sym_try] = ACTIONS(2737), - [anon_sym_delete] = ACTIONS(2737), - [anon_sym_throw] = ACTIONS(2737), - [anon_sym_namespace] = ACTIONS(2737), - [anon_sym_using] = ACTIONS(2737), - [anon_sym_static_assert] = ACTIONS(2737), - [anon_sym_concept] = ACTIONS(2737), - [anon_sym_co_return] = ACTIONS(2737), - [anon_sym_co_yield] = ACTIONS(2737), - [anon_sym_R_DQUOTE] = ACTIONS(2739), - [anon_sym_LR_DQUOTE] = ACTIONS(2739), - [anon_sym_uR_DQUOTE] = ACTIONS(2739), - [anon_sym_UR_DQUOTE] = ACTIONS(2739), - [anon_sym_u8R_DQUOTE] = ACTIONS(2739), - [anon_sym_co_await] = ACTIONS(2737), - [anon_sym_new] = ACTIONS(2737), - [anon_sym_requires] = ACTIONS(2737), - [sym_this] = ACTIONS(2737), - [sym_nullptr] = ACTIONS(2737), - }, - [510] = { - [sym_identifier] = ACTIONS(2741), - [aux_sym_preproc_include_token1] = ACTIONS(2741), - [aux_sym_preproc_def_token1] = ACTIONS(2741), - [aux_sym_preproc_if_token1] = ACTIONS(2741), - [aux_sym_preproc_if_token2] = ACTIONS(2741), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2741), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2741), - [aux_sym_preproc_else_token1] = ACTIONS(2741), - [aux_sym_preproc_elif_token1] = ACTIONS(2741), - [sym_preproc_directive] = ACTIONS(2741), - [anon_sym_LPAREN2] = ACTIONS(2743), - [anon_sym_BANG] = ACTIONS(2743), - [anon_sym_TILDE] = ACTIONS(2743), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_AMP_AMP] = ACTIONS(2743), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_SEMI] = ACTIONS(2743), - [anon_sym_typedef] = ACTIONS(2741), - [anon_sym_extern] = ACTIONS(2741), - [anon_sym___attribute__] = ACTIONS(2741), - [anon_sym_COLON_COLON] = ACTIONS(2743), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2743), - [anon_sym___declspec] = ACTIONS(2741), - [anon_sym___based] = ACTIONS(2741), - [anon_sym___cdecl] = ACTIONS(2741), - [anon_sym___clrcall] = ACTIONS(2741), - [anon_sym___stdcall] = ACTIONS(2741), - [anon_sym___fastcall] = ACTIONS(2741), - [anon_sym___thiscall] = ACTIONS(2741), - [anon_sym___vectorcall] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2741), - [anon_sym_static] = ACTIONS(2741), - [anon_sym_register] = ACTIONS(2741), - [anon_sym_inline] = ACTIONS(2741), - [anon_sym_thread_local] = ACTIONS(2741), - [anon_sym_const] = ACTIONS(2741), - [anon_sym_volatile] = ACTIONS(2741), - [anon_sym_restrict] = ACTIONS(2741), - [anon_sym__Atomic] = ACTIONS(2741), - [anon_sym_mutable] = ACTIONS(2741), - [anon_sym_constexpr] = ACTIONS(2741), - [anon_sym_constinit] = ACTIONS(2741), - [anon_sym_consteval] = ACTIONS(2741), - [anon_sym_signed] = ACTIONS(2741), - [anon_sym_unsigned] = ACTIONS(2741), - [anon_sym_long] = ACTIONS(2741), - [anon_sym_short] = ACTIONS(2741), - [sym_primitive_type] = ACTIONS(2741), - [anon_sym_enum] = ACTIONS(2741), - [anon_sym_class] = ACTIONS(2741), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_union] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_switch] = ACTIONS(2741), - [anon_sym_case] = ACTIONS(2741), - [anon_sym_default] = ACTIONS(2741), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_return] = ACTIONS(2741), - [anon_sym_break] = ACTIONS(2741), - [anon_sym_continue] = ACTIONS(2741), - [anon_sym_goto] = ACTIONS(2741), - [anon_sym_not] = ACTIONS(2741), - [anon_sym_compl] = ACTIONS(2741), - [anon_sym_DASH_DASH] = ACTIONS(2743), - [anon_sym_PLUS_PLUS] = ACTIONS(2743), - [anon_sym_sizeof] = ACTIONS(2741), - [sym_number_literal] = ACTIONS(2743), - [anon_sym_L_SQUOTE] = ACTIONS(2743), - [anon_sym_u_SQUOTE] = ACTIONS(2743), - [anon_sym_U_SQUOTE] = ACTIONS(2743), - [anon_sym_u8_SQUOTE] = ACTIONS(2743), - [anon_sym_SQUOTE] = ACTIONS(2743), - [anon_sym_L_DQUOTE] = ACTIONS(2743), - [anon_sym_u_DQUOTE] = ACTIONS(2743), - [anon_sym_U_DQUOTE] = ACTIONS(2743), - [anon_sym_u8_DQUOTE] = ACTIONS(2743), - [anon_sym_DQUOTE] = ACTIONS(2743), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_null] = ACTIONS(2741), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2741), - [anon_sym_decltype] = ACTIONS(2741), - [anon_sym_virtual] = ACTIONS(2741), - [anon_sym_explicit] = ACTIONS(2741), - [anon_sym_typename] = ACTIONS(2741), - [anon_sym_template] = ACTIONS(2741), - [anon_sym_operator] = ACTIONS(2741), - [anon_sym_try] = ACTIONS(2741), - [anon_sym_delete] = ACTIONS(2741), - [anon_sym_throw] = ACTIONS(2741), - [anon_sym_namespace] = ACTIONS(2741), - [anon_sym_using] = ACTIONS(2741), - [anon_sym_static_assert] = ACTIONS(2741), - [anon_sym_concept] = ACTIONS(2741), - [anon_sym_co_return] = ACTIONS(2741), - [anon_sym_co_yield] = ACTIONS(2741), - [anon_sym_R_DQUOTE] = ACTIONS(2743), - [anon_sym_LR_DQUOTE] = ACTIONS(2743), - [anon_sym_uR_DQUOTE] = ACTIONS(2743), - [anon_sym_UR_DQUOTE] = ACTIONS(2743), - [anon_sym_u8R_DQUOTE] = ACTIONS(2743), - [anon_sym_co_await] = ACTIONS(2741), - [anon_sym_new] = ACTIONS(2741), - [anon_sym_requires] = ACTIONS(2741), - [sym_this] = ACTIONS(2741), - [sym_nullptr] = ACTIONS(2741), - }, - [511] = { - [sym_identifier] = ACTIONS(2745), - [aux_sym_preproc_include_token1] = ACTIONS(2745), - [aux_sym_preproc_def_token1] = ACTIONS(2745), - [aux_sym_preproc_if_token1] = ACTIONS(2745), - [aux_sym_preproc_if_token2] = ACTIONS(2745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2745), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2745), - [aux_sym_preproc_else_token1] = ACTIONS(2745), - [aux_sym_preproc_elif_token1] = ACTIONS(2745), - [sym_preproc_directive] = ACTIONS(2745), - [anon_sym_LPAREN2] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_AMP_AMP] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2745), - [anon_sym_extern] = ACTIONS(2745), - [anon_sym___attribute__] = ACTIONS(2745), - [anon_sym_COLON_COLON] = ACTIONS(2747), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2747), - [anon_sym___declspec] = ACTIONS(2745), - [anon_sym___based] = ACTIONS(2745), - [anon_sym___cdecl] = ACTIONS(2745), - [anon_sym___clrcall] = ACTIONS(2745), - [anon_sym___stdcall] = ACTIONS(2745), - [anon_sym___fastcall] = ACTIONS(2745), - [anon_sym___thiscall] = ACTIONS(2745), - [anon_sym___vectorcall] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_static] = ACTIONS(2745), - [anon_sym_register] = ACTIONS(2745), - [anon_sym_inline] = ACTIONS(2745), - [anon_sym_thread_local] = ACTIONS(2745), - [anon_sym_const] = ACTIONS(2745), - [anon_sym_volatile] = ACTIONS(2745), - [anon_sym_restrict] = ACTIONS(2745), - [anon_sym__Atomic] = ACTIONS(2745), - [anon_sym_mutable] = ACTIONS(2745), - [anon_sym_constexpr] = ACTIONS(2745), - [anon_sym_constinit] = ACTIONS(2745), - [anon_sym_consteval] = ACTIONS(2745), - [anon_sym_signed] = ACTIONS(2745), - [anon_sym_unsigned] = ACTIONS(2745), - [anon_sym_long] = ACTIONS(2745), - [anon_sym_short] = ACTIONS(2745), - [sym_primitive_type] = ACTIONS(2745), - [anon_sym_enum] = ACTIONS(2745), - [anon_sym_class] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2745), - [anon_sym_union] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_switch] = ACTIONS(2745), - [anon_sym_case] = ACTIONS(2745), - [anon_sym_default] = ACTIONS(2745), - [anon_sym_while] = ACTIONS(2745), - [anon_sym_do] = ACTIONS(2745), - [anon_sym_for] = ACTIONS(2745), - [anon_sym_return] = ACTIONS(2745), - [anon_sym_break] = ACTIONS(2745), - [anon_sym_continue] = ACTIONS(2745), - [anon_sym_goto] = ACTIONS(2745), - [anon_sym_not] = ACTIONS(2745), - [anon_sym_compl] = ACTIONS(2745), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_sizeof] = ACTIONS(2745), - [sym_number_literal] = ACTIONS(2747), - [anon_sym_L_SQUOTE] = ACTIONS(2747), - [anon_sym_u_SQUOTE] = ACTIONS(2747), - [anon_sym_U_SQUOTE] = ACTIONS(2747), - [anon_sym_u8_SQUOTE] = ACTIONS(2747), - [anon_sym_SQUOTE] = ACTIONS(2747), - [anon_sym_L_DQUOTE] = ACTIONS(2747), - [anon_sym_u_DQUOTE] = ACTIONS(2747), - [anon_sym_U_DQUOTE] = ACTIONS(2747), - [anon_sym_u8_DQUOTE] = ACTIONS(2747), - [anon_sym_DQUOTE] = ACTIONS(2747), - [sym_true] = ACTIONS(2745), - [sym_false] = ACTIONS(2745), - [sym_null] = ACTIONS(2745), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2745), - [anon_sym_decltype] = ACTIONS(2745), - [anon_sym_virtual] = ACTIONS(2745), - [anon_sym_explicit] = ACTIONS(2745), - [anon_sym_typename] = ACTIONS(2745), - [anon_sym_template] = ACTIONS(2745), - [anon_sym_operator] = ACTIONS(2745), - [anon_sym_try] = ACTIONS(2745), - [anon_sym_delete] = ACTIONS(2745), - [anon_sym_throw] = ACTIONS(2745), - [anon_sym_namespace] = ACTIONS(2745), - [anon_sym_using] = ACTIONS(2745), - [anon_sym_static_assert] = ACTIONS(2745), - [anon_sym_concept] = ACTIONS(2745), - [anon_sym_co_return] = ACTIONS(2745), - [anon_sym_co_yield] = ACTIONS(2745), - [anon_sym_R_DQUOTE] = ACTIONS(2747), - [anon_sym_LR_DQUOTE] = ACTIONS(2747), - [anon_sym_uR_DQUOTE] = ACTIONS(2747), - [anon_sym_UR_DQUOTE] = ACTIONS(2747), - [anon_sym_u8R_DQUOTE] = ACTIONS(2747), - [anon_sym_co_await] = ACTIONS(2745), - [anon_sym_new] = ACTIONS(2745), - [anon_sym_requires] = ACTIONS(2745), - [sym_this] = ACTIONS(2745), - [sym_nullptr] = ACTIONS(2745), - }, - [512] = { - [sym_identifier] = ACTIONS(2749), - [aux_sym_preproc_include_token1] = ACTIONS(2749), - [aux_sym_preproc_def_token1] = ACTIONS(2749), - [aux_sym_preproc_if_token1] = ACTIONS(2749), - [aux_sym_preproc_if_token2] = ACTIONS(2749), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2749), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2749), - [aux_sym_preproc_else_token1] = ACTIONS(2749), - [aux_sym_preproc_elif_token1] = ACTIONS(2749), - [sym_preproc_directive] = ACTIONS(2749), - [anon_sym_LPAREN2] = ACTIONS(2751), - [anon_sym_BANG] = ACTIONS(2751), - [anon_sym_TILDE] = ACTIONS(2751), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_PLUS] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2751), - [anon_sym_AMP_AMP] = ACTIONS(2751), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_SEMI] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2749), - [anon_sym_extern] = ACTIONS(2749), - [anon_sym___attribute__] = ACTIONS(2749), - [anon_sym_COLON_COLON] = ACTIONS(2751), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2751), - [anon_sym___declspec] = ACTIONS(2749), - [anon_sym___based] = ACTIONS(2749), - [anon_sym___cdecl] = ACTIONS(2749), - [anon_sym___clrcall] = ACTIONS(2749), - [anon_sym___stdcall] = ACTIONS(2749), - [anon_sym___fastcall] = ACTIONS(2749), - [anon_sym___thiscall] = ACTIONS(2749), - [anon_sym___vectorcall] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2749), - [anon_sym_static] = ACTIONS(2749), - [anon_sym_register] = ACTIONS(2749), - [anon_sym_inline] = ACTIONS(2749), - [anon_sym_thread_local] = ACTIONS(2749), - [anon_sym_const] = ACTIONS(2749), - [anon_sym_volatile] = ACTIONS(2749), - [anon_sym_restrict] = ACTIONS(2749), - [anon_sym__Atomic] = ACTIONS(2749), - [anon_sym_mutable] = ACTIONS(2749), - [anon_sym_constexpr] = ACTIONS(2749), - [anon_sym_constinit] = ACTIONS(2749), - [anon_sym_consteval] = ACTIONS(2749), - [anon_sym_signed] = ACTIONS(2749), - [anon_sym_unsigned] = ACTIONS(2749), - [anon_sym_long] = ACTIONS(2749), - [anon_sym_short] = ACTIONS(2749), - [sym_primitive_type] = ACTIONS(2749), - [anon_sym_enum] = ACTIONS(2749), - [anon_sym_class] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2749), - [anon_sym_union] = ACTIONS(2749), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_switch] = ACTIONS(2749), - [anon_sym_case] = ACTIONS(2749), - [anon_sym_default] = ACTIONS(2749), - [anon_sym_while] = ACTIONS(2749), - [anon_sym_do] = ACTIONS(2749), - [anon_sym_for] = ACTIONS(2749), - [anon_sym_return] = ACTIONS(2749), - [anon_sym_break] = ACTIONS(2749), - [anon_sym_continue] = ACTIONS(2749), - [anon_sym_goto] = ACTIONS(2749), - [anon_sym_not] = ACTIONS(2749), - [anon_sym_compl] = ACTIONS(2749), - [anon_sym_DASH_DASH] = ACTIONS(2751), - [anon_sym_PLUS_PLUS] = ACTIONS(2751), - [anon_sym_sizeof] = ACTIONS(2749), - [sym_number_literal] = ACTIONS(2751), - [anon_sym_L_SQUOTE] = ACTIONS(2751), - [anon_sym_u_SQUOTE] = ACTIONS(2751), - [anon_sym_U_SQUOTE] = ACTIONS(2751), - [anon_sym_u8_SQUOTE] = ACTIONS(2751), - [anon_sym_SQUOTE] = ACTIONS(2751), - [anon_sym_L_DQUOTE] = ACTIONS(2751), - [anon_sym_u_DQUOTE] = ACTIONS(2751), - [anon_sym_U_DQUOTE] = ACTIONS(2751), - [anon_sym_u8_DQUOTE] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(2751), - [sym_true] = ACTIONS(2749), - [sym_false] = ACTIONS(2749), - [sym_null] = ACTIONS(2749), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2749), - [anon_sym_decltype] = ACTIONS(2749), - [anon_sym_virtual] = ACTIONS(2749), - [anon_sym_explicit] = ACTIONS(2749), - [anon_sym_typename] = ACTIONS(2749), - [anon_sym_template] = ACTIONS(2749), - [anon_sym_operator] = ACTIONS(2749), - [anon_sym_try] = ACTIONS(2749), - [anon_sym_delete] = ACTIONS(2749), - [anon_sym_throw] = ACTIONS(2749), - [anon_sym_namespace] = ACTIONS(2749), - [anon_sym_using] = ACTIONS(2749), - [anon_sym_static_assert] = ACTIONS(2749), - [anon_sym_concept] = ACTIONS(2749), - [anon_sym_co_return] = ACTIONS(2749), - [anon_sym_co_yield] = ACTIONS(2749), - [anon_sym_R_DQUOTE] = ACTIONS(2751), - [anon_sym_LR_DQUOTE] = ACTIONS(2751), - [anon_sym_uR_DQUOTE] = ACTIONS(2751), - [anon_sym_UR_DQUOTE] = ACTIONS(2751), - [anon_sym_u8R_DQUOTE] = ACTIONS(2751), - [anon_sym_co_await] = ACTIONS(2749), - [anon_sym_new] = ACTIONS(2749), - [anon_sym_requires] = ACTIONS(2749), - [sym_this] = ACTIONS(2749), - [sym_nullptr] = ACTIONS(2749), - }, - [513] = { - [sym_identifier] = ACTIONS(2753), - [aux_sym_preproc_include_token1] = ACTIONS(2753), - [aux_sym_preproc_def_token1] = ACTIONS(2753), - [aux_sym_preproc_if_token1] = ACTIONS(2753), - [aux_sym_preproc_if_token2] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), - [aux_sym_preproc_else_token1] = ACTIONS(2753), - [aux_sym_preproc_elif_token1] = ACTIONS(2753), - [sym_preproc_directive] = ACTIONS(2753), - [anon_sym_LPAREN2] = ACTIONS(2755), - [anon_sym_BANG] = ACTIONS(2755), - [anon_sym_TILDE] = ACTIONS(2755), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_SEMI] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2753), - [anon_sym_extern] = ACTIONS(2753), - [anon_sym___attribute__] = ACTIONS(2753), - [anon_sym_COLON_COLON] = ACTIONS(2755), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), - [anon_sym___declspec] = ACTIONS(2753), - [anon_sym___based] = ACTIONS(2753), - [anon_sym___cdecl] = ACTIONS(2753), - [anon_sym___clrcall] = ACTIONS(2753), - [anon_sym___stdcall] = ACTIONS(2753), - [anon_sym___fastcall] = ACTIONS(2753), - [anon_sym___thiscall] = ACTIONS(2753), - [anon_sym___vectorcall] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2753), - [anon_sym_static] = ACTIONS(2753), - [anon_sym_register] = ACTIONS(2753), - [anon_sym_inline] = ACTIONS(2753), - [anon_sym_thread_local] = ACTIONS(2753), - [anon_sym_const] = ACTIONS(2753), - [anon_sym_volatile] = ACTIONS(2753), - [anon_sym_restrict] = ACTIONS(2753), - [anon_sym__Atomic] = ACTIONS(2753), - [anon_sym_mutable] = ACTIONS(2753), - [anon_sym_constexpr] = ACTIONS(2753), - [anon_sym_constinit] = ACTIONS(2753), - [anon_sym_consteval] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2753), - [anon_sym_unsigned] = ACTIONS(2753), - [anon_sym_long] = ACTIONS(2753), - [anon_sym_short] = ACTIONS(2753), - [sym_primitive_type] = ACTIONS(2753), - [anon_sym_enum] = ACTIONS(2753), - [anon_sym_class] = ACTIONS(2753), - [anon_sym_struct] = ACTIONS(2753), - [anon_sym_union] = ACTIONS(2753), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_switch] = ACTIONS(2753), - [anon_sym_case] = ACTIONS(2753), - [anon_sym_default] = ACTIONS(2753), - [anon_sym_while] = ACTIONS(2753), - [anon_sym_do] = ACTIONS(2753), - [anon_sym_for] = ACTIONS(2753), - [anon_sym_return] = ACTIONS(2753), - [anon_sym_break] = ACTIONS(2753), - [anon_sym_continue] = ACTIONS(2753), - [anon_sym_goto] = ACTIONS(2753), - [anon_sym_not] = ACTIONS(2753), - [anon_sym_compl] = ACTIONS(2753), - [anon_sym_DASH_DASH] = ACTIONS(2755), - [anon_sym_PLUS_PLUS] = ACTIONS(2755), - [anon_sym_sizeof] = ACTIONS(2753), - [sym_number_literal] = ACTIONS(2755), - [anon_sym_L_SQUOTE] = ACTIONS(2755), - [anon_sym_u_SQUOTE] = ACTIONS(2755), - [anon_sym_U_SQUOTE] = ACTIONS(2755), - [anon_sym_u8_SQUOTE] = ACTIONS(2755), - [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_L_DQUOTE] = ACTIONS(2755), - [anon_sym_u_DQUOTE] = ACTIONS(2755), - [anon_sym_U_DQUOTE] = ACTIONS(2755), - [anon_sym_u8_DQUOTE] = ACTIONS(2755), - [anon_sym_DQUOTE] = ACTIONS(2755), - [sym_true] = ACTIONS(2753), - [sym_false] = ACTIONS(2753), - [sym_null] = ACTIONS(2753), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2753), - [anon_sym_decltype] = ACTIONS(2753), - [anon_sym_virtual] = ACTIONS(2753), - [anon_sym_explicit] = ACTIONS(2753), - [anon_sym_typename] = ACTIONS(2753), - [anon_sym_template] = ACTIONS(2753), - [anon_sym_operator] = ACTIONS(2753), - [anon_sym_try] = ACTIONS(2753), - [anon_sym_delete] = ACTIONS(2753), - [anon_sym_throw] = ACTIONS(2753), - [anon_sym_namespace] = ACTIONS(2753), - [anon_sym_using] = ACTIONS(2753), - [anon_sym_static_assert] = ACTIONS(2753), - [anon_sym_concept] = ACTIONS(2753), - [anon_sym_co_return] = ACTIONS(2753), - [anon_sym_co_yield] = ACTIONS(2753), - [anon_sym_R_DQUOTE] = ACTIONS(2755), - [anon_sym_LR_DQUOTE] = ACTIONS(2755), - [anon_sym_uR_DQUOTE] = ACTIONS(2755), - [anon_sym_UR_DQUOTE] = ACTIONS(2755), - [anon_sym_u8R_DQUOTE] = ACTIONS(2755), - [anon_sym_co_await] = ACTIONS(2753), - [anon_sym_new] = ACTIONS(2753), - [anon_sym_requires] = ACTIONS(2753), - [sym_this] = ACTIONS(2753), - [sym_nullptr] = ACTIONS(2753), - }, - [514] = { - [sym_identifier] = ACTIONS(2757), - [aux_sym_preproc_include_token1] = ACTIONS(2757), - [aux_sym_preproc_def_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token2] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), - [aux_sym_preproc_else_token1] = ACTIONS(2757), - [aux_sym_preproc_elif_token1] = ACTIONS(2757), - [sym_preproc_directive] = ACTIONS(2757), - [anon_sym_LPAREN2] = ACTIONS(2759), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2757), - [anon_sym_extern] = ACTIONS(2757), - [anon_sym___attribute__] = ACTIONS(2757), - [anon_sym_COLON_COLON] = ACTIONS(2759), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), - [anon_sym___declspec] = ACTIONS(2757), - [anon_sym___based] = ACTIONS(2757), - [anon_sym___cdecl] = ACTIONS(2757), - [anon_sym___clrcall] = ACTIONS(2757), - [anon_sym___stdcall] = ACTIONS(2757), - [anon_sym___fastcall] = ACTIONS(2757), - [anon_sym___thiscall] = ACTIONS(2757), - [anon_sym___vectorcall] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2757), - [anon_sym_static] = ACTIONS(2757), - [anon_sym_register] = ACTIONS(2757), - [anon_sym_inline] = ACTIONS(2757), - [anon_sym_thread_local] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_volatile] = ACTIONS(2757), - [anon_sym_restrict] = ACTIONS(2757), - [anon_sym__Atomic] = ACTIONS(2757), - [anon_sym_mutable] = ACTIONS(2757), - [anon_sym_constexpr] = ACTIONS(2757), - [anon_sym_constinit] = ACTIONS(2757), - [anon_sym_consteval] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2757), - [anon_sym_unsigned] = ACTIONS(2757), - [anon_sym_long] = ACTIONS(2757), - [anon_sym_short] = ACTIONS(2757), - [sym_primitive_type] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_class] = ACTIONS(2757), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_switch] = ACTIONS(2757), - [anon_sym_case] = ACTIONS(2757), - [anon_sym_default] = ACTIONS(2757), - [anon_sym_while] = ACTIONS(2757), - [anon_sym_do] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_not] = ACTIONS(2757), - [anon_sym_compl] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_sizeof] = ACTIONS(2757), - [sym_number_literal] = ACTIONS(2759), - [anon_sym_L_SQUOTE] = ACTIONS(2759), - [anon_sym_u_SQUOTE] = ACTIONS(2759), - [anon_sym_U_SQUOTE] = ACTIONS(2759), - [anon_sym_u8_SQUOTE] = ACTIONS(2759), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_L_DQUOTE] = ACTIONS(2759), - [anon_sym_u_DQUOTE] = ACTIONS(2759), - [anon_sym_U_DQUOTE] = ACTIONS(2759), - [anon_sym_u8_DQUOTE] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_null] = ACTIONS(2757), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2757), - [anon_sym_decltype] = ACTIONS(2757), - [anon_sym_virtual] = ACTIONS(2757), - [anon_sym_explicit] = ACTIONS(2757), - [anon_sym_typename] = ACTIONS(2757), - [anon_sym_template] = ACTIONS(2757), - [anon_sym_operator] = ACTIONS(2757), - [anon_sym_try] = ACTIONS(2757), - [anon_sym_delete] = ACTIONS(2757), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_namespace] = ACTIONS(2757), - [anon_sym_using] = ACTIONS(2757), - [anon_sym_static_assert] = ACTIONS(2757), - [anon_sym_concept] = ACTIONS(2757), - [anon_sym_co_return] = ACTIONS(2757), - [anon_sym_co_yield] = ACTIONS(2757), - [anon_sym_R_DQUOTE] = ACTIONS(2759), - [anon_sym_LR_DQUOTE] = ACTIONS(2759), - [anon_sym_uR_DQUOTE] = ACTIONS(2759), - [anon_sym_UR_DQUOTE] = ACTIONS(2759), - [anon_sym_u8R_DQUOTE] = ACTIONS(2759), - [anon_sym_co_await] = ACTIONS(2757), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_requires] = ACTIONS(2757), - [sym_this] = ACTIONS(2757), - [sym_nullptr] = ACTIONS(2757), - }, - [515] = { - [sym_identifier] = ACTIONS(2337), - [aux_sym_preproc_include_token1] = ACTIONS(2337), - [aux_sym_preproc_def_token1] = ACTIONS(2337), - [aux_sym_preproc_if_token1] = ACTIONS(2337), - [aux_sym_preproc_if_token2] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), - [sym_preproc_directive] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2335), - [anon_sym_AMP_AMP] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_typedef] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym___attribute__] = ACTIONS(2337), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), - [anon_sym___declspec] = ACTIONS(2337), - [anon_sym___based] = ACTIONS(2337), - [anon_sym___cdecl] = ACTIONS(2337), - [anon_sym___clrcall] = ACTIONS(2337), - [anon_sym___stdcall] = ACTIONS(2337), - [anon_sym___fastcall] = ACTIONS(2337), - [anon_sym___thiscall] = ACTIONS(2337), - [anon_sym___vectorcall] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_inline] = ACTIONS(2337), - [anon_sym_thread_local] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_volatile] = ACTIONS(2337), - [anon_sym_restrict] = ACTIONS(2337), - [anon_sym__Atomic] = ACTIONS(2337), - [anon_sym_mutable] = ACTIONS(2337), - [anon_sym_constexpr] = ACTIONS(2337), - [anon_sym_constinit] = ACTIONS(2337), - [anon_sym_consteval] = ACTIONS(2337), - [anon_sym_signed] = ACTIONS(2337), - [anon_sym_unsigned] = ACTIONS(2337), - [anon_sym_long] = ACTIONS(2337), - [anon_sym_short] = ACTIONS(2337), - [sym_primitive_type] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2337), - [anon_sym_union] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_case] = ACTIONS(2337), - [anon_sym_default] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_goto] = ACTIONS(2337), - [anon_sym_not] = ACTIONS(2337), - [anon_sym_compl] = ACTIONS(2337), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_sizeof] = ACTIONS(2337), - [sym_number_literal] = ACTIONS(2335), - [anon_sym_L_SQUOTE] = ACTIONS(2335), - [anon_sym_u_SQUOTE] = ACTIONS(2335), - [anon_sym_U_SQUOTE] = ACTIONS(2335), - [anon_sym_u8_SQUOTE] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_L_DQUOTE] = ACTIONS(2335), - [anon_sym_u_DQUOTE] = ACTIONS(2335), - [anon_sym_U_DQUOTE] = ACTIONS(2335), - [anon_sym_u8_DQUOTE] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_true] = ACTIONS(2337), - [sym_false] = ACTIONS(2337), - [sym_null] = ACTIONS(2337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2337), - [anon_sym_decltype] = ACTIONS(2337), - [anon_sym_virtual] = ACTIONS(2337), - [anon_sym_explicit] = ACTIONS(2337), - [anon_sym_typename] = ACTIONS(2337), - [anon_sym_template] = ACTIONS(2337), - [anon_sym_operator] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_delete] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_using] = ACTIONS(2337), - [anon_sym_static_assert] = ACTIONS(2337), - [anon_sym_concept] = ACTIONS(2337), - [anon_sym_co_return] = ACTIONS(2337), - [anon_sym_co_yield] = ACTIONS(2337), - [anon_sym_catch] = ACTIONS(2337), - [anon_sym_R_DQUOTE] = ACTIONS(2335), - [anon_sym_LR_DQUOTE] = ACTIONS(2335), - [anon_sym_uR_DQUOTE] = ACTIONS(2335), - [anon_sym_UR_DQUOTE] = ACTIONS(2335), - [anon_sym_u8R_DQUOTE] = ACTIONS(2335), - [anon_sym_co_await] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_requires] = ACTIONS(2337), - [sym_this] = ACTIONS(2337), - [sym_nullptr] = ACTIONS(2337), - }, - [516] = { - [sym_identifier] = ACTIONS(2761), - [aux_sym_preproc_include_token1] = ACTIONS(2761), - [aux_sym_preproc_def_token1] = ACTIONS(2761), - [aux_sym_preproc_if_token1] = ACTIONS(2761), - [aux_sym_preproc_if_token2] = ACTIONS(2761), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2761), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2761), - [aux_sym_preproc_else_token1] = ACTIONS(2761), - [aux_sym_preproc_elif_token1] = ACTIONS(2761), - [sym_preproc_directive] = ACTIONS(2761), - [anon_sym_LPAREN2] = ACTIONS(2763), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_TILDE] = ACTIONS(2763), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2763), - [anon_sym_AMP_AMP] = ACTIONS(2763), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(2761), - [anon_sym_extern] = ACTIONS(2761), - [anon_sym___attribute__] = ACTIONS(2761), - [anon_sym_COLON_COLON] = ACTIONS(2763), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2763), - [anon_sym___declspec] = ACTIONS(2761), - [anon_sym___based] = ACTIONS(2761), - [anon_sym___cdecl] = ACTIONS(2761), - [anon_sym___clrcall] = ACTIONS(2761), - [anon_sym___stdcall] = ACTIONS(2761), - [anon_sym___fastcall] = ACTIONS(2761), - [anon_sym___thiscall] = ACTIONS(2761), - [anon_sym___vectorcall] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2763), - [anon_sym_LBRACK] = ACTIONS(2761), - [anon_sym_static] = ACTIONS(2761), - [anon_sym_register] = ACTIONS(2761), - [anon_sym_inline] = ACTIONS(2761), - [anon_sym_thread_local] = ACTIONS(2761), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_volatile] = ACTIONS(2761), - [anon_sym_restrict] = ACTIONS(2761), - [anon_sym__Atomic] = ACTIONS(2761), - [anon_sym_mutable] = ACTIONS(2761), - [anon_sym_constexpr] = ACTIONS(2761), - [anon_sym_constinit] = ACTIONS(2761), - [anon_sym_consteval] = ACTIONS(2761), - [anon_sym_signed] = ACTIONS(2761), - [anon_sym_unsigned] = ACTIONS(2761), - [anon_sym_long] = ACTIONS(2761), - [anon_sym_short] = ACTIONS(2761), - [sym_primitive_type] = ACTIONS(2761), - [anon_sym_enum] = ACTIONS(2761), - [anon_sym_class] = ACTIONS(2761), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_union] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_switch] = ACTIONS(2761), - [anon_sym_case] = ACTIONS(2761), - [anon_sym_default] = ACTIONS(2761), - [anon_sym_while] = ACTIONS(2761), - [anon_sym_do] = ACTIONS(2761), - [anon_sym_for] = ACTIONS(2761), - [anon_sym_return] = ACTIONS(2761), - [anon_sym_break] = ACTIONS(2761), - [anon_sym_continue] = ACTIONS(2761), - [anon_sym_goto] = ACTIONS(2761), - [anon_sym_not] = ACTIONS(2761), - [anon_sym_compl] = ACTIONS(2761), - [anon_sym_DASH_DASH] = ACTIONS(2763), - [anon_sym_PLUS_PLUS] = ACTIONS(2763), - [anon_sym_sizeof] = ACTIONS(2761), - [sym_number_literal] = ACTIONS(2763), - [anon_sym_L_SQUOTE] = ACTIONS(2763), - [anon_sym_u_SQUOTE] = ACTIONS(2763), - [anon_sym_U_SQUOTE] = ACTIONS(2763), - [anon_sym_u8_SQUOTE] = ACTIONS(2763), - [anon_sym_SQUOTE] = ACTIONS(2763), - [anon_sym_L_DQUOTE] = ACTIONS(2763), - [anon_sym_u_DQUOTE] = ACTIONS(2763), - [anon_sym_U_DQUOTE] = ACTIONS(2763), - [anon_sym_u8_DQUOTE] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2763), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_null] = ACTIONS(2761), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2761), - [anon_sym_decltype] = ACTIONS(2761), - [anon_sym_virtual] = ACTIONS(2761), - [anon_sym_explicit] = ACTIONS(2761), - [anon_sym_typename] = ACTIONS(2761), - [anon_sym_template] = ACTIONS(2761), - [anon_sym_operator] = ACTIONS(2761), - [anon_sym_try] = ACTIONS(2761), - [anon_sym_delete] = ACTIONS(2761), - [anon_sym_throw] = ACTIONS(2761), - [anon_sym_namespace] = ACTIONS(2761), - [anon_sym_using] = ACTIONS(2761), - [anon_sym_static_assert] = ACTIONS(2761), - [anon_sym_concept] = ACTIONS(2761), - [anon_sym_co_return] = ACTIONS(2761), - [anon_sym_co_yield] = ACTIONS(2761), - [anon_sym_R_DQUOTE] = ACTIONS(2763), - [anon_sym_LR_DQUOTE] = ACTIONS(2763), - [anon_sym_uR_DQUOTE] = ACTIONS(2763), - [anon_sym_UR_DQUOTE] = ACTIONS(2763), - [anon_sym_u8R_DQUOTE] = ACTIONS(2763), - [anon_sym_co_await] = ACTIONS(2761), - [anon_sym_new] = ACTIONS(2761), - [anon_sym_requires] = ACTIONS(2761), - [sym_this] = ACTIONS(2761), - [sym_nullptr] = ACTIONS(2761), - }, - [517] = { - [sym_identifier] = ACTIONS(2765), - [aux_sym_preproc_include_token1] = ACTIONS(2765), - [aux_sym_preproc_def_token1] = ACTIONS(2765), - [aux_sym_preproc_if_token1] = ACTIONS(2765), - [aux_sym_preproc_if_token2] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), - [aux_sym_preproc_else_token1] = ACTIONS(2765), - [aux_sym_preproc_elif_token1] = ACTIONS(2765), - [sym_preproc_directive] = ACTIONS(2765), - [anon_sym_LPAREN2] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2767), - [anon_sym_AMP_AMP] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2765), - [anon_sym_extern] = ACTIONS(2765), - [anon_sym___attribute__] = ACTIONS(2765), - [anon_sym_COLON_COLON] = ACTIONS(2767), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), - [anon_sym___declspec] = ACTIONS(2765), - [anon_sym___based] = ACTIONS(2765), - [anon_sym___cdecl] = ACTIONS(2765), - [anon_sym___clrcall] = ACTIONS(2765), - [anon_sym___stdcall] = ACTIONS(2765), - [anon_sym___fastcall] = ACTIONS(2765), - [anon_sym___thiscall] = ACTIONS(2765), - [anon_sym___vectorcall] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_register] = ACTIONS(2765), - [anon_sym_inline] = ACTIONS(2765), - [anon_sym_thread_local] = ACTIONS(2765), - [anon_sym_const] = ACTIONS(2765), - [anon_sym_volatile] = ACTIONS(2765), - [anon_sym_restrict] = ACTIONS(2765), - [anon_sym__Atomic] = ACTIONS(2765), - [anon_sym_mutable] = ACTIONS(2765), - [anon_sym_constexpr] = ACTIONS(2765), - [anon_sym_constinit] = ACTIONS(2765), - [anon_sym_consteval] = ACTIONS(2765), - [anon_sym_signed] = ACTIONS(2765), - [anon_sym_unsigned] = ACTIONS(2765), - [anon_sym_long] = ACTIONS(2765), - [anon_sym_short] = ACTIONS(2765), - [sym_primitive_type] = ACTIONS(2765), - [anon_sym_enum] = ACTIONS(2765), - [anon_sym_class] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2765), - [anon_sym_union] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_switch] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_default] = ACTIONS(2765), - [anon_sym_while] = ACTIONS(2765), - [anon_sym_do] = ACTIONS(2765), - [anon_sym_for] = ACTIONS(2765), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2765), - [anon_sym_continue] = ACTIONS(2765), - [anon_sym_goto] = ACTIONS(2765), - [anon_sym_not] = ACTIONS(2765), - [anon_sym_compl] = ACTIONS(2765), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2765), - [sym_number_literal] = ACTIONS(2767), - [anon_sym_L_SQUOTE] = ACTIONS(2767), - [anon_sym_u_SQUOTE] = ACTIONS(2767), - [anon_sym_U_SQUOTE] = ACTIONS(2767), - [anon_sym_u8_SQUOTE] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_L_DQUOTE] = ACTIONS(2767), - [anon_sym_u_DQUOTE] = ACTIONS(2767), - [anon_sym_U_DQUOTE] = ACTIONS(2767), - [anon_sym_u8_DQUOTE] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [sym_true] = ACTIONS(2765), - [sym_false] = ACTIONS(2765), - [sym_null] = ACTIONS(2765), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2765), - [anon_sym_decltype] = ACTIONS(2765), - [anon_sym_virtual] = ACTIONS(2765), - [anon_sym_explicit] = ACTIONS(2765), - [anon_sym_typename] = ACTIONS(2765), - [anon_sym_template] = ACTIONS(2765), - [anon_sym_operator] = ACTIONS(2765), - [anon_sym_try] = ACTIONS(2765), - [anon_sym_delete] = ACTIONS(2765), - [anon_sym_throw] = ACTIONS(2765), - [anon_sym_namespace] = ACTIONS(2765), - [anon_sym_using] = ACTIONS(2765), - [anon_sym_static_assert] = ACTIONS(2765), - [anon_sym_concept] = ACTIONS(2765), - [anon_sym_co_return] = ACTIONS(2765), - [anon_sym_co_yield] = ACTIONS(2765), - [anon_sym_R_DQUOTE] = ACTIONS(2767), - [anon_sym_LR_DQUOTE] = ACTIONS(2767), - [anon_sym_uR_DQUOTE] = ACTIONS(2767), - [anon_sym_UR_DQUOTE] = ACTIONS(2767), - [anon_sym_u8R_DQUOTE] = ACTIONS(2767), - [anon_sym_co_await] = ACTIONS(2765), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_requires] = ACTIONS(2765), - [sym_this] = ACTIONS(2765), - [sym_nullptr] = ACTIONS(2765), - }, - [518] = { - [sym_identifier] = ACTIONS(2769), - [aux_sym_preproc_include_token1] = ACTIONS(2769), - [aux_sym_preproc_def_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token2] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), - [aux_sym_preproc_else_token1] = ACTIONS(2769), - [aux_sym_preproc_elif_token1] = ACTIONS(2769), - [sym_preproc_directive] = ACTIONS(2769), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym___attribute__] = ACTIONS(2769), - [anon_sym_COLON_COLON] = ACTIONS(2771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), - [anon_sym___declspec] = ACTIONS(2769), - [anon_sym___based] = ACTIONS(2769), - [anon_sym___cdecl] = ACTIONS(2769), - [anon_sym___clrcall] = ACTIONS(2769), - [anon_sym___stdcall] = ACTIONS(2769), - [anon_sym___fastcall] = ACTIONS(2769), - [anon_sym___thiscall] = ACTIONS(2769), - [anon_sym___vectorcall] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym_thread_local] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym_mutable] = ACTIONS(2769), - [anon_sym_constexpr] = ACTIONS(2769), - [anon_sym_constinit] = ACTIONS(2769), - [anon_sym_consteval] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym_not] = ACTIONS(2769), - [anon_sym_compl] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_L_SQUOTE] = ACTIONS(2771), - [anon_sym_u_SQUOTE] = ACTIONS(2771), - [anon_sym_U_SQUOTE] = ACTIONS(2771), - [anon_sym_u8_SQUOTE] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_L_DQUOTE] = ACTIONS(2771), - [anon_sym_u_DQUOTE] = ACTIONS(2771), - [anon_sym_U_DQUOTE] = ACTIONS(2771), - [anon_sym_u8_DQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [sym_null] = ACTIONS(2769), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2769), - [anon_sym_decltype] = ACTIONS(2769), - [anon_sym_virtual] = ACTIONS(2769), - [anon_sym_explicit] = ACTIONS(2769), - [anon_sym_typename] = ACTIONS(2769), - [anon_sym_template] = ACTIONS(2769), - [anon_sym_operator] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_delete] = ACTIONS(2769), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_namespace] = ACTIONS(2769), - [anon_sym_using] = ACTIONS(2769), - [anon_sym_static_assert] = ACTIONS(2769), - [anon_sym_concept] = ACTIONS(2769), - [anon_sym_co_return] = ACTIONS(2769), - [anon_sym_co_yield] = ACTIONS(2769), - [anon_sym_R_DQUOTE] = ACTIONS(2771), - [anon_sym_LR_DQUOTE] = ACTIONS(2771), - [anon_sym_uR_DQUOTE] = ACTIONS(2771), - [anon_sym_UR_DQUOTE] = ACTIONS(2771), - [anon_sym_u8R_DQUOTE] = ACTIONS(2771), - [anon_sym_co_await] = ACTIONS(2769), - [anon_sym_new] = ACTIONS(2769), - [anon_sym_requires] = ACTIONS(2769), - [sym_this] = ACTIONS(2769), - [sym_nullptr] = ACTIONS(2769), - }, - [519] = { - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token2] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [aux_sym_preproc_else_token1] = ACTIONS(2773), - [aux_sym_preproc_elif_token1] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym_not] = ACTIONS(2773), - [anon_sym_compl] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_R_DQUOTE] = ACTIONS(2775), - [anon_sym_LR_DQUOTE] = ACTIONS(2775), - [anon_sym_uR_DQUOTE] = ACTIONS(2775), - [anon_sym_UR_DQUOTE] = ACTIONS(2775), - [anon_sym_u8R_DQUOTE] = ACTIONS(2775), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), - [sym_nullptr] = ACTIONS(2773), - }, - [520] = { - [sym_identifier] = ACTIONS(2777), - [aux_sym_preproc_include_token1] = ACTIONS(2777), - [aux_sym_preproc_def_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token2] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), - [aux_sym_preproc_else_token1] = ACTIONS(2777), - [aux_sym_preproc_elif_token1] = ACTIONS(2777), - [sym_preproc_directive] = ACTIONS(2777), - [anon_sym_LPAREN2] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_AMP_AMP] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_typedef] = ACTIONS(2777), - [anon_sym_extern] = ACTIONS(2777), - [anon_sym___attribute__] = ACTIONS(2777), - [anon_sym_COLON_COLON] = ACTIONS(2779), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), - [anon_sym___declspec] = ACTIONS(2777), - [anon_sym___based] = ACTIONS(2777), - [anon_sym___cdecl] = ACTIONS(2777), - [anon_sym___clrcall] = ACTIONS(2777), - [anon_sym___stdcall] = ACTIONS(2777), - [anon_sym___fastcall] = ACTIONS(2777), - [anon_sym___thiscall] = ACTIONS(2777), - [anon_sym___vectorcall] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_register] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym_thread_local] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_volatile] = ACTIONS(2777), - [anon_sym_restrict] = ACTIONS(2777), - [anon_sym__Atomic] = ACTIONS(2777), - [anon_sym_mutable] = ACTIONS(2777), - [anon_sym_constexpr] = ACTIONS(2777), - [anon_sym_constinit] = ACTIONS(2777), - [anon_sym_consteval] = ACTIONS(2777), - [anon_sym_signed] = ACTIONS(2777), - [anon_sym_unsigned] = ACTIONS(2777), - [anon_sym_long] = ACTIONS(2777), - [anon_sym_short] = ACTIONS(2777), - [sym_primitive_type] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_union] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_switch] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_default] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_goto] = ACTIONS(2777), - [anon_sym_not] = ACTIONS(2777), - [anon_sym_compl] = ACTIONS(2777), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_sizeof] = ACTIONS(2777), - [sym_number_literal] = ACTIONS(2779), - [anon_sym_L_SQUOTE] = ACTIONS(2779), - [anon_sym_u_SQUOTE] = ACTIONS(2779), - [anon_sym_U_SQUOTE] = ACTIONS(2779), - [anon_sym_u8_SQUOTE] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_L_DQUOTE] = ACTIONS(2779), - [anon_sym_u_DQUOTE] = ACTIONS(2779), - [anon_sym_U_DQUOTE] = ACTIONS(2779), - [anon_sym_u8_DQUOTE] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [sym_null] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2777), - [anon_sym_decltype] = ACTIONS(2777), - [anon_sym_virtual] = ACTIONS(2777), - [anon_sym_explicit] = ACTIONS(2777), - [anon_sym_typename] = ACTIONS(2777), - [anon_sym_template] = ACTIONS(2777), - [anon_sym_operator] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_delete] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_namespace] = ACTIONS(2777), - [anon_sym_using] = ACTIONS(2777), - [anon_sym_static_assert] = ACTIONS(2777), - [anon_sym_concept] = ACTIONS(2777), - [anon_sym_co_return] = ACTIONS(2777), - [anon_sym_co_yield] = ACTIONS(2777), - [anon_sym_R_DQUOTE] = ACTIONS(2779), - [anon_sym_LR_DQUOTE] = ACTIONS(2779), - [anon_sym_uR_DQUOTE] = ACTIONS(2779), - [anon_sym_UR_DQUOTE] = ACTIONS(2779), - [anon_sym_u8R_DQUOTE] = ACTIONS(2779), - [anon_sym_co_await] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_requires] = ACTIONS(2777), - [sym_this] = ACTIONS(2777), - [sym_nullptr] = ACTIONS(2777), - }, - [521] = { - [sym_identifier] = ACTIONS(2384), - [aux_sym_preproc_include_token1] = ACTIONS(2384), - [aux_sym_preproc_def_token1] = ACTIONS(2384), - [aux_sym_preproc_if_token1] = ACTIONS(2384), - [aux_sym_preproc_if_token2] = ACTIONS(2384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2384), - [sym_preproc_directive] = ACTIONS(2384), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2386), - [anon_sym_TILDE] = ACTIONS(2386), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_SEMI] = ACTIONS(2386), - [anon_sym_typedef] = ACTIONS(2384), - [anon_sym_extern] = ACTIONS(2384), - [anon_sym___attribute__] = ACTIONS(2384), - [anon_sym_COLON_COLON] = ACTIONS(2386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2386), - [anon_sym___declspec] = ACTIONS(2384), - [anon_sym___based] = ACTIONS(2384), - [anon_sym___cdecl] = ACTIONS(2384), - [anon_sym___clrcall] = ACTIONS(2384), - [anon_sym___stdcall] = ACTIONS(2384), - [anon_sym___fastcall] = ACTIONS(2384), - [anon_sym___thiscall] = ACTIONS(2384), - [anon_sym___vectorcall] = ACTIONS(2384), - [anon_sym_LBRACE] = ACTIONS(2386), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_static] = ACTIONS(2384), - [anon_sym_register] = ACTIONS(2384), - [anon_sym_inline] = ACTIONS(2384), - [anon_sym_thread_local] = ACTIONS(2384), - [anon_sym_const] = ACTIONS(2384), - [anon_sym_volatile] = ACTIONS(2384), - [anon_sym_restrict] = ACTIONS(2384), - [anon_sym__Atomic] = ACTIONS(2384), - [anon_sym_mutable] = ACTIONS(2384), - [anon_sym_constexpr] = ACTIONS(2384), - [anon_sym_constinit] = ACTIONS(2384), - [anon_sym_consteval] = ACTIONS(2384), - [anon_sym_signed] = ACTIONS(2384), - [anon_sym_unsigned] = ACTIONS(2384), - [anon_sym_long] = ACTIONS(2384), - [anon_sym_short] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2384), - [anon_sym_enum] = ACTIONS(2384), - [anon_sym_class] = ACTIONS(2384), - [anon_sym_struct] = ACTIONS(2384), - [anon_sym_union] = ACTIONS(2384), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_else] = ACTIONS(2384), - [anon_sym_switch] = ACTIONS(2384), - [anon_sym_case] = ACTIONS(2384), - [anon_sym_default] = ACTIONS(2384), - [anon_sym_while] = ACTIONS(2384), - [anon_sym_do] = ACTIONS(2384), - [anon_sym_for] = ACTIONS(2384), - [anon_sym_return] = ACTIONS(2384), - [anon_sym_break] = ACTIONS(2384), - [anon_sym_continue] = ACTIONS(2384), - [anon_sym_goto] = ACTIONS(2384), - [anon_sym_not] = ACTIONS(2384), - [anon_sym_compl] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(2384), - [sym_number_literal] = ACTIONS(2386), - [anon_sym_L_SQUOTE] = ACTIONS(2386), - [anon_sym_u_SQUOTE] = ACTIONS(2386), - [anon_sym_U_SQUOTE] = ACTIONS(2386), - [anon_sym_u8_SQUOTE] = ACTIONS(2386), - [anon_sym_SQUOTE] = ACTIONS(2386), - [anon_sym_L_DQUOTE] = ACTIONS(2386), - [anon_sym_u_DQUOTE] = ACTIONS(2386), - [anon_sym_U_DQUOTE] = ACTIONS(2386), - [anon_sym_u8_DQUOTE] = ACTIONS(2386), - [anon_sym_DQUOTE] = ACTIONS(2386), - [sym_true] = ACTIONS(2384), - [sym_false] = ACTIONS(2384), - [sym_null] = ACTIONS(2384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2384), - [anon_sym_decltype] = ACTIONS(2384), - [anon_sym_virtual] = ACTIONS(2384), - [anon_sym_explicit] = ACTIONS(2384), - [anon_sym_typename] = ACTIONS(2384), - [anon_sym_template] = ACTIONS(2384), - [anon_sym_operator] = ACTIONS(2384), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_delete] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2384), - [anon_sym_namespace] = ACTIONS(2384), - [anon_sym_using] = ACTIONS(2384), - [anon_sym_static_assert] = ACTIONS(2384), - [anon_sym_concept] = ACTIONS(2384), - [anon_sym_co_return] = ACTIONS(2384), - [anon_sym_co_yield] = ACTIONS(2384), - [anon_sym_catch] = ACTIONS(2384), - [anon_sym_R_DQUOTE] = ACTIONS(2386), - [anon_sym_LR_DQUOTE] = ACTIONS(2386), - [anon_sym_uR_DQUOTE] = ACTIONS(2386), - [anon_sym_UR_DQUOTE] = ACTIONS(2386), - [anon_sym_u8R_DQUOTE] = ACTIONS(2386), - [anon_sym_co_await] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2384), - [anon_sym_requires] = ACTIONS(2384), - [sym_this] = ACTIONS(2384), - [sym_nullptr] = ACTIONS(2384), - }, - [522] = { - [sym_identifier] = ACTIONS(2337), - [aux_sym_preproc_include_token1] = ACTIONS(2337), - [aux_sym_preproc_def_token1] = ACTIONS(2337), - [aux_sym_preproc_if_token1] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), - [sym_preproc_directive] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2335), - [anon_sym_AMP_AMP] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_typedef] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym___attribute__] = ACTIONS(2337), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), - [anon_sym___declspec] = ACTIONS(2337), - [anon_sym___based] = ACTIONS(2337), - [anon_sym___cdecl] = ACTIONS(2337), - [anon_sym___clrcall] = ACTIONS(2337), - [anon_sym___stdcall] = ACTIONS(2337), - [anon_sym___fastcall] = ACTIONS(2337), - [anon_sym___thiscall] = ACTIONS(2337), - [anon_sym___vectorcall] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_inline] = ACTIONS(2337), - [anon_sym_thread_local] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_volatile] = ACTIONS(2337), - [anon_sym_restrict] = ACTIONS(2337), - [anon_sym__Atomic] = ACTIONS(2337), - [anon_sym_mutable] = ACTIONS(2337), - [anon_sym_constexpr] = ACTIONS(2337), - [anon_sym_constinit] = ACTIONS(2337), - [anon_sym_consteval] = ACTIONS(2337), - [anon_sym_signed] = ACTIONS(2337), - [anon_sym_unsigned] = ACTIONS(2337), - [anon_sym_long] = ACTIONS(2337), - [anon_sym_short] = ACTIONS(2337), - [sym_primitive_type] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2337), - [anon_sym_union] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_case] = ACTIONS(2337), - [anon_sym_default] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_goto] = ACTIONS(2337), - [anon_sym_not] = ACTIONS(2337), - [anon_sym_compl] = ACTIONS(2337), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_sizeof] = ACTIONS(2337), - [sym_number_literal] = ACTIONS(2335), - [anon_sym_L_SQUOTE] = ACTIONS(2335), - [anon_sym_u_SQUOTE] = ACTIONS(2335), - [anon_sym_U_SQUOTE] = ACTIONS(2335), - [anon_sym_u8_SQUOTE] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_L_DQUOTE] = ACTIONS(2335), - [anon_sym_u_DQUOTE] = ACTIONS(2335), - [anon_sym_U_DQUOTE] = ACTIONS(2335), - [anon_sym_u8_DQUOTE] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_true] = ACTIONS(2337), - [sym_false] = ACTIONS(2337), - [sym_null] = ACTIONS(2337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2337), - [anon_sym_decltype] = ACTIONS(2337), - [anon_sym_virtual] = ACTIONS(2337), - [anon_sym_explicit] = ACTIONS(2337), - [anon_sym_typename] = ACTIONS(2337), - [anon_sym_template] = ACTIONS(2337), - [anon_sym_operator] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_delete] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_using] = ACTIONS(2337), - [anon_sym_static_assert] = ACTIONS(2337), - [anon_sym_concept] = ACTIONS(2337), - [anon_sym_co_return] = ACTIONS(2337), - [anon_sym_co_yield] = ACTIONS(2337), - [anon_sym_catch] = ACTIONS(2337), - [anon_sym_R_DQUOTE] = ACTIONS(2335), - [anon_sym_LR_DQUOTE] = ACTIONS(2335), - [anon_sym_uR_DQUOTE] = ACTIONS(2335), - [anon_sym_UR_DQUOTE] = ACTIONS(2335), - [anon_sym_u8R_DQUOTE] = ACTIONS(2335), - [anon_sym_co_await] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_requires] = ACTIONS(2337), - [sym_this] = ACTIONS(2337), - [sym_nullptr] = ACTIONS(2337), - }, - [523] = { - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token2] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [aux_sym_preproc_else_token1] = ACTIONS(2773), - [aux_sym_preproc_elif_token1] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym_not] = ACTIONS(2773), - [anon_sym_compl] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_R_DQUOTE] = ACTIONS(2775), - [anon_sym_LR_DQUOTE] = ACTIONS(2775), - [anon_sym_uR_DQUOTE] = ACTIONS(2775), - [anon_sym_UR_DQUOTE] = ACTIONS(2775), - [anon_sym_u8R_DQUOTE] = ACTIONS(2775), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), - [sym_nullptr] = ACTIONS(2773), - }, - [524] = { - [sym_identifier] = ACTIONS(2781), - [aux_sym_preproc_include_token1] = ACTIONS(2781), - [aux_sym_preproc_def_token1] = ACTIONS(2781), - [aux_sym_preproc_if_token1] = ACTIONS(2781), - [aux_sym_preproc_if_token2] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), - [aux_sym_preproc_else_token1] = ACTIONS(2781), - [aux_sym_preproc_elif_token1] = ACTIONS(2781), - [sym_preproc_directive] = ACTIONS(2781), - [anon_sym_LPAREN2] = ACTIONS(2783), - [anon_sym_BANG] = ACTIONS(2783), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2783), - [anon_sym_AMP_AMP] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2781), - [anon_sym_SEMI] = ACTIONS(2783), - [anon_sym_typedef] = ACTIONS(2781), - [anon_sym_extern] = ACTIONS(2781), - [anon_sym___attribute__] = ACTIONS(2781), - [anon_sym_COLON_COLON] = ACTIONS(2783), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), - [anon_sym___declspec] = ACTIONS(2781), - [anon_sym___based] = ACTIONS(2781), - [anon_sym___cdecl] = ACTIONS(2781), - [anon_sym___clrcall] = ACTIONS(2781), - [anon_sym___stdcall] = ACTIONS(2781), - [anon_sym___fastcall] = ACTIONS(2781), - [anon_sym___thiscall] = ACTIONS(2781), - [anon_sym___vectorcall] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2783), - [anon_sym_LBRACK] = ACTIONS(2781), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_register] = ACTIONS(2781), - [anon_sym_inline] = ACTIONS(2781), - [anon_sym_thread_local] = ACTIONS(2781), - [anon_sym_const] = ACTIONS(2781), - [anon_sym_volatile] = ACTIONS(2781), - [anon_sym_restrict] = ACTIONS(2781), - [anon_sym__Atomic] = ACTIONS(2781), - [anon_sym_mutable] = ACTIONS(2781), - [anon_sym_constexpr] = ACTIONS(2781), - [anon_sym_constinit] = ACTIONS(2781), - [anon_sym_consteval] = ACTIONS(2781), - [anon_sym_signed] = ACTIONS(2781), - [anon_sym_unsigned] = ACTIONS(2781), - [anon_sym_long] = ACTIONS(2781), - [anon_sym_short] = ACTIONS(2781), - [sym_primitive_type] = ACTIONS(2781), - [anon_sym_enum] = ACTIONS(2781), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_struct] = ACTIONS(2781), - [anon_sym_union] = ACTIONS(2781), - [anon_sym_if] = ACTIONS(2781), - [anon_sym_switch] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_default] = ACTIONS(2781), - [anon_sym_while] = ACTIONS(2781), - [anon_sym_do] = ACTIONS(2781), - [anon_sym_for] = ACTIONS(2781), - [anon_sym_return] = ACTIONS(2781), - [anon_sym_break] = ACTIONS(2781), - [anon_sym_continue] = ACTIONS(2781), - [anon_sym_goto] = ACTIONS(2781), - [anon_sym_not] = ACTIONS(2781), - [anon_sym_compl] = ACTIONS(2781), - [anon_sym_DASH_DASH] = ACTIONS(2783), - [anon_sym_PLUS_PLUS] = ACTIONS(2783), - [anon_sym_sizeof] = ACTIONS(2781), - [sym_number_literal] = ACTIONS(2783), - [anon_sym_L_SQUOTE] = ACTIONS(2783), - [anon_sym_u_SQUOTE] = ACTIONS(2783), - [anon_sym_U_SQUOTE] = ACTIONS(2783), - [anon_sym_u8_SQUOTE] = ACTIONS(2783), - [anon_sym_SQUOTE] = ACTIONS(2783), - [anon_sym_L_DQUOTE] = ACTIONS(2783), - [anon_sym_u_DQUOTE] = ACTIONS(2783), - [anon_sym_U_DQUOTE] = ACTIONS(2783), - [anon_sym_u8_DQUOTE] = ACTIONS(2783), - [anon_sym_DQUOTE] = ACTIONS(2783), - [sym_true] = ACTIONS(2781), - [sym_false] = ACTIONS(2781), - [sym_null] = ACTIONS(2781), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2781), - [anon_sym_decltype] = ACTIONS(2781), - [anon_sym_virtual] = ACTIONS(2781), - [anon_sym_explicit] = ACTIONS(2781), - [anon_sym_typename] = ACTIONS(2781), - [anon_sym_template] = ACTIONS(2781), - [anon_sym_operator] = ACTIONS(2781), - [anon_sym_try] = ACTIONS(2781), - [anon_sym_delete] = ACTIONS(2781), - [anon_sym_throw] = ACTIONS(2781), - [anon_sym_namespace] = ACTIONS(2781), - [anon_sym_using] = ACTIONS(2781), - [anon_sym_static_assert] = ACTIONS(2781), - [anon_sym_concept] = ACTIONS(2781), - [anon_sym_co_return] = ACTIONS(2781), - [anon_sym_co_yield] = ACTIONS(2781), - [anon_sym_R_DQUOTE] = ACTIONS(2783), - [anon_sym_LR_DQUOTE] = ACTIONS(2783), - [anon_sym_uR_DQUOTE] = ACTIONS(2783), - [anon_sym_UR_DQUOTE] = ACTIONS(2783), - [anon_sym_u8R_DQUOTE] = ACTIONS(2783), - [anon_sym_co_await] = ACTIONS(2781), - [anon_sym_new] = ACTIONS(2781), - [anon_sym_requires] = ACTIONS(2781), - [sym_this] = ACTIONS(2781), - [sym_nullptr] = ACTIONS(2781), - }, - [525] = { - [sym_identifier] = ACTIONS(2785), - [aux_sym_preproc_include_token1] = ACTIONS(2785), - [aux_sym_preproc_def_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token2] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), - [aux_sym_preproc_else_token1] = ACTIONS(2785), - [aux_sym_preproc_elif_token1] = ACTIONS(2785), - [sym_preproc_directive] = ACTIONS(2785), - [anon_sym_LPAREN2] = ACTIONS(2787), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_TILDE] = ACTIONS(2787), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_SEMI] = ACTIONS(2787), - [anon_sym_typedef] = ACTIONS(2785), - [anon_sym_extern] = ACTIONS(2785), - [anon_sym___attribute__] = ACTIONS(2785), - [anon_sym_COLON_COLON] = ACTIONS(2787), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), - [anon_sym___declspec] = ACTIONS(2785), - [anon_sym___based] = ACTIONS(2785), - [anon_sym___cdecl] = ACTIONS(2785), - [anon_sym___clrcall] = ACTIONS(2785), - [anon_sym___stdcall] = ACTIONS(2785), - [anon_sym___fastcall] = ACTIONS(2785), - [anon_sym___thiscall] = ACTIONS(2785), - [anon_sym___vectorcall] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_register] = ACTIONS(2785), - [anon_sym_inline] = ACTIONS(2785), - [anon_sym_thread_local] = ACTIONS(2785), - [anon_sym_const] = ACTIONS(2785), - [anon_sym_volatile] = ACTIONS(2785), - [anon_sym_restrict] = ACTIONS(2785), - [anon_sym__Atomic] = ACTIONS(2785), - [anon_sym_mutable] = ACTIONS(2785), - [anon_sym_constexpr] = ACTIONS(2785), - [anon_sym_constinit] = ACTIONS(2785), - [anon_sym_consteval] = ACTIONS(2785), - [anon_sym_signed] = ACTIONS(2785), - [anon_sym_unsigned] = ACTIONS(2785), - [anon_sym_long] = ACTIONS(2785), - [anon_sym_short] = ACTIONS(2785), - [sym_primitive_type] = ACTIONS(2785), - [anon_sym_enum] = ACTIONS(2785), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(2785), - [anon_sym_union] = ACTIONS(2785), - [anon_sym_if] = ACTIONS(2785), - [anon_sym_switch] = ACTIONS(2785), - [anon_sym_case] = ACTIONS(2785), - [anon_sym_default] = ACTIONS(2785), - [anon_sym_while] = ACTIONS(2785), - [anon_sym_do] = ACTIONS(2785), - [anon_sym_for] = ACTIONS(2785), - [anon_sym_return] = ACTIONS(2785), - [anon_sym_break] = ACTIONS(2785), - [anon_sym_continue] = ACTIONS(2785), - [anon_sym_goto] = ACTIONS(2785), - [anon_sym_not] = ACTIONS(2785), - [anon_sym_compl] = ACTIONS(2785), - [anon_sym_DASH_DASH] = ACTIONS(2787), - [anon_sym_PLUS_PLUS] = ACTIONS(2787), - [anon_sym_sizeof] = ACTIONS(2785), - [sym_number_literal] = ACTIONS(2787), - [anon_sym_L_SQUOTE] = ACTIONS(2787), - [anon_sym_u_SQUOTE] = ACTIONS(2787), - [anon_sym_U_SQUOTE] = ACTIONS(2787), - [anon_sym_u8_SQUOTE] = ACTIONS(2787), - [anon_sym_SQUOTE] = ACTIONS(2787), - [anon_sym_L_DQUOTE] = ACTIONS(2787), - [anon_sym_u_DQUOTE] = ACTIONS(2787), - [anon_sym_U_DQUOTE] = ACTIONS(2787), - [anon_sym_u8_DQUOTE] = ACTIONS(2787), - [anon_sym_DQUOTE] = ACTIONS(2787), - [sym_true] = ACTIONS(2785), - [sym_false] = ACTIONS(2785), - [sym_null] = ACTIONS(2785), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2785), - [anon_sym_decltype] = ACTIONS(2785), - [anon_sym_virtual] = ACTIONS(2785), - [anon_sym_explicit] = ACTIONS(2785), - [anon_sym_typename] = ACTIONS(2785), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_operator] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2785), - [anon_sym_delete] = ACTIONS(2785), - [anon_sym_throw] = ACTIONS(2785), - [anon_sym_namespace] = ACTIONS(2785), - [anon_sym_using] = ACTIONS(2785), - [anon_sym_static_assert] = ACTIONS(2785), - [anon_sym_concept] = ACTIONS(2785), - [anon_sym_co_return] = ACTIONS(2785), - [anon_sym_co_yield] = ACTIONS(2785), - [anon_sym_R_DQUOTE] = ACTIONS(2787), - [anon_sym_LR_DQUOTE] = ACTIONS(2787), - [anon_sym_uR_DQUOTE] = ACTIONS(2787), - [anon_sym_UR_DQUOTE] = ACTIONS(2787), - [anon_sym_u8R_DQUOTE] = ACTIONS(2787), - [anon_sym_co_await] = ACTIONS(2785), - [anon_sym_new] = ACTIONS(2785), - [anon_sym_requires] = ACTIONS(2785), - [sym_this] = ACTIONS(2785), - [sym_nullptr] = ACTIONS(2785), - }, - [526] = { - [sym_identifier] = ACTIONS(2329), - [aux_sym_preproc_include_token1] = ACTIONS(2329), - [aux_sym_preproc_def_token1] = ACTIONS(2329), - [aux_sym_preproc_if_token1] = ACTIONS(2329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2329), - [sym_preproc_directive] = ACTIONS(2329), - [anon_sym_LPAREN2] = ACTIONS(2327), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_AMP_AMP] = ACTIONS(2327), - [anon_sym_AMP] = ACTIONS(2329), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_typedef] = ACTIONS(2329), - [anon_sym_extern] = ACTIONS(2329), - [anon_sym___attribute__] = ACTIONS(2329), - [anon_sym_COLON_COLON] = ACTIONS(2327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), - [anon_sym___declspec] = ACTIONS(2329), - [anon_sym___based] = ACTIONS(2329), - [anon_sym___cdecl] = ACTIONS(2329), - [anon_sym___clrcall] = ACTIONS(2329), - [anon_sym___stdcall] = ACTIONS(2329), - [anon_sym___fastcall] = ACTIONS(2329), - [anon_sym___thiscall] = ACTIONS(2329), - [anon_sym___vectorcall] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_register] = ACTIONS(2329), - [anon_sym_inline] = ACTIONS(2329), - [anon_sym_thread_local] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_volatile] = ACTIONS(2329), - [anon_sym_restrict] = ACTIONS(2329), - [anon_sym__Atomic] = ACTIONS(2329), - [anon_sym_mutable] = ACTIONS(2329), - [anon_sym_constexpr] = ACTIONS(2329), - [anon_sym_constinit] = ACTIONS(2329), - [anon_sym_consteval] = ACTIONS(2329), - [anon_sym_signed] = ACTIONS(2329), - [anon_sym_unsigned] = ACTIONS(2329), - [anon_sym_long] = ACTIONS(2329), - [anon_sym_short] = ACTIONS(2329), - [sym_primitive_type] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), - [anon_sym_class] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2329), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_else] = ACTIONS(2329), - [anon_sym_switch] = ACTIONS(2329), - [anon_sym_case] = ACTIONS(2329), - [anon_sym_default] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_goto] = ACTIONS(2329), - [anon_sym_not] = ACTIONS(2329), - [anon_sym_compl] = ACTIONS(2329), - [anon_sym_DASH_DASH] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2327), - [anon_sym_sizeof] = ACTIONS(2329), - [sym_number_literal] = ACTIONS(2327), - [anon_sym_L_SQUOTE] = ACTIONS(2327), - [anon_sym_u_SQUOTE] = ACTIONS(2327), - [anon_sym_U_SQUOTE] = ACTIONS(2327), - [anon_sym_u8_SQUOTE] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2327), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2329), - [sym_false] = ACTIONS(2329), - [sym_null] = ACTIONS(2329), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2329), - [anon_sym_decltype] = ACTIONS(2329), - [anon_sym_virtual] = ACTIONS(2329), - [anon_sym_explicit] = ACTIONS(2329), - [anon_sym_typename] = ACTIONS(2329), - [anon_sym_template] = ACTIONS(2329), - [anon_sym_operator] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_throw] = ACTIONS(2329), - [anon_sym_namespace] = ACTIONS(2329), - [anon_sym_using] = ACTIONS(2329), - [anon_sym_static_assert] = ACTIONS(2329), - [anon_sym_concept] = ACTIONS(2329), - [anon_sym_co_return] = ACTIONS(2329), - [anon_sym_co_yield] = ACTIONS(2329), - [anon_sym_catch] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2327), - [anon_sym_LR_DQUOTE] = ACTIONS(2327), - [anon_sym_uR_DQUOTE] = ACTIONS(2327), - [anon_sym_UR_DQUOTE] = ACTIONS(2327), - [anon_sym_u8R_DQUOTE] = ACTIONS(2327), - [anon_sym_co_await] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_requires] = ACTIONS(2329), - [sym_this] = ACTIONS(2329), - [sym_nullptr] = ACTIONS(2329), - }, - [527] = { - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_include_token1] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2789), - [aux_sym_preproc_if_token1] = ACTIONS(2789), - [aux_sym_preproc_if_token2] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), - [aux_sym_preproc_else_token1] = ACTIONS(2789), - [aux_sym_preproc_elif_token1] = ACTIONS(2789), - [sym_preproc_directive] = ACTIONS(2789), - [anon_sym_LPAREN2] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_TILDE] = ACTIONS(2791), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_AMP_AMP] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2789), - [anon_sym_extern] = ACTIONS(2789), - [anon_sym___attribute__] = ACTIONS(2789), - [anon_sym_COLON_COLON] = ACTIONS(2791), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), - [anon_sym___declspec] = ACTIONS(2789), - [anon_sym___based] = ACTIONS(2789), - [anon_sym___cdecl] = ACTIONS(2789), - [anon_sym___clrcall] = ACTIONS(2789), - [anon_sym___stdcall] = ACTIONS(2789), - [anon_sym___fastcall] = ACTIONS(2789), - [anon_sym___thiscall] = ACTIONS(2789), - [anon_sym___vectorcall] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2789), - [anon_sym_static] = ACTIONS(2789), - [anon_sym_register] = ACTIONS(2789), - [anon_sym_inline] = ACTIONS(2789), - [anon_sym_thread_local] = ACTIONS(2789), - [anon_sym_const] = ACTIONS(2789), - [anon_sym_volatile] = ACTIONS(2789), - [anon_sym_restrict] = ACTIONS(2789), - [anon_sym__Atomic] = ACTIONS(2789), - [anon_sym_mutable] = ACTIONS(2789), - [anon_sym_constexpr] = ACTIONS(2789), - [anon_sym_constinit] = ACTIONS(2789), - [anon_sym_consteval] = ACTIONS(2789), - [anon_sym_signed] = ACTIONS(2789), - [anon_sym_unsigned] = ACTIONS(2789), - [anon_sym_long] = ACTIONS(2789), - [anon_sym_short] = ACTIONS(2789), - [sym_primitive_type] = ACTIONS(2789), - [anon_sym_enum] = ACTIONS(2789), - [anon_sym_class] = ACTIONS(2789), - [anon_sym_struct] = ACTIONS(2789), - [anon_sym_union] = ACTIONS(2789), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_switch] = ACTIONS(2789), - [anon_sym_case] = ACTIONS(2789), - [anon_sym_default] = ACTIONS(2789), - [anon_sym_while] = ACTIONS(2789), - [anon_sym_do] = ACTIONS(2789), - [anon_sym_for] = ACTIONS(2789), - [anon_sym_return] = ACTIONS(2789), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2789), - [anon_sym_goto] = ACTIONS(2789), - [anon_sym_not] = ACTIONS(2789), - [anon_sym_compl] = ACTIONS(2789), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_sizeof] = ACTIONS(2789), - [sym_number_literal] = ACTIONS(2791), - [anon_sym_L_SQUOTE] = ACTIONS(2791), - [anon_sym_u_SQUOTE] = ACTIONS(2791), - [anon_sym_U_SQUOTE] = ACTIONS(2791), - [anon_sym_u8_SQUOTE] = ACTIONS(2791), - [anon_sym_SQUOTE] = ACTIONS(2791), - [anon_sym_L_DQUOTE] = ACTIONS(2791), - [anon_sym_u_DQUOTE] = ACTIONS(2791), - [anon_sym_U_DQUOTE] = ACTIONS(2791), - [anon_sym_u8_DQUOTE] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2791), - [sym_true] = ACTIONS(2789), - [sym_false] = ACTIONS(2789), - [sym_null] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2789), - [anon_sym_decltype] = ACTIONS(2789), - [anon_sym_virtual] = ACTIONS(2789), - [anon_sym_explicit] = ACTIONS(2789), - [anon_sym_typename] = ACTIONS(2789), - [anon_sym_template] = ACTIONS(2789), - [anon_sym_operator] = ACTIONS(2789), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_delete] = ACTIONS(2789), - [anon_sym_throw] = ACTIONS(2789), - [anon_sym_namespace] = ACTIONS(2789), - [anon_sym_using] = ACTIONS(2789), - [anon_sym_static_assert] = ACTIONS(2789), - [anon_sym_concept] = ACTIONS(2789), - [anon_sym_co_return] = ACTIONS(2789), - [anon_sym_co_yield] = ACTIONS(2789), - [anon_sym_R_DQUOTE] = ACTIONS(2791), - [anon_sym_LR_DQUOTE] = ACTIONS(2791), - [anon_sym_uR_DQUOTE] = ACTIONS(2791), - [anon_sym_UR_DQUOTE] = ACTIONS(2791), - [anon_sym_u8R_DQUOTE] = ACTIONS(2791), - [anon_sym_co_await] = ACTIONS(2789), - [anon_sym_new] = ACTIONS(2789), - [anon_sym_requires] = ACTIONS(2789), - [sym_this] = ACTIONS(2789), - [sym_nullptr] = ACTIONS(2789), - }, - [528] = { - [sym_identifier] = ACTIONS(2793), - [aux_sym_preproc_include_token1] = ACTIONS(2793), - [aux_sym_preproc_def_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), - [aux_sym_preproc_else_token1] = ACTIONS(2793), - [aux_sym_preproc_elif_token1] = ACTIONS(2793), - [sym_preproc_directive] = ACTIONS(2793), - [anon_sym_LPAREN2] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_AMP_AMP] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(2793), - [anon_sym___attribute__] = ACTIONS(2793), - [anon_sym_COLON_COLON] = ACTIONS(2795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), - [anon_sym___declspec] = ACTIONS(2793), - [anon_sym___based] = ACTIONS(2793), - [anon_sym___cdecl] = ACTIONS(2793), - [anon_sym___clrcall] = ACTIONS(2793), - [anon_sym___stdcall] = ACTIONS(2793), - [anon_sym___fastcall] = ACTIONS(2793), - [anon_sym___thiscall] = ACTIONS(2793), - [anon_sym___vectorcall] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2793), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_register] = ACTIONS(2793), - [anon_sym_inline] = ACTIONS(2793), - [anon_sym_thread_local] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_volatile] = ACTIONS(2793), - [anon_sym_restrict] = ACTIONS(2793), - [anon_sym__Atomic] = ACTIONS(2793), - [anon_sym_mutable] = ACTIONS(2793), - [anon_sym_constexpr] = ACTIONS(2793), - [anon_sym_constinit] = ACTIONS(2793), - [anon_sym_consteval] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2793), - [anon_sym_unsigned] = ACTIONS(2793), - [anon_sym_long] = ACTIONS(2793), - [anon_sym_short] = ACTIONS(2793), - [sym_primitive_type] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_class] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_union] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_switch] = ACTIONS(2793), - [anon_sym_case] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_do] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_goto] = ACTIONS(2793), - [anon_sym_not] = ACTIONS(2793), - [anon_sym_compl] = ACTIONS(2793), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_sizeof] = ACTIONS(2793), - [sym_number_literal] = ACTIONS(2795), - [anon_sym_L_SQUOTE] = ACTIONS(2795), - [anon_sym_u_SQUOTE] = ACTIONS(2795), - [anon_sym_U_SQUOTE] = ACTIONS(2795), - [anon_sym_u8_SQUOTE] = ACTIONS(2795), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_L_DQUOTE] = ACTIONS(2795), - [anon_sym_u_DQUOTE] = ACTIONS(2795), - [anon_sym_U_DQUOTE] = ACTIONS(2795), - [anon_sym_u8_DQUOTE] = ACTIONS(2795), - [anon_sym_DQUOTE] = ACTIONS(2795), - [sym_true] = ACTIONS(2793), - [sym_false] = ACTIONS(2793), - [sym_null] = ACTIONS(2793), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2793), - [anon_sym_decltype] = ACTIONS(2793), - [anon_sym_virtual] = ACTIONS(2793), - [anon_sym_explicit] = ACTIONS(2793), - [anon_sym_typename] = ACTIONS(2793), - [anon_sym_template] = ACTIONS(2793), - [anon_sym_operator] = ACTIONS(2793), - [anon_sym_try] = ACTIONS(2793), - [anon_sym_delete] = ACTIONS(2793), - [anon_sym_throw] = ACTIONS(2793), - [anon_sym_namespace] = ACTIONS(2793), - [anon_sym_using] = ACTIONS(2793), - [anon_sym_static_assert] = ACTIONS(2793), - [anon_sym_concept] = ACTIONS(2793), - [anon_sym_co_return] = ACTIONS(2793), - [anon_sym_co_yield] = ACTIONS(2793), - [anon_sym_R_DQUOTE] = ACTIONS(2795), - [anon_sym_LR_DQUOTE] = ACTIONS(2795), - [anon_sym_uR_DQUOTE] = ACTIONS(2795), - [anon_sym_UR_DQUOTE] = ACTIONS(2795), - [anon_sym_u8R_DQUOTE] = ACTIONS(2795), - [anon_sym_co_await] = ACTIONS(2793), - [anon_sym_new] = ACTIONS(2793), - [anon_sym_requires] = ACTIONS(2793), - [sym_this] = ACTIONS(2793), - [sym_nullptr] = ACTIONS(2793), - }, - [529] = { - [sym_identifier] = ACTIONS(2797), - [aux_sym_preproc_include_token1] = ACTIONS(2797), - [aux_sym_preproc_def_token1] = ACTIONS(2797), - [aux_sym_preproc_if_token1] = ACTIONS(2797), - [aux_sym_preproc_if_token2] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2797), - [aux_sym_preproc_elif_token1] = ACTIONS(2797), - [sym_preproc_directive] = ACTIONS(2797), - [anon_sym_LPAREN2] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_AMP_AMP] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2797), - [anon_sym_extern] = ACTIONS(2797), - [anon_sym___attribute__] = ACTIONS(2797), - [anon_sym_COLON_COLON] = ACTIONS(2799), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), - [anon_sym___declspec] = ACTIONS(2797), - [anon_sym___based] = ACTIONS(2797), - [anon_sym___cdecl] = ACTIONS(2797), - [anon_sym___clrcall] = ACTIONS(2797), - [anon_sym___stdcall] = ACTIONS(2797), - [anon_sym___fastcall] = ACTIONS(2797), - [anon_sym___thiscall] = ACTIONS(2797), - [anon_sym___vectorcall] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2797), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_register] = ACTIONS(2797), - [anon_sym_inline] = ACTIONS(2797), - [anon_sym_thread_local] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_volatile] = ACTIONS(2797), - [anon_sym_restrict] = ACTIONS(2797), - [anon_sym__Atomic] = ACTIONS(2797), - [anon_sym_mutable] = ACTIONS(2797), - [anon_sym_constexpr] = ACTIONS(2797), - [anon_sym_constinit] = ACTIONS(2797), - [anon_sym_consteval] = ACTIONS(2797), - [anon_sym_signed] = ACTIONS(2797), - [anon_sym_unsigned] = ACTIONS(2797), - [anon_sym_long] = ACTIONS(2797), - [anon_sym_short] = ACTIONS(2797), - [sym_primitive_type] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), - [anon_sym_class] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_union] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_switch] = ACTIONS(2797), - [anon_sym_case] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_do] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_goto] = ACTIONS(2797), - [anon_sym_not] = ACTIONS(2797), - [anon_sym_compl] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_sizeof] = ACTIONS(2797), - [sym_number_literal] = ACTIONS(2799), - [anon_sym_L_SQUOTE] = ACTIONS(2799), - [anon_sym_u_SQUOTE] = ACTIONS(2799), - [anon_sym_U_SQUOTE] = ACTIONS(2799), - [anon_sym_u8_SQUOTE] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2799), - [anon_sym_L_DQUOTE] = ACTIONS(2799), - [anon_sym_u_DQUOTE] = ACTIONS(2799), - [anon_sym_U_DQUOTE] = ACTIONS(2799), - [anon_sym_u8_DQUOTE] = ACTIONS(2799), - [anon_sym_DQUOTE] = ACTIONS(2799), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [sym_null] = ACTIONS(2797), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2797), - [anon_sym_decltype] = ACTIONS(2797), - [anon_sym_virtual] = ACTIONS(2797), - [anon_sym_explicit] = ACTIONS(2797), - [anon_sym_typename] = ACTIONS(2797), - [anon_sym_template] = ACTIONS(2797), - [anon_sym_operator] = ACTIONS(2797), - [anon_sym_try] = ACTIONS(2797), - [anon_sym_delete] = ACTIONS(2797), - [anon_sym_throw] = ACTIONS(2797), - [anon_sym_namespace] = ACTIONS(2797), - [anon_sym_using] = ACTIONS(2797), - [anon_sym_static_assert] = ACTIONS(2797), - [anon_sym_concept] = ACTIONS(2797), - [anon_sym_co_return] = ACTIONS(2797), - [anon_sym_co_yield] = ACTIONS(2797), - [anon_sym_R_DQUOTE] = ACTIONS(2799), - [anon_sym_LR_DQUOTE] = ACTIONS(2799), - [anon_sym_uR_DQUOTE] = ACTIONS(2799), - [anon_sym_UR_DQUOTE] = ACTIONS(2799), - [anon_sym_u8R_DQUOTE] = ACTIONS(2799), - [anon_sym_co_await] = ACTIONS(2797), - [anon_sym_new] = ACTIONS(2797), - [anon_sym_requires] = ACTIONS(2797), - [sym_this] = ACTIONS(2797), - [sym_nullptr] = ACTIONS(2797), - }, - [530] = { - [sym_identifier] = ACTIONS(2801), - [aux_sym_preproc_include_token1] = ACTIONS(2801), - [aux_sym_preproc_def_token1] = ACTIONS(2801), - [aux_sym_preproc_if_token1] = ACTIONS(2801), - [aux_sym_preproc_if_token2] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), - [aux_sym_preproc_else_token1] = ACTIONS(2801), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [sym_preproc_directive] = ACTIONS(2801), - [anon_sym_LPAREN2] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_AMP_AMP] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2801), - [anon_sym_extern] = ACTIONS(2801), - [anon_sym___attribute__] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), - [anon_sym___declspec] = ACTIONS(2801), - [anon_sym___based] = ACTIONS(2801), - [anon_sym___cdecl] = ACTIONS(2801), - [anon_sym___clrcall] = ACTIONS(2801), - [anon_sym___stdcall] = ACTIONS(2801), - [anon_sym___fastcall] = ACTIONS(2801), - [anon_sym___thiscall] = ACTIONS(2801), - [anon_sym___vectorcall] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_register] = ACTIONS(2801), - [anon_sym_inline] = ACTIONS(2801), - [anon_sym_thread_local] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_volatile] = ACTIONS(2801), - [anon_sym_restrict] = ACTIONS(2801), - [anon_sym__Atomic] = ACTIONS(2801), - [anon_sym_mutable] = ACTIONS(2801), - [anon_sym_constexpr] = ACTIONS(2801), - [anon_sym_constinit] = ACTIONS(2801), - [anon_sym_consteval] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2801), - [anon_sym_unsigned] = ACTIONS(2801), - [anon_sym_long] = ACTIONS(2801), - [anon_sym_short] = ACTIONS(2801), - [sym_primitive_type] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_switch] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_do] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_goto] = ACTIONS(2801), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2803), - [anon_sym_PLUS_PLUS] = ACTIONS(2803), - [anon_sym_sizeof] = ACTIONS(2801), - [sym_number_literal] = ACTIONS(2803), - [anon_sym_L_SQUOTE] = ACTIONS(2803), - [anon_sym_u_SQUOTE] = ACTIONS(2803), - [anon_sym_U_SQUOTE] = ACTIONS(2803), - [anon_sym_u8_SQUOTE] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_L_DQUOTE] = ACTIONS(2803), - [anon_sym_u_DQUOTE] = ACTIONS(2803), - [anon_sym_U_DQUOTE] = ACTIONS(2803), - [anon_sym_u8_DQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_null] = ACTIONS(2801), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2801), - [anon_sym_decltype] = ACTIONS(2801), - [anon_sym_virtual] = ACTIONS(2801), - [anon_sym_explicit] = ACTIONS(2801), - [anon_sym_typename] = ACTIONS(2801), - [anon_sym_template] = ACTIONS(2801), - [anon_sym_operator] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [anon_sym_delete] = ACTIONS(2801), - [anon_sym_throw] = ACTIONS(2801), - [anon_sym_namespace] = ACTIONS(2801), - [anon_sym_using] = ACTIONS(2801), - [anon_sym_static_assert] = ACTIONS(2801), - [anon_sym_concept] = ACTIONS(2801), - [anon_sym_co_return] = ACTIONS(2801), - [anon_sym_co_yield] = ACTIONS(2801), - [anon_sym_R_DQUOTE] = ACTIONS(2803), - [anon_sym_LR_DQUOTE] = ACTIONS(2803), - [anon_sym_uR_DQUOTE] = ACTIONS(2803), - [anon_sym_UR_DQUOTE] = ACTIONS(2803), - [anon_sym_u8R_DQUOTE] = ACTIONS(2803), - [anon_sym_co_await] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_requires] = ACTIONS(2801), - [sym_this] = ACTIONS(2801), - [sym_nullptr] = ACTIONS(2801), - }, - [531] = { - [sym_identifier] = ACTIONS(2805), - [aux_sym_preproc_include_token1] = ACTIONS(2805), - [aux_sym_preproc_def_token1] = ACTIONS(2805), - [aux_sym_preproc_if_token1] = ACTIONS(2805), - [aux_sym_preproc_if_token2] = ACTIONS(2805), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), - [aux_sym_preproc_else_token1] = ACTIONS(2805), - [aux_sym_preproc_elif_token1] = ACTIONS(2805), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_AMP_AMP] = ACTIONS(2807), - [anon_sym_AMP] = ACTIONS(2805), - [anon_sym_SEMI] = ACTIONS(2807), - [anon_sym_typedef] = ACTIONS(2805), - [anon_sym_extern] = ACTIONS(2805), - [anon_sym___attribute__] = ACTIONS(2805), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), - [anon_sym___declspec] = ACTIONS(2805), - [anon_sym___based] = ACTIONS(2805), - [anon_sym___cdecl] = ACTIONS(2805), - [anon_sym___clrcall] = ACTIONS(2805), - [anon_sym___stdcall] = ACTIONS(2805), - [anon_sym___fastcall] = ACTIONS(2805), - [anon_sym___thiscall] = ACTIONS(2805), - [anon_sym___vectorcall] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2805), - [anon_sym_static] = ACTIONS(2805), - [anon_sym_register] = ACTIONS(2805), - [anon_sym_inline] = ACTIONS(2805), - [anon_sym_thread_local] = ACTIONS(2805), - [anon_sym_const] = ACTIONS(2805), - [anon_sym_volatile] = ACTIONS(2805), - [anon_sym_restrict] = ACTIONS(2805), - [anon_sym__Atomic] = ACTIONS(2805), - [anon_sym_mutable] = ACTIONS(2805), - [anon_sym_constexpr] = ACTIONS(2805), - [anon_sym_constinit] = ACTIONS(2805), - [anon_sym_consteval] = ACTIONS(2805), - [anon_sym_signed] = ACTIONS(2805), - [anon_sym_unsigned] = ACTIONS(2805), - [anon_sym_long] = ACTIONS(2805), - [anon_sym_short] = ACTIONS(2805), - [sym_primitive_type] = ACTIONS(2805), - [anon_sym_enum] = ACTIONS(2805), - [anon_sym_class] = ACTIONS(2805), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_union] = ACTIONS(2805), - [anon_sym_if] = ACTIONS(2805), - [anon_sym_switch] = ACTIONS(2805), - [anon_sym_case] = ACTIONS(2805), - [anon_sym_default] = ACTIONS(2805), - [anon_sym_while] = ACTIONS(2805), - [anon_sym_do] = ACTIONS(2805), - [anon_sym_for] = ACTIONS(2805), - [anon_sym_return] = ACTIONS(2805), - [anon_sym_break] = ACTIONS(2805), - [anon_sym_continue] = ACTIONS(2805), - [anon_sym_goto] = ACTIONS(2805), - [anon_sym_not] = ACTIONS(2805), - [anon_sym_compl] = ACTIONS(2805), - [anon_sym_DASH_DASH] = ACTIONS(2807), - [anon_sym_PLUS_PLUS] = ACTIONS(2807), - [anon_sym_sizeof] = ACTIONS(2805), - [sym_number_literal] = ACTIONS(2807), - [anon_sym_L_SQUOTE] = ACTIONS(2807), - [anon_sym_u_SQUOTE] = ACTIONS(2807), - [anon_sym_U_SQUOTE] = ACTIONS(2807), - [anon_sym_u8_SQUOTE] = ACTIONS(2807), - [anon_sym_SQUOTE] = ACTIONS(2807), - [anon_sym_L_DQUOTE] = ACTIONS(2807), - [anon_sym_u_DQUOTE] = ACTIONS(2807), - [anon_sym_U_DQUOTE] = ACTIONS(2807), - [anon_sym_u8_DQUOTE] = ACTIONS(2807), - [anon_sym_DQUOTE] = ACTIONS(2807), - [sym_true] = ACTIONS(2805), - [sym_false] = ACTIONS(2805), - [sym_null] = ACTIONS(2805), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2805), - [anon_sym_decltype] = ACTIONS(2805), - [anon_sym_virtual] = ACTIONS(2805), - [anon_sym_explicit] = ACTIONS(2805), - [anon_sym_typename] = ACTIONS(2805), - [anon_sym_template] = ACTIONS(2805), - [anon_sym_operator] = ACTIONS(2805), - [anon_sym_try] = ACTIONS(2805), - [anon_sym_delete] = ACTIONS(2805), - [anon_sym_throw] = ACTIONS(2805), - [anon_sym_namespace] = ACTIONS(2805), - [anon_sym_using] = ACTIONS(2805), - [anon_sym_static_assert] = ACTIONS(2805), - [anon_sym_concept] = ACTIONS(2805), - [anon_sym_co_return] = ACTIONS(2805), - [anon_sym_co_yield] = ACTIONS(2805), - [anon_sym_R_DQUOTE] = ACTIONS(2807), - [anon_sym_LR_DQUOTE] = ACTIONS(2807), - [anon_sym_uR_DQUOTE] = ACTIONS(2807), - [anon_sym_UR_DQUOTE] = ACTIONS(2807), - [anon_sym_u8R_DQUOTE] = ACTIONS(2807), - [anon_sym_co_await] = ACTIONS(2805), - [anon_sym_new] = ACTIONS(2805), - [anon_sym_requires] = ACTIONS(2805), - [sym_this] = ACTIONS(2805), - [sym_nullptr] = ACTIONS(2805), - }, - [532] = { - [sym_identifier] = ACTIONS(2809), - [aux_sym_preproc_include_token1] = ACTIONS(2809), - [aux_sym_preproc_def_token1] = ACTIONS(2809), - [aux_sym_preproc_if_token1] = ACTIONS(2809), - [aux_sym_preproc_if_token2] = ACTIONS(2809), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2809), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2809), - [aux_sym_preproc_else_token1] = ACTIONS(2809), - [aux_sym_preproc_elif_token1] = ACTIONS(2809), - [sym_preproc_directive] = ACTIONS(2809), - [anon_sym_LPAREN2] = ACTIONS(2811), - [anon_sym_BANG] = ACTIONS(2811), - [anon_sym_TILDE] = ACTIONS(2811), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_PLUS] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(2811), - [anon_sym_AMP] = ACTIONS(2809), - [anon_sym_SEMI] = ACTIONS(2811), - [anon_sym_typedef] = ACTIONS(2809), - [anon_sym_extern] = ACTIONS(2809), - [anon_sym___attribute__] = ACTIONS(2809), - [anon_sym_COLON_COLON] = ACTIONS(2811), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2811), - [anon_sym___declspec] = ACTIONS(2809), - [anon_sym___based] = ACTIONS(2809), - [anon_sym___cdecl] = ACTIONS(2809), - [anon_sym___clrcall] = ACTIONS(2809), - [anon_sym___stdcall] = ACTIONS(2809), - [anon_sym___fastcall] = ACTIONS(2809), - [anon_sym___thiscall] = ACTIONS(2809), - [anon_sym___vectorcall] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2809), - [anon_sym_static] = ACTIONS(2809), - [anon_sym_register] = ACTIONS(2809), - [anon_sym_inline] = ACTIONS(2809), - [anon_sym_thread_local] = ACTIONS(2809), - [anon_sym_const] = ACTIONS(2809), - [anon_sym_volatile] = ACTIONS(2809), - [anon_sym_restrict] = ACTIONS(2809), - [anon_sym__Atomic] = ACTIONS(2809), - [anon_sym_mutable] = ACTIONS(2809), - [anon_sym_constexpr] = ACTIONS(2809), - [anon_sym_constinit] = ACTIONS(2809), - [anon_sym_consteval] = ACTIONS(2809), - [anon_sym_signed] = ACTIONS(2809), - [anon_sym_unsigned] = ACTIONS(2809), - [anon_sym_long] = ACTIONS(2809), - [anon_sym_short] = ACTIONS(2809), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(2809), - [anon_sym_class] = ACTIONS(2809), - [anon_sym_struct] = ACTIONS(2809), - [anon_sym_union] = ACTIONS(2809), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_switch] = ACTIONS(2809), - [anon_sym_case] = ACTIONS(2809), - [anon_sym_default] = ACTIONS(2809), - [anon_sym_while] = ACTIONS(2809), - [anon_sym_do] = ACTIONS(2809), - [anon_sym_for] = ACTIONS(2809), - [anon_sym_return] = ACTIONS(2809), - [anon_sym_break] = ACTIONS(2809), - [anon_sym_continue] = ACTIONS(2809), - [anon_sym_goto] = ACTIONS(2809), - [anon_sym_not] = ACTIONS(2809), - [anon_sym_compl] = ACTIONS(2809), - [anon_sym_DASH_DASH] = ACTIONS(2811), - [anon_sym_PLUS_PLUS] = ACTIONS(2811), - [anon_sym_sizeof] = ACTIONS(2809), - [sym_number_literal] = ACTIONS(2811), - [anon_sym_L_SQUOTE] = ACTIONS(2811), - [anon_sym_u_SQUOTE] = ACTIONS(2811), - [anon_sym_U_SQUOTE] = ACTIONS(2811), - [anon_sym_u8_SQUOTE] = ACTIONS(2811), - [anon_sym_SQUOTE] = ACTIONS(2811), - [anon_sym_L_DQUOTE] = ACTIONS(2811), - [anon_sym_u_DQUOTE] = ACTIONS(2811), - [anon_sym_U_DQUOTE] = ACTIONS(2811), - [anon_sym_u8_DQUOTE] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym_true] = ACTIONS(2809), - [sym_false] = ACTIONS(2809), - [sym_null] = ACTIONS(2809), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2809), - [anon_sym_decltype] = ACTIONS(2809), - [anon_sym_virtual] = ACTIONS(2809), - [anon_sym_explicit] = ACTIONS(2809), - [anon_sym_typename] = ACTIONS(2809), - [anon_sym_template] = ACTIONS(2809), - [anon_sym_operator] = ACTIONS(2809), - [anon_sym_try] = ACTIONS(2809), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_throw] = ACTIONS(2809), - [anon_sym_namespace] = ACTIONS(2809), - [anon_sym_using] = ACTIONS(2809), - [anon_sym_static_assert] = ACTIONS(2809), - [anon_sym_concept] = ACTIONS(2809), - [anon_sym_co_return] = ACTIONS(2809), - [anon_sym_co_yield] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2811), - [anon_sym_LR_DQUOTE] = ACTIONS(2811), - [anon_sym_uR_DQUOTE] = ACTIONS(2811), - [anon_sym_UR_DQUOTE] = ACTIONS(2811), - [anon_sym_u8R_DQUOTE] = ACTIONS(2811), - [anon_sym_co_await] = ACTIONS(2809), - [anon_sym_new] = ACTIONS(2809), - [anon_sym_requires] = ACTIONS(2809), - [sym_this] = ACTIONS(2809), - [sym_nullptr] = ACTIONS(2809), - }, - [533] = { - [sym_identifier] = ACTIONS(2813), - [aux_sym_preproc_include_token1] = ACTIONS(2813), - [aux_sym_preproc_def_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token2] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), - [aux_sym_preproc_else_token1] = ACTIONS(2813), - [aux_sym_preproc_elif_token1] = ACTIONS(2813), - [sym_preproc_directive] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_typedef] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym___attribute__] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), - [anon_sym___declspec] = ACTIONS(2813), - [anon_sym___based] = ACTIONS(2813), - [anon_sym___cdecl] = ACTIONS(2813), - [anon_sym___clrcall] = ACTIONS(2813), - [anon_sym___stdcall] = ACTIONS(2813), - [anon_sym___fastcall] = ACTIONS(2813), - [anon_sym___thiscall] = ACTIONS(2813), - [anon_sym___vectorcall] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_register] = ACTIONS(2813), - [anon_sym_inline] = ACTIONS(2813), - [anon_sym_thread_local] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_volatile] = ACTIONS(2813), - [anon_sym_restrict] = ACTIONS(2813), - [anon_sym__Atomic] = ACTIONS(2813), - [anon_sym_mutable] = ACTIONS(2813), - [anon_sym_constexpr] = ACTIONS(2813), - [anon_sym_constinit] = ACTIONS(2813), - [anon_sym_consteval] = ACTIONS(2813), - [anon_sym_signed] = ACTIONS(2813), - [anon_sym_unsigned] = ACTIONS(2813), - [anon_sym_long] = ACTIONS(2813), - [anon_sym_short] = ACTIONS(2813), - [sym_primitive_type] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_switch] = ACTIONS(2813), - [anon_sym_case] = ACTIONS(2813), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_do] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_goto] = ACTIONS(2813), - [anon_sym_not] = ACTIONS(2813), - [anon_sym_compl] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_sizeof] = ACTIONS(2813), - [sym_number_literal] = ACTIONS(2815), - [anon_sym_L_SQUOTE] = ACTIONS(2815), - [anon_sym_u_SQUOTE] = ACTIONS(2815), - [anon_sym_U_SQUOTE] = ACTIONS(2815), - [anon_sym_u8_SQUOTE] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_L_DQUOTE] = ACTIONS(2815), - [anon_sym_u_DQUOTE] = ACTIONS(2815), - [anon_sym_U_DQUOTE] = ACTIONS(2815), - [anon_sym_u8_DQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [sym_null] = ACTIONS(2813), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2813), - [anon_sym_decltype] = ACTIONS(2813), - [anon_sym_virtual] = ACTIONS(2813), - [anon_sym_explicit] = ACTIONS(2813), - [anon_sym_typename] = ACTIONS(2813), - [anon_sym_template] = ACTIONS(2813), - [anon_sym_operator] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [anon_sym_delete] = ACTIONS(2813), - [anon_sym_throw] = ACTIONS(2813), - [anon_sym_namespace] = ACTIONS(2813), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_static_assert] = ACTIONS(2813), - [anon_sym_concept] = ACTIONS(2813), - [anon_sym_co_return] = ACTIONS(2813), - [anon_sym_co_yield] = ACTIONS(2813), - [anon_sym_R_DQUOTE] = ACTIONS(2815), - [anon_sym_LR_DQUOTE] = ACTIONS(2815), - [anon_sym_uR_DQUOTE] = ACTIONS(2815), - [anon_sym_UR_DQUOTE] = ACTIONS(2815), - [anon_sym_u8R_DQUOTE] = ACTIONS(2815), - [anon_sym_co_await] = ACTIONS(2813), - [anon_sym_new] = ACTIONS(2813), - [anon_sym_requires] = ACTIONS(2813), - [sym_this] = ACTIONS(2813), - [sym_nullptr] = ACTIONS(2813), - }, - [534] = { - [sym_identifier] = ACTIONS(2817), - [aux_sym_preproc_include_token1] = ACTIONS(2817), - [aux_sym_preproc_def_token1] = ACTIONS(2817), - [aux_sym_preproc_if_token1] = ACTIONS(2817), - [aux_sym_preproc_if_token2] = ACTIONS(2817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2817), - [aux_sym_preproc_else_token1] = ACTIONS(2817), - [aux_sym_preproc_elif_token1] = ACTIONS(2817), - [sym_preproc_directive] = ACTIONS(2817), - [anon_sym_LPAREN2] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_TILDE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2817), - [anon_sym_PLUS] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(2819), - [anon_sym_AMP_AMP] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_typedef] = ACTIONS(2817), - [anon_sym_extern] = ACTIONS(2817), - [anon_sym___attribute__] = ACTIONS(2817), - [anon_sym_COLON_COLON] = ACTIONS(2819), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2819), - [anon_sym___declspec] = ACTIONS(2817), - [anon_sym___based] = ACTIONS(2817), - [anon_sym___cdecl] = ACTIONS(2817), - [anon_sym___clrcall] = ACTIONS(2817), - [anon_sym___stdcall] = ACTIONS(2817), - [anon_sym___fastcall] = ACTIONS(2817), - [anon_sym___thiscall] = ACTIONS(2817), - [anon_sym___vectorcall] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2817), - [anon_sym_static] = ACTIONS(2817), - [anon_sym_register] = ACTIONS(2817), - [anon_sym_inline] = ACTIONS(2817), - [anon_sym_thread_local] = ACTIONS(2817), - [anon_sym_const] = ACTIONS(2817), - [anon_sym_volatile] = ACTIONS(2817), - [anon_sym_restrict] = ACTIONS(2817), - [anon_sym__Atomic] = ACTIONS(2817), - [anon_sym_mutable] = ACTIONS(2817), - [anon_sym_constexpr] = ACTIONS(2817), - [anon_sym_constinit] = ACTIONS(2817), - [anon_sym_consteval] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2817), - [anon_sym_unsigned] = ACTIONS(2817), - [anon_sym_long] = ACTIONS(2817), - [anon_sym_short] = ACTIONS(2817), - [sym_primitive_type] = ACTIONS(2817), - [anon_sym_enum] = ACTIONS(2817), - [anon_sym_class] = ACTIONS(2817), - [anon_sym_struct] = ACTIONS(2817), - [anon_sym_union] = ACTIONS(2817), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_switch] = ACTIONS(2817), - [anon_sym_case] = ACTIONS(2817), - [anon_sym_default] = ACTIONS(2817), - [anon_sym_while] = ACTIONS(2817), - [anon_sym_do] = ACTIONS(2817), - [anon_sym_for] = ACTIONS(2817), - [anon_sym_return] = ACTIONS(2817), - [anon_sym_break] = ACTIONS(2817), - [anon_sym_continue] = ACTIONS(2817), - [anon_sym_goto] = ACTIONS(2817), - [anon_sym_not] = ACTIONS(2817), - [anon_sym_compl] = ACTIONS(2817), - [anon_sym_DASH_DASH] = ACTIONS(2819), - [anon_sym_PLUS_PLUS] = ACTIONS(2819), - [anon_sym_sizeof] = ACTIONS(2817), - [sym_number_literal] = ACTIONS(2819), - [anon_sym_L_SQUOTE] = ACTIONS(2819), - [anon_sym_u_SQUOTE] = ACTIONS(2819), - [anon_sym_U_SQUOTE] = ACTIONS(2819), - [anon_sym_u8_SQUOTE] = ACTIONS(2819), - [anon_sym_SQUOTE] = ACTIONS(2819), - [anon_sym_L_DQUOTE] = ACTIONS(2819), - [anon_sym_u_DQUOTE] = ACTIONS(2819), - [anon_sym_U_DQUOTE] = ACTIONS(2819), - [anon_sym_u8_DQUOTE] = ACTIONS(2819), - [anon_sym_DQUOTE] = ACTIONS(2819), - [sym_true] = ACTIONS(2817), - [sym_false] = ACTIONS(2817), - [sym_null] = ACTIONS(2817), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2817), - [anon_sym_decltype] = ACTIONS(2817), - [anon_sym_virtual] = ACTIONS(2817), - [anon_sym_explicit] = ACTIONS(2817), - [anon_sym_typename] = ACTIONS(2817), - [anon_sym_template] = ACTIONS(2817), - [anon_sym_operator] = ACTIONS(2817), - [anon_sym_try] = ACTIONS(2817), - [anon_sym_delete] = ACTIONS(2817), - [anon_sym_throw] = ACTIONS(2817), - [anon_sym_namespace] = ACTIONS(2817), - [anon_sym_using] = ACTIONS(2817), - [anon_sym_static_assert] = ACTIONS(2817), - [anon_sym_concept] = ACTIONS(2817), - [anon_sym_co_return] = ACTIONS(2817), - [anon_sym_co_yield] = ACTIONS(2817), - [anon_sym_R_DQUOTE] = ACTIONS(2819), - [anon_sym_LR_DQUOTE] = ACTIONS(2819), - [anon_sym_uR_DQUOTE] = ACTIONS(2819), - [anon_sym_UR_DQUOTE] = ACTIONS(2819), - [anon_sym_u8R_DQUOTE] = ACTIONS(2819), - [anon_sym_co_await] = ACTIONS(2817), - [anon_sym_new] = ACTIONS(2817), - [anon_sym_requires] = ACTIONS(2817), - [sym_this] = ACTIONS(2817), - [sym_nullptr] = ACTIONS(2817), - }, - [535] = { - [ts_builtin_sym_end] = ACTIONS(2386), - [sym_identifier] = ACTIONS(2384), - [aux_sym_preproc_include_token1] = ACTIONS(2384), - [aux_sym_preproc_def_token1] = ACTIONS(2384), - [aux_sym_preproc_if_token1] = ACTIONS(2384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2384), - [sym_preproc_directive] = ACTIONS(2384), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2386), - [anon_sym_TILDE] = ACTIONS(2386), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_SEMI] = ACTIONS(2386), - [anon_sym_typedef] = ACTIONS(2384), - [anon_sym_extern] = ACTIONS(2384), - [anon_sym___attribute__] = ACTIONS(2384), - [anon_sym_COLON_COLON] = ACTIONS(2386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2386), - [anon_sym___declspec] = ACTIONS(2384), - [anon_sym___based] = ACTIONS(2384), - [anon_sym___cdecl] = ACTIONS(2384), - [anon_sym___clrcall] = ACTIONS(2384), - [anon_sym___stdcall] = ACTIONS(2384), - [anon_sym___fastcall] = ACTIONS(2384), - [anon_sym___thiscall] = ACTIONS(2384), - [anon_sym___vectorcall] = ACTIONS(2384), - [anon_sym_LBRACE] = ACTIONS(2386), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_static] = ACTIONS(2384), - [anon_sym_register] = ACTIONS(2384), - [anon_sym_inline] = ACTIONS(2384), - [anon_sym_thread_local] = ACTIONS(2384), - [anon_sym_const] = ACTIONS(2384), - [anon_sym_volatile] = ACTIONS(2384), - [anon_sym_restrict] = ACTIONS(2384), - [anon_sym__Atomic] = ACTIONS(2384), - [anon_sym_mutable] = ACTIONS(2384), - [anon_sym_constexpr] = ACTIONS(2384), - [anon_sym_constinit] = ACTIONS(2384), - [anon_sym_consteval] = ACTIONS(2384), - [anon_sym_signed] = ACTIONS(2384), - [anon_sym_unsigned] = ACTIONS(2384), - [anon_sym_long] = ACTIONS(2384), - [anon_sym_short] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2384), - [anon_sym_enum] = ACTIONS(2384), - [anon_sym_class] = ACTIONS(2384), - [anon_sym_struct] = ACTIONS(2384), - [anon_sym_union] = ACTIONS(2384), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_else] = ACTIONS(2384), - [anon_sym_switch] = ACTIONS(2384), - [anon_sym_case] = ACTIONS(2384), - [anon_sym_default] = ACTIONS(2384), - [anon_sym_while] = ACTIONS(2384), - [anon_sym_do] = ACTIONS(2384), - [anon_sym_for] = ACTIONS(2384), - [anon_sym_return] = ACTIONS(2384), - [anon_sym_break] = ACTIONS(2384), - [anon_sym_continue] = ACTIONS(2384), - [anon_sym_goto] = ACTIONS(2384), - [anon_sym_not] = ACTIONS(2384), - [anon_sym_compl] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(2384), - [sym_number_literal] = ACTIONS(2386), - [anon_sym_L_SQUOTE] = ACTIONS(2386), - [anon_sym_u_SQUOTE] = ACTIONS(2386), - [anon_sym_U_SQUOTE] = ACTIONS(2386), - [anon_sym_u8_SQUOTE] = ACTIONS(2386), - [anon_sym_SQUOTE] = ACTIONS(2386), - [anon_sym_L_DQUOTE] = ACTIONS(2386), - [anon_sym_u_DQUOTE] = ACTIONS(2386), - [anon_sym_U_DQUOTE] = ACTIONS(2386), - [anon_sym_u8_DQUOTE] = ACTIONS(2386), - [anon_sym_DQUOTE] = ACTIONS(2386), - [sym_true] = ACTIONS(2384), - [sym_false] = ACTIONS(2384), - [sym_null] = ACTIONS(2384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2384), - [anon_sym_decltype] = ACTIONS(2384), - [anon_sym_virtual] = ACTIONS(2384), - [anon_sym_explicit] = ACTIONS(2384), - [anon_sym_typename] = ACTIONS(2384), - [anon_sym_template] = ACTIONS(2384), - [anon_sym_operator] = ACTIONS(2384), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_delete] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2384), - [anon_sym_namespace] = ACTIONS(2384), - [anon_sym_using] = ACTIONS(2384), - [anon_sym_static_assert] = ACTIONS(2384), - [anon_sym_concept] = ACTIONS(2384), - [anon_sym_co_return] = ACTIONS(2384), - [anon_sym_co_yield] = ACTIONS(2384), - [anon_sym_catch] = ACTIONS(2384), - [anon_sym_R_DQUOTE] = ACTIONS(2386), - [anon_sym_LR_DQUOTE] = ACTIONS(2386), - [anon_sym_uR_DQUOTE] = ACTIONS(2386), - [anon_sym_UR_DQUOTE] = ACTIONS(2386), - [anon_sym_u8R_DQUOTE] = ACTIONS(2386), - [anon_sym_co_await] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2384), - [anon_sym_requires] = ACTIONS(2384), - [sym_this] = ACTIONS(2384), - [sym_nullptr] = ACTIONS(2384), - }, - [536] = { - [sym_identifier] = ACTIONS(2329), - [aux_sym_preproc_include_token1] = ACTIONS(2329), - [aux_sym_preproc_def_token1] = ACTIONS(2329), - [aux_sym_preproc_if_token1] = ACTIONS(2329), - [aux_sym_preproc_if_token2] = ACTIONS(2329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2329), - [sym_preproc_directive] = ACTIONS(2329), - [anon_sym_LPAREN2] = ACTIONS(2327), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_AMP_AMP] = ACTIONS(2327), - [anon_sym_AMP] = ACTIONS(2329), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_typedef] = ACTIONS(2329), - [anon_sym_extern] = ACTIONS(2329), - [anon_sym___attribute__] = ACTIONS(2329), - [anon_sym_COLON_COLON] = ACTIONS(2327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), - [anon_sym___declspec] = ACTIONS(2329), - [anon_sym___based] = ACTIONS(2329), - [anon_sym___cdecl] = ACTIONS(2329), - [anon_sym___clrcall] = ACTIONS(2329), - [anon_sym___stdcall] = ACTIONS(2329), - [anon_sym___fastcall] = ACTIONS(2329), - [anon_sym___thiscall] = ACTIONS(2329), - [anon_sym___vectorcall] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_register] = ACTIONS(2329), - [anon_sym_inline] = ACTIONS(2329), - [anon_sym_thread_local] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_volatile] = ACTIONS(2329), - [anon_sym_restrict] = ACTIONS(2329), - [anon_sym__Atomic] = ACTIONS(2329), - [anon_sym_mutable] = ACTIONS(2329), - [anon_sym_constexpr] = ACTIONS(2329), - [anon_sym_constinit] = ACTIONS(2329), - [anon_sym_consteval] = ACTIONS(2329), - [anon_sym_signed] = ACTIONS(2329), - [anon_sym_unsigned] = ACTIONS(2329), - [anon_sym_long] = ACTIONS(2329), - [anon_sym_short] = ACTIONS(2329), - [sym_primitive_type] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), - [anon_sym_class] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2329), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_else] = ACTIONS(2329), - [anon_sym_switch] = ACTIONS(2329), - [anon_sym_case] = ACTIONS(2329), - [anon_sym_default] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_goto] = ACTIONS(2329), - [anon_sym_not] = ACTIONS(2329), - [anon_sym_compl] = ACTIONS(2329), - [anon_sym_DASH_DASH] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2327), - [anon_sym_sizeof] = ACTIONS(2329), - [sym_number_literal] = ACTIONS(2327), - [anon_sym_L_SQUOTE] = ACTIONS(2327), - [anon_sym_u_SQUOTE] = ACTIONS(2327), - [anon_sym_U_SQUOTE] = ACTIONS(2327), - [anon_sym_u8_SQUOTE] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2327), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2329), - [sym_false] = ACTIONS(2329), - [sym_null] = ACTIONS(2329), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2329), - [anon_sym_decltype] = ACTIONS(2329), - [anon_sym_virtual] = ACTIONS(2329), - [anon_sym_explicit] = ACTIONS(2329), - [anon_sym_typename] = ACTIONS(2329), - [anon_sym_template] = ACTIONS(2329), - [anon_sym_operator] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_throw] = ACTIONS(2329), - [anon_sym_namespace] = ACTIONS(2329), - [anon_sym_using] = ACTIONS(2329), - [anon_sym_static_assert] = ACTIONS(2329), - [anon_sym_concept] = ACTIONS(2329), - [anon_sym_co_return] = ACTIONS(2329), - [anon_sym_co_yield] = ACTIONS(2329), - [anon_sym_catch] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2327), - [anon_sym_LR_DQUOTE] = ACTIONS(2327), - [anon_sym_uR_DQUOTE] = ACTIONS(2327), - [anon_sym_UR_DQUOTE] = ACTIONS(2327), - [anon_sym_u8R_DQUOTE] = ACTIONS(2327), - [anon_sym_co_await] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_requires] = ACTIONS(2329), - [sym_this] = ACTIONS(2329), - [sym_nullptr] = ACTIONS(2329), - }, - [537] = { - [sym_identifier] = ACTIONS(2821), - [aux_sym_preproc_include_token1] = ACTIONS(2821), - [aux_sym_preproc_def_token1] = ACTIONS(2821), - [aux_sym_preproc_if_token1] = ACTIONS(2821), - [aux_sym_preproc_if_token2] = ACTIONS(2821), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2821), - [aux_sym_preproc_else_token1] = ACTIONS(2821), - [aux_sym_preproc_elif_token1] = ACTIONS(2821), - [sym_preproc_directive] = ACTIONS(2821), - [anon_sym_LPAREN2] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2821), - [anon_sym_PLUS] = ACTIONS(2821), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2821), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym_typedef] = ACTIONS(2821), - [anon_sym_extern] = ACTIONS(2821), - [anon_sym___attribute__] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2821), - [anon_sym___based] = ACTIONS(2821), - [anon_sym___cdecl] = ACTIONS(2821), - [anon_sym___clrcall] = ACTIONS(2821), - [anon_sym___stdcall] = ACTIONS(2821), - [anon_sym___fastcall] = ACTIONS(2821), - [anon_sym___thiscall] = ACTIONS(2821), - [anon_sym___vectorcall] = ACTIONS(2821), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2821), - [anon_sym_static] = ACTIONS(2821), - [anon_sym_register] = ACTIONS(2821), - [anon_sym_inline] = ACTIONS(2821), - [anon_sym_thread_local] = ACTIONS(2821), - [anon_sym_const] = ACTIONS(2821), - [anon_sym_volatile] = ACTIONS(2821), - [anon_sym_restrict] = ACTIONS(2821), - [anon_sym__Atomic] = ACTIONS(2821), - [anon_sym_mutable] = ACTIONS(2821), - [anon_sym_constexpr] = ACTIONS(2821), - [anon_sym_constinit] = ACTIONS(2821), - [anon_sym_consteval] = ACTIONS(2821), - [anon_sym_signed] = ACTIONS(2821), - [anon_sym_unsigned] = ACTIONS(2821), - [anon_sym_long] = ACTIONS(2821), - [anon_sym_short] = ACTIONS(2821), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2821), - [anon_sym_class] = ACTIONS(2821), - [anon_sym_struct] = ACTIONS(2821), - [anon_sym_union] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2821), - [anon_sym_switch] = ACTIONS(2821), - [anon_sym_case] = ACTIONS(2821), - [anon_sym_default] = ACTIONS(2821), - [anon_sym_while] = ACTIONS(2821), - [anon_sym_do] = ACTIONS(2821), - [anon_sym_for] = ACTIONS(2821), - [anon_sym_return] = ACTIONS(2821), - [anon_sym_break] = ACTIONS(2821), - [anon_sym_continue] = ACTIONS(2821), - [anon_sym_goto] = ACTIONS(2821), - [anon_sym_not] = ACTIONS(2821), - [anon_sym_compl] = ACTIONS(2821), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2821), - [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(2821), - [sym_false] = ACTIONS(2821), - [sym_null] = ACTIONS(2821), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2821), - [anon_sym_decltype] = ACTIONS(2821), - [anon_sym_virtual] = ACTIONS(2821), - [anon_sym_explicit] = ACTIONS(2821), - [anon_sym_typename] = ACTIONS(2821), - [anon_sym_template] = ACTIONS(2821), - [anon_sym_operator] = ACTIONS(2821), - [anon_sym_try] = ACTIONS(2821), - [anon_sym_delete] = ACTIONS(2821), - [anon_sym_throw] = ACTIONS(2821), - [anon_sym_namespace] = ACTIONS(2821), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_static_assert] = ACTIONS(2821), - [anon_sym_concept] = ACTIONS(2821), - [anon_sym_co_return] = ACTIONS(2821), - [anon_sym_co_yield] = ACTIONS(2821), - [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(2821), - [anon_sym_new] = ACTIONS(2821), - [anon_sym_requires] = ACTIONS(2821), - [sym_this] = ACTIONS(2821), - [sym_nullptr] = ACTIONS(2821), - }, - [538] = { - [sym_identifier] = ACTIONS(2384), - [aux_sym_preproc_include_token1] = ACTIONS(2384), - [aux_sym_preproc_def_token1] = ACTIONS(2384), - [aux_sym_preproc_if_token1] = ACTIONS(2384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2384), - [sym_preproc_directive] = ACTIONS(2384), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2386), - [anon_sym_TILDE] = ACTIONS(2386), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_SEMI] = ACTIONS(2386), - [anon_sym_typedef] = ACTIONS(2384), - [anon_sym_extern] = ACTIONS(2384), - [anon_sym___attribute__] = ACTIONS(2384), - [anon_sym_COLON_COLON] = ACTIONS(2386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2386), - [anon_sym___declspec] = ACTIONS(2384), - [anon_sym___based] = ACTIONS(2384), - [anon_sym___cdecl] = ACTIONS(2384), - [anon_sym___clrcall] = ACTIONS(2384), - [anon_sym___stdcall] = ACTIONS(2384), - [anon_sym___fastcall] = ACTIONS(2384), - [anon_sym___thiscall] = ACTIONS(2384), - [anon_sym___vectorcall] = ACTIONS(2384), - [anon_sym_LBRACE] = ACTIONS(2386), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_static] = ACTIONS(2384), - [anon_sym_register] = ACTIONS(2384), - [anon_sym_inline] = ACTIONS(2384), - [anon_sym_thread_local] = ACTIONS(2384), - [anon_sym_const] = ACTIONS(2384), - [anon_sym_volatile] = ACTIONS(2384), - [anon_sym_restrict] = ACTIONS(2384), - [anon_sym__Atomic] = ACTIONS(2384), - [anon_sym_mutable] = ACTIONS(2384), - [anon_sym_constexpr] = ACTIONS(2384), - [anon_sym_constinit] = ACTIONS(2384), - [anon_sym_consteval] = ACTIONS(2384), - [anon_sym_signed] = ACTIONS(2384), - [anon_sym_unsigned] = ACTIONS(2384), - [anon_sym_long] = ACTIONS(2384), - [anon_sym_short] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2384), - [anon_sym_enum] = ACTIONS(2384), - [anon_sym_class] = ACTIONS(2384), - [anon_sym_struct] = ACTIONS(2384), - [anon_sym_union] = ACTIONS(2384), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_else] = ACTIONS(2384), - [anon_sym_switch] = ACTIONS(2384), - [anon_sym_case] = ACTIONS(2384), - [anon_sym_default] = ACTIONS(2384), - [anon_sym_while] = ACTIONS(2384), - [anon_sym_do] = ACTIONS(2384), - [anon_sym_for] = ACTIONS(2384), - [anon_sym_return] = ACTIONS(2384), - [anon_sym_break] = ACTIONS(2384), - [anon_sym_continue] = ACTIONS(2384), - [anon_sym_goto] = ACTIONS(2384), - [anon_sym_not] = ACTIONS(2384), - [anon_sym_compl] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(2384), - [sym_number_literal] = ACTIONS(2386), - [anon_sym_L_SQUOTE] = ACTIONS(2386), - [anon_sym_u_SQUOTE] = ACTIONS(2386), - [anon_sym_U_SQUOTE] = ACTIONS(2386), - [anon_sym_u8_SQUOTE] = ACTIONS(2386), - [anon_sym_SQUOTE] = ACTIONS(2386), - [anon_sym_L_DQUOTE] = ACTIONS(2386), - [anon_sym_u_DQUOTE] = ACTIONS(2386), - [anon_sym_U_DQUOTE] = ACTIONS(2386), - [anon_sym_u8_DQUOTE] = ACTIONS(2386), - [anon_sym_DQUOTE] = ACTIONS(2386), - [sym_true] = ACTIONS(2384), - [sym_false] = ACTIONS(2384), - [sym_null] = ACTIONS(2384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2384), - [anon_sym_decltype] = ACTIONS(2384), - [anon_sym_virtual] = ACTIONS(2384), - [anon_sym_explicit] = ACTIONS(2384), - [anon_sym_typename] = ACTIONS(2384), - [anon_sym_template] = ACTIONS(2384), - [anon_sym_operator] = ACTIONS(2384), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_delete] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2384), - [anon_sym_namespace] = ACTIONS(2384), - [anon_sym_using] = ACTIONS(2384), - [anon_sym_static_assert] = ACTIONS(2384), - [anon_sym_concept] = ACTIONS(2384), - [anon_sym_co_return] = ACTIONS(2384), - [anon_sym_co_yield] = ACTIONS(2384), - [anon_sym_catch] = ACTIONS(2384), - [anon_sym_R_DQUOTE] = ACTIONS(2386), - [anon_sym_LR_DQUOTE] = ACTIONS(2386), - [anon_sym_uR_DQUOTE] = ACTIONS(2386), - [anon_sym_UR_DQUOTE] = ACTIONS(2386), - [anon_sym_u8R_DQUOTE] = ACTIONS(2386), - [anon_sym_co_await] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2384), - [anon_sym_requires] = ACTIONS(2384), - [sym_this] = ACTIONS(2384), - [sym_nullptr] = ACTIONS(2384), - }, - [539] = { - [sym_identifier] = ACTIONS(2825), - [aux_sym_preproc_include_token1] = ACTIONS(2825), - [aux_sym_preproc_def_token1] = ACTIONS(2825), - [aux_sym_preproc_if_token1] = ACTIONS(2825), - [aux_sym_preproc_if_token2] = ACTIONS(2825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2825), - [aux_sym_preproc_else_token1] = ACTIONS(2825), - [aux_sym_preproc_elif_token1] = ACTIONS(2825), - [sym_preproc_directive] = ACTIONS(2825), - [anon_sym_LPAREN2] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2825), - [anon_sym_PLUS] = ACTIONS(2825), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_AMP_AMP] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2825), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_typedef] = ACTIONS(2825), - [anon_sym_extern] = ACTIONS(2825), - [anon_sym___attribute__] = ACTIONS(2825), - [anon_sym_COLON_COLON] = ACTIONS(2827), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2827), - [anon_sym___declspec] = ACTIONS(2825), - [anon_sym___based] = ACTIONS(2825), - [anon_sym___cdecl] = ACTIONS(2825), - [anon_sym___clrcall] = ACTIONS(2825), - [anon_sym___stdcall] = ACTIONS(2825), - [anon_sym___fastcall] = ACTIONS(2825), - [anon_sym___thiscall] = ACTIONS(2825), - [anon_sym___vectorcall] = ACTIONS(2825), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(2825), - [anon_sym_register] = ACTIONS(2825), - [anon_sym_inline] = ACTIONS(2825), - [anon_sym_thread_local] = ACTIONS(2825), - [anon_sym_const] = ACTIONS(2825), - [anon_sym_volatile] = ACTIONS(2825), - [anon_sym_restrict] = ACTIONS(2825), - [anon_sym__Atomic] = ACTIONS(2825), - [anon_sym_mutable] = ACTIONS(2825), - [anon_sym_constexpr] = ACTIONS(2825), - [anon_sym_constinit] = ACTIONS(2825), - [anon_sym_consteval] = ACTIONS(2825), - [anon_sym_signed] = ACTIONS(2825), - [anon_sym_unsigned] = ACTIONS(2825), - [anon_sym_long] = ACTIONS(2825), - [anon_sym_short] = ACTIONS(2825), - [sym_primitive_type] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2825), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2825), - [anon_sym_union] = ACTIONS(2825), - [anon_sym_if] = ACTIONS(2825), - [anon_sym_switch] = ACTIONS(2825), - [anon_sym_case] = ACTIONS(2825), - [anon_sym_default] = ACTIONS(2825), - [anon_sym_while] = ACTIONS(2825), - [anon_sym_do] = ACTIONS(2825), - [anon_sym_for] = ACTIONS(2825), - [anon_sym_return] = ACTIONS(2825), - [anon_sym_break] = ACTIONS(2825), - [anon_sym_continue] = ACTIONS(2825), - [anon_sym_goto] = ACTIONS(2825), - [anon_sym_not] = ACTIONS(2825), - [anon_sym_compl] = ACTIONS(2825), - [anon_sym_DASH_DASH] = ACTIONS(2827), - [anon_sym_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_sizeof] = ACTIONS(2825), - [sym_number_literal] = ACTIONS(2827), - [anon_sym_L_SQUOTE] = ACTIONS(2827), - [anon_sym_u_SQUOTE] = ACTIONS(2827), - [anon_sym_U_SQUOTE] = ACTIONS(2827), - [anon_sym_u8_SQUOTE] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2827), - [anon_sym_L_DQUOTE] = ACTIONS(2827), - [anon_sym_u_DQUOTE] = ACTIONS(2827), - [anon_sym_U_DQUOTE] = ACTIONS(2827), - [anon_sym_u8_DQUOTE] = ACTIONS(2827), - [anon_sym_DQUOTE] = ACTIONS(2827), - [sym_true] = ACTIONS(2825), - [sym_false] = ACTIONS(2825), - [sym_null] = ACTIONS(2825), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2825), - [anon_sym_decltype] = ACTIONS(2825), - [anon_sym_virtual] = ACTIONS(2825), - [anon_sym_explicit] = ACTIONS(2825), - [anon_sym_typename] = ACTIONS(2825), - [anon_sym_template] = ACTIONS(2825), - [anon_sym_operator] = ACTIONS(2825), - [anon_sym_try] = ACTIONS(2825), - [anon_sym_delete] = ACTIONS(2825), - [anon_sym_throw] = ACTIONS(2825), - [anon_sym_namespace] = ACTIONS(2825), - [anon_sym_using] = ACTIONS(2825), - [anon_sym_static_assert] = ACTIONS(2825), - [anon_sym_concept] = ACTIONS(2825), - [anon_sym_co_return] = ACTIONS(2825), - [anon_sym_co_yield] = ACTIONS(2825), - [anon_sym_R_DQUOTE] = ACTIONS(2827), - [anon_sym_LR_DQUOTE] = ACTIONS(2827), - [anon_sym_uR_DQUOTE] = ACTIONS(2827), - [anon_sym_UR_DQUOTE] = ACTIONS(2827), - [anon_sym_u8R_DQUOTE] = ACTIONS(2827), - [anon_sym_co_await] = ACTIONS(2825), - [anon_sym_new] = ACTIONS(2825), - [anon_sym_requires] = ACTIONS(2825), - [sym_this] = ACTIONS(2825), - [sym_nullptr] = ACTIONS(2825), - }, - [540] = { - [sym_identifier] = ACTIONS(2829), - [aux_sym_preproc_include_token1] = ACTIONS(2829), - [aux_sym_preproc_def_token1] = ACTIONS(2829), - [aux_sym_preproc_if_token1] = ACTIONS(2829), - [aux_sym_preproc_if_token2] = ACTIONS(2829), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2829), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2829), - [aux_sym_preproc_else_token1] = ACTIONS(2829), - [aux_sym_preproc_elif_token1] = ACTIONS(2829), - [sym_preproc_directive] = ACTIONS(2829), - [anon_sym_LPAREN2] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2829), - [anon_sym_PLUS] = ACTIONS(2829), - [anon_sym_STAR] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2829), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_typedef] = ACTIONS(2829), - [anon_sym_extern] = ACTIONS(2829), - [anon_sym___attribute__] = ACTIONS(2829), - [anon_sym_COLON_COLON] = ACTIONS(2831), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2831), - [anon_sym___declspec] = ACTIONS(2829), - [anon_sym___based] = ACTIONS(2829), - [anon_sym___cdecl] = ACTIONS(2829), - [anon_sym___clrcall] = ACTIONS(2829), - [anon_sym___stdcall] = ACTIONS(2829), - [anon_sym___fastcall] = ACTIONS(2829), - [anon_sym___thiscall] = ACTIONS(2829), - [anon_sym___vectorcall] = ACTIONS(2829), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_static] = ACTIONS(2829), - [anon_sym_register] = ACTIONS(2829), - [anon_sym_inline] = ACTIONS(2829), - [anon_sym_thread_local] = ACTIONS(2829), - [anon_sym_const] = ACTIONS(2829), - [anon_sym_volatile] = ACTIONS(2829), - [anon_sym_restrict] = ACTIONS(2829), - [anon_sym__Atomic] = ACTIONS(2829), - [anon_sym_mutable] = ACTIONS(2829), - [anon_sym_constexpr] = ACTIONS(2829), - [anon_sym_constinit] = ACTIONS(2829), - [anon_sym_consteval] = ACTIONS(2829), - [anon_sym_signed] = ACTIONS(2829), - [anon_sym_unsigned] = ACTIONS(2829), - [anon_sym_long] = ACTIONS(2829), - [anon_sym_short] = ACTIONS(2829), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2829), - [anon_sym_class] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2829), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_if] = ACTIONS(2829), - [anon_sym_switch] = ACTIONS(2829), - [anon_sym_case] = ACTIONS(2829), - [anon_sym_default] = ACTIONS(2829), - [anon_sym_while] = ACTIONS(2829), - [anon_sym_do] = ACTIONS(2829), - [anon_sym_for] = ACTIONS(2829), - [anon_sym_return] = ACTIONS(2829), - [anon_sym_break] = ACTIONS(2829), - [anon_sym_continue] = ACTIONS(2829), - [anon_sym_goto] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2829), - [anon_sym_compl] = ACTIONS(2829), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2829), - [sym_number_literal] = ACTIONS(2831), - [anon_sym_L_SQUOTE] = ACTIONS(2831), - [anon_sym_u_SQUOTE] = ACTIONS(2831), - [anon_sym_U_SQUOTE] = ACTIONS(2831), - [anon_sym_u8_SQUOTE] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2831), - [anon_sym_L_DQUOTE] = ACTIONS(2831), - [anon_sym_u_DQUOTE] = ACTIONS(2831), - [anon_sym_U_DQUOTE] = ACTIONS(2831), - [anon_sym_u8_DQUOTE] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2831), - [sym_true] = ACTIONS(2829), - [sym_false] = ACTIONS(2829), - [sym_null] = ACTIONS(2829), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2829), - [anon_sym_decltype] = ACTIONS(2829), - [anon_sym_virtual] = ACTIONS(2829), - [anon_sym_explicit] = ACTIONS(2829), - [anon_sym_typename] = ACTIONS(2829), - [anon_sym_template] = ACTIONS(2829), - [anon_sym_operator] = ACTIONS(2829), - [anon_sym_try] = ACTIONS(2829), - [anon_sym_delete] = ACTIONS(2829), - [anon_sym_throw] = ACTIONS(2829), - [anon_sym_namespace] = ACTIONS(2829), - [anon_sym_using] = ACTIONS(2829), - [anon_sym_static_assert] = ACTIONS(2829), - [anon_sym_concept] = ACTIONS(2829), - [anon_sym_co_return] = ACTIONS(2829), - [anon_sym_co_yield] = ACTIONS(2829), - [anon_sym_R_DQUOTE] = ACTIONS(2831), - [anon_sym_LR_DQUOTE] = ACTIONS(2831), - [anon_sym_uR_DQUOTE] = ACTIONS(2831), - [anon_sym_UR_DQUOTE] = ACTIONS(2831), - [anon_sym_u8R_DQUOTE] = ACTIONS(2831), - [anon_sym_co_await] = ACTIONS(2829), - [anon_sym_new] = ACTIONS(2829), - [anon_sym_requires] = ACTIONS(2829), - [sym_this] = ACTIONS(2829), - [sym_nullptr] = ACTIONS(2829), - }, - [541] = { - [sym_identifier] = ACTIONS(2833), - [aux_sym_preproc_include_token1] = ACTIONS(2833), - [aux_sym_preproc_def_token1] = ACTIONS(2833), - [aux_sym_preproc_if_token1] = ACTIONS(2833), - [aux_sym_preproc_if_token2] = ACTIONS(2833), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2833), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2833), - [aux_sym_preproc_else_token1] = ACTIONS(2833), - [aux_sym_preproc_elif_token1] = ACTIONS(2833), - [sym_preproc_directive] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(2835), - [anon_sym_BANG] = ACTIONS(2835), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2833), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2833), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_typedef] = ACTIONS(2833), - [anon_sym_extern] = ACTIONS(2833), - [anon_sym___attribute__] = ACTIONS(2833), - [anon_sym_COLON_COLON] = ACTIONS(2835), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2835), - [anon_sym___declspec] = ACTIONS(2833), - [anon_sym___based] = ACTIONS(2833), - [anon_sym___cdecl] = ACTIONS(2833), - [anon_sym___clrcall] = ACTIONS(2833), - [anon_sym___stdcall] = ACTIONS(2833), - [anon_sym___fastcall] = ACTIONS(2833), - [anon_sym___thiscall] = ACTIONS(2833), - [anon_sym___vectorcall] = ACTIONS(2833), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2833), - [anon_sym_static] = ACTIONS(2833), - [anon_sym_register] = ACTIONS(2833), - [anon_sym_inline] = ACTIONS(2833), - [anon_sym_thread_local] = ACTIONS(2833), - [anon_sym_const] = ACTIONS(2833), - [anon_sym_volatile] = ACTIONS(2833), - [anon_sym_restrict] = ACTIONS(2833), - [anon_sym__Atomic] = ACTIONS(2833), - [anon_sym_mutable] = ACTIONS(2833), - [anon_sym_constexpr] = ACTIONS(2833), - [anon_sym_constinit] = ACTIONS(2833), - [anon_sym_consteval] = ACTIONS(2833), - [anon_sym_signed] = ACTIONS(2833), - [anon_sym_unsigned] = ACTIONS(2833), - [anon_sym_long] = ACTIONS(2833), - [anon_sym_short] = ACTIONS(2833), - [sym_primitive_type] = ACTIONS(2833), - [anon_sym_enum] = ACTIONS(2833), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2833), - [anon_sym_union] = ACTIONS(2833), - [anon_sym_if] = ACTIONS(2833), - [anon_sym_switch] = ACTIONS(2833), - [anon_sym_case] = ACTIONS(2833), - [anon_sym_default] = ACTIONS(2833), - [anon_sym_while] = ACTIONS(2833), - [anon_sym_do] = ACTIONS(2833), - [anon_sym_for] = ACTIONS(2833), - [anon_sym_return] = ACTIONS(2833), - [anon_sym_break] = ACTIONS(2833), - [anon_sym_continue] = ACTIONS(2833), - [anon_sym_goto] = ACTIONS(2833), - [anon_sym_not] = ACTIONS(2833), - [anon_sym_compl] = ACTIONS(2833), - [anon_sym_DASH_DASH] = ACTIONS(2835), - [anon_sym_PLUS_PLUS] = ACTIONS(2835), - [anon_sym_sizeof] = ACTIONS(2833), - [sym_number_literal] = ACTIONS(2835), - [anon_sym_L_SQUOTE] = ACTIONS(2835), - [anon_sym_u_SQUOTE] = ACTIONS(2835), - [anon_sym_U_SQUOTE] = ACTIONS(2835), - [anon_sym_u8_SQUOTE] = ACTIONS(2835), - [anon_sym_SQUOTE] = ACTIONS(2835), - [anon_sym_L_DQUOTE] = ACTIONS(2835), - [anon_sym_u_DQUOTE] = ACTIONS(2835), - [anon_sym_U_DQUOTE] = ACTIONS(2835), - [anon_sym_u8_DQUOTE] = ACTIONS(2835), - [anon_sym_DQUOTE] = ACTIONS(2835), - [sym_true] = ACTIONS(2833), - [sym_false] = ACTIONS(2833), - [sym_null] = ACTIONS(2833), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2833), - [anon_sym_decltype] = ACTIONS(2833), - [anon_sym_virtual] = ACTIONS(2833), - [anon_sym_explicit] = ACTIONS(2833), - [anon_sym_typename] = ACTIONS(2833), - [anon_sym_template] = ACTIONS(2833), - [anon_sym_operator] = ACTIONS(2833), - [anon_sym_try] = ACTIONS(2833), - [anon_sym_delete] = ACTIONS(2833), - [anon_sym_throw] = ACTIONS(2833), - [anon_sym_namespace] = ACTIONS(2833), - [anon_sym_using] = ACTIONS(2833), - [anon_sym_static_assert] = ACTIONS(2833), - [anon_sym_concept] = ACTIONS(2833), - [anon_sym_co_return] = ACTIONS(2833), - [anon_sym_co_yield] = ACTIONS(2833), - [anon_sym_R_DQUOTE] = ACTIONS(2835), - [anon_sym_LR_DQUOTE] = ACTIONS(2835), - [anon_sym_uR_DQUOTE] = ACTIONS(2835), - [anon_sym_UR_DQUOTE] = ACTIONS(2835), - [anon_sym_u8R_DQUOTE] = ACTIONS(2835), - [anon_sym_co_await] = ACTIONS(2833), - [anon_sym_new] = ACTIONS(2833), - [anon_sym_requires] = ACTIONS(2833), - [sym_this] = ACTIONS(2833), - [sym_nullptr] = ACTIONS(2833), - }, - [542] = { - [sym_identifier] = ACTIONS(2837), - [aux_sym_preproc_include_token1] = ACTIONS(2837), - [aux_sym_preproc_def_token1] = ACTIONS(2837), - [aux_sym_preproc_if_token1] = ACTIONS(2837), - [aux_sym_preproc_if_token2] = ACTIONS(2837), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2837), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2837), - [aux_sym_preproc_else_token1] = ACTIONS(2837), - [aux_sym_preproc_elif_token1] = ACTIONS(2837), - [sym_preproc_directive] = ACTIONS(2837), - [anon_sym_LPAREN2] = ACTIONS(2839), - [anon_sym_BANG] = ACTIONS(2839), - [anon_sym_TILDE] = ACTIONS(2839), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2839), - [anon_sym_AMP_AMP] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_typedef] = ACTIONS(2837), - [anon_sym_extern] = ACTIONS(2837), - [anon_sym___attribute__] = ACTIONS(2837), - [anon_sym_COLON_COLON] = ACTIONS(2839), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2839), - [anon_sym___declspec] = ACTIONS(2837), - [anon_sym___based] = ACTIONS(2837), - [anon_sym___cdecl] = ACTIONS(2837), - [anon_sym___clrcall] = ACTIONS(2837), - [anon_sym___stdcall] = ACTIONS(2837), - [anon_sym___fastcall] = ACTIONS(2837), - [anon_sym___thiscall] = ACTIONS(2837), - [anon_sym___vectorcall] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_LBRACK] = ACTIONS(2837), - [anon_sym_static] = ACTIONS(2837), - [anon_sym_register] = ACTIONS(2837), - [anon_sym_inline] = ACTIONS(2837), - [anon_sym_thread_local] = ACTIONS(2837), - [anon_sym_const] = ACTIONS(2837), - [anon_sym_volatile] = ACTIONS(2837), - [anon_sym_restrict] = ACTIONS(2837), - [anon_sym__Atomic] = ACTIONS(2837), - [anon_sym_mutable] = ACTIONS(2837), - [anon_sym_constexpr] = ACTIONS(2837), - [anon_sym_constinit] = ACTIONS(2837), - [anon_sym_consteval] = ACTIONS(2837), - [anon_sym_signed] = ACTIONS(2837), - [anon_sym_unsigned] = ACTIONS(2837), - [anon_sym_long] = ACTIONS(2837), - [anon_sym_short] = ACTIONS(2837), - [sym_primitive_type] = ACTIONS(2837), - [anon_sym_enum] = ACTIONS(2837), - [anon_sym_class] = ACTIONS(2837), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_union] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_switch] = ACTIONS(2837), - [anon_sym_case] = ACTIONS(2837), - [anon_sym_default] = ACTIONS(2837), - [anon_sym_while] = ACTIONS(2837), - [anon_sym_do] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_break] = ACTIONS(2837), - [anon_sym_continue] = ACTIONS(2837), - [anon_sym_goto] = ACTIONS(2837), - [anon_sym_not] = ACTIONS(2837), - [anon_sym_compl] = ACTIONS(2837), - [anon_sym_DASH_DASH] = ACTIONS(2839), - [anon_sym_PLUS_PLUS] = ACTIONS(2839), - [anon_sym_sizeof] = ACTIONS(2837), - [sym_number_literal] = ACTIONS(2839), - [anon_sym_L_SQUOTE] = ACTIONS(2839), - [anon_sym_u_SQUOTE] = ACTIONS(2839), - [anon_sym_U_SQUOTE] = ACTIONS(2839), - [anon_sym_u8_SQUOTE] = ACTIONS(2839), - [anon_sym_SQUOTE] = ACTIONS(2839), - [anon_sym_L_DQUOTE] = ACTIONS(2839), - [anon_sym_u_DQUOTE] = ACTIONS(2839), - [anon_sym_U_DQUOTE] = ACTIONS(2839), - [anon_sym_u8_DQUOTE] = ACTIONS(2839), - [anon_sym_DQUOTE] = ACTIONS(2839), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_null] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2837), - [anon_sym_decltype] = ACTIONS(2837), - [anon_sym_virtual] = ACTIONS(2837), - [anon_sym_explicit] = ACTIONS(2837), - [anon_sym_typename] = ACTIONS(2837), - [anon_sym_template] = ACTIONS(2837), - [anon_sym_operator] = ACTIONS(2837), - [anon_sym_try] = ACTIONS(2837), - [anon_sym_delete] = ACTIONS(2837), - [anon_sym_throw] = ACTIONS(2837), - [anon_sym_namespace] = ACTIONS(2837), - [anon_sym_using] = ACTIONS(2837), - [anon_sym_static_assert] = ACTIONS(2837), - [anon_sym_concept] = ACTIONS(2837), - [anon_sym_co_return] = ACTIONS(2837), - [anon_sym_co_yield] = ACTIONS(2837), - [anon_sym_R_DQUOTE] = ACTIONS(2839), - [anon_sym_LR_DQUOTE] = ACTIONS(2839), - [anon_sym_uR_DQUOTE] = ACTIONS(2839), - [anon_sym_UR_DQUOTE] = ACTIONS(2839), - [anon_sym_u8R_DQUOTE] = ACTIONS(2839), - [anon_sym_co_await] = ACTIONS(2837), - [anon_sym_new] = ACTIONS(2837), - [anon_sym_requires] = ACTIONS(2837), - [sym_this] = ACTIONS(2837), - [sym_nullptr] = ACTIONS(2837), - }, - [543] = { - [sym_identifier] = ACTIONS(2841), - [aux_sym_preproc_include_token1] = ACTIONS(2841), - [aux_sym_preproc_def_token1] = ACTIONS(2841), - [aux_sym_preproc_if_token1] = ACTIONS(2841), - [aux_sym_preproc_if_token2] = ACTIONS(2841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2841), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2841), - [aux_sym_preproc_else_token1] = ACTIONS(2841), - [aux_sym_preproc_elif_token1] = ACTIONS(2841), - [sym_preproc_directive] = ACTIONS(2841), - [anon_sym_LPAREN2] = ACTIONS(2843), - [anon_sym_BANG] = ACTIONS(2843), - [anon_sym_TILDE] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_STAR] = ACTIONS(2843), - [anon_sym_AMP_AMP] = ACTIONS(2843), - [anon_sym_AMP] = ACTIONS(2841), - [anon_sym_SEMI] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2841), - [anon_sym_extern] = ACTIONS(2841), - [anon_sym___attribute__] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(2843), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2843), - [anon_sym___declspec] = ACTIONS(2841), - [anon_sym___based] = ACTIONS(2841), - [anon_sym___cdecl] = ACTIONS(2841), - [anon_sym___clrcall] = ACTIONS(2841), - [anon_sym___stdcall] = ACTIONS(2841), - [anon_sym___fastcall] = ACTIONS(2841), - [anon_sym___thiscall] = ACTIONS(2841), - [anon_sym___vectorcall] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_static] = ACTIONS(2841), - [anon_sym_register] = ACTIONS(2841), - [anon_sym_inline] = ACTIONS(2841), - [anon_sym_thread_local] = ACTIONS(2841), - [anon_sym_const] = ACTIONS(2841), - [anon_sym_volatile] = ACTIONS(2841), - [anon_sym_restrict] = ACTIONS(2841), - [anon_sym__Atomic] = ACTIONS(2841), - [anon_sym_mutable] = ACTIONS(2841), - [anon_sym_constexpr] = ACTIONS(2841), - [anon_sym_constinit] = ACTIONS(2841), - [anon_sym_consteval] = ACTIONS(2841), - [anon_sym_signed] = ACTIONS(2841), - [anon_sym_unsigned] = ACTIONS(2841), - [anon_sym_long] = ACTIONS(2841), - [anon_sym_short] = ACTIONS(2841), - [sym_primitive_type] = ACTIONS(2841), - [anon_sym_enum] = ACTIONS(2841), - [anon_sym_class] = ACTIONS(2841), - [anon_sym_struct] = ACTIONS(2841), - [anon_sym_union] = ACTIONS(2841), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_switch] = ACTIONS(2841), - [anon_sym_case] = ACTIONS(2841), - [anon_sym_default] = ACTIONS(2841), - [anon_sym_while] = ACTIONS(2841), - [anon_sym_do] = ACTIONS(2841), - [anon_sym_for] = ACTIONS(2841), - [anon_sym_return] = ACTIONS(2841), - [anon_sym_break] = ACTIONS(2841), - [anon_sym_continue] = ACTIONS(2841), - [anon_sym_goto] = ACTIONS(2841), - [anon_sym_not] = ACTIONS(2841), - [anon_sym_compl] = ACTIONS(2841), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_PLUS_PLUS] = ACTIONS(2843), - [anon_sym_sizeof] = ACTIONS(2841), - [sym_number_literal] = ACTIONS(2843), - [anon_sym_L_SQUOTE] = ACTIONS(2843), - [anon_sym_u_SQUOTE] = ACTIONS(2843), - [anon_sym_U_SQUOTE] = ACTIONS(2843), - [anon_sym_u8_SQUOTE] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_L_DQUOTE] = ACTIONS(2843), - [anon_sym_u_DQUOTE] = ACTIONS(2843), - [anon_sym_U_DQUOTE] = ACTIONS(2843), - [anon_sym_u8_DQUOTE] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym_true] = ACTIONS(2841), - [sym_false] = ACTIONS(2841), - [sym_null] = ACTIONS(2841), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2841), - [anon_sym_decltype] = ACTIONS(2841), - [anon_sym_virtual] = ACTIONS(2841), - [anon_sym_explicit] = ACTIONS(2841), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2841), - [anon_sym_operator] = ACTIONS(2841), - [anon_sym_try] = ACTIONS(2841), - [anon_sym_delete] = ACTIONS(2841), - [anon_sym_throw] = ACTIONS(2841), - [anon_sym_namespace] = ACTIONS(2841), - [anon_sym_using] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2841), - [anon_sym_concept] = ACTIONS(2841), - [anon_sym_co_return] = ACTIONS(2841), - [anon_sym_co_yield] = ACTIONS(2841), - [anon_sym_R_DQUOTE] = ACTIONS(2843), - [anon_sym_LR_DQUOTE] = ACTIONS(2843), - [anon_sym_uR_DQUOTE] = ACTIONS(2843), - [anon_sym_UR_DQUOTE] = ACTIONS(2843), - [anon_sym_u8R_DQUOTE] = ACTIONS(2843), - [anon_sym_co_await] = ACTIONS(2841), - [anon_sym_new] = ACTIONS(2841), - [anon_sym_requires] = ACTIONS(2841), - [sym_this] = ACTIONS(2841), - [sym_nullptr] = ACTIONS(2841), - }, - [544] = { - [sym_identifier] = ACTIONS(2845), - [aux_sym_preproc_include_token1] = ACTIONS(2845), - [aux_sym_preproc_def_token1] = ACTIONS(2845), - [aux_sym_preproc_if_token1] = ACTIONS(2845), - [aux_sym_preproc_if_token2] = ACTIONS(2845), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2845), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2845), - [aux_sym_preproc_else_token1] = ACTIONS(2845), - [aux_sym_preproc_elif_token1] = ACTIONS(2845), - [sym_preproc_directive] = ACTIONS(2845), - [anon_sym_LPAREN2] = ACTIONS(2847), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_TILDE] = ACTIONS(2847), - [anon_sym_DASH] = ACTIONS(2845), - [anon_sym_PLUS] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_AMP_AMP] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_SEMI] = ACTIONS(2847), - [anon_sym_typedef] = ACTIONS(2845), - [anon_sym_extern] = ACTIONS(2845), - [anon_sym___attribute__] = ACTIONS(2845), - [anon_sym_COLON_COLON] = ACTIONS(2847), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2847), - [anon_sym___declspec] = ACTIONS(2845), - [anon_sym___based] = ACTIONS(2845), - [anon_sym___cdecl] = ACTIONS(2845), - [anon_sym___clrcall] = ACTIONS(2845), - [anon_sym___stdcall] = ACTIONS(2845), - [anon_sym___fastcall] = ACTIONS(2845), - [anon_sym___thiscall] = ACTIONS(2845), - [anon_sym___vectorcall] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_static] = ACTIONS(2845), - [anon_sym_register] = ACTIONS(2845), - [anon_sym_inline] = ACTIONS(2845), - [anon_sym_thread_local] = ACTIONS(2845), - [anon_sym_const] = ACTIONS(2845), - [anon_sym_volatile] = ACTIONS(2845), - [anon_sym_restrict] = ACTIONS(2845), - [anon_sym__Atomic] = ACTIONS(2845), - [anon_sym_mutable] = ACTIONS(2845), - [anon_sym_constexpr] = ACTIONS(2845), - [anon_sym_constinit] = ACTIONS(2845), - [anon_sym_consteval] = ACTIONS(2845), - [anon_sym_signed] = ACTIONS(2845), - [anon_sym_unsigned] = ACTIONS(2845), - [anon_sym_long] = ACTIONS(2845), - [anon_sym_short] = ACTIONS(2845), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_enum] = ACTIONS(2845), - [anon_sym_class] = ACTIONS(2845), - [anon_sym_struct] = ACTIONS(2845), - [anon_sym_union] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(2845), - [anon_sym_switch] = ACTIONS(2845), - [anon_sym_case] = ACTIONS(2845), - [anon_sym_default] = ACTIONS(2845), - [anon_sym_while] = ACTIONS(2845), - [anon_sym_do] = ACTIONS(2845), - [anon_sym_for] = ACTIONS(2845), - [anon_sym_return] = ACTIONS(2845), - [anon_sym_break] = ACTIONS(2845), - [anon_sym_continue] = ACTIONS(2845), - [anon_sym_goto] = ACTIONS(2845), - [anon_sym_not] = ACTIONS(2845), - [anon_sym_compl] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2845), - [sym_number_literal] = ACTIONS(2847), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2847), - [anon_sym_u_DQUOTE] = ACTIONS(2847), - [anon_sym_U_DQUOTE] = ACTIONS(2847), - [anon_sym_u8_DQUOTE] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2847), - [sym_true] = ACTIONS(2845), - [sym_false] = ACTIONS(2845), - [sym_null] = ACTIONS(2845), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2845), - [anon_sym_decltype] = ACTIONS(2845), - [anon_sym_virtual] = ACTIONS(2845), - [anon_sym_explicit] = ACTIONS(2845), - [anon_sym_typename] = ACTIONS(2845), - [anon_sym_template] = ACTIONS(2845), - [anon_sym_operator] = ACTIONS(2845), - [anon_sym_try] = ACTIONS(2845), - [anon_sym_delete] = ACTIONS(2845), - [anon_sym_throw] = ACTIONS(2845), - [anon_sym_namespace] = ACTIONS(2845), - [anon_sym_using] = ACTIONS(2845), - [anon_sym_static_assert] = ACTIONS(2845), - [anon_sym_concept] = ACTIONS(2845), - [anon_sym_co_return] = ACTIONS(2845), - [anon_sym_co_yield] = ACTIONS(2845), - [anon_sym_R_DQUOTE] = ACTIONS(2847), - [anon_sym_LR_DQUOTE] = ACTIONS(2847), - [anon_sym_uR_DQUOTE] = ACTIONS(2847), - [anon_sym_UR_DQUOTE] = ACTIONS(2847), - [anon_sym_u8R_DQUOTE] = ACTIONS(2847), - [anon_sym_co_await] = ACTIONS(2845), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_requires] = ACTIONS(2845), - [sym_this] = ACTIONS(2845), - [sym_nullptr] = ACTIONS(2845), - }, - [545] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [546] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [547] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [548] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [549] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [550] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [551] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [552] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [553] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [554] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [555] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [556] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [557] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [558] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [559] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [560] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [561] = { - [ts_builtin_sym_end] = ACTIONS(2633), - [sym_identifier] = ACTIONS(2631), - [aux_sym_preproc_include_token1] = ACTIONS(2631), - [aux_sym_preproc_def_token1] = ACTIONS(2631), - [aux_sym_preproc_if_token1] = ACTIONS(2631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), - [sym_preproc_directive] = ACTIONS(2631), - [anon_sym_LPAREN2] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2631), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_typedef] = ACTIONS(2631), - [anon_sym_extern] = ACTIONS(2631), - [anon_sym___attribute__] = ACTIONS(2631), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), - [anon_sym___declspec] = ACTIONS(2631), - [anon_sym___based] = ACTIONS(2631), - [anon_sym___cdecl] = ACTIONS(2631), - [anon_sym___clrcall] = ACTIONS(2631), - [anon_sym___stdcall] = ACTIONS(2631), - [anon_sym___fastcall] = ACTIONS(2631), - [anon_sym___thiscall] = ACTIONS(2631), - [anon_sym___vectorcall] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_register] = ACTIONS(2631), - [anon_sym_inline] = ACTIONS(2631), - [anon_sym_thread_local] = ACTIONS(2631), - [anon_sym_const] = ACTIONS(2631), - [anon_sym_volatile] = ACTIONS(2631), - [anon_sym_restrict] = ACTIONS(2631), - [anon_sym__Atomic] = ACTIONS(2631), - [anon_sym_mutable] = ACTIONS(2631), - [anon_sym_constexpr] = ACTIONS(2631), - [anon_sym_constinit] = ACTIONS(2631), - [anon_sym_consteval] = ACTIONS(2631), - [anon_sym_signed] = ACTIONS(2631), - [anon_sym_unsigned] = ACTIONS(2631), - [anon_sym_long] = ACTIONS(2631), - [anon_sym_short] = ACTIONS(2631), - [sym_primitive_type] = ACTIONS(2631), - [anon_sym_enum] = ACTIONS(2631), - [anon_sym_class] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2631), - [anon_sym_union] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_else] = ACTIONS(2631), - [anon_sym_switch] = ACTIONS(2631), - [anon_sym_case] = ACTIONS(2631), - [anon_sym_default] = ACTIONS(2631), - [anon_sym_while] = ACTIONS(2631), - [anon_sym_do] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_return] = ACTIONS(2631), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_continue] = ACTIONS(2631), - [anon_sym_goto] = ACTIONS(2631), - [anon_sym_not] = ACTIONS(2631), - [anon_sym_compl] = ACTIONS(2631), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_sizeof] = ACTIONS(2631), - [sym_number_literal] = ACTIONS(2633), - [anon_sym_L_SQUOTE] = ACTIONS(2633), - [anon_sym_u_SQUOTE] = ACTIONS(2633), - [anon_sym_U_SQUOTE] = ACTIONS(2633), - [anon_sym_u8_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_L_DQUOTE] = ACTIONS(2633), - [anon_sym_u_DQUOTE] = ACTIONS(2633), - [anon_sym_U_DQUOTE] = ACTIONS(2633), - [anon_sym_u8_DQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [sym_true] = ACTIONS(2631), - [sym_false] = ACTIONS(2631), - [sym_null] = ACTIONS(2631), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2631), - [anon_sym_decltype] = ACTIONS(2631), - [anon_sym_virtual] = ACTIONS(2631), - [anon_sym_explicit] = ACTIONS(2631), - [anon_sym_typename] = ACTIONS(2631), - [anon_sym_template] = ACTIONS(2631), - [anon_sym_operator] = ACTIONS(2631), - [anon_sym_try] = ACTIONS(2631), - [anon_sym_delete] = ACTIONS(2631), - [anon_sym_throw] = ACTIONS(2631), - [anon_sym_namespace] = ACTIONS(2631), - [anon_sym_using] = ACTIONS(2631), - [anon_sym_static_assert] = ACTIONS(2631), - [anon_sym_concept] = ACTIONS(2631), - [anon_sym_co_return] = ACTIONS(2631), - [anon_sym_co_yield] = ACTIONS(2631), - [anon_sym_R_DQUOTE] = ACTIONS(2633), - [anon_sym_LR_DQUOTE] = ACTIONS(2633), - [anon_sym_uR_DQUOTE] = ACTIONS(2633), - [anon_sym_UR_DQUOTE] = ACTIONS(2633), - [anon_sym_u8R_DQUOTE] = ACTIONS(2633), - [anon_sym_co_await] = ACTIONS(2631), - [anon_sym_new] = ACTIONS(2631), - [anon_sym_requires] = ACTIONS(2631), - [sym_this] = ACTIONS(2631), - [sym_nullptr] = ACTIONS(2631), - }, - [562] = { - [ts_builtin_sym_end] = ACTIONS(2629), - [sym_identifier] = ACTIONS(2627), - [aux_sym_preproc_include_token1] = ACTIONS(2627), - [aux_sym_preproc_def_token1] = ACTIONS(2627), - [aux_sym_preproc_if_token1] = ACTIONS(2627), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), - [sym_preproc_directive] = ACTIONS(2627), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_PLUS] = ACTIONS(2627), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_AMP_AMP] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym_typedef] = ACTIONS(2627), - [anon_sym_extern] = ACTIONS(2627), - [anon_sym___attribute__] = ACTIONS(2627), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), - [anon_sym___declspec] = ACTIONS(2627), - [anon_sym___based] = ACTIONS(2627), - [anon_sym___cdecl] = ACTIONS(2627), - [anon_sym___clrcall] = ACTIONS(2627), - [anon_sym___stdcall] = ACTIONS(2627), - [anon_sym___fastcall] = ACTIONS(2627), - [anon_sym___thiscall] = ACTIONS(2627), - [anon_sym___vectorcall] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_static] = ACTIONS(2627), - [anon_sym_register] = ACTIONS(2627), - [anon_sym_inline] = ACTIONS(2627), - [anon_sym_thread_local] = ACTIONS(2627), - [anon_sym_const] = ACTIONS(2627), - [anon_sym_volatile] = ACTIONS(2627), - [anon_sym_restrict] = ACTIONS(2627), - [anon_sym__Atomic] = ACTIONS(2627), - [anon_sym_mutable] = ACTIONS(2627), - [anon_sym_constexpr] = ACTIONS(2627), - [anon_sym_constinit] = ACTIONS(2627), - [anon_sym_consteval] = ACTIONS(2627), - [anon_sym_signed] = ACTIONS(2627), - [anon_sym_unsigned] = ACTIONS(2627), - [anon_sym_long] = ACTIONS(2627), - [anon_sym_short] = ACTIONS(2627), - [sym_primitive_type] = ACTIONS(2627), - [anon_sym_enum] = ACTIONS(2627), - [anon_sym_class] = ACTIONS(2627), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_union] = ACTIONS(2627), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2627), - [anon_sym_switch] = ACTIONS(2627), - [anon_sym_case] = ACTIONS(2627), - [anon_sym_default] = ACTIONS(2627), - [anon_sym_while] = ACTIONS(2627), - [anon_sym_do] = ACTIONS(2627), - [anon_sym_for] = ACTIONS(2627), - [anon_sym_return] = ACTIONS(2627), - [anon_sym_break] = ACTIONS(2627), - [anon_sym_continue] = ACTIONS(2627), - [anon_sym_goto] = ACTIONS(2627), - [anon_sym_not] = ACTIONS(2627), - [anon_sym_compl] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_sizeof] = ACTIONS(2627), - [sym_number_literal] = ACTIONS(2629), - [anon_sym_L_SQUOTE] = ACTIONS(2629), - [anon_sym_u_SQUOTE] = ACTIONS(2629), - [anon_sym_U_SQUOTE] = ACTIONS(2629), - [anon_sym_u8_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_L_DQUOTE] = ACTIONS(2629), - [anon_sym_u_DQUOTE] = ACTIONS(2629), - [anon_sym_U_DQUOTE] = ACTIONS(2629), - [anon_sym_u8_DQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [sym_null] = ACTIONS(2627), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2627), - [anon_sym_decltype] = ACTIONS(2627), - [anon_sym_virtual] = ACTIONS(2627), - [anon_sym_explicit] = ACTIONS(2627), - [anon_sym_typename] = ACTIONS(2627), - [anon_sym_template] = ACTIONS(2627), - [anon_sym_operator] = ACTIONS(2627), - [anon_sym_try] = ACTIONS(2627), - [anon_sym_delete] = ACTIONS(2627), - [anon_sym_throw] = ACTIONS(2627), - [anon_sym_namespace] = ACTIONS(2627), - [anon_sym_using] = ACTIONS(2627), - [anon_sym_static_assert] = ACTIONS(2627), - [anon_sym_concept] = ACTIONS(2627), - [anon_sym_co_return] = ACTIONS(2627), - [anon_sym_co_yield] = ACTIONS(2627), - [anon_sym_R_DQUOTE] = ACTIONS(2629), - [anon_sym_LR_DQUOTE] = ACTIONS(2629), - [anon_sym_uR_DQUOTE] = ACTIONS(2629), - [anon_sym_UR_DQUOTE] = ACTIONS(2629), - [anon_sym_u8R_DQUOTE] = ACTIONS(2629), - [anon_sym_co_await] = ACTIONS(2627), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_requires] = ACTIONS(2627), - [sym_this] = ACTIONS(2627), - [sym_nullptr] = ACTIONS(2627), - }, - [563] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [564] = { - [ts_builtin_sym_end] = ACTIONS(2625), - [sym_identifier] = ACTIONS(2623), - [aux_sym_preproc_include_token1] = ACTIONS(2623), - [aux_sym_preproc_def_token1] = ACTIONS(2623), - [aux_sym_preproc_if_token1] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), - [sym_preproc_directive] = ACTIONS(2623), - [anon_sym_LPAREN2] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2623), - [anon_sym_PLUS] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_typedef] = ACTIONS(2623), - [anon_sym_extern] = ACTIONS(2623), - [anon_sym___attribute__] = ACTIONS(2623), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), - [anon_sym___declspec] = ACTIONS(2623), - [anon_sym___based] = ACTIONS(2623), - [anon_sym___cdecl] = ACTIONS(2623), - [anon_sym___clrcall] = ACTIONS(2623), - [anon_sym___stdcall] = ACTIONS(2623), - [anon_sym___fastcall] = ACTIONS(2623), - [anon_sym___thiscall] = ACTIONS(2623), - [anon_sym___vectorcall] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_static] = ACTIONS(2623), - [anon_sym_register] = ACTIONS(2623), - [anon_sym_inline] = ACTIONS(2623), - [anon_sym_thread_local] = ACTIONS(2623), - [anon_sym_const] = ACTIONS(2623), - [anon_sym_volatile] = ACTIONS(2623), - [anon_sym_restrict] = ACTIONS(2623), - [anon_sym__Atomic] = ACTIONS(2623), - [anon_sym_mutable] = ACTIONS(2623), - [anon_sym_constexpr] = ACTIONS(2623), - [anon_sym_constinit] = ACTIONS(2623), - [anon_sym_consteval] = ACTIONS(2623), - [anon_sym_signed] = ACTIONS(2623), - [anon_sym_unsigned] = ACTIONS(2623), - [anon_sym_long] = ACTIONS(2623), - [anon_sym_short] = ACTIONS(2623), - [sym_primitive_type] = ACTIONS(2623), - [anon_sym_enum] = ACTIONS(2623), - [anon_sym_class] = ACTIONS(2623), - [anon_sym_struct] = ACTIONS(2623), - [anon_sym_union] = ACTIONS(2623), - [anon_sym_if] = ACTIONS(2623), - [anon_sym_else] = ACTIONS(2623), - [anon_sym_switch] = ACTIONS(2623), - [anon_sym_case] = ACTIONS(2623), - [anon_sym_default] = ACTIONS(2623), - [anon_sym_while] = ACTIONS(2623), - [anon_sym_do] = ACTIONS(2623), - [anon_sym_for] = ACTIONS(2623), - [anon_sym_return] = ACTIONS(2623), - [anon_sym_break] = ACTIONS(2623), - [anon_sym_continue] = ACTIONS(2623), - [anon_sym_goto] = ACTIONS(2623), - [anon_sym_not] = ACTIONS(2623), - [anon_sym_compl] = ACTIONS(2623), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_sizeof] = ACTIONS(2623), - [sym_number_literal] = ACTIONS(2625), - [anon_sym_L_SQUOTE] = ACTIONS(2625), - [anon_sym_u_SQUOTE] = ACTIONS(2625), - [anon_sym_U_SQUOTE] = ACTIONS(2625), - [anon_sym_u8_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_L_DQUOTE] = ACTIONS(2625), - [anon_sym_u_DQUOTE] = ACTIONS(2625), - [anon_sym_U_DQUOTE] = ACTIONS(2625), - [anon_sym_u8_DQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [sym_true] = ACTIONS(2623), - [sym_false] = ACTIONS(2623), - [sym_null] = ACTIONS(2623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2623), - [anon_sym_decltype] = ACTIONS(2623), - [anon_sym_virtual] = ACTIONS(2623), - [anon_sym_explicit] = ACTIONS(2623), - [anon_sym_typename] = ACTIONS(2623), - [anon_sym_template] = ACTIONS(2623), - [anon_sym_operator] = ACTIONS(2623), - [anon_sym_try] = ACTIONS(2623), - [anon_sym_delete] = ACTIONS(2623), - [anon_sym_throw] = ACTIONS(2623), - [anon_sym_namespace] = ACTIONS(2623), - [anon_sym_using] = ACTIONS(2623), - [anon_sym_static_assert] = ACTIONS(2623), - [anon_sym_concept] = ACTIONS(2623), - [anon_sym_co_return] = ACTIONS(2623), - [anon_sym_co_yield] = ACTIONS(2623), - [anon_sym_R_DQUOTE] = ACTIONS(2625), - [anon_sym_LR_DQUOTE] = ACTIONS(2625), - [anon_sym_uR_DQUOTE] = ACTIONS(2625), - [anon_sym_UR_DQUOTE] = ACTIONS(2625), - [anon_sym_u8R_DQUOTE] = ACTIONS(2625), - [anon_sym_co_await] = ACTIONS(2623), - [anon_sym_new] = ACTIONS(2623), - [anon_sym_requires] = ACTIONS(2623), - [sym_this] = ACTIONS(2623), - [sym_nullptr] = ACTIONS(2623), - }, - [565] = { - [sym_identifier] = ACTIONS(2567), - [aux_sym_preproc_include_token1] = ACTIONS(2567), - [aux_sym_preproc_def_token1] = ACTIONS(2567), - [aux_sym_preproc_if_token1] = ACTIONS(2567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2567), - [sym_preproc_directive] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(2569), - [anon_sym_AMP_AMP] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2569), - [anon_sym_typedef] = ACTIONS(2567), - [anon_sym_extern] = ACTIONS(2567), - [anon_sym___attribute__] = ACTIONS(2567), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2569), - [anon_sym___declspec] = ACTIONS(2567), - [anon_sym___based] = ACTIONS(2567), - [anon_sym___cdecl] = ACTIONS(2567), - [anon_sym___clrcall] = ACTIONS(2567), - [anon_sym___stdcall] = ACTIONS(2567), - [anon_sym___fastcall] = ACTIONS(2567), - [anon_sym___thiscall] = ACTIONS(2567), - [anon_sym___vectorcall] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2569), - [anon_sym_RBRACE] = ACTIONS(2569), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_static] = ACTIONS(2567), - [anon_sym_register] = ACTIONS(2567), - [anon_sym_inline] = ACTIONS(2567), - [anon_sym_thread_local] = ACTIONS(2567), - [anon_sym_const] = ACTIONS(2567), - [anon_sym_volatile] = ACTIONS(2567), - [anon_sym_restrict] = ACTIONS(2567), - [anon_sym__Atomic] = ACTIONS(2567), - [anon_sym_mutable] = ACTIONS(2567), - [anon_sym_constexpr] = ACTIONS(2567), - [anon_sym_constinit] = ACTIONS(2567), - [anon_sym_consteval] = ACTIONS(2567), - [anon_sym_signed] = ACTIONS(2567), - [anon_sym_unsigned] = ACTIONS(2567), - [anon_sym_long] = ACTIONS(2567), - [anon_sym_short] = ACTIONS(2567), - [sym_primitive_type] = ACTIONS(2567), - [anon_sym_enum] = ACTIONS(2567), - [anon_sym_class] = ACTIONS(2567), - [anon_sym_struct] = ACTIONS(2567), - [anon_sym_union] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_else] = ACTIONS(2567), - [anon_sym_switch] = ACTIONS(2567), - [anon_sym_case] = ACTIONS(2567), - [anon_sym_default] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_break] = ACTIONS(2567), - [anon_sym_continue] = ACTIONS(2567), - [anon_sym_goto] = ACTIONS(2567), - [anon_sym_not] = ACTIONS(2567), - [anon_sym_compl] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2569), - [anon_sym_PLUS_PLUS] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2567), - [sym_number_literal] = ACTIONS(2569), - [anon_sym_L_SQUOTE] = ACTIONS(2569), - [anon_sym_u_SQUOTE] = ACTIONS(2569), - [anon_sym_U_SQUOTE] = ACTIONS(2569), - [anon_sym_u8_SQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_L_DQUOTE] = ACTIONS(2569), - [anon_sym_u_DQUOTE] = ACTIONS(2569), - [anon_sym_U_DQUOTE] = ACTIONS(2569), - [anon_sym_u8_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE] = ACTIONS(2569), - [sym_true] = ACTIONS(2567), - [sym_false] = ACTIONS(2567), - [sym_null] = ACTIONS(2567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2567), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_virtual] = ACTIONS(2567), - [anon_sym_explicit] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2567), - [anon_sym_template] = ACTIONS(2567), - [anon_sym_operator] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_delete] = ACTIONS(2567), - [anon_sym_throw] = ACTIONS(2567), - [anon_sym_namespace] = ACTIONS(2567), - [anon_sym_using] = ACTIONS(2567), - [anon_sym_static_assert] = ACTIONS(2567), - [anon_sym_concept] = ACTIONS(2567), - [anon_sym_co_return] = ACTIONS(2567), - [anon_sym_co_yield] = ACTIONS(2567), - [anon_sym_R_DQUOTE] = ACTIONS(2569), - [anon_sym_LR_DQUOTE] = ACTIONS(2569), - [anon_sym_uR_DQUOTE] = ACTIONS(2569), - [anon_sym_UR_DQUOTE] = ACTIONS(2569), - [anon_sym_u8R_DQUOTE] = ACTIONS(2569), - [anon_sym_co_await] = ACTIONS(2567), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_requires] = ACTIONS(2567), - [sym_this] = ACTIONS(2567), - [sym_nullptr] = ACTIONS(2567), - }, - [566] = { - [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_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_LBRACK] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_register] = ACTIONS(2559), - [anon_sym_inline] = ACTIONS(2559), - [anon_sym_thread_local] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_volatile] = ACTIONS(2559), - [anon_sym_restrict] = ACTIONS(2559), - [anon_sym__Atomic] = ACTIONS(2559), - [anon_sym_mutable] = ACTIONS(2559), - [anon_sym_constexpr] = ACTIONS(2559), - [anon_sym_constinit] = ACTIONS(2559), - [anon_sym_consteval] = ACTIONS(2559), - [anon_sym_signed] = ACTIONS(2559), - [anon_sym_unsigned] = ACTIONS(2559), - [anon_sym_long] = ACTIONS(2559), - [anon_sym_short] = 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_else] = 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), - [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), - [sym_null] = ACTIONS(2559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2559), - [anon_sym_decltype] = ACTIONS(2559), - [anon_sym_virtual] = 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_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_nullptr] = ACTIONS(2559), - }, - [567] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [568] = { - [sym_identifier] = ACTIONS(2551), - [aux_sym_preproc_include_token1] = ACTIONS(2551), - [aux_sym_preproc_def_token1] = ACTIONS(2551), - [aux_sym_preproc_if_token1] = ACTIONS(2551), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2551), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2551), - [sym_preproc_directive] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2553), - [anon_sym_TILDE] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2551), - [anon_sym_PLUS] = ACTIONS(2551), - [anon_sym_STAR] = ACTIONS(2553), - [anon_sym_AMP_AMP] = ACTIONS(2553), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2553), - [anon_sym_typedef] = ACTIONS(2551), - [anon_sym_extern] = ACTIONS(2551), - [anon_sym___attribute__] = ACTIONS(2551), - [anon_sym_COLON_COLON] = ACTIONS(2553), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), - [anon_sym___declspec] = ACTIONS(2551), - [anon_sym___based] = ACTIONS(2551), - [anon_sym___cdecl] = ACTIONS(2551), - [anon_sym___clrcall] = ACTIONS(2551), - [anon_sym___stdcall] = ACTIONS(2551), - [anon_sym___fastcall] = ACTIONS(2551), - [anon_sym___thiscall] = ACTIONS(2551), - [anon_sym___vectorcall] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [anon_sym_RBRACE] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_static] = ACTIONS(2551), - [anon_sym_register] = ACTIONS(2551), - [anon_sym_inline] = ACTIONS(2551), - [anon_sym_thread_local] = ACTIONS(2551), - [anon_sym_const] = ACTIONS(2551), - [anon_sym_volatile] = ACTIONS(2551), - [anon_sym_restrict] = ACTIONS(2551), - [anon_sym__Atomic] = ACTIONS(2551), - [anon_sym_mutable] = ACTIONS(2551), - [anon_sym_constexpr] = ACTIONS(2551), - [anon_sym_constinit] = ACTIONS(2551), - [anon_sym_consteval] = ACTIONS(2551), - [anon_sym_signed] = ACTIONS(2551), - [anon_sym_unsigned] = ACTIONS(2551), - [anon_sym_long] = ACTIONS(2551), - [anon_sym_short] = ACTIONS(2551), - [sym_primitive_type] = ACTIONS(2551), - [anon_sym_enum] = ACTIONS(2551), - [anon_sym_class] = ACTIONS(2551), - [anon_sym_struct] = ACTIONS(2551), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_if] = ACTIONS(2551), - [anon_sym_else] = ACTIONS(2551), - [anon_sym_switch] = ACTIONS(2551), - [anon_sym_case] = ACTIONS(2551), - [anon_sym_default] = ACTIONS(2551), - [anon_sym_while] = ACTIONS(2551), - [anon_sym_do] = ACTIONS(2551), - [anon_sym_for] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2551), - [anon_sym_break] = ACTIONS(2551), - [anon_sym_continue] = ACTIONS(2551), - [anon_sym_goto] = ACTIONS(2551), - [anon_sym_not] = ACTIONS(2551), - [anon_sym_compl] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2551), - [sym_number_literal] = ACTIONS(2553), - [anon_sym_L_SQUOTE] = ACTIONS(2553), - [anon_sym_u_SQUOTE] = ACTIONS(2553), - [anon_sym_U_SQUOTE] = ACTIONS(2553), - [anon_sym_u8_SQUOTE] = ACTIONS(2553), - [anon_sym_SQUOTE] = ACTIONS(2553), - [anon_sym_L_DQUOTE] = ACTIONS(2553), - [anon_sym_u_DQUOTE] = ACTIONS(2553), - [anon_sym_U_DQUOTE] = ACTIONS(2553), - [anon_sym_u8_DQUOTE] = ACTIONS(2553), - [anon_sym_DQUOTE] = ACTIONS(2553), - [sym_true] = ACTIONS(2551), - [sym_false] = ACTIONS(2551), - [sym_null] = ACTIONS(2551), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2551), - [anon_sym_decltype] = ACTIONS(2551), - [anon_sym_virtual] = ACTIONS(2551), - [anon_sym_explicit] = ACTIONS(2551), - [anon_sym_typename] = ACTIONS(2551), - [anon_sym_template] = ACTIONS(2551), - [anon_sym_operator] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2551), - [anon_sym_delete] = ACTIONS(2551), - [anon_sym_throw] = ACTIONS(2551), - [anon_sym_namespace] = ACTIONS(2551), - [anon_sym_using] = ACTIONS(2551), - [anon_sym_static_assert] = ACTIONS(2551), - [anon_sym_concept] = ACTIONS(2551), - [anon_sym_co_return] = ACTIONS(2551), - [anon_sym_co_yield] = ACTIONS(2551), - [anon_sym_R_DQUOTE] = ACTIONS(2553), - [anon_sym_LR_DQUOTE] = ACTIONS(2553), - [anon_sym_uR_DQUOTE] = ACTIONS(2553), - [anon_sym_UR_DQUOTE] = ACTIONS(2553), - [anon_sym_u8R_DQUOTE] = ACTIONS(2553), - [anon_sym_co_await] = ACTIONS(2551), - [anon_sym_new] = ACTIONS(2551), - [anon_sym_requires] = ACTIONS(2551), - [sym_this] = ACTIONS(2551), - [sym_nullptr] = ACTIONS(2551), - }, - [569] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [570] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [571] = { - [ts_builtin_sym_end] = ACTIONS(2593), - [sym_identifier] = ACTIONS(2591), - [aux_sym_preproc_include_token1] = ACTIONS(2591), - [aux_sym_preproc_def_token1] = ACTIONS(2591), - [aux_sym_preproc_if_token1] = ACTIONS(2591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2591), - [sym_preproc_directive] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2593), - [anon_sym_TILDE] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_AMP_AMP] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_typedef] = ACTIONS(2591), - [anon_sym_extern] = ACTIONS(2591), - [anon_sym___attribute__] = ACTIONS(2591), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), - [anon_sym___declspec] = ACTIONS(2591), - [anon_sym___based] = ACTIONS(2591), - [anon_sym___cdecl] = ACTIONS(2591), - [anon_sym___clrcall] = ACTIONS(2591), - [anon_sym___stdcall] = ACTIONS(2591), - [anon_sym___fastcall] = ACTIONS(2591), - [anon_sym___thiscall] = ACTIONS(2591), - [anon_sym___vectorcall] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_static] = ACTIONS(2591), - [anon_sym_register] = ACTIONS(2591), - [anon_sym_inline] = ACTIONS(2591), - [anon_sym_thread_local] = ACTIONS(2591), - [anon_sym_const] = ACTIONS(2591), - [anon_sym_volatile] = ACTIONS(2591), - [anon_sym_restrict] = ACTIONS(2591), - [anon_sym__Atomic] = ACTIONS(2591), - [anon_sym_mutable] = ACTIONS(2591), - [anon_sym_constexpr] = ACTIONS(2591), - [anon_sym_constinit] = ACTIONS(2591), - [anon_sym_consteval] = ACTIONS(2591), - [anon_sym_signed] = ACTIONS(2591), - [anon_sym_unsigned] = ACTIONS(2591), - [anon_sym_long] = ACTIONS(2591), - [anon_sym_short] = ACTIONS(2591), - [sym_primitive_type] = ACTIONS(2591), - [anon_sym_enum] = ACTIONS(2591), - [anon_sym_class] = ACTIONS(2591), - [anon_sym_struct] = ACTIONS(2591), - [anon_sym_union] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_else] = ACTIONS(2591), - [anon_sym_switch] = ACTIONS(2591), - [anon_sym_case] = ACTIONS(2591), - [anon_sym_default] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_break] = ACTIONS(2591), - [anon_sym_continue] = ACTIONS(2591), - [anon_sym_goto] = ACTIONS(2591), - [anon_sym_not] = ACTIONS(2591), - [anon_sym_compl] = ACTIONS(2591), - [anon_sym_DASH_DASH] = ACTIONS(2593), - [anon_sym_PLUS_PLUS] = ACTIONS(2593), - [anon_sym_sizeof] = ACTIONS(2591), - [sym_number_literal] = ACTIONS(2593), - [anon_sym_L_SQUOTE] = ACTIONS(2593), - [anon_sym_u_SQUOTE] = ACTIONS(2593), - [anon_sym_U_SQUOTE] = ACTIONS(2593), - [anon_sym_u8_SQUOTE] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_L_DQUOTE] = ACTIONS(2593), - [anon_sym_u_DQUOTE] = ACTIONS(2593), - [anon_sym_U_DQUOTE] = ACTIONS(2593), - [anon_sym_u8_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE] = ACTIONS(2593), - [sym_true] = ACTIONS(2591), - [sym_false] = ACTIONS(2591), - [sym_null] = ACTIONS(2591), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2591), - [anon_sym_decltype] = ACTIONS(2591), - [anon_sym_virtual] = ACTIONS(2591), - [anon_sym_explicit] = ACTIONS(2591), - [anon_sym_typename] = ACTIONS(2591), - [anon_sym_template] = ACTIONS(2591), - [anon_sym_operator] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_delete] = ACTIONS(2591), - [anon_sym_throw] = ACTIONS(2591), - [anon_sym_namespace] = ACTIONS(2591), - [anon_sym_using] = ACTIONS(2591), - [anon_sym_static_assert] = ACTIONS(2591), - [anon_sym_concept] = ACTIONS(2591), - [anon_sym_co_return] = ACTIONS(2591), - [anon_sym_co_yield] = ACTIONS(2591), - [anon_sym_R_DQUOTE] = ACTIONS(2593), - [anon_sym_LR_DQUOTE] = ACTIONS(2593), - [anon_sym_uR_DQUOTE] = ACTIONS(2593), - [anon_sym_UR_DQUOTE] = ACTIONS(2593), - [anon_sym_u8R_DQUOTE] = ACTIONS(2593), - [anon_sym_co_await] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_requires] = ACTIONS(2591), - [sym_this] = ACTIONS(2591), - [sym_nullptr] = ACTIONS(2591), - }, - [572] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [573] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [574] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [575] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [576] = { - [ts_builtin_sym_end] = ACTIONS(2617), - [sym_identifier] = ACTIONS(2615), - [aux_sym_preproc_include_token1] = ACTIONS(2615), - [aux_sym_preproc_def_token1] = ACTIONS(2615), - [aux_sym_preproc_if_token1] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), - [sym_preproc_directive] = ACTIONS(2615), - [anon_sym_LPAREN2] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2615), - [anon_sym_PLUS] = ACTIONS(2615), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_typedef] = ACTIONS(2615), - [anon_sym_extern] = ACTIONS(2615), - [anon_sym___attribute__] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), - [anon_sym___declspec] = ACTIONS(2615), - [anon_sym___based] = ACTIONS(2615), - [anon_sym___cdecl] = ACTIONS(2615), - [anon_sym___clrcall] = ACTIONS(2615), - [anon_sym___stdcall] = ACTIONS(2615), - [anon_sym___fastcall] = ACTIONS(2615), - [anon_sym___thiscall] = ACTIONS(2615), - [anon_sym___vectorcall] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_static] = ACTIONS(2615), - [anon_sym_register] = ACTIONS(2615), - [anon_sym_inline] = ACTIONS(2615), - [anon_sym_thread_local] = ACTIONS(2615), - [anon_sym_const] = ACTIONS(2615), - [anon_sym_volatile] = ACTIONS(2615), - [anon_sym_restrict] = ACTIONS(2615), - [anon_sym__Atomic] = ACTIONS(2615), - [anon_sym_mutable] = ACTIONS(2615), - [anon_sym_constexpr] = ACTIONS(2615), - [anon_sym_constinit] = ACTIONS(2615), - [anon_sym_consteval] = ACTIONS(2615), - [anon_sym_signed] = ACTIONS(2615), - [anon_sym_unsigned] = ACTIONS(2615), - [anon_sym_long] = ACTIONS(2615), - [anon_sym_short] = ACTIONS(2615), - [sym_primitive_type] = ACTIONS(2615), - [anon_sym_enum] = ACTIONS(2615), - [anon_sym_class] = ACTIONS(2615), - [anon_sym_struct] = ACTIONS(2615), - [anon_sym_union] = ACTIONS(2615), - [anon_sym_if] = ACTIONS(2615), - [anon_sym_else] = ACTIONS(2615), - [anon_sym_switch] = ACTIONS(2615), - [anon_sym_case] = ACTIONS(2615), - [anon_sym_default] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2615), - [anon_sym_do] = ACTIONS(2615), - [anon_sym_for] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_goto] = ACTIONS(2615), - [anon_sym_not] = ACTIONS(2615), - [anon_sym_compl] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_sizeof] = ACTIONS(2615), - [sym_number_literal] = ACTIONS(2617), - [anon_sym_L_SQUOTE] = ACTIONS(2617), - [anon_sym_u_SQUOTE] = ACTIONS(2617), - [anon_sym_U_SQUOTE] = ACTIONS(2617), - [anon_sym_u8_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_L_DQUOTE] = ACTIONS(2617), - [anon_sym_u_DQUOTE] = ACTIONS(2617), - [anon_sym_U_DQUOTE] = ACTIONS(2617), - [anon_sym_u8_DQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [sym_true] = ACTIONS(2615), - [sym_false] = ACTIONS(2615), - [sym_null] = ACTIONS(2615), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2615), - [anon_sym_decltype] = ACTIONS(2615), - [anon_sym_virtual] = ACTIONS(2615), - [anon_sym_explicit] = ACTIONS(2615), - [anon_sym_typename] = ACTIONS(2615), - [anon_sym_template] = ACTIONS(2615), - [anon_sym_operator] = ACTIONS(2615), - [anon_sym_try] = ACTIONS(2615), - [anon_sym_delete] = ACTIONS(2615), - [anon_sym_throw] = ACTIONS(2615), - [anon_sym_namespace] = ACTIONS(2615), - [anon_sym_using] = ACTIONS(2615), - [anon_sym_static_assert] = ACTIONS(2615), - [anon_sym_concept] = ACTIONS(2615), - [anon_sym_co_return] = ACTIONS(2615), - [anon_sym_co_yield] = ACTIONS(2615), - [anon_sym_R_DQUOTE] = ACTIONS(2617), - [anon_sym_LR_DQUOTE] = ACTIONS(2617), - [anon_sym_uR_DQUOTE] = ACTIONS(2617), - [anon_sym_UR_DQUOTE] = ACTIONS(2617), - [anon_sym_u8R_DQUOTE] = ACTIONS(2617), - [anon_sym_co_await] = ACTIONS(2615), - [anon_sym_new] = ACTIONS(2615), - [anon_sym_requires] = ACTIONS(2615), - [sym_this] = ACTIONS(2615), - [sym_nullptr] = ACTIONS(2615), - }, - [577] = { - [ts_builtin_sym_end] = ACTIONS(2613), - [sym_identifier] = ACTIONS(2611), - [aux_sym_preproc_include_token1] = ACTIONS(2611), - [aux_sym_preproc_def_token1] = ACTIONS(2611), - [aux_sym_preproc_if_token1] = ACTIONS(2611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), - [sym_preproc_directive] = ACTIONS(2611), - [anon_sym_LPAREN2] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2611), - [anon_sym_PLUS] = ACTIONS(2611), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_typedef] = ACTIONS(2611), - [anon_sym_extern] = ACTIONS(2611), - [anon_sym___attribute__] = ACTIONS(2611), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), - [anon_sym___declspec] = ACTIONS(2611), - [anon_sym___based] = ACTIONS(2611), - [anon_sym___cdecl] = ACTIONS(2611), - [anon_sym___clrcall] = ACTIONS(2611), - [anon_sym___stdcall] = ACTIONS(2611), - [anon_sym___fastcall] = ACTIONS(2611), - [anon_sym___thiscall] = ACTIONS(2611), - [anon_sym___vectorcall] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2611), - [anon_sym_static] = ACTIONS(2611), - [anon_sym_register] = ACTIONS(2611), - [anon_sym_inline] = ACTIONS(2611), - [anon_sym_thread_local] = ACTIONS(2611), - [anon_sym_const] = ACTIONS(2611), - [anon_sym_volatile] = ACTIONS(2611), - [anon_sym_restrict] = ACTIONS(2611), - [anon_sym__Atomic] = ACTIONS(2611), - [anon_sym_mutable] = ACTIONS(2611), - [anon_sym_constexpr] = ACTIONS(2611), - [anon_sym_constinit] = ACTIONS(2611), - [anon_sym_consteval] = ACTIONS(2611), - [anon_sym_signed] = ACTIONS(2611), - [anon_sym_unsigned] = ACTIONS(2611), - [anon_sym_long] = ACTIONS(2611), - [anon_sym_short] = ACTIONS(2611), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_enum] = ACTIONS(2611), - [anon_sym_class] = ACTIONS(2611), - [anon_sym_struct] = ACTIONS(2611), - [anon_sym_union] = ACTIONS(2611), - [anon_sym_if] = ACTIONS(2611), - [anon_sym_else] = ACTIONS(2611), - [anon_sym_switch] = ACTIONS(2611), - [anon_sym_case] = ACTIONS(2611), - [anon_sym_default] = ACTIONS(2611), - [anon_sym_while] = ACTIONS(2611), - [anon_sym_do] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2611), - [anon_sym_break] = ACTIONS(2611), - [anon_sym_continue] = ACTIONS(2611), - [anon_sym_goto] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(2611), - [anon_sym_compl] = ACTIONS(2611), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_sizeof] = ACTIONS(2611), - [sym_number_literal] = ACTIONS(2613), - [anon_sym_L_SQUOTE] = ACTIONS(2613), - [anon_sym_u_SQUOTE] = ACTIONS(2613), - [anon_sym_U_SQUOTE] = ACTIONS(2613), - [anon_sym_u8_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_L_DQUOTE] = ACTIONS(2613), - [anon_sym_u_DQUOTE] = ACTIONS(2613), - [anon_sym_U_DQUOTE] = ACTIONS(2613), - [anon_sym_u8_DQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [sym_true] = ACTIONS(2611), - [sym_false] = ACTIONS(2611), - [sym_null] = ACTIONS(2611), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2611), - [anon_sym_decltype] = ACTIONS(2611), - [anon_sym_virtual] = ACTIONS(2611), - [anon_sym_explicit] = ACTIONS(2611), - [anon_sym_typename] = ACTIONS(2611), - [anon_sym_template] = ACTIONS(2611), - [anon_sym_operator] = ACTIONS(2611), - [anon_sym_try] = ACTIONS(2611), - [anon_sym_delete] = ACTIONS(2611), - [anon_sym_throw] = ACTIONS(2611), - [anon_sym_namespace] = ACTIONS(2611), - [anon_sym_using] = ACTIONS(2611), - [anon_sym_static_assert] = ACTIONS(2611), - [anon_sym_concept] = ACTIONS(2611), - [anon_sym_co_return] = ACTIONS(2611), - [anon_sym_co_yield] = ACTIONS(2611), - [anon_sym_R_DQUOTE] = ACTIONS(2613), - [anon_sym_LR_DQUOTE] = ACTIONS(2613), - [anon_sym_uR_DQUOTE] = ACTIONS(2613), - [anon_sym_UR_DQUOTE] = ACTIONS(2613), - [anon_sym_u8R_DQUOTE] = ACTIONS(2613), - [anon_sym_co_await] = ACTIONS(2611), - [anon_sym_new] = ACTIONS(2611), - [anon_sym_requires] = ACTIONS(2611), - [sym_this] = ACTIONS(2611), - [sym_nullptr] = ACTIONS(2611), - }, - [578] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [579] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [580] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [581] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [582] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [583] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [584] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [585] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [586] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [587] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [588] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [589] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [590] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [591] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [592] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [593] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [594] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [595] = { - [sym_identifier] = ACTIONS(2603), - [aux_sym_preproc_include_token1] = ACTIONS(2603), - [aux_sym_preproc_def_token1] = ACTIONS(2603), - [aux_sym_preproc_if_token1] = ACTIONS(2603), - [aux_sym_preproc_if_token2] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), - [sym_preproc_directive] = ACTIONS(2603), - [anon_sym_LPAREN2] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2603), - [anon_sym_PLUS] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2605), - [anon_sym_typedef] = ACTIONS(2603), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym___attribute__] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2605), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), - [anon_sym___declspec] = ACTIONS(2603), - [anon_sym___based] = ACTIONS(2603), - [anon_sym___cdecl] = ACTIONS(2603), - [anon_sym___clrcall] = ACTIONS(2603), - [anon_sym___stdcall] = ACTIONS(2603), - [anon_sym___fastcall] = ACTIONS(2603), - [anon_sym___thiscall] = ACTIONS(2603), - [anon_sym___vectorcall] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2603), - [anon_sym_register] = ACTIONS(2603), - [anon_sym_inline] = ACTIONS(2603), - [anon_sym_thread_local] = ACTIONS(2603), - [anon_sym_const] = ACTIONS(2603), - [anon_sym_volatile] = ACTIONS(2603), - [anon_sym_restrict] = ACTIONS(2603), - [anon_sym__Atomic] = ACTIONS(2603), - [anon_sym_mutable] = ACTIONS(2603), - [anon_sym_constexpr] = ACTIONS(2603), - [anon_sym_constinit] = ACTIONS(2603), - [anon_sym_consteval] = ACTIONS(2603), - [anon_sym_signed] = ACTIONS(2603), - [anon_sym_unsigned] = ACTIONS(2603), - [anon_sym_long] = ACTIONS(2603), - [anon_sym_short] = ACTIONS(2603), - [sym_primitive_type] = ACTIONS(2603), - [anon_sym_enum] = ACTIONS(2603), - [anon_sym_class] = ACTIONS(2603), - [anon_sym_struct] = ACTIONS(2603), - [anon_sym_union] = ACTIONS(2603), - [anon_sym_if] = ACTIONS(2603), - [anon_sym_else] = ACTIONS(2603), - [anon_sym_switch] = ACTIONS(2603), - [anon_sym_case] = ACTIONS(2603), - [anon_sym_default] = ACTIONS(2603), - [anon_sym_while] = ACTIONS(2603), - [anon_sym_do] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2603), - [anon_sym_break] = ACTIONS(2603), - [anon_sym_continue] = ACTIONS(2603), - [anon_sym_goto] = ACTIONS(2603), - [anon_sym_not] = ACTIONS(2603), - [anon_sym_compl] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2605), - [anon_sym_PLUS_PLUS] = ACTIONS(2605), - [anon_sym_sizeof] = ACTIONS(2603), - [sym_number_literal] = ACTIONS(2605), - [anon_sym_L_SQUOTE] = ACTIONS(2605), - [anon_sym_u_SQUOTE] = ACTIONS(2605), - [anon_sym_U_SQUOTE] = ACTIONS(2605), - [anon_sym_u8_SQUOTE] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(2605), - [anon_sym_L_DQUOTE] = ACTIONS(2605), - [anon_sym_u_DQUOTE] = ACTIONS(2605), - [anon_sym_U_DQUOTE] = ACTIONS(2605), - [anon_sym_u8_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [sym_true] = ACTIONS(2603), - [sym_false] = ACTIONS(2603), - [sym_null] = ACTIONS(2603), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2603), - [anon_sym_decltype] = ACTIONS(2603), - [anon_sym_virtual] = ACTIONS(2603), - [anon_sym_explicit] = ACTIONS(2603), - [anon_sym_typename] = ACTIONS(2603), - [anon_sym_template] = ACTIONS(2603), - [anon_sym_operator] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2603), - [anon_sym_delete] = ACTIONS(2603), - [anon_sym_throw] = ACTIONS(2603), - [anon_sym_namespace] = ACTIONS(2603), - [anon_sym_using] = ACTIONS(2603), - [anon_sym_static_assert] = ACTIONS(2603), - [anon_sym_concept] = ACTIONS(2603), - [anon_sym_co_return] = ACTIONS(2603), - [anon_sym_co_yield] = ACTIONS(2603), - [anon_sym_R_DQUOTE] = ACTIONS(2605), - [anon_sym_LR_DQUOTE] = ACTIONS(2605), - [anon_sym_uR_DQUOTE] = ACTIONS(2605), - [anon_sym_UR_DQUOTE] = ACTIONS(2605), - [anon_sym_u8R_DQUOTE] = ACTIONS(2605), - [anon_sym_co_await] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2603), - [anon_sym_requires] = ACTIONS(2603), - [sym_this] = ACTIONS(2603), - [sym_nullptr] = ACTIONS(2603), - }, - [596] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [597] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [598] = { - [ts_builtin_sym_end] = ACTIONS(2605), - [sym_identifier] = ACTIONS(2603), - [aux_sym_preproc_include_token1] = ACTIONS(2603), - [aux_sym_preproc_def_token1] = ACTIONS(2603), - [aux_sym_preproc_if_token1] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), - [sym_preproc_directive] = ACTIONS(2603), - [anon_sym_LPAREN2] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2603), - [anon_sym_PLUS] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2605), - [anon_sym_typedef] = ACTIONS(2603), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym___attribute__] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2605), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), - [anon_sym___declspec] = ACTIONS(2603), - [anon_sym___based] = ACTIONS(2603), - [anon_sym___cdecl] = ACTIONS(2603), - [anon_sym___clrcall] = ACTIONS(2603), - [anon_sym___stdcall] = ACTIONS(2603), - [anon_sym___fastcall] = ACTIONS(2603), - [anon_sym___thiscall] = ACTIONS(2603), - [anon_sym___vectorcall] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2603), - [anon_sym_register] = ACTIONS(2603), - [anon_sym_inline] = ACTIONS(2603), - [anon_sym_thread_local] = ACTIONS(2603), - [anon_sym_const] = ACTIONS(2603), - [anon_sym_volatile] = ACTIONS(2603), - [anon_sym_restrict] = ACTIONS(2603), - [anon_sym__Atomic] = ACTIONS(2603), - [anon_sym_mutable] = ACTIONS(2603), - [anon_sym_constexpr] = ACTIONS(2603), - [anon_sym_constinit] = ACTIONS(2603), - [anon_sym_consteval] = ACTIONS(2603), - [anon_sym_signed] = ACTIONS(2603), - [anon_sym_unsigned] = ACTIONS(2603), - [anon_sym_long] = ACTIONS(2603), - [anon_sym_short] = ACTIONS(2603), - [sym_primitive_type] = ACTIONS(2603), - [anon_sym_enum] = ACTIONS(2603), - [anon_sym_class] = ACTIONS(2603), - [anon_sym_struct] = ACTIONS(2603), - [anon_sym_union] = ACTIONS(2603), - [anon_sym_if] = ACTIONS(2603), - [anon_sym_else] = ACTIONS(2603), - [anon_sym_switch] = ACTIONS(2603), - [anon_sym_case] = ACTIONS(2603), - [anon_sym_default] = ACTIONS(2603), - [anon_sym_while] = ACTIONS(2603), - [anon_sym_do] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2603), - [anon_sym_break] = ACTIONS(2603), - [anon_sym_continue] = ACTIONS(2603), - [anon_sym_goto] = ACTIONS(2603), - [anon_sym_not] = ACTIONS(2603), - [anon_sym_compl] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2605), - [anon_sym_PLUS_PLUS] = ACTIONS(2605), - [anon_sym_sizeof] = ACTIONS(2603), - [sym_number_literal] = ACTIONS(2605), - [anon_sym_L_SQUOTE] = ACTIONS(2605), - [anon_sym_u_SQUOTE] = ACTIONS(2605), - [anon_sym_U_SQUOTE] = ACTIONS(2605), - [anon_sym_u8_SQUOTE] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(2605), - [anon_sym_L_DQUOTE] = ACTIONS(2605), - [anon_sym_u_DQUOTE] = ACTIONS(2605), - [anon_sym_U_DQUOTE] = ACTIONS(2605), - [anon_sym_u8_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [sym_true] = ACTIONS(2603), - [sym_false] = ACTIONS(2603), - [sym_null] = ACTIONS(2603), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2603), - [anon_sym_decltype] = ACTIONS(2603), - [anon_sym_virtual] = ACTIONS(2603), - [anon_sym_explicit] = ACTIONS(2603), - [anon_sym_typename] = ACTIONS(2603), - [anon_sym_template] = ACTIONS(2603), - [anon_sym_operator] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2603), - [anon_sym_delete] = ACTIONS(2603), - [anon_sym_throw] = ACTIONS(2603), - [anon_sym_namespace] = ACTIONS(2603), - [anon_sym_using] = ACTIONS(2603), - [anon_sym_static_assert] = ACTIONS(2603), - [anon_sym_concept] = ACTIONS(2603), - [anon_sym_co_return] = ACTIONS(2603), - [anon_sym_co_yield] = ACTIONS(2603), - [anon_sym_R_DQUOTE] = ACTIONS(2605), - [anon_sym_LR_DQUOTE] = ACTIONS(2605), - [anon_sym_uR_DQUOTE] = ACTIONS(2605), - [anon_sym_UR_DQUOTE] = ACTIONS(2605), - [anon_sym_u8R_DQUOTE] = ACTIONS(2605), - [anon_sym_co_await] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2603), - [anon_sym_requires] = ACTIONS(2603), - [sym_this] = ACTIONS(2603), - [sym_nullptr] = ACTIONS(2603), - }, - [599] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [600] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [601] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [602] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [603] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [604] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [605] = { - [ts_builtin_sym_end] = ACTIONS(2605), - [sym_identifier] = ACTIONS(2603), - [aux_sym_preproc_include_token1] = ACTIONS(2603), - [aux_sym_preproc_def_token1] = ACTIONS(2603), - [aux_sym_preproc_if_token1] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), - [sym_preproc_directive] = ACTIONS(2603), - [anon_sym_LPAREN2] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2603), - [anon_sym_PLUS] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2605), - [anon_sym_typedef] = ACTIONS(2603), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym___attribute__] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2605), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), - [anon_sym___declspec] = ACTIONS(2603), - [anon_sym___based] = ACTIONS(2603), - [anon_sym___cdecl] = ACTIONS(2603), - [anon_sym___clrcall] = ACTIONS(2603), - [anon_sym___stdcall] = ACTIONS(2603), - [anon_sym___fastcall] = ACTIONS(2603), - [anon_sym___thiscall] = ACTIONS(2603), - [anon_sym___vectorcall] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2603), - [anon_sym_register] = ACTIONS(2603), - [anon_sym_inline] = ACTIONS(2603), - [anon_sym_thread_local] = ACTIONS(2603), - [anon_sym_const] = ACTIONS(2603), - [anon_sym_volatile] = ACTIONS(2603), - [anon_sym_restrict] = ACTIONS(2603), - [anon_sym__Atomic] = ACTIONS(2603), - [anon_sym_mutable] = ACTIONS(2603), - [anon_sym_constexpr] = ACTIONS(2603), - [anon_sym_constinit] = ACTIONS(2603), - [anon_sym_consteval] = ACTIONS(2603), - [anon_sym_signed] = ACTIONS(2603), - [anon_sym_unsigned] = ACTIONS(2603), - [anon_sym_long] = ACTIONS(2603), - [anon_sym_short] = ACTIONS(2603), - [sym_primitive_type] = ACTIONS(2603), - [anon_sym_enum] = ACTIONS(2603), - [anon_sym_class] = ACTIONS(2603), - [anon_sym_struct] = ACTIONS(2603), - [anon_sym_union] = ACTIONS(2603), - [anon_sym_if] = ACTIONS(2603), - [anon_sym_else] = ACTIONS(2603), - [anon_sym_switch] = ACTIONS(2603), - [anon_sym_case] = ACTIONS(2603), - [anon_sym_default] = ACTIONS(2603), - [anon_sym_while] = ACTIONS(2603), - [anon_sym_do] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2603), - [anon_sym_break] = ACTIONS(2603), - [anon_sym_continue] = ACTIONS(2603), - [anon_sym_goto] = ACTIONS(2603), - [anon_sym_not] = ACTIONS(2603), - [anon_sym_compl] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2605), - [anon_sym_PLUS_PLUS] = ACTIONS(2605), - [anon_sym_sizeof] = ACTIONS(2603), - [sym_number_literal] = ACTIONS(2605), - [anon_sym_L_SQUOTE] = ACTIONS(2605), - [anon_sym_u_SQUOTE] = ACTIONS(2605), - [anon_sym_U_SQUOTE] = ACTIONS(2605), - [anon_sym_u8_SQUOTE] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(2605), - [anon_sym_L_DQUOTE] = ACTIONS(2605), - [anon_sym_u_DQUOTE] = ACTIONS(2605), - [anon_sym_U_DQUOTE] = ACTIONS(2605), - [anon_sym_u8_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [sym_true] = ACTIONS(2603), - [sym_false] = ACTIONS(2603), - [sym_null] = ACTIONS(2603), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2603), - [anon_sym_decltype] = ACTIONS(2603), - [anon_sym_virtual] = ACTIONS(2603), - [anon_sym_explicit] = ACTIONS(2603), - [anon_sym_typename] = ACTIONS(2603), - [anon_sym_template] = ACTIONS(2603), - [anon_sym_operator] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2603), - [anon_sym_delete] = ACTIONS(2603), - [anon_sym_throw] = ACTIONS(2603), - [anon_sym_namespace] = ACTIONS(2603), - [anon_sym_using] = ACTIONS(2603), - [anon_sym_static_assert] = ACTIONS(2603), - [anon_sym_concept] = ACTIONS(2603), - [anon_sym_co_return] = ACTIONS(2603), - [anon_sym_co_yield] = ACTIONS(2603), - [anon_sym_R_DQUOTE] = ACTIONS(2605), - [anon_sym_LR_DQUOTE] = ACTIONS(2605), - [anon_sym_uR_DQUOTE] = ACTIONS(2605), - [anon_sym_UR_DQUOTE] = ACTIONS(2605), - [anon_sym_u8R_DQUOTE] = ACTIONS(2605), - [anon_sym_co_await] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2603), - [anon_sym_requires] = ACTIONS(2603), - [sym_this] = ACTIONS(2603), - [sym_nullptr] = ACTIONS(2603), - }, - [606] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [607] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [608] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [609] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [610] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [611] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [612] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [613] = { - [sym_identifier] = ACTIONS(2465), - [aux_sym_preproc_include_token1] = ACTIONS(2465), - [aux_sym_preproc_def_token1] = ACTIONS(2465), - [aux_sym_preproc_if_token1] = ACTIONS(2465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2465), - [sym_preproc_directive] = ACTIONS(2465), - [anon_sym_LPAREN2] = ACTIONS(2467), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2467), - [anon_sym_AMP_AMP] = ACTIONS(2467), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_typedef] = ACTIONS(2465), - [anon_sym_extern] = ACTIONS(2465), - [anon_sym___attribute__] = ACTIONS(2465), - [anon_sym_COLON_COLON] = ACTIONS(2467), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2467), - [anon_sym___declspec] = ACTIONS(2465), - [anon_sym___based] = ACTIONS(2465), - [anon_sym___cdecl] = ACTIONS(2465), - [anon_sym___clrcall] = ACTIONS(2465), - [anon_sym___stdcall] = ACTIONS(2465), - [anon_sym___fastcall] = ACTIONS(2465), - [anon_sym___thiscall] = ACTIONS(2465), - [anon_sym___vectorcall] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_RBRACE] = ACTIONS(2467), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_static] = ACTIONS(2465), - [anon_sym_register] = ACTIONS(2465), - [anon_sym_inline] = ACTIONS(2465), - [anon_sym_thread_local] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_volatile] = ACTIONS(2465), - [anon_sym_restrict] = ACTIONS(2465), - [anon_sym__Atomic] = ACTIONS(2465), - [anon_sym_mutable] = ACTIONS(2465), - [anon_sym_constexpr] = ACTIONS(2465), - [anon_sym_constinit] = ACTIONS(2465), - [anon_sym_consteval] = ACTIONS(2465), - [anon_sym_signed] = ACTIONS(2465), - [anon_sym_unsigned] = ACTIONS(2465), - [anon_sym_long] = ACTIONS(2465), - [anon_sym_short] = ACTIONS(2465), - [sym_primitive_type] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_class] = ACTIONS(2465), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_union] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_switch] = ACTIONS(2465), - [anon_sym_case] = ACTIONS(2465), - [anon_sym_default] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_not] = ACTIONS(2465), - [anon_sym_compl] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2467), - [anon_sym_PLUS_PLUS] = ACTIONS(2467), - [anon_sym_sizeof] = ACTIONS(2465), - [sym_number_literal] = ACTIONS(2467), - [anon_sym_L_SQUOTE] = ACTIONS(2467), - [anon_sym_u_SQUOTE] = ACTIONS(2467), - [anon_sym_U_SQUOTE] = ACTIONS(2467), - [anon_sym_u8_SQUOTE] = ACTIONS(2467), - [anon_sym_SQUOTE] = ACTIONS(2467), - [anon_sym_L_DQUOTE] = ACTIONS(2467), - [anon_sym_u_DQUOTE] = ACTIONS(2467), - [anon_sym_U_DQUOTE] = ACTIONS(2467), - [anon_sym_u8_DQUOTE] = ACTIONS(2467), - [anon_sym_DQUOTE] = ACTIONS(2467), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_null] = ACTIONS(2465), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2465), - [anon_sym_decltype] = ACTIONS(2465), - [anon_sym_virtual] = ACTIONS(2465), - [anon_sym_explicit] = ACTIONS(2465), - [anon_sym_typename] = ACTIONS(2465), - [anon_sym_template] = ACTIONS(2465), - [anon_sym_operator] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_delete] = ACTIONS(2465), - [anon_sym_throw] = ACTIONS(2465), - [anon_sym_namespace] = ACTIONS(2465), - [anon_sym_using] = ACTIONS(2465), - [anon_sym_static_assert] = ACTIONS(2465), - [anon_sym_concept] = ACTIONS(2465), - [anon_sym_co_return] = ACTIONS(2465), - [anon_sym_co_yield] = ACTIONS(2465), - [anon_sym_R_DQUOTE] = ACTIONS(2467), - [anon_sym_LR_DQUOTE] = ACTIONS(2467), - [anon_sym_uR_DQUOTE] = ACTIONS(2467), - [anon_sym_UR_DQUOTE] = ACTIONS(2467), - [anon_sym_u8R_DQUOTE] = ACTIONS(2467), - [anon_sym_co_await] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_requires] = ACTIONS(2465), - [sym_this] = ACTIONS(2465), - [sym_nullptr] = ACTIONS(2465), - }, - [614] = { - [sym_identifier] = ACTIONS(2469), - [aux_sym_preproc_include_token1] = ACTIONS(2469), - [aux_sym_preproc_def_token1] = ACTIONS(2469), - [aux_sym_preproc_if_token1] = ACTIONS(2469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2469), - [sym_preproc_directive] = ACTIONS(2469), - [anon_sym_LPAREN2] = ACTIONS(2471), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_PLUS] = ACTIONS(2469), - [anon_sym_STAR] = ACTIONS(2471), - [anon_sym_AMP_AMP] = ACTIONS(2471), - [anon_sym_AMP] = ACTIONS(2469), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_typedef] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(2469), - [anon_sym___attribute__] = ACTIONS(2469), - [anon_sym_COLON_COLON] = ACTIONS(2471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2471), - [anon_sym___declspec] = ACTIONS(2469), - [anon_sym___based] = ACTIONS(2469), - [anon_sym___cdecl] = ACTIONS(2469), - [anon_sym___clrcall] = ACTIONS(2469), - [anon_sym___stdcall] = ACTIONS(2469), - [anon_sym___fastcall] = ACTIONS(2469), - [anon_sym___thiscall] = ACTIONS(2469), - [anon_sym___vectorcall] = ACTIONS(2469), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_static] = ACTIONS(2469), - [anon_sym_register] = ACTIONS(2469), - [anon_sym_inline] = ACTIONS(2469), - [anon_sym_thread_local] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [anon_sym_volatile] = ACTIONS(2469), - [anon_sym_restrict] = ACTIONS(2469), - [anon_sym__Atomic] = ACTIONS(2469), - [anon_sym_mutable] = ACTIONS(2469), - [anon_sym_constexpr] = ACTIONS(2469), - [anon_sym_constinit] = ACTIONS(2469), - [anon_sym_consteval] = ACTIONS(2469), - [anon_sym_signed] = ACTIONS(2469), - [anon_sym_unsigned] = ACTIONS(2469), - [anon_sym_long] = ACTIONS(2469), - [anon_sym_short] = ACTIONS(2469), - [sym_primitive_type] = ACTIONS(2469), - [anon_sym_enum] = ACTIONS(2469), - [anon_sym_class] = ACTIONS(2469), - [anon_sym_struct] = ACTIONS(2469), - [anon_sym_union] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_switch] = ACTIONS(2469), - [anon_sym_case] = ACTIONS(2469), - [anon_sym_default] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_goto] = ACTIONS(2469), - [anon_sym_not] = ACTIONS(2469), - [anon_sym_compl] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2471), - [anon_sym_sizeof] = ACTIONS(2469), - [sym_number_literal] = ACTIONS(2471), - [anon_sym_L_SQUOTE] = ACTIONS(2471), - [anon_sym_u_SQUOTE] = ACTIONS(2471), - [anon_sym_U_SQUOTE] = ACTIONS(2471), - [anon_sym_u8_SQUOTE] = ACTIONS(2471), - [anon_sym_SQUOTE] = ACTIONS(2471), - [anon_sym_L_DQUOTE] = ACTIONS(2471), - [anon_sym_u_DQUOTE] = ACTIONS(2471), - [anon_sym_U_DQUOTE] = ACTIONS(2471), - [anon_sym_u8_DQUOTE] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(2471), - [sym_true] = ACTIONS(2469), - [sym_false] = ACTIONS(2469), - [sym_null] = ACTIONS(2469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2469), - [anon_sym_decltype] = ACTIONS(2469), - [anon_sym_virtual] = ACTIONS(2469), - [anon_sym_explicit] = ACTIONS(2469), - [anon_sym_typename] = ACTIONS(2469), - [anon_sym_template] = ACTIONS(2469), - [anon_sym_operator] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_delete] = ACTIONS(2469), - [anon_sym_throw] = ACTIONS(2469), - [anon_sym_namespace] = ACTIONS(2469), - [anon_sym_using] = ACTIONS(2469), - [anon_sym_static_assert] = ACTIONS(2469), - [anon_sym_concept] = ACTIONS(2469), - [anon_sym_co_return] = ACTIONS(2469), - [anon_sym_co_yield] = ACTIONS(2469), - [anon_sym_R_DQUOTE] = ACTIONS(2471), - [anon_sym_LR_DQUOTE] = ACTIONS(2471), - [anon_sym_uR_DQUOTE] = ACTIONS(2471), - [anon_sym_UR_DQUOTE] = ACTIONS(2471), - [anon_sym_u8R_DQUOTE] = ACTIONS(2471), - [anon_sym_co_await] = ACTIONS(2469), - [anon_sym_new] = ACTIONS(2469), - [anon_sym_requires] = ACTIONS(2469), - [sym_this] = ACTIONS(2469), - [sym_nullptr] = ACTIONS(2469), - }, - [615] = { - [sym_identifier] = ACTIONS(2475), - [aux_sym_preproc_include_token1] = ACTIONS(2475), - [aux_sym_preproc_def_token1] = ACTIONS(2475), - [aux_sym_preproc_if_token1] = ACTIONS(2475), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2475), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2475), - [sym_preproc_directive] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_typedef] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2475), - [anon_sym___attribute__] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), - [anon_sym___declspec] = ACTIONS(2475), - [anon_sym___based] = ACTIONS(2475), - [anon_sym___cdecl] = ACTIONS(2475), - [anon_sym___clrcall] = ACTIONS(2475), - [anon_sym___stdcall] = ACTIONS(2475), - [anon_sym___fastcall] = ACTIONS(2475), - [anon_sym___thiscall] = ACTIONS(2475), - [anon_sym___vectorcall] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2475), - [anon_sym_register] = ACTIONS(2475), - [anon_sym_inline] = ACTIONS(2475), - [anon_sym_thread_local] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_volatile] = ACTIONS(2475), - [anon_sym_restrict] = ACTIONS(2475), - [anon_sym__Atomic] = ACTIONS(2475), - [anon_sym_mutable] = ACTIONS(2475), - [anon_sym_constexpr] = ACTIONS(2475), - [anon_sym_constinit] = ACTIONS(2475), - [anon_sym_consteval] = ACTIONS(2475), - [anon_sym_signed] = ACTIONS(2475), - [anon_sym_unsigned] = ACTIONS(2475), - [anon_sym_long] = ACTIONS(2475), - [anon_sym_short] = ACTIONS(2475), - [sym_primitive_type] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_class] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_switch] = ACTIONS(2475), - [anon_sym_case] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_not] = ACTIONS(2475), - [anon_sym_compl] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_sizeof] = ACTIONS(2475), - [sym_number_literal] = ACTIONS(2477), - [anon_sym_L_SQUOTE] = ACTIONS(2477), - [anon_sym_u_SQUOTE] = ACTIONS(2477), - [anon_sym_U_SQUOTE] = ACTIONS(2477), - [anon_sym_u8_SQUOTE] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2477), - [anon_sym_L_DQUOTE] = ACTIONS(2477), - [anon_sym_u_DQUOTE] = ACTIONS(2477), - [anon_sym_U_DQUOTE] = ACTIONS(2477), - [anon_sym_u8_DQUOTE] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_null] = ACTIONS(2475), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2475), - [anon_sym_decltype] = ACTIONS(2475), - [anon_sym_virtual] = ACTIONS(2475), - [anon_sym_explicit] = ACTIONS(2475), - [anon_sym_typename] = ACTIONS(2475), - [anon_sym_template] = ACTIONS(2475), - [anon_sym_operator] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_delete] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2475), - [anon_sym_namespace] = ACTIONS(2475), - [anon_sym_using] = ACTIONS(2475), - [anon_sym_static_assert] = ACTIONS(2475), - [anon_sym_concept] = ACTIONS(2475), - [anon_sym_co_return] = ACTIONS(2475), - [anon_sym_co_yield] = ACTIONS(2475), - [anon_sym_R_DQUOTE] = ACTIONS(2477), - [anon_sym_LR_DQUOTE] = ACTIONS(2477), - [anon_sym_uR_DQUOTE] = ACTIONS(2477), - [anon_sym_UR_DQUOTE] = ACTIONS(2477), - [anon_sym_u8R_DQUOTE] = ACTIONS(2477), - [anon_sym_co_await] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2475), - [anon_sym_requires] = ACTIONS(2475), - [sym_this] = ACTIONS(2475), - [sym_nullptr] = ACTIONS(2475), - }, - [616] = { - [sym_identifier] = ACTIONS(2479), - [aux_sym_preproc_include_token1] = ACTIONS(2479), - [aux_sym_preproc_def_token1] = ACTIONS(2479), - [aux_sym_preproc_if_token1] = ACTIONS(2479), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2479), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2479), - [sym_preproc_directive] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_typedef] = ACTIONS(2479), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym___attribute__] = ACTIONS(2479), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), - [anon_sym___declspec] = ACTIONS(2479), - [anon_sym___based] = ACTIONS(2479), - [anon_sym___cdecl] = ACTIONS(2479), - [anon_sym___clrcall] = ACTIONS(2479), - [anon_sym___stdcall] = ACTIONS(2479), - [anon_sym___fastcall] = ACTIONS(2479), - [anon_sym___thiscall] = ACTIONS(2479), - [anon_sym___vectorcall] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_register] = ACTIONS(2479), - [anon_sym_inline] = ACTIONS(2479), - [anon_sym_thread_local] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_volatile] = ACTIONS(2479), - [anon_sym_restrict] = ACTIONS(2479), - [anon_sym__Atomic] = ACTIONS(2479), - [anon_sym_mutable] = ACTIONS(2479), - [anon_sym_constexpr] = ACTIONS(2479), - [anon_sym_constinit] = ACTIONS(2479), - [anon_sym_consteval] = ACTIONS(2479), - [anon_sym_signed] = ACTIONS(2479), - [anon_sym_unsigned] = ACTIONS(2479), - [anon_sym_long] = ACTIONS(2479), - [anon_sym_short] = ACTIONS(2479), - [sym_primitive_type] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_class] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2479), - [anon_sym_union] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_switch] = ACTIONS(2479), - [anon_sym_case] = ACTIONS(2479), - [anon_sym_default] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_goto] = ACTIONS(2479), - [anon_sym_not] = ACTIONS(2479), - [anon_sym_compl] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_sizeof] = ACTIONS(2479), - [sym_number_literal] = ACTIONS(2481), - [anon_sym_L_SQUOTE] = ACTIONS(2481), - [anon_sym_u_SQUOTE] = ACTIONS(2481), - [anon_sym_U_SQUOTE] = ACTIONS(2481), - [anon_sym_u8_SQUOTE] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_L_DQUOTE] = ACTIONS(2481), - [anon_sym_u_DQUOTE] = ACTIONS(2481), - [anon_sym_U_DQUOTE] = ACTIONS(2481), - [anon_sym_u8_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(2481), - [sym_true] = ACTIONS(2479), - [sym_false] = ACTIONS(2479), - [sym_null] = ACTIONS(2479), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2479), - [anon_sym_decltype] = ACTIONS(2479), - [anon_sym_virtual] = ACTIONS(2479), - [anon_sym_explicit] = ACTIONS(2479), - [anon_sym_typename] = ACTIONS(2479), - [anon_sym_template] = ACTIONS(2479), - [anon_sym_operator] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_delete] = ACTIONS(2479), - [anon_sym_throw] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2479), - [anon_sym_using] = ACTIONS(2479), - [anon_sym_static_assert] = ACTIONS(2479), - [anon_sym_concept] = ACTIONS(2479), - [anon_sym_co_return] = ACTIONS(2479), - [anon_sym_co_yield] = ACTIONS(2479), - [anon_sym_R_DQUOTE] = ACTIONS(2481), - [anon_sym_LR_DQUOTE] = ACTIONS(2481), - [anon_sym_uR_DQUOTE] = ACTIONS(2481), - [anon_sym_UR_DQUOTE] = ACTIONS(2481), - [anon_sym_u8R_DQUOTE] = ACTIONS(2481), - [anon_sym_co_await] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_requires] = ACTIONS(2479), - [sym_this] = ACTIONS(2479), - [sym_nullptr] = ACTIONS(2479), - }, - [617] = { - [sym_identifier] = ACTIONS(2483), - [aux_sym_preproc_include_token1] = ACTIONS(2483), - [aux_sym_preproc_def_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), - [sym_preproc_directive] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym___based] = ACTIONS(2483), - [anon_sym___cdecl] = ACTIONS(2483), - [anon_sym___clrcall] = ACTIONS(2483), - [anon_sym___stdcall] = ACTIONS(2483), - [anon_sym___fastcall] = ACTIONS(2483), - [anon_sym___thiscall] = ACTIONS(2483), - [anon_sym___vectorcall] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym_not] = ACTIONS(2483), - [anon_sym_compl] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_sizeof] = ACTIONS(2483), - [sym_number_literal] = ACTIONS(2485), - [anon_sym_L_SQUOTE] = ACTIONS(2485), - [anon_sym_u_SQUOTE] = ACTIONS(2485), - [anon_sym_U_SQUOTE] = ACTIONS(2485), - [anon_sym_u8_SQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_L_DQUOTE] = ACTIONS(2485), - [anon_sym_u_DQUOTE] = ACTIONS(2485), - [anon_sym_U_DQUOTE] = ACTIONS(2485), - [anon_sym_u8_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [sym_null] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_explicit] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_operator] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_static_assert] = ACTIONS(2483), - [anon_sym_concept] = ACTIONS(2483), - [anon_sym_co_return] = ACTIONS(2483), - [anon_sym_co_yield] = ACTIONS(2483), - [anon_sym_R_DQUOTE] = ACTIONS(2485), - [anon_sym_LR_DQUOTE] = ACTIONS(2485), - [anon_sym_uR_DQUOTE] = ACTIONS(2485), - [anon_sym_UR_DQUOTE] = ACTIONS(2485), - [anon_sym_u8R_DQUOTE] = ACTIONS(2485), - [anon_sym_co_await] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_requires] = ACTIONS(2483), - [sym_this] = ACTIONS(2483), - [sym_nullptr] = ACTIONS(2483), - }, - [618] = { - [sym_identifier] = ACTIONS(2487), - [aux_sym_preproc_include_token1] = ACTIONS(2487), - [aux_sym_preproc_def_token1] = ACTIONS(2487), - [aux_sym_preproc_if_token1] = ACTIONS(2487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2487), - [sym_preproc_directive] = ACTIONS(2487), - [anon_sym_LPAREN2] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_AMP_AMP] = ACTIONS(2489), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2489), - [anon_sym_typedef] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym___attribute__] = ACTIONS(2487), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), - [anon_sym___declspec] = ACTIONS(2487), - [anon_sym___based] = ACTIONS(2487), - [anon_sym___cdecl] = ACTIONS(2487), - [anon_sym___clrcall] = ACTIONS(2487), - [anon_sym___stdcall] = ACTIONS(2487), - [anon_sym___fastcall] = ACTIONS(2487), - [anon_sym___thiscall] = ACTIONS(2487), - [anon_sym___vectorcall] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_register] = ACTIONS(2487), - [anon_sym_inline] = ACTIONS(2487), - [anon_sym_thread_local] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_volatile] = ACTIONS(2487), - [anon_sym_restrict] = ACTIONS(2487), - [anon_sym__Atomic] = ACTIONS(2487), - [anon_sym_mutable] = ACTIONS(2487), - [anon_sym_constexpr] = ACTIONS(2487), - [anon_sym_constinit] = ACTIONS(2487), - [anon_sym_consteval] = ACTIONS(2487), - [anon_sym_signed] = ACTIONS(2487), - [anon_sym_unsigned] = ACTIONS(2487), - [anon_sym_long] = ACTIONS(2487), - [anon_sym_short] = ACTIONS(2487), - [sym_primitive_type] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(2487), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_switch] = ACTIONS(2487), - [anon_sym_case] = ACTIONS(2487), - [anon_sym_default] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_goto] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2489), - [anon_sym_PLUS_PLUS] = ACTIONS(2489), - [anon_sym_sizeof] = ACTIONS(2487), - [sym_number_literal] = ACTIONS(2489), - [anon_sym_L_SQUOTE] = ACTIONS(2489), - [anon_sym_u_SQUOTE] = ACTIONS(2489), - [anon_sym_U_SQUOTE] = ACTIONS(2489), - [anon_sym_u8_SQUOTE] = ACTIONS(2489), - [anon_sym_SQUOTE] = ACTIONS(2489), - [anon_sym_L_DQUOTE] = ACTIONS(2489), - [anon_sym_u_DQUOTE] = ACTIONS(2489), - [anon_sym_U_DQUOTE] = ACTIONS(2489), - [anon_sym_u8_DQUOTE] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_null] = ACTIONS(2487), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2487), - [anon_sym_decltype] = ACTIONS(2487), - [anon_sym_virtual] = ACTIONS(2487), - [anon_sym_explicit] = ACTIONS(2487), - [anon_sym_typename] = ACTIONS(2487), - [anon_sym_template] = ACTIONS(2487), - [anon_sym_operator] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_delete] = ACTIONS(2487), - [anon_sym_throw] = ACTIONS(2487), - [anon_sym_namespace] = ACTIONS(2487), - [anon_sym_using] = ACTIONS(2487), - [anon_sym_static_assert] = ACTIONS(2487), - [anon_sym_concept] = ACTIONS(2487), - [anon_sym_co_return] = ACTIONS(2487), - [anon_sym_co_yield] = ACTIONS(2487), - [anon_sym_R_DQUOTE] = ACTIONS(2489), - [anon_sym_LR_DQUOTE] = ACTIONS(2489), - [anon_sym_uR_DQUOTE] = ACTIONS(2489), - [anon_sym_UR_DQUOTE] = ACTIONS(2489), - [anon_sym_u8R_DQUOTE] = ACTIONS(2489), - [anon_sym_co_await] = ACTIONS(2487), - [anon_sym_new] = ACTIONS(2487), - [anon_sym_requires] = ACTIONS(2487), - [sym_this] = ACTIONS(2487), - [sym_nullptr] = ACTIONS(2487), - }, - [619] = { - [sym_identifier] = ACTIONS(2491), - [aux_sym_preproc_include_token1] = ACTIONS(2491), - [aux_sym_preproc_def_token1] = ACTIONS(2491), - [aux_sym_preproc_if_token1] = ACTIONS(2491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), - [sym_preproc_directive] = ACTIONS(2491), - [anon_sym_LPAREN2] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_AMP_AMP] = ACTIONS(2493), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_typedef] = ACTIONS(2491), - [anon_sym_extern] = ACTIONS(2491), - [anon_sym___attribute__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), - [anon_sym___declspec] = ACTIONS(2491), - [anon_sym___based] = ACTIONS(2491), - [anon_sym___cdecl] = ACTIONS(2491), - [anon_sym___clrcall] = ACTIONS(2491), - [anon_sym___stdcall] = ACTIONS(2491), - [anon_sym___fastcall] = ACTIONS(2491), - [anon_sym___thiscall] = ACTIONS(2491), - [anon_sym___vectorcall] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_RBRACE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2491), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_register] = ACTIONS(2491), - [anon_sym_inline] = ACTIONS(2491), - [anon_sym_thread_local] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [anon_sym_volatile] = ACTIONS(2491), - [anon_sym_restrict] = ACTIONS(2491), - [anon_sym__Atomic] = ACTIONS(2491), - [anon_sym_mutable] = ACTIONS(2491), - [anon_sym_constexpr] = ACTIONS(2491), - [anon_sym_constinit] = ACTIONS(2491), - [anon_sym_consteval] = ACTIONS(2491), - [anon_sym_signed] = ACTIONS(2491), - [anon_sym_unsigned] = ACTIONS(2491), - [anon_sym_long] = ACTIONS(2491), - [anon_sym_short] = ACTIONS(2491), - [sym_primitive_type] = ACTIONS(2491), - [anon_sym_enum] = ACTIONS(2491), - [anon_sym_class] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2491), - [anon_sym_union] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_else] = ACTIONS(2491), - [anon_sym_switch] = ACTIONS(2491), - [anon_sym_case] = ACTIONS(2491), - [anon_sym_default] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_do] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_goto] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(2493), - [anon_sym_PLUS_PLUS] = ACTIONS(2493), - [anon_sym_sizeof] = ACTIONS(2491), - [sym_number_literal] = ACTIONS(2493), - [anon_sym_L_SQUOTE] = ACTIONS(2493), - [anon_sym_u_SQUOTE] = ACTIONS(2493), - [anon_sym_U_SQUOTE] = ACTIONS(2493), - [anon_sym_u8_SQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_L_DQUOTE] = ACTIONS(2493), - [anon_sym_u_DQUOTE] = ACTIONS(2493), - [anon_sym_U_DQUOTE] = ACTIONS(2493), - [anon_sym_u8_DQUOTE] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym_true] = ACTIONS(2491), - [sym_false] = ACTIONS(2491), - [sym_null] = ACTIONS(2491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2491), - [anon_sym_decltype] = ACTIONS(2491), - [anon_sym_virtual] = ACTIONS(2491), - [anon_sym_explicit] = ACTIONS(2491), - [anon_sym_typename] = ACTIONS(2491), - [anon_sym_template] = ACTIONS(2491), - [anon_sym_operator] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2491), - [anon_sym_delete] = ACTIONS(2491), - [anon_sym_throw] = ACTIONS(2491), - [anon_sym_namespace] = ACTIONS(2491), - [anon_sym_using] = ACTIONS(2491), - [anon_sym_static_assert] = ACTIONS(2491), - [anon_sym_concept] = ACTIONS(2491), - [anon_sym_co_return] = ACTIONS(2491), - [anon_sym_co_yield] = ACTIONS(2491), - [anon_sym_R_DQUOTE] = ACTIONS(2493), - [anon_sym_LR_DQUOTE] = ACTIONS(2493), - [anon_sym_uR_DQUOTE] = ACTIONS(2493), - [anon_sym_UR_DQUOTE] = ACTIONS(2493), - [anon_sym_u8R_DQUOTE] = ACTIONS(2493), - [anon_sym_co_await] = ACTIONS(2491), - [anon_sym_new] = ACTIONS(2491), - [anon_sym_requires] = ACTIONS(2491), - [sym_this] = ACTIONS(2491), - [sym_nullptr] = ACTIONS(2491), - }, - [620] = { - [sym_identifier] = ACTIONS(2495), - [aux_sym_preproc_include_token1] = ACTIONS(2495), - [aux_sym_preproc_def_token1] = ACTIONS(2495), - [aux_sym_preproc_if_token1] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2495), - [sym_preproc_directive] = ACTIONS(2495), - [anon_sym_LPAREN2] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2495), - [anon_sym_PLUS] = ACTIONS(2495), - [anon_sym_STAR] = ACTIONS(2497), - [anon_sym_AMP_AMP] = ACTIONS(2497), - [anon_sym_AMP] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2497), - [anon_sym_typedef] = ACTIONS(2495), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym___attribute__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), - [anon_sym___declspec] = ACTIONS(2495), - [anon_sym___based] = ACTIONS(2495), - [anon_sym___cdecl] = ACTIONS(2495), - [anon_sym___clrcall] = ACTIONS(2495), - [anon_sym___stdcall] = ACTIONS(2495), - [anon_sym___fastcall] = ACTIONS(2495), - [anon_sym___thiscall] = ACTIONS(2495), - [anon_sym___vectorcall] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2495), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_register] = ACTIONS(2495), - [anon_sym_inline] = ACTIONS(2495), - [anon_sym_thread_local] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_volatile] = ACTIONS(2495), - [anon_sym_restrict] = ACTIONS(2495), - [anon_sym__Atomic] = ACTIONS(2495), - [anon_sym_mutable] = ACTIONS(2495), - [anon_sym_constexpr] = ACTIONS(2495), - [anon_sym_constinit] = ACTIONS(2495), - [anon_sym_consteval] = ACTIONS(2495), - [anon_sym_signed] = ACTIONS(2495), - [anon_sym_unsigned] = ACTIONS(2495), - [anon_sym_long] = ACTIONS(2495), - [anon_sym_short] = ACTIONS(2495), - [sym_primitive_type] = ACTIONS(2495), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_if] = ACTIONS(2495), - [anon_sym_else] = ACTIONS(2495), - [anon_sym_switch] = ACTIONS(2495), - [anon_sym_case] = ACTIONS(2495), - [anon_sym_default] = ACTIONS(2495), - [anon_sym_while] = ACTIONS(2495), - [anon_sym_do] = ACTIONS(2495), - [anon_sym_for] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2495), - [anon_sym_break] = ACTIONS(2495), - [anon_sym_continue] = ACTIONS(2495), - [anon_sym_goto] = ACTIONS(2495), - [anon_sym_not] = ACTIONS(2495), - [anon_sym_compl] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2497), - [anon_sym_sizeof] = ACTIONS(2495), - [sym_number_literal] = ACTIONS(2497), - [anon_sym_L_SQUOTE] = ACTIONS(2497), - [anon_sym_u_SQUOTE] = ACTIONS(2497), - [anon_sym_U_SQUOTE] = ACTIONS(2497), - [anon_sym_u8_SQUOTE] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2497), - [anon_sym_L_DQUOTE] = ACTIONS(2497), - [anon_sym_u_DQUOTE] = ACTIONS(2497), - [anon_sym_U_DQUOTE] = ACTIONS(2497), - [anon_sym_u8_DQUOTE] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym_true] = ACTIONS(2495), - [sym_false] = ACTIONS(2495), - [sym_null] = ACTIONS(2495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2495), - [anon_sym_decltype] = ACTIONS(2495), - [anon_sym_virtual] = ACTIONS(2495), - [anon_sym_explicit] = ACTIONS(2495), - [anon_sym_typename] = ACTIONS(2495), - [anon_sym_template] = ACTIONS(2495), - [anon_sym_operator] = ACTIONS(2495), - [anon_sym_try] = ACTIONS(2495), - [anon_sym_delete] = ACTIONS(2495), - [anon_sym_throw] = ACTIONS(2495), - [anon_sym_namespace] = ACTIONS(2495), - [anon_sym_using] = ACTIONS(2495), - [anon_sym_static_assert] = ACTIONS(2495), - [anon_sym_concept] = ACTIONS(2495), - [anon_sym_co_return] = ACTIONS(2495), - [anon_sym_co_yield] = ACTIONS(2495), - [anon_sym_R_DQUOTE] = ACTIONS(2497), - [anon_sym_LR_DQUOTE] = ACTIONS(2497), - [anon_sym_uR_DQUOTE] = ACTIONS(2497), - [anon_sym_UR_DQUOTE] = ACTIONS(2497), - [anon_sym_u8R_DQUOTE] = ACTIONS(2497), - [anon_sym_co_await] = ACTIONS(2495), - [anon_sym_new] = ACTIONS(2495), - [anon_sym_requires] = ACTIONS(2495), - [sym_this] = ACTIONS(2495), - [sym_nullptr] = ACTIONS(2495), - }, - [621] = { - [sym_identifier] = ACTIONS(2499), - [aux_sym_preproc_include_token1] = ACTIONS(2499), - [aux_sym_preproc_def_token1] = ACTIONS(2499), - [aux_sym_preproc_if_token1] = ACTIONS(2499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), - [sym_preproc_directive] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2499), - [anon_sym_PLUS] = ACTIONS(2499), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_AMP_AMP] = ACTIONS(2501), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_typedef] = ACTIONS(2499), - [anon_sym_extern] = ACTIONS(2499), - [anon_sym___attribute__] = ACTIONS(2499), - [anon_sym_COLON_COLON] = ACTIONS(2501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), - [anon_sym___declspec] = ACTIONS(2499), - [anon_sym___based] = ACTIONS(2499), - [anon_sym___cdecl] = ACTIONS(2499), - [anon_sym___clrcall] = ACTIONS(2499), - [anon_sym___stdcall] = ACTIONS(2499), - [anon_sym___fastcall] = ACTIONS(2499), - [anon_sym___thiscall] = ACTIONS(2499), - [anon_sym___vectorcall] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2499), - [anon_sym_register] = ACTIONS(2499), - [anon_sym_inline] = ACTIONS(2499), - [anon_sym_thread_local] = ACTIONS(2499), - [anon_sym_const] = ACTIONS(2499), - [anon_sym_volatile] = ACTIONS(2499), - [anon_sym_restrict] = ACTIONS(2499), - [anon_sym__Atomic] = ACTIONS(2499), - [anon_sym_mutable] = ACTIONS(2499), - [anon_sym_constexpr] = ACTIONS(2499), - [anon_sym_constinit] = ACTIONS(2499), - [anon_sym_consteval] = ACTIONS(2499), - [anon_sym_signed] = ACTIONS(2499), - [anon_sym_unsigned] = ACTIONS(2499), - [anon_sym_long] = ACTIONS(2499), - [anon_sym_short] = ACTIONS(2499), - [sym_primitive_type] = ACTIONS(2499), - [anon_sym_enum] = ACTIONS(2499), - [anon_sym_class] = ACTIONS(2499), - [anon_sym_struct] = ACTIONS(2499), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2499), - [anon_sym_else] = ACTIONS(2499), - [anon_sym_switch] = ACTIONS(2499), - [anon_sym_case] = ACTIONS(2499), - [anon_sym_default] = ACTIONS(2499), - [anon_sym_while] = ACTIONS(2499), - [anon_sym_do] = ACTIONS(2499), - [anon_sym_for] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2499), - [anon_sym_break] = ACTIONS(2499), - [anon_sym_continue] = ACTIONS(2499), - [anon_sym_goto] = ACTIONS(2499), - [anon_sym_not] = ACTIONS(2499), - [anon_sym_compl] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2501), - [anon_sym_sizeof] = ACTIONS(2499), - [sym_number_literal] = ACTIONS(2501), - [anon_sym_L_SQUOTE] = ACTIONS(2501), - [anon_sym_u_SQUOTE] = ACTIONS(2501), - [anon_sym_U_SQUOTE] = ACTIONS(2501), - [anon_sym_u8_SQUOTE] = ACTIONS(2501), - [anon_sym_SQUOTE] = ACTIONS(2501), - [anon_sym_L_DQUOTE] = ACTIONS(2501), - [anon_sym_u_DQUOTE] = ACTIONS(2501), - [anon_sym_U_DQUOTE] = ACTIONS(2501), - [anon_sym_u8_DQUOTE] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym_true] = ACTIONS(2499), - [sym_false] = ACTIONS(2499), - [sym_null] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2499), - [anon_sym_decltype] = ACTIONS(2499), - [anon_sym_virtual] = ACTIONS(2499), - [anon_sym_explicit] = ACTIONS(2499), - [anon_sym_typename] = ACTIONS(2499), - [anon_sym_template] = ACTIONS(2499), - [anon_sym_operator] = ACTIONS(2499), - [anon_sym_try] = ACTIONS(2499), - [anon_sym_delete] = ACTIONS(2499), - [anon_sym_throw] = ACTIONS(2499), - [anon_sym_namespace] = ACTIONS(2499), - [anon_sym_using] = ACTIONS(2499), - [anon_sym_static_assert] = ACTIONS(2499), - [anon_sym_concept] = ACTIONS(2499), - [anon_sym_co_return] = ACTIONS(2499), - [anon_sym_co_yield] = ACTIONS(2499), - [anon_sym_R_DQUOTE] = ACTIONS(2501), - [anon_sym_LR_DQUOTE] = ACTIONS(2501), - [anon_sym_uR_DQUOTE] = ACTIONS(2501), - [anon_sym_UR_DQUOTE] = ACTIONS(2501), - [anon_sym_u8R_DQUOTE] = ACTIONS(2501), - [anon_sym_co_await] = ACTIONS(2499), - [anon_sym_new] = ACTIONS(2499), - [anon_sym_requires] = ACTIONS(2499), - [sym_this] = ACTIONS(2499), - [sym_nullptr] = ACTIONS(2499), - }, - [622] = { - [sym_identifier] = ACTIONS(2503), - [aux_sym_preproc_include_token1] = ACTIONS(2503), - [aux_sym_preproc_def_token1] = ACTIONS(2503), - [aux_sym_preproc_if_token1] = ACTIONS(2503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), - [sym_preproc_directive] = ACTIONS(2503), - [anon_sym_LPAREN2] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_AMP_AMP] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_typedef] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2503), - [anon_sym___attribute__] = ACTIONS(2503), - [anon_sym_COLON_COLON] = ACTIONS(2505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), - [anon_sym___declspec] = ACTIONS(2503), - [anon_sym___based] = ACTIONS(2503), - [anon_sym___cdecl] = ACTIONS(2503), - [anon_sym___clrcall] = ACTIONS(2503), - [anon_sym___stdcall] = ACTIONS(2503), - [anon_sym___fastcall] = ACTIONS(2503), - [anon_sym___thiscall] = ACTIONS(2503), - [anon_sym___vectorcall] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2503), - [anon_sym_register] = ACTIONS(2503), - [anon_sym_inline] = ACTIONS(2503), - [anon_sym_thread_local] = ACTIONS(2503), - [anon_sym_const] = ACTIONS(2503), - [anon_sym_volatile] = ACTIONS(2503), - [anon_sym_restrict] = ACTIONS(2503), - [anon_sym__Atomic] = ACTIONS(2503), - [anon_sym_mutable] = ACTIONS(2503), - [anon_sym_constexpr] = ACTIONS(2503), - [anon_sym_constinit] = ACTIONS(2503), - [anon_sym_consteval] = ACTIONS(2503), - [anon_sym_signed] = ACTIONS(2503), - [anon_sym_unsigned] = ACTIONS(2503), - [anon_sym_long] = ACTIONS(2503), - [anon_sym_short] = ACTIONS(2503), - [sym_primitive_type] = ACTIONS(2503), - [anon_sym_enum] = ACTIONS(2503), - [anon_sym_class] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2503), - [anon_sym_union] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2503), - [anon_sym_else] = ACTIONS(2503), - [anon_sym_switch] = ACTIONS(2503), - [anon_sym_case] = ACTIONS(2503), - [anon_sym_default] = ACTIONS(2503), - [anon_sym_while] = ACTIONS(2503), - [anon_sym_do] = ACTIONS(2503), - [anon_sym_for] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2503), - [anon_sym_break] = ACTIONS(2503), - [anon_sym_continue] = ACTIONS(2503), - [anon_sym_goto] = ACTIONS(2503), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_sizeof] = ACTIONS(2503), - [sym_number_literal] = ACTIONS(2505), - [anon_sym_L_SQUOTE] = ACTIONS(2505), - [anon_sym_u_SQUOTE] = ACTIONS(2505), - [anon_sym_U_SQUOTE] = ACTIONS(2505), - [anon_sym_u8_SQUOTE] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2505), - [anon_sym_L_DQUOTE] = ACTIONS(2505), - [anon_sym_u_DQUOTE] = ACTIONS(2505), - [anon_sym_U_DQUOTE] = ACTIONS(2505), - [anon_sym_u8_DQUOTE] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [sym_true] = ACTIONS(2503), - [sym_false] = ACTIONS(2503), - [sym_null] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2503), - [anon_sym_decltype] = ACTIONS(2503), - [anon_sym_virtual] = ACTIONS(2503), - [anon_sym_explicit] = ACTIONS(2503), - [anon_sym_typename] = ACTIONS(2503), - [anon_sym_template] = ACTIONS(2503), - [anon_sym_operator] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2503), - [anon_sym_delete] = ACTIONS(2503), - [anon_sym_throw] = ACTIONS(2503), - [anon_sym_namespace] = ACTIONS(2503), - [anon_sym_using] = ACTIONS(2503), - [anon_sym_static_assert] = ACTIONS(2503), - [anon_sym_concept] = ACTIONS(2503), - [anon_sym_co_return] = ACTIONS(2503), - [anon_sym_co_yield] = ACTIONS(2503), - [anon_sym_R_DQUOTE] = ACTIONS(2505), - [anon_sym_LR_DQUOTE] = ACTIONS(2505), - [anon_sym_uR_DQUOTE] = ACTIONS(2505), - [anon_sym_UR_DQUOTE] = ACTIONS(2505), - [anon_sym_u8R_DQUOTE] = ACTIONS(2505), - [anon_sym_co_await] = ACTIONS(2503), - [anon_sym_new] = ACTIONS(2503), - [anon_sym_requires] = ACTIONS(2503), - [sym_this] = ACTIONS(2503), - [sym_nullptr] = ACTIONS(2503), - }, - [623] = { - [sym_identifier] = ACTIONS(2643), - [aux_sym_preproc_include_token1] = ACTIONS(2643), - [aux_sym_preproc_def_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token2] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), - [sym_preproc_directive] = ACTIONS(2643), - [anon_sym_LPAREN2] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_AMP_AMP] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_typedef] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym___attribute__] = ACTIONS(2643), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), - [anon_sym___declspec] = ACTIONS(2643), - [anon_sym___based] = ACTIONS(2643), - [anon_sym___cdecl] = ACTIONS(2643), - [anon_sym___clrcall] = ACTIONS(2643), - [anon_sym___stdcall] = ACTIONS(2643), - [anon_sym___fastcall] = ACTIONS(2643), - [anon_sym___thiscall] = ACTIONS(2643), - [anon_sym___vectorcall] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_register] = ACTIONS(2643), - [anon_sym_inline] = ACTIONS(2643), - [anon_sym_thread_local] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_volatile] = ACTIONS(2643), - [anon_sym_restrict] = ACTIONS(2643), - [anon_sym__Atomic] = ACTIONS(2643), - [anon_sym_mutable] = ACTIONS(2643), - [anon_sym_constexpr] = ACTIONS(2643), - [anon_sym_constinit] = ACTIONS(2643), - [anon_sym_consteval] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2643), - [anon_sym_unsigned] = ACTIONS(2643), - [anon_sym_long] = ACTIONS(2643), - [anon_sym_short] = ACTIONS(2643), - [sym_primitive_type] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_else] = ACTIONS(2849), - [anon_sym_switch] = ACTIONS(2643), - [anon_sym_case] = ACTIONS(2643), - [anon_sym_default] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym_not] = ACTIONS(2643), - [anon_sym_compl] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2643), - [sym_number_literal] = ACTIONS(2645), - [anon_sym_L_SQUOTE] = ACTIONS(2645), - [anon_sym_u_SQUOTE] = ACTIONS(2645), - [anon_sym_U_SQUOTE] = ACTIONS(2645), - [anon_sym_u8_SQUOTE] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2645), - [anon_sym_L_DQUOTE] = ACTIONS(2645), - [anon_sym_u_DQUOTE] = ACTIONS(2645), - [anon_sym_U_DQUOTE] = ACTIONS(2645), - [anon_sym_u8_DQUOTE] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2645), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_null] = ACTIONS(2643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2643), - [anon_sym_decltype] = ACTIONS(2643), - [anon_sym_virtual] = ACTIONS(2643), - [anon_sym_explicit] = ACTIONS(2643), - [anon_sym_typename] = ACTIONS(2643), - [anon_sym_template] = ACTIONS(2643), - [anon_sym_operator] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2643), - [anon_sym_delete] = ACTIONS(2643), - [anon_sym_throw] = ACTIONS(2643), - [anon_sym_namespace] = ACTIONS(2643), - [anon_sym_using] = ACTIONS(2643), - [anon_sym_static_assert] = ACTIONS(2643), - [anon_sym_concept] = ACTIONS(2643), - [anon_sym_co_return] = ACTIONS(2643), - [anon_sym_co_yield] = ACTIONS(2643), - [anon_sym_R_DQUOTE] = ACTIONS(2645), - [anon_sym_LR_DQUOTE] = ACTIONS(2645), - [anon_sym_uR_DQUOTE] = ACTIONS(2645), - [anon_sym_UR_DQUOTE] = ACTIONS(2645), - [anon_sym_u8R_DQUOTE] = ACTIONS(2645), - [anon_sym_co_await] = ACTIONS(2643), - [anon_sym_new] = ACTIONS(2643), - [anon_sym_requires] = ACTIONS(2643), - [sym_this] = ACTIONS(2643), - [sym_nullptr] = ACTIONS(2643), - }, - [624] = { - [sym_identifier] = ACTIONS(2639), - [aux_sym_preproc_include_token1] = ACTIONS(2639), - [aux_sym_preproc_def_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token2] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), - [sym_preproc_directive] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2639), - [anon_sym_PLUS] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym___based] = ACTIONS(2639), - [anon_sym___cdecl] = ACTIONS(2639), - [anon_sym___clrcall] = ACTIONS(2639), - [anon_sym___stdcall] = ACTIONS(2639), - [anon_sym___fastcall] = ACTIONS(2639), - [anon_sym___thiscall] = ACTIONS(2639), - [anon_sym___vectorcall] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_else] = ACTIONS(2639), - [anon_sym_switch] = ACTIONS(2639), - [anon_sym_case] = ACTIONS(2639), - [anon_sym_default] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_do] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_goto] = ACTIONS(2639), - [anon_sym_not] = ACTIONS(2639), - [anon_sym_compl] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_sizeof] = ACTIONS(2639), - [sym_number_literal] = ACTIONS(2641), - [anon_sym_L_SQUOTE] = ACTIONS(2641), - [anon_sym_u_SQUOTE] = ACTIONS(2641), - [anon_sym_U_SQUOTE] = ACTIONS(2641), - [anon_sym_u8_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_L_DQUOTE] = ACTIONS(2641), - [anon_sym_u_DQUOTE] = ACTIONS(2641), - [anon_sym_U_DQUOTE] = ACTIONS(2641), - [anon_sym_u8_DQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_true] = ACTIONS(2639), - [sym_false] = ACTIONS(2639), - [sym_null] = ACTIONS(2639), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_explicit] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_operator] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [anon_sym_delete] = ACTIONS(2639), - [anon_sym_throw] = ACTIONS(2639), - [anon_sym_namespace] = ACTIONS(2639), - [anon_sym_using] = ACTIONS(2639), - [anon_sym_static_assert] = ACTIONS(2639), - [anon_sym_concept] = ACTIONS(2639), - [anon_sym_co_return] = ACTIONS(2639), - [anon_sym_co_yield] = ACTIONS(2639), - [anon_sym_R_DQUOTE] = ACTIONS(2641), - [anon_sym_LR_DQUOTE] = ACTIONS(2641), - [anon_sym_uR_DQUOTE] = ACTIONS(2641), - [anon_sym_UR_DQUOTE] = ACTIONS(2641), - [anon_sym_u8R_DQUOTE] = ACTIONS(2641), - [anon_sym_co_await] = ACTIONS(2639), - [anon_sym_new] = ACTIONS(2639), - [anon_sym_requires] = ACTIONS(2639), - [sym_this] = ACTIONS(2639), - [sym_nullptr] = ACTIONS(2639), - }, - [625] = { - [sym_identifier] = ACTIONS(2507), - [aux_sym_preproc_include_token1] = ACTIONS(2507), - [aux_sym_preproc_def_token1] = ACTIONS(2507), - [aux_sym_preproc_if_token1] = ACTIONS(2507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2507), - [sym_preproc_directive] = ACTIONS(2507), - [anon_sym_LPAREN2] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_AMP_AMP] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_typedef] = ACTIONS(2507), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym___attribute__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), - [anon_sym___declspec] = ACTIONS(2507), - [anon_sym___based] = ACTIONS(2507), - [anon_sym___cdecl] = ACTIONS(2507), - [anon_sym___clrcall] = ACTIONS(2507), - [anon_sym___stdcall] = ACTIONS(2507), - [anon_sym___fastcall] = ACTIONS(2507), - [anon_sym___thiscall] = ACTIONS(2507), - [anon_sym___vectorcall] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2507), - [anon_sym_register] = ACTIONS(2507), - [anon_sym_inline] = ACTIONS(2507), - [anon_sym_thread_local] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_volatile] = ACTIONS(2507), - [anon_sym_restrict] = ACTIONS(2507), - [anon_sym__Atomic] = ACTIONS(2507), - [anon_sym_mutable] = ACTIONS(2507), - [anon_sym_constexpr] = ACTIONS(2507), - [anon_sym_constinit] = ACTIONS(2507), - [anon_sym_consteval] = ACTIONS(2507), - [anon_sym_signed] = ACTIONS(2507), - [anon_sym_unsigned] = ACTIONS(2507), - [anon_sym_long] = ACTIONS(2507), - [anon_sym_short] = ACTIONS(2507), - [sym_primitive_type] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_class] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_else] = ACTIONS(2507), - [anon_sym_switch] = ACTIONS(2507), - [anon_sym_case] = ACTIONS(2507), - [anon_sym_default] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_do] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_not] = ACTIONS(2507), - [anon_sym_compl] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2509), - [anon_sym_sizeof] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2509), - [anon_sym_u_SQUOTE] = ACTIONS(2509), - [anon_sym_U_SQUOTE] = ACTIONS(2509), - [anon_sym_u8_SQUOTE] = ACTIONS(2509), - [anon_sym_SQUOTE] = ACTIONS(2509), - [anon_sym_L_DQUOTE] = ACTIONS(2509), - [anon_sym_u_DQUOTE] = ACTIONS(2509), - [anon_sym_U_DQUOTE] = ACTIONS(2509), - [anon_sym_u8_DQUOTE] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(2509), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_null] = ACTIONS(2507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2507), - [anon_sym_decltype] = ACTIONS(2507), - [anon_sym_virtual] = ACTIONS(2507), - [anon_sym_explicit] = ACTIONS(2507), - [anon_sym_typename] = ACTIONS(2507), - [anon_sym_template] = ACTIONS(2507), - [anon_sym_operator] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2507), - [anon_sym_delete] = ACTIONS(2507), - [anon_sym_throw] = ACTIONS(2507), - [anon_sym_namespace] = ACTIONS(2507), - [anon_sym_using] = ACTIONS(2507), - [anon_sym_static_assert] = ACTIONS(2507), - [anon_sym_concept] = ACTIONS(2507), - [anon_sym_co_return] = ACTIONS(2507), - [anon_sym_co_yield] = ACTIONS(2507), - [anon_sym_R_DQUOTE] = ACTIONS(2509), - [anon_sym_LR_DQUOTE] = ACTIONS(2509), - [anon_sym_uR_DQUOTE] = ACTIONS(2509), - [anon_sym_UR_DQUOTE] = ACTIONS(2509), - [anon_sym_u8R_DQUOTE] = ACTIONS(2509), - [anon_sym_co_await] = ACTIONS(2507), - [anon_sym_new] = ACTIONS(2507), - [anon_sym_requires] = ACTIONS(2507), - [sym_this] = ACTIONS(2507), - [sym_nullptr] = ACTIONS(2507), - }, - [626] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [627] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [628] = { [sym_identifier] = ACTIONS(2519), [aux_sym_preproc_include_token1] = ACTIONS(2519), [aux_sym_preproc_def_token1] = ACTIONS(2519), [aux_sym_preproc_if_token1] = ACTIONS(2519), + [aux_sym_preproc_if_token2] = ACTIONS(2519), [aux_sym_preproc_ifdef_token1] = ACTIONS(2519), [aux_sym_preproc_ifdef_token2] = ACTIONS(2519), + [aux_sym_preproc_else_token1] = ACTIONS(2519), + [aux_sym_preproc_elif_token1] = ACTIONS(2519), [sym_preproc_directive] = ACTIONS(2519), [anon_sym_LPAREN2] = ACTIONS(2521), [anon_sym_BANG] = ACTIONS(2521), @@ -109199,12 +85770,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2519), [anon_sym___vectorcall] = ACTIONS(2519), [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_RBRACE] = ACTIONS(2521), [anon_sym_LBRACK] = ACTIONS(2519), [anon_sym_static] = ACTIONS(2519), [anon_sym_register] = ACTIONS(2519), [anon_sym_inline] = ACTIONS(2519), [anon_sym_thread_local] = ACTIONS(2519), + [anon_sym_input] = ACTIONS(2519), [anon_sym_const] = ACTIONS(2519), [anon_sym_volatile] = ACTIONS(2519), [anon_sym_restrict] = ACTIONS(2519), @@ -109281,1030 +85852,3148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2519), [sym_nullptr] = ACTIONS(2519), }, - [629] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [421] = { + [sym_identifier] = ACTIONS(2523), + [aux_sym_preproc_include_token1] = ACTIONS(2523), + [aux_sym_preproc_def_token1] = ACTIONS(2523), + [aux_sym_preproc_if_token1] = ACTIONS(2523), + [aux_sym_preproc_if_token2] = ACTIONS(2523), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2523), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2523), + [aux_sym_preproc_else_token1] = ACTIONS(2523), + [aux_sym_preproc_elif_token1] = ACTIONS(2523), + [sym_preproc_directive] = ACTIONS(2523), + [anon_sym_LPAREN2] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_AMP_AMP] = ACTIONS(2525), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_typedef] = ACTIONS(2523), + [anon_sym_extern] = ACTIONS(2523), + [anon_sym___attribute__] = ACTIONS(2523), + [anon_sym_COLON_COLON] = ACTIONS(2525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2525), + [anon_sym___declspec] = ACTIONS(2523), + [anon_sym___based] = ACTIONS(2523), + [anon_sym___cdecl] = ACTIONS(2523), + [anon_sym___clrcall] = ACTIONS(2523), + [anon_sym___stdcall] = ACTIONS(2523), + [anon_sym___fastcall] = ACTIONS(2523), + [anon_sym___thiscall] = ACTIONS(2523), + [anon_sym___vectorcall] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_static] = ACTIONS(2523), + [anon_sym_register] = ACTIONS(2523), + [anon_sym_inline] = ACTIONS(2523), + [anon_sym_thread_local] = ACTIONS(2523), + [anon_sym_input] = ACTIONS(2523), + [anon_sym_const] = ACTIONS(2523), + [anon_sym_volatile] = ACTIONS(2523), + [anon_sym_restrict] = ACTIONS(2523), + [anon_sym__Atomic] = ACTIONS(2523), + [anon_sym_mutable] = ACTIONS(2523), + [anon_sym_constexpr] = ACTIONS(2523), + [anon_sym_constinit] = ACTIONS(2523), + [anon_sym_consteval] = ACTIONS(2523), + [anon_sym_signed] = ACTIONS(2523), + [anon_sym_unsigned] = ACTIONS(2523), + [anon_sym_long] = ACTIONS(2523), + [anon_sym_short] = ACTIONS(2523), + [sym_primitive_type] = ACTIONS(2523), + [anon_sym_enum] = ACTIONS(2523), + [anon_sym_class] = ACTIONS(2523), + [anon_sym_struct] = ACTIONS(2523), + [anon_sym_union] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_else] = ACTIONS(2523), + [anon_sym_switch] = ACTIONS(2523), + [anon_sym_case] = ACTIONS(2523), + [anon_sym_default] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2523), + [anon_sym_do] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_goto] = ACTIONS(2523), + [anon_sym_not] = ACTIONS(2523), + [anon_sym_compl] = ACTIONS(2523), + [anon_sym_DASH_DASH] = ACTIONS(2525), + [anon_sym_PLUS_PLUS] = ACTIONS(2525), + [anon_sym_sizeof] = ACTIONS(2523), + [sym_number_literal] = ACTIONS(2525), + [anon_sym_L_SQUOTE] = ACTIONS(2525), + [anon_sym_u_SQUOTE] = ACTIONS(2525), + [anon_sym_U_SQUOTE] = ACTIONS(2525), + [anon_sym_u8_SQUOTE] = ACTIONS(2525), + [anon_sym_SQUOTE] = ACTIONS(2525), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2523), + [sym_false] = ACTIONS(2523), + [sym_null] = ACTIONS(2523), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2523), + [anon_sym_decltype] = ACTIONS(2523), + [anon_sym_virtual] = ACTIONS(2523), + [anon_sym_explicit] = ACTIONS(2523), + [anon_sym_typename] = ACTIONS(2523), + [anon_sym_template] = ACTIONS(2523), + [anon_sym_operator] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2523), + [anon_sym_delete] = ACTIONS(2523), + [anon_sym_throw] = ACTIONS(2523), + [anon_sym_namespace] = ACTIONS(2523), + [anon_sym_using] = ACTIONS(2523), + [anon_sym_static_assert] = ACTIONS(2523), + [anon_sym_concept] = ACTIONS(2523), + [anon_sym_co_return] = ACTIONS(2523), + [anon_sym_co_yield] = ACTIONS(2523), + [anon_sym_R_DQUOTE] = ACTIONS(2525), + [anon_sym_LR_DQUOTE] = ACTIONS(2525), + [anon_sym_uR_DQUOTE] = ACTIONS(2525), + [anon_sym_UR_DQUOTE] = ACTIONS(2525), + [anon_sym_u8R_DQUOTE] = ACTIONS(2525), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2523), + [sym_this] = ACTIONS(2523), + [sym_nullptr] = ACTIONS(2523), }, - [630] = { - [sym_identifier] = ACTIONS(2525), - [aux_sym_preproc_include_token1] = ACTIONS(2525), - [aux_sym_preproc_def_token1] = ACTIONS(2525), - [aux_sym_preproc_if_token1] = ACTIONS(2525), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2525), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2525), - [sym_preproc_directive] = ACTIONS(2525), - [anon_sym_LPAREN2] = ACTIONS(2527), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_TILDE] = ACTIONS(2527), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_STAR] = ACTIONS(2527), - [anon_sym_AMP_AMP] = ACTIONS(2527), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_typedef] = ACTIONS(2525), - [anon_sym_extern] = ACTIONS(2525), - [anon_sym___attribute__] = ACTIONS(2525), - [anon_sym_COLON_COLON] = ACTIONS(2527), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2527), - [anon_sym___declspec] = ACTIONS(2525), - [anon_sym___based] = ACTIONS(2525), - [anon_sym___cdecl] = ACTIONS(2525), - [anon_sym___clrcall] = ACTIONS(2525), - [anon_sym___stdcall] = ACTIONS(2525), - [anon_sym___fastcall] = ACTIONS(2525), - [anon_sym___thiscall] = ACTIONS(2525), - [anon_sym___vectorcall] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_register] = ACTIONS(2525), - [anon_sym_inline] = ACTIONS(2525), - [anon_sym_thread_local] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_volatile] = ACTIONS(2525), - [anon_sym_restrict] = ACTIONS(2525), - [anon_sym__Atomic] = ACTIONS(2525), - [anon_sym_mutable] = ACTIONS(2525), - [anon_sym_constexpr] = ACTIONS(2525), - [anon_sym_constinit] = ACTIONS(2525), - [anon_sym_consteval] = ACTIONS(2525), - [anon_sym_signed] = ACTIONS(2525), - [anon_sym_unsigned] = ACTIONS(2525), - [anon_sym_long] = ACTIONS(2525), - [anon_sym_short] = ACTIONS(2525), - [sym_primitive_type] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_struct] = ACTIONS(2525), - [anon_sym_union] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_else] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_goto] = ACTIONS(2525), - [anon_sym_not] = ACTIONS(2525), - [anon_sym_compl] = ACTIONS(2525), - [anon_sym_DASH_DASH] = ACTIONS(2527), - [anon_sym_PLUS_PLUS] = ACTIONS(2527), - [anon_sym_sizeof] = ACTIONS(2525), - [sym_number_literal] = ACTIONS(2527), - [anon_sym_L_SQUOTE] = ACTIONS(2527), - [anon_sym_u_SQUOTE] = ACTIONS(2527), - [anon_sym_U_SQUOTE] = ACTIONS(2527), - [anon_sym_u8_SQUOTE] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2527), - [anon_sym_L_DQUOTE] = ACTIONS(2527), - [anon_sym_u_DQUOTE] = ACTIONS(2527), - [anon_sym_U_DQUOTE] = ACTIONS(2527), - [anon_sym_u8_DQUOTE] = ACTIONS(2527), - [anon_sym_DQUOTE] = ACTIONS(2527), - [sym_true] = ACTIONS(2525), - [sym_false] = ACTIONS(2525), - [sym_null] = ACTIONS(2525), + [422] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2525), - [anon_sym_decltype] = ACTIONS(2525), - [anon_sym_virtual] = ACTIONS(2525), - [anon_sym_explicit] = ACTIONS(2525), - [anon_sym_typename] = ACTIONS(2525), - [anon_sym_template] = ACTIONS(2525), - [anon_sym_operator] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_delete] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_namespace] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(2525), - [anon_sym_static_assert] = ACTIONS(2525), - [anon_sym_concept] = ACTIONS(2525), - [anon_sym_co_return] = ACTIONS(2525), - [anon_sym_co_yield] = ACTIONS(2525), - [anon_sym_R_DQUOTE] = ACTIONS(2527), - [anon_sym_LR_DQUOTE] = ACTIONS(2527), - [anon_sym_uR_DQUOTE] = ACTIONS(2527), - [anon_sym_UR_DQUOTE] = ACTIONS(2527), - [anon_sym_u8R_DQUOTE] = ACTIONS(2527), - [anon_sym_co_await] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2525), - [sym_this] = ACTIONS(2525), - [sym_nullptr] = ACTIONS(2525), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, - [631] = { - [sym_identifier] = ACTIONS(2635), - [aux_sym_preproc_include_token1] = ACTIONS(2635), - [aux_sym_preproc_def_token1] = ACTIONS(2635), - [aux_sym_preproc_if_token1] = ACTIONS(2635), - [aux_sym_preproc_if_token2] = ACTIONS(2635), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), - [sym_preproc_directive] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2635), - [anon_sym_extern] = ACTIONS(2635), - [anon_sym___attribute__] = ACTIONS(2635), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), - [anon_sym___declspec] = ACTIONS(2635), - [anon_sym___based] = ACTIONS(2635), - [anon_sym___cdecl] = ACTIONS(2635), - [anon_sym___clrcall] = ACTIONS(2635), - [anon_sym___stdcall] = ACTIONS(2635), - [anon_sym___fastcall] = ACTIONS(2635), - [anon_sym___thiscall] = ACTIONS(2635), - [anon_sym___vectorcall] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_static] = ACTIONS(2635), - [anon_sym_register] = ACTIONS(2635), - [anon_sym_inline] = ACTIONS(2635), - [anon_sym_thread_local] = ACTIONS(2635), - [anon_sym_const] = ACTIONS(2635), - [anon_sym_volatile] = ACTIONS(2635), - [anon_sym_restrict] = ACTIONS(2635), - [anon_sym__Atomic] = ACTIONS(2635), - [anon_sym_mutable] = ACTIONS(2635), - [anon_sym_constexpr] = ACTIONS(2635), - [anon_sym_constinit] = ACTIONS(2635), - [anon_sym_consteval] = ACTIONS(2635), - [anon_sym_signed] = ACTIONS(2635), - [anon_sym_unsigned] = ACTIONS(2635), - [anon_sym_long] = ACTIONS(2635), - [anon_sym_short] = ACTIONS(2635), - [sym_primitive_type] = ACTIONS(2635), - [anon_sym_enum] = ACTIONS(2635), - [anon_sym_class] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2635), - [anon_sym_union] = ACTIONS(2635), - [anon_sym_if] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(2635), - [anon_sym_switch] = ACTIONS(2635), - [anon_sym_case] = ACTIONS(2635), - [anon_sym_default] = ACTIONS(2635), - [anon_sym_while] = ACTIONS(2635), - [anon_sym_do] = ACTIONS(2635), - [anon_sym_for] = ACTIONS(2635), - [anon_sym_return] = ACTIONS(2635), - [anon_sym_break] = ACTIONS(2635), - [anon_sym_continue] = ACTIONS(2635), - [anon_sym_goto] = ACTIONS(2635), - [anon_sym_not] = ACTIONS(2635), - [anon_sym_compl] = ACTIONS(2635), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_sizeof] = ACTIONS(2635), - [sym_number_literal] = ACTIONS(2637), - [anon_sym_L_SQUOTE] = ACTIONS(2637), - [anon_sym_u_SQUOTE] = ACTIONS(2637), - [anon_sym_U_SQUOTE] = ACTIONS(2637), - [anon_sym_u8_SQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_L_DQUOTE] = ACTIONS(2637), - [anon_sym_u_DQUOTE] = ACTIONS(2637), - [anon_sym_U_DQUOTE] = ACTIONS(2637), - [anon_sym_u8_DQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [sym_true] = ACTIONS(2635), - [sym_false] = ACTIONS(2635), - [sym_null] = ACTIONS(2635), + [423] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2635), - [anon_sym_decltype] = ACTIONS(2635), - [anon_sym_virtual] = ACTIONS(2635), - [anon_sym_explicit] = ACTIONS(2635), - [anon_sym_typename] = ACTIONS(2635), - [anon_sym_template] = ACTIONS(2635), - [anon_sym_operator] = ACTIONS(2635), - [anon_sym_try] = ACTIONS(2635), - [anon_sym_delete] = ACTIONS(2635), - [anon_sym_throw] = ACTIONS(2635), - [anon_sym_namespace] = ACTIONS(2635), - [anon_sym_using] = ACTIONS(2635), - [anon_sym_static_assert] = ACTIONS(2635), - [anon_sym_concept] = ACTIONS(2635), - [anon_sym_co_return] = ACTIONS(2635), - [anon_sym_co_yield] = ACTIONS(2635), - [anon_sym_R_DQUOTE] = ACTIONS(2637), - [anon_sym_LR_DQUOTE] = ACTIONS(2637), - [anon_sym_uR_DQUOTE] = ACTIONS(2637), - [anon_sym_UR_DQUOTE] = ACTIONS(2637), - [anon_sym_u8R_DQUOTE] = ACTIONS(2637), - [anon_sym_co_await] = ACTIONS(2635), - [anon_sym_new] = ACTIONS(2635), - [anon_sym_requires] = ACTIONS(2635), - [sym_this] = ACTIONS(2635), - [sym_nullptr] = ACTIONS(2635), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, - [632] = { - [sym_identifier] = ACTIONS(2631), - [aux_sym_preproc_include_token1] = ACTIONS(2631), - [aux_sym_preproc_def_token1] = ACTIONS(2631), - [aux_sym_preproc_if_token1] = ACTIONS(2631), - [aux_sym_preproc_if_token2] = ACTIONS(2631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), - [sym_preproc_directive] = ACTIONS(2631), - [anon_sym_LPAREN2] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2631), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_typedef] = ACTIONS(2631), - [anon_sym_extern] = ACTIONS(2631), - [anon_sym___attribute__] = ACTIONS(2631), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), - [anon_sym___declspec] = ACTIONS(2631), - [anon_sym___based] = ACTIONS(2631), - [anon_sym___cdecl] = ACTIONS(2631), - [anon_sym___clrcall] = ACTIONS(2631), - [anon_sym___stdcall] = ACTIONS(2631), - [anon_sym___fastcall] = ACTIONS(2631), - [anon_sym___thiscall] = ACTIONS(2631), - [anon_sym___vectorcall] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_register] = ACTIONS(2631), - [anon_sym_inline] = ACTIONS(2631), - [anon_sym_thread_local] = ACTIONS(2631), - [anon_sym_const] = ACTIONS(2631), - [anon_sym_volatile] = ACTIONS(2631), - [anon_sym_restrict] = ACTIONS(2631), - [anon_sym__Atomic] = ACTIONS(2631), - [anon_sym_mutable] = ACTIONS(2631), - [anon_sym_constexpr] = ACTIONS(2631), - [anon_sym_constinit] = ACTIONS(2631), - [anon_sym_consteval] = ACTIONS(2631), - [anon_sym_signed] = ACTIONS(2631), - [anon_sym_unsigned] = ACTIONS(2631), - [anon_sym_long] = ACTIONS(2631), - [anon_sym_short] = ACTIONS(2631), - [sym_primitive_type] = ACTIONS(2631), - [anon_sym_enum] = ACTIONS(2631), - [anon_sym_class] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2631), - [anon_sym_union] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_else] = ACTIONS(2631), - [anon_sym_switch] = ACTIONS(2631), - [anon_sym_case] = ACTIONS(2631), - [anon_sym_default] = ACTIONS(2631), - [anon_sym_while] = ACTIONS(2631), - [anon_sym_do] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_return] = ACTIONS(2631), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_continue] = ACTIONS(2631), - [anon_sym_goto] = ACTIONS(2631), - [anon_sym_not] = ACTIONS(2631), - [anon_sym_compl] = ACTIONS(2631), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_sizeof] = ACTIONS(2631), - [sym_number_literal] = ACTIONS(2633), - [anon_sym_L_SQUOTE] = ACTIONS(2633), - [anon_sym_u_SQUOTE] = ACTIONS(2633), - [anon_sym_U_SQUOTE] = ACTIONS(2633), - [anon_sym_u8_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_L_DQUOTE] = ACTIONS(2633), - [anon_sym_u_DQUOTE] = ACTIONS(2633), - [anon_sym_U_DQUOTE] = ACTIONS(2633), - [anon_sym_u8_DQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [sym_true] = ACTIONS(2631), - [sym_false] = ACTIONS(2631), - [sym_null] = ACTIONS(2631), + [424] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2631), - [anon_sym_decltype] = ACTIONS(2631), - [anon_sym_virtual] = ACTIONS(2631), - [anon_sym_explicit] = ACTIONS(2631), - [anon_sym_typename] = ACTIONS(2631), - [anon_sym_template] = ACTIONS(2631), - [anon_sym_operator] = ACTIONS(2631), - [anon_sym_try] = ACTIONS(2631), - [anon_sym_delete] = ACTIONS(2631), - [anon_sym_throw] = ACTIONS(2631), - [anon_sym_namespace] = ACTIONS(2631), - [anon_sym_using] = ACTIONS(2631), - [anon_sym_static_assert] = ACTIONS(2631), - [anon_sym_concept] = ACTIONS(2631), - [anon_sym_co_return] = ACTIONS(2631), - [anon_sym_co_yield] = ACTIONS(2631), - [anon_sym_R_DQUOTE] = ACTIONS(2633), - [anon_sym_LR_DQUOTE] = ACTIONS(2633), - [anon_sym_uR_DQUOTE] = ACTIONS(2633), - [anon_sym_UR_DQUOTE] = ACTIONS(2633), - [anon_sym_u8R_DQUOTE] = ACTIONS(2633), - [anon_sym_co_await] = ACTIONS(2631), - [anon_sym_new] = ACTIONS(2631), - [anon_sym_requires] = ACTIONS(2631), - [sym_this] = ACTIONS(2631), - [sym_nullptr] = ACTIONS(2631), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, - [633] = { - [sym_identifier] = ACTIONS(2395), - [aux_sym_preproc_include_token1] = ACTIONS(2395), - [aux_sym_preproc_def_token1] = ACTIONS(2395), - [aux_sym_preproc_if_token1] = ACTIONS(2395), - [aux_sym_preproc_if_token2] = ACTIONS(2395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), - [sym_preproc_directive] = ACTIONS(2395), - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_TILDE] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2395), - [anon_sym_PLUS] = ACTIONS(2395), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_AMP_AMP] = ACTIONS(2397), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_SEMI] = ACTIONS(2397), - [anon_sym_typedef] = ACTIONS(2395), - [anon_sym_extern] = ACTIONS(2395), - [anon_sym___attribute__] = ACTIONS(2395), - [anon_sym_COLON_COLON] = ACTIONS(2397), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), - [anon_sym___declspec] = ACTIONS(2395), - [anon_sym___based] = ACTIONS(2395), - [anon_sym___cdecl] = ACTIONS(2395), - [anon_sym___clrcall] = ACTIONS(2395), - [anon_sym___stdcall] = ACTIONS(2395), - [anon_sym___fastcall] = ACTIONS(2395), - [anon_sym___thiscall] = ACTIONS(2395), - [anon_sym___vectorcall] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_static] = ACTIONS(2395), - [anon_sym_register] = ACTIONS(2395), - [anon_sym_inline] = ACTIONS(2395), - [anon_sym_thread_local] = ACTIONS(2395), - [anon_sym_const] = ACTIONS(2395), - [anon_sym_volatile] = ACTIONS(2395), - [anon_sym_restrict] = ACTIONS(2395), - [anon_sym__Atomic] = ACTIONS(2395), - [anon_sym_mutable] = ACTIONS(2395), - [anon_sym_constexpr] = ACTIONS(2395), - [anon_sym_constinit] = ACTIONS(2395), - [anon_sym_consteval] = ACTIONS(2395), - [anon_sym_signed] = ACTIONS(2395), - [anon_sym_unsigned] = ACTIONS(2395), - [anon_sym_long] = ACTIONS(2395), - [anon_sym_short] = ACTIONS(2395), - [sym_primitive_type] = ACTIONS(2395), - [anon_sym_enum] = ACTIONS(2395), - [anon_sym_class] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(2395), - [anon_sym_union] = ACTIONS(2395), - [anon_sym_if] = ACTIONS(2395), - [anon_sym_else] = ACTIONS(2395), - [anon_sym_switch] = ACTIONS(2395), - [anon_sym_case] = ACTIONS(2395), - [anon_sym_default] = ACTIONS(2395), - [anon_sym_while] = ACTIONS(2395), - [anon_sym_do] = ACTIONS(2395), - [anon_sym_for] = ACTIONS(2395), - [anon_sym_return] = ACTIONS(2395), - [anon_sym_break] = ACTIONS(2395), - [anon_sym_continue] = ACTIONS(2395), - [anon_sym_goto] = ACTIONS(2395), - [anon_sym_not] = ACTIONS(2395), - [anon_sym_compl] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2397), - [anon_sym_PLUS_PLUS] = ACTIONS(2397), - [anon_sym_sizeof] = ACTIONS(2395), - [sym_number_literal] = ACTIONS(2397), - [anon_sym_L_SQUOTE] = ACTIONS(2397), - [anon_sym_u_SQUOTE] = ACTIONS(2397), - [anon_sym_U_SQUOTE] = ACTIONS(2397), - [anon_sym_u8_SQUOTE] = ACTIONS(2397), - [anon_sym_SQUOTE] = ACTIONS(2397), - [anon_sym_L_DQUOTE] = ACTIONS(2397), - [anon_sym_u_DQUOTE] = ACTIONS(2397), - [anon_sym_U_DQUOTE] = ACTIONS(2397), - [anon_sym_u8_DQUOTE] = ACTIONS(2397), - [anon_sym_DQUOTE] = ACTIONS(2397), - [sym_true] = ACTIONS(2395), - [sym_false] = ACTIONS(2395), - [sym_null] = ACTIONS(2395), + [425] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2395), - [anon_sym_decltype] = ACTIONS(2395), - [anon_sym_virtual] = ACTIONS(2395), - [anon_sym_explicit] = ACTIONS(2395), - [anon_sym_typename] = ACTIONS(2395), - [anon_sym_template] = ACTIONS(2395), - [anon_sym_operator] = ACTIONS(2395), - [anon_sym_try] = ACTIONS(2395), - [anon_sym_delete] = ACTIONS(2395), - [anon_sym_throw] = ACTIONS(2395), - [anon_sym_namespace] = ACTIONS(2395), - [anon_sym_using] = ACTIONS(2395), - [anon_sym_static_assert] = ACTIONS(2395), - [anon_sym_concept] = ACTIONS(2395), - [anon_sym_co_return] = ACTIONS(2395), - [anon_sym_co_yield] = ACTIONS(2395), - [anon_sym_R_DQUOTE] = ACTIONS(2397), - [anon_sym_LR_DQUOTE] = ACTIONS(2397), - [anon_sym_uR_DQUOTE] = ACTIONS(2397), - [anon_sym_UR_DQUOTE] = ACTIONS(2397), - [anon_sym_u8R_DQUOTE] = ACTIONS(2397), - [anon_sym_co_await] = ACTIONS(2395), - [anon_sym_new] = ACTIONS(2395), - [anon_sym_requires] = ACTIONS(2395), - [sym_this] = ACTIONS(2395), - [sym_nullptr] = ACTIONS(2395), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, - [634] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [426] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, - [635] = { - [sym_identifier] = ACTIONS(2627), - [aux_sym_preproc_include_token1] = ACTIONS(2627), - [aux_sym_preproc_def_token1] = ACTIONS(2627), - [aux_sym_preproc_if_token1] = ACTIONS(2627), - [aux_sym_preproc_if_token2] = ACTIONS(2627), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), - [sym_preproc_directive] = ACTIONS(2627), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_PLUS] = ACTIONS(2627), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_AMP_AMP] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym_typedef] = ACTIONS(2627), - [anon_sym_extern] = ACTIONS(2627), - [anon_sym___attribute__] = ACTIONS(2627), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), - [anon_sym___declspec] = ACTIONS(2627), - [anon_sym___based] = ACTIONS(2627), - [anon_sym___cdecl] = ACTIONS(2627), - [anon_sym___clrcall] = ACTIONS(2627), - [anon_sym___stdcall] = ACTIONS(2627), - [anon_sym___fastcall] = ACTIONS(2627), - [anon_sym___thiscall] = ACTIONS(2627), - [anon_sym___vectorcall] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_static] = ACTIONS(2627), - [anon_sym_register] = ACTIONS(2627), - [anon_sym_inline] = ACTIONS(2627), - [anon_sym_thread_local] = ACTIONS(2627), - [anon_sym_const] = ACTIONS(2627), - [anon_sym_volatile] = ACTIONS(2627), - [anon_sym_restrict] = ACTIONS(2627), - [anon_sym__Atomic] = ACTIONS(2627), - [anon_sym_mutable] = ACTIONS(2627), - [anon_sym_constexpr] = ACTIONS(2627), - [anon_sym_constinit] = ACTIONS(2627), - [anon_sym_consteval] = ACTIONS(2627), - [anon_sym_signed] = ACTIONS(2627), - [anon_sym_unsigned] = ACTIONS(2627), - [anon_sym_long] = ACTIONS(2627), - [anon_sym_short] = ACTIONS(2627), - [sym_primitive_type] = ACTIONS(2627), - [anon_sym_enum] = ACTIONS(2627), - [anon_sym_class] = ACTIONS(2627), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_union] = ACTIONS(2627), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2627), - [anon_sym_switch] = ACTIONS(2627), - [anon_sym_case] = ACTIONS(2627), - [anon_sym_default] = ACTIONS(2627), - [anon_sym_while] = ACTIONS(2627), - [anon_sym_do] = ACTIONS(2627), - [anon_sym_for] = ACTIONS(2627), - [anon_sym_return] = ACTIONS(2627), - [anon_sym_break] = ACTIONS(2627), - [anon_sym_continue] = ACTIONS(2627), - [anon_sym_goto] = ACTIONS(2627), - [anon_sym_not] = ACTIONS(2627), - [anon_sym_compl] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_sizeof] = ACTIONS(2627), - [sym_number_literal] = ACTIONS(2629), - [anon_sym_L_SQUOTE] = ACTIONS(2629), - [anon_sym_u_SQUOTE] = ACTIONS(2629), - [anon_sym_U_SQUOTE] = ACTIONS(2629), - [anon_sym_u8_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_L_DQUOTE] = ACTIONS(2629), - [anon_sym_u_DQUOTE] = ACTIONS(2629), - [anon_sym_U_DQUOTE] = ACTIONS(2629), - [anon_sym_u8_DQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [sym_null] = ACTIONS(2627), + [427] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2627), - [anon_sym_decltype] = ACTIONS(2627), - [anon_sym_virtual] = ACTIONS(2627), - [anon_sym_explicit] = ACTIONS(2627), - [anon_sym_typename] = ACTIONS(2627), - [anon_sym_template] = ACTIONS(2627), - [anon_sym_operator] = ACTIONS(2627), - [anon_sym_try] = ACTIONS(2627), - [anon_sym_delete] = ACTIONS(2627), - [anon_sym_throw] = ACTIONS(2627), - [anon_sym_namespace] = ACTIONS(2627), - [anon_sym_using] = ACTIONS(2627), - [anon_sym_static_assert] = ACTIONS(2627), - [anon_sym_concept] = ACTIONS(2627), - [anon_sym_co_return] = ACTIONS(2627), - [anon_sym_co_yield] = ACTIONS(2627), - [anon_sym_R_DQUOTE] = ACTIONS(2629), - [anon_sym_LR_DQUOTE] = ACTIONS(2629), - [anon_sym_uR_DQUOTE] = ACTIONS(2629), - [anon_sym_UR_DQUOTE] = ACTIONS(2629), - [anon_sym_u8R_DQUOTE] = ACTIONS(2629), - [anon_sym_co_await] = ACTIONS(2627), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_requires] = ACTIONS(2627), - [sym_this] = ACTIONS(2627), - [sym_nullptr] = ACTIONS(2627), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, - [636] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [428] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, - [637] = { - [sym_identifier] = ACTIONS(2623), - [aux_sym_preproc_include_token1] = ACTIONS(2623), - [aux_sym_preproc_def_token1] = ACTIONS(2623), - [aux_sym_preproc_if_token1] = ACTIONS(2623), - [aux_sym_preproc_if_token2] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), - [sym_preproc_directive] = ACTIONS(2623), - [anon_sym_LPAREN2] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2623), - [anon_sym_PLUS] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_typedef] = ACTIONS(2623), - [anon_sym_extern] = ACTIONS(2623), - [anon_sym___attribute__] = ACTIONS(2623), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), - [anon_sym___declspec] = ACTIONS(2623), - [anon_sym___based] = ACTIONS(2623), - [anon_sym___cdecl] = ACTIONS(2623), - [anon_sym___clrcall] = ACTIONS(2623), - [anon_sym___stdcall] = ACTIONS(2623), - [anon_sym___fastcall] = ACTIONS(2623), - [anon_sym___thiscall] = ACTIONS(2623), - [anon_sym___vectorcall] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_static] = ACTIONS(2623), - [anon_sym_register] = ACTIONS(2623), - [anon_sym_inline] = ACTIONS(2623), - [anon_sym_thread_local] = ACTIONS(2623), - [anon_sym_const] = ACTIONS(2623), - [anon_sym_volatile] = ACTIONS(2623), - [anon_sym_restrict] = ACTIONS(2623), - [anon_sym__Atomic] = ACTIONS(2623), - [anon_sym_mutable] = ACTIONS(2623), - [anon_sym_constexpr] = ACTIONS(2623), - [anon_sym_constinit] = ACTIONS(2623), - [anon_sym_consteval] = ACTIONS(2623), - [anon_sym_signed] = ACTIONS(2623), - [anon_sym_unsigned] = ACTIONS(2623), - [anon_sym_long] = ACTIONS(2623), - [anon_sym_short] = ACTIONS(2623), - [sym_primitive_type] = ACTIONS(2623), - [anon_sym_enum] = ACTIONS(2623), - [anon_sym_class] = ACTIONS(2623), - [anon_sym_struct] = ACTIONS(2623), - [anon_sym_union] = ACTIONS(2623), - [anon_sym_if] = ACTIONS(2623), - [anon_sym_else] = ACTIONS(2623), - [anon_sym_switch] = ACTIONS(2623), - [anon_sym_case] = ACTIONS(2623), - [anon_sym_default] = ACTIONS(2623), - [anon_sym_while] = ACTIONS(2623), - [anon_sym_do] = ACTIONS(2623), - [anon_sym_for] = ACTIONS(2623), - [anon_sym_return] = ACTIONS(2623), - [anon_sym_break] = ACTIONS(2623), - [anon_sym_continue] = ACTIONS(2623), - [anon_sym_goto] = ACTIONS(2623), - [anon_sym_not] = ACTIONS(2623), - [anon_sym_compl] = ACTIONS(2623), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_sizeof] = ACTIONS(2623), - [sym_number_literal] = ACTIONS(2625), - [anon_sym_L_SQUOTE] = ACTIONS(2625), - [anon_sym_u_SQUOTE] = ACTIONS(2625), - [anon_sym_U_SQUOTE] = ACTIONS(2625), - [anon_sym_u8_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_L_DQUOTE] = ACTIONS(2625), - [anon_sym_u_DQUOTE] = ACTIONS(2625), - [anon_sym_U_DQUOTE] = ACTIONS(2625), - [anon_sym_u8_DQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [sym_true] = ACTIONS(2623), - [sym_false] = ACTIONS(2623), - [sym_null] = ACTIONS(2623), + [429] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2623), - [anon_sym_decltype] = ACTIONS(2623), - [anon_sym_virtual] = ACTIONS(2623), - [anon_sym_explicit] = ACTIONS(2623), - [anon_sym_typename] = ACTIONS(2623), - [anon_sym_template] = ACTIONS(2623), - [anon_sym_operator] = ACTIONS(2623), - [anon_sym_try] = ACTIONS(2623), - [anon_sym_delete] = ACTIONS(2623), - [anon_sym_throw] = ACTIONS(2623), - [anon_sym_namespace] = ACTIONS(2623), - [anon_sym_using] = ACTIONS(2623), - [anon_sym_static_assert] = ACTIONS(2623), - [anon_sym_concept] = ACTIONS(2623), - [anon_sym_co_return] = ACTIONS(2623), - [anon_sym_co_yield] = ACTIONS(2623), - [anon_sym_R_DQUOTE] = ACTIONS(2625), - [anon_sym_LR_DQUOTE] = ACTIONS(2625), - [anon_sym_uR_DQUOTE] = ACTIONS(2625), - [anon_sym_UR_DQUOTE] = ACTIONS(2625), - [anon_sym_u8R_DQUOTE] = ACTIONS(2625), - [anon_sym_co_await] = ACTIONS(2623), - [anon_sym_new] = ACTIONS(2623), - [anon_sym_requires] = ACTIONS(2623), - [sym_this] = ACTIONS(2623), - [sym_nullptr] = ACTIONS(2623), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, - [638] = { + [430] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [431] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [432] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [433] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [434] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [435] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [436] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [437] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [438] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [439] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [440] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [441] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [442] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [443] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [444] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [445] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [446] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [447] = { + [sym_identifier] = ACTIONS(2531), + [aux_sym_preproc_include_token1] = ACTIONS(2531), + [aux_sym_preproc_def_token1] = ACTIONS(2531), + [aux_sym_preproc_if_token1] = ACTIONS(2531), + [aux_sym_preproc_if_token2] = ACTIONS(2531), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2531), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2531), + [aux_sym_preproc_else_token1] = ACTIONS(2531), + [aux_sym_preproc_elif_token1] = ACTIONS(2531), + [sym_preproc_directive] = ACTIONS(2531), + [anon_sym_LPAREN2] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(2533), + [anon_sym_TILDE] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2531), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_typedef] = ACTIONS(2531), + [anon_sym_extern] = ACTIONS(2531), + [anon_sym___attribute__] = ACTIONS(2531), + [anon_sym_COLON_COLON] = ACTIONS(2533), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2533), + [anon_sym___declspec] = ACTIONS(2531), + [anon_sym___based] = ACTIONS(2531), + [anon_sym___cdecl] = ACTIONS(2531), + [anon_sym___clrcall] = ACTIONS(2531), + [anon_sym___stdcall] = ACTIONS(2531), + [anon_sym___fastcall] = ACTIONS(2531), + [anon_sym___thiscall] = ACTIONS(2531), + [anon_sym___vectorcall] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_LBRACK] = ACTIONS(2531), + [anon_sym_static] = ACTIONS(2531), + [anon_sym_register] = ACTIONS(2531), + [anon_sym_inline] = ACTIONS(2531), + [anon_sym_thread_local] = ACTIONS(2531), + [anon_sym_input] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [anon_sym_volatile] = ACTIONS(2531), + [anon_sym_restrict] = ACTIONS(2531), + [anon_sym__Atomic] = ACTIONS(2531), + [anon_sym_mutable] = ACTIONS(2531), + [anon_sym_constexpr] = ACTIONS(2531), + [anon_sym_constinit] = ACTIONS(2531), + [anon_sym_consteval] = ACTIONS(2531), + [anon_sym_signed] = ACTIONS(2531), + [anon_sym_unsigned] = ACTIONS(2531), + [anon_sym_long] = ACTIONS(2531), + [anon_sym_short] = ACTIONS(2531), + [sym_primitive_type] = ACTIONS(2531), + [anon_sym_enum] = ACTIONS(2531), + [anon_sym_class] = ACTIONS(2531), + [anon_sym_struct] = ACTIONS(2531), + [anon_sym_union] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_else] = ACTIONS(2531), + [anon_sym_switch] = ACTIONS(2531), + [anon_sym_case] = ACTIONS(2531), + [anon_sym_default] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_do] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_goto] = ACTIONS(2531), + [anon_sym_not] = ACTIONS(2531), + [anon_sym_compl] = ACTIONS(2531), + [anon_sym_DASH_DASH] = ACTIONS(2533), + [anon_sym_PLUS_PLUS] = ACTIONS(2533), + [anon_sym_sizeof] = ACTIONS(2531), + [sym_number_literal] = ACTIONS(2533), + [anon_sym_L_SQUOTE] = ACTIONS(2533), + [anon_sym_u_SQUOTE] = ACTIONS(2533), + [anon_sym_U_SQUOTE] = ACTIONS(2533), + [anon_sym_u8_SQUOTE] = ACTIONS(2533), + [anon_sym_SQUOTE] = ACTIONS(2533), + [anon_sym_L_DQUOTE] = ACTIONS(2533), + [anon_sym_u_DQUOTE] = ACTIONS(2533), + [anon_sym_U_DQUOTE] = ACTIONS(2533), + [anon_sym_u8_DQUOTE] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(2533), + [sym_true] = ACTIONS(2531), + [sym_false] = ACTIONS(2531), + [sym_null] = ACTIONS(2531), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2531), + [anon_sym_decltype] = ACTIONS(2531), + [anon_sym_virtual] = ACTIONS(2531), + [anon_sym_explicit] = ACTIONS(2531), + [anon_sym_typename] = ACTIONS(2531), + [anon_sym_template] = ACTIONS(2531), + [anon_sym_operator] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_throw] = ACTIONS(2531), + [anon_sym_namespace] = ACTIONS(2531), + [anon_sym_using] = ACTIONS(2531), + [anon_sym_static_assert] = ACTIONS(2531), + [anon_sym_concept] = ACTIONS(2531), + [anon_sym_co_return] = ACTIONS(2531), + [anon_sym_co_yield] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(2531), + [anon_sym_requires] = ACTIONS(2531), + [sym_this] = ACTIONS(2531), + [sym_nullptr] = ACTIONS(2531), + }, + [448] = { [sym_identifier] = ACTIONS(2535), [aux_sym_preproc_include_token1] = ACTIONS(2535), [aux_sym_preproc_def_token1] = ACTIONS(2535), [aux_sym_preproc_if_token1] = ACTIONS(2535), + [aux_sym_preproc_if_token2] = ACTIONS(2535), [aux_sym_preproc_ifdef_token1] = ACTIONS(2535), [aux_sym_preproc_ifdef_token2] = ACTIONS(2535), + [aux_sym_preproc_else_token1] = ACTIONS(2535), + [aux_sym_preproc_elif_token1] = ACTIONS(2535), [sym_preproc_directive] = ACTIONS(2535), [anon_sym_LPAREN2] = ACTIONS(2537), [anon_sym_BANG] = ACTIONS(2537), @@ -110329,12 +89018,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2535), [anon_sym___vectorcall] = ACTIONS(2535), [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_RBRACE] = ACTIONS(2537), [anon_sym_LBRACK] = ACTIONS(2535), [anon_sym_static] = ACTIONS(2535), [anon_sym_register] = ACTIONS(2535), [anon_sym_inline] = ACTIONS(2535), [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_input] = ACTIONS(2535), [anon_sym_const] = ACTIONS(2535), [anon_sym_volatile] = ACTIONS(2535), [anon_sym_restrict] = ACTIONS(2535), @@ -110411,13 +89100,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2535), [sym_nullptr] = ACTIONS(2535), }, - [639] = { + [449] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [450] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [451] = { [sym_identifier] = ACTIONS(2539), [aux_sym_preproc_include_token1] = ACTIONS(2539), [aux_sym_preproc_def_token1] = ACTIONS(2539), [aux_sym_preproc_if_token1] = ACTIONS(2539), + [aux_sym_preproc_if_token2] = ACTIONS(2539), [aux_sym_preproc_ifdef_token1] = ACTIONS(2539), [aux_sym_preproc_ifdef_token2] = ACTIONS(2539), + [aux_sym_preproc_else_token1] = ACTIONS(2539), + [aux_sym_preproc_elif_token1] = ACTIONS(2539), [sym_preproc_directive] = ACTIONS(2539), [anon_sym_LPAREN2] = ACTIONS(2541), [anon_sym_BANG] = ACTIONS(2541), @@ -110442,12 +89366,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2539), [anon_sym___vectorcall] = ACTIONS(2539), [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_RBRACE] = ACTIONS(2541), [anon_sym_LBRACK] = ACTIONS(2539), [anon_sym_static] = ACTIONS(2539), [anon_sym_register] = ACTIONS(2539), [anon_sym_inline] = ACTIONS(2539), [anon_sym_thread_local] = ACTIONS(2539), + [anon_sym_input] = ACTIONS(2539), [anon_sym_const] = ACTIONS(2539), [anon_sym_volatile] = ACTIONS(2539), [anon_sym_restrict] = ACTIONS(2539), @@ -110466,7 +89390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2539), [anon_sym_union] = ACTIONS(2539), [anon_sym_if] = ACTIONS(2539), - [anon_sym_else] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2543), [anon_sym_switch] = ACTIONS(2539), [anon_sym_case] = ACTIONS(2539), [anon_sym_default] = ACTIONS(2539), @@ -110524,7 +89448,17217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2539), [sym_nullptr] = ACTIONS(2539), }, - [640] = { + [452] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [453] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [454] = { + [sym_catch_clause] = STATE(336), + [aux_sym_constructor_try_statement_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(2372), + [aux_sym_preproc_include_token1] = ACTIONS(2372), + [aux_sym_preproc_def_token1] = ACTIONS(2372), + [aux_sym_preproc_if_token1] = ACTIONS(2372), + [aux_sym_preproc_if_token2] = ACTIONS(2372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2372), + [sym_preproc_directive] = ACTIONS(2372), + [anon_sym_LPAREN2] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(2374), + [anon_sym_TILDE] = ACTIONS(2374), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_typedef] = ACTIONS(2372), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym___attribute__] = ACTIONS(2372), + [anon_sym_COLON_COLON] = ACTIONS(2374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2374), + [anon_sym___declspec] = ACTIONS(2372), + [anon_sym___based] = ACTIONS(2372), + [anon_sym___cdecl] = ACTIONS(2372), + [anon_sym___clrcall] = ACTIONS(2372), + [anon_sym___stdcall] = ACTIONS(2372), + [anon_sym___fastcall] = ACTIONS(2372), + [anon_sym___thiscall] = ACTIONS(2372), + [anon_sym___vectorcall] = ACTIONS(2372), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_LBRACK] = ACTIONS(2372), + [anon_sym_static] = ACTIONS(2372), + [anon_sym_register] = ACTIONS(2372), + [anon_sym_inline] = ACTIONS(2372), + [anon_sym_thread_local] = ACTIONS(2372), + [anon_sym_input] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [anon_sym_volatile] = ACTIONS(2372), + [anon_sym_restrict] = ACTIONS(2372), + [anon_sym__Atomic] = ACTIONS(2372), + [anon_sym_mutable] = ACTIONS(2372), + [anon_sym_constexpr] = ACTIONS(2372), + [anon_sym_constinit] = ACTIONS(2372), + [anon_sym_consteval] = ACTIONS(2372), + [anon_sym_signed] = ACTIONS(2372), + [anon_sym_unsigned] = ACTIONS(2372), + [anon_sym_long] = ACTIONS(2372), + [anon_sym_short] = ACTIONS(2372), + [sym_primitive_type] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2372), + [anon_sym_class] = ACTIONS(2372), + [anon_sym_struct] = ACTIONS(2372), + [anon_sym_union] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_switch] = ACTIONS(2372), + [anon_sym_case] = ACTIONS(2372), + [anon_sym_default] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_goto] = ACTIONS(2372), + [anon_sym_not] = ACTIONS(2372), + [anon_sym_compl] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2374), + [anon_sym_PLUS_PLUS] = ACTIONS(2374), + [anon_sym_sizeof] = ACTIONS(2372), + [sym_number_literal] = ACTIONS(2374), + [anon_sym_L_SQUOTE] = ACTIONS(2374), + [anon_sym_u_SQUOTE] = ACTIONS(2374), + [anon_sym_U_SQUOTE] = ACTIONS(2374), + [anon_sym_u8_SQUOTE] = ACTIONS(2374), + [anon_sym_SQUOTE] = ACTIONS(2374), + [anon_sym_L_DQUOTE] = ACTIONS(2374), + [anon_sym_u_DQUOTE] = ACTIONS(2374), + [anon_sym_U_DQUOTE] = ACTIONS(2374), + [anon_sym_u8_DQUOTE] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [sym_true] = ACTIONS(2372), + [sym_false] = ACTIONS(2372), + [sym_null] = ACTIONS(2372), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2372), + [anon_sym_decltype] = ACTIONS(2372), + [anon_sym_virtual] = ACTIONS(2372), + [anon_sym_explicit] = ACTIONS(2372), + [anon_sym_typename] = ACTIONS(2372), + [anon_sym_template] = ACTIONS(2372), + [anon_sym_operator] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_delete] = ACTIONS(2372), + [anon_sym_throw] = ACTIONS(2372), + [anon_sym_namespace] = ACTIONS(2372), + [anon_sym_using] = ACTIONS(2372), + [anon_sym_static_assert] = ACTIONS(2372), + [anon_sym_concept] = ACTIONS(2372), + [anon_sym_co_return] = ACTIONS(2372), + [anon_sym_co_yield] = ACTIONS(2372), + [anon_sym_catch] = ACTIONS(2388), + [anon_sym_R_DQUOTE] = ACTIONS(2374), + [anon_sym_LR_DQUOTE] = ACTIONS(2374), + [anon_sym_uR_DQUOTE] = ACTIONS(2374), + [anon_sym_UR_DQUOTE] = ACTIONS(2374), + [anon_sym_u8R_DQUOTE] = ACTIONS(2374), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_requires] = ACTIONS(2372), + [sym_this] = ACTIONS(2372), + [sym_nullptr] = ACTIONS(2372), + }, + [455] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [456] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [457] = { + [sym_identifier] = ACTIONS(2545), + [aux_sym_preproc_include_token1] = ACTIONS(2545), + [aux_sym_preproc_def_token1] = ACTIONS(2545), + [aux_sym_preproc_if_token1] = ACTIONS(2545), + [aux_sym_preproc_if_token2] = ACTIONS(2545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2545), + [aux_sym_preproc_else_token1] = ACTIONS(2545), + [aux_sym_preproc_elif_token1] = ACTIONS(2545), + [sym_preproc_directive] = ACTIONS(2545), + [anon_sym_LPAREN2] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_AMP_AMP] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_typedef] = ACTIONS(2545), + [anon_sym_extern] = ACTIONS(2545), + [anon_sym___attribute__] = ACTIONS(2545), + [anon_sym_COLON_COLON] = ACTIONS(2547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2547), + [anon_sym___declspec] = ACTIONS(2545), + [anon_sym___based] = ACTIONS(2545), + [anon_sym___cdecl] = ACTIONS(2545), + [anon_sym___clrcall] = ACTIONS(2545), + [anon_sym___stdcall] = ACTIONS(2545), + [anon_sym___fastcall] = ACTIONS(2545), + [anon_sym___thiscall] = ACTIONS(2545), + [anon_sym___vectorcall] = ACTIONS(2545), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2545), + [anon_sym_register] = ACTIONS(2545), + [anon_sym_inline] = ACTIONS(2545), + [anon_sym_thread_local] = ACTIONS(2545), + [anon_sym_input] = ACTIONS(2545), + [anon_sym_const] = ACTIONS(2545), + [anon_sym_volatile] = ACTIONS(2545), + [anon_sym_restrict] = ACTIONS(2545), + [anon_sym__Atomic] = ACTIONS(2545), + [anon_sym_mutable] = ACTIONS(2545), + [anon_sym_constexpr] = ACTIONS(2545), + [anon_sym_constinit] = ACTIONS(2545), + [anon_sym_consteval] = ACTIONS(2545), + [anon_sym_signed] = ACTIONS(2545), + [anon_sym_unsigned] = ACTIONS(2545), + [anon_sym_long] = ACTIONS(2545), + [anon_sym_short] = ACTIONS(2545), + [sym_primitive_type] = ACTIONS(2545), + [anon_sym_enum] = ACTIONS(2545), + [anon_sym_class] = ACTIONS(2545), + [anon_sym_struct] = ACTIONS(2545), + [anon_sym_union] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_else] = ACTIONS(2545), + [anon_sym_switch] = ACTIONS(2545), + [anon_sym_case] = ACTIONS(2545), + [anon_sym_default] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_do] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_goto] = ACTIONS(2545), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_compl] = ACTIONS(2545), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_sizeof] = ACTIONS(2545), + [sym_number_literal] = ACTIONS(2547), + [anon_sym_L_SQUOTE] = ACTIONS(2547), + [anon_sym_u_SQUOTE] = ACTIONS(2547), + [anon_sym_U_SQUOTE] = ACTIONS(2547), + [anon_sym_u8_SQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_L_DQUOTE] = ACTIONS(2547), + [anon_sym_u_DQUOTE] = ACTIONS(2547), + [anon_sym_U_DQUOTE] = ACTIONS(2547), + [anon_sym_u8_DQUOTE] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [sym_true] = ACTIONS(2545), + [sym_false] = ACTIONS(2545), + [sym_null] = ACTIONS(2545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2545), + [anon_sym_decltype] = ACTIONS(2545), + [anon_sym_virtual] = ACTIONS(2545), + [anon_sym_explicit] = ACTIONS(2545), + [anon_sym_typename] = ACTIONS(2545), + [anon_sym_template] = ACTIONS(2545), + [anon_sym_operator] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [anon_sym_delete] = ACTIONS(2545), + [anon_sym_throw] = ACTIONS(2545), + [anon_sym_namespace] = ACTIONS(2545), + [anon_sym_using] = ACTIONS(2545), + [anon_sym_static_assert] = ACTIONS(2545), + [anon_sym_concept] = ACTIONS(2545), + [anon_sym_co_return] = ACTIONS(2545), + [anon_sym_co_yield] = ACTIONS(2545), + [anon_sym_R_DQUOTE] = ACTIONS(2547), + [anon_sym_LR_DQUOTE] = ACTIONS(2547), + [anon_sym_uR_DQUOTE] = ACTIONS(2547), + [anon_sym_UR_DQUOTE] = ACTIONS(2547), + [anon_sym_u8R_DQUOTE] = ACTIONS(2547), + [anon_sym_co_await] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_requires] = ACTIONS(2545), + [sym_this] = ACTIONS(2545), + [sym_nullptr] = ACTIONS(2545), + }, + [458] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [459] = { + [sym_identifier] = ACTIONS(2549), + [aux_sym_preproc_include_token1] = ACTIONS(2549), + [aux_sym_preproc_def_token1] = ACTIONS(2549), + [aux_sym_preproc_if_token1] = ACTIONS(2549), + [aux_sym_preproc_if_token2] = ACTIONS(2549), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2549), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2549), + [aux_sym_preproc_else_token1] = ACTIONS(2549), + [aux_sym_preproc_elif_token1] = ACTIONS(2549), + [sym_preproc_directive] = ACTIONS(2549), + [anon_sym_LPAREN2] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_typedef] = ACTIONS(2549), + [anon_sym_extern] = ACTIONS(2549), + [anon_sym___attribute__] = ACTIONS(2549), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2551), + [anon_sym___declspec] = ACTIONS(2549), + [anon_sym___based] = ACTIONS(2549), + [anon_sym___cdecl] = ACTIONS(2549), + [anon_sym___clrcall] = ACTIONS(2549), + [anon_sym___stdcall] = ACTIONS(2549), + [anon_sym___fastcall] = ACTIONS(2549), + [anon_sym___thiscall] = ACTIONS(2549), + [anon_sym___vectorcall] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_register] = ACTIONS(2549), + [anon_sym_inline] = ACTIONS(2549), + [anon_sym_thread_local] = ACTIONS(2549), + [anon_sym_input] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_volatile] = ACTIONS(2549), + [anon_sym_restrict] = ACTIONS(2549), + [anon_sym__Atomic] = ACTIONS(2549), + [anon_sym_mutable] = ACTIONS(2549), + [anon_sym_constexpr] = ACTIONS(2549), + [anon_sym_constinit] = ACTIONS(2549), + [anon_sym_consteval] = ACTIONS(2549), + [anon_sym_signed] = ACTIONS(2549), + [anon_sym_unsigned] = ACTIONS(2549), + [anon_sym_long] = ACTIONS(2549), + [anon_sym_short] = ACTIONS(2549), + [sym_primitive_type] = ACTIONS(2549), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_struct] = ACTIONS(2549), + [anon_sym_union] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(2549), + [anon_sym_else] = ACTIONS(2549), + [anon_sym_switch] = ACTIONS(2549), + [anon_sym_case] = ACTIONS(2549), + [anon_sym_default] = ACTIONS(2549), + [anon_sym_while] = ACTIONS(2549), + [anon_sym_do] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(2549), + [anon_sym_return] = ACTIONS(2549), + [anon_sym_break] = ACTIONS(2549), + [anon_sym_continue] = ACTIONS(2549), + [anon_sym_goto] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(2549), + [anon_sym_compl] = ACTIONS(2549), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_sizeof] = ACTIONS(2549), + [sym_number_literal] = ACTIONS(2551), + [anon_sym_L_SQUOTE] = ACTIONS(2551), + [anon_sym_u_SQUOTE] = ACTIONS(2551), + [anon_sym_U_SQUOTE] = ACTIONS(2551), + [anon_sym_u8_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_L_DQUOTE] = ACTIONS(2551), + [anon_sym_u_DQUOTE] = ACTIONS(2551), + [anon_sym_U_DQUOTE] = ACTIONS(2551), + [anon_sym_u8_DQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [sym_true] = ACTIONS(2549), + [sym_false] = ACTIONS(2549), + [sym_null] = ACTIONS(2549), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2549), + [anon_sym_decltype] = ACTIONS(2549), + [anon_sym_virtual] = ACTIONS(2549), + [anon_sym_explicit] = ACTIONS(2549), + [anon_sym_typename] = ACTIONS(2549), + [anon_sym_template] = ACTIONS(2549), + [anon_sym_operator] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2549), + [anon_sym_delete] = ACTIONS(2549), + [anon_sym_throw] = ACTIONS(2549), + [anon_sym_namespace] = ACTIONS(2549), + [anon_sym_using] = ACTIONS(2549), + [anon_sym_static_assert] = ACTIONS(2549), + [anon_sym_concept] = ACTIONS(2549), + [anon_sym_co_return] = ACTIONS(2549), + [anon_sym_co_yield] = ACTIONS(2549), + [anon_sym_R_DQUOTE] = ACTIONS(2551), + [anon_sym_LR_DQUOTE] = ACTIONS(2551), + [anon_sym_uR_DQUOTE] = ACTIONS(2551), + [anon_sym_UR_DQUOTE] = ACTIONS(2551), + [anon_sym_u8R_DQUOTE] = ACTIONS(2551), + [anon_sym_co_await] = ACTIONS(2549), + [anon_sym_new] = ACTIONS(2549), + [anon_sym_requires] = ACTIONS(2549), + [sym_this] = ACTIONS(2549), + [sym_nullptr] = ACTIONS(2549), + }, + [460] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [461] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [462] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [463] = { + [sym_identifier] = ACTIONS(2553), + [aux_sym_preproc_include_token1] = ACTIONS(2553), + [aux_sym_preproc_def_token1] = ACTIONS(2553), + [aux_sym_preproc_if_token1] = ACTIONS(2553), + [aux_sym_preproc_if_token2] = ACTIONS(2553), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2553), + [aux_sym_preproc_else_token1] = ACTIONS(2553), + [aux_sym_preproc_elif_token1] = ACTIONS(2553), + [sym_preproc_directive] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_AMP_AMP] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_typedef] = ACTIONS(2553), + [anon_sym_extern] = ACTIONS(2553), + [anon_sym___attribute__] = ACTIONS(2553), + [anon_sym_COLON_COLON] = ACTIONS(2555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2555), + [anon_sym___declspec] = ACTIONS(2553), + [anon_sym___based] = ACTIONS(2553), + [anon_sym___cdecl] = ACTIONS(2553), + [anon_sym___clrcall] = ACTIONS(2553), + [anon_sym___stdcall] = ACTIONS(2553), + [anon_sym___fastcall] = ACTIONS(2553), + [anon_sym___thiscall] = ACTIONS(2553), + [anon_sym___vectorcall] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2553), + [anon_sym_static] = ACTIONS(2553), + [anon_sym_register] = ACTIONS(2553), + [anon_sym_inline] = ACTIONS(2553), + [anon_sym_thread_local] = ACTIONS(2553), + [anon_sym_input] = ACTIONS(2553), + [anon_sym_const] = ACTIONS(2553), + [anon_sym_volatile] = ACTIONS(2553), + [anon_sym_restrict] = ACTIONS(2553), + [anon_sym__Atomic] = ACTIONS(2553), + [anon_sym_mutable] = ACTIONS(2553), + [anon_sym_constexpr] = ACTIONS(2553), + [anon_sym_constinit] = ACTIONS(2553), + [anon_sym_consteval] = ACTIONS(2553), + [anon_sym_signed] = ACTIONS(2553), + [anon_sym_unsigned] = ACTIONS(2553), + [anon_sym_long] = ACTIONS(2553), + [anon_sym_short] = ACTIONS(2553), + [sym_primitive_type] = ACTIONS(2553), + [anon_sym_enum] = ACTIONS(2553), + [anon_sym_class] = ACTIONS(2553), + [anon_sym_struct] = ACTIONS(2553), + [anon_sym_union] = ACTIONS(2553), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_else] = ACTIONS(2553), + [anon_sym_switch] = ACTIONS(2553), + [anon_sym_case] = ACTIONS(2553), + [anon_sym_default] = ACTIONS(2553), + [anon_sym_while] = ACTIONS(2553), + [anon_sym_do] = ACTIONS(2553), + [anon_sym_for] = ACTIONS(2553), + [anon_sym_return] = ACTIONS(2553), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_goto] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2553), + [anon_sym_compl] = ACTIONS(2553), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_sizeof] = ACTIONS(2553), + [sym_number_literal] = ACTIONS(2555), + [anon_sym_L_SQUOTE] = ACTIONS(2555), + [anon_sym_u_SQUOTE] = ACTIONS(2555), + [anon_sym_U_SQUOTE] = ACTIONS(2555), + [anon_sym_u8_SQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE] = ACTIONS(2555), + [anon_sym_L_DQUOTE] = ACTIONS(2555), + [anon_sym_u_DQUOTE] = ACTIONS(2555), + [anon_sym_U_DQUOTE] = ACTIONS(2555), + [anon_sym_u8_DQUOTE] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(2555), + [sym_true] = ACTIONS(2553), + [sym_false] = ACTIONS(2553), + [sym_null] = ACTIONS(2553), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2553), + [anon_sym_decltype] = ACTIONS(2553), + [anon_sym_virtual] = ACTIONS(2553), + [anon_sym_explicit] = ACTIONS(2553), + [anon_sym_typename] = ACTIONS(2553), + [anon_sym_template] = ACTIONS(2553), + [anon_sym_operator] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2553), + [anon_sym_delete] = ACTIONS(2553), + [anon_sym_throw] = ACTIONS(2553), + [anon_sym_namespace] = ACTIONS(2553), + [anon_sym_using] = ACTIONS(2553), + [anon_sym_static_assert] = ACTIONS(2553), + [anon_sym_concept] = ACTIONS(2553), + [anon_sym_co_return] = ACTIONS(2553), + [anon_sym_co_yield] = ACTIONS(2553), + [anon_sym_R_DQUOTE] = ACTIONS(2555), + [anon_sym_LR_DQUOTE] = ACTIONS(2555), + [anon_sym_uR_DQUOTE] = ACTIONS(2555), + [anon_sym_UR_DQUOTE] = ACTIONS(2555), + [anon_sym_u8R_DQUOTE] = ACTIONS(2555), + [anon_sym_co_await] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(2553), + [anon_sym_requires] = ACTIONS(2553), + [sym_this] = ACTIONS(2553), + [sym_nullptr] = ACTIONS(2553), + }, + [464] = { + [sym_identifier] = ACTIONS(2557), + [aux_sym_preproc_include_token1] = ACTIONS(2557), + [aux_sym_preproc_def_token1] = ACTIONS(2557), + [aux_sym_preproc_if_token1] = ACTIONS(2557), + [aux_sym_preproc_if_token2] = ACTIONS(2557), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2557), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2557), + [aux_sym_preproc_else_token1] = ACTIONS(2557), + [aux_sym_preproc_elif_token1] = ACTIONS(2557), + [sym_preproc_directive] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(2557), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_typedef] = ACTIONS(2557), + [anon_sym_extern] = ACTIONS(2557), + [anon_sym___attribute__] = ACTIONS(2557), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2557), + [anon_sym___based] = ACTIONS(2557), + [anon_sym___cdecl] = ACTIONS(2557), + [anon_sym___clrcall] = ACTIONS(2557), + [anon_sym___stdcall] = ACTIONS(2557), + [anon_sym___fastcall] = ACTIONS(2557), + [anon_sym___thiscall] = ACTIONS(2557), + [anon_sym___vectorcall] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2557), + [anon_sym_register] = ACTIONS(2557), + [anon_sym_inline] = ACTIONS(2557), + [anon_sym_thread_local] = ACTIONS(2557), + [anon_sym_input] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [anon_sym_volatile] = ACTIONS(2557), + [anon_sym_restrict] = ACTIONS(2557), + [anon_sym__Atomic] = ACTIONS(2557), + [anon_sym_mutable] = ACTIONS(2557), + [anon_sym_constexpr] = ACTIONS(2557), + [anon_sym_constinit] = ACTIONS(2557), + [anon_sym_consteval] = ACTIONS(2557), + [anon_sym_signed] = ACTIONS(2557), + [anon_sym_unsigned] = ACTIONS(2557), + [anon_sym_long] = ACTIONS(2557), + [anon_sym_short] = ACTIONS(2557), + [sym_primitive_type] = ACTIONS(2557), + [anon_sym_enum] = ACTIONS(2557), + [anon_sym_class] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(2557), + [anon_sym_union] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_else] = ACTIONS(2557), + [anon_sym_switch] = ACTIONS(2557), + [anon_sym_case] = ACTIONS(2557), + [anon_sym_default] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_do] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_goto] = ACTIONS(2557), + [anon_sym_not] = ACTIONS(2557), + [anon_sym_compl] = ACTIONS(2557), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_sizeof] = ACTIONS(2557), + [sym_number_literal] = ACTIONS(2559), + [anon_sym_L_SQUOTE] = ACTIONS(2559), + [anon_sym_u_SQUOTE] = ACTIONS(2559), + [anon_sym_U_SQUOTE] = ACTIONS(2559), + [anon_sym_u8_SQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(2559), + [anon_sym_L_DQUOTE] = ACTIONS(2559), + [anon_sym_u_DQUOTE] = ACTIONS(2559), + [anon_sym_U_DQUOTE] = ACTIONS(2559), + [anon_sym_u8_DQUOTE] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [sym_true] = ACTIONS(2557), + [sym_false] = ACTIONS(2557), + [sym_null] = ACTIONS(2557), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2557), + [anon_sym_decltype] = ACTIONS(2557), + [anon_sym_virtual] = ACTIONS(2557), + [anon_sym_explicit] = ACTIONS(2557), + [anon_sym_typename] = ACTIONS(2557), + [anon_sym_template] = ACTIONS(2557), + [anon_sym_operator] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2557), + [anon_sym_delete] = ACTIONS(2557), + [anon_sym_throw] = ACTIONS(2557), + [anon_sym_namespace] = ACTIONS(2557), + [anon_sym_using] = ACTIONS(2557), + [anon_sym_static_assert] = ACTIONS(2557), + [anon_sym_concept] = ACTIONS(2557), + [anon_sym_co_return] = ACTIONS(2557), + [anon_sym_co_yield] = ACTIONS(2557), + [anon_sym_R_DQUOTE] = ACTIONS(2559), + [anon_sym_LR_DQUOTE] = ACTIONS(2559), + [anon_sym_uR_DQUOTE] = ACTIONS(2559), + [anon_sym_UR_DQUOTE] = ACTIONS(2559), + [anon_sym_u8R_DQUOTE] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2557), + [anon_sym_requires] = ACTIONS(2557), + [sym_this] = ACTIONS(2557), + [sym_nullptr] = ACTIONS(2557), + }, + [465] = { + [sym_identifier] = ACTIONS(2561), + [aux_sym_preproc_include_token1] = ACTIONS(2561), + [aux_sym_preproc_def_token1] = ACTIONS(2561), + [aux_sym_preproc_if_token1] = ACTIONS(2561), + [aux_sym_preproc_if_token2] = ACTIONS(2561), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2561), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2561), + [aux_sym_preproc_else_token1] = ACTIONS(2561), + [aux_sym_preproc_elif_token1] = ACTIONS(2561), + [sym_preproc_directive] = ACTIONS(2561), + [anon_sym_LPAREN2] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_PLUS] = ACTIONS(2561), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_typedef] = ACTIONS(2561), + [anon_sym_extern] = ACTIONS(2561), + [anon_sym___attribute__] = ACTIONS(2561), + [anon_sym_COLON_COLON] = ACTIONS(2563), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), + [anon_sym___declspec] = ACTIONS(2561), + [anon_sym___based] = ACTIONS(2561), + [anon_sym___cdecl] = ACTIONS(2561), + [anon_sym___clrcall] = ACTIONS(2561), + [anon_sym___stdcall] = ACTIONS(2561), + [anon_sym___fastcall] = ACTIONS(2561), + [anon_sym___thiscall] = ACTIONS(2561), + [anon_sym___vectorcall] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2561), + [anon_sym_register] = ACTIONS(2561), + [anon_sym_inline] = ACTIONS(2561), + [anon_sym_thread_local] = ACTIONS(2561), + [anon_sym_input] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [anon_sym_volatile] = ACTIONS(2561), + [anon_sym_restrict] = ACTIONS(2561), + [anon_sym__Atomic] = ACTIONS(2561), + [anon_sym_mutable] = ACTIONS(2561), + [anon_sym_constexpr] = ACTIONS(2561), + [anon_sym_constinit] = ACTIONS(2561), + [anon_sym_consteval] = ACTIONS(2561), + [anon_sym_signed] = ACTIONS(2561), + [anon_sym_unsigned] = ACTIONS(2561), + [anon_sym_long] = ACTIONS(2561), + [anon_sym_short] = ACTIONS(2561), + [sym_primitive_type] = ACTIONS(2561), + [anon_sym_enum] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2561), + [anon_sym_struct] = ACTIONS(2561), + [anon_sym_union] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2561), + [anon_sym_switch] = ACTIONS(2561), + [anon_sym_case] = ACTIONS(2561), + [anon_sym_default] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [anon_sym_do] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), + [anon_sym_goto] = ACTIONS(2561), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_compl] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_sizeof] = ACTIONS(2561), + [sym_number_literal] = ACTIONS(2563), + [anon_sym_L_SQUOTE] = ACTIONS(2563), + [anon_sym_u_SQUOTE] = ACTIONS(2563), + [anon_sym_U_SQUOTE] = ACTIONS(2563), + [anon_sym_u8_SQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE] = ACTIONS(2563), + [anon_sym_L_DQUOTE] = ACTIONS(2563), + [anon_sym_u_DQUOTE] = ACTIONS(2563), + [anon_sym_U_DQUOTE] = ACTIONS(2563), + [anon_sym_u8_DQUOTE] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2563), + [sym_true] = ACTIONS(2561), + [sym_false] = ACTIONS(2561), + [sym_null] = ACTIONS(2561), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2561), + [anon_sym_decltype] = ACTIONS(2561), + [anon_sym_virtual] = ACTIONS(2561), + [anon_sym_explicit] = ACTIONS(2561), + [anon_sym_typename] = ACTIONS(2561), + [anon_sym_template] = ACTIONS(2561), + [anon_sym_operator] = ACTIONS(2561), + [anon_sym_try] = ACTIONS(2561), + [anon_sym_delete] = ACTIONS(2561), + [anon_sym_throw] = ACTIONS(2561), + [anon_sym_namespace] = ACTIONS(2561), + [anon_sym_using] = ACTIONS(2561), + [anon_sym_static_assert] = ACTIONS(2561), + [anon_sym_concept] = ACTIONS(2561), + [anon_sym_co_return] = ACTIONS(2561), + [anon_sym_co_yield] = ACTIONS(2561), + [anon_sym_R_DQUOTE] = ACTIONS(2563), + [anon_sym_LR_DQUOTE] = ACTIONS(2563), + [anon_sym_uR_DQUOTE] = ACTIONS(2563), + [anon_sym_UR_DQUOTE] = ACTIONS(2563), + [anon_sym_u8R_DQUOTE] = ACTIONS(2563), + [anon_sym_co_await] = ACTIONS(2561), + [anon_sym_new] = ACTIONS(2561), + [anon_sym_requires] = ACTIONS(2561), + [sym_this] = ACTIONS(2561), + [sym_nullptr] = ACTIONS(2561), + }, + [466] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [467] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [468] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [469] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3607), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5764), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(5854), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2607), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [470] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3616), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5663), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(5947), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2619), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [471] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3623), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5588), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(5982), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2621), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [472] = { + [sym_identifier] = ACTIONS(2623), + [aux_sym_preproc_include_token1] = ACTIONS(2623), + [aux_sym_preproc_def_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token2] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), + [aux_sym_preproc_else_token1] = ACTIONS(2623), + [aux_sym_preproc_elif_token1] = ACTIONS(2623), + [sym_preproc_directive] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym___attribute__] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), + [anon_sym___declspec] = ACTIONS(2623), + [anon_sym___based] = ACTIONS(2623), + [anon_sym___cdecl] = ACTIONS(2623), + [anon_sym___clrcall] = ACTIONS(2623), + [anon_sym___stdcall] = ACTIONS(2623), + [anon_sym___fastcall] = ACTIONS(2623), + [anon_sym___thiscall] = ACTIONS(2623), + [anon_sym___vectorcall] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_thread_local] = ACTIONS(2623), + [anon_sym_input] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_mutable] = ACTIONS(2623), + [anon_sym_constexpr] = ACTIONS(2623), + [anon_sym_constinit] = ACTIONS(2623), + [anon_sym_consteval] = ACTIONS(2623), + [anon_sym_signed] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_compl] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_L_SQUOTE] = ACTIONS(2625), + [anon_sym_u_SQUOTE] = ACTIONS(2625), + [anon_sym_U_SQUOTE] = ACTIONS(2625), + [anon_sym_u8_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_L_DQUOTE] = ACTIONS(2625), + [anon_sym_u_DQUOTE] = ACTIONS(2625), + [anon_sym_U_DQUOTE] = ACTIONS(2625), + [anon_sym_u8_DQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2623), + [anon_sym_decltype] = ACTIONS(2623), + [anon_sym_virtual] = ACTIONS(2623), + [anon_sym_explicit] = ACTIONS(2623), + [anon_sym_typename] = ACTIONS(2623), + [anon_sym_template] = ACTIONS(2623), + [anon_sym_operator] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_namespace] = ACTIONS(2623), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_static_assert] = ACTIONS(2623), + [anon_sym_concept] = ACTIONS(2623), + [anon_sym_co_return] = ACTIONS(2623), + [anon_sym_co_yield] = ACTIONS(2623), + [anon_sym_R_DQUOTE] = ACTIONS(2625), + [anon_sym_LR_DQUOTE] = ACTIONS(2625), + [anon_sym_uR_DQUOTE] = ACTIONS(2625), + [anon_sym_UR_DQUOTE] = ACTIONS(2625), + [anon_sym_u8R_DQUOTE] = ACTIONS(2625), + [anon_sym_co_await] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_requires] = ACTIONS(2623), + [sym_this] = ACTIONS(2623), + [sym_nullptr] = ACTIONS(2623), + }, + [473] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3644), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5661), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(5943), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [474] = { + [sym_identifier] = ACTIONS(2629), + [aux_sym_preproc_include_token1] = ACTIONS(2629), + [aux_sym_preproc_def_token1] = ACTIONS(2629), + [aux_sym_preproc_if_token1] = ACTIONS(2629), + [aux_sym_preproc_if_token2] = ACTIONS(2629), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2629), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2629), + [aux_sym_preproc_else_token1] = ACTIONS(2629), + [aux_sym_preproc_elif_token1] = ACTIONS(2629), + [sym_preproc_directive] = ACTIONS(2629), + [anon_sym_LPAREN2] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_typedef] = ACTIONS(2629), + [anon_sym_extern] = ACTIONS(2629), + [anon_sym___attribute__] = ACTIONS(2629), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2631), + [anon_sym___declspec] = ACTIONS(2629), + [anon_sym___based] = ACTIONS(2629), + [anon_sym___cdecl] = ACTIONS(2629), + [anon_sym___clrcall] = ACTIONS(2629), + [anon_sym___stdcall] = ACTIONS(2629), + [anon_sym___fastcall] = ACTIONS(2629), + [anon_sym___thiscall] = ACTIONS(2629), + [anon_sym___vectorcall] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_static] = ACTIONS(2629), + [anon_sym_register] = ACTIONS(2629), + [anon_sym_inline] = ACTIONS(2629), + [anon_sym_thread_local] = ACTIONS(2629), + [anon_sym_input] = ACTIONS(2629), + [anon_sym_const] = ACTIONS(2629), + [anon_sym_volatile] = ACTIONS(2629), + [anon_sym_restrict] = ACTIONS(2629), + [anon_sym__Atomic] = ACTIONS(2629), + [anon_sym_mutable] = ACTIONS(2629), + [anon_sym_constexpr] = ACTIONS(2629), + [anon_sym_constinit] = ACTIONS(2629), + [anon_sym_consteval] = ACTIONS(2629), + [anon_sym_signed] = ACTIONS(2629), + [anon_sym_unsigned] = ACTIONS(2629), + [anon_sym_long] = ACTIONS(2629), + [anon_sym_short] = ACTIONS(2629), + [sym_primitive_type] = ACTIONS(2629), + [anon_sym_enum] = ACTIONS(2629), + [anon_sym_class] = ACTIONS(2629), + [anon_sym_struct] = ACTIONS(2629), + [anon_sym_union] = ACTIONS(2629), + [anon_sym_if] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2629), + [anon_sym_case] = ACTIONS(2629), + [anon_sym_default] = ACTIONS(2629), + [anon_sym_while] = ACTIONS(2629), + [anon_sym_do] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2629), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_break] = ACTIONS(2629), + [anon_sym_continue] = ACTIONS(2629), + [anon_sym_goto] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_compl] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_sizeof] = ACTIONS(2629), + [sym_number_literal] = ACTIONS(2631), + [anon_sym_L_SQUOTE] = ACTIONS(2631), + [anon_sym_u_SQUOTE] = ACTIONS(2631), + [anon_sym_U_SQUOTE] = ACTIONS(2631), + [anon_sym_u8_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_L_DQUOTE] = ACTIONS(2631), + [anon_sym_u_DQUOTE] = ACTIONS(2631), + [anon_sym_U_DQUOTE] = ACTIONS(2631), + [anon_sym_u8_DQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [sym_true] = ACTIONS(2629), + [sym_false] = ACTIONS(2629), + [sym_null] = ACTIONS(2629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2629), + [anon_sym_decltype] = ACTIONS(2629), + [anon_sym_virtual] = ACTIONS(2629), + [anon_sym_explicit] = ACTIONS(2629), + [anon_sym_typename] = ACTIONS(2629), + [anon_sym_template] = ACTIONS(2629), + [anon_sym_operator] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2629), + [anon_sym_delete] = ACTIONS(2629), + [anon_sym_throw] = ACTIONS(2629), + [anon_sym_namespace] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2629), + [anon_sym_static_assert] = ACTIONS(2629), + [anon_sym_concept] = ACTIONS(2629), + [anon_sym_co_return] = ACTIONS(2629), + [anon_sym_co_yield] = ACTIONS(2629), + [anon_sym_R_DQUOTE] = ACTIONS(2631), + [anon_sym_LR_DQUOTE] = ACTIONS(2631), + [anon_sym_uR_DQUOTE] = ACTIONS(2631), + [anon_sym_UR_DQUOTE] = ACTIONS(2631), + [anon_sym_u8R_DQUOTE] = ACTIONS(2631), + [anon_sym_co_await] = ACTIONS(2629), + [anon_sym_new] = ACTIONS(2629), + [anon_sym_requires] = ACTIONS(2629), + [sym_this] = ACTIONS(2629), + [sym_nullptr] = ACTIONS(2629), + }, + [475] = { + [sym_identifier] = ACTIONS(2633), + [aux_sym_preproc_include_token1] = ACTIONS(2633), + [aux_sym_preproc_def_token1] = ACTIONS(2633), + [aux_sym_preproc_if_token1] = ACTIONS(2633), + [aux_sym_preproc_if_token2] = ACTIONS(2633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2633), + [aux_sym_preproc_else_token1] = ACTIONS(2633), + [aux_sym_preproc_elif_token1] = ACTIONS(2633), + [sym_preproc_directive] = ACTIONS(2633), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_typedef] = ACTIONS(2633), + [anon_sym_extern] = ACTIONS(2633), + [anon_sym___attribute__] = ACTIONS(2633), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2635), + [anon_sym___declspec] = ACTIONS(2633), + [anon_sym___based] = ACTIONS(2633), + [anon_sym___cdecl] = ACTIONS(2633), + [anon_sym___clrcall] = ACTIONS(2633), + [anon_sym___stdcall] = ACTIONS(2633), + [anon_sym___fastcall] = ACTIONS(2633), + [anon_sym___thiscall] = ACTIONS(2633), + [anon_sym___vectorcall] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_static] = ACTIONS(2633), + [anon_sym_register] = ACTIONS(2633), + [anon_sym_inline] = ACTIONS(2633), + [anon_sym_thread_local] = ACTIONS(2633), + [anon_sym_input] = ACTIONS(2633), + [anon_sym_const] = ACTIONS(2633), + [anon_sym_volatile] = ACTIONS(2633), + [anon_sym_restrict] = ACTIONS(2633), + [anon_sym__Atomic] = ACTIONS(2633), + [anon_sym_mutable] = ACTIONS(2633), + [anon_sym_constexpr] = ACTIONS(2633), + [anon_sym_constinit] = ACTIONS(2633), + [anon_sym_consteval] = ACTIONS(2633), + [anon_sym_signed] = ACTIONS(2633), + [anon_sym_unsigned] = ACTIONS(2633), + [anon_sym_long] = ACTIONS(2633), + [anon_sym_short] = ACTIONS(2633), + [sym_primitive_type] = ACTIONS(2633), + [anon_sym_enum] = ACTIONS(2633), + [anon_sym_class] = ACTIONS(2633), + [anon_sym_struct] = ACTIONS(2633), + [anon_sym_union] = ACTIONS(2633), + [anon_sym_if] = ACTIONS(2633), + [anon_sym_switch] = ACTIONS(2633), + [anon_sym_case] = ACTIONS(2633), + [anon_sym_default] = ACTIONS(2633), + [anon_sym_while] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_for] = ACTIONS(2633), + [anon_sym_return] = ACTIONS(2633), + [anon_sym_break] = ACTIONS(2633), + [anon_sym_continue] = ACTIONS(2633), + [anon_sym_goto] = ACTIONS(2633), + [anon_sym_not] = ACTIONS(2633), + [anon_sym_compl] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_sizeof] = ACTIONS(2633), + [sym_number_literal] = ACTIONS(2635), + [anon_sym_L_SQUOTE] = ACTIONS(2635), + [anon_sym_u_SQUOTE] = ACTIONS(2635), + [anon_sym_U_SQUOTE] = ACTIONS(2635), + [anon_sym_u8_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_L_DQUOTE] = ACTIONS(2635), + [anon_sym_u_DQUOTE] = ACTIONS(2635), + [anon_sym_U_DQUOTE] = ACTIONS(2635), + [anon_sym_u8_DQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym_true] = ACTIONS(2633), + [sym_false] = ACTIONS(2633), + [sym_null] = ACTIONS(2633), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2633), + [anon_sym_decltype] = ACTIONS(2633), + [anon_sym_virtual] = ACTIONS(2633), + [anon_sym_explicit] = ACTIONS(2633), + [anon_sym_typename] = ACTIONS(2633), + [anon_sym_template] = ACTIONS(2633), + [anon_sym_operator] = ACTIONS(2633), + [anon_sym_try] = ACTIONS(2633), + [anon_sym_delete] = ACTIONS(2633), + [anon_sym_throw] = ACTIONS(2633), + [anon_sym_namespace] = ACTIONS(2633), + [anon_sym_using] = ACTIONS(2633), + [anon_sym_static_assert] = ACTIONS(2633), + [anon_sym_concept] = ACTIONS(2633), + [anon_sym_co_return] = ACTIONS(2633), + [anon_sym_co_yield] = ACTIONS(2633), + [anon_sym_R_DQUOTE] = ACTIONS(2635), + [anon_sym_LR_DQUOTE] = ACTIONS(2635), + [anon_sym_uR_DQUOTE] = ACTIONS(2635), + [anon_sym_UR_DQUOTE] = ACTIONS(2635), + [anon_sym_u8R_DQUOTE] = ACTIONS(2635), + [anon_sym_co_await] = ACTIONS(2633), + [anon_sym_new] = ACTIONS(2633), + [anon_sym_requires] = ACTIONS(2633), + [sym_this] = ACTIONS(2633), + [sym_nullptr] = ACTIONS(2633), + }, + [476] = { + [sym_identifier] = ACTIONS(2637), + [aux_sym_preproc_include_token1] = ACTIONS(2637), + [aux_sym_preproc_def_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token2] = ACTIONS(2637), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), + [aux_sym_preproc_else_token1] = ACTIONS(2637), + [aux_sym_preproc_elif_token1] = ACTIONS(2637), + [sym_preproc_directive] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_typedef] = ACTIONS(2637), + [anon_sym_extern] = ACTIONS(2637), + [anon_sym___attribute__] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2639), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), + [anon_sym___declspec] = ACTIONS(2637), + [anon_sym___based] = ACTIONS(2637), + [anon_sym___cdecl] = ACTIONS(2637), + [anon_sym___clrcall] = ACTIONS(2637), + [anon_sym___stdcall] = ACTIONS(2637), + [anon_sym___fastcall] = ACTIONS(2637), + [anon_sym___thiscall] = ACTIONS(2637), + [anon_sym___vectorcall] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_static] = ACTIONS(2637), + [anon_sym_register] = ACTIONS(2637), + [anon_sym_inline] = ACTIONS(2637), + [anon_sym_thread_local] = ACTIONS(2637), + [anon_sym_input] = ACTIONS(2637), + [anon_sym_const] = ACTIONS(2637), + [anon_sym_volatile] = ACTIONS(2637), + [anon_sym_restrict] = ACTIONS(2637), + [anon_sym__Atomic] = ACTIONS(2637), + [anon_sym_mutable] = ACTIONS(2637), + [anon_sym_constexpr] = ACTIONS(2637), + [anon_sym_constinit] = ACTIONS(2637), + [anon_sym_consteval] = ACTIONS(2637), + [anon_sym_signed] = ACTIONS(2637), + [anon_sym_unsigned] = ACTIONS(2637), + [anon_sym_long] = ACTIONS(2637), + [anon_sym_short] = ACTIONS(2637), + [sym_primitive_type] = ACTIONS(2637), + [anon_sym_enum] = ACTIONS(2637), + [anon_sym_class] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2637), + [anon_sym_union] = ACTIONS(2637), + [anon_sym_if] = ACTIONS(2637), + [anon_sym_switch] = ACTIONS(2637), + [anon_sym_case] = ACTIONS(2637), + [anon_sym_default] = ACTIONS(2637), + [anon_sym_while] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_for] = ACTIONS(2637), + [anon_sym_return] = ACTIONS(2637), + [anon_sym_break] = ACTIONS(2637), + [anon_sym_continue] = ACTIONS(2637), + [anon_sym_goto] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_compl] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2637), + [sym_number_literal] = ACTIONS(2639), + [anon_sym_L_SQUOTE] = ACTIONS(2639), + [anon_sym_u_SQUOTE] = ACTIONS(2639), + [anon_sym_U_SQUOTE] = ACTIONS(2639), + [anon_sym_u8_SQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_L_DQUOTE] = ACTIONS(2639), + [anon_sym_u_DQUOTE] = ACTIONS(2639), + [anon_sym_U_DQUOTE] = ACTIONS(2639), + [anon_sym_u8_DQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [sym_true] = ACTIONS(2637), + [sym_false] = ACTIONS(2637), + [sym_null] = ACTIONS(2637), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2637), + [anon_sym_decltype] = ACTIONS(2637), + [anon_sym_virtual] = ACTIONS(2637), + [anon_sym_explicit] = ACTIONS(2637), + [anon_sym_typename] = ACTIONS(2637), + [anon_sym_template] = ACTIONS(2637), + [anon_sym_operator] = ACTIONS(2637), + [anon_sym_try] = ACTIONS(2637), + [anon_sym_delete] = ACTIONS(2637), + [anon_sym_throw] = ACTIONS(2637), + [anon_sym_namespace] = ACTIONS(2637), + [anon_sym_using] = ACTIONS(2637), + [anon_sym_static_assert] = ACTIONS(2637), + [anon_sym_concept] = ACTIONS(2637), + [anon_sym_co_return] = ACTIONS(2637), + [anon_sym_co_yield] = ACTIONS(2637), + [anon_sym_R_DQUOTE] = ACTIONS(2639), + [anon_sym_LR_DQUOTE] = ACTIONS(2639), + [anon_sym_uR_DQUOTE] = ACTIONS(2639), + [anon_sym_UR_DQUOTE] = ACTIONS(2639), + [anon_sym_u8R_DQUOTE] = ACTIONS(2639), + [anon_sym_co_await] = ACTIONS(2637), + [anon_sym_new] = ACTIONS(2637), + [anon_sym_requires] = ACTIONS(2637), + [sym_this] = ACTIONS(2637), + [sym_nullptr] = ACTIONS(2637), + }, + [477] = { + [sym_identifier] = ACTIONS(2641), + [aux_sym_preproc_include_token1] = ACTIONS(2641), + [aux_sym_preproc_def_token1] = ACTIONS(2641), + [aux_sym_preproc_if_token1] = ACTIONS(2641), + [aux_sym_preproc_if_token2] = ACTIONS(2641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), + [aux_sym_preproc_else_token1] = ACTIONS(2641), + [aux_sym_preproc_elif_token1] = ACTIONS(2641), + [sym_preproc_directive] = ACTIONS(2641), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_AMP_AMP] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_typedef] = ACTIONS(2641), + [anon_sym_extern] = ACTIONS(2641), + [anon_sym___attribute__] = ACTIONS(2641), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), + [anon_sym___declspec] = ACTIONS(2641), + [anon_sym___based] = ACTIONS(2641), + [anon_sym___cdecl] = ACTIONS(2641), + [anon_sym___clrcall] = ACTIONS(2641), + [anon_sym___stdcall] = ACTIONS(2641), + [anon_sym___fastcall] = ACTIONS(2641), + [anon_sym___thiscall] = ACTIONS(2641), + [anon_sym___vectorcall] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_static] = ACTIONS(2641), + [anon_sym_register] = ACTIONS(2641), + [anon_sym_inline] = ACTIONS(2641), + [anon_sym_thread_local] = ACTIONS(2641), + [anon_sym_input] = ACTIONS(2641), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_volatile] = ACTIONS(2641), + [anon_sym_restrict] = ACTIONS(2641), + [anon_sym__Atomic] = ACTIONS(2641), + [anon_sym_mutable] = ACTIONS(2641), + [anon_sym_constexpr] = ACTIONS(2641), + [anon_sym_constinit] = ACTIONS(2641), + [anon_sym_consteval] = ACTIONS(2641), + [anon_sym_signed] = ACTIONS(2641), + [anon_sym_unsigned] = ACTIONS(2641), + [anon_sym_long] = ACTIONS(2641), + [anon_sym_short] = ACTIONS(2641), + [sym_primitive_type] = ACTIONS(2641), + [anon_sym_enum] = ACTIONS(2641), + [anon_sym_class] = ACTIONS(2641), + [anon_sym_struct] = ACTIONS(2641), + [anon_sym_union] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2641), + [anon_sym_switch] = ACTIONS(2641), + [anon_sym_case] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2641), + [anon_sym_while] = ACTIONS(2641), + [anon_sym_do] = ACTIONS(2641), + [anon_sym_for] = ACTIONS(2641), + [anon_sym_return] = ACTIONS(2641), + [anon_sym_break] = ACTIONS(2641), + [anon_sym_continue] = ACTIONS(2641), + [anon_sym_goto] = ACTIONS(2641), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_compl] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_sizeof] = ACTIONS(2641), + [sym_number_literal] = ACTIONS(2643), + [anon_sym_L_SQUOTE] = ACTIONS(2643), + [anon_sym_u_SQUOTE] = ACTIONS(2643), + [anon_sym_U_SQUOTE] = ACTIONS(2643), + [anon_sym_u8_SQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_L_DQUOTE] = ACTIONS(2643), + [anon_sym_u_DQUOTE] = ACTIONS(2643), + [anon_sym_U_DQUOTE] = ACTIONS(2643), + [anon_sym_u8_DQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [sym_true] = ACTIONS(2641), + [sym_false] = ACTIONS(2641), + [sym_null] = ACTIONS(2641), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2641), + [anon_sym_decltype] = ACTIONS(2641), + [anon_sym_virtual] = ACTIONS(2641), + [anon_sym_explicit] = ACTIONS(2641), + [anon_sym_typename] = ACTIONS(2641), + [anon_sym_template] = ACTIONS(2641), + [anon_sym_operator] = ACTIONS(2641), + [anon_sym_try] = ACTIONS(2641), + [anon_sym_delete] = ACTIONS(2641), + [anon_sym_throw] = ACTIONS(2641), + [anon_sym_namespace] = ACTIONS(2641), + [anon_sym_using] = ACTIONS(2641), + [anon_sym_static_assert] = ACTIONS(2641), + [anon_sym_concept] = ACTIONS(2641), + [anon_sym_co_return] = ACTIONS(2641), + [anon_sym_co_yield] = ACTIONS(2641), + [anon_sym_R_DQUOTE] = ACTIONS(2643), + [anon_sym_LR_DQUOTE] = ACTIONS(2643), + [anon_sym_uR_DQUOTE] = ACTIONS(2643), + [anon_sym_UR_DQUOTE] = ACTIONS(2643), + [anon_sym_u8R_DQUOTE] = ACTIONS(2643), + [anon_sym_co_await] = ACTIONS(2641), + [anon_sym_new] = ACTIONS(2641), + [anon_sym_requires] = ACTIONS(2641), + [sym_this] = ACTIONS(2641), + [sym_nullptr] = ACTIONS(2641), + }, + [478] = { + [sym_identifier] = ACTIONS(2645), + [aux_sym_preproc_include_token1] = ACTIONS(2645), + [aux_sym_preproc_def_token1] = ACTIONS(2645), + [aux_sym_preproc_if_token1] = ACTIONS(2645), + [aux_sym_preproc_if_token2] = ACTIONS(2645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2645), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2645), + [aux_sym_preproc_else_token1] = ACTIONS(2645), + [aux_sym_preproc_elif_token1] = ACTIONS(2645), + [sym_preproc_directive] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_typedef] = ACTIONS(2645), + [anon_sym_extern] = ACTIONS(2645), + [anon_sym___attribute__] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2647), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2647), + [anon_sym___declspec] = ACTIONS(2645), + [anon_sym___based] = ACTIONS(2645), + [anon_sym___cdecl] = ACTIONS(2645), + [anon_sym___clrcall] = ACTIONS(2645), + [anon_sym___stdcall] = ACTIONS(2645), + [anon_sym___fastcall] = ACTIONS(2645), + [anon_sym___thiscall] = ACTIONS(2645), + [anon_sym___vectorcall] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_static] = ACTIONS(2645), + [anon_sym_register] = ACTIONS(2645), + [anon_sym_inline] = ACTIONS(2645), + [anon_sym_thread_local] = ACTIONS(2645), + [anon_sym_input] = ACTIONS(2645), + [anon_sym_const] = ACTIONS(2645), + [anon_sym_volatile] = ACTIONS(2645), + [anon_sym_restrict] = ACTIONS(2645), + [anon_sym__Atomic] = ACTIONS(2645), + [anon_sym_mutable] = ACTIONS(2645), + [anon_sym_constexpr] = ACTIONS(2645), + [anon_sym_constinit] = ACTIONS(2645), + [anon_sym_consteval] = ACTIONS(2645), + [anon_sym_signed] = ACTIONS(2645), + [anon_sym_unsigned] = ACTIONS(2645), + [anon_sym_long] = ACTIONS(2645), + [anon_sym_short] = ACTIONS(2645), + [sym_primitive_type] = ACTIONS(2645), + [anon_sym_enum] = ACTIONS(2645), + [anon_sym_class] = ACTIONS(2645), + [anon_sym_struct] = ACTIONS(2645), + [anon_sym_union] = ACTIONS(2645), + [anon_sym_if] = ACTIONS(2645), + [anon_sym_switch] = ACTIONS(2645), + [anon_sym_case] = ACTIONS(2645), + [anon_sym_default] = ACTIONS(2645), + [anon_sym_while] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_for] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2645), + [anon_sym_continue] = ACTIONS(2645), + [anon_sym_goto] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_compl] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_sizeof] = ACTIONS(2645), + [sym_number_literal] = ACTIONS(2647), + [anon_sym_L_SQUOTE] = ACTIONS(2647), + [anon_sym_u_SQUOTE] = ACTIONS(2647), + [anon_sym_U_SQUOTE] = ACTIONS(2647), + [anon_sym_u8_SQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_L_DQUOTE] = ACTIONS(2647), + [anon_sym_u_DQUOTE] = ACTIONS(2647), + [anon_sym_U_DQUOTE] = ACTIONS(2647), + [anon_sym_u8_DQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [sym_true] = ACTIONS(2645), + [sym_false] = ACTIONS(2645), + [sym_null] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2645), + [anon_sym_decltype] = ACTIONS(2645), + [anon_sym_virtual] = ACTIONS(2645), + [anon_sym_explicit] = ACTIONS(2645), + [anon_sym_typename] = ACTIONS(2645), + [anon_sym_template] = ACTIONS(2645), + [anon_sym_operator] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2645), + [anon_sym_delete] = ACTIONS(2645), + [anon_sym_throw] = ACTIONS(2645), + [anon_sym_namespace] = ACTIONS(2645), + [anon_sym_using] = ACTIONS(2645), + [anon_sym_static_assert] = ACTIONS(2645), + [anon_sym_concept] = ACTIONS(2645), + [anon_sym_co_return] = ACTIONS(2645), + [anon_sym_co_yield] = ACTIONS(2645), + [anon_sym_R_DQUOTE] = ACTIONS(2647), + [anon_sym_LR_DQUOTE] = ACTIONS(2647), + [anon_sym_uR_DQUOTE] = ACTIONS(2647), + [anon_sym_UR_DQUOTE] = ACTIONS(2647), + [anon_sym_u8R_DQUOTE] = ACTIONS(2647), + [anon_sym_co_await] = ACTIONS(2645), + [anon_sym_new] = ACTIONS(2645), + [anon_sym_requires] = ACTIONS(2645), + [sym_this] = ACTIONS(2645), + [sym_nullptr] = ACTIONS(2645), + }, + [479] = { + [sym_identifier] = ACTIONS(2649), + [aux_sym_preproc_include_token1] = ACTIONS(2649), + [aux_sym_preproc_def_token1] = ACTIONS(2649), + [aux_sym_preproc_if_token1] = ACTIONS(2649), + [aux_sym_preproc_if_token2] = ACTIONS(2649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), + [aux_sym_preproc_else_token1] = ACTIONS(2649), + [aux_sym_preproc_elif_token1] = ACTIONS(2649), + [sym_preproc_directive] = ACTIONS(2649), + [anon_sym_LPAREN2] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_typedef] = ACTIONS(2649), + [anon_sym_extern] = ACTIONS(2649), + [anon_sym___attribute__] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), + [anon_sym___declspec] = ACTIONS(2649), + [anon_sym___based] = ACTIONS(2649), + [anon_sym___cdecl] = ACTIONS(2649), + [anon_sym___clrcall] = ACTIONS(2649), + [anon_sym___stdcall] = ACTIONS(2649), + [anon_sym___fastcall] = ACTIONS(2649), + [anon_sym___thiscall] = ACTIONS(2649), + [anon_sym___vectorcall] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_static] = ACTIONS(2649), + [anon_sym_register] = ACTIONS(2649), + [anon_sym_inline] = ACTIONS(2649), + [anon_sym_thread_local] = ACTIONS(2649), + [anon_sym_input] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_volatile] = ACTIONS(2649), + [anon_sym_restrict] = ACTIONS(2649), + [anon_sym__Atomic] = ACTIONS(2649), + [anon_sym_mutable] = ACTIONS(2649), + [anon_sym_constexpr] = ACTIONS(2649), + [anon_sym_constinit] = ACTIONS(2649), + [anon_sym_consteval] = ACTIONS(2649), + [anon_sym_signed] = ACTIONS(2649), + [anon_sym_unsigned] = ACTIONS(2649), + [anon_sym_long] = ACTIONS(2649), + [anon_sym_short] = ACTIONS(2649), + [sym_primitive_type] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_class] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_switch] = ACTIONS(2649), + [anon_sym_case] = ACTIONS(2649), + [anon_sym_default] = ACTIONS(2649), + [anon_sym_while] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_compl] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_sizeof] = ACTIONS(2649), + [sym_number_literal] = ACTIONS(2651), + [anon_sym_L_SQUOTE] = ACTIONS(2651), + [anon_sym_u_SQUOTE] = ACTIONS(2651), + [anon_sym_U_SQUOTE] = ACTIONS(2651), + [anon_sym_u8_SQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_L_DQUOTE] = ACTIONS(2651), + [anon_sym_u_DQUOTE] = ACTIONS(2651), + [anon_sym_U_DQUOTE] = ACTIONS(2651), + [anon_sym_u8_DQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_null] = ACTIONS(2649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2649), + [anon_sym_decltype] = ACTIONS(2649), + [anon_sym_virtual] = ACTIONS(2649), + [anon_sym_explicit] = ACTIONS(2649), + [anon_sym_typename] = ACTIONS(2649), + [anon_sym_template] = ACTIONS(2649), + [anon_sym_operator] = ACTIONS(2649), + [anon_sym_try] = ACTIONS(2649), + [anon_sym_delete] = ACTIONS(2649), + [anon_sym_throw] = ACTIONS(2649), + [anon_sym_namespace] = ACTIONS(2649), + [anon_sym_using] = ACTIONS(2649), + [anon_sym_static_assert] = ACTIONS(2649), + [anon_sym_concept] = ACTIONS(2649), + [anon_sym_co_return] = ACTIONS(2649), + [anon_sym_co_yield] = ACTIONS(2649), + [anon_sym_R_DQUOTE] = ACTIONS(2651), + [anon_sym_LR_DQUOTE] = ACTIONS(2651), + [anon_sym_uR_DQUOTE] = ACTIONS(2651), + [anon_sym_UR_DQUOTE] = ACTIONS(2651), + [anon_sym_u8R_DQUOTE] = ACTIONS(2651), + [anon_sym_co_await] = ACTIONS(2649), + [anon_sym_new] = ACTIONS(2649), + [anon_sym_requires] = ACTIONS(2649), + [sym_this] = ACTIONS(2649), + [sym_nullptr] = ACTIONS(2649), + }, + [480] = { + [sym_identifier] = ACTIONS(2653), + [aux_sym_preproc_include_token1] = ACTIONS(2653), + [aux_sym_preproc_def_token1] = ACTIONS(2653), + [aux_sym_preproc_if_token1] = ACTIONS(2653), + [aux_sym_preproc_if_token2] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2653), + [aux_sym_preproc_else_token1] = ACTIONS(2653), + [aux_sym_preproc_elif_token1] = ACTIONS(2653), + [sym_preproc_directive] = ACTIONS(2653), + [anon_sym_LPAREN2] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_TILDE] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_AMP_AMP] = ACTIONS(2655), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_typedef] = ACTIONS(2653), + [anon_sym_extern] = ACTIONS(2653), + [anon_sym___attribute__] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2655), + [anon_sym___declspec] = ACTIONS(2653), + [anon_sym___based] = ACTIONS(2653), + [anon_sym___cdecl] = ACTIONS(2653), + [anon_sym___clrcall] = ACTIONS(2653), + [anon_sym___stdcall] = ACTIONS(2653), + [anon_sym___fastcall] = ACTIONS(2653), + [anon_sym___thiscall] = ACTIONS(2653), + [anon_sym___vectorcall] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_static] = ACTIONS(2653), + [anon_sym_register] = ACTIONS(2653), + [anon_sym_inline] = ACTIONS(2653), + [anon_sym_thread_local] = ACTIONS(2653), + [anon_sym_input] = ACTIONS(2653), + [anon_sym_const] = ACTIONS(2653), + [anon_sym_volatile] = ACTIONS(2653), + [anon_sym_restrict] = ACTIONS(2653), + [anon_sym__Atomic] = ACTIONS(2653), + [anon_sym_mutable] = ACTIONS(2653), + [anon_sym_constexpr] = ACTIONS(2653), + [anon_sym_constinit] = ACTIONS(2653), + [anon_sym_consteval] = ACTIONS(2653), + [anon_sym_signed] = ACTIONS(2653), + [anon_sym_unsigned] = ACTIONS(2653), + [anon_sym_long] = ACTIONS(2653), + [anon_sym_short] = ACTIONS(2653), + [sym_primitive_type] = ACTIONS(2653), + [anon_sym_enum] = ACTIONS(2653), + [anon_sym_class] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_switch] = ACTIONS(2653), + [anon_sym_case] = ACTIONS(2653), + [anon_sym_default] = ACTIONS(2653), + [anon_sym_while] = ACTIONS(2653), + [anon_sym_do] = ACTIONS(2653), + [anon_sym_for] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_break] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2653), + [anon_sym_goto] = ACTIONS(2653), + [anon_sym_not] = ACTIONS(2653), + [anon_sym_compl] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_PLUS_PLUS] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2653), + [sym_number_literal] = ACTIONS(2655), + [anon_sym_L_SQUOTE] = ACTIONS(2655), + [anon_sym_u_SQUOTE] = ACTIONS(2655), + [anon_sym_U_SQUOTE] = ACTIONS(2655), + [anon_sym_u8_SQUOTE] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_L_DQUOTE] = ACTIONS(2655), + [anon_sym_u_DQUOTE] = ACTIONS(2655), + [anon_sym_U_DQUOTE] = ACTIONS(2655), + [anon_sym_u8_DQUOTE] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym_true] = ACTIONS(2653), + [sym_false] = ACTIONS(2653), + [sym_null] = ACTIONS(2653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2653), + [anon_sym_decltype] = ACTIONS(2653), + [anon_sym_virtual] = ACTIONS(2653), + [anon_sym_explicit] = ACTIONS(2653), + [anon_sym_typename] = ACTIONS(2653), + [anon_sym_template] = ACTIONS(2653), + [anon_sym_operator] = ACTIONS(2653), + [anon_sym_try] = ACTIONS(2653), + [anon_sym_delete] = ACTIONS(2653), + [anon_sym_throw] = ACTIONS(2653), + [anon_sym_namespace] = ACTIONS(2653), + [anon_sym_using] = ACTIONS(2653), + [anon_sym_static_assert] = ACTIONS(2653), + [anon_sym_concept] = ACTIONS(2653), + [anon_sym_co_return] = ACTIONS(2653), + [anon_sym_co_yield] = ACTIONS(2653), + [anon_sym_R_DQUOTE] = ACTIONS(2655), + [anon_sym_LR_DQUOTE] = ACTIONS(2655), + [anon_sym_uR_DQUOTE] = ACTIONS(2655), + [anon_sym_UR_DQUOTE] = ACTIONS(2655), + [anon_sym_u8R_DQUOTE] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2653), + [anon_sym_new] = ACTIONS(2653), + [anon_sym_requires] = ACTIONS(2653), + [sym_this] = ACTIONS(2653), + [sym_nullptr] = ACTIONS(2653), + }, + [481] = { + [sym_identifier] = ACTIONS(2657), + [aux_sym_preproc_include_token1] = ACTIONS(2657), + [aux_sym_preproc_def_token1] = ACTIONS(2657), + [aux_sym_preproc_if_token1] = ACTIONS(2657), + [aux_sym_preproc_if_token2] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2657), + [aux_sym_preproc_else_token1] = ACTIONS(2657), + [aux_sym_preproc_elif_token1] = ACTIONS(2657), + [sym_preproc_directive] = ACTIONS(2657), + [anon_sym_LPAREN2] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2659), + [anon_sym_typedef] = ACTIONS(2657), + [anon_sym_extern] = ACTIONS(2657), + [anon_sym___attribute__] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2659), + [anon_sym___declspec] = ACTIONS(2657), + [anon_sym___based] = ACTIONS(2657), + [anon_sym___cdecl] = ACTIONS(2657), + [anon_sym___clrcall] = ACTIONS(2657), + [anon_sym___stdcall] = ACTIONS(2657), + [anon_sym___fastcall] = ACTIONS(2657), + [anon_sym___thiscall] = ACTIONS(2657), + [anon_sym___vectorcall] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_register] = ACTIONS(2657), + [anon_sym_inline] = ACTIONS(2657), + [anon_sym_thread_local] = ACTIONS(2657), + [anon_sym_input] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_volatile] = ACTIONS(2657), + [anon_sym_restrict] = ACTIONS(2657), + [anon_sym__Atomic] = ACTIONS(2657), + [anon_sym_mutable] = ACTIONS(2657), + [anon_sym_constexpr] = ACTIONS(2657), + [anon_sym_constinit] = ACTIONS(2657), + [anon_sym_consteval] = ACTIONS(2657), + [anon_sym_signed] = ACTIONS(2657), + [anon_sym_unsigned] = ACTIONS(2657), + [anon_sym_long] = ACTIONS(2657), + [anon_sym_short] = ACTIONS(2657), + [sym_primitive_type] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_class] = ACTIONS(2657), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_switch] = ACTIONS(2657), + [anon_sym_case] = ACTIONS(2657), + [anon_sym_default] = ACTIONS(2657), + [anon_sym_while] = ACTIONS(2657), + [anon_sym_do] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_goto] = ACTIONS(2657), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_compl] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_sizeof] = ACTIONS(2657), + [sym_number_literal] = ACTIONS(2659), + [anon_sym_L_SQUOTE] = ACTIONS(2659), + [anon_sym_u_SQUOTE] = ACTIONS(2659), + [anon_sym_U_SQUOTE] = ACTIONS(2659), + [anon_sym_u8_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_L_DQUOTE] = ACTIONS(2659), + [anon_sym_u_DQUOTE] = ACTIONS(2659), + [anon_sym_U_DQUOTE] = ACTIONS(2659), + [anon_sym_u8_DQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [sym_true] = ACTIONS(2657), + [sym_false] = ACTIONS(2657), + [sym_null] = ACTIONS(2657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2657), + [anon_sym_decltype] = ACTIONS(2657), + [anon_sym_virtual] = ACTIONS(2657), + [anon_sym_explicit] = ACTIONS(2657), + [anon_sym_typename] = ACTIONS(2657), + [anon_sym_template] = ACTIONS(2657), + [anon_sym_operator] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2657), + [anon_sym_delete] = ACTIONS(2657), + [anon_sym_throw] = ACTIONS(2657), + [anon_sym_namespace] = ACTIONS(2657), + [anon_sym_using] = ACTIONS(2657), + [anon_sym_static_assert] = ACTIONS(2657), + [anon_sym_concept] = ACTIONS(2657), + [anon_sym_co_return] = ACTIONS(2657), + [anon_sym_co_yield] = ACTIONS(2657), + [anon_sym_R_DQUOTE] = ACTIONS(2659), + [anon_sym_LR_DQUOTE] = ACTIONS(2659), + [anon_sym_uR_DQUOTE] = ACTIONS(2659), + [anon_sym_UR_DQUOTE] = ACTIONS(2659), + [anon_sym_u8R_DQUOTE] = ACTIONS(2659), + [anon_sym_co_await] = ACTIONS(2657), + [anon_sym_new] = ACTIONS(2657), + [anon_sym_requires] = ACTIONS(2657), + [sym_this] = ACTIONS(2657), + [sym_nullptr] = ACTIONS(2657), + }, + [482] = { + [sym_identifier] = ACTIONS(2661), + [aux_sym_preproc_include_token1] = ACTIONS(2661), + [aux_sym_preproc_def_token1] = ACTIONS(2661), + [aux_sym_preproc_if_token1] = ACTIONS(2661), + [aux_sym_preproc_if_token2] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2661), + [aux_sym_preproc_else_token1] = ACTIONS(2661), + [aux_sym_preproc_elif_token1] = ACTIONS(2661), + [sym_preproc_directive] = ACTIONS(2661), + [anon_sym_LPAREN2] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_AMP_AMP] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym___attribute__] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2663), + [anon_sym___declspec] = ACTIONS(2661), + [anon_sym___based] = ACTIONS(2661), + [anon_sym___cdecl] = ACTIONS(2661), + [anon_sym___clrcall] = ACTIONS(2661), + [anon_sym___stdcall] = ACTIONS(2661), + [anon_sym___fastcall] = ACTIONS(2661), + [anon_sym___thiscall] = ACTIONS(2661), + [anon_sym___vectorcall] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_register] = ACTIONS(2661), + [anon_sym_inline] = ACTIONS(2661), + [anon_sym_thread_local] = ACTIONS(2661), + [anon_sym_input] = ACTIONS(2661), + [anon_sym_const] = ACTIONS(2661), + [anon_sym_volatile] = ACTIONS(2661), + [anon_sym_restrict] = ACTIONS(2661), + [anon_sym__Atomic] = ACTIONS(2661), + [anon_sym_mutable] = ACTIONS(2661), + [anon_sym_constexpr] = ACTIONS(2661), + [anon_sym_constinit] = ACTIONS(2661), + [anon_sym_consteval] = ACTIONS(2661), + [anon_sym_signed] = ACTIONS(2661), + [anon_sym_unsigned] = ACTIONS(2661), + [anon_sym_long] = ACTIONS(2661), + [anon_sym_short] = ACTIONS(2661), + [sym_primitive_type] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_class] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(2661), + [anon_sym_union] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_switch] = ACTIONS(2661), + [anon_sym_case] = ACTIONS(2661), + [anon_sym_default] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2661), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_goto] = ACTIONS(2661), + [anon_sym_not] = ACTIONS(2661), + [anon_sym_compl] = ACTIONS(2661), + [anon_sym_DASH_DASH] = ACTIONS(2663), + [anon_sym_PLUS_PLUS] = ACTIONS(2663), + [anon_sym_sizeof] = ACTIONS(2661), + [sym_number_literal] = ACTIONS(2663), + [anon_sym_L_SQUOTE] = ACTIONS(2663), + [anon_sym_u_SQUOTE] = ACTIONS(2663), + [anon_sym_U_SQUOTE] = ACTIONS(2663), + [anon_sym_u8_SQUOTE] = ACTIONS(2663), + [anon_sym_SQUOTE] = ACTIONS(2663), + [anon_sym_L_DQUOTE] = ACTIONS(2663), + [anon_sym_u_DQUOTE] = ACTIONS(2663), + [anon_sym_U_DQUOTE] = ACTIONS(2663), + [anon_sym_u8_DQUOTE] = ACTIONS(2663), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym_true] = ACTIONS(2661), + [sym_false] = ACTIONS(2661), + [sym_null] = ACTIONS(2661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2661), + [anon_sym_decltype] = ACTIONS(2661), + [anon_sym_virtual] = ACTIONS(2661), + [anon_sym_explicit] = ACTIONS(2661), + [anon_sym_typename] = ACTIONS(2661), + [anon_sym_template] = ACTIONS(2661), + [anon_sym_operator] = ACTIONS(2661), + [anon_sym_try] = ACTIONS(2661), + [anon_sym_delete] = ACTIONS(2661), + [anon_sym_throw] = ACTIONS(2661), + [anon_sym_namespace] = ACTIONS(2661), + [anon_sym_using] = ACTIONS(2661), + [anon_sym_static_assert] = ACTIONS(2661), + [anon_sym_concept] = ACTIONS(2661), + [anon_sym_co_return] = ACTIONS(2661), + [anon_sym_co_yield] = ACTIONS(2661), + [anon_sym_R_DQUOTE] = ACTIONS(2663), + [anon_sym_LR_DQUOTE] = ACTIONS(2663), + [anon_sym_uR_DQUOTE] = ACTIONS(2663), + [anon_sym_UR_DQUOTE] = ACTIONS(2663), + [anon_sym_u8R_DQUOTE] = ACTIONS(2663), + [anon_sym_co_await] = ACTIONS(2661), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_requires] = ACTIONS(2661), + [sym_this] = ACTIONS(2661), + [sym_nullptr] = ACTIONS(2661), + }, + [483] = { + [sym_identifier] = ACTIONS(2665), + [aux_sym_preproc_include_token1] = ACTIONS(2665), + [aux_sym_preproc_def_token1] = ACTIONS(2665), + [aux_sym_preproc_if_token1] = ACTIONS(2665), + [aux_sym_preproc_if_token2] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), + [aux_sym_preproc_else_token1] = ACTIONS(2665), + [aux_sym_preproc_elif_token1] = ACTIONS(2665), + [sym_preproc_directive] = ACTIONS(2665), + [anon_sym_LPAREN2] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2665), + [anon_sym_extern] = ACTIONS(2665), + [anon_sym___attribute__] = ACTIONS(2665), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), + [anon_sym___declspec] = ACTIONS(2665), + [anon_sym___based] = ACTIONS(2665), + [anon_sym___cdecl] = ACTIONS(2665), + [anon_sym___clrcall] = ACTIONS(2665), + [anon_sym___stdcall] = ACTIONS(2665), + [anon_sym___fastcall] = ACTIONS(2665), + [anon_sym___thiscall] = ACTIONS(2665), + [anon_sym___vectorcall] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_static] = ACTIONS(2665), + [anon_sym_register] = ACTIONS(2665), + [anon_sym_inline] = ACTIONS(2665), + [anon_sym_thread_local] = ACTIONS(2665), + [anon_sym_input] = ACTIONS(2665), + [anon_sym_const] = ACTIONS(2665), + [anon_sym_volatile] = ACTIONS(2665), + [anon_sym_restrict] = ACTIONS(2665), + [anon_sym__Atomic] = ACTIONS(2665), + [anon_sym_mutable] = ACTIONS(2665), + [anon_sym_constexpr] = ACTIONS(2665), + [anon_sym_constinit] = ACTIONS(2665), + [anon_sym_consteval] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2665), + [anon_sym_unsigned] = ACTIONS(2665), + [anon_sym_long] = ACTIONS(2665), + [anon_sym_short] = ACTIONS(2665), + [sym_primitive_type] = ACTIONS(2665), + [anon_sym_enum] = ACTIONS(2665), + [anon_sym_class] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(2665), + [anon_sym_union] = ACTIONS(2665), + [anon_sym_if] = ACTIONS(2665), + [anon_sym_switch] = ACTIONS(2665), + [anon_sym_case] = ACTIONS(2665), + [anon_sym_default] = ACTIONS(2665), + [anon_sym_while] = ACTIONS(2665), + [anon_sym_do] = ACTIONS(2665), + [anon_sym_for] = ACTIONS(2665), + [anon_sym_return] = ACTIONS(2665), + [anon_sym_break] = ACTIONS(2665), + [anon_sym_continue] = ACTIONS(2665), + [anon_sym_goto] = ACTIONS(2665), + [anon_sym_not] = ACTIONS(2665), + [anon_sym_compl] = ACTIONS(2665), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_sizeof] = ACTIONS(2665), + [sym_number_literal] = ACTIONS(2667), + [anon_sym_L_SQUOTE] = ACTIONS(2667), + [anon_sym_u_SQUOTE] = ACTIONS(2667), + [anon_sym_U_SQUOTE] = ACTIONS(2667), + [anon_sym_u8_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_L_DQUOTE] = ACTIONS(2667), + [anon_sym_u_DQUOTE] = ACTIONS(2667), + [anon_sym_U_DQUOTE] = ACTIONS(2667), + [anon_sym_u8_DQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym_true] = ACTIONS(2665), + [sym_false] = ACTIONS(2665), + [sym_null] = ACTIONS(2665), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2665), + [anon_sym_decltype] = ACTIONS(2665), + [anon_sym_virtual] = ACTIONS(2665), + [anon_sym_explicit] = ACTIONS(2665), + [anon_sym_typename] = ACTIONS(2665), + [anon_sym_template] = ACTIONS(2665), + [anon_sym_operator] = ACTIONS(2665), + [anon_sym_try] = ACTIONS(2665), + [anon_sym_delete] = ACTIONS(2665), + [anon_sym_throw] = ACTIONS(2665), + [anon_sym_namespace] = ACTIONS(2665), + [anon_sym_using] = ACTIONS(2665), + [anon_sym_static_assert] = ACTIONS(2665), + [anon_sym_concept] = ACTIONS(2665), + [anon_sym_co_return] = ACTIONS(2665), + [anon_sym_co_yield] = ACTIONS(2665), + [anon_sym_R_DQUOTE] = ACTIONS(2667), + [anon_sym_LR_DQUOTE] = ACTIONS(2667), + [anon_sym_uR_DQUOTE] = ACTIONS(2667), + [anon_sym_UR_DQUOTE] = ACTIONS(2667), + [anon_sym_u8R_DQUOTE] = ACTIONS(2667), + [anon_sym_co_await] = ACTIONS(2665), + [anon_sym_new] = ACTIONS(2665), + [anon_sym_requires] = ACTIONS(2665), + [sym_this] = ACTIONS(2665), + [sym_nullptr] = ACTIONS(2665), + }, + [484] = { + [sym_identifier] = ACTIONS(2669), + [aux_sym_preproc_include_token1] = ACTIONS(2669), + [aux_sym_preproc_def_token1] = ACTIONS(2669), + [aux_sym_preproc_if_token1] = ACTIONS(2669), + [aux_sym_preproc_if_token2] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), + [aux_sym_preproc_else_token1] = ACTIONS(2669), + [aux_sym_preproc_elif_token1] = ACTIONS(2669), + [sym_preproc_directive] = ACTIONS(2669), + [anon_sym_LPAREN2] = ACTIONS(2671), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_TILDE] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP_AMP] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2669), + [anon_sym_extern] = ACTIONS(2669), + [anon_sym___attribute__] = ACTIONS(2669), + [anon_sym_COLON_COLON] = ACTIONS(2671), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), + [anon_sym___declspec] = ACTIONS(2669), + [anon_sym___based] = ACTIONS(2669), + [anon_sym___cdecl] = ACTIONS(2669), + [anon_sym___clrcall] = ACTIONS(2669), + [anon_sym___stdcall] = ACTIONS(2669), + [anon_sym___fastcall] = ACTIONS(2669), + [anon_sym___thiscall] = ACTIONS(2669), + [anon_sym___vectorcall] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_register] = ACTIONS(2669), + [anon_sym_inline] = ACTIONS(2669), + [anon_sym_thread_local] = ACTIONS(2669), + [anon_sym_input] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_volatile] = ACTIONS(2669), + [anon_sym_restrict] = ACTIONS(2669), + [anon_sym__Atomic] = ACTIONS(2669), + [anon_sym_mutable] = ACTIONS(2669), + [anon_sym_constexpr] = ACTIONS(2669), + [anon_sym_constinit] = ACTIONS(2669), + [anon_sym_consteval] = ACTIONS(2669), + [anon_sym_signed] = ACTIONS(2669), + [anon_sym_unsigned] = ACTIONS(2669), + [anon_sym_long] = ACTIONS(2669), + [anon_sym_short] = ACTIONS(2669), + [sym_primitive_type] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_class] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2669), + [anon_sym_case] = ACTIONS(2669), + [anon_sym_default] = ACTIONS(2669), + [anon_sym_while] = ACTIONS(2669), + [anon_sym_do] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2671), + [anon_sym_sizeof] = ACTIONS(2669), + [sym_number_literal] = ACTIONS(2671), + [anon_sym_L_SQUOTE] = ACTIONS(2671), + [anon_sym_u_SQUOTE] = ACTIONS(2671), + [anon_sym_U_SQUOTE] = ACTIONS(2671), + [anon_sym_u8_SQUOTE] = ACTIONS(2671), + [anon_sym_SQUOTE] = ACTIONS(2671), + [anon_sym_L_DQUOTE] = ACTIONS(2671), + [anon_sym_u_DQUOTE] = ACTIONS(2671), + [anon_sym_U_DQUOTE] = ACTIONS(2671), + [anon_sym_u8_DQUOTE] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(2671), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_null] = ACTIONS(2669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2669), + [anon_sym_decltype] = ACTIONS(2669), + [anon_sym_virtual] = ACTIONS(2669), + [anon_sym_explicit] = ACTIONS(2669), + [anon_sym_typename] = ACTIONS(2669), + [anon_sym_template] = ACTIONS(2669), + [anon_sym_operator] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2669), + [anon_sym_delete] = ACTIONS(2669), + [anon_sym_throw] = ACTIONS(2669), + [anon_sym_namespace] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2669), + [anon_sym_static_assert] = ACTIONS(2669), + [anon_sym_concept] = ACTIONS(2669), + [anon_sym_co_return] = ACTIONS(2669), + [anon_sym_co_yield] = ACTIONS(2669), + [anon_sym_R_DQUOTE] = ACTIONS(2671), + [anon_sym_LR_DQUOTE] = ACTIONS(2671), + [anon_sym_uR_DQUOTE] = ACTIONS(2671), + [anon_sym_UR_DQUOTE] = ACTIONS(2671), + [anon_sym_u8R_DQUOTE] = ACTIONS(2671), + [anon_sym_co_await] = ACTIONS(2669), + [anon_sym_new] = ACTIONS(2669), + [anon_sym_requires] = ACTIONS(2669), + [sym_this] = ACTIONS(2669), + [sym_nullptr] = ACTIONS(2669), + }, + [485] = { + [sym_identifier] = ACTIONS(2673), + [aux_sym_preproc_include_token1] = ACTIONS(2673), + [aux_sym_preproc_def_token1] = ACTIONS(2673), + [aux_sym_preproc_if_token1] = ACTIONS(2673), + [aux_sym_preproc_if_token2] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), + [aux_sym_preproc_else_token1] = ACTIONS(2673), + [aux_sym_preproc_elif_token1] = ACTIONS(2673), + [sym_preproc_directive] = ACTIONS(2673), + [anon_sym_LPAREN2] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2673), + [anon_sym_PLUS] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_typedef] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2673), + [anon_sym___attribute__] = ACTIONS(2673), + [anon_sym_COLON_COLON] = ACTIONS(2675), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), + [anon_sym___declspec] = ACTIONS(2673), + [anon_sym___based] = ACTIONS(2673), + [anon_sym___cdecl] = ACTIONS(2673), + [anon_sym___clrcall] = ACTIONS(2673), + [anon_sym___stdcall] = ACTIONS(2673), + [anon_sym___fastcall] = ACTIONS(2673), + [anon_sym___thiscall] = ACTIONS(2673), + [anon_sym___vectorcall] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_static] = ACTIONS(2673), + [anon_sym_register] = ACTIONS(2673), + [anon_sym_inline] = ACTIONS(2673), + [anon_sym_thread_local] = ACTIONS(2673), + [anon_sym_input] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2673), + [anon_sym_volatile] = ACTIONS(2673), + [anon_sym_restrict] = ACTIONS(2673), + [anon_sym__Atomic] = ACTIONS(2673), + [anon_sym_mutable] = ACTIONS(2673), + [anon_sym_constexpr] = ACTIONS(2673), + [anon_sym_constinit] = ACTIONS(2673), + [anon_sym_consteval] = ACTIONS(2673), + [anon_sym_signed] = ACTIONS(2673), + [anon_sym_unsigned] = ACTIONS(2673), + [anon_sym_long] = ACTIONS(2673), + [anon_sym_short] = ACTIONS(2673), + [sym_primitive_type] = ACTIONS(2673), + [anon_sym_enum] = ACTIONS(2673), + [anon_sym_class] = ACTIONS(2673), + [anon_sym_struct] = ACTIONS(2673), + [anon_sym_union] = ACTIONS(2673), + [anon_sym_if] = ACTIONS(2673), + [anon_sym_switch] = ACTIONS(2673), + [anon_sym_case] = ACTIONS(2673), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2673), + [anon_sym_do] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2673), + [anon_sym_return] = ACTIONS(2673), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2673), + [anon_sym_goto] = ACTIONS(2673), + [anon_sym_not] = ACTIONS(2673), + [anon_sym_compl] = ACTIONS(2673), + [anon_sym_DASH_DASH] = ACTIONS(2675), + [anon_sym_PLUS_PLUS] = ACTIONS(2675), + [anon_sym_sizeof] = ACTIONS(2673), + [sym_number_literal] = ACTIONS(2675), + [anon_sym_L_SQUOTE] = ACTIONS(2675), + [anon_sym_u_SQUOTE] = ACTIONS(2675), + [anon_sym_U_SQUOTE] = ACTIONS(2675), + [anon_sym_u8_SQUOTE] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2675), + [anon_sym_L_DQUOTE] = ACTIONS(2675), + [anon_sym_u_DQUOTE] = ACTIONS(2675), + [anon_sym_U_DQUOTE] = ACTIONS(2675), + [anon_sym_u8_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [sym_true] = ACTIONS(2673), + [sym_false] = ACTIONS(2673), + [sym_null] = ACTIONS(2673), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2673), + [anon_sym_decltype] = ACTIONS(2673), + [anon_sym_virtual] = ACTIONS(2673), + [anon_sym_explicit] = ACTIONS(2673), + [anon_sym_typename] = ACTIONS(2673), + [anon_sym_template] = ACTIONS(2673), + [anon_sym_operator] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2673), + [anon_sym_delete] = ACTIONS(2673), + [anon_sym_throw] = ACTIONS(2673), + [anon_sym_namespace] = ACTIONS(2673), + [anon_sym_using] = ACTIONS(2673), + [anon_sym_static_assert] = ACTIONS(2673), + [anon_sym_concept] = ACTIONS(2673), + [anon_sym_co_return] = ACTIONS(2673), + [anon_sym_co_yield] = ACTIONS(2673), + [anon_sym_R_DQUOTE] = ACTIONS(2675), + [anon_sym_LR_DQUOTE] = ACTIONS(2675), + [anon_sym_uR_DQUOTE] = ACTIONS(2675), + [anon_sym_UR_DQUOTE] = ACTIONS(2675), + [anon_sym_u8R_DQUOTE] = ACTIONS(2675), + [anon_sym_co_await] = ACTIONS(2673), + [anon_sym_new] = ACTIONS(2673), + [anon_sym_requires] = ACTIONS(2673), + [sym_this] = ACTIONS(2673), + [sym_nullptr] = ACTIONS(2673), + }, + [486] = { + [sym_identifier] = ACTIONS(2677), + [aux_sym_preproc_include_token1] = ACTIONS(2677), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token2] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), + [aux_sym_preproc_else_token1] = ACTIONS(2677), + [aux_sym_preproc_elif_token1] = ACTIONS(2677), + [sym_preproc_directive] = ACTIONS(2677), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym___attribute__] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), + [anon_sym___declspec] = ACTIONS(2677), + [anon_sym___based] = ACTIONS(2677), + [anon_sym___cdecl] = ACTIONS(2677), + [anon_sym___clrcall] = ACTIONS(2677), + [anon_sym___stdcall] = ACTIONS(2677), + [anon_sym___fastcall] = ACTIONS(2677), + [anon_sym___thiscall] = ACTIONS(2677), + [anon_sym___vectorcall] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_register] = ACTIONS(2677), + [anon_sym_inline] = ACTIONS(2677), + [anon_sym_thread_local] = ACTIONS(2677), + [anon_sym_input] = ACTIONS(2677), + [anon_sym_const] = ACTIONS(2677), + [anon_sym_volatile] = ACTIONS(2677), + [anon_sym_restrict] = ACTIONS(2677), + [anon_sym__Atomic] = ACTIONS(2677), + [anon_sym_mutable] = ACTIONS(2677), + [anon_sym_constexpr] = ACTIONS(2677), + [anon_sym_constinit] = ACTIONS(2677), + [anon_sym_consteval] = ACTIONS(2677), + [anon_sym_signed] = ACTIONS(2677), + [anon_sym_unsigned] = ACTIONS(2677), + [anon_sym_long] = ACTIONS(2677), + [anon_sym_short] = ACTIONS(2677), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(2677), + [anon_sym_union] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_case] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_goto] = ACTIONS(2677), + [anon_sym_not] = ACTIONS(2677), + [anon_sym_compl] = ACTIONS(2677), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_sizeof] = ACTIONS(2677), + [sym_number_literal] = ACTIONS(2679), + [anon_sym_L_SQUOTE] = ACTIONS(2679), + [anon_sym_u_SQUOTE] = ACTIONS(2679), + [anon_sym_U_SQUOTE] = ACTIONS(2679), + [anon_sym_u8_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_L_DQUOTE] = ACTIONS(2679), + [anon_sym_u_DQUOTE] = ACTIONS(2679), + [anon_sym_U_DQUOTE] = ACTIONS(2679), + [anon_sym_u8_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [sym_true] = ACTIONS(2677), + [sym_false] = ACTIONS(2677), + [sym_null] = ACTIONS(2677), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2677), + [anon_sym_decltype] = ACTIONS(2677), + [anon_sym_virtual] = ACTIONS(2677), + [anon_sym_explicit] = ACTIONS(2677), + [anon_sym_typename] = ACTIONS(2677), + [anon_sym_template] = ACTIONS(2677), + [anon_sym_operator] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_delete] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_namespace] = ACTIONS(2677), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_static_assert] = ACTIONS(2677), + [anon_sym_concept] = ACTIONS(2677), + [anon_sym_co_return] = ACTIONS(2677), + [anon_sym_co_yield] = ACTIONS(2677), + [anon_sym_R_DQUOTE] = ACTIONS(2679), + [anon_sym_LR_DQUOTE] = ACTIONS(2679), + [anon_sym_uR_DQUOTE] = ACTIONS(2679), + [anon_sym_UR_DQUOTE] = ACTIONS(2679), + [anon_sym_u8R_DQUOTE] = ACTIONS(2679), + [anon_sym_co_await] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_requires] = ACTIONS(2677), + [sym_this] = ACTIONS(2677), + [sym_nullptr] = ACTIONS(2677), + }, + [487] = { + [sym_identifier] = ACTIONS(2681), + [aux_sym_preproc_include_token1] = ACTIONS(2681), + [aux_sym_preproc_def_token1] = ACTIONS(2681), + [aux_sym_preproc_if_token1] = ACTIONS(2681), + [aux_sym_preproc_if_token2] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), + [aux_sym_preproc_else_token1] = ACTIONS(2681), + [aux_sym_preproc_elif_token1] = ACTIONS(2681), + [sym_preproc_directive] = ACTIONS(2681), + [anon_sym_LPAREN2] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_AMP_AMP] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2681), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym___attribute__] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), + [anon_sym___declspec] = ACTIONS(2681), + [anon_sym___based] = ACTIONS(2681), + [anon_sym___cdecl] = ACTIONS(2681), + [anon_sym___clrcall] = ACTIONS(2681), + [anon_sym___stdcall] = ACTIONS(2681), + [anon_sym___fastcall] = ACTIONS(2681), + [anon_sym___thiscall] = ACTIONS(2681), + [anon_sym___vectorcall] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_register] = ACTIONS(2681), + [anon_sym_inline] = ACTIONS(2681), + [anon_sym_thread_local] = ACTIONS(2681), + [anon_sym_input] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_volatile] = ACTIONS(2681), + [anon_sym_restrict] = ACTIONS(2681), + [anon_sym__Atomic] = ACTIONS(2681), + [anon_sym_mutable] = ACTIONS(2681), + [anon_sym_constexpr] = ACTIONS(2681), + [anon_sym_constinit] = ACTIONS(2681), + [anon_sym_consteval] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2681), + [anon_sym_unsigned] = ACTIONS(2681), + [anon_sym_long] = ACTIONS(2681), + [anon_sym_short] = ACTIONS(2681), + [sym_primitive_type] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2681), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2681), + [anon_sym_case] = ACTIONS(2681), + [anon_sym_default] = ACTIONS(2681), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_do] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [anon_sym_goto] = ACTIONS(2681), + [anon_sym_not] = ACTIONS(2681), + [anon_sym_compl] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_sizeof] = ACTIONS(2681), + [sym_number_literal] = ACTIONS(2683), + [anon_sym_L_SQUOTE] = ACTIONS(2683), + [anon_sym_u_SQUOTE] = ACTIONS(2683), + [anon_sym_U_SQUOTE] = ACTIONS(2683), + [anon_sym_u8_SQUOTE] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_L_DQUOTE] = ACTIONS(2683), + [anon_sym_u_DQUOTE] = ACTIONS(2683), + [anon_sym_U_DQUOTE] = ACTIONS(2683), + [anon_sym_u8_DQUOTE] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [sym_true] = ACTIONS(2681), + [sym_false] = ACTIONS(2681), + [sym_null] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2681), + [anon_sym_decltype] = ACTIONS(2681), + [anon_sym_virtual] = ACTIONS(2681), + [anon_sym_explicit] = ACTIONS(2681), + [anon_sym_typename] = ACTIONS(2681), + [anon_sym_template] = ACTIONS(2681), + [anon_sym_operator] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_delete] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2681), + [anon_sym_namespace] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2681), + [anon_sym_static_assert] = ACTIONS(2681), + [anon_sym_concept] = ACTIONS(2681), + [anon_sym_co_return] = ACTIONS(2681), + [anon_sym_co_yield] = ACTIONS(2681), + [anon_sym_R_DQUOTE] = ACTIONS(2683), + [anon_sym_LR_DQUOTE] = ACTIONS(2683), + [anon_sym_uR_DQUOTE] = ACTIONS(2683), + [anon_sym_UR_DQUOTE] = ACTIONS(2683), + [anon_sym_u8R_DQUOTE] = ACTIONS(2683), + [anon_sym_co_await] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2681), + [anon_sym_requires] = ACTIONS(2681), + [sym_this] = ACTIONS(2681), + [sym_nullptr] = ACTIONS(2681), + }, + [488] = { + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token2] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_input] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), + }, + [489] = { + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token2] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_input] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), + }, + [490] = { + [sym_identifier] = ACTIONS(2689), + [aux_sym_preproc_include_token1] = ACTIONS(2689), + [aux_sym_preproc_def_token1] = ACTIONS(2689), + [aux_sym_preproc_if_token1] = ACTIONS(2689), + [aux_sym_preproc_if_token2] = ACTIONS(2689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2689), + [aux_sym_preproc_else_token1] = ACTIONS(2689), + [aux_sym_preproc_elif_token1] = ACTIONS(2689), + [sym_preproc_directive] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_typedef] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2689), + [anon_sym___attribute__] = ACTIONS(2689), + [anon_sym_COLON_COLON] = ACTIONS(2691), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2691), + [anon_sym___declspec] = ACTIONS(2689), + [anon_sym___based] = ACTIONS(2689), + [anon_sym___cdecl] = ACTIONS(2689), + [anon_sym___clrcall] = ACTIONS(2689), + [anon_sym___stdcall] = ACTIONS(2689), + [anon_sym___fastcall] = ACTIONS(2689), + [anon_sym___thiscall] = ACTIONS(2689), + [anon_sym___vectorcall] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_register] = ACTIONS(2689), + [anon_sym_inline] = ACTIONS(2689), + [anon_sym_thread_local] = ACTIONS(2689), + [anon_sym_input] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_volatile] = ACTIONS(2689), + [anon_sym_restrict] = ACTIONS(2689), + [anon_sym__Atomic] = ACTIONS(2689), + [anon_sym_mutable] = ACTIONS(2689), + [anon_sym_constexpr] = ACTIONS(2689), + [anon_sym_constinit] = ACTIONS(2689), + [anon_sym_consteval] = ACTIONS(2689), + [anon_sym_signed] = ACTIONS(2689), + [anon_sym_unsigned] = ACTIONS(2689), + [anon_sym_long] = ACTIONS(2689), + [anon_sym_short] = ACTIONS(2689), + [sym_primitive_type] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_class] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_switch] = ACTIONS(2689), + [anon_sym_case] = ACTIONS(2689), + [anon_sym_default] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_do] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_goto] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2689), + [anon_sym_compl] = ACTIONS(2689), + [anon_sym_DASH_DASH] = ACTIONS(2691), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2691), + [anon_sym_u_SQUOTE] = ACTIONS(2691), + [anon_sym_U_SQUOTE] = ACTIONS(2691), + [anon_sym_u8_SQUOTE] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2691), + [anon_sym_L_DQUOTE] = ACTIONS(2691), + [anon_sym_u_DQUOTE] = ACTIONS(2691), + [anon_sym_U_DQUOTE] = ACTIONS(2691), + [anon_sym_u8_DQUOTE] = ACTIONS(2691), + [anon_sym_DQUOTE] = ACTIONS(2691), + [sym_true] = ACTIONS(2689), + [sym_false] = ACTIONS(2689), + [sym_null] = ACTIONS(2689), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2689), + [anon_sym_decltype] = ACTIONS(2689), + [anon_sym_virtual] = ACTIONS(2689), + [anon_sym_explicit] = ACTIONS(2689), + [anon_sym_typename] = ACTIONS(2689), + [anon_sym_template] = ACTIONS(2689), + [anon_sym_operator] = ACTIONS(2689), + [anon_sym_try] = ACTIONS(2689), + [anon_sym_delete] = ACTIONS(2689), + [anon_sym_throw] = ACTIONS(2689), + [anon_sym_namespace] = ACTIONS(2689), + [anon_sym_using] = ACTIONS(2689), + [anon_sym_static_assert] = ACTIONS(2689), + [anon_sym_concept] = ACTIONS(2689), + [anon_sym_co_return] = ACTIONS(2689), + [anon_sym_co_yield] = ACTIONS(2689), + [anon_sym_R_DQUOTE] = ACTIONS(2691), + [anon_sym_LR_DQUOTE] = ACTIONS(2691), + [anon_sym_uR_DQUOTE] = ACTIONS(2691), + [anon_sym_UR_DQUOTE] = ACTIONS(2691), + [anon_sym_u8R_DQUOTE] = ACTIONS(2691), + [anon_sym_co_await] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(2689), + [anon_sym_requires] = ACTIONS(2689), + [sym_this] = ACTIONS(2689), + [sym_nullptr] = ACTIONS(2689), + }, + [491] = { + [sym_identifier] = ACTIONS(2693), + [aux_sym_preproc_include_token1] = ACTIONS(2693), + [aux_sym_preproc_def_token1] = ACTIONS(2693), + [aux_sym_preproc_if_token1] = ACTIONS(2693), + [aux_sym_preproc_if_token2] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2693), + [aux_sym_preproc_else_token1] = ACTIONS(2693), + [aux_sym_preproc_elif_token1] = ACTIONS(2693), + [sym_preproc_directive] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_typedef] = ACTIONS(2693), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym___attribute__] = ACTIONS(2693), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2695), + [anon_sym___declspec] = ACTIONS(2693), + [anon_sym___based] = ACTIONS(2693), + [anon_sym___cdecl] = ACTIONS(2693), + [anon_sym___clrcall] = ACTIONS(2693), + [anon_sym___stdcall] = ACTIONS(2693), + [anon_sym___fastcall] = ACTIONS(2693), + [anon_sym___thiscall] = ACTIONS(2693), + [anon_sym___vectorcall] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_register] = ACTIONS(2693), + [anon_sym_inline] = ACTIONS(2693), + [anon_sym_thread_local] = ACTIONS(2693), + [anon_sym_input] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_volatile] = ACTIONS(2693), + [anon_sym_restrict] = ACTIONS(2693), + [anon_sym__Atomic] = ACTIONS(2693), + [anon_sym_mutable] = ACTIONS(2693), + [anon_sym_constexpr] = ACTIONS(2693), + [anon_sym_constinit] = ACTIONS(2693), + [anon_sym_consteval] = ACTIONS(2693), + [anon_sym_signed] = ACTIONS(2693), + [anon_sym_unsigned] = ACTIONS(2693), + [anon_sym_long] = ACTIONS(2693), + [anon_sym_short] = ACTIONS(2693), + [sym_primitive_type] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_class] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2693), + [anon_sym_union] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_switch] = ACTIONS(2693), + [anon_sym_case] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_goto] = ACTIONS(2693), + [anon_sym_not] = ACTIONS(2693), + [anon_sym_compl] = ACTIONS(2693), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_sizeof] = ACTIONS(2693), + [sym_number_literal] = ACTIONS(2695), + [anon_sym_L_SQUOTE] = ACTIONS(2695), + [anon_sym_u_SQUOTE] = ACTIONS(2695), + [anon_sym_U_SQUOTE] = ACTIONS(2695), + [anon_sym_u8_SQUOTE] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2693), + [sym_false] = ACTIONS(2693), + [sym_null] = ACTIONS(2693), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2693), + [anon_sym_decltype] = ACTIONS(2693), + [anon_sym_virtual] = ACTIONS(2693), + [anon_sym_explicit] = ACTIONS(2693), + [anon_sym_typename] = ACTIONS(2693), + [anon_sym_template] = ACTIONS(2693), + [anon_sym_operator] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_delete] = ACTIONS(2693), + [anon_sym_throw] = ACTIONS(2693), + [anon_sym_namespace] = ACTIONS(2693), + [anon_sym_using] = ACTIONS(2693), + [anon_sym_static_assert] = ACTIONS(2693), + [anon_sym_concept] = ACTIONS(2693), + [anon_sym_co_return] = ACTIONS(2693), + [anon_sym_co_yield] = ACTIONS(2693), + [anon_sym_R_DQUOTE] = ACTIONS(2695), + [anon_sym_LR_DQUOTE] = ACTIONS(2695), + [anon_sym_uR_DQUOTE] = ACTIONS(2695), + [anon_sym_UR_DQUOTE] = ACTIONS(2695), + [anon_sym_u8R_DQUOTE] = ACTIONS(2695), + [anon_sym_co_await] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_requires] = ACTIONS(2693), + [sym_this] = ACTIONS(2693), + [sym_nullptr] = ACTIONS(2693), + }, + [492] = { + [sym_identifier] = ACTIONS(2697), + [aux_sym_preproc_include_token1] = ACTIONS(2697), + [aux_sym_preproc_def_token1] = ACTIONS(2697), + [aux_sym_preproc_if_token1] = ACTIONS(2697), + [aux_sym_preproc_if_token2] = ACTIONS(2697), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2697), + [aux_sym_preproc_else_token1] = ACTIONS(2697), + [aux_sym_preproc_elif_token1] = ACTIONS(2697), + [sym_preproc_directive] = ACTIONS(2697), + [anon_sym_LPAREN2] = ACTIONS(2699), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2697), + [anon_sym_extern] = ACTIONS(2697), + [anon_sym___attribute__] = ACTIONS(2697), + [anon_sym_COLON_COLON] = ACTIONS(2699), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2699), + [anon_sym___declspec] = ACTIONS(2697), + [anon_sym___based] = ACTIONS(2697), + [anon_sym___cdecl] = ACTIONS(2697), + [anon_sym___clrcall] = ACTIONS(2697), + [anon_sym___stdcall] = ACTIONS(2697), + [anon_sym___fastcall] = ACTIONS(2697), + [anon_sym___thiscall] = ACTIONS(2697), + [anon_sym___vectorcall] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_register] = ACTIONS(2697), + [anon_sym_inline] = ACTIONS(2697), + [anon_sym_thread_local] = ACTIONS(2697), + [anon_sym_input] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_volatile] = ACTIONS(2697), + [anon_sym_restrict] = ACTIONS(2697), + [anon_sym__Atomic] = ACTIONS(2697), + [anon_sym_mutable] = ACTIONS(2697), + [anon_sym_constexpr] = ACTIONS(2697), + [anon_sym_constinit] = ACTIONS(2697), + [anon_sym_consteval] = ACTIONS(2697), + [anon_sym_signed] = ACTIONS(2697), + [anon_sym_unsigned] = ACTIONS(2697), + [anon_sym_long] = ACTIONS(2697), + [anon_sym_short] = ACTIONS(2697), + [sym_primitive_type] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_class] = ACTIONS(2697), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_union] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_switch] = ACTIONS(2697), + [anon_sym_case] = ACTIONS(2697), + [anon_sym_default] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_goto] = ACTIONS(2697), + [anon_sym_not] = ACTIONS(2697), + [anon_sym_compl] = ACTIONS(2697), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_sizeof] = ACTIONS(2697), + [sym_number_literal] = ACTIONS(2699), + [anon_sym_L_SQUOTE] = ACTIONS(2699), + [anon_sym_u_SQUOTE] = ACTIONS(2699), + [anon_sym_U_SQUOTE] = ACTIONS(2699), + [anon_sym_u8_SQUOTE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2699), + [anon_sym_L_DQUOTE] = ACTIONS(2699), + [anon_sym_u_DQUOTE] = ACTIONS(2699), + [anon_sym_U_DQUOTE] = ACTIONS(2699), + [anon_sym_u8_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2697), + [anon_sym_decltype] = ACTIONS(2697), + [anon_sym_virtual] = ACTIONS(2697), + [anon_sym_explicit] = ACTIONS(2697), + [anon_sym_typename] = ACTIONS(2697), + [anon_sym_template] = ACTIONS(2697), + [anon_sym_operator] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [anon_sym_delete] = ACTIONS(2697), + [anon_sym_throw] = ACTIONS(2697), + [anon_sym_namespace] = ACTIONS(2697), + [anon_sym_using] = ACTIONS(2697), + [anon_sym_static_assert] = ACTIONS(2697), + [anon_sym_concept] = ACTIONS(2697), + [anon_sym_co_return] = ACTIONS(2697), + [anon_sym_co_yield] = ACTIONS(2697), + [anon_sym_R_DQUOTE] = ACTIONS(2699), + [anon_sym_LR_DQUOTE] = ACTIONS(2699), + [anon_sym_uR_DQUOTE] = ACTIONS(2699), + [anon_sym_UR_DQUOTE] = ACTIONS(2699), + [anon_sym_u8R_DQUOTE] = ACTIONS(2699), + [anon_sym_co_await] = ACTIONS(2697), + [anon_sym_new] = ACTIONS(2697), + [anon_sym_requires] = ACTIONS(2697), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + }, + [493] = { + [sym_identifier] = ACTIONS(2701), + [aux_sym_preproc_include_token1] = ACTIONS(2701), + [aux_sym_preproc_def_token1] = ACTIONS(2701), + [aux_sym_preproc_if_token1] = ACTIONS(2701), + [aux_sym_preproc_if_token2] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2701), + [aux_sym_preproc_else_token1] = ACTIONS(2701), + [aux_sym_preproc_elif_token1] = ACTIONS(2701), + [sym_preproc_directive] = ACTIONS(2701), + [anon_sym_LPAREN2] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym___attribute__] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2703), + [anon_sym___declspec] = ACTIONS(2701), + [anon_sym___based] = ACTIONS(2701), + [anon_sym___cdecl] = ACTIONS(2701), + [anon_sym___clrcall] = ACTIONS(2701), + [anon_sym___stdcall] = ACTIONS(2701), + [anon_sym___fastcall] = ACTIONS(2701), + [anon_sym___thiscall] = ACTIONS(2701), + [anon_sym___vectorcall] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_register] = ACTIONS(2701), + [anon_sym_inline] = ACTIONS(2701), + [anon_sym_thread_local] = ACTIONS(2701), + [anon_sym_input] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_volatile] = ACTIONS(2701), + [anon_sym_restrict] = ACTIONS(2701), + [anon_sym__Atomic] = ACTIONS(2701), + [anon_sym_mutable] = ACTIONS(2701), + [anon_sym_constexpr] = ACTIONS(2701), + [anon_sym_constinit] = ACTIONS(2701), + [anon_sym_consteval] = ACTIONS(2701), + [anon_sym_signed] = ACTIONS(2701), + [anon_sym_unsigned] = ACTIONS(2701), + [anon_sym_long] = ACTIONS(2701), + [anon_sym_short] = ACTIONS(2701), + [sym_primitive_type] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_goto] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(2701), + [anon_sym_compl] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_sizeof] = ACTIONS(2701), + [sym_number_literal] = ACTIONS(2703), + [anon_sym_L_SQUOTE] = ACTIONS(2703), + [anon_sym_u_SQUOTE] = ACTIONS(2703), + [anon_sym_U_SQUOTE] = ACTIONS(2703), + [anon_sym_u8_SQUOTE] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2703), + [anon_sym_L_DQUOTE] = ACTIONS(2703), + [anon_sym_u_DQUOTE] = ACTIONS(2703), + [anon_sym_U_DQUOTE] = ACTIONS(2703), + [anon_sym_u8_DQUOTE] = ACTIONS(2703), + [anon_sym_DQUOTE] = ACTIONS(2703), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_null] = ACTIONS(2701), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2701), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_virtual] = ACTIONS(2701), + [anon_sym_explicit] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2701), + [anon_sym_template] = ACTIONS(2701), + [anon_sym_operator] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_delete] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_namespace] = ACTIONS(2701), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_static_assert] = ACTIONS(2701), + [anon_sym_concept] = ACTIONS(2701), + [anon_sym_co_return] = ACTIONS(2701), + [anon_sym_co_yield] = ACTIONS(2701), + [anon_sym_R_DQUOTE] = ACTIONS(2703), + [anon_sym_LR_DQUOTE] = ACTIONS(2703), + [anon_sym_uR_DQUOTE] = ACTIONS(2703), + [anon_sym_UR_DQUOTE] = ACTIONS(2703), + [anon_sym_u8R_DQUOTE] = ACTIONS(2703), + [anon_sym_co_await] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_requires] = ACTIONS(2701), + [sym_this] = ACTIONS(2701), + [sym_nullptr] = ACTIONS(2701), + }, + [494] = { + [sym_identifier] = ACTIONS(2705), + [aux_sym_preproc_include_token1] = ACTIONS(2705), + [aux_sym_preproc_def_token1] = ACTIONS(2705), + [aux_sym_preproc_if_token1] = ACTIONS(2705), + [aux_sym_preproc_if_token2] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), + [aux_sym_preproc_else_token1] = ACTIONS(2705), + [aux_sym_preproc_elif_token1] = ACTIONS(2705), + [sym_preproc_directive] = ACTIONS(2705), + [anon_sym_LPAREN2] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_AMP_AMP] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_typedef] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym___attribute__] = ACTIONS(2705), + [anon_sym_COLON_COLON] = ACTIONS(2707), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), + [anon_sym___declspec] = ACTIONS(2705), + [anon_sym___based] = ACTIONS(2705), + [anon_sym___cdecl] = ACTIONS(2705), + [anon_sym___clrcall] = ACTIONS(2705), + [anon_sym___stdcall] = ACTIONS(2705), + [anon_sym___fastcall] = ACTIONS(2705), + [anon_sym___thiscall] = ACTIONS(2705), + [anon_sym___vectorcall] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_register] = ACTIONS(2705), + [anon_sym_inline] = ACTIONS(2705), + [anon_sym_thread_local] = ACTIONS(2705), + [anon_sym_input] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_volatile] = ACTIONS(2705), + [anon_sym_restrict] = ACTIONS(2705), + [anon_sym__Atomic] = ACTIONS(2705), + [anon_sym_mutable] = ACTIONS(2705), + [anon_sym_constexpr] = ACTIONS(2705), + [anon_sym_constinit] = ACTIONS(2705), + [anon_sym_consteval] = ACTIONS(2705), + [anon_sym_signed] = ACTIONS(2705), + [anon_sym_unsigned] = ACTIONS(2705), + [anon_sym_long] = ACTIONS(2705), + [anon_sym_short] = ACTIONS(2705), + [sym_primitive_type] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_switch] = ACTIONS(2705), + [anon_sym_case] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_do] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_goto] = ACTIONS(2705), + [anon_sym_not] = ACTIONS(2705), + [anon_sym_compl] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_sizeof] = ACTIONS(2705), + [sym_number_literal] = ACTIONS(2707), + [anon_sym_L_SQUOTE] = ACTIONS(2707), + [anon_sym_u_SQUOTE] = ACTIONS(2707), + [anon_sym_U_SQUOTE] = ACTIONS(2707), + [anon_sym_u8_SQUOTE] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_L_DQUOTE] = ACTIONS(2707), + [anon_sym_u_DQUOTE] = ACTIONS(2707), + [anon_sym_U_DQUOTE] = ACTIONS(2707), + [anon_sym_u8_DQUOTE] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2707), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_null] = ACTIONS(2705), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2705), + [anon_sym_decltype] = ACTIONS(2705), + [anon_sym_virtual] = ACTIONS(2705), + [anon_sym_explicit] = ACTIONS(2705), + [anon_sym_typename] = ACTIONS(2705), + [anon_sym_template] = ACTIONS(2705), + [anon_sym_operator] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_delete] = ACTIONS(2705), + [anon_sym_throw] = ACTIONS(2705), + [anon_sym_namespace] = ACTIONS(2705), + [anon_sym_using] = ACTIONS(2705), + [anon_sym_static_assert] = ACTIONS(2705), + [anon_sym_concept] = ACTIONS(2705), + [anon_sym_co_return] = ACTIONS(2705), + [anon_sym_co_yield] = ACTIONS(2705), + [anon_sym_R_DQUOTE] = ACTIONS(2707), + [anon_sym_LR_DQUOTE] = ACTIONS(2707), + [anon_sym_uR_DQUOTE] = ACTIONS(2707), + [anon_sym_UR_DQUOTE] = ACTIONS(2707), + [anon_sym_u8R_DQUOTE] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_requires] = ACTIONS(2705), + [sym_this] = ACTIONS(2705), + [sym_nullptr] = ACTIONS(2705), + }, + [495] = { + [sym_identifier] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token2] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [aux_sym_preproc_else_token1] = ACTIONS(2709), + [aux_sym_preproc_elif_token1] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym___attribute__] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym___declspec] = ACTIONS(2709), + [anon_sym___based] = ACTIONS(2709), + [anon_sym___cdecl] = ACTIONS(2709), + [anon_sym___clrcall] = ACTIONS(2709), + [anon_sym___stdcall] = ACTIONS(2709), + [anon_sym___fastcall] = ACTIONS(2709), + [anon_sym___thiscall] = ACTIONS(2709), + [anon_sym___vectorcall] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_thread_local] = ACTIONS(2709), + [anon_sym_input] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [anon_sym_constinit] = ACTIONS(2709), + [anon_sym_consteval] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_compl] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_L_SQUOTE] = ACTIONS(2711), + [anon_sym_u_SQUOTE] = ACTIONS(2711), + [anon_sym_U_SQUOTE] = ACTIONS(2711), + [anon_sym_u8_SQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_L_DQUOTE] = ACTIONS(2711), + [anon_sym_u_DQUOTE] = ACTIONS(2711), + [anon_sym_U_DQUOTE] = ACTIONS(2711), + [anon_sym_u8_DQUOTE] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_null] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2709), + [anon_sym_decltype] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_operator] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_namespace] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_static_assert] = ACTIONS(2709), + [anon_sym_concept] = ACTIONS(2709), + [anon_sym_co_return] = ACTIONS(2709), + [anon_sym_co_yield] = ACTIONS(2709), + [anon_sym_R_DQUOTE] = ACTIONS(2711), + [anon_sym_LR_DQUOTE] = ACTIONS(2711), + [anon_sym_uR_DQUOTE] = ACTIONS(2711), + [anon_sym_UR_DQUOTE] = ACTIONS(2711), + [anon_sym_u8R_DQUOTE] = ACTIONS(2711), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_requires] = ACTIONS(2709), + [sym_this] = ACTIONS(2709), + [sym_nullptr] = ACTIONS(2709), + }, + [496] = { + [sym_identifier] = ACTIONS(2713), + [aux_sym_preproc_include_token1] = ACTIONS(2713), + [aux_sym_preproc_def_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token2] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), + [aux_sym_preproc_else_token1] = ACTIONS(2713), + [aux_sym_preproc_elif_token1] = ACTIONS(2713), + [sym_preproc_directive] = ACTIONS(2713), + [anon_sym_LPAREN2] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym___attribute__] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), + [anon_sym___declspec] = ACTIONS(2713), + [anon_sym___based] = ACTIONS(2713), + [anon_sym___cdecl] = ACTIONS(2713), + [anon_sym___clrcall] = ACTIONS(2713), + [anon_sym___stdcall] = ACTIONS(2713), + [anon_sym___fastcall] = ACTIONS(2713), + [anon_sym___thiscall] = ACTIONS(2713), + [anon_sym___vectorcall] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_register] = ACTIONS(2713), + [anon_sym_inline] = ACTIONS(2713), + [anon_sym_thread_local] = ACTIONS(2713), + [anon_sym_input] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_volatile] = ACTIONS(2713), + [anon_sym_restrict] = ACTIONS(2713), + [anon_sym__Atomic] = ACTIONS(2713), + [anon_sym_mutable] = ACTIONS(2713), + [anon_sym_constexpr] = ACTIONS(2713), + [anon_sym_constinit] = ACTIONS(2713), + [anon_sym_consteval] = ACTIONS(2713), + [anon_sym_signed] = ACTIONS(2713), + [anon_sym_unsigned] = ACTIONS(2713), + [anon_sym_long] = ACTIONS(2713), + [anon_sym_short] = ACTIONS(2713), + [sym_primitive_type] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_case] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_goto] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2713), + [anon_sym_compl] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_sizeof] = ACTIONS(2713), + [sym_number_literal] = ACTIONS(2715), + [anon_sym_L_SQUOTE] = ACTIONS(2715), + [anon_sym_u_SQUOTE] = ACTIONS(2715), + [anon_sym_U_SQUOTE] = ACTIONS(2715), + [anon_sym_u8_SQUOTE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_L_DQUOTE] = ACTIONS(2715), + [anon_sym_u_DQUOTE] = ACTIONS(2715), + [anon_sym_U_DQUOTE] = ACTIONS(2715), + [anon_sym_u8_DQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [sym_true] = ACTIONS(2713), + [sym_false] = ACTIONS(2713), + [sym_null] = ACTIONS(2713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2713), + [anon_sym_decltype] = ACTIONS(2713), + [anon_sym_virtual] = ACTIONS(2713), + [anon_sym_explicit] = ACTIONS(2713), + [anon_sym_typename] = ACTIONS(2713), + [anon_sym_template] = ACTIONS(2713), + [anon_sym_operator] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_namespace] = ACTIONS(2713), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_static_assert] = ACTIONS(2713), + [anon_sym_concept] = ACTIONS(2713), + [anon_sym_co_return] = ACTIONS(2713), + [anon_sym_co_yield] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2715), + [anon_sym_LR_DQUOTE] = ACTIONS(2715), + [anon_sym_uR_DQUOTE] = ACTIONS(2715), + [anon_sym_UR_DQUOTE] = ACTIONS(2715), + [anon_sym_u8R_DQUOTE] = ACTIONS(2715), + [anon_sym_co_await] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2713), + [sym_nullptr] = ACTIONS(2713), + }, + [497] = { + [sym_identifier] = ACTIONS(2717), + [aux_sym_preproc_include_token1] = ACTIONS(2717), + [aux_sym_preproc_def_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token2] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), + [aux_sym_preproc_else_token1] = ACTIONS(2717), + [aux_sym_preproc_elif_token1] = ACTIONS(2717), + [sym_preproc_directive] = ACTIONS(2717), + [anon_sym_LPAREN2] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_typedef] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym___attribute__] = ACTIONS(2717), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), + [anon_sym___declspec] = ACTIONS(2717), + [anon_sym___based] = ACTIONS(2717), + [anon_sym___cdecl] = ACTIONS(2717), + [anon_sym___clrcall] = ACTIONS(2717), + [anon_sym___stdcall] = ACTIONS(2717), + [anon_sym___fastcall] = ACTIONS(2717), + [anon_sym___thiscall] = ACTIONS(2717), + [anon_sym___vectorcall] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_register] = ACTIONS(2717), + [anon_sym_inline] = ACTIONS(2717), + [anon_sym_thread_local] = ACTIONS(2717), + [anon_sym_input] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_volatile] = ACTIONS(2717), + [anon_sym_restrict] = ACTIONS(2717), + [anon_sym__Atomic] = ACTIONS(2717), + [anon_sym_mutable] = ACTIONS(2717), + [anon_sym_constexpr] = ACTIONS(2717), + [anon_sym_constinit] = ACTIONS(2717), + [anon_sym_consteval] = ACTIONS(2717), + [anon_sym_signed] = ACTIONS(2717), + [anon_sym_unsigned] = ACTIONS(2717), + [anon_sym_long] = ACTIONS(2717), + [anon_sym_short] = ACTIONS(2717), + [sym_primitive_type] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_case] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_goto] = ACTIONS(2717), + [anon_sym_not] = ACTIONS(2717), + [anon_sym_compl] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_sizeof] = ACTIONS(2717), + [sym_number_literal] = ACTIONS(2719), + [anon_sym_L_SQUOTE] = ACTIONS(2719), + [anon_sym_u_SQUOTE] = ACTIONS(2719), + [anon_sym_U_SQUOTE] = ACTIONS(2719), + [anon_sym_u8_SQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_L_DQUOTE] = ACTIONS(2719), + [anon_sym_u_DQUOTE] = ACTIONS(2719), + [anon_sym_U_DQUOTE] = ACTIONS(2719), + [anon_sym_u8_DQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [sym_true] = ACTIONS(2717), + [sym_false] = ACTIONS(2717), + [sym_null] = ACTIONS(2717), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2717), + [anon_sym_decltype] = ACTIONS(2717), + [anon_sym_virtual] = ACTIONS(2717), + [anon_sym_explicit] = ACTIONS(2717), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2717), + [anon_sym_operator] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_namespace] = ACTIONS(2717), + [anon_sym_using] = ACTIONS(2717), + [anon_sym_static_assert] = ACTIONS(2717), + [anon_sym_concept] = ACTIONS(2717), + [anon_sym_co_return] = ACTIONS(2717), + [anon_sym_co_yield] = ACTIONS(2717), + [anon_sym_R_DQUOTE] = ACTIONS(2719), + [anon_sym_LR_DQUOTE] = ACTIONS(2719), + [anon_sym_uR_DQUOTE] = ACTIONS(2719), + [anon_sym_UR_DQUOTE] = ACTIONS(2719), + [anon_sym_u8R_DQUOTE] = ACTIONS(2719), + [anon_sym_co_await] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_requires] = ACTIONS(2717), + [sym_this] = ACTIONS(2717), + [sym_nullptr] = ACTIONS(2717), + }, + [498] = { + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token2] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [aux_sym_preproc_else_token1] = ACTIONS(2721), + [aux_sym_preproc_elif_token1] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym_input] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [sym_null] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), + [sym_nullptr] = ACTIONS(2721), + }, + [499] = { + [sym_identifier] = ACTIONS(2725), + [aux_sym_preproc_include_token1] = ACTIONS(2725), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token2] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), + [aux_sym_preproc_else_token1] = ACTIONS(2725), + [aux_sym_preproc_elif_token1] = ACTIONS(2725), + [sym_preproc_directive] = ACTIONS(2725), + [anon_sym_LPAREN2] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_typedef] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym___attribute__] = ACTIONS(2725), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), + [anon_sym___declspec] = ACTIONS(2725), + [anon_sym___based] = ACTIONS(2725), + [anon_sym___cdecl] = ACTIONS(2725), + [anon_sym___clrcall] = ACTIONS(2725), + [anon_sym___stdcall] = ACTIONS(2725), + [anon_sym___fastcall] = ACTIONS(2725), + [anon_sym___thiscall] = ACTIONS(2725), + [anon_sym___vectorcall] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_register] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym_thread_local] = ACTIONS(2725), + [anon_sym_input] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_volatile] = ACTIONS(2725), + [anon_sym_restrict] = ACTIONS(2725), + [anon_sym__Atomic] = ACTIONS(2725), + [anon_sym_mutable] = ACTIONS(2725), + [anon_sym_constexpr] = ACTIONS(2725), + [anon_sym_constinit] = ACTIONS(2725), + [anon_sym_consteval] = ACTIONS(2725), + [anon_sym_signed] = ACTIONS(2725), + [anon_sym_unsigned] = ACTIONS(2725), + [anon_sym_long] = ACTIONS(2725), + [anon_sym_short] = ACTIONS(2725), + [sym_primitive_type] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_case] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2725), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_compl] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2725), + [sym_number_literal] = ACTIONS(2727), + [anon_sym_L_SQUOTE] = ACTIONS(2727), + [anon_sym_u_SQUOTE] = ACTIONS(2727), + [anon_sym_U_SQUOTE] = ACTIONS(2727), + [anon_sym_u8_SQUOTE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_L_DQUOTE] = ACTIONS(2727), + [anon_sym_u_DQUOTE] = ACTIONS(2727), + [anon_sym_U_DQUOTE] = ACTIONS(2727), + [anon_sym_u8_DQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [sym_null] = ACTIONS(2725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2725), + [anon_sym_decltype] = ACTIONS(2725), + [anon_sym_virtual] = ACTIONS(2725), + [anon_sym_explicit] = ACTIONS(2725), + [anon_sym_typename] = ACTIONS(2725), + [anon_sym_template] = ACTIONS(2725), + [anon_sym_operator] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_namespace] = ACTIONS(2725), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2725), + [anon_sym_concept] = ACTIONS(2725), + [anon_sym_co_return] = ACTIONS(2725), + [anon_sym_co_yield] = ACTIONS(2725), + [anon_sym_R_DQUOTE] = ACTIONS(2727), + [anon_sym_LR_DQUOTE] = ACTIONS(2727), + [anon_sym_uR_DQUOTE] = ACTIONS(2727), + [anon_sym_UR_DQUOTE] = ACTIONS(2727), + [anon_sym_u8R_DQUOTE] = ACTIONS(2727), + [anon_sym_co_await] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_requires] = ACTIONS(2725), + [sym_this] = ACTIONS(2725), + [sym_nullptr] = ACTIONS(2725), + }, + [500] = { + [sym_identifier] = ACTIONS(2729), + [aux_sym_preproc_include_token1] = ACTIONS(2729), + [aux_sym_preproc_def_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token2] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), + [aux_sym_preproc_else_token1] = ACTIONS(2729), + [aux_sym_preproc_elif_token1] = ACTIONS(2729), + [sym_preproc_directive] = ACTIONS(2729), + [anon_sym_LPAREN2] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym___attribute__] = ACTIONS(2729), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), + [anon_sym___declspec] = ACTIONS(2729), + [anon_sym___based] = ACTIONS(2729), + [anon_sym___cdecl] = ACTIONS(2729), + [anon_sym___clrcall] = ACTIONS(2729), + [anon_sym___stdcall] = ACTIONS(2729), + [anon_sym___fastcall] = ACTIONS(2729), + [anon_sym___thiscall] = ACTIONS(2729), + [anon_sym___vectorcall] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_register] = ACTIONS(2729), + [anon_sym_inline] = ACTIONS(2729), + [anon_sym_thread_local] = ACTIONS(2729), + [anon_sym_input] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_volatile] = ACTIONS(2729), + [anon_sym_restrict] = ACTIONS(2729), + [anon_sym__Atomic] = ACTIONS(2729), + [anon_sym_mutable] = ACTIONS(2729), + [anon_sym_constexpr] = ACTIONS(2729), + [anon_sym_constinit] = ACTIONS(2729), + [anon_sym_consteval] = ACTIONS(2729), + [anon_sym_signed] = ACTIONS(2729), + [anon_sym_unsigned] = ACTIONS(2729), + [anon_sym_long] = ACTIONS(2729), + [anon_sym_short] = ACTIONS(2729), + [sym_primitive_type] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_case] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_goto] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_compl] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(2731), + [anon_sym_L_SQUOTE] = ACTIONS(2731), + [anon_sym_u_SQUOTE] = ACTIONS(2731), + [anon_sym_U_SQUOTE] = ACTIONS(2731), + [anon_sym_u8_SQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_L_DQUOTE] = ACTIONS(2731), + [anon_sym_u_DQUOTE] = ACTIONS(2731), + [anon_sym_U_DQUOTE] = ACTIONS(2731), + [anon_sym_u8_DQUOTE] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_null] = ACTIONS(2729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2729), + [anon_sym_decltype] = ACTIONS(2729), + [anon_sym_virtual] = ACTIONS(2729), + [anon_sym_explicit] = ACTIONS(2729), + [anon_sym_typename] = ACTIONS(2729), + [anon_sym_template] = ACTIONS(2729), + [anon_sym_operator] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_delete] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_static_assert] = ACTIONS(2729), + [anon_sym_concept] = ACTIONS(2729), + [anon_sym_co_return] = ACTIONS(2729), + [anon_sym_co_yield] = ACTIONS(2729), + [anon_sym_R_DQUOTE] = ACTIONS(2731), + [anon_sym_LR_DQUOTE] = ACTIONS(2731), + [anon_sym_uR_DQUOTE] = ACTIONS(2731), + [anon_sym_UR_DQUOTE] = ACTIONS(2731), + [anon_sym_u8R_DQUOTE] = ACTIONS(2731), + [anon_sym_co_await] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_requires] = ACTIONS(2729), + [sym_this] = ACTIONS(2729), + [sym_nullptr] = ACTIONS(2729), + }, + [501] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3638), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5723), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(6101), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2733), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [502] = { + [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_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_LBRACK] = ACTIONS(2735), + [anon_sym_static] = ACTIONS(2735), + [anon_sym_register] = ACTIONS(2735), + [anon_sym_inline] = ACTIONS(2735), + [anon_sym_thread_local] = ACTIONS(2735), + [anon_sym_input] = ACTIONS(2735), + [anon_sym_const] = ACTIONS(2735), + [anon_sym_volatile] = ACTIONS(2735), + [anon_sym_restrict] = ACTIONS(2735), + [anon_sym__Atomic] = ACTIONS(2735), + [anon_sym_mutable] = ACTIONS(2735), + [anon_sym_constexpr] = ACTIONS(2735), + [anon_sym_constinit] = ACTIONS(2735), + [anon_sym_consteval] = ACTIONS(2735), + [anon_sym_signed] = ACTIONS(2735), + [anon_sym_unsigned] = ACTIONS(2735), + [anon_sym_long] = ACTIONS(2735), + [anon_sym_short] = 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_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), + [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), + [sym_null] = ACTIONS(2735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2735), + [anon_sym_decltype] = ACTIONS(2735), + [anon_sym_virtual] = 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), + [sym_nullptr] = ACTIONS(2735), + }, + [503] = { + [sym_identifier] = ACTIONS(2739), + [aux_sym_preproc_include_token1] = ACTIONS(2739), + [aux_sym_preproc_def_token1] = ACTIONS(2739), + [aux_sym_preproc_if_token1] = ACTIONS(2739), + [aux_sym_preproc_if_token2] = ACTIONS(2739), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), + [aux_sym_preproc_else_token1] = ACTIONS(2739), + [aux_sym_preproc_elif_token1] = ACTIONS(2739), + [sym_preproc_directive] = ACTIONS(2739), + [anon_sym_LPAREN2] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_PLUS] = ACTIONS(2739), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_AMP_AMP] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2739), + [anon_sym_SEMI] = ACTIONS(2741), + [anon_sym_typedef] = ACTIONS(2739), + [anon_sym_extern] = ACTIONS(2739), + [anon_sym___attribute__] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2741), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), + [anon_sym___declspec] = ACTIONS(2739), + [anon_sym___based] = ACTIONS(2739), + [anon_sym___cdecl] = ACTIONS(2739), + [anon_sym___clrcall] = ACTIONS(2739), + [anon_sym___stdcall] = ACTIONS(2739), + [anon_sym___fastcall] = ACTIONS(2739), + [anon_sym___thiscall] = ACTIONS(2739), + [anon_sym___vectorcall] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_static] = ACTIONS(2739), + [anon_sym_register] = ACTIONS(2739), + [anon_sym_inline] = ACTIONS(2739), + [anon_sym_thread_local] = ACTIONS(2739), + [anon_sym_input] = ACTIONS(2739), + [anon_sym_const] = ACTIONS(2739), + [anon_sym_volatile] = ACTIONS(2739), + [anon_sym_restrict] = ACTIONS(2739), + [anon_sym__Atomic] = ACTIONS(2739), + [anon_sym_mutable] = ACTIONS(2739), + [anon_sym_constexpr] = ACTIONS(2739), + [anon_sym_constinit] = ACTIONS(2739), + [anon_sym_consteval] = ACTIONS(2739), + [anon_sym_signed] = ACTIONS(2739), + [anon_sym_unsigned] = ACTIONS(2739), + [anon_sym_long] = ACTIONS(2739), + [anon_sym_short] = ACTIONS(2739), + [sym_primitive_type] = ACTIONS(2739), + [anon_sym_enum] = ACTIONS(2739), + [anon_sym_class] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2739), + [anon_sym_union] = ACTIONS(2739), + [anon_sym_if] = ACTIONS(2739), + [anon_sym_switch] = ACTIONS(2739), + [anon_sym_case] = ACTIONS(2739), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2739), + [anon_sym_do] = ACTIONS(2739), + [anon_sym_for] = ACTIONS(2739), + [anon_sym_return] = ACTIONS(2739), + [anon_sym_break] = ACTIONS(2739), + [anon_sym_continue] = ACTIONS(2739), + [anon_sym_goto] = ACTIONS(2739), + [anon_sym_not] = ACTIONS(2739), + [anon_sym_compl] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_sizeof] = ACTIONS(2739), + [sym_number_literal] = ACTIONS(2741), + [anon_sym_L_SQUOTE] = ACTIONS(2741), + [anon_sym_u_SQUOTE] = ACTIONS(2741), + [anon_sym_U_SQUOTE] = ACTIONS(2741), + [anon_sym_u8_SQUOTE] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_L_DQUOTE] = ACTIONS(2741), + [anon_sym_u_DQUOTE] = ACTIONS(2741), + [anon_sym_U_DQUOTE] = ACTIONS(2741), + [anon_sym_u8_DQUOTE] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2741), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2739), + [anon_sym_decltype] = ACTIONS(2739), + [anon_sym_virtual] = ACTIONS(2739), + [anon_sym_explicit] = ACTIONS(2739), + [anon_sym_typename] = ACTIONS(2739), + [anon_sym_template] = ACTIONS(2739), + [anon_sym_operator] = ACTIONS(2739), + [anon_sym_try] = ACTIONS(2739), + [anon_sym_delete] = ACTIONS(2739), + [anon_sym_throw] = ACTIONS(2739), + [anon_sym_namespace] = ACTIONS(2739), + [anon_sym_using] = ACTIONS(2739), + [anon_sym_static_assert] = ACTIONS(2739), + [anon_sym_concept] = ACTIONS(2739), + [anon_sym_co_return] = ACTIONS(2739), + [anon_sym_co_yield] = ACTIONS(2739), + [anon_sym_R_DQUOTE] = ACTIONS(2741), + [anon_sym_LR_DQUOTE] = ACTIONS(2741), + [anon_sym_uR_DQUOTE] = ACTIONS(2741), + [anon_sym_UR_DQUOTE] = ACTIONS(2741), + [anon_sym_u8R_DQUOTE] = ACTIONS(2741), + [anon_sym_co_await] = ACTIONS(2739), + [anon_sym_new] = ACTIONS(2739), + [anon_sym_requires] = ACTIONS(2739), + [sym_this] = ACTIONS(2739), + [sym_nullptr] = ACTIONS(2739), + }, + [504] = { + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_include_token1] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token2] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [aux_sym_preproc_else_token1] = ACTIONS(2743), + [aux_sym_preproc_elif_token1] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym___cdecl] = ACTIONS(2743), + [anon_sym___clrcall] = ACTIONS(2743), + [anon_sym___stdcall] = ACTIONS(2743), + [anon_sym___fastcall] = ACTIONS(2743), + [anon_sym___thiscall] = ACTIONS(2743), + [anon_sym___vectorcall] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym_input] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2743), + [anon_sym_case] = ACTIONS(2743), + [anon_sym_default] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_do] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym_not] = ACTIONS(2743), + [anon_sym_compl] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_sizeof] = ACTIONS(2743), + [sym_number_literal] = ACTIONS(2745), + [anon_sym_L_SQUOTE] = ACTIONS(2745), + [anon_sym_u_SQUOTE] = ACTIONS(2745), + [anon_sym_U_SQUOTE] = ACTIONS(2745), + [anon_sym_u8_SQUOTE] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_L_DQUOTE] = ACTIONS(2745), + [anon_sym_u_DQUOTE] = ACTIONS(2745), + [anon_sym_U_DQUOTE] = ACTIONS(2745), + [anon_sym_u8_DQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_null] = ACTIONS(2743), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [anon_sym_delete] = ACTIONS(2743), + [anon_sym_throw] = ACTIONS(2743), + [anon_sym_namespace] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), + [anon_sym_concept] = ACTIONS(2743), + [anon_sym_co_return] = ACTIONS(2743), + [anon_sym_co_yield] = ACTIONS(2743), + [anon_sym_R_DQUOTE] = ACTIONS(2745), + [anon_sym_LR_DQUOTE] = ACTIONS(2745), + [anon_sym_uR_DQUOTE] = ACTIONS(2745), + [anon_sym_UR_DQUOTE] = ACTIONS(2745), + [anon_sym_u8R_DQUOTE] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2743), + [anon_sym_new] = ACTIONS(2743), + [anon_sym_requires] = ACTIONS(2743), + [sym_this] = ACTIONS(2743), + [sym_nullptr] = ACTIONS(2743), + }, + [505] = { + [sym_identifier] = ACTIONS(2747), + [aux_sym_preproc_include_token1] = ACTIONS(2747), + [aux_sym_preproc_def_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token2] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), + [aux_sym_preproc_else_token1] = ACTIONS(2747), + [aux_sym_preproc_elif_token1] = ACTIONS(2747), + [sym_preproc_directive] = ACTIONS(2747), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_typedef] = ACTIONS(2747), + [anon_sym_extern] = ACTIONS(2747), + [anon_sym___attribute__] = ACTIONS(2747), + [anon_sym_COLON_COLON] = ACTIONS(2749), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), + [anon_sym___declspec] = ACTIONS(2747), + [anon_sym___based] = ACTIONS(2747), + [anon_sym___cdecl] = ACTIONS(2747), + [anon_sym___clrcall] = ACTIONS(2747), + [anon_sym___stdcall] = ACTIONS(2747), + [anon_sym___fastcall] = ACTIONS(2747), + [anon_sym___thiscall] = ACTIONS(2747), + [anon_sym___vectorcall] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_static] = ACTIONS(2747), + [anon_sym_register] = ACTIONS(2747), + [anon_sym_inline] = ACTIONS(2747), + [anon_sym_thread_local] = ACTIONS(2747), + [anon_sym_input] = ACTIONS(2747), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_volatile] = ACTIONS(2747), + [anon_sym_restrict] = ACTIONS(2747), + [anon_sym__Atomic] = ACTIONS(2747), + [anon_sym_mutable] = ACTIONS(2747), + [anon_sym_constexpr] = ACTIONS(2747), + [anon_sym_constinit] = ACTIONS(2747), + [anon_sym_consteval] = ACTIONS(2747), + [anon_sym_signed] = ACTIONS(2747), + [anon_sym_unsigned] = ACTIONS(2747), + [anon_sym_long] = ACTIONS(2747), + [anon_sym_short] = ACTIONS(2747), + [sym_primitive_type] = ACTIONS(2747), + [anon_sym_enum] = ACTIONS(2747), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2747), + [anon_sym_union] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2747), + [anon_sym_case] = ACTIONS(2747), + [anon_sym_default] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_do] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_goto] = ACTIONS(2747), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_compl] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_sizeof] = ACTIONS(2747), + [sym_number_literal] = ACTIONS(2749), + [anon_sym_L_SQUOTE] = ACTIONS(2749), + [anon_sym_u_SQUOTE] = ACTIONS(2749), + [anon_sym_U_SQUOTE] = ACTIONS(2749), + [anon_sym_u8_SQUOTE] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_L_DQUOTE] = ACTIONS(2749), + [anon_sym_u_DQUOTE] = ACTIONS(2749), + [anon_sym_U_DQUOTE] = ACTIONS(2749), + [anon_sym_u8_DQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [sym_null] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2747), + [anon_sym_decltype] = ACTIONS(2747), + [anon_sym_virtual] = ACTIONS(2747), + [anon_sym_explicit] = ACTIONS(2747), + [anon_sym_typename] = ACTIONS(2747), + [anon_sym_template] = ACTIONS(2747), + [anon_sym_operator] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_delete] = ACTIONS(2747), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_namespace] = ACTIONS(2747), + [anon_sym_using] = ACTIONS(2747), + [anon_sym_static_assert] = ACTIONS(2747), + [anon_sym_concept] = ACTIONS(2747), + [anon_sym_co_return] = ACTIONS(2747), + [anon_sym_co_yield] = ACTIONS(2747), + [anon_sym_R_DQUOTE] = ACTIONS(2749), + [anon_sym_LR_DQUOTE] = ACTIONS(2749), + [anon_sym_uR_DQUOTE] = ACTIONS(2749), + [anon_sym_UR_DQUOTE] = ACTIONS(2749), + [anon_sym_u8R_DQUOTE] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_requires] = ACTIONS(2747), + [sym_this] = ACTIONS(2747), + [sym_nullptr] = ACTIONS(2747), + }, + [506] = { + [sym_identifier] = ACTIONS(2747), + [aux_sym_preproc_include_token1] = ACTIONS(2747), + [aux_sym_preproc_def_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token2] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), + [aux_sym_preproc_else_token1] = ACTIONS(2747), + [aux_sym_preproc_elif_token1] = ACTIONS(2747), + [sym_preproc_directive] = ACTIONS(2747), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_typedef] = ACTIONS(2747), + [anon_sym_extern] = ACTIONS(2747), + [anon_sym___attribute__] = ACTIONS(2747), + [anon_sym_COLON_COLON] = ACTIONS(2749), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), + [anon_sym___declspec] = ACTIONS(2747), + [anon_sym___based] = ACTIONS(2747), + [anon_sym___cdecl] = ACTIONS(2747), + [anon_sym___clrcall] = ACTIONS(2747), + [anon_sym___stdcall] = ACTIONS(2747), + [anon_sym___fastcall] = ACTIONS(2747), + [anon_sym___thiscall] = ACTIONS(2747), + [anon_sym___vectorcall] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_static] = ACTIONS(2747), + [anon_sym_register] = ACTIONS(2747), + [anon_sym_inline] = ACTIONS(2747), + [anon_sym_thread_local] = ACTIONS(2747), + [anon_sym_input] = ACTIONS(2747), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_volatile] = ACTIONS(2747), + [anon_sym_restrict] = ACTIONS(2747), + [anon_sym__Atomic] = ACTIONS(2747), + [anon_sym_mutable] = ACTIONS(2747), + [anon_sym_constexpr] = ACTIONS(2747), + [anon_sym_constinit] = ACTIONS(2747), + [anon_sym_consteval] = ACTIONS(2747), + [anon_sym_signed] = ACTIONS(2747), + [anon_sym_unsigned] = ACTIONS(2747), + [anon_sym_long] = ACTIONS(2747), + [anon_sym_short] = ACTIONS(2747), + [sym_primitive_type] = ACTIONS(2747), + [anon_sym_enum] = ACTIONS(2747), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2747), + [anon_sym_union] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2747), + [anon_sym_case] = ACTIONS(2747), + [anon_sym_default] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_do] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_goto] = ACTIONS(2747), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_compl] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_sizeof] = ACTIONS(2747), + [sym_number_literal] = ACTIONS(2749), + [anon_sym_L_SQUOTE] = ACTIONS(2749), + [anon_sym_u_SQUOTE] = ACTIONS(2749), + [anon_sym_U_SQUOTE] = ACTIONS(2749), + [anon_sym_u8_SQUOTE] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_L_DQUOTE] = ACTIONS(2749), + [anon_sym_u_DQUOTE] = ACTIONS(2749), + [anon_sym_U_DQUOTE] = ACTIONS(2749), + [anon_sym_u8_DQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [sym_null] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2747), + [anon_sym_decltype] = ACTIONS(2747), + [anon_sym_virtual] = ACTIONS(2747), + [anon_sym_explicit] = ACTIONS(2747), + [anon_sym_typename] = ACTIONS(2747), + [anon_sym_template] = ACTIONS(2747), + [anon_sym_operator] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_delete] = ACTIONS(2747), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_namespace] = ACTIONS(2747), + [anon_sym_using] = ACTIONS(2747), + [anon_sym_static_assert] = ACTIONS(2747), + [anon_sym_concept] = ACTIONS(2747), + [anon_sym_co_return] = ACTIONS(2747), + [anon_sym_co_yield] = ACTIONS(2747), + [anon_sym_R_DQUOTE] = ACTIONS(2749), + [anon_sym_LR_DQUOTE] = ACTIONS(2749), + [anon_sym_uR_DQUOTE] = ACTIONS(2749), + [anon_sym_UR_DQUOTE] = ACTIONS(2749), + [anon_sym_u8R_DQUOTE] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_requires] = ACTIONS(2747), + [sym_this] = ACTIONS(2747), + [sym_nullptr] = ACTIONS(2747), + }, + [507] = { + [sym_identifier] = ACTIONS(2751), + [aux_sym_preproc_include_token1] = ACTIONS(2751), + [aux_sym_preproc_def_token1] = ACTIONS(2751), + [aux_sym_preproc_if_token1] = ACTIONS(2751), + [aux_sym_preproc_if_token2] = ACTIONS(2751), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2751), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2751), + [aux_sym_preproc_else_token1] = ACTIONS(2751), + [aux_sym_preproc_elif_token1] = ACTIONS(2751), + [sym_preproc_directive] = ACTIONS(2751), + [anon_sym_LPAREN2] = ACTIONS(2753), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_TILDE] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_STAR] = ACTIONS(2753), + [anon_sym_AMP_AMP] = ACTIONS(2753), + [anon_sym_AMP] = ACTIONS(2751), + [anon_sym_SEMI] = ACTIONS(2753), + [anon_sym_typedef] = ACTIONS(2751), + [anon_sym_extern] = ACTIONS(2751), + [anon_sym___attribute__] = ACTIONS(2751), + [anon_sym_COLON_COLON] = ACTIONS(2753), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), + [anon_sym___declspec] = ACTIONS(2751), + [anon_sym___based] = ACTIONS(2751), + [anon_sym___cdecl] = ACTIONS(2751), + [anon_sym___clrcall] = ACTIONS(2751), + [anon_sym___stdcall] = ACTIONS(2751), + [anon_sym___fastcall] = ACTIONS(2751), + [anon_sym___thiscall] = ACTIONS(2751), + [anon_sym___vectorcall] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_static] = ACTIONS(2751), + [anon_sym_register] = ACTIONS(2751), + [anon_sym_inline] = ACTIONS(2751), + [anon_sym_thread_local] = ACTIONS(2751), + [anon_sym_input] = ACTIONS(2751), + [anon_sym_const] = ACTIONS(2751), + [anon_sym_volatile] = ACTIONS(2751), + [anon_sym_restrict] = ACTIONS(2751), + [anon_sym__Atomic] = ACTIONS(2751), + [anon_sym_mutable] = ACTIONS(2751), + [anon_sym_constexpr] = ACTIONS(2751), + [anon_sym_constinit] = ACTIONS(2751), + [anon_sym_consteval] = ACTIONS(2751), + [anon_sym_signed] = ACTIONS(2751), + [anon_sym_unsigned] = ACTIONS(2751), + [anon_sym_long] = ACTIONS(2751), + [anon_sym_short] = ACTIONS(2751), + [sym_primitive_type] = ACTIONS(2751), + [anon_sym_enum] = ACTIONS(2751), + [anon_sym_class] = ACTIONS(2751), + [anon_sym_struct] = ACTIONS(2751), + [anon_sym_union] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(2751), + [anon_sym_switch] = ACTIONS(2751), + [anon_sym_case] = ACTIONS(2751), + [anon_sym_default] = ACTIONS(2751), + [anon_sym_while] = ACTIONS(2751), + [anon_sym_do] = ACTIONS(2751), + [anon_sym_for] = ACTIONS(2751), + [anon_sym_return] = ACTIONS(2751), + [anon_sym_break] = ACTIONS(2751), + [anon_sym_continue] = ACTIONS(2751), + [anon_sym_goto] = ACTIONS(2751), + [anon_sym_not] = ACTIONS(2751), + [anon_sym_compl] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2753), + [anon_sym_PLUS_PLUS] = ACTIONS(2753), + [anon_sym_sizeof] = ACTIONS(2751), + [sym_number_literal] = ACTIONS(2753), + [anon_sym_L_SQUOTE] = ACTIONS(2753), + [anon_sym_u_SQUOTE] = ACTIONS(2753), + [anon_sym_U_SQUOTE] = ACTIONS(2753), + [anon_sym_u8_SQUOTE] = ACTIONS(2753), + [anon_sym_SQUOTE] = ACTIONS(2753), + [anon_sym_L_DQUOTE] = ACTIONS(2753), + [anon_sym_u_DQUOTE] = ACTIONS(2753), + [anon_sym_U_DQUOTE] = ACTIONS(2753), + [anon_sym_u8_DQUOTE] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2753), + [sym_true] = ACTIONS(2751), + [sym_false] = ACTIONS(2751), + [sym_null] = ACTIONS(2751), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2751), + [anon_sym_decltype] = ACTIONS(2751), + [anon_sym_virtual] = ACTIONS(2751), + [anon_sym_explicit] = ACTIONS(2751), + [anon_sym_typename] = ACTIONS(2751), + [anon_sym_template] = ACTIONS(2751), + [anon_sym_operator] = ACTIONS(2751), + [anon_sym_try] = ACTIONS(2751), + [anon_sym_delete] = ACTIONS(2751), + [anon_sym_throw] = ACTIONS(2751), + [anon_sym_namespace] = ACTIONS(2751), + [anon_sym_using] = ACTIONS(2751), + [anon_sym_static_assert] = ACTIONS(2751), + [anon_sym_concept] = ACTIONS(2751), + [anon_sym_co_return] = ACTIONS(2751), + [anon_sym_co_yield] = ACTIONS(2751), + [anon_sym_R_DQUOTE] = ACTIONS(2753), + [anon_sym_LR_DQUOTE] = ACTIONS(2753), + [anon_sym_uR_DQUOTE] = ACTIONS(2753), + [anon_sym_UR_DQUOTE] = ACTIONS(2753), + [anon_sym_u8R_DQUOTE] = ACTIONS(2753), + [anon_sym_co_await] = ACTIONS(2751), + [anon_sym_new] = ACTIONS(2751), + [anon_sym_requires] = ACTIONS(2751), + [sym_this] = ACTIONS(2751), + [sym_nullptr] = ACTIONS(2751), + }, + [508] = { + [sym_identifier] = ACTIONS(2755), + [aux_sym_preproc_include_token1] = ACTIONS(2755), + [aux_sym_preproc_def_token1] = ACTIONS(2755), + [aux_sym_preproc_if_token1] = ACTIONS(2755), + [aux_sym_preproc_if_token2] = ACTIONS(2755), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2755), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2755), + [aux_sym_preproc_else_token1] = ACTIONS(2755), + [aux_sym_preproc_elif_token1] = ACTIONS(2755), + [sym_preproc_directive] = ACTIONS(2755), + [anon_sym_LPAREN2] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_TILDE] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_AMP_AMP] = ACTIONS(2757), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_SEMI] = ACTIONS(2757), + [anon_sym_typedef] = ACTIONS(2755), + [anon_sym_extern] = ACTIONS(2755), + [anon_sym___attribute__] = ACTIONS(2755), + [anon_sym_COLON_COLON] = ACTIONS(2757), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2757), + [anon_sym___declspec] = ACTIONS(2755), + [anon_sym___based] = ACTIONS(2755), + [anon_sym___cdecl] = ACTIONS(2755), + [anon_sym___clrcall] = ACTIONS(2755), + [anon_sym___stdcall] = ACTIONS(2755), + [anon_sym___fastcall] = ACTIONS(2755), + [anon_sym___thiscall] = ACTIONS(2755), + [anon_sym___vectorcall] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_static] = ACTIONS(2755), + [anon_sym_register] = ACTIONS(2755), + [anon_sym_inline] = ACTIONS(2755), + [anon_sym_thread_local] = ACTIONS(2755), + [anon_sym_input] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_volatile] = ACTIONS(2755), + [anon_sym_restrict] = ACTIONS(2755), + [anon_sym__Atomic] = ACTIONS(2755), + [anon_sym_mutable] = ACTIONS(2755), + [anon_sym_constexpr] = ACTIONS(2755), + [anon_sym_constinit] = ACTIONS(2755), + [anon_sym_consteval] = ACTIONS(2755), + [anon_sym_signed] = ACTIONS(2755), + [anon_sym_unsigned] = ACTIONS(2755), + [anon_sym_long] = ACTIONS(2755), + [anon_sym_short] = ACTIONS(2755), + [sym_primitive_type] = ACTIONS(2755), + [anon_sym_enum] = ACTIONS(2755), + [anon_sym_class] = ACTIONS(2755), + [anon_sym_struct] = ACTIONS(2755), + [anon_sym_union] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_switch] = ACTIONS(2755), + [anon_sym_case] = ACTIONS(2755), + [anon_sym_default] = ACTIONS(2755), + [anon_sym_while] = ACTIONS(2755), + [anon_sym_do] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_goto] = ACTIONS(2755), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_compl] = ACTIONS(2755), + [anon_sym_DASH_DASH] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2757), + [anon_sym_sizeof] = ACTIONS(2755), + [sym_number_literal] = ACTIONS(2757), + [anon_sym_L_SQUOTE] = ACTIONS(2757), + [anon_sym_u_SQUOTE] = ACTIONS(2757), + [anon_sym_U_SQUOTE] = ACTIONS(2757), + [anon_sym_u8_SQUOTE] = ACTIONS(2757), + [anon_sym_SQUOTE] = ACTIONS(2757), + [anon_sym_L_DQUOTE] = ACTIONS(2757), + [anon_sym_u_DQUOTE] = ACTIONS(2757), + [anon_sym_U_DQUOTE] = ACTIONS(2757), + [anon_sym_u8_DQUOTE] = ACTIONS(2757), + [anon_sym_DQUOTE] = ACTIONS(2757), + [sym_true] = ACTIONS(2755), + [sym_false] = ACTIONS(2755), + [sym_null] = ACTIONS(2755), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2755), + [anon_sym_decltype] = ACTIONS(2755), + [anon_sym_virtual] = ACTIONS(2755), + [anon_sym_explicit] = ACTIONS(2755), + [anon_sym_typename] = ACTIONS(2755), + [anon_sym_template] = ACTIONS(2755), + [anon_sym_operator] = ACTIONS(2755), + [anon_sym_try] = ACTIONS(2755), + [anon_sym_delete] = ACTIONS(2755), + [anon_sym_throw] = ACTIONS(2755), + [anon_sym_namespace] = ACTIONS(2755), + [anon_sym_using] = ACTIONS(2755), + [anon_sym_static_assert] = ACTIONS(2755), + [anon_sym_concept] = ACTIONS(2755), + [anon_sym_co_return] = ACTIONS(2755), + [anon_sym_co_yield] = ACTIONS(2755), + [anon_sym_R_DQUOTE] = ACTIONS(2757), + [anon_sym_LR_DQUOTE] = ACTIONS(2757), + [anon_sym_uR_DQUOTE] = ACTIONS(2757), + [anon_sym_UR_DQUOTE] = ACTIONS(2757), + [anon_sym_u8R_DQUOTE] = ACTIONS(2757), + [anon_sym_co_await] = ACTIONS(2755), + [anon_sym_new] = ACTIONS(2755), + [anon_sym_requires] = ACTIONS(2755), + [sym_this] = ACTIONS(2755), + [sym_nullptr] = ACTIONS(2755), + }, + [509] = { + [sym_identifier] = ACTIONS(2759), + [aux_sym_preproc_include_token1] = ACTIONS(2759), + [aux_sym_preproc_def_token1] = ACTIONS(2759), + [aux_sym_preproc_if_token1] = ACTIONS(2759), + [aux_sym_preproc_if_token2] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), + [aux_sym_preproc_else_token1] = ACTIONS(2759), + [aux_sym_preproc_elif_token1] = ACTIONS(2759), + [sym_preproc_directive] = ACTIONS(2759), + [anon_sym_LPAREN2] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2759), + [anon_sym_PLUS] = ACTIONS(2759), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_SEMI] = ACTIONS(2761), + [anon_sym_typedef] = ACTIONS(2759), + [anon_sym_extern] = ACTIONS(2759), + [anon_sym___attribute__] = ACTIONS(2759), + [anon_sym_COLON_COLON] = ACTIONS(2761), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), + [anon_sym___declspec] = ACTIONS(2759), + [anon_sym___based] = ACTIONS(2759), + [anon_sym___cdecl] = ACTIONS(2759), + [anon_sym___clrcall] = ACTIONS(2759), + [anon_sym___stdcall] = ACTIONS(2759), + [anon_sym___fastcall] = ACTIONS(2759), + [anon_sym___thiscall] = ACTIONS(2759), + [anon_sym___vectorcall] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_static] = ACTIONS(2759), + [anon_sym_register] = ACTIONS(2759), + [anon_sym_inline] = ACTIONS(2759), + [anon_sym_thread_local] = ACTIONS(2759), + [anon_sym_input] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2759), + [anon_sym_volatile] = ACTIONS(2759), + [anon_sym_restrict] = ACTIONS(2759), + [anon_sym__Atomic] = ACTIONS(2759), + [anon_sym_mutable] = ACTIONS(2759), + [anon_sym_constexpr] = ACTIONS(2759), + [anon_sym_constinit] = ACTIONS(2759), + [anon_sym_consteval] = ACTIONS(2759), + [anon_sym_signed] = ACTIONS(2759), + [anon_sym_unsigned] = ACTIONS(2759), + [anon_sym_long] = ACTIONS(2759), + [anon_sym_short] = ACTIONS(2759), + [sym_primitive_type] = ACTIONS(2759), + [anon_sym_enum] = ACTIONS(2759), + [anon_sym_class] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2759), + [anon_sym_union] = ACTIONS(2759), + [anon_sym_if] = ACTIONS(2759), + [anon_sym_switch] = ACTIONS(2759), + [anon_sym_case] = ACTIONS(2759), + [anon_sym_default] = ACTIONS(2759), + [anon_sym_while] = ACTIONS(2759), + [anon_sym_do] = ACTIONS(2759), + [anon_sym_for] = ACTIONS(2759), + [anon_sym_return] = ACTIONS(2759), + [anon_sym_break] = ACTIONS(2759), + [anon_sym_continue] = ACTIONS(2759), + [anon_sym_goto] = ACTIONS(2759), + [anon_sym_not] = ACTIONS(2759), + [anon_sym_compl] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2761), + [anon_sym_sizeof] = ACTIONS(2759), + [sym_number_literal] = ACTIONS(2761), + [anon_sym_L_SQUOTE] = ACTIONS(2761), + [anon_sym_u_SQUOTE] = ACTIONS(2761), + [anon_sym_U_SQUOTE] = ACTIONS(2761), + [anon_sym_u8_SQUOTE] = ACTIONS(2761), + [anon_sym_SQUOTE] = ACTIONS(2761), + [anon_sym_L_DQUOTE] = ACTIONS(2761), + [anon_sym_u_DQUOTE] = ACTIONS(2761), + [anon_sym_U_DQUOTE] = ACTIONS(2761), + [anon_sym_u8_DQUOTE] = ACTIONS(2761), + [anon_sym_DQUOTE] = ACTIONS(2761), + [sym_true] = ACTIONS(2759), + [sym_false] = ACTIONS(2759), + [sym_null] = ACTIONS(2759), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2759), + [anon_sym_decltype] = ACTIONS(2759), + [anon_sym_virtual] = ACTIONS(2759), + [anon_sym_explicit] = ACTIONS(2759), + [anon_sym_typename] = ACTIONS(2759), + [anon_sym_template] = ACTIONS(2759), + [anon_sym_operator] = ACTIONS(2759), + [anon_sym_try] = ACTIONS(2759), + [anon_sym_delete] = ACTIONS(2759), + [anon_sym_throw] = ACTIONS(2759), + [anon_sym_namespace] = ACTIONS(2759), + [anon_sym_using] = ACTIONS(2759), + [anon_sym_static_assert] = ACTIONS(2759), + [anon_sym_concept] = ACTIONS(2759), + [anon_sym_co_return] = ACTIONS(2759), + [anon_sym_co_yield] = ACTIONS(2759), + [anon_sym_R_DQUOTE] = ACTIONS(2761), + [anon_sym_LR_DQUOTE] = ACTIONS(2761), + [anon_sym_uR_DQUOTE] = ACTIONS(2761), + [anon_sym_UR_DQUOTE] = ACTIONS(2761), + [anon_sym_u8R_DQUOTE] = ACTIONS(2761), + [anon_sym_co_await] = ACTIONS(2759), + [anon_sym_new] = ACTIONS(2759), + [anon_sym_requires] = ACTIONS(2759), + [sym_this] = ACTIONS(2759), + [sym_nullptr] = ACTIONS(2759), + }, + [510] = { + [sym_identifier] = ACTIONS(2763), + [aux_sym_preproc_include_token1] = ACTIONS(2763), + [aux_sym_preproc_def_token1] = ACTIONS(2763), + [aux_sym_preproc_if_token1] = ACTIONS(2763), + [aux_sym_preproc_if_token2] = ACTIONS(2763), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2763), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2763), + [aux_sym_preproc_else_token1] = ACTIONS(2763), + [aux_sym_preproc_elif_token1] = ACTIONS(2763), + [sym_preproc_directive] = ACTIONS(2763), + [anon_sym_LPAREN2] = ACTIONS(2765), + [anon_sym_BANG] = ACTIONS(2765), + [anon_sym_TILDE] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_PLUS] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_AMP_AMP] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_SEMI] = ACTIONS(2765), + [anon_sym_typedef] = ACTIONS(2763), + [anon_sym_extern] = ACTIONS(2763), + [anon_sym___attribute__] = ACTIONS(2763), + [anon_sym_COLON_COLON] = ACTIONS(2765), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2765), + [anon_sym___declspec] = ACTIONS(2763), + [anon_sym___based] = ACTIONS(2763), + [anon_sym___cdecl] = ACTIONS(2763), + [anon_sym___clrcall] = ACTIONS(2763), + [anon_sym___stdcall] = ACTIONS(2763), + [anon_sym___fastcall] = ACTIONS(2763), + [anon_sym___thiscall] = ACTIONS(2763), + [anon_sym___vectorcall] = ACTIONS(2763), + [anon_sym_LBRACE] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_static] = ACTIONS(2763), + [anon_sym_register] = ACTIONS(2763), + [anon_sym_inline] = ACTIONS(2763), + [anon_sym_thread_local] = ACTIONS(2763), + [anon_sym_input] = ACTIONS(2763), + [anon_sym_const] = ACTIONS(2763), + [anon_sym_volatile] = ACTIONS(2763), + [anon_sym_restrict] = ACTIONS(2763), + [anon_sym__Atomic] = ACTIONS(2763), + [anon_sym_mutable] = ACTIONS(2763), + [anon_sym_constexpr] = ACTIONS(2763), + [anon_sym_constinit] = ACTIONS(2763), + [anon_sym_consteval] = ACTIONS(2763), + [anon_sym_signed] = ACTIONS(2763), + [anon_sym_unsigned] = ACTIONS(2763), + [anon_sym_long] = ACTIONS(2763), + [anon_sym_short] = ACTIONS(2763), + [sym_primitive_type] = ACTIONS(2763), + [anon_sym_enum] = ACTIONS(2763), + [anon_sym_class] = ACTIONS(2763), + [anon_sym_struct] = ACTIONS(2763), + [anon_sym_union] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_switch] = ACTIONS(2763), + [anon_sym_case] = ACTIONS(2763), + [anon_sym_default] = ACTIONS(2763), + [anon_sym_while] = ACTIONS(2763), + [anon_sym_do] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2763), + [anon_sym_return] = ACTIONS(2763), + [anon_sym_break] = ACTIONS(2763), + [anon_sym_continue] = ACTIONS(2763), + [anon_sym_goto] = ACTIONS(2763), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_compl] = ACTIONS(2763), + [anon_sym_DASH_DASH] = ACTIONS(2765), + [anon_sym_PLUS_PLUS] = ACTIONS(2765), + [anon_sym_sizeof] = ACTIONS(2763), + [sym_number_literal] = ACTIONS(2765), + [anon_sym_L_SQUOTE] = ACTIONS(2765), + [anon_sym_u_SQUOTE] = ACTIONS(2765), + [anon_sym_U_SQUOTE] = ACTIONS(2765), + [anon_sym_u8_SQUOTE] = ACTIONS(2765), + [anon_sym_SQUOTE] = ACTIONS(2765), + [anon_sym_L_DQUOTE] = ACTIONS(2765), + [anon_sym_u_DQUOTE] = ACTIONS(2765), + [anon_sym_U_DQUOTE] = ACTIONS(2765), + [anon_sym_u8_DQUOTE] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2765), + [sym_true] = ACTIONS(2763), + [sym_false] = ACTIONS(2763), + [sym_null] = ACTIONS(2763), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2763), + [anon_sym_decltype] = ACTIONS(2763), + [anon_sym_virtual] = ACTIONS(2763), + [anon_sym_explicit] = ACTIONS(2763), + [anon_sym_typename] = ACTIONS(2763), + [anon_sym_template] = ACTIONS(2763), + [anon_sym_operator] = ACTIONS(2763), + [anon_sym_try] = ACTIONS(2763), + [anon_sym_delete] = ACTIONS(2763), + [anon_sym_throw] = ACTIONS(2763), + [anon_sym_namespace] = ACTIONS(2763), + [anon_sym_using] = ACTIONS(2763), + [anon_sym_static_assert] = ACTIONS(2763), + [anon_sym_concept] = ACTIONS(2763), + [anon_sym_co_return] = ACTIONS(2763), + [anon_sym_co_yield] = ACTIONS(2763), + [anon_sym_R_DQUOTE] = ACTIONS(2765), + [anon_sym_LR_DQUOTE] = ACTIONS(2765), + [anon_sym_uR_DQUOTE] = ACTIONS(2765), + [anon_sym_UR_DQUOTE] = ACTIONS(2765), + [anon_sym_u8R_DQUOTE] = ACTIONS(2765), + [anon_sym_co_await] = ACTIONS(2763), + [anon_sym_new] = ACTIONS(2763), + [anon_sym_requires] = ACTIONS(2763), + [sym_this] = ACTIONS(2763), + [sym_nullptr] = ACTIONS(2763), + }, + [511] = { + [sym_identifier] = ACTIONS(2767), + [aux_sym_preproc_include_token1] = ACTIONS(2767), + [aux_sym_preproc_def_token1] = ACTIONS(2767), + [aux_sym_preproc_if_token1] = ACTIONS(2767), + [aux_sym_preproc_if_token2] = ACTIONS(2767), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), + [aux_sym_preproc_else_token1] = ACTIONS(2767), + [aux_sym_preproc_elif_token1] = ACTIONS(2767), + [sym_preproc_directive] = ACTIONS(2767), + [anon_sym_LPAREN2] = ACTIONS(2769), + [anon_sym_BANG] = ACTIONS(2769), + [anon_sym_TILDE] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_AMP_AMP] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_SEMI] = ACTIONS(2769), + [anon_sym_typedef] = ACTIONS(2767), + [anon_sym_extern] = ACTIONS(2767), + [anon_sym___attribute__] = ACTIONS(2767), + [anon_sym_COLON_COLON] = ACTIONS(2769), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), + [anon_sym___declspec] = ACTIONS(2767), + [anon_sym___based] = ACTIONS(2767), + [anon_sym___cdecl] = ACTIONS(2767), + [anon_sym___clrcall] = ACTIONS(2767), + [anon_sym___stdcall] = ACTIONS(2767), + [anon_sym___fastcall] = ACTIONS(2767), + [anon_sym___thiscall] = ACTIONS(2767), + [anon_sym___vectorcall] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_static] = ACTIONS(2767), + [anon_sym_register] = ACTIONS(2767), + [anon_sym_inline] = ACTIONS(2767), + [anon_sym_thread_local] = ACTIONS(2767), + [anon_sym_input] = ACTIONS(2767), + [anon_sym_const] = ACTIONS(2767), + [anon_sym_volatile] = ACTIONS(2767), + [anon_sym_restrict] = ACTIONS(2767), + [anon_sym__Atomic] = ACTIONS(2767), + [anon_sym_mutable] = ACTIONS(2767), + [anon_sym_constexpr] = ACTIONS(2767), + [anon_sym_constinit] = ACTIONS(2767), + [anon_sym_consteval] = ACTIONS(2767), + [anon_sym_signed] = ACTIONS(2767), + [anon_sym_unsigned] = ACTIONS(2767), + [anon_sym_long] = ACTIONS(2767), + [anon_sym_short] = ACTIONS(2767), + [sym_primitive_type] = ACTIONS(2767), + [anon_sym_enum] = ACTIONS(2767), + [anon_sym_class] = ACTIONS(2767), + [anon_sym_struct] = ACTIONS(2767), + [anon_sym_union] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2767), + [anon_sym_switch] = ACTIONS(2767), + [anon_sym_case] = ACTIONS(2767), + [anon_sym_default] = ACTIONS(2767), + [anon_sym_while] = ACTIONS(2767), + [anon_sym_do] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2767), + [anon_sym_return] = ACTIONS(2767), + [anon_sym_break] = ACTIONS(2767), + [anon_sym_continue] = ACTIONS(2767), + [anon_sym_goto] = ACTIONS(2767), + [anon_sym_not] = ACTIONS(2767), + [anon_sym_compl] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2769), + [anon_sym_PLUS_PLUS] = ACTIONS(2769), + [anon_sym_sizeof] = ACTIONS(2767), + [sym_number_literal] = ACTIONS(2769), + [anon_sym_L_SQUOTE] = ACTIONS(2769), + [anon_sym_u_SQUOTE] = ACTIONS(2769), + [anon_sym_U_SQUOTE] = ACTIONS(2769), + [anon_sym_u8_SQUOTE] = ACTIONS(2769), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_L_DQUOTE] = ACTIONS(2769), + [anon_sym_u_DQUOTE] = ACTIONS(2769), + [anon_sym_U_DQUOTE] = ACTIONS(2769), + [anon_sym_u8_DQUOTE] = ACTIONS(2769), + [anon_sym_DQUOTE] = ACTIONS(2769), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_null] = ACTIONS(2767), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2767), + [anon_sym_decltype] = ACTIONS(2767), + [anon_sym_virtual] = ACTIONS(2767), + [anon_sym_explicit] = ACTIONS(2767), + [anon_sym_typename] = ACTIONS(2767), + [anon_sym_template] = ACTIONS(2767), + [anon_sym_operator] = ACTIONS(2767), + [anon_sym_try] = ACTIONS(2767), + [anon_sym_delete] = ACTIONS(2767), + [anon_sym_throw] = ACTIONS(2767), + [anon_sym_namespace] = ACTIONS(2767), + [anon_sym_using] = ACTIONS(2767), + [anon_sym_static_assert] = ACTIONS(2767), + [anon_sym_concept] = ACTIONS(2767), + [anon_sym_co_return] = ACTIONS(2767), + [anon_sym_co_yield] = ACTIONS(2767), + [anon_sym_R_DQUOTE] = ACTIONS(2769), + [anon_sym_LR_DQUOTE] = ACTIONS(2769), + [anon_sym_uR_DQUOTE] = ACTIONS(2769), + [anon_sym_UR_DQUOTE] = ACTIONS(2769), + [anon_sym_u8R_DQUOTE] = ACTIONS(2769), + [anon_sym_co_await] = ACTIONS(2767), + [anon_sym_new] = ACTIONS(2767), + [anon_sym_requires] = ACTIONS(2767), + [sym_this] = ACTIONS(2767), + [sym_nullptr] = ACTIONS(2767), + }, + [512] = { + [sym_identifier] = ACTIONS(2771), + [aux_sym_preproc_include_token1] = ACTIONS(2771), + [aux_sym_preproc_def_token1] = ACTIONS(2771), + [aux_sym_preproc_if_token1] = ACTIONS(2771), + [aux_sym_preproc_if_token2] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2771), + [aux_sym_preproc_else_token1] = ACTIONS(2771), + [aux_sym_preproc_elif_token1] = ACTIONS(2771), + [sym_preproc_directive] = ACTIONS(2771), + [anon_sym_LPAREN2] = ACTIONS(2773), + [anon_sym_BANG] = ACTIONS(2773), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym_typedef] = ACTIONS(2771), + [anon_sym_extern] = ACTIONS(2771), + [anon_sym___attribute__] = ACTIONS(2771), + [anon_sym_COLON_COLON] = ACTIONS(2773), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2773), + [anon_sym___declspec] = ACTIONS(2771), + [anon_sym___based] = ACTIONS(2771), + [anon_sym___cdecl] = ACTIONS(2771), + [anon_sym___clrcall] = ACTIONS(2771), + [anon_sym___stdcall] = ACTIONS(2771), + [anon_sym___fastcall] = ACTIONS(2771), + [anon_sym___thiscall] = ACTIONS(2771), + [anon_sym___vectorcall] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_static] = ACTIONS(2771), + [anon_sym_register] = ACTIONS(2771), + [anon_sym_inline] = ACTIONS(2771), + [anon_sym_thread_local] = ACTIONS(2771), + [anon_sym_input] = ACTIONS(2771), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_volatile] = ACTIONS(2771), + [anon_sym_restrict] = ACTIONS(2771), + [anon_sym__Atomic] = ACTIONS(2771), + [anon_sym_mutable] = ACTIONS(2771), + [anon_sym_constexpr] = ACTIONS(2771), + [anon_sym_constinit] = ACTIONS(2771), + [anon_sym_consteval] = ACTIONS(2771), + [anon_sym_signed] = ACTIONS(2771), + [anon_sym_unsigned] = ACTIONS(2771), + [anon_sym_long] = ACTIONS(2771), + [anon_sym_short] = ACTIONS(2771), + [sym_primitive_type] = ACTIONS(2771), + [anon_sym_enum] = ACTIONS(2771), + [anon_sym_class] = ACTIONS(2771), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(2771), + [anon_sym_switch] = ACTIONS(2771), + [anon_sym_case] = ACTIONS(2771), + [anon_sym_default] = ACTIONS(2771), + [anon_sym_while] = ACTIONS(2771), + [anon_sym_do] = ACTIONS(2771), + [anon_sym_for] = ACTIONS(2771), + [anon_sym_return] = ACTIONS(2771), + [anon_sym_break] = ACTIONS(2771), + [anon_sym_continue] = ACTIONS(2771), + [anon_sym_goto] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2771), + [anon_sym_compl] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(2773), + [anon_sym_sizeof] = ACTIONS(2771), + [sym_number_literal] = ACTIONS(2773), + [anon_sym_L_SQUOTE] = ACTIONS(2773), + [anon_sym_u_SQUOTE] = ACTIONS(2773), + [anon_sym_U_SQUOTE] = ACTIONS(2773), + [anon_sym_u8_SQUOTE] = ACTIONS(2773), + [anon_sym_SQUOTE] = ACTIONS(2773), + [anon_sym_L_DQUOTE] = ACTIONS(2773), + [anon_sym_u_DQUOTE] = ACTIONS(2773), + [anon_sym_U_DQUOTE] = ACTIONS(2773), + [anon_sym_u8_DQUOTE] = ACTIONS(2773), + [anon_sym_DQUOTE] = ACTIONS(2773), + [sym_true] = ACTIONS(2771), + [sym_false] = ACTIONS(2771), + [sym_null] = ACTIONS(2771), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2771), + [anon_sym_decltype] = ACTIONS(2771), + [anon_sym_virtual] = ACTIONS(2771), + [anon_sym_explicit] = ACTIONS(2771), + [anon_sym_typename] = ACTIONS(2771), + [anon_sym_template] = ACTIONS(2771), + [anon_sym_operator] = ACTIONS(2771), + [anon_sym_try] = ACTIONS(2771), + [anon_sym_delete] = ACTIONS(2771), + [anon_sym_throw] = ACTIONS(2771), + [anon_sym_namespace] = ACTIONS(2771), + [anon_sym_using] = ACTIONS(2771), + [anon_sym_static_assert] = ACTIONS(2771), + [anon_sym_concept] = ACTIONS(2771), + [anon_sym_co_return] = ACTIONS(2771), + [anon_sym_co_yield] = ACTIONS(2771), + [anon_sym_R_DQUOTE] = ACTIONS(2773), + [anon_sym_LR_DQUOTE] = ACTIONS(2773), + [anon_sym_uR_DQUOTE] = ACTIONS(2773), + [anon_sym_UR_DQUOTE] = ACTIONS(2773), + [anon_sym_u8R_DQUOTE] = ACTIONS(2773), + [anon_sym_co_await] = ACTIONS(2771), + [anon_sym_new] = ACTIONS(2771), + [anon_sym_requires] = ACTIONS(2771), + [sym_this] = ACTIONS(2771), + [sym_nullptr] = ACTIONS(2771), + }, + [513] = { + [sym_identifier] = ACTIONS(2775), + [aux_sym_preproc_include_token1] = ACTIONS(2775), + [aux_sym_preproc_def_token1] = ACTIONS(2775), + [aux_sym_preproc_if_token1] = ACTIONS(2775), + [aux_sym_preproc_if_token2] = ACTIONS(2775), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2775), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2775), + [aux_sym_preproc_else_token1] = ACTIONS(2775), + [aux_sym_preproc_elif_token1] = ACTIONS(2775), + [sym_preproc_directive] = ACTIONS(2775), + [anon_sym_LPAREN2] = ACTIONS(2777), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_TILDE] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2777), + [anon_sym_AMP_AMP] = ACTIONS(2777), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_SEMI] = ACTIONS(2777), + [anon_sym_typedef] = ACTIONS(2775), + [anon_sym_extern] = ACTIONS(2775), + [anon_sym___attribute__] = ACTIONS(2775), + [anon_sym_COLON_COLON] = ACTIONS(2777), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2777), + [anon_sym___declspec] = ACTIONS(2775), + [anon_sym___based] = ACTIONS(2775), + [anon_sym___cdecl] = ACTIONS(2775), + [anon_sym___clrcall] = ACTIONS(2775), + [anon_sym___stdcall] = ACTIONS(2775), + [anon_sym___fastcall] = ACTIONS(2775), + [anon_sym___thiscall] = ACTIONS(2775), + [anon_sym___vectorcall] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2775), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_register] = ACTIONS(2775), + [anon_sym_inline] = ACTIONS(2775), + [anon_sym_thread_local] = ACTIONS(2775), + [anon_sym_input] = ACTIONS(2775), + [anon_sym_const] = ACTIONS(2775), + [anon_sym_volatile] = ACTIONS(2775), + [anon_sym_restrict] = ACTIONS(2775), + [anon_sym__Atomic] = ACTIONS(2775), + [anon_sym_mutable] = ACTIONS(2775), + [anon_sym_constexpr] = ACTIONS(2775), + [anon_sym_constinit] = ACTIONS(2775), + [anon_sym_consteval] = ACTIONS(2775), + [anon_sym_signed] = ACTIONS(2775), + [anon_sym_unsigned] = ACTIONS(2775), + [anon_sym_long] = ACTIONS(2775), + [anon_sym_short] = ACTIONS(2775), + [sym_primitive_type] = ACTIONS(2775), + [anon_sym_enum] = ACTIONS(2775), + [anon_sym_class] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_union] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_switch] = ACTIONS(2775), + [anon_sym_case] = ACTIONS(2775), + [anon_sym_default] = ACTIONS(2775), + [anon_sym_while] = ACTIONS(2775), + [anon_sym_do] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2775), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2775), + [anon_sym_continue] = ACTIONS(2775), + [anon_sym_goto] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2775), + [anon_sym_compl] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2777), + [anon_sym_sizeof] = ACTIONS(2775), + [sym_number_literal] = ACTIONS(2777), + [anon_sym_L_SQUOTE] = ACTIONS(2777), + [anon_sym_u_SQUOTE] = ACTIONS(2777), + [anon_sym_U_SQUOTE] = ACTIONS(2777), + [anon_sym_u8_SQUOTE] = ACTIONS(2777), + [anon_sym_SQUOTE] = ACTIONS(2777), + [anon_sym_L_DQUOTE] = ACTIONS(2777), + [anon_sym_u_DQUOTE] = ACTIONS(2777), + [anon_sym_U_DQUOTE] = ACTIONS(2777), + [anon_sym_u8_DQUOTE] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2777), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [sym_null] = ACTIONS(2775), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2775), + [anon_sym_decltype] = ACTIONS(2775), + [anon_sym_virtual] = ACTIONS(2775), + [anon_sym_explicit] = ACTIONS(2775), + [anon_sym_typename] = ACTIONS(2775), + [anon_sym_template] = ACTIONS(2775), + [anon_sym_operator] = ACTIONS(2775), + [anon_sym_try] = ACTIONS(2775), + [anon_sym_delete] = ACTIONS(2775), + [anon_sym_throw] = ACTIONS(2775), + [anon_sym_namespace] = ACTIONS(2775), + [anon_sym_using] = ACTIONS(2775), + [anon_sym_static_assert] = ACTIONS(2775), + [anon_sym_concept] = ACTIONS(2775), + [anon_sym_co_return] = ACTIONS(2775), + [anon_sym_co_yield] = ACTIONS(2775), + [anon_sym_R_DQUOTE] = ACTIONS(2777), + [anon_sym_LR_DQUOTE] = ACTIONS(2777), + [anon_sym_uR_DQUOTE] = ACTIONS(2777), + [anon_sym_UR_DQUOTE] = ACTIONS(2777), + [anon_sym_u8R_DQUOTE] = ACTIONS(2777), + [anon_sym_co_await] = ACTIONS(2775), + [anon_sym_new] = ACTIONS(2775), + [anon_sym_requires] = ACTIONS(2775), + [sym_this] = ACTIONS(2775), + [sym_nullptr] = ACTIONS(2775), + }, + [514] = { + [sym_identifier] = ACTIONS(2779), + [aux_sym_preproc_include_token1] = ACTIONS(2779), + [aux_sym_preproc_def_token1] = ACTIONS(2779), + [aux_sym_preproc_if_token1] = ACTIONS(2779), + [aux_sym_preproc_if_token2] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2779), + [aux_sym_preproc_else_token1] = ACTIONS(2779), + [aux_sym_preproc_elif_token1] = ACTIONS(2779), + [sym_preproc_directive] = ACTIONS(2779), + [anon_sym_LPAREN2] = ACTIONS(2781), + [anon_sym_BANG] = ACTIONS(2781), + [anon_sym_TILDE] = ACTIONS(2781), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2781), + [anon_sym_typedef] = ACTIONS(2779), + [anon_sym_extern] = ACTIONS(2779), + [anon_sym___attribute__] = ACTIONS(2779), + [anon_sym_COLON_COLON] = ACTIONS(2781), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2781), + [anon_sym___declspec] = ACTIONS(2779), + [anon_sym___based] = ACTIONS(2779), + [anon_sym___cdecl] = ACTIONS(2779), + [anon_sym___clrcall] = ACTIONS(2779), + [anon_sym___stdcall] = ACTIONS(2779), + [anon_sym___fastcall] = ACTIONS(2779), + [anon_sym___thiscall] = ACTIONS(2779), + [anon_sym___vectorcall] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2781), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_static] = ACTIONS(2779), + [anon_sym_register] = ACTIONS(2779), + [anon_sym_inline] = ACTIONS(2779), + [anon_sym_thread_local] = ACTIONS(2779), + [anon_sym_input] = ACTIONS(2779), + [anon_sym_const] = ACTIONS(2779), + [anon_sym_volatile] = ACTIONS(2779), + [anon_sym_restrict] = ACTIONS(2779), + [anon_sym__Atomic] = ACTIONS(2779), + [anon_sym_mutable] = ACTIONS(2779), + [anon_sym_constexpr] = ACTIONS(2779), + [anon_sym_constinit] = ACTIONS(2779), + [anon_sym_consteval] = ACTIONS(2779), + [anon_sym_signed] = ACTIONS(2779), + [anon_sym_unsigned] = ACTIONS(2779), + [anon_sym_long] = ACTIONS(2779), + [anon_sym_short] = ACTIONS(2779), + [sym_primitive_type] = ACTIONS(2779), + [anon_sym_enum] = ACTIONS(2779), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_union] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_switch] = ACTIONS(2779), + [anon_sym_case] = ACTIONS(2779), + [anon_sym_default] = ACTIONS(2779), + [anon_sym_while] = ACTIONS(2779), + [anon_sym_do] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2779), + [anon_sym_return] = ACTIONS(2779), + [anon_sym_break] = ACTIONS(2779), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_goto] = ACTIONS(2779), + [anon_sym_not] = ACTIONS(2779), + [anon_sym_compl] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2781), + [anon_sym_sizeof] = ACTIONS(2779), + [sym_number_literal] = ACTIONS(2781), + [anon_sym_L_SQUOTE] = ACTIONS(2781), + [anon_sym_u_SQUOTE] = ACTIONS(2781), + [anon_sym_U_SQUOTE] = ACTIONS(2781), + [anon_sym_u8_SQUOTE] = ACTIONS(2781), + [anon_sym_SQUOTE] = ACTIONS(2781), + [anon_sym_L_DQUOTE] = ACTIONS(2781), + [anon_sym_u_DQUOTE] = ACTIONS(2781), + [anon_sym_U_DQUOTE] = ACTIONS(2781), + [anon_sym_u8_DQUOTE] = ACTIONS(2781), + [anon_sym_DQUOTE] = ACTIONS(2781), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [sym_null] = ACTIONS(2779), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2779), + [anon_sym_decltype] = ACTIONS(2779), + [anon_sym_virtual] = ACTIONS(2779), + [anon_sym_explicit] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_template] = ACTIONS(2779), + [anon_sym_operator] = ACTIONS(2779), + [anon_sym_try] = ACTIONS(2779), + [anon_sym_delete] = ACTIONS(2779), + [anon_sym_throw] = ACTIONS(2779), + [anon_sym_namespace] = ACTIONS(2779), + [anon_sym_using] = ACTIONS(2779), + [anon_sym_static_assert] = ACTIONS(2779), + [anon_sym_concept] = ACTIONS(2779), + [anon_sym_co_return] = ACTIONS(2779), + [anon_sym_co_yield] = ACTIONS(2779), + [anon_sym_R_DQUOTE] = ACTIONS(2781), + [anon_sym_LR_DQUOTE] = ACTIONS(2781), + [anon_sym_uR_DQUOTE] = ACTIONS(2781), + [anon_sym_UR_DQUOTE] = ACTIONS(2781), + [anon_sym_u8R_DQUOTE] = ACTIONS(2781), + [anon_sym_co_await] = ACTIONS(2779), + [anon_sym_new] = ACTIONS(2779), + [anon_sym_requires] = ACTIONS(2779), + [sym_this] = ACTIONS(2779), + [sym_nullptr] = ACTIONS(2779), + }, + [515] = { + [sym_identifier] = ACTIONS(2783), + [aux_sym_preproc_include_token1] = ACTIONS(2783), + [aux_sym_preproc_def_token1] = ACTIONS(2783), + [aux_sym_preproc_if_token1] = ACTIONS(2783), + [aux_sym_preproc_if_token2] = ACTIONS(2783), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), + [aux_sym_preproc_else_token1] = ACTIONS(2783), + [aux_sym_preproc_elif_token1] = ACTIONS(2783), + [sym_preproc_directive] = ACTIONS(2783), + [anon_sym_LPAREN2] = ACTIONS(2785), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_AMP_AMP] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_SEMI] = ACTIONS(2785), + [anon_sym_typedef] = ACTIONS(2783), + [anon_sym_extern] = ACTIONS(2783), + [anon_sym___attribute__] = ACTIONS(2783), + [anon_sym_COLON_COLON] = ACTIONS(2785), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2785), + [anon_sym___declspec] = ACTIONS(2783), + [anon_sym___based] = ACTIONS(2783), + [anon_sym___cdecl] = ACTIONS(2783), + [anon_sym___clrcall] = ACTIONS(2783), + [anon_sym___stdcall] = ACTIONS(2783), + [anon_sym___fastcall] = ACTIONS(2783), + [anon_sym___thiscall] = ACTIONS(2783), + [anon_sym___vectorcall] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2785), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_static] = ACTIONS(2783), + [anon_sym_register] = ACTIONS(2783), + [anon_sym_inline] = ACTIONS(2783), + [anon_sym_thread_local] = ACTIONS(2783), + [anon_sym_input] = ACTIONS(2783), + [anon_sym_const] = ACTIONS(2783), + [anon_sym_volatile] = ACTIONS(2783), + [anon_sym_restrict] = ACTIONS(2783), + [anon_sym__Atomic] = ACTIONS(2783), + [anon_sym_mutable] = ACTIONS(2783), + [anon_sym_constexpr] = ACTIONS(2783), + [anon_sym_constinit] = ACTIONS(2783), + [anon_sym_consteval] = ACTIONS(2783), + [anon_sym_signed] = ACTIONS(2783), + [anon_sym_unsigned] = ACTIONS(2783), + [anon_sym_long] = ACTIONS(2783), + [anon_sym_short] = ACTIONS(2783), + [sym_primitive_type] = ACTIONS(2783), + [anon_sym_enum] = ACTIONS(2783), + [anon_sym_class] = ACTIONS(2783), + [anon_sym_struct] = ACTIONS(2783), + [anon_sym_union] = ACTIONS(2783), + [anon_sym_if] = ACTIONS(2783), + [anon_sym_switch] = ACTIONS(2783), + [anon_sym_case] = ACTIONS(2783), + [anon_sym_default] = ACTIONS(2783), + [anon_sym_while] = ACTIONS(2783), + [anon_sym_do] = ACTIONS(2783), + [anon_sym_for] = ACTIONS(2783), + [anon_sym_return] = ACTIONS(2783), + [anon_sym_break] = ACTIONS(2783), + [anon_sym_continue] = ACTIONS(2783), + [anon_sym_goto] = ACTIONS(2783), + [anon_sym_not] = ACTIONS(2783), + [anon_sym_compl] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2785), + [anon_sym_PLUS_PLUS] = ACTIONS(2785), + [anon_sym_sizeof] = ACTIONS(2783), + [sym_number_literal] = ACTIONS(2785), + [anon_sym_L_SQUOTE] = ACTIONS(2785), + [anon_sym_u_SQUOTE] = ACTIONS(2785), + [anon_sym_U_SQUOTE] = ACTIONS(2785), + [anon_sym_u8_SQUOTE] = ACTIONS(2785), + [anon_sym_SQUOTE] = ACTIONS(2785), + [anon_sym_L_DQUOTE] = ACTIONS(2785), + [anon_sym_u_DQUOTE] = ACTIONS(2785), + [anon_sym_U_DQUOTE] = ACTIONS(2785), + [anon_sym_u8_DQUOTE] = ACTIONS(2785), + [anon_sym_DQUOTE] = ACTIONS(2785), + [sym_true] = ACTIONS(2783), + [sym_false] = ACTIONS(2783), + [sym_null] = ACTIONS(2783), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2783), + [anon_sym_decltype] = ACTIONS(2783), + [anon_sym_virtual] = ACTIONS(2783), + [anon_sym_explicit] = ACTIONS(2783), + [anon_sym_typename] = ACTIONS(2783), + [anon_sym_template] = ACTIONS(2783), + [anon_sym_operator] = ACTIONS(2783), + [anon_sym_try] = ACTIONS(2783), + [anon_sym_delete] = ACTIONS(2783), + [anon_sym_throw] = ACTIONS(2783), + [anon_sym_namespace] = ACTIONS(2783), + [anon_sym_using] = ACTIONS(2783), + [anon_sym_static_assert] = ACTIONS(2783), + [anon_sym_concept] = ACTIONS(2783), + [anon_sym_co_return] = ACTIONS(2783), + [anon_sym_co_yield] = ACTIONS(2783), + [anon_sym_R_DQUOTE] = ACTIONS(2785), + [anon_sym_LR_DQUOTE] = ACTIONS(2785), + [anon_sym_uR_DQUOTE] = ACTIONS(2785), + [anon_sym_UR_DQUOTE] = ACTIONS(2785), + [anon_sym_u8R_DQUOTE] = ACTIONS(2785), + [anon_sym_co_await] = ACTIONS(2783), + [anon_sym_new] = ACTIONS(2783), + [anon_sym_requires] = ACTIONS(2783), + [sym_this] = ACTIONS(2783), + [sym_nullptr] = ACTIONS(2783), + }, + [516] = { + [sym_identifier] = ACTIONS(2787), + [aux_sym_preproc_include_token1] = ACTIONS(2787), + [aux_sym_preproc_def_token1] = ACTIONS(2787), + [aux_sym_preproc_if_token1] = ACTIONS(2787), + [aux_sym_preproc_if_token2] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2787), + [aux_sym_preproc_else_token1] = ACTIONS(2787), + [aux_sym_preproc_elif_token1] = ACTIONS(2787), + [sym_preproc_directive] = ACTIONS(2787), + [anon_sym_LPAREN2] = ACTIONS(2789), + [anon_sym_BANG] = ACTIONS(2789), + [anon_sym_TILDE] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2787), + [anon_sym_PLUS] = ACTIONS(2787), + [anon_sym_STAR] = ACTIONS(2789), + [anon_sym_AMP_AMP] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(2787), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym_typedef] = ACTIONS(2787), + [anon_sym_extern] = ACTIONS(2787), + [anon_sym___attribute__] = ACTIONS(2787), + [anon_sym_COLON_COLON] = ACTIONS(2789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2789), + [anon_sym___declspec] = ACTIONS(2787), + [anon_sym___based] = ACTIONS(2787), + [anon_sym___cdecl] = ACTIONS(2787), + [anon_sym___clrcall] = ACTIONS(2787), + [anon_sym___stdcall] = ACTIONS(2787), + [anon_sym___fastcall] = ACTIONS(2787), + [anon_sym___thiscall] = ACTIONS(2787), + [anon_sym___vectorcall] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_static] = ACTIONS(2787), + [anon_sym_register] = ACTIONS(2787), + [anon_sym_inline] = ACTIONS(2787), + [anon_sym_thread_local] = ACTIONS(2787), + [anon_sym_input] = ACTIONS(2787), + [anon_sym_const] = ACTIONS(2787), + [anon_sym_volatile] = ACTIONS(2787), + [anon_sym_restrict] = ACTIONS(2787), + [anon_sym__Atomic] = ACTIONS(2787), + [anon_sym_mutable] = ACTIONS(2787), + [anon_sym_constexpr] = ACTIONS(2787), + [anon_sym_constinit] = ACTIONS(2787), + [anon_sym_consteval] = ACTIONS(2787), + [anon_sym_signed] = ACTIONS(2787), + [anon_sym_unsigned] = ACTIONS(2787), + [anon_sym_long] = ACTIONS(2787), + [anon_sym_short] = ACTIONS(2787), + [sym_primitive_type] = ACTIONS(2787), + [anon_sym_enum] = ACTIONS(2787), + [anon_sym_class] = ACTIONS(2787), + [anon_sym_struct] = ACTIONS(2787), + [anon_sym_union] = ACTIONS(2787), + [anon_sym_if] = ACTIONS(2787), + [anon_sym_switch] = ACTIONS(2787), + [anon_sym_case] = ACTIONS(2787), + [anon_sym_default] = ACTIONS(2787), + [anon_sym_while] = ACTIONS(2787), + [anon_sym_do] = ACTIONS(2787), + [anon_sym_for] = ACTIONS(2787), + [anon_sym_return] = ACTIONS(2787), + [anon_sym_break] = ACTIONS(2787), + [anon_sym_continue] = ACTIONS(2787), + [anon_sym_goto] = ACTIONS(2787), + [anon_sym_not] = ACTIONS(2787), + [anon_sym_compl] = ACTIONS(2787), + [anon_sym_DASH_DASH] = ACTIONS(2789), + [anon_sym_PLUS_PLUS] = ACTIONS(2789), + [anon_sym_sizeof] = ACTIONS(2787), + [sym_number_literal] = ACTIONS(2789), + [anon_sym_L_SQUOTE] = ACTIONS(2789), + [anon_sym_u_SQUOTE] = ACTIONS(2789), + [anon_sym_U_SQUOTE] = ACTIONS(2789), + [anon_sym_u8_SQUOTE] = ACTIONS(2789), + [anon_sym_SQUOTE] = ACTIONS(2789), + [anon_sym_L_DQUOTE] = ACTIONS(2789), + [anon_sym_u_DQUOTE] = ACTIONS(2789), + [anon_sym_U_DQUOTE] = ACTIONS(2789), + [anon_sym_u8_DQUOTE] = ACTIONS(2789), + [anon_sym_DQUOTE] = ACTIONS(2789), + [sym_true] = ACTIONS(2787), + [sym_false] = ACTIONS(2787), + [sym_null] = ACTIONS(2787), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2787), + [anon_sym_decltype] = ACTIONS(2787), + [anon_sym_virtual] = ACTIONS(2787), + [anon_sym_explicit] = ACTIONS(2787), + [anon_sym_typename] = ACTIONS(2787), + [anon_sym_template] = ACTIONS(2787), + [anon_sym_operator] = ACTIONS(2787), + [anon_sym_try] = ACTIONS(2787), + [anon_sym_delete] = ACTIONS(2787), + [anon_sym_throw] = ACTIONS(2787), + [anon_sym_namespace] = ACTIONS(2787), + [anon_sym_using] = ACTIONS(2787), + [anon_sym_static_assert] = ACTIONS(2787), + [anon_sym_concept] = ACTIONS(2787), + [anon_sym_co_return] = ACTIONS(2787), + [anon_sym_co_yield] = ACTIONS(2787), + [anon_sym_R_DQUOTE] = ACTIONS(2789), + [anon_sym_LR_DQUOTE] = ACTIONS(2789), + [anon_sym_uR_DQUOTE] = ACTIONS(2789), + [anon_sym_UR_DQUOTE] = ACTIONS(2789), + [anon_sym_u8R_DQUOTE] = ACTIONS(2789), + [anon_sym_co_await] = ACTIONS(2787), + [anon_sym_new] = ACTIONS(2787), + [anon_sym_requires] = ACTIONS(2787), + [sym_this] = ACTIONS(2787), + [sym_nullptr] = ACTIONS(2787), + }, + [517] = { + [sym_identifier] = ACTIONS(2791), + [aux_sym_preproc_include_token1] = ACTIONS(2791), + [aux_sym_preproc_def_token1] = ACTIONS(2791), + [aux_sym_preproc_if_token1] = ACTIONS(2791), + [aux_sym_preproc_if_token2] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2791), + [aux_sym_preproc_else_token1] = ACTIONS(2791), + [aux_sym_preproc_elif_token1] = ACTIONS(2791), + [sym_preproc_directive] = ACTIONS(2791), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2791), + [anon_sym_PLUS] = ACTIONS(2791), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2791), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym_typedef] = ACTIONS(2791), + [anon_sym_extern] = ACTIONS(2791), + [anon_sym___attribute__] = ACTIONS(2791), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2791), + [anon_sym___based] = ACTIONS(2791), + [anon_sym___cdecl] = ACTIONS(2791), + [anon_sym___clrcall] = ACTIONS(2791), + [anon_sym___stdcall] = ACTIONS(2791), + [anon_sym___fastcall] = ACTIONS(2791), + [anon_sym___thiscall] = ACTIONS(2791), + [anon_sym___vectorcall] = ACTIONS(2791), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_static] = ACTIONS(2791), + [anon_sym_register] = ACTIONS(2791), + [anon_sym_inline] = ACTIONS(2791), + [anon_sym_thread_local] = ACTIONS(2791), + [anon_sym_input] = ACTIONS(2791), + [anon_sym_const] = ACTIONS(2791), + [anon_sym_volatile] = ACTIONS(2791), + [anon_sym_restrict] = ACTIONS(2791), + [anon_sym__Atomic] = ACTIONS(2791), + [anon_sym_mutable] = ACTIONS(2791), + [anon_sym_constexpr] = ACTIONS(2791), + [anon_sym_constinit] = ACTIONS(2791), + [anon_sym_consteval] = ACTIONS(2791), + [anon_sym_signed] = ACTIONS(2791), + [anon_sym_unsigned] = ACTIONS(2791), + [anon_sym_long] = ACTIONS(2791), + [anon_sym_short] = ACTIONS(2791), + [sym_primitive_type] = ACTIONS(2791), + [anon_sym_enum] = ACTIONS(2791), + [anon_sym_class] = ACTIONS(2791), + [anon_sym_struct] = ACTIONS(2791), + [anon_sym_union] = ACTIONS(2791), + [anon_sym_if] = ACTIONS(2791), + [anon_sym_switch] = ACTIONS(2791), + [anon_sym_case] = ACTIONS(2791), + [anon_sym_default] = ACTIONS(2791), + [anon_sym_while] = ACTIONS(2791), + [anon_sym_do] = ACTIONS(2791), + [anon_sym_for] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2791), + [anon_sym_break] = ACTIONS(2791), + [anon_sym_continue] = ACTIONS(2791), + [anon_sym_goto] = ACTIONS(2791), + [anon_sym_not] = ACTIONS(2791), + [anon_sym_compl] = ACTIONS(2791), + [anon_sym_DASH_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2793), + [anon_sym_sizeof] = ACTIONS(2791), + [sym_number_literal] = ACTIONS(2793), + [anon_sym_L_SQUOTE] = ACTIONS(2793), + [anon_sym_u_SQUOTE] = ACTIONS(2793), + [anon_sym_U_SQUOTE] = ACTIONS(2793), + [anon_sym_u8_SQUOTE] = ACTIONS(2793), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_L_DQUOTE] = ACTIONS(2793), + [anon_sym_u_DQUOTE] = ACTIONS(2793), + [anon_sym_U_DQUOTE] = ACTIONS(2793), + [anon_sym_u8_DQUOTE] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [sym_true] = ACTIONS(2791), + [sym_false] = ACTIONS(2791), + [sym_null] = ACTIONS(2791), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2791), + [anon_sym_decltype] = ACTIONS(2791), + [anon_sym_virtual] = ACTIONS(2791), + [anon_sym_explicit] = ACTIONS(2791), + [anon_sym_typename] = ACTIONS(2791), + [anon_sym_template] = ACTIONS(2791), + [anon_sym_operator] = ACTIONS(2791), + [anon_sym_try] = ACTIONS(2791), + [anon_sym_delete] = ACTIONS(2791), + [anon_sym_throw] = ACTIONS(2791), + [anon_sym_namespace] = ACTIONS(2791), + [anon_sym_using] = ACTIONS(2791), + [anon_sym_static_assert] = ACTIONS(2791), + [anon_sym_concept] = ACTIONS(2791), + [anon_sym_co_return] = ACTIONS(2791), + [anon_sym_co_yield] = ACTIONS(2791), + [anon_sym_R_DQUOTE] = ACTIONS(2793), + [anon_sym_LR_DQUOTE] = ACTIONS(2793), + [anon_sym_uR_DQUOTE] = ACTIONS(2793), + [anon_sym_UR_DQUOTE] = ACTIONS(2793), + [anon_sym_u8R_DQUOTE] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2791), + [anon_sym_new] = ACTIONS(2791), + [anon_sym_requires] = ACTIONS(2791), + [sym_this] = ACTIONS(2791), + [sym_nullptr] = ACTIONS(2791), + }, + [518] = { + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_include_token1] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token2] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [aux_sym_preproc_else_token1] = ACTIONS(2795), + [aux_sym_preproc_elif_token1] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_BANG] = ACTIONS(2797), + [anon_sym_TILDE] = ACTIONS(2797), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_AMP_AMP] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2797), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym___cdecl] = ACTIONS(2795), + [anon_sym___clrcall] = ACTIONS(2795), + [anon_sym___stdcall] = ACTIONS(2795), + [anon_sym___fastcall] = ACTIONS(2795), + [anon_sym___thiscall] = ACTIONS(2795), + [anon_sym___vectorcall] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym_input] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_switch] = ACTIONS(2795), + [anon_sym_case] = ACTIONS(2795), + [anon_sym_default] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_break] = ACTIONS(2795), + [anon_sym_continue] = ACTIONS(2795), + [anon_sym_goto] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2795), + [anon_sym_compl] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2797), + [anon_sym_PLUS_PLUS] = ACTIONS(2797), + [anon_sym_sizeof] = ACTIONS(2795), + [sym_number_literal] = ACTIONS(2797), + [anon_sym_L_SQUOTE] = ACTIONS(2797), + [anon_sym_u_SQUOTE] = ACTIONS(2797), + [anon_sym_U_SQUOTE] = ACTIONS(2797), + [anon_sym_u8_SQUOTE] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_L_DQUOTE] = ACTIONS(2797), + [anon_sym_u_DQUOTE] = ACTIONS(2797), + [anon_sym_U_DQUOTE] = ACTIONS(2797), + [anon_sym_u8_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE] = ACTIONS(2797), + [sym_true] = ACTIONS(2795), + [sym_false] = ACTIONS(2795), + [sym_null] = ACTIONS(2795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_delete] = ACTIONS(2795), + [anon_sym_throw] = ACTIONS(2795), + [anon_sym_namespace] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), + [anon_sym_concept] = ACTIONS(2795), + [anon_sym_co_return] = ACTIONS(2795), + [anon_sym_co_yield] = ACTIONS(2795), + [anon_sym_R_DQUOTE] = ACTIONS(2797), + [anon_sym_LR_DQUOTE] = ACTIONS(2797), + [anon_sym_uR_DQUOTE] = ACTIONS(2797), + [anon_sym_UR_DQUOTE] = ACTIONS(2797), + [anon_sym_u8R_DQUOTE] = ACTIONS(2797), + [anon_sym_co_await] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_requires] = ACTIONS(2795), + [sym_this] = ACTIONS(2795), + [sym_nullptr] = ACTIONS(2795), + }, + [519] = { + [sym_identifier] = ACTIONS(2799), + [aux_sym_preproc_include_token1] = ACTIONS(2799), + [aux_sym_preproc_def_token1] = ACTIONS(2799), + [aux_sym_preproc_if_token1] = ACTIONS(2799), + [aux_sym_preproc_if_token2] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2799), + [aux_sym_preproc_else_token1] = ACTIONS(2799), + [aux_sym_preproc_elif_token1] = ACTIONS(2799), + [sym_preproc_directive] = ACTIONS(2799), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym_typedef] = ACTIONS(2799), + [anon_sym_extern] = ACTIONS(2799), + [anon_sym___attribute__] = ACTIONS(2799), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2799), + [anon_sym___based] = ACTIONS(2799), + [anon_sym___cdecl] = ACTIONS(2799), + [anon_sym___clrcall] = ACTIONS(2799), + [anon_sym___stdcall] = ACTIONS(2799), + [anon_sym___fastcall] = ACTIONS(2799), + [anon_sym___thiscall] = ACTIONS(2799), + [anon_sym___vectorcall] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_static] = ACTIONS(2799), + [anon_sym_register] = ACTIONS(2799), + [anon_sym_inline] = ACTIONS(2799), + [anon_sym_thread_local] = ACTIONS(2799), + [anon_sym_input] = ACTIONS(2799), + [anon_sym_const] = ACTIONS(2799), + [anon_sym_volatile] = ACTIONS(2799), + [anon_sym_restrict] = ACTIONS(2799), + [anon_sym__Atomic] = ACTIONS(2799), + [anon_sym_mutable] = ACTIONS(2799), + [anon_sym_constexpr] = ACTIONS(2799), + [anon_sym_constinit] = ACTIONS(2799), + [anon_sym_consteval] = ACTIONS(2799), + [anon_sym_signed] = ACTIONS(2799), + [anon_sym_unsigned] = ACTIONS(2799), + [anon_sym_long] = ACTIONS(2799), + [anon_sym_short] = ACTIONS(2799), + [sym_primitive_type] = ACTIONS(2799), + [anon_sym_enum] = ACTIONS(2799), + [anon_sym_class] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_union] = ACTIONS(2799), + [anon_sym_if] = ACTIONS(2799), + [anon_sym_switch] = ACTIONS(2799), + [anon_sym_case] = ACTIONS(2799), + [anon_sym_default] = ACTIONS(2799), + [anon_sym_while] = ACTIONS(2799), + [anon_sym_do] = ACTIONS(2799), + [anon_sym_for] = ACTIONS(2799), + [anon_sym_return] = ACTIONS(2799), + [anon_sym_break] = ACTIONS(2799), + [anon_sym_continue] = ACTIONS(2799), + [anon_sym_goto] = ACTIONS(2799), + [anon_sym_not] = ACTIONS(2799), + [anon_sym_compl] = ACTIONS(2799), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2799), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [sym_null] = ACTIONS(2799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2799), + [anon_sym_decltype] = ACTIONS(2799), + [anon_sym_virtual] = ACTIONS(2799), + [anon_sym_explicit] = ACTIONS(2799), + [anon_sym_typename] = ACTIONS(2799), + [anon_sym_template] = ACTIONS(2799), + [anon_sym_operator] = ACTIONS(2799), + [anon_sym_try] = ACTIONS(2799), + [anon_sym_delete] = ACTIONS(2799), + [anon_sym_throw] = ACTIONS(2799), + [anon_sym_namespace] = ACTIONS(2799), + [anon_sym_using] = ACTIONS(2799), + [anon_sym_static_assert] = ACTIONS(2799), + [anon_sym_concept] = ACTIONS(2799), + [anon_sym_co_return] = ACTIONS(2799), + [anon_sym_co_yield] = ACTIONS(2799), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2799), + [anon_sym_new] = ACTIONS(2799), + [anon_sym_requires] = ACTIONS(2799), + [sym_this] = ACTIONS(2799), + [sym_nullptr] = ACTIONS(2799), + }, + [520] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token2] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [aux_sym_preproc_else_token1] = ACTIONS(2803), + [aux_sym_preproc_elif_token1] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2805), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym_input] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2805), + [anon_sym_sizeof] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2805), + [anon_sym_L_SQUOTE] = ACTIONS(2805), + [anon_sym_u_SQUOTE] = ACTIONS(2805), + [anon_sym_U_SQUOTE] = ACTIONS(2805), + [anon_sym_u8_SQUOTE] = ACTIONS(2805), + [anon_sym_SQUOTE] = ACTIONS(2805), + [anon_sym_L_DQUOTE] = ACTIONS(2805), + [anon_sym_u_DQUOTE] = ACTIONS(2805), + [anon_sym_U_DQUOTE] = ACTIONS(2805), + [anon_sym_u8_DQUOTE] = ACTIONS(2805), + [anon_sym_DQUOTE] = ACTIONS(2805), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [sym_null] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2805), + [anon_sym_LR_DQUOTE] = ACTIONS(2805), + [anon_sym_uR_DQUOTE] = ACTIONS(2805), + [anon_sym_UR_DQUOTE] = ACTIONS(2805), + [anon_sym_u8R_DQUOTE] = ACTIONS(2805), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [sym_this] = ACTIONS(2803), + [sym_nullptr] = ACTIONS(2803), + }, + [521] = { + [sym_identifier] = ACTIONS(2807), + [aux_sym_preproc_include_token1] = ACTIONS(2807), + [aux_sym_preproc_def_token1] = ACTIONS(2807), + [aux_sym_preproc_if_token1] = ACTIONS(2807), + [aux_sym_preproc_if_token2] = ACTIONS(2807), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2807), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2807), + [aux_sym_preproc_else_token1] = ACTIONS(2807), + [aux_sym_preproc_elif_token1] = ACTIONS(2807), + [sym_preproc_directive] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_AMP_AMP] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2809), + [anon_sym_typedef] = ACTIONS(2807), + [anon_sym_extern] = ACTIONS(2807), + [anon_sym___attribute__] = ACTIONS(2807), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2809), + [anon_sym___declspec] = ACTIONS(2807), + [anon_sym___based] = ACTIONS(2807), + [anon_sym___cdecl] = ACTIONS(2807), + [anon_sym___clrcall] = ACTIONS(2807), + [anon_sym___stdcall] = ACTIONS(2807), + [anon_sym___fastcall] = ACTIONS(2807), + [anon_sym___thiscall] = ACTIONS(2807), + [anon_sym___vectorcall] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_static] = ACTIONS(2807), + [anon_sym_register] = ACTIONS(2807), + [anon_sym_inline] = ACTIONS(2807), + [anon_sym_thread_local] = ACTIONS(2807), + [anon_sym_input] = ACTIONS(2807), + [anon_sym_const] = ACTIONS(2807), + [anon_sym_volatile] = ACTIONS(2807), + [anon_sym_restrict] = ACTIONS(2807), + [anon_sym__Atomic] = ACTIONS(2807), + [anon_sym_mutable] = ACTIONS(2807), + [anon_sym_constexpr] = ACTIONS(2807), + [anon_sym_constinit] = ACTIONS(2807), + [anon_sym_consteval] = ACTIONS(2807), + [anon_sym_signed] = ACTIONS(2807), + [anon_sym_unsigned] = ACTIONS(2807), + [anon_sym_long] = ACTIONS(2807), + [anon_sym_short] = ACTIONS(2807), + [sym_primitive_type] = ACTIONS(2807), + [anon_sym_enum] = ACTIONS(2807), + [anon_sym_class] = ACTIONS(2807), + [anon_sym_struct] = ACTIONS(2807), + [anon_sym_union] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_switch] = ACTIONS(2807), + [anon_sym_case] = ACTIONS(2807), + [anon_sym_default] = ACTIONS(2807), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_break] = ACTIONS(2807), + [anon_sym_continue] = ACTIONS(2807), + [anon_sym_goto] = ACTIONS(2807), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_PLUS_PLUS] = ACTIONS(2809), + [anon_sym_sizeof] = ACTIONS(2807), + [sym_number_literal] = ACTIONS(2809), + [anon_sym_L_SQUOTE] = ACTIONS(2809), + [anon_sym_u_SQUOTE] = ACTIONS(2809), + [anon_sym_U_SQUOTE] = ACTIONS(2809), + [anon_sym_u8_SQUOTE] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_L_DQUOTE] = ACTIONS(2809), + [anon_sym_u_DQUOTE] = ACTIONS(2809), + [anon_sym_U_DQUOTE] = ACTIONS(2809), + [anon_sym_u8_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2809), + [sym_true] = ACTIONS(2807), + [sym_false] = ACTIONS(2807), + [sym_null] = ACTIONS(2807), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2807), + [anon_sym_decltype] = ACTIONS(2807), + [anon_sym_virtual] = ACTIONS(2807), + [anon_sym_explicit] = ACTIONS(2807), + [anon_sym_typename] = ACTIONS(2807), + [anon_sym_template] = ACTIONS(2807), + [anon_sym_operator] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_delete] = ACTIONS(2807), + [anon_sym_throw] = ACTIONS(2807), + [anon_sym_namespace] = ACTIONS(2807), + [anon_sym_using] = ACTIONS(2807), + [anon_sym_static_assert] = ACTIONS(2807), + [anon_sym_concept] = ACTIONS(2807), + [anon_sym_co_return] = ACTIONS(2807), + [anon_sym_co_yield] = ACTIONS(2807), + [anon_sym_R_DQUOTE] = ACTIONS(2809), + [anon_sym_LR_DQUOTE] = ACTIONS(2809), + [anon_sym_uR_DQUOTE] = ACTIONS(2809), + [anon_sym_UR_DQUOTE] = ACTIONS(2809), + [anon_sym_u8R_DQUOTE] = ACTIONS(2809), + [anon_sym_co_await] = ACTIONS(2807), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_requires] = ACTIONS(2807), + [sym_this] = ACTIONS(2807), + [sym_nullptr] = ACTIONS(2807), + }, + [522] = { + [sym_identifier] = ACTIONS(2811), + [aux_sym_preproc_include_token1] = ACTIONS(2811), + [aux_sym_preproc_def_token1] = ACTIONS(2811), + [aux_sym_preproc_if_token1] = ACTIONS(2811), + [aux_sym_preproc_if_token2] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2811), + [aux_sym_preproc_else_token1] = ACTIONS(2811), + [aux_sym_preproc_elif_token1] = ACTIONS(2811), + [sym_preproc_directive] = ACTIONS(2811), + [anon_sym_LPAREN2] = ACTIONS(2813), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP_AMP] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym_typedef] = ACTIONS(2811), + [anon_sym_extern] = ACTIONS(2811), + [anon_sym___attribute__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2813), + [anon_sym___declspec] = ACTIONS(2811), + [anon_sym___based] = ACTIONS(2811), + [anon_sym___cdecl] = ACTIONS(2811), + [anon_sym___clrcall] = ACTIONS(2811), + [anon_sym___stdcall] = ACTIONS(2811), + [anon_sym___fastcall] = ACTIONS(2811), + [anon_sym___thiscall] = ACTIONS(2811), + [anon_sym___vectorcall] = ACTIONS(2811), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_register] = ACTIONS(2811), + [anon_sym_inline] = ACTIONS(2811), + [anon_sym_thread_local] = ACTIONS(2811), + [anon_sym_input] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_volatile] = ACTIONS(2811), + [anon_sym_restrict] = ACTIONS(2811), + [anon_sym__Atomic] = ACTIONS(2811), + [anon_sym_mutable] = ACTIONS(2811), + [anon_sym_constexpr] = ACTIONS(2811), + [anon_sym_constinit] = ACTIONS(2811), + [anon_sym_consteval] = ACTIONS(2811), + [anon_sym_signed] = ACTIONS(2811), + [anon_sym_unsigned] = ACTIONS(2811), + [anon_sym_long] = ACTIONS(2811), + [anon_sym_short] = ACTIONS(2811), + [sym_primitive_type] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2811), + [anon_sym_union] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_switch] = ACTIONS(2811), + [anon_sym_case] = ACTIONS(2811), + [anon_sym_default] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_do] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_goto] = ACTIONS(2811), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2813), + [anon_sym_PLUS_PLUS] = ACTIONS(2813), + [anon_sym_sizeof] = ACTIONS(2811), + [sym_number_literal] = ACTIONS(2813), + [anon_sym_L_SQUOTE] = ACTIONS(2813), + [anon_sym_u_SQUOTE] = ACTIONS(2813), + [anon_sym_U_SQUOTE] = ACTIONS(2813), + [anon_sym_u8_SQUOTE] = ACTIONS(2813), + [anon_sym_SQUOTE] = ACTIONS(2813), + [anon_sym_L_DQUOTE] = ACTIONS(2813), + [anon_sym_u_DQUOTE] = ACTIONS(2813), + [anon_sym_U_DQUOTE] = ACTIONS(2813), + [anon_sym_u8_DQUOTE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2813), + [sym_true] = ACTIONS(2811), + [sym_false] = ACTIONS(2811), + [sym_null] = ACTIONS(2811), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2811), + [anon_sym_decltype] = ACTIONS(2811), + [anon_sym_virtual] = ACTIONS(2811), + [anon_sym_explicit] = ACTIONS(2811), + [anon_sym_typename] = ACTIONS(2811), + [anon_sym_template] = ACTIONS(2811), + [anon_sym_operator] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_throw] = ACTIONS(2811), + [anon_sym_namespace] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2811), + [anon_sym_static_assert] = ACTIONS(2811), + [anon_sym_concept] = ACTIONS(2811), + [anon_sym_co_return] = ACTIONS(2811), + [anon_sym_co_yield] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2813), + [anon_sym_LR_DQUOTE] = ACTIONS(2813), + [anon_sym_uR_DQUOTE] = ACTIONS(2813), + [anon_sym_UR_DQUOTE] = ACTIONS(2813), + [anon_sym_u8R_DQUOTE] = ACTIONS(2813), + [anon_sym_co_await] = ACTIONS(2811), + [anon_sym_new] = ACTIONS(2811), + [anon_sym_requires] = ACTIONS(2811), + [sym_this] = ACTIONS(2811), + [sym_nullptr] = ACTIONS(2811), + }, + [523] = { + [sym_identifier] = ACTIONS(2815), + [aux_sym_preproc_include_token1] = ACTIONS(2815), + [aux_sym_preproc_def_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token2] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), + [aux_sym_preproc_else_token1] = ACTIONS(2815), + [aux_sym_preproc_elif_token1] = ACTIONS(2815), + [sym_preproc_directive] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym_typedef] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym___attribute__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), + [anon_sym___declspec] = ACTIONS(2815), + [anon_sym___based] = ACTIONS(2815), + [anon_sym___cdecl] = ACTIONS(2815), + [anon_sym___clrcall] = ACTIONS(2815), + [anon_sym___stdcall] = ACTIONS(2815), + [anon_sym___fastcall] = ACTIONS(2815), + [anon_sym___thiscall] = ACTIONS(2815), + [anon_sym___vectorcall] = ACTIONS(2815), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_register] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym_thread_local] = ACTIONS(2815), + [anon_sym_input] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_volatile] = ACTIONS(2815), + [anon_sym_restrict] = ACTIONS(2815), + [anon_sym__Atomic] = ACTIONS(2815), + [anon_sym_mutable] = ACTIONS(2815), + [anon_sym_constexpr] = ACTIONS(2815), + [anon_sym_constinit] = ACTIONS(2815), + [anon_sym_consteval] = ACTIONS(2815), + [anon_sym_signed] = ACTIONS(2815), + [anon_sym_unsigned] = ACTIONS(2815), + [anon_sym_long] = ACTIONS(2815), + [anon_sym_short] = ACTIONS(2815), + [sym_primitive_type] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_switch] = ACTIONS(2815), + [anon_sym_case] = ACTIONS(2815), + [anon_sym_default] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_goto] = ACTIONS(2815), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_compl] = ACTIONS(2815), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_sizeof] = ACTIONS(2815), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2817), + [anon_sym_u_SQUOTE] = ACTIONS(2817), + [anon_sym_U_SQUOTE] = ACTIONS(2817), + [anon_sym_u8_SQUOTE] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [anon_sym_L_DQUOTE] = ACTIONS(2817), + [anon_sym_u_DQUOTE] = ACTIONS(2817), + [anon_sym_U_DQUOTE] = ACTIONS(2817), + [anon_sym_u8_DQUOTE] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_null] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_virtual] = ACTIONS(2815), + [anon_sym_explicit] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_template] = ACTIONS(2815), + [anon_sym_operator] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [anon_sym_delete] = ACTIONS(2815), + [anon_sym_throw] = ACTIONS(2815), + [anon_sym_namespace] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_static_assert] = ACTIONS(2815), + [anon_sym_concept] = ACTIONS(2815), + [anon_sym_co_return] = ACTIONS(2815), + [anon_sym_co_yield] = ACTIONS(2815), + [anon_sym_R_DQUOTE] = ACTIONS(2817), + [anon_sym_LR_DQUOTE] = ACTIONS(2817), + [anon_sym_uR_DQUOTE] = ACTIONS(2817), + [anon_sym_UR_DQUOTE] = ACTIONS(2817), + [anon_sym_u8R_DQUOTE] = ACTIONS(2817), + [anon_sym_co_await] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(2815), + [anon_sym_requires] = ACTIONS(2815), + [sym_this] = ACTIONS(2815), + [sym_nullptr] = ACTIONS(2815), + }, + [524] = { + [sym_identifier] = ACTIONS(2379), + [aux_sym_preproc_include_token1] = ACTIONS(2379), + [aux_sym_preproc_def_token1] = ACTIONS(2379), + [aux_sym_preproc_if_token1] = ACTIONS(2379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2379), + [sym_preproc_directive] = ACTIONS(2379), + [anon_sym_LPAREN2] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2381), + [anon_sym_TILDE] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(2381), + [anon_sym_AMP_AMP] = ACTIONS(2381), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_typedef] = ACTIONS(2379), + [anon_sym_extern] = ACTIONS(2379), + [anon_sym___attribute__] = ACTIONS(2379), + [anon_sym_COLON_COLON] = ACTIONS(2381), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2381), + [anon_sym___declspec] = ACTIONS(2379), + [anon_sym___based] = ACTIONS(2379), + [anon_sym___cdecl] = ACTIONS(2379), + [anon_sym___clrcall] = ACTIONS(2379), + [anon_sym___stdcall] = ACTIONS(2379), + [anon_sym___fastcall] = ACTIONS(2379), + [anon_sym___thiscall] = ACTIONS(2379), + [anon_sym___vectorcall] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2379), + [anon_sym_register] = ACTIONS(2379), + [anon_sym_inline] = ACTIONS(2379), + [anon_sym_thread_local] = ACTIONS(2379), + [anon_sym_input] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_volatile] = ACTIONS(2379), + [anon_sym_restrict] = ACTIONS(2379), + [anon_sym__Atomic] = ACTIONS(2379), + [anon_sym_mutable] = ACTIONS(2379), + [anon_sym_constexpr] = ACTIONS(2379), + [anon_sym_constinit] = ACTIONS(2379), + [anon_sym_consteval] = ACTIONS(2379), + [anon_sym_signed] = ACTIONS(2379), + [anon_sym_unsigned] = ACTIONS(2379), + [anon_sym_long] = ACTIONS(2379), + [anon_sym_short] = ACTIONS(2379), + [sym_primitive_type] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_class] = ACTIONS(2379), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_else] = ACTIONS(2379), + [anon_sym_switch] = ACTIONS(2379), + [anon_sym_case] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_do] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_goto] = ACTIONS(2379), + [anon_sym_not] = ACTIONS(2379), + [anon_sym_compl] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2381), + [anon_sym_PLUS_PLUS] = ACTIONS(2381), + [anon_sym_sizeof] = ACTIONS(2379), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_L_SQUOTE] = ACTIONS(2381), + [anon_sym_u_SQUOTE] = ACTIONS(2381), + [anon_sym_U_SQUOTE] = ACTIONS(2381), + [anon_sym_u8_SQUOTE] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2381), + [anon_sym_L_DQUOTE] = ACTIONS(2381), + [anon_sym_u_DQUOTE] = ACTIONS(2381), + [anon_sym_U_DQUOTE] = ACTIONS(2381), + [anon_sym_u8_DQUOTE] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2381), + [sym_true] = ACTIONS(2379), + [sym_false] = ACTIONS(2379), + [sym_null] = ACTIONS(2379), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2379), + [anon_sym_decltype] = ACTIONS(2379), + [anon_sym_virtual] = ACTIONS(2379), + [anon_sym_explicit] = ACTIONS(2379), + [anon_sym_typename] = ACTIONS(2379), + [anon_sym_template] = ACTIONS(2379), + [anon_sym_operator] = ACTIONS(2379), + [anon_sym_try] = ACTIONS(2379), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_throw] = ACTIONS(2379), + [anon_sym_namespace] = ACTIONS(2379), + [anon_sym_using] = ACTIONS(2379), + [anon_sym_static_assert] = ACTIONS(2379), + [anon_sym_concept] = ACTIONS(2379), + [anon_sym_co_return] = ACTIONS(2379), + [anon_sym_co_yield] = ACTIONS(2379), + [anon_sym_catch] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2379), + [anon_sym_new] = ACTIONS(2379), + [anon_sym_requires] = ACTIONS(2379), + [sym_this] = ACTIONS(2379), + [sym_nullptr] = ACTIONS(2379), + }, + [525] = { + [sym_identifier] = ACTIONS(2819), + [aux_sym_preproc_include_token1] = ACTIONS(2819), + [aux_sym_preproc_def_token1] = ACTIONS(2819), + [aux_sym_preproc_if_token1] = ACTIONS(2819), + [aux_sym_preproc_if_token2] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2819), + [aux_sym_preproc_else_token1] = ACTIONS(2819), + [aux_sym_preproc_elif_token1] = ACTIONS(2819), + [sym_preproc_directive] = ACTIONS(2819), + [anon_sym_LPAREN2] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym_typedef] = ACTIONS(2819), + [anon_sym_extern] = ACTIONS(2819), + [anon_sym___attribute__] = ACTIONS(2819), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2821), + [anon_sym___declspec] = ACTIONS(2819), + [anon_sym___based] = ACTIONS(2819), + [anon_sym___cdecl] = ACTIONS(2819), + [anon_sym___clrcall] = ACTIONS(2819), + [anon_sym___stdcall] = ACTIONS(2819), + [anon_sym___fastcall] = ACTIONS(2819), + [anon_sym___thiscall] = ACTIONS(2819), + [anon_sym___vectorcall] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_static] = ACTIONS(2819), + [anon_sym_register] = ACTIONS(2819), + [anon_sym_inline] = ACTIONS(2819), + [anon_sym_thread_local] = ACTIONS(2819), + [anon_sym_input] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_volatile] = ACTIONS(2819), + [anon_sym_restrict] = ACTIONS(2819), + [anon_sym__Atomic] = ACTIONS(2819), + [anon_sym_mutable] = ACTIONS(2819), + [anon_sym_constexpr] = ACTIONS(2819), + [anon_sym_constinit] = ACTIONS(2819), + [anon_sym_consteval] = ACTIONS(2819), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [sym_primitive_type] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), + [anon_sym_class] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_union] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_switch] = ACTIONS(2819), + [anon_sym_case] = ACTIONS(2819), + [anon_sym_default] = ACTIONS(2819), + [anon_sym_while] = ACTIONS(2819), + [anon_sym_do] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_goto] = ACTIONS(2819), + [anon_sym_not] = ACTIONS(2819), + [anon_sym_compl] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_sizeof] = ACTIONS(2819), + [sym_number_literal] = ACTIONS(2821), + [anon_sym_L_SQUOTE] = ACTIONS(2821), + [anon_sym_u_SQUOTE] = ACTIONS(2821), + [anon_sym_U_SQUOTE] = ACTIONS(2821), + [anon_sym_u8_SQUOTE] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2821), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2819), + [sym_false] = ACTIONS(2819), + [sym_null] = ACTIONS(2819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2819), + [anon_sym_decltype] = ACTIONS(2819), + [anon_sym_virtual] = ACTIONS(2819), + [anon_sym_explicit] = ACTIONS(2819), + [anon_sym_typename] = ACTIONS(2819), + [anon_sym_template] = ACTIONS(2819), + [anon_sym_operator] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2819), + [anon_sym_delete] = ACTIONS(2819), + [anon_sym_throw] = ACTIONS(2819), + [anon_sym_namespace] = ACTIONS(2819), + [anon_sym_using] = ACTIONS(2819), + [anon_sym_static_assert] = ACTIONS(2819), + [anon_sym_concept] = ACTIONS(2819), + [anon_sym_co_return] = ACTIONS(2819), + [anon_sym_co_yield] = ACTIONS(2819), + [anon_sym_R_DQUOTE] = ACTIONS(2821), + [anon_sym_LR_DQUOTE] = ACTIONS(2821), + [anon_sym_uR_DQUOTE] = ACTIONS(2821), + [anon_sym_UR_DQUOTE] = ACTIONS(2821), + [anon_sym_u8R_DQUOTE] = ACTIONS(2821), + [anon_sym_co_await] = ACTIONS(2819), + [anon_sym_new] = ACTIONS(2819), + [anon_sym_requires] = ACTIONS(2819), + [sym_this] = ACTIONS(2819), + [sym_nullptr] = ACTIONS(2819), + }, + [526] = { + [sym_identifier] = ACTIONS(2001), + [aux_sym_preproc_include_token1] = ACTIONS(2001), + [aux_sym_preproc_def_token1] = ACTIONS(2001), + [aux_sym_preproc_if_token1] = ACTIONS(2001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2001), + [sym_preproc_directive] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1999), + [anon_sym_TILDE] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(1999), + [anon_sym_AMP_AMP] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_typedef] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym___attribute__] = ACTIONS(2001), + [anon_sym_COLON_COLON] = ACTIONS(1999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(2001), + [anon_sym___based] = ACTIONS(2001), + [anon_sym___cdecl] = ACTIONS(2001), + [anon_sym___clrcall] = ACTIONS(2001), + [anon_sym___stdcall] = ACTIONS(2001), + [anon_sym___fastcall] = ACTIONS(2001), + [anon_sym___thiscall] = ACTIONS(2001), + [anon_sym___vectorcall] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_inline] = ACTIONS(2001), + [anon_sym_thread_local] = ACTIONS(2001), + [anon_sym_input] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [anon_sym_volatile] = ACTIONS(2001), + [anon_sym_restrict] = ACTIONS(2001), + [anon_sym__Atomic] = ACTIONS(2001), + [anon_sym_mutable] = ACTIONS(2001), + [anon_sym_constexpr] = ACTIONS(2001), + [anon_sym_constinit] = ACTIONS(2001), + [anon_sym_consteval] = ACTIONS(2001), + [anon_sym_signed] = ACTIONS(2001), + [anon_sym_unsigned] = ACTIONS(2001), + [anon_sym_long] = ACTIONS(2001), + [anon_sym_short] = ACTIONS(2001), + [sym_primitive_type] = ACTIONS(2001), + [anon_sym_enum] = ACTIONS(2001), + [anon_sym_class] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_union] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_switch] = ACTIONS(2001), + [anon_sym_case] = ACTIONS(2001), + [anon_sym_default] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_goto] = ACTIONS(2001), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_compl] = ACTIONS(2001), + [anon_sym_DASH_DASH] = ACTIONS(1999), + [anon_sym_PLUS_PLUS] = ACTIONS(1999), + [anon_sym_sizeof] = ACTIONS(2001), + [sym_number_literal] = ACTIONS(1999), + [anon_sym_L_SQUOTE] = ACTIONS(1999), + [anon_sym_u_SQUOTE] = ACTIONS(1999), + [anon_sym_U_SQUOTE] = ACTIONS(1999), + [anon_sym_u8_SQUOTE] = ACTIONS(1999), + [anon_sym_SQUOTE] = ACTIONS(1999), + [anon_sym_L_DQUOTE] = ACTIONS(1999), + [anon_sym_u_DQUOTE] = ACTIONS(1999), + [anon_sym_U_DQUOTE] = ACTIONS(1999), + [anon_sym_u8_DQUOTE] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2001), + [anon_sym_decltype] = ACTIONS(2001), + [anon_sym_virtual] = ACTIONS(2001), + [anon_sym_explicit] = ACTIONS(2001), + [anon_sym_typename] = ACTIONS(2001), + [anon_sym_template] = ACTIONS(2001), + [anon_sym_operator] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_delete] = ACTIONS(2001), + [anon_sym_throw] = ACTIONS(2001), + [anon_sym_namespace] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(2001), + [anon_sym_static_assert] = ACTIONS(2001), + [anon_sym_concept] = ACTIONS(2001), + [anon_sym_co_return] = ACTIONS(2001), + [anon_sym_co_yield] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_R_DQUOTE] = ACTIONS(1999), + [anon_sym_LR_DQUOTE] = ACTIONS(1999), + [anon_sym_uR_DQUOTE] = ACTIONS(1999), + [anon_sym_UR_DQUOTE] = ACTIONS(1999), + [anon_sym_u8R_DQUOTE] = ACTIONS(1999), + [anon_sym_co_await] = ACTIONS(2001), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_requires] = ACTIONS(2001), + [sym_this] = ACTIONS(2001), + [sym_nullptr] = ACTIONS(2001), + }, + [527] = { + [sym_identifier] = ACTIONS(2823), + [aux_sym_preproc_include_token1] = ACTIONS(2823), + [aux_sym_preproc_def_token1] = ACTIONS(2823), + [aux_sym_preproc_if_token1] = ACTIONS(2823), + [aux_sym_preproc_if_token2] = ACTIONS(2823), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2823), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2823), + [aux_sym_preproc_else_token1] = ACTIONS(2823), + [aux_sym_preproc_elif_token1] = ACTIONS(2823), + [sym_preproc_directive] = ACTIONS(2823), + [anon_sym_LPAREN2] = ACTIONS(2825), + [anon_sym_BANG] = ACTIONS(2825), + [anon_sym_TILDE] = ACTIONS(2825), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(2823), + [anon_sym_STAR] = ACTIONS(2825), + [anon_sym_AMP_AMP] = ACTIONS(2825), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_SEMI] = ACTIONS(2825), + [anon_sym_typedef] = ACTIONS(2823), + [anon_sym_extern] = ACTIONS(2823), + [anon_sym___attribute__] = ACTIONS(2823), + [anon_sym_COLON_COLON] = ACTIONS(2825), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2825), + [anon_sym___declspec] = ACTIONS(2823), + [anon_sym___based] = ACTIONS(2823), + [anon_sym___cdecl] = ACTIONS(2823), + [anon_sym___clrcall] = ACTIONS(2823), + [anon_sym___stdcall] = ACTIONS(2823), + [anon_sym___fastcall] = ACTIONS(2823), + [anon_sym___thiscall] = ACTIONS(2823), + [anon_sym___vectorcall] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2823), + [anon_sym_static] = ACTIONS(2823), + [anon_sym_register] = ACTIONS(2823), + [anon_sym_inline] = ACTIONS(2823), + [anon_sym_thread_local] = ACTIONS(2823), + [anon_sym_input] = ACTIONS(2823), + [anon_sym_const] = ACTIONS(2823), + [anon_sym_volatile] = ACTIONS(2823), + [anon_sym_restrict] = ACTIONS(2823), + [anon_sym__Atomic] = ACTIONS(2823), + [anon_sym_mutable] = ACTIONS(2823), + [anon_sym_constexpr] = ACTIONS(2823), + [anon_sym_constinit] = ACTIONS(2823), + [anon_sym_consteval] = ACTIONS(2823), + [anon_sym_signed] = ACTIONS(2823), + [anon_sym_unsigned] = ACTIONS(2823), + [anon_sym_long] = ACTIONS(2823), + [anon_sym_short] = ACTIONS(2823), + [sym_primitive_type] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2823), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_union] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_switch] = ACTIONS(2823), + [anon_sym_case] = ACTIONS(2823), + [anon_sym_default] = ACTIONS(2823), + [anon_sym_while] = ACTIONS(2823), + [anon_sym_do] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_goto] = ACTIONS(2823), + [anon_sym_not] = ACTIONS(2823), + [anon_sym_compl] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2825), + [anon_sym_PLUS_PLUS] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2823), + [sym_number_literal] = ACTIONS(2825), + [anon_sym_L_SQUOTE] = ACTIONS(2825), + [anon_sym_u_SQUOTE] = ACTIONS(2825), + [anon_sym_U_SQUOTE] = ACTIONS(2825), + [anon_sym_u8_SQUOTE] = ACTIONS(2825), + [anon_sym_SQUOTE] = ACTIONS(2825), + [anon_sym_L_DQUOTE] = ACTIONS(2825), + [anon_sym_u_DQUOTE] = ACTIONS(2825), + [anon_sym_U_DQUOTE] = ACTIONS(2825), + [anon_sym_u8_DQUOTE] = ACTIONS(2825), + [anon_sym_DQUOTE] = ACTIONS(2825), + [sym_true] = ACTIONS(2823), + [sym_false] = ACTIONS(2823), + [sym_null] = ACTIONS(2823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2823), + [anon_sym_decltype] = ACTIONS(2823), + [anon_sym_virtual] = ACTIONS(2823), + [anon_sym_explicit] = ACTIONS(2823), + [anon_sym_typename] = ACTIONS(2823), + [anon_sym_template] = ACTIONS(2823), + [anon_sym_operator] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2823), + [anon_sym_delete] = ACTIONS(2823), + [anon_sym_throw] = ACTIONS(2823), + [anon_sym_namespace] = ACTIONS(2823), + [anon_sym_using] = ACTIONS(2823), + [anon_sym_static_assert] = ACTIONS(2823), + [anon_sym_concept] = ACTIONS(2823), + [anon_sym_co_return] = ACTIONS(2823), + [anon_sym_co_yield] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2823), + [anon_sym_new] = ACTIONS(2823), + [anon_sym_requires] = ACTIONS(2823), + [sym_this] = ACTIONS(2823), + [sym_nullptr] = ACTIONS(2823), + }, + [528] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3596), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5695), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(5908), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2827), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [529] = { + [sym_identifier] = ACTIONS(2017), + [aux_sym_preproc_include_token1] = ACTIONS(2017), + [aux_sym_preproc_def_token1] = ACTIONS(2017), + [aux_sym_preproc_if_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [sym_preproc_directive] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_typedef] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2015), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym_input] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym_mutable] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_constinit] = ACTIONS(2017), + [anon_sym_consteval] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2017), + [anon_sym_unsigned] = ACTIONS(2017), + [anon_sym_long] = ACTIONS(2017), + [anon_sym_short] = ACTIONS(2017), + [sym_primitive_type] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_class] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_else] = ACTIONS(2017), + [anon_sym_switch] = ACTIONS(2017), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_goto] = ACTIONS(2017), + [anon_sym_not] = ACTIONS(2017), + [anon_sym_compl] = ACTIONS(2017), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_sizeof] = ACTIONS(2017), + [sym_number_literal] = ACTIONS(2015), + [anon_sym_L_SQUOTE] = ACTIONS(2015), + [anon_sym_u_SQUOTE] = ACTIONS(2015), + [anon_sym_U_SQUOTE] = ACTIONS(2015), + [anon_sym_u8_SQUOTE] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(2015), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [sym_null] = ACTIONS(2017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2017), + [anon_sym_decltype] = ACTIONS(2017), + [anon_sym_virtual] = ACTIONS(2017), + [anon_sym_explicit] = ACTIONS(2017), + [anon_sym_typename] = ACTIONS(2017), + [anon_sym_template] = ACTIONS(2017), + [anon_sym_operator] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_delete] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(2017), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_using] = ACTIONS(2017), + [anon_sym_static_assert] = ACTIONS(2017), + [anon_sym_concept] = ACTIONS(2017), + [anon_sym_co_return] = ACTIONS(2017), + [anon_sym_co_yield] = ACTIONS(2017), + [anon_sym_catch] = ACTIONS(2017), + [anon_sym_R_DQUOTE] = ACTIONS(2015), + [anon_sym_LR_DQUOTE] = ACTIONS(2015), + [anon_sym_uR_DQUOTE] = ACTIONS(2015), + [anon_sym_UR_DQUOTE] = ACTIONS(2015), + [anon_sym_u8R_DQUOTE] = ACTIONS(2015), + [anon_sym_co_await] = ACTIONS(2017), + [anon_sym_new] = ACTIONS(2017), + [anon_sym_requires] = ACTIONS(2017), + [sym_this] = ACTIONS(2017), + [sym_nullptr] = ACTIONS(2017), + }, + [530] = { + [sym_identifier] = ACTIONS(2379), + [aux_sym_preproc_include_token1] = ACTIONS(2379), + [aux_sym_preproc_def_token1] = ACTIONS(2379), + [aux_sym_preproc_if_token1] = ACTIONS(2379), + [aux_sym_preproc_if_token2] = ACTIONS(2379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2379), + [sym_preproc_directive] = ACTIONS(2379), + [anon_sym_LPAREN2] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2381), + [anon_sym_TILDE] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(2381), + [anon_sym_AMP_AMP] = ACTIONS(2381), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_typedef] = ACTIONS(2379), + [anon_sym_extern] = ACTIONS(2379), + [anon_sym___attribute__] = ACTIONS(2379), + [anon_sym_COLON_COLON] = ACTIONS(2381), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2381), + [anon_sym___declspec] = ACTIONS(2379), + [anon_sym___based] = ACTIONS(2379), + [anon_sym___cdecl] = ACTIONS(2379), + [anon_sym___clrcall] = ACTIONS(2379), + [anon_sym___stdcall] = ACTIONS(2379), + [anon_sym___fastcall] = ACTIONS(2379), + [anon_sym___thiscall] = ACTIONS(2379), + [anon_sym___vectorcall] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2379), + [anon_sym_register] = ACTIONS(2379), + [anon_sym_inline] = ACTIONS(2379), + [anon_sym_thread_local] = ACTIONS(2379), + [anon_sym_input] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_volatile] = ACTIONS(2379), + [anon_sym_restrict] = ACTIONS(2379), + [anon_sym__Atomic] = ACTIONS(2379), + [anon_sym_mutable] = ACTIONS(2379), + [anon_sym_constexpr] = ACTIONS(2379), + [anon_sym_constinit] = ACTIONS(2379), + [anon_sym_consteval] = ACTIONS(2379), + [anon_sym_signed] = ACTIONS(2379), + [anon_sym_unsigned] = ACTIONS(2379), + [anon_sym_long] = ACTIONS(2379), + [anon_sym_short] = ACTIONS(2379), + [sym_primitive_type] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_class] = ACTIONS(2379), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_else] = ACTIONS(2379), + [anon_sym_switch] = ACTIONS(2379), + [anon_sym_case] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_do] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_goto] = ACTIONS(2379), + [anon_sym_not] = ACTIONS(2379), + [anon_sym_compl] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2381), + [anon_sym_PLUS_PLUS] = ACTIONS(2381), + [anon_sym_sizeof] = ACTIONS(2379), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_L_SQUOTE] = ACTIONS(2381), + [anon_sym_u_SQUOTE] = ACTIONS(2381), + [anon_sym_U_SQUOTE] = ACTIONS(2381), + [anon_sym_u8_SQUOTE] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2381), + [anon_sym_L_DQUOTE] = ACTIONS(2381), + [anon_sym_u_DQUOTE] = ACTIONS(2381), + [anon_sym_U_DQUOTE] = ACTIONS(2381), + [anon_sym_u8_DQUOTE] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2381), + [sym_true] = ACTIONS(2379), + [sym_false] = ACTIONS(2379), + [sym_null] = ACTIONS(2379), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2379), + [anon_sym_decltype] = ACTIONS(2379), + [anon_sym_virtual] = ACTIONS(2379), + [anon_sym_explicit] = ACTIONS(2379), + [anon_sym_typename] = ACTIONS(2379), + [anon_sym_template] = ACTIONS(2379), + [anon_sym_operator] = ACTIONS(2379), + [anon_sym_try] = ACTIONS(2379), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_throw] = ACTIONS(2379), + [anon_sym_namespace] = ACTIONS(2379), + [anon_sym_using] = ACTIONS(2379), + [anon_sym_static_assert] = ACTIONS(2379), + [anon_sym_concept] = ACTIONS(2379), + [anon_sym_co_return] = ACTIONS(2379), + [anon_sym_co_yield] = ACTIONS(2379), + [anon_sym_catch] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2379), + [anon_sym_new] = ACTIONS(2379), + [anon_sym_requires] = ACTIONS(2379), + [sym_this] = ACTIONS(2379), + [sym_nullptr] = ACTIONS(2379), + }, + [531] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3594), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5659), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(5936), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2829), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [532] = { + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2379), + [aux_sym_preproc_include_token1] = ACTIONS(2379), + [aux_sym_preproc_def_token1] = ACTIONS(2379), + [aux_sym_preproc_if_token1] = ACTIONS(2379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2379), + [sym_preproc_directive] = ACTIONS(2379), + [anon_sym_LPAREN2] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2381), + [anon_sym_TILDE] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(2381), + [anon_sym_AMP_AMP] = ACTIONS(2381), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_typedef] = ACTIONS(2379), + [anon_sym_extern] = ACTIONS(2379), + [anon_sym___attribute__] = ACTIONS(2379), + [anon_sym_COLON_COLON] = ACTIONS(2381), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2381), + [anon_sym___declspec] = ACTIONS(2379), + [anon_sym___based] = ACTIONS(2379), + [anon_sym___cdecl] = ACTIONS(2379), + [anon_sym___clrcall] = ACTIONS(2379), + [anon_sym___stdcall] = ACTIONS(2379), + [anon_sym___fastcall] = ACTIONS(2379), + [anon_sym___thiscall] = ACTIONS(2379), + [anon_sym___vectorcall] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2379), + [anon_sym_register] = ACTIONS(2379), + [anon_sym_inline] = ACTIONS(2379), + [anon_sym_thread_local] = ACTIONS(2379), + [anon_sym_input] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_volatile] = ACTIONS(2379), + [anon_sym_restrict] = ACTIONS(2379), + [anon_sym__Atomic] = ACTIONS(2379), + [anon_sym_mutable] = ACTIONS(2379), + [anon_sym_constexpr] = ACTIONS(2379), + [anon_sym_constinit] = ACTIONS(2379), + [anon_sym_consteval] = ACTIONS(2379), + [anon_sym_signed] = ACTIONS(2379), + [anon_sym_unsigned] = ACTIONS(2379), + [anon_sym_long] = ACTIONS(2379), + [anon_sym_short] = ACTIONS(2379), + [sym_primitive_type] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_class] = ACTIONS(2379), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_else] = ACTIONS(2379), + [anon_sym_switch] = ACTIONS(2379), + [anon_sym_case] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_do] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_goto] = ACTIONS(2379), + [anon_sym_not] = ACTIONS(2379), + [anon_sym_compl] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2381), + [anon_sym_PLUS_PLUS] = ACTIONS(2381), + [anon_sym_sizeof] = ACTIONS(2379), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_L_SQUOTE] = ACTIONS(2381), + [anon_sym_u_SQUOTE] = ACTIONS(2381), + [anon_sym_U_SQUOTE] = ACTIONS(2381), + [anon_sym_u8_SQUOTE] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2381), + [anon_sym_L_DQUOTE] = ACTIONS(2381), + [anon_sym_u_DQUOTE] = ACTIONS(2381), + [anon_sym_U_DQUOTE] = ACTIONS(2381), + [anon_sym_u8_DQUOTE] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2381), + [sym_true] = ACTIONS(2379), + [sym_false] = ACTIONS(2379), + [sym_null] = ACTIONS(2379), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2379), + [anon_sym_decltype] = ACTIONS(2379), + [anon_sym_virtual] = ACTIONS(2379), + [anon_sym_explicit] = ACTIONS(2379), + [anon_sym_typename] = ACTIONS(2379), + [anon_sym_template] = ACTIONS(2379), + [anon_sym_operator] = ACTIONS(2379), + [anon_sym_try] = ACTIONS(2379), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_throw] = ACTIONS(2379), + [anon_sym_namespace] = ACTIONS(2379), + [anon_sym_using] = ACTIONS(2379), + [anon_sym_static_assert] = ACTIONS(2379), + [anon_sym_concept] = ACTIONS(2379), + [anon_sym_co_return] = ACTIONS(2379), + [anon_sym_co_yield] = ACTIONS(2379), + [anon_sym_catch] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2379), + [anon_sym_new] = ACTIONS(2379), + [anon_sym_requires] = ACTIONS(2379), + [sym_this] = ACTIONS(2379), + [sym_nullptr] = ACTIONS(2379), + }, + [533] = { + [sym_identifier] = ACTIONS(2017), + [aux_sym_preproc_include_token1] = ACTIONS(2017), + [aux_sym_preproc_def_token1] = ACTIONS(2017), + [aux_sym_preproc_if_token1] = ACTIONS(2017), + [aux_sym_preproc_if_token2] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [sym_preproc_directive] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_typedef] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2015), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym_input] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym_mutable] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_constinit] = ACTIONS(2017), + [anon_sym_consteval] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2017), + [anon_sym_unsigned] = ACTIONS(2017), + [anon_sym_long] = ACTIONS(2017), + [anon_sym_short] = ACTIONS(2017), + [sym_primitive_type] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_class] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_else] = ACTIONS(2017), + [anon_sym_switch] = ACTIONS(2017), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_goto] = ACTIONS(2017), + [anon_sym_not] = ACTIONS(2017), + [anon_sym_compl] = ACTIONS(2017), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_sizeof] = ACTIONS(2017), + [sym_number_literal] = ACTIONS(2015), + [anon_sym_L_SQUOTE] = ACTIONS(2015), + [anon_sym_u_SQUOTE] = ACTIONS(2015), + [anon_sym_U_SQUOTE] = ACTIONS(2015), + [anon_sym_u8_SQUOTE] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(2015), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [sym_null] = ACTIONS(2017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2017), + [anon_sym_decltype] = ACTIONS(2017), + [anon_sym_virtual] = ACTIONS(2017), + [anon_sym_explicit] = ACTIONS(2017), + [anon_sym_typename] = ACTIONS(2017), + [anon_sym_template] = ACTIONS(2017), + [anon_sym_operator] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_delete] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(2017), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_using] = ACTIONS(2017), + [anon_sym_static_assert] = ACTIONS(2017), + [anon_sym_concept] = ACTIONS(2017), + [anon_sym_co_return] = ACTIONS(2017), + [anon_sym_co_yield] = ACTIONS(2017), + [anon_sym_catch] = ACTIONS(2017), + [anon_sym_R_DQUOTE] = ACTIONS(2015), + [anon_sym_LR_DQUOTE] = ACTIONS(2015), + [anon_sym_uR_DQUOTE] = ACTIONS(2015), + [anon_sym_UR_DQUOTE] = ACTIONS(2015), + [anon_sym_u8R_DQUOTE] = ACTIONS(2015), + [anon_sym_co_await] = ACTIONS(2017), + [anon_sym_new] = ACTIONS(2017), + [anon_sym_requires] = ACTIONS(2017), + [sym_this] = ACTIONS(2017), + [sym_nullptr] = ACTIONS(2017), + }, + [534] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3590), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5635), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(5970), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2831), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [535] = { + [sym_identifier] = ACTIONS(2001), + [aux_sym_preproc_include_token1] = ACTIONS(2001), + [aux_sym_preproc_def_token1] = ACTIONS(2001), + [aux_sym_preproc_if_token1] = ACTIONS(2001), + [aux_sym_preproc_if_token2] = ACTIONS(2001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2001), + [sym_preproc_directive] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1999), + [anon_sym_TILDE] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(1999), + [anon_sym_AMP_AMP] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_typedef] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym___attribute__] = ACTIONS(2001), + [anon_sym_COLON_COLON] = ACTIONS(1999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(2001), + [anon_sym___based] = ACTIONS(2001), + [anon_sym___cdecl] = ACTIONS(2001), + [anon_sym___clrcall] = ACTIONS(2001), + [anon_sym___stdcall] = ACTIONS(2001), + [anon_sym___fastcall] = ACTIONS(2001), + [anon_sym___thiscall] = ACTIONS(2001), + [anon_sym___vectorcall] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_inline] = ACTIONS(2001), + [anon_sym_thread_local] = ACTIONS(2001), + [anon_sym_input] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [anon_sym_volatile] = ACTIONS(2001), + [anon_sym_restrict] = ACTIONS(2001), + [anon_sym__Atomic] = ACTIONS(2001), + [anon_sym_mutable] = ACTIONS(2001), + [anon_sym_constexpr] = ACTIONS(2001), + [anon_sym_constinit] = ACTIONS(2001), + [anon_sym_consteval] = ACTIONS(2001), + [anon_sym_signed] = ACTIONS(2001), + [anon_sym_unsigned] = ACTIONS(2001), + [anon_sym_long] = ACTIONS(2001), + [anon_sym_short] = ACTIONS(2001), + [sym_primitive_type] = ACTIONS(2001), + [anon_sym_enum] = ACTIONS(2001), + [anon_sym_class] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_union] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_switch] = ACTIONS(2001), + [anon_sym_case] = ACTIONS(2001), + [anon_sym_default] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_goto] = ACTIONS(2001), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_compl] = ACTIONS(2001), + [anon_sym_DASH_DASH] = ACTIONS(1999), + [anon_sym_PLUS_PLUS] = ACTIONS(1999), + [anon_sym_sizeof] = ACTIONS(2001), + [sym_number_literal] = ACTIONS(1999), + [anon_sym_L_SQUOTE] = ACTIONS(1999), + [anon_sym_u_SQUOTE] = ACTIONS(1999), + [anon_sym_U_SQUOTE] = ACTIONS(1999), + [anon_sym_u8_SQUOTE] = ACTIONS(1999), + [anon_sym_SQUOTE] = ACTIONS(1999), + [anon_sym_L_DQUOTE] = ACTIONS(1999), + [anon_sym_u_DQUOTE] = ACTIONS(1999), + [anon_sym_U_DQUOTE] = ACTIONS(1999), + [anon_sym_u8_DQUOTE] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2001), + [anon_sym_decltype] = ACTIONS(2001), + [anon_sym_virtual] = ACTIONS(2001), + [anon_sym_explicit] = ACTIONS(2001), + [anon_sym_typename] = ACTIONS(2001), + [anon_sym_template] = ACTIONS(2001), + [anon_sym_operator] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_delete] = ACTIONS(2001), + [anon_sym_throw] = ACTIONS(2001), + [anon_sym_namespace] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(2001), + [anon_sym_static_assert] = ACTIONS(2001), + [anon_sym_concept] = ACTIONS(2001), + [anon_sym_co_return] = ACTIONS(2001), + [anon_sym_co_yield] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_R_DQUOTE] = ACTIONS(1999), + [anon_sym_LR_DQUOTE] = ACTIONS(1999), + [anon_sym_uR_DQUOTE] = ACTIONS(1999), + [anon_sym_UR_DQUOTE] = ACTIONS(1999), + [anon_sym_u8R_DQUOTE] = ACTIONS(1999), + [anon_sym_co_await] = ACTIONS(2001), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_requires] = ACTIONS(2001), + [sym_this] = ACTIONS(2001), + [sym_nullptr] = ACTIONS(2001), + }, + [536] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3600), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5614), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(5992), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2833), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [537] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3604), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5566), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(6023), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [538] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3588), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5525), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(6057), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2837), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [539] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3605), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5767), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(6104), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2839), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [540] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3610), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5645), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(6064), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2841), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [541] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3615), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5643), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(5953), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2843), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [542] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3627), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5804), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(5826), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2845), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [543] = { + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3601), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5637), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(5963), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2847), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [544] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [545] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [546] = { + [sym_identifier] = ACTIONS(2441), + [aux_sym_preproc_include_token1] = ACTIONS(2441), + [aux_sym_preproc_def_token1] = ACTIONS(2441), + [aux_sym_preproc_if_token1] = ACTIONS(2441), + [aux_sym_preproc_if_token2] = ACTIONS(2441), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2441), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2441), + [sym_preproc_directive] = ACTIONS(2441), + [anon_sym_LPAREN2] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2441), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_typedef] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym___attribute__] = ACTIONS(2441), + [anon_sym_COLON_COLON] = ACTIONS(2443), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2443), + [anon_sym___declspec] = ACTIONS(2441), + [anon_sym___based] = ACTIONS(2441), + [anon_sym___cdecl] = ACTIONS(2441), + [anon_sym___clrcall] = ACTIONS(2441), + [anon_sym___stdcall] = ACTIONS(2441), + [anon_sym___fastcall] = ACTIONS(2441), + [anon_sym___thiscall] = ACTIONS(2441), + [anon_sym___vectorcall] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_register] = ACTIONS(2441), + [anon_sym_inline] = ACTIONS(2441), + [anon_sym_thread_local] = ACTIONS(2441), + [anon_sym_input] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_volatile] = ACTIONS(2441), + [anon_sym_restrict] = ACTIONS(2441), + [anon_sym__Atomic] = ACTIONS(2441), + [anon_sym_mutable] = ACTIONS(2441), + [anon_sym_constexpr] = ACTIONS(2441), + [anon_sym_constinit] = ACTIONS(2441), + [anon_sym_consteval] = ACTIONS(2441), + [anon_sym_signed] = ACTIONS(2441), + [anon_sym_unsigned] = ACTIONS(2441), + [anon_sym_long] = ACTIONS(2441), + [anon_sym_short] = ACTIONS(2441), + [sym_primitive_type] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_class] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2441), + [anon_sym_union] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_switch] = ACTIONS(2441), + [anon_sym_case] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_goto] = ACTIONS(2441), + [anon_sym_not] = ACTIONS(2441), + [anon_sym_compl] = ACTIONS(2441), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(2441), + [sym_number_literal] = ACTIONS(2443), + [anon_sym_L_SQUOTE] = ACTIONS(2443), + [anon_sym_u_SQUOTE] = ACTIONS(2443), + [anon_sym_U_SQUOTE] = ACTIONS(2443), + [anon_sym_u8_SQUOTE] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_L_DQUOTE] = ACTIONS(2443), + [anon_sym_u_DQUOTE] = ACTIONS(2443), + [anon_sym_U_DQUOTE] = ACTIONS(2443), + [anon_sym_u8_DQUOTE] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [sym_true] = ACTIONS(2441), + [sym_false] = ACTIONS(2441), + [sym_null] = ACTIONS(2441), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2441), + [anon_sym_decltype] = ACTIONS(2441), + [anon_sym_virtual] = ACTIONS(2441), + [anon_sym_explicit] = ACTIONS(2441), + [anon_sym_typename] = ACTIONS(2441), + [anon_sym_template] = ACTIONS(2441), + [anon_sym_operator] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_delete] = ACTIONS(2441), + [anon_sym_throw] = ACTIONS(2441), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_using] = ACTIONS(2441), + [anon_sym_static_assert] = ACTIONS(2441), + [anon_sym_concept] = ACTIONS(2441), + [anon_sym_co_return] = ACTIONS(2441), + [anon_sym_co_yield] = ACTIONS(2441), + [anon_sym_R_DQUOTE] = ACTIONS(2443), + [anon_sym_LR_DQUOTE] = ACTIONS(2443), + [anon_sym_uR_DQUOTE] = ACTIONS(2443), + [anon_sym_UR_DQUOTE] = ACTIONS(2443), + [anon_sym_u8R_DQUOTE] = ACTIONS(2443), + [anon_sym_co_await] = ACTIONS(2441), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_requires] = ACTIONS(2441), + [sym_this] = ACTIONS(2441), + [sym_nullptr] = ACTIONS(2441), + }, + [547] = { + [sym_identifier] = ACTIONS(2553), + [aux_sym_preproc_include_token1] = ACTIONS(2553), + [aux_sym_preproc_def_token1] = ACTIONS(2553), + [aux_sym_preproc_if_token1] = ACTIONS(2553), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2553), + [sym_preproc_directive] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_AMP_AMP] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_typedef] = ACTIONS(2553), + [anon_sym_extern] = ACTIONS(2553), + [anon_sym___attribute__] = ACTIONS(2553), + [anon_sym_COLON_COLON] = ACTIONS(2555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2555), + [anon_sym___declspec] = ACTIONS(2553), + [anon_sym___based] = ACTIONS(2553), + [anon_sym___cdecl] = ACTIONS(2553), + [anon_sym___clrcall] = ACTIONS(2553), + [anon_sym___stdcall] = ACTIONS(2553), + [anon_sym___fastcall] = ACTIONS(2553), + [anon_sym___thiscall] = ACTIONS(2553), + [anon_sym___vectorcall] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2553), + [anon_sym_static] = ACTIONS(2553), + [anon_sym_register] = ACTIONS(2553), + [anon_sym_inline] = ACTIONS(2553), + [anon_sym_thread_local] = ACTIONS(2553), + [anon_sym_input] = ACTIONS(2553), + [anon_sym_const] = ACTIONS(2553), + [anon_sym_volatile] = ACTIONS(2553), + [anon_sym_restrict] = ACTIONS(2553), + [anon_sym__Atomic] = ACTIONS(2553), + [anon_sym_mutable] = ACTIONS(2553), + [anon_sym_constexpr] = ACTIONS(2553), + [anon_sym_constinit] = ACTIONS(2553), + [anon_sym_consteval] = ACTIONS(2553), + [anon_sym_signed] = ACTIONS(2553), + [anon_sym_unsigned] = ACTIONS(2553), + [anon_sym_long] = ACTIONS(2553), + [anon_sym_short] = ACTIONS(2553), + [sym_primitive_type] = ACTIONS(2553), + [anon_sym_enum] = ACTIONS(2553), + [anon_sym_class] = ACTIONS(2553), + [anon_sym_struct] = ACTIONS(2553), + [anon_sym_union] = ACTIONS(2553), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_else] = ACTIONS(2553), + [anon_sym_switch] = ACTIONS(2553), + [anon_sym_case] = ACTIONS(2553), + [anon_sym_default] = ACTIONS(2553), + [anon_sym_while] = ACTIONS(2553), + [anon_sym_do] = ACTIONS(2553), + [anon_sym_for] = ACTIONS(2553), + [anon_sym_return] = ACTIONS(2553), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_goto] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2553), + [anon_sym_compl] = ACTIONS(2553), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_sizeof] = ACTIONS(2553), + [sym_number_literal] = ACTIONS(2555), + [anon_sym_L_SQUOTE] = ACTIONS(2555), + [anon_sym_u_SQUOTE] = ACTIONS(2555), + [anon_sym_U_SQUOTE] = ACTIONS(2555), + [anon_sym_u8_SQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE] = ACTIONS(2555), + [anon_sym_L_DQUOTE] = ACTIONS(2555), + [anon_sym_u_DQUOTE] = ACTIONS(2555), + [anon_sym_U_DQUOTE] = ACTIONS(2555), + [anon_sym_u8_DQUOTE] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(2555), + [sym_true] = ACTIONS(2553), + [sym_false] = ACTIONS(2553), + [sym_null] = ACTIONS(2553), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2553), + [anon_sym_decltype] = ACTIONS(2553), + [anon_sym_virtual] = ACTIONS(2553), + [anon_sym_explicit] = ACTIONS(2553), + [anon_sym_typename] = ACTIONS(2553), + [anon_sym_template] = ACTIONS(2553), + [anon_sym_operator] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2553), + [anon_sym_delete] = ACTIONS(2553), + [anon_sym_throw] = ACTIONS(2553), + [anon_sym_namespace] = ACTIONS(2553), + [anon_sym_using] = ACTIONS(2553), + [anon_sym_static_assert] = ACTIONS(2553), + [anon_sym_concept] = ACTIONS(2553), + [anon_sym_co_return] = ACTIONS(2553), + [anon_sym_co_yield] = ACTIONS(2553), + [anon_sym_R_DQUOTE] = ACTIONS(2555), + [anon_sym_LR_DQUOTE] = ACTIONS(2555), + [anon_sym_uR_DQUOTE] = ACTIONS(2555), + [anon_sym_UR_DQUOTE] = ACTIONS(2555), + [anon_sym_u8R_DQUOTE] = ACTIONS(2555), + [anon_sym_co_await] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(2553), + [anon_sym_requires] = ACTIONS(2553), + [sym_this] = ACTIONS(2553), + [sym_nullptr] = ACTIONS(2553), + }, + [548] = { + [sym_identifier] = ACTIONS(2561), + [aux_sym_preproc_include_token1] = ACTIONS(2561), + [aux_sym_preproc_def_token1] = ACTIONS(2561), + [aux_sym_preproc_if_token1] = ACTIONS(2561), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2561), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2561), + [sym_preproc_directive] = ACTIONS(2561), + [anon_sym_LPAREN2] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_PLUS] = ACTIONS(2561), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_typedef] = ACTIONS(2561), + [anon_sym_extern] = ACTIONS(2561), + [anon_sym___attribute__] = ACTIONS(2561), + [anon_sym_COLON_COLON] = ACTIONS(2563), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), + [anon_sym___declspec] = ACTIONS(2561), + [anon_sym___based] = ACTIONS(2561), + [anon_sym___cdecl] = ACTIONS(2561), + [anon_sym___clrcall] = ACTIONS(2561), + [anon_sym___stdcall] = ACTIONS(2561), + [anon_sym___fastcall] = ACTIONS(2561), + [anon_sym___thiscall] = ACTIONS(2561), + [anon_sym___vectorcall] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_RBRACE] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2561), + [anon_sym_register] = ACTIONS(2561), + [anon_sym_inline] = ACTIONS(2561), + [anon_sym_thread_local] = ACTIONS(2561), + [anon_sym_input] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [anon_sym_volatile] = ACTIONS(2561), + [anon_sym_restrict] = ACTIONS(2561), + [anon_sym__Atomic] = ACTIONS(2561), + [anon_sym_mutable] = ACTIONS(2561), + [anon_sym_constexpr] = ACTIONS(2561), + [anon_sym_constinit] = ACTIONS(2561), + [anon_sym_consteval] = ACTIONS(2561), + [anon_sym_signed] = ACTIONS(2561), + [anon_sym_unsigned] = ACTIONS(2561), + [anon_sym_long] = ACTIONS(2561), + [anon_sym_short] = ACTIONS(2561), + [sym_primitive_type] = ACTIONS(2561), + [anon_sym_enum] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2561), + [anon_sym_struct] = ACTIONS(2561), + [anon_sym_union] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2561), + [anon_sym_switch] = ACTIONS(2561), + [anon_sym_case] = ACTIONS(2561), + [anon_sym_default] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [anon_sym_do] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), + [anon_sym_goto] = ACTIONS(2561), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_compl] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_sizeof] = ACTIONS(2561), + [sym_number_literal] = ACTIONS(2563), + [anon_sym_L_SQUOTE] = ACTIONS(2563), + [anon_sym_u_SQUOTE] = ACTIONS(2563), + [anon_sym_U_SQUOTE] = ACTIONS(2563), + [anon_sym_u8_SQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE] = ACTIONS(2563), + [anon_sym_L_DQUOTE] = ACTIONS(2563), + [anon_sym_u_DQUOTE] = ACTIONS(2563), + [anon_sym_U_DQUOTE] = ACTIONS(2563), + [anon_sym_u8_DQUOTE] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2563), + [sym_true] = ACTIONS(2561), + [sym_false] = ACTIONS(2561), + [sym_null] = ACTIONS(2561), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2561), + [anon_sym_decltype] = ACTIONS(2561), + [anon_sym_virtual] = ACTIONS(2561), + [anon_sym_explicit] = ACTIONS(2561), + [anon_sym_typename] = ACTIONS(2561), + [anon_sym_template] = ACTIONS(2561), + [anon_sym_operator] = ACTIONS(2561), + [anon_sym_try] = ACTIONS(2561), + [anon_sym_delete] = ACTIONS(2561), + [anon_sym_throw] = ACTIONS(2561), + [anon_sym_namespace] = ACTIONS(2561), + [anon_sym_using] = ACTIONS(2561), + [anon_sym_static_assert] = ACTIONS(2561), + [anon_sym_concept] = ACTIONS(2561), + [anon_sym_co_return] = ACTIONS(2561), + [anon_sym_co_yield] = ACTIONS(2561), + [anon_sym_R_DQUOTE] = ACTIONS(2563), + [anon_sym_LR_DQUOTE] = ACTIONS(2563), + [anon_sym_uR_DQUOTE] = ACTIONS(2563), + [anon_sym_UR_DQUOTE] = ACTIONS(2563), + [anon_sym_u8R_DQUOTE] = ACTIONS(2563), + [anon_sym_co_await] = ACTIONS(2561), + [anon_sym_new] = ACTIONS(2561), + [anon_sym_requires] = ACTIONS(2561), + [sym_this] = ACTIONS(2561), + [sym_nullptr] = ACTIONS(2561), + }, + [549] = { + [sym_identifier] = ACTIONS(2495), + [aux_sym_preproc_include_token1] = ACTIONS(2495), + [aux_sym_preproc_def_token1] = ACTIONS(2495), + [aux_sym_preproc_if_token1] = ACTIONS(2495), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2495), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2495), + [sym_preproc_directive] = ACTIONS(2495), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_PLUS] = ACTIONS(2495), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_AMP_AMP] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_typedef] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym___attribute__] = ACTIONS(2495), + [anon_sym_COLON_COLON] = ACTIONS(2497), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), + [anon_sym___declspec] = ACTIONS(2495), + [anon_sym___based] = ACTIONS(2495), + [anon_sym___cdecl] = ACTIONS(2495), + [anon_sym___clrcall] = ACTIONS(2495), + [anon_sym___stdcall] = ACTIONS(2495), + [anon_sym___fastcall] = ACTIONS(2495), + [anon_sym___thiscall] = ACTIONS(2495), + [anon_sym___vectorcall] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_register] = ACTIONS(2495), + [anon_sym_inline] = ACTIONS(2495), + [anon_sym_thread_local] = ACTIONS(2495), + [anon_sym_input] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_volatile] = ACTIONS(2495), + [anon_sym_restrict] = ACTIONS(2495), + [anon_sym__Atomic] = ACTIONS(2495), + [anon_sym_mutable] = ACTIONS(2495), + [anon_sym_constexpr] = ACTIONS(2495), + [anon_sym_constinit] = ACTIONS(2495), + [anon_sym_consteval] = ACTIONS(2495), + [anon_sym_signed] = ACTIONS(2495), + [anon_sym_unsigned] = ACTIONS(2495), + [anon_sym_long] = ACTIONS(2495), + [anon_sym_short] = ACTIONS(2495), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_class] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_else] = ACTIONS(2495), + [anon_sym_switch] = ACTIONS(2495), + [anon_sym_case] = ACTIONS(2495), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_do] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_goto] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2495), + [anon_sym_compl] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_sizeof] = ACTIONS(2495), + [sym_number_literal] = ACTIONS(2497), + [anon_sym_L_SQUOTE] = ACTIONS(2497), + [anon_sym_u_SQUOTE] = ACTIONS(2497), + [anon_sym_U_SQUOTE] = ACTIONS(2497), + [anon_sym_u8_SQUOTE] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_L_DQUOTE] = ACTIONS(2497), + [anon_sym_u_DQUOTE] = ACTIONS(2497), + [anon_sym_U_DQUOTE] = ACTIONS(2497), + [anon_sym_u8_DQUOTE] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym_true] = ACTIONS(2495), + [sym_false] = ACTIONS(2495), + [sym_null] = ACTIONS(2495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2495), + [anon_sym_decltype] = ACTIONS(2495), + [anon_sym_virtual] = ACTIONS(2495), + [anon_sym_explicit] = ACTIONS(2495), + [anon_sym_typename] = ACTIONS(2495), + [anon_sym_template] = ACTIONS(2495), + [anon_sym_operator] = ACTIONS(2495), + [anon_sym_try] = ACTIONS(2495), + [anon_sym_delete] = ACTIONS(2495), + [anon_sym_throw] = ACTIONS(2495), + [anon_sym_namespace] = ACTIONS(2495), + [anon_sym_using] = ACTIONS(2495), + [anon_sym_static_assert] = ACTIONS(2495), + [anon_sym_concept] = ACTIONS(2495), + [anon_sym_co_return] = ACTIONS(2495), + [anon_sym_co_yield] = ACTIONS(2495), + [anon_sym_R_DQUOTE] = ACTIONS(2497), + [anon_sym_LR_DQUOTE] = ACTIONS(2497), + [anon_sym_uR_DQUOTE] = ACTIONS(2497), + [anon_sym_UR_DQUOTE] = ACTIONS(2497), + [anon_sym_u8R_DQUOTE] = ACTIONS(2497), + [anon_sym_co_await] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2495), + [anon_sym_requires] = ACTIONS(2495), + [sym_this] = ACTIONS(2495), + [sym_nullptr] = ACTIONS(2495), + }, + [550] = { + [sym_identifier] = ACTIONS(2491), + [aux_sym_preproc_include_token1] = ACTIONS(2491), + [aux_sym_preproc_def_token1] = ACTIONS(2491), + [aux_sym_preproc_if_token1] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), + [sym_preproc_directive] = ACTIONS(2491), + [anon_sym_LPAREN2] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2493), + [anon_sym_TILDE] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_AMP_AMP] = ACTIONS(2493), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_typedef] = ACTIONS(2491), + [anon_sym_extern] = ACTIONS(2491), + [anon_sym___attribute__] = ACTIONS(2491), + [anon_sym_COLON_COLON] = ACTIONS(2493), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), + [anon_sym___declspec] = ACTIONS(2491), + [anon_sym___based] = ACTIONS(2491), + [anon_sym___cdecl] = ACTIONS(2491), + [anon_sym___clrcall] = ACTIONS(2491), + [anon_sym___stdcall] = ACTIONS(2491), + [anon_sym___fastcall] = ACTIONS(2491), + [anon_sym___thiscall] = ACTIONS(2491), + [anon_sym___vectorcall] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_RBRACE] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_static] = ACTIONS(2491), + [anon_sym_register] = ACTIONS(2491), + [anon_sym_inline] = ACTIONS(2491), + [anon_sym_thread_local] = ACTIONS(2491), + [anon_sym_input] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_volatile] = ACTIONS(2491), + [anon_sym_restrict] = ACTIONS(2491), + [anon_sym__Atomic] = ACTIONS(2491), + [anon_sym_mutable] = ACTIONS(2491), + [anon_sym_constexpr] = ACTIONS(2491), + [anon_sym_constinit] = ACTIONS(2491), + [anon_sym_consteval] = ACTIONS(2491), + [anon_sym_signed] = ACTIONS(2491), + [anon_sym_unsigned] = ACTIONS(2491), + [anon_sym_long] = ACTIONS(2491), + [anon_sym_short] = ACTIONS(2491), + [sym_primitive_type] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_class] = ACTIONS(2491), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_else] = ACTIONS(2491), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2491), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_while] = ACTIONS(2491), + [anon_sym_do] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_goto] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2491), + [anon_sym_compl] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2493), + [anon_sym_PLUS_PLUS] = ACTIONS(2493), + [anon_sym_sizeof] = ACTIONS(2491), + [sym_number_literal] = ACTIONS(2493), + [anon_sym_L_SQUOTE] = ACTIONS(2493), + [anon_sym_u_SQUOTE] = ACTIONS(2493), + [anon_sym_U_SQUOTE] = ACTIONS(2493), + [anon_sym_u8_SQUOTE] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_L_DQUOTE] = ACTIONS(2493), + [anon_sym_u_DQUOTE] = ACTIONS(2493), + [anon_sym_U_DQUOTE] = ACTIONS(2493), + [anon_sym_u8_DQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2493), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_null] = ACTIONS(2491), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2491), + [anon_sym_decltype] = ACTIONS(2491), + [anon_sym_virtual] = ACTIONS(2491), + [anon_sym_explicit] = ACTIONS(2491), + [anon_sym_typename] = ACTIONS(2491), + [anon_sym_template] = ACTIONS(2491), + [anon_sym_operator] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2491), + [anon_sym_delete] = ACTIONS(2491), + [anon_sym_throw] = ACTIONS(2491), + [anon_sym_namespace] = ACTIONS(2491), + [anon_sym_using] = ACTIONS(2491), + [anon_sym_static_assert] = ACTIONS(2491), + [anon_sym_concept] = ACTIONS(2491), + [anon_sym_co_return] = ACTIONS(2491), + [anon_sym_co_yield] = ACTIONS(2491), + [anon_sym_R_DQUOTE] = ACTIONS(2493), + [anon_sym_LR_DQUOTE] = ACTIONS(2493), + [anon_sym_uR_DQUOTE] = ACTIONS(2493), + [anon_sym_UR_DQUOTE] = ACTIONS(2493), + [anon_sym_u8R_DQUOTE] = ACTIONS(2493), + [anon_sym_co_await] = ACTIONS(2491), + [anon_sym_new] = ACTIONS(2491), + [anon_sym_requires] = ACTIONS(2491), + [sym_this] = ACTIONS(2491), + [sym_nullptr] = ACTIONS(2491), + }, + [551] = { + [sym_identifier] = ACTIONS(2557), + [aux_sym_preproc_include_token1] = ACTIONS(2557), + [aux_sym_preproc_def_token1] = ACTIONS(2557), + [aux_sym_preproc_if_token1] = ACTIONS(2557), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2557), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2557), + [sym_preproc_directive] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(2557), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_typedef] = ACTIONS(2557), + [anon_sym_extern] = ACTIONS(2557), + [anon_sym___attribute__] = ACTIONS(2557), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2557), + [anon_sym___based] = ACTIONS(2557), + [anon_sym___cdecl] = ACTIONS(2557), + [anon_sym___clrcall] = ACTIONS(2557), + [anon_sym___stdcall] = ACTIONS(2557), + [anon_sym___fastcall] = ACTIONS(2557), + [anon_sym___thiscall] = ACTIONS(2557), + [anon_sym___vectorcall] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_RBRACE] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2557), + [anon_sym_register] = ACTIONS(2557), + [anon_sym_inline] = ACTIONS(2557), + [anon_sym_thread_local] = ACTIONS(2557), + [anon_sym_input] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [anon_sym_volatile] = ACTIONS(2557), + [anon_sym_restrict] = ACTIONS(2557), + [anon_sym__Atomic] = ACTIONS(2557), + [anon_sym_mutable] = ACTIONS(2557), + [anon_sym_constexpr] = ACTIONS(2557), + [anon_sym_constinit] = ACTIONS(2557), + [anon_sym_consteval] = ACTIONS(2557), + [anon_sym_signed] = ACTIONS(2557), + [anon_sym_unsigned] = ACTIONS(2557), + [anon_sym_long] = ACTIONS(2557), + [anon_sym_short] = ACTIONS(2557), + [sym_primitive_type] = ACTIONS(2557), + [anon_sym_enum] = ACTIONS(2557), + [anon_sym_class] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(2557), + [anon_sym_union] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_else] = ACTIONS(2557), + [anon_sym_switch] = ACTIONS(2557), + [anon_sym_case] = ACTIONS(2557), + [anon_sym_default] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_do] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_goto] = ACTIONS(2557), + [anon_sym_not] = ACTIONS(2557), + [anon_sym_compl] = ACTIONS(2557), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_sizeof] = ACTIONS(2557), + [sym_number_literal] = ACTIONS(2559), + [anon_sym_L_SQUOTE] = ACTIONS(2559), + [anon_sym_u_SQUOTE] = ACTIONS(2559), + [anon_sym_U_SQUOTE] = ACTIONS(2559), + [anon_sym_u8_SQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(2559), + [anon_sym_L_DQUOTE] = ACTIONS(2559), + [anon_sym_u_DQUOTE] = ACTIONS(2559), + [anon_sym_U_DQUOTE] = ACTIONS(2559), + [anon_sym_u8_DQUOTE] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [sym_true] = ACTIONS(2557), + [sym_false] = ACTIONS(2557), + [sym_null] = ACTIONS(2557), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2557), + [anon_sym_decltype] = ACTIONS(2557), + [anon_sym_virtual] = ACTIONS(2557), + [anon_sym_explicit] = ACTIONS(2557), + [anon_sym_typename] = ACTIONS(2557), + [anon_sym_template] = ACTIONS(2557), + [anon_sym_operator] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2557), + [anon_sym_delete] = ACTIONS(2557), + [anon_sym_throw] = ACTIONS(2557), + [anon_sym_namespace] = ACTIONS(2557), + [anon_sym_using] = ACTIONS(2557), + [anon_sym_static_assert] = ACTIONS(2557), + [anon_sym_concept] = ACTIONS(2557), + [anon_sym_co_return] = ACTIONS(2557), + [anon_sym_co_yield] = ACTIONS(2557), + [anon_sym_R_DQUOTE] = ACTIONS(2559), + [anon_sym_LR_DQUOTE] = ACTIONS(2559), + [anon_sym_uR_DQUOTE] = ACTIONS(2559), + [anon_sym_UR_DQUOTE] = ACTIONS(2559), + [anon_sym_u8R_DQUOTE] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2557), + [anon_sym_requires] = ACTIONS(2557), + [sym_this] = ACTIONS(2557), + [sym_nullptr] = ACTIONS(2557), + }, + [552] = { + [sym_identifier] = ACTIONS(2437), + [aux_sym_preproc_include_token1] = ACTIONS(2437), + [aux_sym_preproc_def_token1] = ACTIONS(2437), + [aux_sym_preproc_if_token1] = ACTIONS(2437), + [aux_sym_preproc_if_token2] = ACTIONS(2437), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2437), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2437), + [sym_preproc_directive] = ACTIONS(2437), + [anon_sym_LPAREN2] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_typedef] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym___attribute__] = ACTIONS(2437), + [anon_sym_COLON_COLON] = ACTIONS(2439), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2439), + [anon_sym___declspec] = ACTIONS(2437), + [anon_sym___based] = ACTIONS(2437), + [anon_sym___cdecl] = ACTIONS(2437), + [anon_sym___clrcall] = ACTIONS(2437), + [anon_sym___stdcall] = ACTIONS(2437), + [anon_sym___fastcall] = ACTIONS(2437), + [anon_sym___thiscall] = ACTIONS(2437), + [anon_sym___vectorcall] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_register] = ACTIONS(2437), + [anon_sym_inline] = ACTIONS(2437), + [anon_sym_thread_local] = ACTIONS(2437), + [anon_sym_input] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_volatile] = ACTIONS(2437), + [anon_sym_restrict] = ACTIONS(2437), + [anon_sym__Atomic] = ACTIONS(2437), + [anon_sym_mutable] = ACTIONS(2437), + [anon_sym_constexpr] = ACTIONS(2437), + [anon_sym_constinit] = ACTIONS(2437), + [anon_sym_consteval] = ACTIONS(2437), + [anon_sym_signed] = ACTIONS(2437), + [anon_sym_unsigned] = ACTIONS(2437), + [anon_sym_long] = ACTIONS(2437), + [anon_sym_short] = ACTIONS(2437), + [sym_primitive_type] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_class] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2437), + [anon_sym_union] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_switch] = ACTIONS(2437), + [anon_sym_case] = ACTIONS(2437), + [anon_sym_default] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_goto] = ACTIONS(2437), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_compl] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(2439), + [anon_sym_sizeof] = ACTIONS(2437), + [sym_number_literal] = ACTIONS(2439), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2439), + [anon_sym_u_DQUOTE] = ACTIONS(2439), + [anon_sym_U_DQUOTE] = ACTIONS(2439), + [anon_sym_u8_DQUOTE] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(2439), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_null] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2437), + [anon_sym_decltype] = ACTIONS(2437), + [anon_sym_virtual] = ACTIONS(2437), + [anon_sym_explicit] = ACTIONS(2437), + [anon_sym_typename] = ACTIONS(2437), + [anon_sym_template] = ACTIONS(2437), + [anon_sym_operator] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_delete] = ACTIONS(2437), + [anon_sym_throw] = ACTIONS(2437), + [anon_sym_namespace] = ACTIONS(2437), + [anon_sym_using] = ACTIONS(2437), + [anon_sym_static_assert] = ACTIONS(2437), + [anon_sym_concept] = ACTIONS(2437), + [anon_sym_co_return] = ACTIONS(2437), + [anon_sym_co_yield] = ACTIONS(2437), + [anon_sym_R_DQUOTE] = ACTIONS(2439), + [anon_sym_LR_DQUOTE] = ACTIONS(2439), + [anon_sym_uR_DQUOTE] = ACTIONS(2439), + [anon_sym_UR_DQUOTE] = ACTIONS(2439), + [anon_sym_u8R_DQUOTE] = ACTIONS(2439), + [anon_sym_co_await] = ACTIONS(2437), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_requires] = ACTIONS(2437), + [sym_this] = ACTIONS(2437), + [sym_nullptr] = ACTIONS(2437), + }, + [553] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [554] = { + [sym_identifier] = ACTIONS(2549), + [aux_sym_preproc_include_token1] = ACTIONS(2549), + [aux_sym_preproc_def_token1] = ACTIONS(2549), + [aux_sym_preproc_if_token1] = ACTIONS(2549), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2549), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2549), + [sym_preproc_directive] = ACTIONS(2549), + [anon_sym_LPAREN2] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_typedef] = ACTIONS(2549), + [anon_sym_extern] = ACTIONS(2549), + [anon_sym___attribute__] = ACTIONS(2549), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2551), + [anon_sym___declspec] = ACTIONS(2549), + [anon_sym___based] = ACTIONS(2549), + [anon_sym___cdecl] = ACTIONS(2549), + [anon_sym___clrcall] = ACTIONS(2549), + [anon_sym___stdcall] = ACTIONS(2549), + [anon_sym___fastcall] = ACTIONS(2549), + [anon_sym___thiscall] = ACTIONS(2549), + [anon_sym___vectorcall] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_register] = ACTIONS(2549), + [anon_sym_inline] = ACTIONS(2549), + [anon_sym_thread_local] = ACTIONS(2549), + [anon_sym_input] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_volatile] = ACTIONS(2549), + [anon_sym_restrict] = ACTIONS(2549), + [anon_sym__Atomic] = ACTIONS(2549), + [anon_sym_mutable] = ACTIONS(2549), + [anon_sym_constexpr] = ACTIONS(2549), + [anon_sym_constinit] = ACTIONS(2549), + [anon_sym_consteval] = ACTIONS(2549), + [anon_sym_signed] = ACTIONS(2549), + [anon_sym_unsigned] = ACTIONS(2549), + [anon_sym_long] = ACTIONS(2549), + [anon_sym_short] = ACTIONS(2549), + [sym_primitive_type] = ACTIONS(2549), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_struct] = ACTIONS(2549), + [anon_sym_union] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(2549), + [anon_sym_else] = ACTIONS(2549), + [anon_sym_switch] = ACTIONS(2549), + [anon_sym_case] = ACTIONS(2549), + [anon_sym_default] = ACTIONS(2549), + [anon_sym_while] = ACTIONS(2549), + [anon_sym_do] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(2549), + [anon_sym_return] = ACTIONS(2549), + [anon_sym_break] = ACTIONS(2549), + [anon_sym_continue] = ACTIONS(2549), + [anon_sym_goto] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(2549), + [anon_sym_compl] = ACTIONS(2549), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_sizeof] = ACTIONS(2549), + [sym_number_literal] = ACTIONS(2551), + [anon_sym_L_SQUOTE] = ACTIONS(2551), + [anon_sym_u_SQUOTE] = ACTIONS(2551), + [anon_sym_U_SQUOTE] = ACTIONS(2551), + [anon_sym_u8_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_L_DQUOTE] = ACTIONS(2551), + [anon_sym_u_DQUOTE] = ACTIONS(2551), + [anon_sym_U_DQUOTE] = ACTIONS(2551), + [anon_sym_u8_DQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [sym_true] = ACTIONS(2549), + [sym_false] = ACTIONS(2549), + [sym_null] = ACTIONS(2549), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2549), + [anon_sym_decltype] = ACTIONS(2549), + [anon_sym_virtual] = ACTIONS(2549), + [anon_sym_explicit] = ACTIONS(2549), + [anon_sym_typename] = ACTIONS(2549), + [anon_sym_template] = ACTIONS(2549), + [anon_sym_operator] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2549), + [anon_sym_delete] = ACTIONS(2549), + [anon_sym_throw] = ACTIONS(2549), + [anon_sym_namespace] = ACTIONS(2549), + [anon_sym_using] = ACTIONS(2549), + [anon_sym_static_assert] = ACTIONS(2549), + [anon_sym_concept] = ACTIONS(2549), + [anon_sym_co_return] = ACTIONS(2549), + [anon_sym_co_yield] = ACTIONS(2549), + [anon_sym_R_DQUOTE] = ACTIONS(2551), + [anon_sym_LR_DQUOTE] = ACTIONS(2551), + [anon_sym_uR_DQUOTE] = ACTIONS(2551), + [anon_sym_UR_DQUOTE] = ACTIONS(2551), + [anon_sym_u8R_DQUOTE] = ACTIONS(2551), + [anon_sym_co_await] = ACTIONS(2549), + [anon_sym_new] = ACTIONS(2549), + [anon_sym_requires] = ACTIONS(2549), + [sym_this] = ACTIONS(2549), + [sym_nullptr] = ACTIONS(2549), + }, + [555] = { + [sym_identifier] = ACTIONS(2545), + [aux_sym_preproc_include_token1] = ACTIONS(2545), + [aux_sym_preproc_def_token1] = ACTIONS(2545), + [aux_sym_preproc_if_token1] = ACTIONS(2545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2545), + [sym_preproc_directive] = ACTIONS(2545), + [anon_sym_LPAREN2] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_AMP_AMP] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_typedef] = ACTIONS(2545), + [anon_sym_extern] = ACTIONS(2545), + [anon_sym___attribute__] = ACTIONS(2545), + [anon_sym_COLON_COLON] = ACTIONS(2547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2547), + [anon_sym___declspec] = ACTIONS(2545), + [anon_sym___based] = ACTIONS(2545), + [anon_sym___cdecl] = ACTIONS(2545), + [anon_sym___clrcall] = ACTIONS(2545), + [anon_sym___stdcall] = ACTIONS(2545), + [anon_sym___fastcall] = ACTIONS(2545), + [anon_sym___thiscall] = ACTIONS(2545), + [anon_sym___vectorcall] = ACTIONS(2545), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2545), + [anon_sym_register] = ACTIONS(2545), + [anon_sym_inline] = ACTIONS(2545), + [anon_sym_thread_local] = ACTIONS(2545), + [anon_sym_input] = ACTIONS(2545), + [anon_sym_const] = ACTIONS(2545), + [anon_sym_volatile] = ACTIONS(2545), + [anon_sym_restrict] = ACTIONS(2545), + [anon_sym__Atomic] = ACTIONS(2545), + [anon_sym_mutable] = ACTIONS(2545), + [anon_sym_constexpr] = ACTIONS(2545), + [anon_sym_constinit] = ACTIONS(2545), + [anon_sym_consteval] = ACTIONS(2545), + [anon_sym_signed] = ACTIONS(2545), + [anon_sym_unsigned] = ACTIONS(2545), + [anon_sym_long] = ACTIONS(2545), + [anon_sym_short] = ACTIONS(2545), + [sym_primitive_type] = ACTIONS(2545), + [anon_sym_enum] = ACTIONS(2545), + [anon_sym_class] = ACTIONS(2545), + [anon_sym_struct] = ACTIONS(2545), + [anon_sym_union] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_else] = ACTIONS(2545), + [anon_sym_switch] = ACTIONS(2545), + [anon_sym_case] = ACTIONS(2545), + [anon_sym_default] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_do] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_goto] = ACTIONS(2545), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_compl] = ACTIONS(2545), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_sizeof] = ACTIONS(2545), + [sym_number_literal] = ACTIONS(2547), + [anon_sym_L_SQUOTE] = ACTIONS(2547), + [anon_sym_u_SQUOTE] = ACTIONS(2547), + [anon_sym_U_SQUOTE] = ACTIONS(2547), + [anon_sym_u8_SQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_L_DQUOTE] = ACTIONS(2547), + [anon_sym_u_DQUOTE] = ACTIONS(2547), + [anon_sym_U_DQUOTE] = ACTIONS(2547), + [anon_sym_u8_DQUOTE] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [sym_true] = ACTIONS(2545), + [sym_false] = ACTIONS(2545), + [sym_null] = ACTIONS(2545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2545), + [anon_sym_decltype] = ACTIONS(2545), + [anon_sym_virtual] = ACTIONS(2545), + [anon_sym_explicit] = ACTIONS(2545), + [anon_sym_typename] = ACTIONS(2545), + [anon_sym_template] = ACTIONS(2545), + [anon_sym_operator] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [anon_sym_delete] = ACTIONS(2545), + [anon_sym_throw] = ACTIONS(2545), + [anon_sym_namespace] = ACTIONS(2545), + [anon_sym_using] = ACTIONS(2545), + [anon_sym_static_assert] = ACTIONS(2545), + [anon_sym_concept] = ACTIONS(2545), + [anon_sym_co_return] = ACTIONS(2545), + [anon_sym_co_yield] = ACTIONS(2545), + [anon_sym_R_DQUOTE] = ACTIONS(2547), + [anon_sym_LR_DQUOTE] = ACTIONS(2547), + [anon_sym_uR_DQUOTE] = ACTIONS(2547), + [anon_sym_UR_DQUOTE] = ACTIONS(2547), + [anon_sym_u8R_DQUOTE] = ACTIONS(2547), + [anon_sym_co_await] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_requires] = ACTIONS(2545), + [sym_this] = ACTIONS(2545), + [sym_nullptr] = ACTIONS(2545), + }, + [556] = { + [sym_identifier] = ACTIONS(2549), + [aux_sym_preproc_include_token1] = ACTIONS(2549), + [aux_sym_preproc_def_token1] = ACTIONS(2549), + [aux_sym_preproc_if_token1] = ACTIONS(2549), + [aux_sym_preproc_if_token2] = ACTIONS(2549), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2549), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2549), + [sym_preproc_directive] = ACTIONS(2549), + [anon_sym_LPAREN2] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_typedef] = ACTIONS(2549), + [anon_sym_extern] = ACTIONS(2549), + [anon_sym___attribute__] = ACTIONS(2549), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2551), + [anon_sym___declspec] = ACTIONS(2549), + [anon_sym___based] = ACTIONS(2549), + [anon_sym___cdecl] = ACTIONS(2549), + [anon_sym___clrcall] = ACTIONS(2549), + [anon_sym___stdcall] = ACTIONS(2549), + [anon_sym___fastcall] = ACTIONS(2549), + [anon_sym___thiscall] = ACTIONS(2549), + [anon_sym___vectorcall] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_register] = ACTIONS(2549), + [anon_sym_inline] = ACTIONS(2549), + [anon_sym_thread_local] = ACTIONS(2549), + [anon_sym_input] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_volatile] = ACTIONS(2549), + [anon_sym_restrict] = ACTIONS(2549), + [anon_sym__Atomic] = ACTIONS(2549), + [anon_sym_mutable] = ACTIONS(2549), + [anon_sym_constexpr] = ACTIONS(2549), + [anon_sym_constinit] = ACTIONS(2549), + [anon_sym_consteval] = ACTIONS(2549), + [anon_sym_signed] = ACTIONS(2549), + [anon_sym_unsigned] = ACTIONS(2549), + [anon_sym_long] = ACTIONS(2549), + [anon_sym_short] = ACTIONS(2549), + [sym_primitive_type] = ACTIONS(2549), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_struct] = ACTIONS(2549), + [anon_sym_union] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(2549), + [anon_sym_else] = ACTIONS(2549), + [anon_sym_switch] = ACTIONS(2549), + [anon_sym_case] = ACTIONS(2549), + [anon_sym_default] = ACTIONS(2549), + [anon_sym_while] = ACTIONS(2549), + [anon_sym_do] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(2549), + [anon_sym_return] = ACTIONS(2549), + [anon_sym_break] = ACTIONS(2549), + [anon_sym_continue] = ACTIONS(2549), + [anon_sym_goto] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(2549), + [anon_sym_compl] = ACTIONS(2549), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_sizeof] = ACTIONS(2549), + [sym_number_literal] = ACTIONS(2551), + [anon_sym_L_SQUOTE] = ACTIONS(2551), + [anon_sym_u_SQUOTE] = ACTIONS(2551), + [anon_sym_U_SQUOTE] = ACTIONS(2551), + [anon_sym_u8_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_L_DQUOTE] = ACTIONS(2551), + [anon_sym_u_DQUOTE] = ACTIONS(2551), + [anon_sym_U_DQUOTE] = ACTIONS(2551), + [anon_sym_u8_DQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [sym_true] = ACTIONS(2549), + [sym_false] = ACTIONS(2549), + [sym_null] = ACTIONS(2549), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2549), + [anon_sym_decltype] = ACTIONS(2549), + [anon_sym_virtual] = ACTIONS(2549), + [anon_sym_explicit] = ACTIONS(2549), + [anon_sym_typename] = ACTIONS(2549), + [anon_sym_template] = ACTIONS(2549), + [anon_sym_operator] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2549), + [anon_sym_delete] = ACTIONS(2549), + [anon_sym_throw] = ACTIONS(2549), + [anon_sym_namespace] = ACTIONS(2549), + [anon_sym_using] = ACTIONS(2549), + [anon_sym_static_assert] = ACTIONS(2549), + [anon_sym_concept] = ACTIONS(2549), + [anon_sym_co_return] = ACTIONS(2549), + [anon_sym_co_yield] = ACTIONS(2549), + [anon_sym_R_DQUOTE] = ACTIONS(2551), + [anon_sym_LR_DQUOTE] = ACTIONS(2551), + [anon_sym_uR_DQUOTE] = ACTIONS(2551), + [anon_sym_UR_DQUOTE] = ACTIONS(2551), + [anon_sym_u8R_DQUOTE] = ACTIONS(2551), + [anon_sym_co_await] = ACTIONS(2549), + [anon_sym_new] = ACTIONS(2549), + [anon_sym_requires] = ACTIONS(2549), + [sym_this] = ACTIONS(2549), + [sym_nullptr] = ACTIONS(2549), + }, + [557] = { + [sym_identifier] = ACTIONS(2535), + [aux_sym_preproc_include_token1] = ACTIONS(2535), + [aux_sym_preproc_def_token1] = ACTIONS(2535), + [aux_sym_preproc_if_token1] = ACTIONS(2535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2535), + [sym_preproc_directive] = ACTIONS(2535), + [anon_sym_LPAREN2] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2537), + [anon_sym_TILDE] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2535), + [anon_sym_STAR] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_typedef] = ACTIONS(2535), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym___attribute__] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), + [anon_sym___declspec] = ACTIONS(2535), + [anon_sym___based] = ACTIONS(2535), + [anon_sym___cdecl] = ACTIONS(2535), + [anon_sym___clrcall] = ACTIONS(2535), + [anon_sym___stdcall] = ACTIONS(2535), + [anon_sym___fastcall] = ACTIONS(2535), + [anon_sym___thiscall] = ACTIONS(2535), + [anon_sym___vectorcall] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2537), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_inline] = ACTIONS(2535), + [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_input] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_volatile] = ACTIONS(2535), + [anon_sym_restrict] = ACTIONS(2535), + [anon_sym__Atomic] = ACTIONS(2535), + [anon_sym_mutable] = ACTIONS(2535), + [anon_sym_constexpr] = ACTIONS(2535), + [anon_sym_constinit] = ACTIONS(2535), + [anon_sym_consteval] = ACTIONS(2535), + [anon_sym_signed] = ACTIONS(2535), + [anon_sym_unsigned] = ACTIONS(2535), + [anon_sym_long] = ACTIONS(2535), + [anon_sym_short] = ACTIONS(2535), + [sym_primitive_type] = ACTIONS(2535), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_else] = ACTIONS(2535), + [anon_sym_switch] = ACTIONS(2535), + [anon_sym_case] = ACTIONS(2535), + [anon_sym_default] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_do] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_goto] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_compl] = ACTIONS(2535), + [anon_sym_DASH_DASH] = ACTIONS(2537), + [anon_sym_PLUS_PLUS] = ACTIONS(2537), + [anon_sym_sizeof] = ACTIONS(2535), + [sym_number_literal] = ACTIONS(2537), + [anon_sym_L_SQUOTE] = ACTIONS(2537), + [anon_sym_u_SQUOTE] = ACTIONS(2537), + [anon_sym_U_SQUOTE] = ACTIONS(2537), + [anon_sym_u8_SQUOTE] = ACTIONS(2537), + [anon_sym_SQUOTE] = ACTIONS(2537), + [anon_sym_L_DQUOTE] = ACTIONS(2537), + [anon_sym_u_DQUOTE] = ACTIONS(2537), + [anon_sym_U_DQUOTE] = ACTIONS(2537), + [anon_sym_u8_DQUOTE] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2537), + [sym_true] = ACTIONS(2535), + [sym_false] = ACTIONS(2535), + [sym_null] = ACTIONS(2535), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2535), + [anon_sym_decltype] = ACTIONS(2535), + [anon_sym_virtual] = ACTIONS(2535), + [anon_sym_explicit] = ACTIONS(2535), + [anon_sym_typename] = ACTIONS(2535), + [anon_sym_template] = ACTIONS(2535), + [anon_sym_operator] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2535), + [anon_sym_delete] = ACTIONS(2535), + [anon_sym_throw] = ACTIONS(2535), + [anon_sym_namespace] = ACTIONS(2535), + [anon_sym_using] = ACTIONS(2535), + [anon_sym_static_assert] = ACTIONS(2535), + [anon_sym_concept] = ACTIONS(2535), + [anon_sym_co_return] = ACTIONS(2535), + [anon_sym_co_yield] = ACTIONS(2535), + [anon_sym_R_DQUOTE] = ACTIONS(2537), + [anon_sym_LR_DQUOTE] = ACTIONS(2537), + [anon_sym_uR_DQUOTE] = ACTIONS(2537), + [anon_sym_UR_DQUOTE] = ACTIONS(2537), + [anon_sym_u8R_DQUOTE] = ACTIONS(2537), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2535), + [anon_sym_requires] = ACTIONS(2535), + [sym_this] = ACTIONS(2535), + [sym_nullptr] = ACTIONS(2535), + }, + [558] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [559] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [560] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [561] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [562] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [563] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [564] = { + [ts_builtin_sym_end] = ACTIONS(2501), + [sym_identifier] = ACTIONS(2499), + [aux_sym_preproc_include_token1] = ACTIONS(2499), + [aux_sym_preproc_def_token1] = ACTIONS(2499), + [aux_sym_preproc_if_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), + [sym_preproc_directive] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_AMP_AMP] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_typedef] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym___attribute__] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), + [anon_sym___declspec] = ACTIONS(2499), + [anon_sym___based] = ACTIONS(2499), + [anon_sym___cdecl] = ACTIONS(2499), + [anon_sym___clrcall] = ACTIONS(2499), + [anon_sym___stdcall] = ACTIONS(2499), + [anon_sym___fastcall] = ACTIONS(2499), + [anon_sym___thiscall] = ACTIONS(2499), + [anon_sym___vectorcall] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_register] = ACTIONS(2499), + [anon_sym_inline] = ACTIONS(2499), + [anon_sym_thread_local] = ACTIONS(2499), + [anon_sym_input] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_volatile] = ACTIONS(2499), + [anon_sym_restrict] = ACTIONS(2499), + [anon_sym__Atomic] = ACTIONS(2499), + [anon_sym_mutable] = ACTIONS(2499), + [anon_sym_constexpr] = ACTIONS(2499), + [anon_sym_constinit] = ACTIONS(2499), + [anon_sym_consteval] = ACTIONS(2499), + [anon_sym_signed] = ACTIONS(2499), + [anon_sym_unsigned] = ACTIONS(2499), + [anon_sym_long] = ACTIONS(2499), + [anon_sym_short] = ACTIONS(2499), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_class] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_switch] = ACTIONS(2499), + [anon_sym_case] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [anon_sym_L_SQUOTE] = ACTIONS(2501), + [anon_sym_u_SQUOTE] = ACTIONS(2501), + [anon_sym_U_SQUOTE] = ACTIONS(2501), + [anon_sym_u8_SQUOTE] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_L_DQUOTE] = ACTIONS(2501), + [anon_sym_u_DQUOTE] = ACTIONS(2501), + [anon_sym_U_DQUOTE] = ACTIONS(2501), + [anon_sym_u8_DQUOTE] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2499), + [anon_sym_decltype] = ACTIONS(2499), + [anon_sym_virtual] = ACTIONS(2499), + [anon_sym_explicit] = ACTIONS(2499), + [anon_sym_typename] = ACTIONS(2499), + [anon_sym_template] = ACTIONS(2499), + [anon_sym_operator] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2499), + [anon_sym_delete] = ACTIONS(2499), + [anon_sym_throw] = ACTIONS(2499), + [anon_sym_namespace] = ACTIONS(2499), + [anon_sym_using] = ACTIONS(2499), + [anon_sym_static_assert] = ACTIONS(2499), + [anon_sym_concept] = ACTIONS(2499), + [anon_sym_co_return] = ACTIONS(2499), + [anon_sym_co_yield] = ACTIONS(2499), + [anon_sym_R_DQUOTE] = ACTIONS(2501), + [anon_sym_LR_DQUOTE] = ACTIONS(2501), + [anon_sym_uR_DQUOTE] = ACTIONS(2501), + [anon_sym_UR_DQUOTE] = ACTIONS(2501), + [anon_sym_u8R_DQUOTE] = ACTIONS(2501), + [anon_sym_co_await] = ACTIONS(2499), + [anon_sym_new] = ACTIONS(2499), + [anon_sym_requires] = ACTIONS(2499), + [sym_this] = ACTIONS(2499), + [sym_nullptr] = ACTIONS(2499), + }, + [565] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [566] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [567] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [568] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [569] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [570] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [571] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [572] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [573] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [574] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [575] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [576] = { + [ts_builtin_sym_end] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2403), + [aux_sym_preproc_include_token1] = ACTIONS(2403), + [aux_sym_preproc_def_token1] = ACTIONS(2403), + [aux_sym_preproc_if_token1] = ACTIONS(2403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2403), + [sym_preproc_directive] = ACTIONS(2403), + [anon_sym_LPAREN2] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(2405), + [anon_sym_AMP] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_typedef] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym___attribute__] = ACTIONS(2403), + [anon_sym_COLON_COLON] = ACTIONS(2405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), + [anon_sym___declspec] = ACTIONS(2403), + [anon_sym___based] = ACTIONS(2403), + [anon_sym___cdecl] = ACTIONS(2403), + [anon_sym___clrcall] = ACTIONS(2403), + [anon_sym___stdcall] = ACTIONS(2403), + [anon_sym___fastcall] = ACTIONS(2403), + [anon_sym___thiscall] = ACTIONS(2403), + [anon_sym___vectorcall] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_inline] = ACTIONS(2403), + [anon_sym_thread_local] = ACTIONS(2403), + [anon_sym_input] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_volatile] = ACTIONS(2403), + [anon_sym_restrict] = ACTIONS(2403), + [anon_sym__Atomic] = ACTIONS(2403), + [anon_sym_mutable] = ACTIONS(2403), + [anon_sym_constexpr] = ACTIONS(2403), + [anon_sym_constinit] = ACTIONS(2403), + [anon_sym_consteval] = ACTIONS(2403), + [anon_sym_signed] = ACTIONS(2403), + [anon_sym_unsigned] = ACTIONS(2403), + [anon_sym_long] = ACTIONS(2403), + [anon_sym_short] = ACTIONS(2403), + [sym_primitive_type] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_class] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_switch] = ACTIONS(2403), + [anon_sym_case] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_goto] = ACTIONS(2403), + [anon_sym_not] = ACTIONS(2403), + [anon_sym_compl] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2405), + [anon_sym_PLUS_PLUS] = ACTIONS(2405), + [anon_sym_sizeof] = ACTIONS(2403), + [sym_number_literal] = ACTIONS(2405), + [anon_sym_L_SQUOTE] = ACTIONS(2405), + [anon_sym_u_SQUOTE] = ACTIONS(2405), + [anon_sym_U_SQUOTE] = ACTIONS(2405), + [anon_sym_u8_SQUOTE] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_L_DQUOTE] = ACTIONS(2405), + [anon_sym_u_DQUOTE] = ACTIONS(2405), + [anon_sym_U_DQUOTE] = ACTIONS(2405), + [anon_sym_u8_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [sym_true] = ACTIONS(2403), + [sym_false] = ACTIONS(2403), + [sym_null] = ACTIONS(2403), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2403), + [anon_sym_decltype] = ACTIONS(2403), + [anon_sym_virtual] = ACTIONS(2403), + [anon_sym_explicit] = ACTIONS(2403), + [anon_sym_typename] = ACTIONS(2403), + [anon_sym_template] = ACTIONS(2403), + [anon_sym_operator] = ACTIONS(2403), + [anon_sym_try] = ACTIONS(2403), + [anon_sym_delete] = ACTIONS(2403), + [anon_sym_throw] = ACTIONS(2403), + [anon_sym_namespace] = ACTIONS(2403), + [anon_sym_using] = ACTIONS(2403), + [anon_sym_static_assert] = ACTIONS(2403), + [anon_sym_concept] = ACTIONS(2403), + [anon_sym_co_return] = ACTIONS(2403), + [anon_sym_co_yield] = ACTIONS(2403), + [anon_sym_R_DQUOTE] = ACTIONS(2405), + [anon_sym_LR_DQUOTE] = ACTIONS(2405), + [anon_sym_uR_DQUOTE] = ACTIONS(2405), + [anon_sym_UR_DQUOTE] = ACTIONS(2405), + [anon_sym_u8R_DQUOTE] = ACTIONS(2405), + [anon_sym_co_await] = ACTIONS(2403), + [anon_sym_new] = ACTIONS(2403), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2403), + [sym_nullptr] = ACTIONS(2403), + }, + [577] = { + [ts_builtin_sym_end] = ACTIONS(2409), + [sym_identifier] = ACTIONS(2407), + [aux_sym_preproc_include_token1] = ACTIONS(2407), + [aux_sym_preproc_def_token1] = ACTIONS(2407), + [aux_sym_preproc_if_token1] = ACTIONS(2407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2407), + [sym_preproc_directive] = ACTIONS(2407), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_BANG] = ACTIONS(2409), + [anon_sym_TILDE] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2407), + [anon_sym_PLUS] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_AMP_AMP] = ACTIONS(2409), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2409), + [anon_sym_typedef] = ACTIONS(2407), + [anon_sym_extern] = ACTIONS(2407), + [anon_sym___attribute__] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2409), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2409), + [anon_sym___declspec] = ACTIONS(2407), + [anon_sym___based] = ACTIONS(2407), + [anon_sym___cdecl] = ACTIONS(2407), + [anon_sym___clrcall] = ACTIONS(2407), + [anon_sym___stdcall] = ACTIONS(2407), + [anon_sym___fastcall] = ACTIONS(2407), + [anon_sym___thiscall] = ACTIONS(2407), + [anon_sym___vectorcall] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_static] = ACTIONS(2407), + [anon_sym_register] = ACTIONS(2407), + [anon_sym_inline] = ACTIONS(2407), + [anon_sym_thread_local] = ACTIONS(2407), + [anon_sym_input] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [anon_sym_volatile] = ACTIONS(2407), + [anon_sym_restrict] = ACTIONS(2407), + [anon_sym__Atomic] = ACTIONS(2407), + [anon_sym_mutable] = ACTIONS(2407), + [anon_sym_constexpr] = ACTIONS(2407), + [anon_sym_constinit] = ACTIONS(2407), + [anon_sym_consteval] = ACTIONS(2407), + [anon_sym_signed] = ACTIONS(2407), + [anon_sym_unsigned] = ACTIONS(2407), + [anon_sym_long] = ACTIONS(2407), + [anon_sym_short] = ACTIONS(2407), + [sym_primitive_type] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2407), + [anon_sym_class] = ACTIONS(2407), + [anon_sym_struct] = ACTIONS(2407), + [anon_sym_union] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_else] = ACTIONS(2407), + [anon_sym_switch] = ACTIONS(2407), + [anon_sym_case] = ACTIONS(2407), + [anon_sym_default] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [anon_sym_do] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_goto] = ACTIONS(2407), + [anon_sym_not] = ACTIONS(2407), + [anon_sym_compl] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2409), + [anon_sym_PLUS_PLUS] = ACTIONS(2409), + [anon_sym_sizeof] = ACTIONS(2407), + [sym_number_literal] = ACTIONS(2409), + [anon_sym_L_SQUOTE] = ACTIONS(2409), + [anon_sym_u_SQUOTE] = ACTIONS(2409), + [anon_sym_U_SQUOTE] = ACTIONS(2409), + [anon_sym_u8_SQUOTE] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_L_DQUOTE] = ACTIONS(2409), + [anon_sym_u_DQUOTE] = ACTIONS(2409), + [anon_sym_U_DQUOTE] = ACTIONS(2409), + [anon_sym_u8_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(2409), + [sym_true] = ACTIONS(2407), + [sym_false] = ACTIONS(2407), + [sym_null] = ACTIONS(2407), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2407), + [anon_sym_decltype] = ACTIONS(2407), + [anon_sym_virtual] = ACTIONS(2407), + [anon_sym_explicit] = ACTIONS(2407), + [anon_sym_typename] = ACTIONS(2407), + [anon_sym_template] = ACTIONS(2407), + [anon_sym_operator] = ACTIONS(2407), + [anon_sym_try] = ACTIONS(2407), + [anon_sym_delete] = ACTIONS(2407), + [anon_sym_throw] = ACTIONS(2407), + [anon_sym_namespace] = ACTIONS(2407), + [anon_sym_using] = ACTIONS(2407), + [anon_sym_static_assert] = ACTIONS(2407), + [anon_sym_concept] = ACTIONS(2407), + [anon_sym_co_return] = ACTIONS(2407), + [anon_sym_co_yield] = ACTIONS(2407), + [anon_sym_R_DQUOTE] = ACTIONS(2409), + [anon_sym_LR_DQUOTE] = ACTIONS(2409), + [anon_sym_uR_DQUOTE] = ACTIONS(2409), + [anon_sym_UR_DQUOTE] = ACTIONS(2409), + [anon_sym_u8R_DQUOTE] = ACTIONS(2409), + [anon_sym_co_await] = ACTIONS(2407), + [anon_sym_new] = ACTIONS(2407), + [anon_sym_requires] = ACTIONS(2407), + [sym_this] = ACTIONS(2407), + [sym_nullptr] = ACTIONS(2407), + }, + [578] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [579] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [580] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [581] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [582] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [583] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [584] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [585] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [586] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [587] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [588] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [589] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [590] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [591] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [592] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [593] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [594] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [595] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [596] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [597] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [598] = { + [ts_builtin_sym_end] = ACTIONS(2413), + [sym_identifier] = ACTIONS(2411), + [aux_sym_preproc_include_token1] = ACTIONS(2411), + [aux_sym_preproc_def_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2411), + [sym_preproc_directive] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym___attribute__] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2413), + [anon_sym___declspec] = ACTIONS(2411), + [anon_sym___based] = ACTIONS(2411), + [anon_sym___cdecl] = ACTIONS(2411), + [anon_sym___clrcall] = ACTIONS(2411), + [anon_sym___stdcall] = ACTIONS(2411), + [anon_sym___fastcall] = ACTIONS(2411), + [anon_sym___thiscall] = ACTIONS(2411), + [anon_sym___vectorcall] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_thread_local] = ACTIONS(2411), + [anon_sym_input] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym__Atomic] = ACTIONS(2411), + [anon_sym_mutable] = ACTIONS(2411), + [anon_sym_constexpr] = ACTIONS(2411), + [anon_sym_constinit] = ACTIONS(2411), + [anon_sym_consteval] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [sym_primitive_type] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_switch] = ACTIONS(2411), + [anon_sym_case] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_goto] = ACTIONS(2411), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_compl] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_sizeof] = ACTIONS(2411), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_L_SQUOTE] = ACTIONS(2413), + [anon_sym_u_SQUOTE] = ACTIONS(2413), + [anon_sym_U_SQUOTE] = ACTIONS(2413), + [anon_sym_u8_SQUOTE] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_L_DQUOTE] = ACTIONS(2413), + [anon_sym_u_DQUOTE] = ACTIONS(2413), + [anon_sym_U_DQUOTE] = ACTIONS(2413), + [anon_sym_u8_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2411), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_virtual] = ACTIONS(2411), + [anon_sym_explicit] = ACTIONS(2411), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2411), + [anon_sym_operator] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_delete] = ACTIONS(2411), + [anon_sym_throw] = ACTIONS(2411), + [anon_sym_namespace] = ACTIONS(2411), + [anon_sym_using] = ACTIONS(2411), + [anon_sym_static_assert] = ACTIONS(2411), + [anon_sym_concept] = ACTIONS(2411), + [anon_sym_co_return] = ACTIONS(2411), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_R_DQUOTE] = ACTIONS(2413), + [anon_sym_LR_DQUOTE] = ACTIONS(2413), + [anon_sym_uR_DQUOTE] = ACTIONS(2413), + [anon_sym_UR_DQUOTE] = ACTIONS(2413), + [anon_sym_u8R_DQUOTE] = ACTIONS(2413), + [anon_sym_co_await] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_requires] = ACTIONS(2411), + [sym_this] = ACTIONS(2411), + [sym_nullptr] = ACTIONS(2411), + }, + [599] = { + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [600] = { + [ts_builtin_sym_end] = ACTIONS(2525), + [sym_identifier] = ACTIONS(2523), + [aux_sym_preproc_include_token1] = ACTIONS(2523), + [aux_sym_preproc_def_token1] = ACTIONS(2523), + [aux_sym_preproc_if_token1] = ACTIONS(2523), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2523), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2523), + [sym_preproc_directive] = ACTIONS(2523), + [anon_sym_LPAREN2] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_AMP_AMP] = ACTIONS(2525), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_typedef] = ACTIONS(2523), + [anon_sym_extern] = ACTIONS(2523), + [anon_sym___attribute__] = ACTIONS(2523), + [anon_sym_COLON_COLON] = ACTIONS(2525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2525), + [anon_sym___declspec] = ACTIONS(2523), + [anon_sym___based] = ACTIONS(2523), + [anon_sym___cdecl] = ACTIONS(2523), + [anon_sym___clrcall] = ACTIONS(2523), + [anon_sym___stdcall] = ACTIONS(2523), + [anon_sym___fastcall] = ACTIONS(2523), + [anon_sym___thiscall] = ACTIONS(2523), + [anon_sym___vectorcall] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_static] = ACTIONS(2523), + [anon_sym_register] = ACTIONS(2523), + [anon_sym_inline] = ACTIONS(2523), + [anon_sym_thread_local] = ACTIONS(2523), + [anon_sym_input] = ACTIONS(2523), + [anon_sym_const] = ACTIONS(2523), + [anon_sym_volatile] = ACTIONS(2523), + [anon_sym_restrict] = ACTIONS(2523), + [anon_sym__Atomic] = ACTIONS(2523), + [anon_sym_mutable] = ACTIONS(2523), + [anon_sym_constexpr] = ACTIONS(2523), + [anon_sym_constinit] = ACTIONS(2523), + [anon_sym_consteval] = ACTIONS(2523), + [anon_sym_signed] = ACTIONS(2523), + [anon_sym_unsigned] = ACTIONS(2523), + [anon_sym_long] = ACTIONS(2523), + [anon_sym_short] = ACTIONS(2523), + [sym_primitive_type] = ACTIONS(2523), + [anon_sym_enum] = ACTIONS(2523), + [anon_sym_class] = ACTIONS(2523), + [anon_sym_struct] = ACTIONS(2523), + [anon_sym_union] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_else] = ACTIONS(2523), + [anon_sym_switch] = ACTIONS(2523), + [anon_sym_case] = ACTIONS(2523), + [anon_sym_default] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2523), + [anon_sym_do] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_goto] = ACTIONS(2523), + [anon_sym_not] = ACTIONS(2523), + [anon_sym_compl] = ACTIONS(2523), + [anon_sym_DASH_DASH] = ACTIONS(2525), + [anon_sym_PLUS_PLUS] = ACTIONS(2525), + [anon_sym_sizeof] = ACTIONS(2523), + [sym_number_literal] = ACTIONS(2525), + [anon_sym_L_SQUOTE] = ACTIONS(2525), + [anon_sym_u_SQUOTE] = ACTIONS(2525), + [anon_sym_U_SQUOTE] = ACTIONS(2525), + [anon_sym_u8_SQUOTE] = ACTIONS(2525), + [anon_sym_SQUOTE] = ACTIONS(2525), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2523), + [sym_false] = ACTIONS(2523), + [sym_null] = ACTIONS(2523), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2523), + [anon_sym_decltype] = ACTIONS(2523), + [anon_sym_virtual] = ACTIONS(2523), + [anon_sym_explicit] = ACTIONS(2523), + [anon_sym_typename] = ACTIONS(2523), + [anon_sym_template] = ACTIONS(2523), + [anon_sym_operator] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2523), + [anon_sym_delete] = ACTIONS(2523), + [anon_sym_throw] = ACTIONS(2523), + [anon_sym_namespace] = ACTIONS(2523), + [anon_sym_using] = ACTIONS(2523), + [anon_sym_static_assert] = ACTIONS(2523), + [anon_sym_concept] = ACTIONS(2523), + [anon_sym_co_return] = ACTIONS(2523), + [anon_sym_co_yield] = ACTIONS(2523), + [anon_sym_R_DQUOTE] = ACTIONS(2525), + [anon_sym_LR_DQUOTE] = ACTIONS(2525), + [anon_sym_uR_DQUOTE] = ACTIONS(2525), + [anon_sym_UR_DQUOTE] = ACTIONS(2525), + [anon_sym_u8R_DQUOTE] = ACTIONS(2525), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2523), + [sym_this] = ACTIONS(2523), + [sym_nullptr] = ACTIONS(2523), + }, + [601] = { + [ts_builtin_sym_end] = ACTIONS(2521), + [sym_identifier] = ACTIONS(2519), + [aux_sym_preproc_include_token1] = ACTIONS(2519), + [aux_sym_preproc_def_token1] = ACTIONS(2519), + [aux_sym_preproc_if_token1] = ACTIONS(2519), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2519), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2519), + [sym_preproc_directive] = ACTIONS(2519), + [anon_sym_LPAREN2] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_STAR] = ACTIONS(2521), + [anon_sym_AMP_AMP] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_typedef] = ACTIONS(2519), + [anon_sym_extern] = ACTIONS(2519), + [anon_sym___attribute__] = ACTIONS(2519), + [anon_sym_COLON_COLON] = ACTIONS(2521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), + [anon_sym___declspec] = ACTIONS(2519), + [anon_sym___based] = ACTIONS(2519), + [anon_sym___cdecl] = ACTIONS(2519), + [anon_sym___clrcall] = ACTIONS(2519), + [anon_sym___stdcall] = ACTIONS(2519), + [anon_sym___fastcall] = ACTIONS(2519), + [anon_sym___thiscall] = ACTIONS(2519), + [anon_sym___vectorcall] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_static] = ACTIONS(2519), + [anon_sym_register] = ACTIONS(2519), + [anon_sym_inline] = ACTIONS(2519), + [anon_sym_thread_local] = ACTIONS(2519), + [anon_sym_input] = ACTIONS(2519), + [anon_sym_const] = ACTIONS(2519), + [anon_sym_volatile] = ACTIONS(2519), + [anon_sym_restrict] = ACTIONS(2519), + [anon_sym__Atomic] = ACTIONS(2519), + [anon_sym_mutable] = ACTIONS(2519), + [anon_sym_constexpr] = ACTIONS(2519), + [anon_sym_constinit] = ACTIONS(2519), + [anon_sym_consteval] = ACTIONS(2519), + [anon_sym_signed] = ACTIONS(2519), + [anon_sym_unsigned] = ACTIONS(2519), + [anon_sym_long] = ACTIONS(2519), + [anon_sym_short] = ACTIONS(2519), + [sym_primitive_type] = ACTIONS(2519), + [anon_sym_enum] = ACTIONS(2519), + [anon_sym_class] = ACTIONS(2519), + [anon_sym_struct] = ACTIONS(2519), + [anon_sym_union] = ACTIONS(2519), + [anon_sym_if] = ACTIONS(2519), + [anon_sym_else] = ACTIONS(2519), + [anon_sym_switch] = ACTIONS(2519), + [anon_sym_case] = ACTIONS(2519), + [anon_sym_default] = ACTIONS(2519), + [anon_sym_while] = ACTIONS(2519), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_for] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2519), + [anon_sym_break] = ACTIONS(2519), + [anon_sym_continue] = ACTIONS(2519), + [anon_sym_goto] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2519), + [anon_sym_compl] = ACTIONS(2519), + [anon_sym_DASH_DASH] = ACTIONS(2521), + [anon_sym_PLUS_PLUS] = ACTIONS(2521), + [anon_sym_sizeof] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2521), + [anon_sym_u_SQUOTE] = ACTIONS(2521), + [anon_sym_U_SQUOTE] = ACTIONS(2521), + [anon_sym_u8_SQUOTE] = ACTIONS(2521), + [anon_sym_SQUOTE] = ACTIONS(2521), + [anon_sym_L_DQUOTE] = ACTIONS(2521), + [anon_sym_u_DQUOTE] = ACTIONS(2521), + [anon_sym_U_DQUOTE] = ACTIONS(2521), + [anon_sym_u8_DQUOTE] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(2521), + [sym_true] = ACTIONS(2519), + [sym_false] = ACTIONS(2519), + [sym_null] = ACTIONS(2519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2519), + [anon_sym_decltype] = ACTIONS(2519), + [anon_sym_virtual] = ACTIONS(2519), + [anon_sym_explicit] = ACTIONS(2519), + [anon_sym_typename] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(2519), + [anon_sym_operator] = ACTIONS(2519), + [anon_sym_try] = ACTIONS(2519), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_throw] = ACTIONS(2519), + [anon_sym_namespace] = ACTIONS(2519), + [anon_sym_using] = ACTIONS(2519), + [anon_sym_static_assert] = ACTIONS(2519), + [anon_sym_concept] = ACTIONS(2519), + [anon_sym_co_return] = ACTIONS(2519), + [anon_sym_co_yield] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2519), + [anon_sym_new] = ACTIONS(2519), + [anon_sym_requires] = ACTIONS(2519), + [sym_this] = ACTIONS(2519), + [sym_nullptr] = ACTIONS(2519), + }, + [602] = { + [ts_builtin_sym_end] = ACTIONS(2513), [sym_identifier] = ACTIONS(2511), [aux_sym_preproc_include_token1] = ACTIONS(2511), [aux_sym_preproc_def_token1] = ACTIONS(2511), @@ -110555,12 +106689,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2511), [anon_sym___vectorcall] = ACTIONS(2511), [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), [anon_sym_LBRACK] = ACTIONS(2511), [anon_sym_static] = ACTIONS(2511), [anon_sym_register] = ACTIONS(2511), [anon_sym_inline] = ACTIONS(2511), [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_input] = ACTIONS(2511), [anon_sym_const] = ACTIONS(2511), [anon_sym_volatile] = ACTIONS(2511), [anon_sym_restrict] = ACTIONS(2511), @@ -110637,344 +106771,4679 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2511), [sym_nullptr] = ACTIONS(2511), }, + [603] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [604] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [605] = { + [ts_builtin_sym_end] = ACTIONS(2413), + [sym_identifier] = ACTIONS(2411), + [aux_sym_preproc_include_token1] = ACTIONS(2411), + [aux_sym_preproc_def_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2411), + [sym_preproc_directive] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym___attribute__] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2413), + [anon_sym___declspec] = ACTIONS(2411), + [anon_sym___based] = ACTIONS(2411), + [anon_sym___cdecl] = ACTIONS(2411), + [anon_sym___clrcall] = ACTIONS(2411), + [anon_sym___stdcall] = ACTIONS(2411), + [anon_sym___fastcall] = ACTIONS(2411), + [anon_sym___thiscall] = ACTIONS(2411), + [anon_sym___vectorcall] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_thread_local] = ACTIONS(2411), + [anon_sym_input] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym__Atomic] = ACTIONS(2411), + [anon_sym_mutable] = ACTIONS(2411), + [anon_sym_constexpr] = ACTIONS(2411), + [anon_sym_constinit] = ACTIONS(2411), + [anon_sym_consteval] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [sym_primitive_type] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_switch] = ACTIONS(2411), + [anon_sym_case] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_goto] = ACTIONS(2411), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_compl] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_sizeof] = ACTIONS(2411), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_L_SQUOTE] = ACTIONS(2413), + [anon_sym_u_SQUOTE] = ACTIONS(2413), + [anon_sym_U_SQUOTE] = ACTIONS(2413), + [anon_sym_u8_SQUOTE] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_L_DQUOTE] = ACTIONS(2413), + [anon_sym_u_DQUOTE] = ACTIONS(2413), + [anon_sym_U_DQUOTE] = ACTIONS(2413), + [anon_sym_u8_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2411), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_virtual] = ACTIONS(2411), + [anon_sym_explicit] = ACTIONS(2411), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2411), + [anon_sym_operator] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_delete] = ACTIONS(2411), + [anon_sym_throw] = ACTIONS(2411), + [anon_sym_namespace] = ACTIONS(2411), + [anon_sym_using] = ACTIONS(2411), + [anon_sym_static_assert] = ACTIONS(2411), + [anon_sym_concept] = ACTIONS(2411), + [anon_sym_co_return] = ACTIONS(2411), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_R_DQUOTE] = ACTIONS(2413), + [anon_sym_LR_DQUOTE] = ACTIONS(2413), + [anon_sym_uR_DQUOTE] = ACTIONS(2413), + [anon_sym_UR_DQUOTE] = ACTIONS(2413), + [anon_sym_u8R_DQUOTE] = ACTIONS(2413), + [anon_sym_co_await] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_requires] = ACTIONS(2411), + [sym_this] = ACTIONS(2411), + [sym_nullptr] = ACTIONS(2411), + }, + [606] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [607] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [608] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [609] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [610] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [611] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [612] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [613] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [614] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [615] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [616] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [617] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [618] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [619] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [620] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [621] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [622] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [623] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [624] = { + [ts_builtin_sym_end] = ACTIONS(2493), + [sym_identifier] = ACTIONS(2491), + [aux_sym_preproc_include_token1] = ACTIONS(2491), + [aux_sym_preproc_def_token1] = ACTIONS(2491), + [aux_sym_preproc_if_token1] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), + [sym_preproc_directive] = ACTIONS(2491), + [anon_sym_LPAREN2] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2493), + [anon_sym_TILDE] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_AMP_AMP] = ACTIONS(2493), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_typedef] = ACTIONS(2491), + [anon_sym_extern] = ACTIONS(2491), + [anon_sym___attribute__] = ACTIONS(2491), + [anon_sym_COLON_COLON] = ACTIONS(2493), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), + [anon_sym___declspec] = ACTIONS(2491), + [anon_sym___based] = ACTIONS(2491), + [anon_sym___cdecl] = ACTIONS(2491), + [anon_sym___clrcall] = ACTIONS(2491), + [anon_sym___stdcall] = ACTIONS(2491), + [anon_sym___fastcall] = ACTIONS(2491), + [anon_sym___thiscall] = ACTIONS(2491), + [anon_sym___vectorcall] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_static] = ACTIONS(2491), + [anon_sym_register] = ACTIONS(2491), + [anon_sym_inline] = ACTIONS(2491), + [anon_sym_thread_local] = ACTIONS(2491), + [anon_sym_input] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_volatile] = ACTIONS(2491), + [anon_sym_restrict] = ACTIONS(2491), + [anon_sym__Atomic] = ACTIONS(2491), + [anon_sym_mutable] = ACTIONS(2491), + [anon_sym_constexpr] = ACTIONS(2491), + [anon_sym_constinit] = ACTIONS(2491), + [anon_sym_consteval] = ACTIONS(2491), + [anon_sym_signed] = ACTIONS(2491), + [anon_sym_unsigned] = ACTIONS(2491), + [anon_sym_long] = ACTIONS(2491), + [anon_sym_short] = ACTIONS(2491), + [sym_primitive_type] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_class] = ACTIONS(2491), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_else] = ACTIONS(2491), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2491), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_while] = ACTIONS(2491), + [anon_sym_do] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_goto] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2491), + [anon_sym_compl] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2493), + [anon_sym_PLUS_PLUS] = ACTIONS(2493), + [anon_sym_sizeof] = ACTIONS(2491), + [sym_number_literal] = ACTIONS(2493), + [anon_sym_L_SQUOTE] = ACTIONS(2493), + [anon_sym_u_SQUOTE] = ACTIONS(2493), + [anon_sym_U_SQUOTE] = ACTIONS(2493), + [anon_sym_u8_SQUOTE] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_L_DQUOTE] = ACTIONS(2493), + [anon_sym_u_DQUOTE] = ACTIONS(2493), + [anon_sym_U_DQUOTE] = ACTIONS(2493), + [anon_sym_u8_DQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2493), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_null] = ACTIONS(2491), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2491), + [anon_sym_decltype] = ACTIONS(2491), + [anon_sym_virtual] = ACTIONS(2491), + [anon_sym_explicit] = ACTIONS(2491), + [anon_sym_typename] = ACTIONS(2491), + [anon_sym_template] = ACTIONS(2491), + [anon_sym_operator] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2491), + [anon_sym_delete] = ACTIONS(2491), + [anon_sym_throw] = ACTIONS(2491), + [anon_sym_namespace] = ACTIONS(2491), + [anon_sym_using] = ACTIONS(2491), + [anon_sym_static_assert] = ACTIONS(2491), + [anon_sym_concept] = ACTIONS(2491), + [anon_sym_co_return] = ACTIONS(2491), + [anon_sym_co_yield] = ACTIONS(2491), + [anon_sym_R_DQUOTE] = ACTIONS(2493), + [anon_sym_LR_DQUOTE] = ACTIONS(2493), + [anon_sym_uR_DQUOTE] = ACTIONS(2493), + [anon_sym_UR_DQUOTE] = ACTIONS(2493), + [anon_sym_u8R_DQUOTE] = ACTIONS(2493), + [anon_sym_co_await] = ACTIONS(2491), + [anon_sym_new] = ACTIONS(2491), + [anon_sym_requires] = ACTIONS(2491), + [sym_this] = ACTIONS(2491), + [sym_nullptr] = ACTIONS(2491), + }, + [625] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [626] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [627] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [628] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [629] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [630] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [631] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [632] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [633] = { + [ts_builtin_sym_end] = ACTIONS(2497), + [sym_identifier] = ACTIONS(2495), + [aux_sym_preproc_include_token1] = ACTIONS(2495), + [aux_sym_preproc_def_token1] = ACTIONS(2495), + [aux_sym_preproc_if_token1] = ACTIONS(2495), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2495), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2495), + [sym_preproc_directive] = ACTIONS(2495), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_PLUS] = ACTIONS(2495), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_AMP_AMP] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_typedef] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym___attribute__] = ACTIONS(2495), + [anon_sym_COLON_COLON] = ACTIONS(2497), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), + [anon_sym___declspec] = ACTIONS(2495), + [anon_sym___based] = ACTIONS(2495), + [anon_sym___cdecl] = ACTIONS(2495), + [anon_sym___clrcall] = ACTIONS(2495), + [anon_sym___stdcall] = ACTIONS(2495), + [anon_sym___fastcall] = ACTIONS(2495), + [anon_sym___thiscall] = ACTIONS(2495), + [anon_sym___vectorcall] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_register] = ACTIONS(2495), + [anon_sym_inline] = ACTIONS(2495), + [anon_sym_thread_local] = ACTIONS(2495), + [anon_sym_input] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_volatile] = ACTIONS(2495), + [anon_sym_restrict] = ACTIONS(2495), + [anon_sym__Atomic] = ACTIONS(2495), + [anon_sym_mutable] = ACTIONS(2495), + [anon_sym_constexpr] = ACTIONS(2495), + [anon_sym_constinit] = ACTIONS(2495), + [anon_sym_consteval] = ACTIONS(2495), + [anon_sym_signed] = ACTIONS(2495), + [anon_sym_unsigned] = ACTIONS(2495), + [anon_sym_long] = ACTIONS(2495), + [anon_sym_short] = ACTIONS(2495), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_class] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_else] = ACTIONS(2495), + [anon_sym_switch] = ACTIONS(2495), + [anon_sym_case] = ACTIONS(2495), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_do] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_goto] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2495), + [anon_sym_compl] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_sizeof] = ACTIONS(2495), + [sym_number_literal] = ACTIONS(2497), + [anon_sym_L_SQUOTE] = ACTIONS(2497), + [anon_sym_u_SQUOTE] = ACTIONS(2497), + [anon_sym_U_SQUOTE] = ACTIONS(2497), + [anon_sym_u8_SQUOTE] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_L_DQUOTE] = ACTIONS(2497), + [anon_sym_u_DQUOTE] = ACTIONS(2497), + [anon_sym_U_DQUOTE] = ACTIONS(2497), + [anon_sym_u8_DQUOTE] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym_true] = ACTIONS(2495), + [sym_false] = ACTIONS(2495), + [sym_null] = ACTIONS(2495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2495), + [anon_sym_decltype] = ACTIONS(2495), + [anon_sym_virtual] = ACTIONS(2495), + [anon_sym_explicit] = ACTIONS(2495), + [anon_sym_typename] = ACTIONS(2495), + [anon_sym_template] = ACTIONS(2495), + [anon_sym_operator] = ACTIONS(2495), + [anon_sym_try] = ACTIONS(2495), + [anon_sym_delete] = ACTIONS(2495), + [anon_sym_throw] = ACTIONS(2495), + [anon_sym_namespace] = ACTIONS(2495), + [anon_sym_using] = ACTIONS(2495), + [anon_sym_static_assert] = ACTIONS(2495), + [anon_sym_concept] = ACTIONS(2495), + [anon_sym_co_return] = ACTIONS(2495), + [anon_sym_co_yield] = ACTIONS(2495), + [anon_sym_R_DQUOTE] = ACTIONS(2497), + [anon_sym_LR_DQUOTE] = ACTIONS(2497), + [anon_sym_uR_DQUOTE] = ACTIONS(2497), + [anon_sym_UR_DQUOTE] = ACTIONS(2497), + [anon_sym_u8R_DQUOTE] = ACTIONS(2497), + [anon_sym_co_await] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2495), + [anon_sym_requires] = ACTIONS(2495), + [sym_this] = ACTIONS(2495), + [sym_nullptr] = ACTIONS(2495), + }, + [634] = { + [ts_builtin_sym_end] = ACTIONS(2563), + [sym_identifier] = ACTIONS(2561), + [aux_sym_preproc_include_token1] = ACTIONS(2561), + [aux_sym_preproc_def_token1] = ACTIONS(2561), + [aux_sym_preproc_if_token1] = ACTIONS(2561), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2561), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2561), + [sym_preproc_directive] = ACTIONS(2561), + [anon_sym_LPAREN2] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_PLUS] = ACTIONS(2561), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_typedef] = ACTIONS(2561), + [anon_sym_extern] = ACTIONS(2561), + [anon_sym___attribute__] = ACTIONS(2561), + [anon_sym_COLON_COLON] = ACTIONS(2563), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), + [anon_sym___declspec] = ACTIONS(2561), + [anon_sym___based] = ACTIONS(2561), + [anon_sym___cdecl] = ACTIONS(2561), + [anon_sym___clrcall] = ACTIONS(2561), + [anon_sym___stdcall] = ACTIONS(2561), + [anon_sym___fastcall] = ACTIONS(2561), + [anon_sym___thiscall] = ACTIONS(2561), + [anon_sym___vectorcall] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2561), + [anon_sym_register] = ACTIONS(2561), + [anon_sym_inline] = ACTIONS(2561), + [anon_sym_thread_local] = ACTIONS(2561), + [anon_sym_input] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [anon_sym_volatile] = ACTIONS(2561), + [anon_sym_restrict] = ACTIONS(2561), + [anon_sym__Atomic] = ACTIONS(2561), + [anon_sym_mutable] = ACTIONS(2561), + [anon_sym_constexpr] = ACTIONS(2561), + [anon_sym_constinit] = ACTIONS(2561), + [anon_sym_consteval] = ACTIONS(2561), + [anon_sym_signed] = ACTIONS(2561), + [anon_sym_unsigned] = ACTIONS(2561), + [anon_sym_long] = ACTIONS(2561), + [anon_sym_short] = ACTIONS(2561), + [sym_primitive_type] = ACTIONS(2561), + [anon_sym_enum] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2561), + [anon_sym_struct] = ACTIONS(2561), + [anon_sym_union] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2561), + [anon_sym_switch] = ACTIONS(2561), + [anon_sym_case] = ACTIONS(2561), + [anon_sym_default] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [anon_sym_do] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), + [anon_sym_goto] = ACTIONS(2561), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_compl] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_sizeof] = ACTIONS(2561), + [sym_number_literal] = ACTIONS(2563), + [anon_sym_L_SQUOTE] = ACTIONS(2563), + [anon_sym_u_SQUOTE] = ACTIONS(2563), + [anon_sym_U_SQUOTE] = ACTIONS(2563), + [anon_sym_u8_SQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE] = ACTIONS(2563), + [anon_sym_L_DQUOTE] = ACTIONS(2563), + [anon_sym_u_DQUOTE] = ACTIONS(2563), + [anon_sym_U_DQUOTE] = ACTIONS(2563), + [anon_sym_u8_DQUOTE] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2563), + [sym_true] = ACTIONS(2561), + [sym_false] = ACTIONS(2561), + [sym_null] = ACTIONS(2561), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2561), + [anon_sym_decltype] = ACTIONS(2561), + [anon_sym_virtual] = ACTIONS(2561), + [anon_sym_explicit] = ACTIONS(2561), + [anon_sym_typename] = ACTIONS(2561), + [anon_sym_template] = ACTIONS(2561), + [anon_sym_operator] = ACTIONS(2561), + [anon_sym_try] = ACTIONS(2561), + [anon_sym_delete] = ACTIONS(2561), + [anon_sym_throw] = ACTIONS(2561), + [anon_sym_namespace] = ACTIONS(2561), + [anon_sym_using] = ACTIONS(2561), + [anon_sym_static_assert] = ACTIONS(2561), + [anon_sym_concept] = ACTIONS(2561), + [anon_sym_co_return] = ACTIONS(2561), + [anon_sym_co_yield] = ACTIONS(2561), + [anon_sym_R_DQUOTE] = ACTIONS(2563), + [anon_sym_LR_DQUOTE] = ACTIONS(2563), + [anon_sym_uR_DQUOTE] = ACTIONS(2563), + [anon_sym_UR_DQUOTE] = ACTIONS(2563), + [anon_sym_u8R_DQUOTE] = ACTIONS(2563), + [anon_sym_co_await] = ACTIONS(2561), + [anon_sym_new] = ACTIONS(2561), + [anon_sym_requires] = ACTIONS(2561), + [sym_this] = ACTIONS(2561), + [sym_nullptr] = ACTIONS(2561), + }, + [635] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [636] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [637] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [638] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [639] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [640] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, [641] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, [642] = { - [sym_identifier] = ACTIONS(2615), - [aux_sym_preproc_include_token1] = ACTIONS(2615), - [aux_sym_preproc_def_token1] = ACTIONS(2615), - [aux_sym_preproc_if_token1] = ACTIONS(2615), - [aux_sym_preproc_if_token2] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), - [sym_preproc_directive] = ACTIONS(2615), - [anon_sym_LPAREN2] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2615), - [anon_sym_PLUS] = ACTIONS(2615), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_typedef] = ACTIONS(2615), - [anon_sym_extern] = ACTIONS(2615), - [anon_sym___attribute__] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), - [anon_sym___declspec] = ACTIONS(2615), - [anon_sym___based] = ACTIONS(2615), - [anon_sym___cdecl] = ACTIONS(2615), - [anon_sym___clrcall] = ACTIONS(2615), - [anon_sym___stdcall] = ACTIONS(2615), - [anon_sym___fastcall] = ACTIONS(2615), - [anon_sym___thiscall] = ACTIONS(2615), - [anon_sym___vectorcall] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_static] = ACTIONS(2615), - [anon_sym_register] = ACTIONS(2615), - [anon_sym_inline] = ACTIONS(2615), - [anon_sym_thread_local] = ACTIONS(2615), - [anon_sym_const] = ACTIONS(2615), - [anon_sym_volatile] = ACTIONS(2615), - [anon_sym_restrict] = ACTIONS(2615), - [anon_sym__Atomic] = ACTIONS(2615), - [anon_sym_mutable] = ACTIONS(2615), - [anon_sym_constexpr] = ACTIONS(2615), - [anon_sym_constinit] = ACTIONS(2615), - [anon_sym_consteval] = ACTIONS(2615), - [anon_sym_signed] = ACTIONS(2615), - [anon_sym_unsigned] = ACTIONS(2615), - [anon_sym_long] = ACTIONS(2615), - [anon_sym_short] = ACTIONS(2615), - [sym_primitive_type] = ACTIONS(2615), - [anon_sym_enum] = ACTIONS(2615), - [anon_sym_class] = ACTIONS(2615), - [anon_sym_struct] = ACTIONS(2615), - [anon_sym_union] = ACTIONS(2615), - [anon_sym_if] = ACTIONS(2615), - [anon_sym_else] = ACTIONS(2615), - [anon_sym_switch] = ACTIONS(2615), - [anon_sym_case] = ACTIONS(2615), - [anon_sym_default] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2615), - [anon_sym_do] = ACTIONS(2615), - [anon_sym_for] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_goto] = ACTIONS(2615), - [anon_sym_not] = ACTIONS(2615), - [anon_sym_compl] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_sizeof] = ACTIONS(2615), - [sym_number_literal] = ACTIONS(2617), - [anon_sym_L_SQUOTE] = ACTIONS(2617), - [anon_sym_u_SQUOTE] = ACTIONS(2617), - [anon_sym_U_SQUOTE] = ACTIONS(2617), - [anon_sym_u8_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_L_DQUOTE] = ACTIONS(2617), - [anon_sym_u_DQUOTE] = ACTIONS(2617), - [anon_sym_U_DQUOTE] = ACTIONS(2617), - [anon_sym_u8_DQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [sym_true] = ACTIONS(2615), - [sym_false] = ACTIONS(2615), - [sym_null] = ACTIONS(2615), + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2615), - [anon_sym_decltype] = ACTIONS(2615), - [anon_sym_virtual] = ACTIONS(2615), - [anon_sym_explicit] = ACTIONS(2615), - [anon_sym_typename] = ACTIONS(2615), - [anon_sym_template] = ACTIONS(2615), - [anon_sym_operator] = ACTIONS(2615), - [anon_sym_try] = ACTIONS(2615), - [anon_sym_delete] = ACTIONS(2615), - [anon_sym_throw] = ACTIONS(2615), - [anon_sym_namespace] = ACTIONS(2615), - [anon_sym_using] = ACTIONS(2615), - [anon_sym_static_assert] = ACTIONS(2615), - [anon_sym_concept] = ACTIONS(2615), - [anon_sym_co_return] = ACTIONS(2615), - [anon_sym_co_yield] = ACTIONS(2615), - [anon_sym_R_DQUOTE] = ACTIONS(2617), - [anon_sym_LR_DQUOTE] = ACTIONS(2617), - [anon_sym_uR_DQUOTE] = ACTIONS(2617), - [anon_sym_UR_DQUOTE] = ACTIONS(2617), - [anon_sym_u8R_DQUOTE] = ACTIONS(2617), - [anon_sym_co_await] = ACTIONS(2615), - [anon_sym_new] = ACTIONS(2615), - [anon_sym_requires] = ACTIONS(2615), - [sym_this] = ACTIONS(2615), - [sym_nullptr] = ACTIONS(2615), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, [643] = { - [sym_identifier] = ACTIONS(2611), - [aux_sym_preproc_include_token1] = ACTIONS(2611), - [aux_sym_preproc_def_token1] = ACTIONS(2611), - [aux_sym_preproc_if_token1] = ACTIONS(2611), - [aux_sym_preproc_if_token2] = ACTIONS(2611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), - [sym_preproc_directive] = ACTIONS(2611), - [anon_sym_LPAREN2] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2611), - [anon_sym_PLUS] = ACTIONS(2611), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_typedef] = ACTIONS(2611), - [anon_sym_extern] = ACTIONS(2611), - [anon_sym___attribute__] = ACTIONS(2611), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), - [anon_sym___declspec] = ACTIONS(2611), - [anon_sym___based] = ACTIONS(2611), - [anon_sym___cdecl] = ACTIONS(2611), - [anon_sym___clrcall] = ACTIONS(2611), - [anon_sym___stdcall] = ACTIONS(2611), - [anon_sym___fastcall] = ACTIONS(2611), - [anon_sym___thiscall] = ACTIONS(2611), - [anon_sym___vectorcall] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2611), - [anon_sym_static] = ACTIONS(2611), - [anon_sym_register] = ACTIONS(2611), - [anon_sym_inline] = ACTIONS(2611), - [anon_sym_thread_local] = ACTIONS(2611), - [anon_sym_const] = ACTIONS(2611), - [anon_sym_volatile] = ACTIONS(2611), - [anon_sym_restrict] = ACTIONS(2611), - [anon_sym__Atomic] = ACTIONS(2611), - [anon_sym_mutable] = ACTIONS(2611), - [anon_sym_constexpr] = ACTIONS(2611), - [anon_sym_constinit] = ACTIONS(2611), - [anon_sym_consteval] = ACTIONS(2611), - [anon_sym_signed] = ACTIONS(2611), - [anon_sym_unsigned] = ACTIONS(2611), - [anon_sym_long] = ACTIONS(2611), - [anon_sym_short] = ACTIONS(2611), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_enum] = ACTIONS(2611), - [anon_sym_class] = ACTIONS(2611), - [anon_sym_struct] = ACTIONS(2611), - [anon_sym_union] = ACTIONS(2611), - [anon_sym_if] = ACTIONS(2611), - [anon_sym_else] = ACTIONS(2611), - [anon_sym_switch] = ACTIONS(2611), - [anon_sym_case] = ACTIONS(2611), - [anon_sym_default] = ACTIONS(2611), - [anon_sym_while] = ACTIONS(2611), - [anon_sym_do] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2611), - [anon_sym_break] = ACTIONS(2611), - [anon_sym_continue] = ACTIONS(2611), - [anon_sym_goto] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(2611), - [anon_sym_compl] = ACTIONS(2611), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_sizeof] = ACTIONS(2611), - [sym_number_literal] = ACTIONS(2613), - [anon_sym_L_SQUOTE] = ACTIONS(2613), - [anon_sym_u_SQUOTE] = ACTIONS(2613), - [anon_sym_U_SQUOTE] = ACTIONS(2613), - [anon_sym_u8_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_L_DQUOTE] = ACTIONS(2613), - [anon_sym_u_DQUOTE] = ACTIONS(2613), - [anon_sym_U_DQUOTE] = ACTIONS(2613), - [anon_sym_u8_DQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [sym_true] = ACTIONS(2611), - [sym_false] = ACTIONS(2611), - [sym_null] = ACTIONS(2611), + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2611), - [anon_sym_decltype] = ACTIONS(2611), - [anon_sym_virtual] = ACTIONS(2611), - [anon_sym_explicit] = ACTIONS(2611), - [anon_sym_typename] = ACTIONS(2611), - [anon_sym_template] = ACTIONS(2611), - [anon_sym_operator] = ACTIONS(2611), - [anon_sym_try] = ACTIONS(2611), - [anon_sym_delete] = ACTIONS(2611), - [anon_sym_throw] = ACTIONS(2611), - [anon_sym_namespace] = ACTIONS(2611), - [anon_sym_using] = ACTIONS(2611), - [anon_sym_static_assert] = ACTIONS(2611), - [anon_sym_concept] = ACTIONS(2611), - [anon_sym_co_return] = ACTIONS(2611), - [anon_sym_co_yield] = ACTIONS(2611), - [anon_sym_R_DQUOTE] = ACTIONS(2613), - [anon_sym_LR_DQUOTE] = ACTIONS(2613), - [anon_sym_uR_DQUOTE] = ACTIONS(2613), - [anon_sym_UR_DQUOTE] = ACTIONS(2613), - [anon_sym_u8R_DQUOTE] = ACTIONS(2613), - [anon_sym_co_await] = ACTIONS(2611), - [anon_sym_new] = ACTIONS(2611), - [anon_sym_requires] = ACTIONS(2611), - [sym_this] = ACTIONS(2611), - [sym_nullptr] = ACTIONS(2611), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, [644] = { [ts_builtin_sym_end] = ACTIONS(2397), @@ -111013,6 +111482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2395), [anon_sym_inline] = ACTIONS(2395), [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), [anon_sym_const] = ACTIONS(2395), [anon_sym_volatile] = ACTIONS(2395), [anon_sym_restrict] = ACTIONS(2395), @@ -111090,571 +111560,804 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2395), }, [645] = { - [sym_identifier] = ACTIONS(2555), - [aux_sym_preproc_include_token1] = ACTIONS(2555), - [aux_sym_preproc_def_token1] = ACTIONS(2555), - [aux_sym_preproc_if_token1] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), - [sym_preproc_directive] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2557), - [anon_sym_TILDE] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_AMP_AMP] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2557), - [anon_sym_typedef] = ACTIONS(2555), - [anon_sym_extern] = ACTIONS(2555), - [anon_sym___attribute__] = ACTIONS(2555), - [anon_sym_COLON_COLON] = ACTIONS(2557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), - [anon_sym___declspec] = ACTIONS(2555), - [anon_sym___based] = ACTIONS(2555), - [anon_sym___cdecl] = ACTIONS(2555), - [anon_sym___clrcall] = ACTIONS(2555), - [anon_sym___stdcall] = ACTIONS(2555), - [anon_sym___fastcall] = ACTIONS(2555), - [anon_sym___thiscall] = ACTIONS(2555), - [anon_sym___vectorcall] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_RBRACE] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2555), - [anon_sym_register] = ACTIONS(2555), - [anon_sym_inline] = ACTIONS(2555), - [anon_sym_thread_local] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2555), - [anon_sym_volatile] = ACTIONS(2555), - [anon_sym_restrict] = ACTIONS(2555), - [anon_sym__Atomic] = ACTIONS(2555), - [anon_sym_mutable] = ACTIONS(2555), - [anon_sym_constexpr] = ACTIONS(2555), - [anon_sym_constinit] = ACTIONS(2555), - [anon_sym_consteval] = ACTIONS(2555), - [anon_sym_signed] = ACTIONS(2555), - [anon_sym_unsigned] = ACTIONS(2555), - [anon_sym_long] = ACTIONS(2555), - [anon_sym_short] = ACTIONS(2555), - [sym_primitive_type] = ACTIONS(2555), - [anon_sym_enum] = ACTIONS(2555), - [anon_sym_class] = ACTIONS(2555), - [anon_sym_struct] = ACTIONS(2555), - [anon_sym_union] = ACTIONS(2555), - [anon_sym_if] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2555), - [anon_sym_switch] = ACTIONS(2555), - [anon_sym_case] = ACTIONS(2555), - [anon_sym_default] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2555), - [anon_sym_do] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_break] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2555), - [anon_sym_goto] = ACTIONS(2555), - [anon_sym_not] = ACTIONS(2555), - [anon_sym_compl] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2557), - [anon_sym_PLUS_PLUS] = ACTIONS(2557), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2557), - [anon_sym_u_SQUOTE] = ACTIONS(2557), - [anon_sym_U_SQUOTE] = ACTIONS(2557), - [anon_sym_u8_SQUOTE] = ACTIONS(2557), - [anon_sym_SQUOTE] = ACTIONS(2557), - [anon_sym_L_DQUOTE] = ACTIONS(2557), - [anon_sym_u_DQUOTE] = ACTIONS(2557), - [anon_sym_U_DQUOTE] = ACTIONS(2557), - [anon_sym_u8_DQUOTE] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(2557), - [sym_true] = ACTIONS(2555), - [sym_false] = ACTIONS(2555), - [sym_null] = ACTIONS(2555), + [ts_builtin_sym_end] = ACTIONS(2489), + [sym_identifier] = ACTIONS(2487), + [aux_sym_preproc_include_token1] = ACTIONS(2487), + [aux_sym_preproc_def_token1] = ACTIONS(2487), + [aux_sym_preproc_if_token1] = ACTIONS(2487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2487), + [sym_preproc_directive] = ACTIONS(2487), + [anon_sym_LPAREN2] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_AMP_AMP] = ACTIONS(2489), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_typedef] = ACTIONS(2487), + [anon_sym_extern] = ACTIONS(2487), + [anon_sym___attribute__] = ACTIONS(2487), + [anon_sym_COLON_COLON] = ACTIONS(2489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), + [anon_sym___declspec] = ACTIONS(2487), + [anon_sym___based] = ACTIONS(2487), + [anon_sym___cdecl] = ACTIONS(2487), + [anon_sym___clrcall] = ACTIONS(2487), + [anon_sym___stdcall] = ACTIONS(2487), + [anon_sym___fastcall] = ACTIONS(2487), + [anon_sym___thiscall] = ACTIONS(2487), + [anon_sym___vectorcall] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_register] = ACTIONS(2487), + [anon_sym_inline] = ACTIONS(2487), + [anon_sym_thread_local] = ACTIONS(2487), + [anon_sym_input] = ACTIONS(2487), + [anon_sym_const] = ACTIONS(2487), + [anon_sym_volatile] = ACTIONS(2487), + [anon_sym_restrict] = ACTIONS(2487), + [anon_sym__Atomic] = ACTIONS(2487), + [anon_sym_mutable] = ACTIONS(2487), + [anon_sym_constexpr] = ACTIONS(2487), + [anon_sym_constinit] = ACTIONS(2487), + [anon_sym_consteval] = ACTIONS(2487), + [anon_sym_signed] = ACTIONS(2487), + [anon_sym_unsigned] = ACTIONS(2487), + [anon_sym_long] = ACTIONS(2487), + [anon_sym_short] = ACTIONS(2487), + [sym_primitive_type] = ACTIONS(2487), + [anon_sym_enum] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_struct] = ACTIONS(2487), + [anon_sym_union] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2487), + [anon_sym_switch] = ACTIONS(2487), + [anon_sym_case] = ACTIONS(2487), + [anon_sym_default] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_do] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_goto] = ACTIONS(2487), + [anon_sym_not] = ACTIONS(2487), + [anon_sym_compl] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2489), + [anon_sym_sizeof] = ACTIONS(2487), + [sym_number_literal] = ACTIONS(2489), + [anon_sym_L_SQUOTE] = ACTIONS(2489), + [anon_sym_u_SQUOTE] = ACTIONS(2489), + [anon_sym_U_SQUOTE] = ACTIONS(2489), + [anon_sym_u8_SQUOTE] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(2489), + [anon_sym_L_DQUOTE] = ACTIONS(2489), + [anon_sym_u_DQUOTE] = ACTIONS(2489), + [anon_sym_U_DQUOTE] = ACTIONS(2489), + [anon_sym_u8_DQUOTE] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_null] = ACTIONS(2487), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2555), - [anon_sym_decltype] = ACTIONS(2555), - [anon_sym_virtual] = ACTIONS(2555), - [anon_sym_explicit] = ACTIONS(2555), - [anon_sym_typename] = ACTIONS(2555), - [anon_sym_template] = ACTIONS(2555), - [anon_sym_operator] = ACTIONS(2555), - [anon_sym_try] = ACTIONS(2555), - [anon_sym_delete] = ACTIONS(2555), - [anon_sym_throw] = ACTIONS(2555), - [anon_sym_namespace] = ACTIONS(2555), - [anon_sym_using] = ACTIONS(2555), - [anon_sym_static_assert] = ACTIONS(2555), - [anon_sym_concept] = ACTIONS(2555), - [anon_sym_co_return] = ACTIONS(2555), - [anon_sym_co_yield] = ACTIONS(2555), - [anon_sym_R_DQUOTE] = ACTIONS(2557), - [anon_sym_LR_DQUOTE] = ACTIONS(2557), - [anon_sym_uR_DQUOTE] = ACTIONS(2557), - [anon_sym_UR_DQUOTE] = ACTIONS(2557), - [anon_sym_u8R_DQUOTE] = ACTIONS(2557), - [anon_sym_co_await] = ACTIONS(2555), - [anon_sym_new] = ACTIONS(2555), - [anon_sym_requires] = ACTIONS(2555), - [sym_this] = ACTIONS(2555), - [sym_nullptr] = ACTIONS(2555), + [sym_auto] = ACTIONS(2487), + [anon_sym_decltype] = ACTIONS(2487), + [anon_sym_virtual] = ACTIONS(2487), + [anon_sym_explicit] = ACTIONS(2487), + [anon_sym_typename] = ACTIONS(2487), + [anon_sym_template] = ACTIONS(2487), + [anon_sym_operator] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [anon_sym_delete] = ACTIONS(2487), + [anon_sym_throw] = ACTIONS(2487), + [anon_sym_namespace] = ACTIONS(2487), + [anon_sym_using] = ACTIONS(2487), + [anon_sym_static_assert] = ACTIONS(2487), + [anon_sym_concept] = ACTIONS(2487), + [anon_sym_co_return] = ACTIONS(2487), + [anon_sym_co_yield] = ACTIONS(2487), + [anon_sym_R_DQUOTE] = ACTIONS(2489), + [anon_sym_LR_DQUOTE] = ACTIONS(2489), + [anon_sym_uR_DQUOTE] = ACTIONS(2489), + [anon_sym_UR_DQUOTE] = ACTIONS(2489), + [anon_sym_u8R_DQUOTE] = ACTIONS(2489), + [anon_sym_co_await] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_requires] = ACTIONS(2487), + [sym_this] = ACTIONS(2487), + [sym_nullptr] = ACTIONS(2487), }, [646] = { - [sym_identifier] = ACTIONS(2555), - [aux_sym_preproc_include_token1] = ACTIONS(2555), - [aux_sym_preproc_def_token1] = ACTIONS(2555), - [aux_sym_preproc_if_token1] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), - [sym_preproc_directive] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2557), - [anon_sym_TILDE] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_AMP_AMP] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2557), - [anon_sym_typedef] = ACTIONS(2555), - [anon_sym_extern] = ACTIONS(2555), - [anon_sym___attribute__] = ACTIONS(2555), - [anon_sym_COLON_COLON] = ACTIONS(2557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), - [anon_sym___declspec] = ACTIONS(2555), - [anon_sym___based] = ACTIONS(2555), - [anon_sym___cdecl] = ACTIONS(2555), - [anon_sym___clrcall] = ACTIONS(2555), - [anon_sym___stdcall] = ACTIONS(2555), - [anon_sym___fastcall] = ACTIONS(2555), - [anon_sym___thiscall] = ACTIONS(2555), - [anon_sym___vectorcall] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_RBRACE] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2555), - [anon_sym_register] = ACTIONS(2555), - [anon_sym_inline] = ACTIONS(2555), - [anon_sym_thread_local] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2555), - [anon_sym_volatile] = ACTIONS(2555), - [anon_sym_restrict] = ACTIONS(2555), - [anon_sym__Atomic] = ACTIONS(2555), - [anon_sym_mutable] = ACTIONS(2555), - [anon_sym_constexpr] = ACTIONS(2555), - [anon_sym_constinit] = ACTIONS(2555), - [anon_sym_consteval] = ACTIONS(2555), - [anon_sym_signed] = ACTIONS(2555), - [anon_sym_unsigned] = ACTIONS(2555), - [anon_sym_long] = ACTIONS(2555), - [anon_sym_short] = ACTIONS(2555), - [sym_primitive_type] = ACTIONS(2555), - [anon_sym_enum] = ACTIONS(2555), - [anon_sym_class] = ACTIONS(2555), - [anon_sym_struct] = ACTIONS(2555), - [anon_sym_union] = ACTIONS(2555), - [anon_sym_if] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2555), - [anon_sym_switch] = ACTIONS(2555), - [anon_sym_case] = ACTIONS(2555), - [anon_sym_default] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2555), - [anon_sym_do] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_break] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2555), - [anon_sym_goto] = ACTIONS(2555), - [anon_sym_not] = ACTIONS(2555), - [anon_sym_compl] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2557), - [anon_sym_PLUS_PLUS] = ACTIONS(2557), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2557), - [anon_sym_u_SQUOTE] = ACTIONS(2557), - [anon_sym_U_SQUOTE] = ACTIONS(2557), - [anon_sym_u8_SQUOTE] = ACTIONS(2557), - [anon_sym_SQUOTE] = ACTIONS(2557), - [anon_sym_L_DQUOTE] = ACTIONS(2557), - [anon_sym_u_DQUOTE] = ACTIONS(2557), - [anon_sym_U_DQUOTE] = ACTIONS(2557), - [anon_sym_u8_DQUOTE] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(2557), - [sym_true] = ACTIONS(2555), - [sym_false] = ACTIONS(2555), - [sym_null] = ACTIONS(2555), + [ts_builtin_sym_end] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2483), + [aux_sym_preproc_include_token1] = ACTIONS(2483), + [aux_sym_preproc_def_token1] = ACTIONS(2483), + [aux_sym_preproc_if_token1] = ACTIONS(2483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), + [sym_preproc_directive] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_PLUS] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_AMP_AMP] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_typedef] = ACTIONS(2483), + [anon_sym_extern] = ACTIONS(2483), + [anon_sym___attribute__] = ACTIONS(2483), + [anon_sym_COLON_COLON] = ACTIONS(2485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), + [anon_sym___declspec] = ACTIONS(2483), + [anon_sym___based] = ACTIONS(2483), + [anon_sym___cdecl] = ACTIONS(2483), + [anon_sym___clrcall] = ACTIONS(2483), + [anon_sym___stdcall] = ACTIONS(2483), + [anon_sym___fastcall] = ACTIONS(2483), + [anon_sym___thiscall] = ACTIONS(2483), + [anon_sym___vectorcall] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_static] = ACTIONS(2483), + [anon_sym_register] = ACTIONS(2483), + [anon_sym_inline] = ACTIONS(2483), + [anon_sym_thread_local] = ACTIONS(2483), + [anon_sym_input] = ACTIONS(2483), + [anon_sym_const] = ACTIONS(2483), + [anon_sym_volatile] = ACTIONS(2483), + [anon_sym_restrict] = ACTIONS(2483), + [anon_sym__Atomic] = ACTIONS(2483), + [anon_sym_mutable] = ACTIONS(2483), + [anon_sym_constexpr] = ACTIONS(2483), + [anon_sym_constinit] = ACTIONS(2483), + [anon_sym_consteval] = ACTIONS(2483), + [anon_sym_signed] = ACTIONS(2483), + [anon_sym_unsigned] = ACTIONS(2483), + [anon_sym_long] = ACTIONS(2483), + [anon_sym_short] = ACTIONS(2483), + [sym_primitive_type] = ACTIONS(2483), + [anon_sym_enum] = ACTIONS(2483), + [anon_sym_class] = ACTIONS(2483), + [anon_sym_struct] = ACTIONS(2483), + [anon_sym_union] = ACTIONS(2483), + [anon_sym_if] = ACTIONS(2483), + [anon_sym_else] = ACTIONS(2483), + [anon_sym_switch] = ACTIONS(2483), + [anon_sym_case] = ACTIONS(2483), + [anon_sym_default] = ACTIONS(2483), + [anon_sym_while] = ACTIONS(2483), + [anon_sym_do] = ACTIONS(2483), + [anon_sym_for] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(2483), + [anon_sym_continue] = ACTIONS(2483), + [anon_sym_goto] = ACTIONS(2483), + [anon_sym_not] = ACTIONS(2483), + [anon_sym_compl] = ACTIONS(2483), + [anon_sym_DASH_DASH] = ACTIONS(2485), + [anon_sym_PLUS_PLUS] = ACTIONS(2485), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_number_literal] = ACTIONS(2485), + [anon_sym_L_SQUOTE] = ACTIONS(2485), + [anon_sym_u_SQUOTE] = ACTIONS(2485), + [anon_sym_U_SQUOTE] = ACTIONS(2485), + [anon_sym_u8_SQUOTE] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_L_DQUOTE] = ACTIONS(2485), + [anon_sym_u_DQUOTE] = ACTIONS(2485), + [anon_sym_U_DQUOTE] = ACTIONS(2485), + [anon_sym_u8_DQUOTE] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2485), + [sym_true] = ACTIONS(2483), + [sym_false] = ACTIONS(2483), + [sym_null] = ACTIONS(2483), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2555), - [anon_sym_decltype] = ACTIONS(2555), - [anon_sym_virtual] = ACTIONS(2555), - [anon_sym_explicit] = ACTIONS(2555), - [anon_sym_typename] = ACTIONS(2555), - [anon_sym_template] = ACTIONS(2555), - [anon_sym_operator] = ACTIONS(2555), - [anon_sym_try] = ACTIONS(2555), - [anon_sym_delete] = ACTIONS(2555), - [anon_sym_throw] = ACTIONS(2555), - [anon_sym_namespace] = ACTIONS(2555), - [anon_sym_using] = ACTIONS(2555), - [anon_sym_static_assert] = ACTIONS(2555), - [anon_sym_concept] = ACTIONS(2555), - [anon_sym_co_return] = ACTIONS(2555), - [anon_sym_co_yield] = ACTIONS(2555), - [anon_sym_R_DQUOTE] = ACTIONS(2557), - [anon_sym_LR_DQUOTE] = ACTIONS(2557), - [anon_sym_uR_DQUOTE] = ACTIONS(2557), - [anon_sym_UR_DQUOTE] = ACTIONS(2557), - [anon_sym_u8R_DQUOTE] = ACTIONS(2557), - [anon_sym_co_await] = ACTIONS(2555), - [anon_sym_new] = ACTIONS(2555), - [anon_sym_requires] = ACTIONS(2555), - [sym_this] = ACTIONS(2555), - [sym_nullptr] = ACTIONS(2555), + [sym_auto] = ACTIONS(2483), + [anon_sym_decltype] = ACTIONS(2483), + [anon_sym_virtual] = ACTIONS(2483), + [anon_sym_explicit] = ACTIONS(2483), + [anon_sym_typename] = ACTIONS(2483), + [anon_sym_template] = ACTIONS(2483), + [anon_sym_operator] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2483), + [anon_sym_delete] = ACTIONS(2483), + [anon_sym_throw] = ACTIONS(2483), + [anon_sym_namespace] = ACTIONS(2483), + [anon_sym_using] = ACTIONS(2483), + [anon_sym_static_assert] = ACTIONS(2483), + [anon_sym_concept] = ACTIONS(2483), + [anon_sym_co_return] = ACTIONS(2483), + [anon_sym_co_yield] = ACTIONS(2483), + [anon_sym_R_DQUOTE] = ACTIONS(2485), + [anon_sym_LR_DQUOTE] = ACTIONS(2485), + [anon_sym_uR_DQUOTE] = ACTIONS(2485), + [anon_sym_UR_DQUOTE] = ACTIONS(2485), + [anon_sym_u8R_DQUOTE] = ACTIONS(2485), + [anon_sym_co_await] = ACTIONS(2483), + [anon_sym_new] = ACTIONS(2483), + [anon_sym_requires] = ACTIONS(2483), + [sym_this] = ACTIONS(2483), + [sym_nullptr] = ACTIONS(2483), }, [647] = { - [sym_identifier] = ACTIONS(2337), - [aux_sym_preproc_include_token1] = ACTIONS(2337), - [aux_sym_preproc_def_token1] = ACTIONS(2337), - [anon_sym_COMMA] = ACTIONS(2547), - [aux_sym_preproc_if_token1] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), - [sym_preproc_directive] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2335), - [anon_sym_AMP_AMP] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_typedef] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym___attribute__] = ACTIONS(2337), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), - [anon_sym___declspec] = ACTIONS(2337), - [anon_sym___based] = ACTIONS(2337), - [anon_sym___cdecl] = ACTIONS(2337), - [anon_sym___clrcall] = ACTIONS(2337), - [anon_sym___stdcall] = ACTIONS(2337), - [anon_sym___fastcall] = ACTIONS(2337), - [anon_sym___thiscall] = ACTIONS(2337), - [anon_sym___vectorcall] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_inline] = ACTIONS(2337), - [anon_sym_thread_local] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_volatile] = ACTIONS(2337), - [anon_sym_restrict] = ACTIONS(2337), - [anon_sym__Atomic] = ACTIONS(2337), - [anon_sym_mutable] = ACTIONS(2337), - [anon_sym_constexpr] = ACTIONS(2337), - [anon_sym_constinit] = ACTIONS(2337), - [anon_sym_consteval] = ACTIONS(2337), - [anon_sym_signed] = ACTIONS(2337), - [anon_sym_unsigned] = ACTIONS(2337), - [anon_sym_long] = ACTIONS(2337), - [anon_sym_short] = ACTIONS(2337), - [sym_primitive_type] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2337), - [anon_sym_union] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_case] = ACTIONS(2337), - [anon_sym_default] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_goto] = ACTIONS(2337), - [anon_sym_not] = ACTIONS(2337), - [anon_sym_compl] = ACTIONS(2337), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_sizeof] = ACTIONS(2337), - [sym_number_literal] = ACTIONS(2335), - [anon_sym_L_SQUOTE] = ACTIONS(2335), - [anon_sym_u_SQUOTE] = ACTIONS(2335), - [anon_sym_U_SQUOTE] = ACTIONS(2335), - [anon_sym_u8_SQUOTE] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_L_DQUOTE] = ACTIONS(2335), - [anon_sym_u_DQUOTE] = ACTIONS(2335), - [anon_sym_U_DQUOTE] = ACTIONS(2335), - [anon_sym_u8_DQUOTE] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_true] = ACTIONS(2337), - [sym_false] = ACTIONS(2337), - [sym_null] = ACTIONS(2337), + [sym_identifier] = ACTIONS(2539), + [aux_sym_preproc_include_token1] = ACTIONS(2539), + [aux_sym_preproc_def_token1] = ACTIONS(2539), + [aux_sym_preproc_if_token1] = ACTIONS(2539), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2539), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2539), + [sym_preproc_directive] = ACTIONS(2539), + [anon_sym_LPAREN2] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_PLUS] = ACTIONS(2539), + [anon_sym_STAR] = ACTIONS(2541), + [anon_sym_AMP_AMP] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym___attribute__] = ACTIONS(2539), + [anon_sym_COLON_COLON] = ACTIONS(2541), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2541), + [anon_sym___declspec] = ACTIONS(2539), + [anon_sym___based] = ACTIONS(2539), + [anon_sym___cdecl] = ACTIONS(2539), + [anon_sym___clrcall] = ACTIONS(2539), + [anon_sym___stdcall] = ACTIONS(2539), + [anon_sym___fastcall] = ACTIONS(2539), + [anon_sym___thiscall] = ACTIONS(2539), + [anon_sym___vectorcall] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_RBRACE] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_register] = ACTIONS(2539), + [anon_sym_inline] = ACTIONS(2539), + [anon_sym_thread_local] = ACTIONS(2539), + [anon_sym_input] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_volatile] = ACTIONS(2539), + [anon_sym_restrict] = ACTIONS(2539), + [anon_sym__Atomic] = ACTIONS(2539), + [anon_sym_mutable] = ACTIONS(2539), + [anon_sym_constexpr] = ACTIONS(2539), + [anon_sym_constinit] = ACTIONS(2539), + [anon_sym_consteval] = ACTIONS(2539), + [anon_sym_signed] = ACTIONS(2539), + [anon_sym_unsigned] = ACTIONS(2539), + [anon_sym_long] = ACTIONS(2539), + [anon_sym_short] = ACTIONS(2539), + [sym_primitive_type] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), + [anon_sym_class] = ACTIONS(2539), + [anon_sym_struct] = ACTIONS(2539), + [anon_sym_union] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2849), + [anon_sym_switch] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2539), + [anon_sym_default] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_goto] = ACTIONS(2539), + [anon_sym_not] = ACTIONS(2539), + [anon_sym_compl] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2541), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_number_literal] = ACTIONS(2541), + [anon_sym_L_SQUOTE] = ACTIONS(2541), + [anon_sym_u_SQUOTE] = ACTIONS(2541), + [anon_sym_U_SQUOTE] = ACTIONS(2541), + [anon_sym_u8_SQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_L_DQUOTE] = ACTIONS(2541), + [anon_sym_u_DQUOTE] = ACTIONS(2541), + [anon_sym_U_DQUOTE] = ACTIONS(2541), + [anon_sym_u8_DQUOTE] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(2541), + [sym_true] = ACTIONS(2539), + [sym_false] = ACTIONS(2539), + [sym_null] = ACTIONS(2539), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2337), - [anon_sym_decltype] = ACTIONS(2337), - [anon_sym_virtual] = ACTIONS(2337), - [anon_sym_explicit] = ACTIONS(2337), - [anon_sym_typename] = ACTIONS(2337), - [anon_sym_template] = ACTIONS(2337), - [anon_sym_operator] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_delete] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_using] = ACTIONS(2337), - [anon_sym_static_assert] = ACTIONS(2337), - [anon_sym_concept] = ACTIONS(2337), - [anon_sym_co_return] = ACTIONS(2337), - [anon_sym_co_yield] = ACTIONS(2337), - [anon_sym_R_DQUOTE] = ACTIONS(2335), - [anon_sym_LR_DQUOTE] = ACTIONS(2335), - [anon_sym_uR_DQUOTE] = ACTIONS(2335), - [anon_sym_UR_DQUOTE] = ACTIONS(2335), - [anon_sym_u8R_DQUOTE] = ACTIONS(2335), - [anon_sym_co_await] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_requires] = ACTIONS(2337), - [sym_this] = ACTIONS(2337), - [sym_nullptr] = ACTIONS(2337), + [sym_auto] = ACTIONS(2539), + [anon_sym_decltype] = ACTIONS(2539), + [anon_sym_virtual] = ACTIONS(2539), + [anon_sym_explicit] = ACTIONS(2539), + [anon_sym_typename] = ACTIONS(2539), + [anon_sym_template] = ACTIONS(2539), + [anon_sym_operator] = ACTIONS(2539), + [anon_sym_try] = ACTIONS(2539), + [anon_sym_delete] = ACTIONS(2539), + [anon_sym_throw] = ACTIONS(2539), + [anon_sym_namespace] = ACTIONS(2539), + [anon_sym_using] = ACTIONS(2539), + [anon_sym_static_assert] = ACTIONS(2539), + [anon_sym_concept] = ACTIONS(2539), + [anon_sym_co_return] = ACTIONS(2539), + [anon_sym_co_yield] = ACTIONS(2539), + [anon_sym_R_DQUOTE] = ACTIONS(2541), + [anon_sym_LR_DQUOTE] = ACTIONS(2541), + [anon_sym_uR_DQUOTE] = ACTIONS(2541), + [anon_sym_UR_DQUOTE] = ACTIONS(2541), + [anon_sym_u8R_DQUOTE] = ACTIONS(2541), + [anon_sym_co_await] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(2539), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2539), + [sym_nullptr] = ACTIONS(2539), }, [648] = { - [ts_builtin_sym_end] = ACTIONS(2597), - [sym_identifier] = ACTIONS(2595), - [aux_sym_preproc_include_token1] = ACTIONS(2595), - [aux_sym_preproc_def_token1] = ACTIONS(2595), - [aux_sym_preproc_if_token1] = ACTIONS(2595), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), - [sym_preproc_directive] = ACTIONS(2595), - [anon_sym_LPAREN2] = ACTIONS(2597), - [anon_sym_BANG] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2595), - [anon_sym_PLUS] = ACTIONS(2595), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_AMP_AMP] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2597), - [anon_sym_typedef] = ACTIONS(2595), - [anon_sym_extern] = ACTIONS(2595), - [anon_sym___attribute__] = ACTIONS(2595), - [anon_sym_COLON_COLON] = ACTIONS(2597), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), - [anon_sym___declspec] = ACTIONS(2595), - [anon_sym___based] = ACTIONS(2595), - [anon_sym___cdecl] = ACTIONS(2595), - [anon_sym___clrcall] = ACTIONS(2595), - [anon_sym___stdcall] = ACTIONS(2595), - [anon_sym___fastcall] = ACTIONS(2595), - [anon_sym___thiscall] = ACTIONS(2595), - [anon_sym___vectorcall] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_static] = ACTIONS(2595), - [anon_sym_register] = ACTIONS(2595), - [anon_sym_inline] = ACTIONS(2595), - [anon_sym_thread_local] = ACTIONS(2595), - [anon_sym_const] = ACTIONS(2595), - [anon_sym_volatile] = ACTIONS(2595), - [anon_sym_restrict] = ACTIONS(2595), - [anon_sym__Atomic] = ACTIONS(2595), - [anon_sym_mutable] = ACTIONS(2595), - [anon_sym_constexpr] = ACTIONS(2595), - [anon_sym_constinit] = ACTIONS(2595), - [anon_sym_consteval] = ACTIONS(2595), - [anon_sym_signed] = ACTIONS(2595), - [anon_sym_unsigned] = ACTIONS(2595), - [anon_sym_long] = ACTIONS(2595), - [anon_sym_short] = ACTIONS(2595), - [sym_primitive_type] = ACTIONS(2595), - [anon_sym_enum] = ACTIONS(2595), - [anon_sym_class] = ACTIONS(2595), - [anon_sym_struct] = ACTIONS(2595), - [anon_sym_union] = ACTIONS(2595), - [anon_sym_if] = ACTIONS(2595), - [anon_sym_else] = ACTIONS(2595), - [anon_sym_switch] = ACTIONS(2595), - [anon_sym_case] = ACTIONS(2595), - [anon_sym_default] = ACTIONS(2595), - [anon_sym_while] = ACTIONS(2595), - [anon_sym_do] = ACTIONS(2595), - [anon_sym_for] = ACTIONS(2595), - [anon_sym_return] = ACTIONS(2595), - [anon_sym_break] = ACTIONS(2595), - [anon_sym_continue] = ACTIONS(2595), - [anon_sym_goto] = ACTIONS(2595), - [anon_sym_not] = ACTIONS(2595), - [anon_sym_compl] = ACTIONS(2595), - [anon_sym_DASH_DASH] = ACTIONS(2597), - [anon_sym_PLUS_PLUS] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2595), - [sym_number_literal] = ACTIONS(2597), - [anon_sym_L_SQUOTE] = ACTIONS(2597), - [anon_sym_u_SQUOTE] = ACTIONS(2597), - [anon_sym_U_SQUOTE] = ACTIONS(2597), - [anon_sym_u8_SQUOTE] = ACTIONS(2597), - [anon_sym_SQUOTE] = ACTIONS(2597), - [anon_sym_L_DQUOTE] = ACTIONS(2597), - [anon_sym_u_DQUOTE] = ACTIONS(2597), - [anon_sym_U_DQUOTE] = ACTIONS(2597), - [anon_sym_u8_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [sym_true] = ACTIONS(2595), - [sym_false] = ACTIONS(2595), - [sym_null] = ACTIONS(2595), + [sym_identifier] = ACTIONS(2531), + [aux_sym_preproc_include_token1] = ACTIONS(2531), + [aux_sym_preproc_def_token1] = ACTIONS(2531), + [aux_sym_preproc_if_token1] = ACTIONS(2531), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2531), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2531), + [sym_preproc_directive] = ACTIONS(2531), + [anon_sym_LPAREN2] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(2533), + [anon_sym_TILDE] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2531), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_typedef] = ACTIONS(2531), + [anon_sym_extern] = ACTIONS(2531), + [anon_sym___attribute__] = ACTIONS(2531), + [anon_sym_COLON_COLON] = ACTIONS(2533), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2533), + [anon_sym___declspec] = ACTIONS(2531), + [anon_sym___based] = ACTIONS(2531), + [anon_sym___cdecl] = ACTIONS(2531), + [anon_sym___clrcall] = ACTIONS(2531), + [anon_sym___stdcall] = ACTIONS(2531), + [anon_sym___fastcall] = ACTIONS(2531), + [anon_sym___thiscall] = ACTIONS(2531), + [anon_sym___vectorcall] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_LBRACK] = ACTIONS(2531), + [anon_sym_static] = ACTIONS(2531), + [anon_sym_register] = ACTIONS(2531), + [anon_sym_inline] = ACTIONS(2531), + [anon_sym_thread_local] = ACTIONS(2531), + [anon_sym_input] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [anon_sym_volatile] = ACTIONS(2531), + [anon_sym_restrict] = ACTIONS(2531), + [anon_sym__Atomic] = ACTIONS(2531), + [anon_sym_mutable] = ACTIONS(2531), + [anon_sym_constexpr] = ACTIONS(2531), + [anon_sym_constinit] = ACTIONS(2531), + [anon_sym_consteval] = ACTIONS(2531), + [anon_sym_signed] = ACTIONS(2531), + [anon_sym_unsigned] = ACTIONS(2531), + [anon_sym_long] = ACTIONS(2531), + [anon_sym_short] = ACTIONS(2531), + [sym_primitive_type] = ACTIONS(2531), + [anon_sym_enum] = ACTIONS(2531), + [anon_sym_class] = ACTIONS(2531), + [anon_sym_struct] = ACTIONS(2531), + [anon_sym_union] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_else] = ACTIONS(2531), + [anon_sym_switch] = ACTIONS(2531), + [anon_sym_case] = ACTIONS(2531), + [anon_sym_default] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_do] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_goto] = ACTIONS(2531), + [anon_sym_not] = ACTIONS(2531), + [anon_sym_compl] = ACTIONS(2531), + [anon_sym_DASH_DASH] = ACTIONS(2533), + [anon_sym_PLUS_PLUS] = ACTIONS(2533), + [anon_sym_sizeof] = ACTIONS(2531), + [sym_number_literal] = ACTIONS(2533), + [anon_sym_L_SQUOTE] = ACTIONS(2533), + [anon_sym_u_SQUOTE] = ACTIONS(2533), + [anon_sym_U_SQUOTE] = ACTIONS(2533), + [anon_sym_u8_SQUOTE] = ACTIONS(2533), + [anon_sym_SQUOTE] = ACTIONS(2533), + [anon_sym_L_DQUOTE] = ACTIONS(2533), + [anon_sym_u_DQUOTE] = ACTIONS(2533), + [anon_sym_U_DQUOTE] = ACTIONS(2533), + [anon_sym_u8_DQUOTE] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(2533), + [sym_true] = ACTIONS(2531), + [sym_false] = ACTIONS(2531), + [sym_null] = ACTIONS(2531), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2595), - [anon_sym_decltype] = ACTIONS(2595), - [anon_sym_virtual] = ACTIONS(2595), - [anon_sym_explicit] = ACTIONS(2595), - [anon_sym_typename] = ACTIONS(2595), - [anon_sym_template] = ACTIONS(2595), - [anon_sym_operator] = ACTIONS(2595), - [anon_sym_try] = ACTIONS(2595), - [anon_sym_delete] = ACTIONS(2595), - [anon_sym_throw] = ACTIONS(2595), - [anon_sym_namespace] = ACTIONS(2595), - [anon_sym_using] = ACTIONS(2595), - [anon_sym_static_assert] = ACTIONS(2595), - [anon_sym_concept] = ACTIONS(2595), - [anon_sym_co_return] = ACTIONS(2595), - [anon_sym_co_yield] = ACTIONS(2595), - [anon_sym_R_DQUOTE] = ACTIONS(2597), - [anon_sym_LR_DQUOTE] = ACTIONS(2597), - [anon_sym_uR_DQUOTE] = ACTIONS(2597), - [anon_sym_UR_DQUOTE] = ACTIONS(2597), - [anon_sym_u8R_DQUOTE] = ACTIONS(2597), - [anon_sym_co_await] = ACTIONS(2595), - [anon_sym_new] = ACTIONS(2595), - [anon_sym_requires] = ACTIONS(2595), - [sym_this] = ACTIONS(2595), - [sym_nullptr] = ACTIONS(2595), + [sym_auto] = ACTIONS(2531), + [anon_sym_decltype] = ACTIONS(2531), + [anon_sym_virtual] = ACTIONS(2531), + [anon_sym_explicit] = ACTIONS(2531), + [anon_sym_typename] = ACTIONS(2531), + [anon_sym_template] = ACTIONS(2531), + [anon_sym_operator] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_throw] = ACTIONS(2531), + [anon_sym_namespace] = ACTIONS(2531), + [anon_sym_using] = ACTIONS(2531), + [anon_sym_static_assert] = ACTIONS(2531), + [anon_sym_concept] = ACTIONS(2531), + [anon_sym_co_return] = ACTIONS(2531), + [anon_sym_co_yield] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(2531), + [anon_sym_requires] = ACTIONS(2531), + [sym_this] = ACTIONS(2531), + [sym_nullptr] = ACTIONS(2531), }, [649] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2515), + [aux_sym_preproc_include_token1] = ACTIONS(2515), + [aux_sym_preproc_def_token1] = ACTIONS(2515), + [aux_sym_preproc_if_token1] = ACTIONS(2515), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2515), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2515), + [sym_preproc_directive] = ACTIONS(2515), + [anon_sym_LPAREN2] = ACTIONS(2517), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_TILDE] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2515), + [anon_sym_PLUS] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2517), + [anon_sym_typedef] = ACTIONS(2515), + [anon_sym_extern] = ACTIONS(2515), + [anon_sym___attribute__] = ACTIONS(2515), + [anon_sym_COLON_COLON] = ACTIONS(2517), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2517), + [anon_sym___declspec] = ACTIONS(2515), + [anon_sym___based] = ACTIONS(2515), + [anon_sym___cdecl] = ACTIONS(2515), + [anon_sym___clrcall] = ACTIONS(2515), + [anon_sym___stdcall] = ACTIONS(2515), + [anon_sym___fastcall] = ACTIONS(2515), + [anon_sym___thiscall] = ACTIONS(2515), + [anon_sym___vectorcall] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_RBRACE] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_static] = ACTIONS(2515), + [anon_sym_register] = ACTIONS(2515), + [anon_sym_inline] = ACTIONS(2515), + [anon_sym_thread_local] = ACTIONS(2515), + [anon_sym_input] = ACTIONS(2515), + [anon_sym_const] = ACTIONS(2515), + [anon_sym_volatile] = ACTIONS(2515), + [anon_sym_restrict] = ACTIONS(2515), + [anon_sym__Atomic] = ACTIONS(2515), + [anon_sym_mutable] = ACTIONS(2515), + [anon_sym_constexpr] = ACTIONS(2515), + [anon_sym_constinit] = ACTIONS(2515), + [anon_sym_consteval] = ACTIONS(2515), + [anon_sym_signed] = ACTIONS(2515), + [anon_sym_unsigned] = ACTIONS(2515), + [anon_sym_long] = ACTIONS(2515), + [anon_sym_short] = ACTIONS(2515), + [sym_primitive_type] = ACTIONS(2515), + [anon_sym_enum] = ACTIONS(2515), + [anon_sym_class] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(2515), + [anon_sym_union] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2515), + [anon_sym_else] = ACTIONS(2515), + [anon_sym_switch] = ACTIONS(2515), + [anon_sym_case] = ACTIONS(2515), + [anon_sym_default] = ACTIONS(2515), + [anon_sym_while] = ACTIONS(2515), + [anon_sym_do] = ACTIONS(2515), + [anon_sym_for] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2515), + [anon_sym_break] = ACTIONS(2515), + [anon_sym_continue] = ACTIONS(2515), + [anon_sym_goto] = ACTIONS(2515), + [anon_sym_not] = ACTIONS(2515), + [anon_sym_compl] = ACTIONS(2515), + [anon_sym_DASH_DASH] = ACTIONS(2517), + [anon_sym_PLUS_PLUS] = ACTIONS(2517), + [anon_sym_sizeof] = ACTIONS(2515), + [sym_number_literal] = ACTIONS(2517), + [anon_sym_L_SQUOTE] = ACTIONS(2517), + [anon_sym_u_SQUOTE] = ACTIONS(2517), + [anon_sym_U_SQUOTE] = ACTIONS(2517), + [anon_sym_u8_SQUOTE] = ACTIONS(2517), + [anon_sym_SQUOTE] = ACTIONS(2517), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_null] = ACTIONS(2515), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2515), + [anon_sym_decltype] = ACTIONS(2515), + [anon_sym_virtual] = ACTIONS(2515), + [anon_sym_explicit] = ACTIONS(2515), + [anon_sym_typename] = ACTIONS(2515), + [anon_sym_template] = ACTIONS(2515), + [anon_sym_operator] = ACTIONS(2515), + [anon_sym_try] = ACTIONS(2515), + [anon_sym_delete] = ACTIONS(2515), + [anon_sym_throw] = ACTIONS(2515), + [anon_sym_namespace] = ACTIONS(2515), + [anon_sym_using] = ACTIONS(2515), + [anon_sym_static_assert] = ACTIONS(2515), + [anon_sym_concept] = ACTIONS(2515), + [anon_sym_co_return] = ACTIONS(2515), + [anon_sym_co_yield] = ACTIONS(2515), + [anon_sym_R_DQUOTE] = ACTIONS(2517), + [anon_sym_LR_DQUOTE] = ACTIONS(2517), + [anon_sym_uR_DQUOTE] = ACTIONS(2517), + [anon_sym_UR_DQUOTE] = ACTIONS(2517), + [anon_sym_u8R_DQUOTE] = ACTIONS(2517), + [anon_sym_co_await] = ACTIONS(2515), + [anon_sym_new] = ACTIONS(2515), + [anon_sym_requires] = ACTIONS(2515), + [sym_this] = ACTIONS(2515), + [sym_nullptr] = ACTIONS(2515), }, [650] = { + [sym_identifier] = ACTIONS(2507), + [aux_sym_preproc_include_token1] = ACTIONS(2507), + [aux_sym_preproc_def_token1] = ACTIONS(2507), + [aux_sym_preproc_if_token1] = ACTIONS(2507), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2507), + [sym_preproc_directive] = ACTIONS(2507), + [anon_sym_LPAREN2] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2509), + [anon_sym_TILDE] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2509), + [anon_sym_AMP_AMP] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_typedef] = ACTIONS(2507), + [anon_sym_extern] = ACTIONS(2507), + [anon_sym___attribute__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), + [anon_sym___declspec] = ACTIONS(2507), + [anon_sym___based] = ACTIONS(2507), + [anon_sym___cdecl] = ACTIONS(2507), + [anon_sym___clrcall] = ACTIONS(2507), + [anon_sym___stdcall] = ACTIONS(2507), + [anon_sym___fastcall] = ACTIONS(2507), + [anon_sym___thiscall] = ACTIONS(2507), + [anon_sym___vectorcall] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2507), + [anon_sym_register] = ACTIONS(2507), + [anon_sym_inline] = ACTIONS(2507), + [anon_sym_thread_local] = ACTIONS(2507), + [anon_sym_input] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [anon_sym_volatile] = ACTIONS(2507), + [anon_sym_restrict] = ACTIONS(2507), + [anon_sym__Atomic] = ACTIONS(2507), + [anon_sym_mutable] = ACTIONS(2507), + [anon_sym_constexpr] = ACTIONS(2507), + [anon_sym_constinit] = ACTIONS(2507), + [anon_sym_consteval] = ACTIONS(2507), + [anon_sym_signed] = ACTIONS(2507), + [anon_sym_unsigned] = ACTIONS(2507), + [anon_sym_long] = ACTIONS(2507), + [anon_sym_short] = ACTIONS(2507), + [sym_primitive_type] = ACTIONS(2507), + [anon_sym_enum] = ACTIONS(2507), + [anon_sym_class] = ACTIONS(2507), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_union] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_else] = ACTIONS(2507), + [anon_sym_switch] = ACTIONS(2507), + [anon_sym_case] = ACTIONS(2507), + [anon_sym_default] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_do] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2507), + [anon_sym_not] = ACTIONS(2507), + [anon_sym_compl] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2509), + [anon_sym_sizeof] = ACTIONS(2507), + [sym_number_literal] = ACTIONS(2509), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2509), + [anon_sym_u_DQUOTE] = ACTIONS(2509), + [anon_sym_U_DQUOTE] = ACTIONS(2509), + [anon_sym_u8_DQUOTE] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2509), + [sym_true] = ACTIONS(2507), + [sym_false] = ACTIONS(2507), + [sym_null] = ACTIONS(2507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2507), + [anon_sym_decltype] = ACTIONS(2507), + [anon_sym_virtual] = ACTIONS(2507), + [anon_sym_explicit] = ACTIONS(2507), + [anon_sym_typename] = ACTIONS(2507), + [anon_sym_template] = ACTIONS(2507), + [anon_sym_operator] = ACTIONS(2507), + [anon_sym_try] = ACTIONS(2507), + [anon_sym_delete] = ACTIONS(2507), + [anon_sym_throw] = ACTIONS(2507), + [anon_sym_namespace] = ACTIONS(2507), + [anon_sym_using] = ACTIONS(2507), + [anon_sym_static_assert] = ACTIONS(2507), + [anon_sym_concept] = ACTIONS(2507), + [anon_sym_co_return] = ACTIONS(2507), + [anon_sym_co_yield] = ACTIONS(2507), + [anon_sym_R_DQUOTE] = ACTIONS(2509), + [anon_sym_LR_DQUOTE] = ACTIONS(2509), + [anon_sym_uR_DQUOTE] = ACTIONS(2509), + [anon_sym_UR_DQUOTE] = ACTIONS(2509), + [anon_sym_u8R_DQUOTE] = ACTIONS(2509), + [anon_sym_co_await] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(2507), + [anon_sym_requires] = ACTIONS(2507), + [sym_this] = ACTIONS(2507), + [sym_nullptr] = ACTIONS(2507), + }, + [651] = { + [sym_identifier] = ACTIONS(2503), + [aux_sym_preproc_include_token1] = ACTIONS(2503), + [aux_sym_preproc_def_token1] = ACTIONS(2503), + [aux_sym_preproc_if_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), + [sym_preproc_directive] = ACTIONS(2503), + [anon_sym_LPAREN2] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_typedef] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym___attribute__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), + [anon_sym___declspec] = ACTIONS(2503), + [anon_sym___based] = ACTIONS(2503), + [anon_sym___cdecl] = ACTIONS(2503), + [anon_sym___clrcall] = ACTIONS(2503), + [anon_sym___stdcall] = ACTIONS(2503), + [anon_sym___fastcall] = ACTIONS(2503), + [anon_sym___thiscall] = ACTIONS(2503), + [anon_sym___vectorcall] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_register] = ACTIONS(2503), + [anon_sym_inline] = ACTIONS(2503), + [anon_sym_thread_local] = ACTIONS(2503), + [anon_sym_input] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_volatile] = ACTIONS(2503), + [anon_sym_restrict] = ACTIONS(2503), + [anon_sym__Atomic] = ACTIONS(2503), + [anon_sym_mutable] = ACTIONS(2503), + [anon_sym_constexpr] = ACTIONS(2503), + [anon_sym_constinit] = ACTIONS(2503), + [anon_sym_consteval] = ACTIONS(2503), + [anon_sym_signed] = ACTIONS(2503), + [anon_sym_unsigned] = ACTIONS(2503), + [anon_sym_long] = ACTIONS(2503), + [anon_sym_short] = ACTIONS(2503), + [sym_primitive_type] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_else] = ACTIONS(2503), + [anon_sym_switch] = ACTIONS(2503), + [anon_sym_case] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_goto] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_sizeof] = ACTIONS(2503), + [sym_number_literal] = ACTIONS(2505), + [anon_sym_L_SQUOTE] = ACTIONS(2505), + [anon_sym_u_SQUOTE] = ACTIONS(2505), + [anon_sym_U_SQUOTE] = ACTIONS(2505), + [anon_sym_u8_SQUOTE] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_L_DQUOTE] = ACTIONS(2505), + [anon_sym_u_DQUOTE] = ACTIONS(2505), + [anon_sym_U_DQUOTE] = ACTIONS(2505), + [anon_sym_u8_DQUOTE] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym_true] = ACTIONS(2503), + [sym_false] = ACTIONS(2503), + [sym_null] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2503), + [anon_sym_decltype] = ACTIONS(2503), + [anon_sym_virtual] = ACTIONS(2503), + [anon_sym_explicit] = ACTIONS(2503), + [anon_sym_typename] = ACTIONS(2503), + [anon_sym_template] = ACTIONS(2503), + [anon_sym_operator] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [anon_sym_delete] = ACTIONS(2503), + [anon_sym_throw] = ACTIONS(2503), + [anon_sym_namespace] = ACTIONS(2503), + [anon_sym_using] = ACTIONS(2503), + [anon_sym_static_assert] = ACTIONS(2503), + [anon_sym_concept] = ACTIONS(2503), + [anon_sym_co_return] = ACTIONS(2503), + [anon_sym_co_yield] = ACTIONS(2503), + [anon_sym_R_DQUOTE] = ACTIONS(2505), + [anon_sym_LR_DQUOTE] = ACTIONS(2505), + [anon_sym_uR_DQUOTE] = ACTIONS(2505), + [anon_sym_UR_DQUOTE] = ACTIONS(2505), + [anon_sym_u8R_DQUOTE] = ACTIONS(2505), + [anon_sym_co_await] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2503), + [anon_sym_requires] = ACTIONS(2503), + [sym_this] = ACTIONS(2503), + [sym_nullptr] = ACTIONS(2503), + }, + [652] = { [sym_identifier] = ACTIONS(2399), [aux_sym_preproc_include_token1] = ACTIONS(2399), [aux_sym_preproc_def_token1] = ACTIONS(2399), @@ -111691,6 +112394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2399), [anon_sym_inline] = ACTIONS(2399), [anon_sym_thread_local] = ACTIONS(2399), + [anon_sym_input] = ACTIONS(2399), [anon_sym_const] = ACTIONS(2399), [anon_sym_volatile] = ACTIONS(2399), [anon_sym_restrict] = ACTIONS(2399), @@ -111709,7 +112413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2399), [anon_sym_union] = ACTIONS(2399), [anon_sym_if] = ACTIONS(2399), - [anon_sym_else] = ACTIONS(2851), + [anon_sym_else] = ACTIONS(2399), [anon_sym_switch] = ACTIONS(2399), [anon_sym_case] = ACTIONS(2399), [anon_sym_default] = ACTIONS(2399), @@ -111767,1254 +112471,3660 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2399), [sym_nullptr] = ACTIONS(2399), }, - [651] = { - [sym_identifier] = ACTIONS(2577), - [aux_sym_preproc_include_token1] = ACTIONS(2577), - [aux_sym_preproc_def_token1] = ACTIONS(2577), - [aux_sym_preproc_if_token1] = ACTIONS(2577), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2577), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2577), - [sym_preproc_directive] = ACTIONS(2577), - [anon_sym_LPAREN2] = ACTIONS(2579), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2577), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_typedef] = ACTIONS(2577), - [anon_sym_extern] = ACTIONS(2577), - [anon_sym___attribute__] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2579), - [anon_sym___declspec] = ACTIONS(2577), - [anon_sym___based] = ACTIONS(2577), - [anon_sym___cdecl] = ACTIONS(2577), - [anon_sym___clrcall] = ACTIONS(2577), - [anon_sym___stdcall] = ACTIONS(2577), - [anon_sym___fastcall] = ACTIONS(2577), - [anon_sym___thiscall] = ACTIONS(2577), - [anon_sym___vectorcall] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_RBRACE] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2577), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_register] = ACTIONS(2577), - [anon_sym_inline] = ACTIONS(2577), - [anon_sym_thread_local] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_volatile] = ACTIONS(2577), - [anon_sym_restrict] = ACTIONS(2577), - [anon_sym__Atomic] = ACTIONS(2577), - [anon_sym_mutable] = ACTIONS(2577), - [anon_sym_constexpr] = ACTIONS(2577), - [anon_sym_constinit] = ACTIONS(2577), - [anon_sym_consteval] = ACTIONS(2577), - [anon_sym_signed] = ACTIONS(2577), - [anon_sym_unsigned] = ACTIONS(2577), - [anon_sym_long] = ACTIONS(2577), - [anon_sym_short] = ACTIONS(2577), - [sym_primitive_type] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_struct] = ACTIONS(2577), - [anon_sym_union] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_else] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_case] = ACTIONS(2577), - [anon_sym_default] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_goto] = ACTIONS(2577), - [anon_sym_not] = ACTIONS(2577), - [anon_sym_compl] = ACTIONS(2577), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_sizeof] = ACTIONS(2577), - [sym_number_literal] = ACTIONS(2579), - [anon_sym_L_SQUOTE] = ACTIONS(2579), - [anon_sym_u_SQUOTE] = ACTIONS(2579), - [anon_sym_U_SQUOTE] = ACTIONS(2579), - [anon_sym_u8_SQUOTE] = ACTIONS(2579), - [anon_sym_SQUOTE] = ACTIONS(2579), - [anon_sym_L_DQUOTE] = ACTIONS(2579), - [anon_sym_u_DQUOTE] = ACTIONS(2579), - [anon_sym_U_DQUOTE] = ACTIONS(2579), - [anon_sym_u8_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym_true] = ACTIONS(2577), - [sym_false] = ACTIONS(2577), - [sym_null] = ACTIONS(2577), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2577), - [anon_sym_decltype] = ACTIONS(2577), - [anon_sym_virtual] = ACTIONS(2577), - [anon_sym_explicit] = ACTIONS(2577), - [anon_sym_typename] = ACTIONS(2577), - [anon_sym_template] = ACTIONS(2577), - [anon_sym_operator] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_delete] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [anon_sym_static_assert] = ACTIONS(2577), - [anon_sym_concept] = ACTIONS(2577), - [anon_sym_co_return] = ACTIONS(2577), - [anon_sym_co_yield] = ACTIONS(2577), - [anon_sym_R_DQUOTE] = ACTIONS(2579), - [anon_sym_LR_DQUOTE] = ACTIONS(2579), - [anon_sym_uR_DQUOTE] = ACTIONS(2579), - [anon_sym_UR_DQUOTE] = ACTIONS(2579), - [anon_sym_u8R_DQUOTE] = ACTIONS(2579), - [anon_sym_co_await] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2577), - [sym_this] = ACTIONS(2577), - [sym_nullptr] = ACTIONS(2577), - }, - [652] = { - [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_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_LBRACK] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = 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_else] = 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), - [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), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = 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_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_nullptr] = ACTIONS(2563), - }, [653] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2499), + [aux_sym_preproc_include_token1] = ACTIONS(2499), + [aux_sym_preproc_def_token1] = ACTIONS(2499), + [aux_sym_preproc_if_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), + [sym_preproc_directive] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_AMP_AMP] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_typedef] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym___attribute__] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), + [anon_sym___declspec] = ACTIONS(2499), + [anon_sym___based] = ACTIONS(2499), + [anon_sym___cdecl] = ACTIONS(2499), + [anon_sym___clrcall] = ACTIONS(2499), + [anon_sym___stdcall] = ACTIONS(2499), + [anon_sym___fastcall] = ACTIONS(2499), + [anon_sym___thiscall] = ACTIONS(2499), + [anon_sym___vectorcall] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_register] = ACTIONS(2499), + [anon_sym_inline] = ACTIONS(2499), + [anon_sym_thread_local] = ACTIONS(2499), + [anon_sym_input] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_volatile] = ACTIONS(2499), + [anon_sym_restrict] = ACTIONS(2499), + [anon_sym__Atomic] = ACTIONS(2499), + [anon_sym_mutable] = ACTIONS(2499), + [anon_sym_constexpr] = ACTIONS(2499), + [anon_sym_constinit] = ACTIONS(2499), + [anon_sym_consteval] = ACTIONS(2499), + [anon_sym_signed] = ACTIONS(2499), + [anon_sym_unsigned] = ACTIONS(2499), + [anon_sym_long] = ACTIONS(2499), + [anon_sym_short] = ACTIONS(2499), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_class] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_switch] = ACTIONS(2499), + [anon_sym_case] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [anon_sym_L_SQUOTE] = ACTIONS(2501), + [anon_sym_u_SQUOTE] = ACTIONS(2501), + [anon_sym_U_SQUOTE] = ACTIONS(2501), + [anon_sym_u8_SQUOTE] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_L_DQUOTE] = ACTIONS(2501), + [anon_sym_u_DQUOTE] = ACTIONS(2501), + [anon_sym_U_DQUOTE] = ACTIONS(2501), + [anon_sym_u8_DQUOTE] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2499), + [anon_sym_decltype] = ACTIONS(2499), + [anon_sym_virtual] = ACTIONS(2499), + [anon_sym_explicit] = ACTIONS(2499), + [anon_sym_typename] = ACTIONS(2499), + [anon_sym_template] = ACTIONS(2499), + [anon_sym_operator] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2499), + [anon_sym_delete] = ACTIONS(2499), + [anon_sym_throw] = ACTIONS(2499), + [anon_sym_namespace] = ACTIONS(2499), + [anon_sym_using] = ACTIONS(2499), + [anon_sym_static_assert] = ACTIONS(2499), + [anon_sym_concept] = ACTIONS(2499), + [anon_sym_co_return] = ACTIONS(2499), + [anon_sym_co_yield] = ACTIONS(2499), + [anon_sym_R_DQUOTE] = ACTIONS(2501), + [anon_sym_LR_DQUOTE] = ACTIONS(2501), + [anon_sym_uR_DQUOTE] = ACTIONS(2501), + [anon_sym_UR_DQUOTE] = ACTIONS(2501), + [anon_sym_u8R_DQUOTE] = ACTIONS(2501), + [anon_sym_co_await] = ACTIONS(2499), + [anon_sym_new] = ACTIONS(2499), + [anon_sym_requires] = ACTIONS(2499), + [sym_this] = ACTIONS(2499), + [sym_nullptr] = ACTIONS(2499), }, [654] = { - [sym_identifier] = ACTIONS(2603), - [aux_sym_preproc_include_token1] = ACTIONS(2603), - [aux_sym_preproc_def_token1] = ACTIONS(2603), - [aux_sym_preproc_if_token1] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), - [sym_preproc_directive] = ACTIONS(2603), - [anon_sym_LPAREN2] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2603), - [anon_sym_PLUS] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2605), - [anon_sym_typedef] = ACTIONS(2603), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym___attribute__] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2605), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), - [anon_sym___declspec] = ACTIONS(2603), - [anon_sym___based] = ACTIONS(2603), - [anon_sym___cdecl] = ACTIONS(2603), - [anon_sym___clrcall] = ACTIONS(2603), - [anon_sym___stdcall] = ACTIONS(2603), - [anon_sym___fastcall] = ACTIONS(2603), - [anon_sym___thiscall] = ACTIONS(2603), - [anon_sym___vectorcall] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_RBRACE] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2603), - [anon_sym_register] = ACTIONS(2603), - [anon_sym_inline] = ACTIONS(2603), - [anon_sym_thread_local] = ACTIONS(2603), - [anon_sym_const] = ACTIONS(2603), - [anon_sym_volatile] = ACTIONS(2603), - [anon_sym_restrict] = ACTIONS(2603), - [anon_sym__Atomic] = ACTIONS(2603), - [anon_sym_mutable] = ACTIONS(2603), - [anon_sym_constexpr] = ACTIONS(2603), - [anon_sym_constinit] = ACTIONS(2603), - [anon_sym_consteval] = ACTIONS(2603), - [anon_sym_signed] = ACTIONS(2603), - [anon_sym_unsigned] = ACTIONS(2603), - [anon_sym_long] = ACTIONS(2603), - [anon_sym_short] = ACTIONS(2603), - [sym_primitive_type] = ACTIONS(2603), - [anon_sym_enum] = ACTIONS(2603), - [anon_sym_class] = ACTIONS(2603), - [anon_sym_struct] = ACTIONS(2603), - [anon_sym_union] = ACTIONS(2603), - [anon_sym_if] = ACTIONS(2603), - [anon_sym_else] = ACTIONS(2603), - [anon_sym_switch] = ACTIONS(2603), - [anon_sym_case] = ACTIONS(2603), - [anon_sym_default] = ACTIONS(2603), - [anon_sym_while] = ACTIONS(2603), - [anon_sym_do] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2603), - [anon_sym_break] = ACTIONS(2603), - [anon_sym_continue] = ACTIONS(2603), - [anon_sym_goto] = ACTIONS(2603), - [anon_sym_not] = ACTIONS(2603), - [anon_sym_compl] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2605), - [anon_sym_PLUS_PLUS] = ACTIONS(2605), - [anon_sym_sizeof] = ACTIONS(2603), - [sym_number_literal] = ACTIONS(2605), - [anon_sym_L_SQUOTE] = ACTIONS(2605), - [anon_sym_u_SQUOTE] = ACTIONS(2605), - [anon_sym_U_SQUOTE] = ACTIONS(2605), - [anon_sym_u8_SQUOTE] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(2605), - [anon_sym_L_DQUOTE] = ACTIONS(2605), - [anon_sym_u_DQUOTE] = ACTIONS(2605), - [anon_sym_U_DQUOTE] = ACTIONS(2605), - [anon_sym_u8_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [sym_true] = ACTIONS(2603), - [sym_false] = ACTIONS(2603), - [sym_null] = ACTIONS(2603), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2479), + [aux_sym_preproc_include_token1] = ACTIONS(2479), + [aux_sym_preproc_def_token1] = ACTIONS(2479), + [aux_sym_preproc_if_token1] = ACTIONS(2479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2479), + [sym_preproc_directive] = ACTIONS(2479), + [anon_sym_LPAREN2] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_TILDE] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_typedef] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym___attribute__] = ACTIONS(2479), + [anon_sym_COLON_COLON] = ACTIONS(2481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), + [anon_sym___declspec] = ACTIONS(2479), + [anon_sym___based] = ACTIONS(2479), + [anon_sym___cdecl] = ACTIONS(2479), + [anon_sym___clrcall] = ACTIONS(2479), + [anon_sym___stdcall] = ACTIONS(2479), + [anon_sym___fastcall] = ACTIONS(2479), + [anon_sym___thiscall] = ACTIONS(2479), + [anon_sym___vectorcall] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_register] = ACTIONS(2479), + [anon_sym_inline] = ACTIONS(2479), + [anon_sym_thread_local] = ACTIONS(2479), + [anon_sym_input] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_volatile] = ACTIONS(2479), + [anon_sym_restrict] = ACTIONS(2479), + [anon_sym__Atomic] = ACTIONS(2479), + [anon_sym_mutable] = ACTIONS(2479), + [anon_sym_constexpr] = ACTIONS(2479), + [anon_sym_constinit] = ACTIONS(2479), + [anon_sym_consteval] = ACTIONS(2479), + [anon_sym_signed] = ACTIONS(2479), + [anon_sym_unsigned] = ACTIONS(2479), + [anon_sym_long] = ACTIONS(2479), + [anon_sym_short] = ACTIONS(2479), + [sym_primitive_type] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_class] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_switch] = ACTIONS(2479), + [anon_sym_case] = ACTIONS(2479), + [anon_sym_default] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_goto] = ACTIONS(2479), + [anon_sym_not] = ACTIONS(2479), + [anon_sym_compl] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2481), + [anon_sym_PLUS_PLUS] = ACTIONS(2481), + [anon_sym_sizeof] = ACTIONS(2479), + [sym_number_literal] = ACTIONS(2481), + [anon_sym_L_SQUOTE] = ACTIONS(2481), + [anon_sym_u_SQUOTE] = ACTIONS(2481), + [anon_sym_U_SQUOTE] = ACTIONS(2481), + [anon_sym_u8_SQUOTE] = ACTIONS(2481), + [anon_sym_SQUOTE] = ACTIONS(2481), + [anon_sym_L_DQUOTE] = ACTIONS(2481), + [anon_sym_u_DQUOTE] = ACTIONS(2481), + [anon_sym_U_DQUOTE] = ACTIONS(2481), + [anon_sym_u8_DQUOTE] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(2481), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2603), - [anon_sym_decltype] = ACTIONS(2603), - [anon_sym_virtual] = ACTIONS(2603), - [anon_sym_explicit] = ACTIONS(2603), - [anon_sym_typename] = ACTIONS(2603), - [anon_sym_template] = ACTIONS(2603), - [anon_sym_operator] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2603), - [anon_sym_delete] = ACTIONS(2603), - [anon_sym_throw] = ACTIONS(2603), - [anon_sym_namespace] = ACTIONS(2603), - [anon_sym_using] = ACTIONS(2603), - [anon_sym_static_assert] = ACTIONS(2603), - [anon_sym_concept] = ACTIONS(2603), - [anon_sym_co_return] = ACTIONS(2603), - [anon_sym_co_yield] = ACTIONS(2603), - [anon_sym_R_DQUOTE] = ACTIONS(2605), - [anon_sym_LR_DQUOTE] = ACTIONS(2605), - [anon_sym_uR_DQUOTE] = ACTIONS(2605), - [anon_sym_UR_DQUOTE] = ACTIONS(2605), - [anon_sym_u8R_DQUOTE] = ACTIONS(2605), - [anon_sym_co_await] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2603), - [anon_sym_requires] = ACTIONS(2603), - [sym_this] = ACTIONS(2603), - [sym_nullptr] = ACTIONS(2603), + [sym_auto] = ACTIONS(2479), + [anon_sym_decltype] = ACTIONS(2479), + [anon_sym_virtual] = ACTIONS(2479), + [anon_sym_explicit] = ACTIONS(2479), + [anon_sym_typename] = ACTIONS(2479), + [anon_sym_template] = ACTIONS(2479), + [anon_sym_operator] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2479), + [anon_sym_delete] = ACTIONS(2479), + [anon_sym_throw] = ACTIONS(2479), + [anon_sym_namespace] = ACTIONS(2479), + [anon_sym_using] = ACTIONS(2479), + [anon_sym_static_assert] = ACTIONS(2479), + [anon_sym_concept] = ACTIONS(2479), + [anon_sym_co_return] = ACTIONS(2479), + [anon_sym_co_yield] = ACTIONS(2479), + [anon_sym_R_DQUOTE] = ACTIONS(2481), + [anon_sym_LR_DQUOTE] = ACTIONS(2481), + [anon_sym_uR_DQUOTE] = ACTIONS(2481), + [anon_sym_UR_DQUOTE] = ACTIONS(2481), + [anon_sym_u8R_DQUOTE] = ACTIONS(2481), + [anon_sym_co_await] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(2479), + [anon_sym_requires] = ACTIONS(2479), + [sym_this] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), }, [655] = { - [sym_identifier] = ACTIONS(2603), - [aux_sym_preproc_include_token1] = ACTIONS(2603), - [aux_sym_preproc_def_token1] = ACTIONS(2603), - [aux_sym_preproc_if_token1] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), - [sym_preproc_directive] = ACTIONS(2603), - [anon_sym_LPAREN2] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2603), - [anon_sym_PLUS] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2605), - [anon_sym_typedef] = ACTIONS(2603), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym___attribute__] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2605), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), - [anon_sym___declspec] = ACTIONS(2603), - [anon_sym___based] = ACTIONS(2603), - [anon_sym___cdecl] = ACTIONS(2603), - [anon_sym___clrcall] = ACTIONS(2603), - [anon_sym___stdcall] = ACTIONS(2603), - [anon_sym___fastcall] = ACTIONS(2603), - [anon_sym___thiscall] = ACTIONS(2603), - [anon_sym___vectorcall] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_RBRACE] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2603), - [anon_sym_register] = ACTIONS(2603), - [anon_sym_inline] = ACTIONS(2603), - [anon_sym_thread_local] = ACTIONS(2603), - [anon_sym_const] = ACTIONS(2603), - [anon_sym_volatile] = ACTIONS(2603), - [anon_sym_restrict] = ACTIONS(2603), - [anon_sym__Atomic] = ACTIONS(2603), - [anon_sym_mutable] = ACTIONS(2603), - [anon_sym_constexpr] = ACTIONS(2603), - [anon_sym_constinit] = ACTIONS(2603), - [anon_sym_consteval] = ACTIONS(2603), - [anon_sym_signed] = ACTIONS(2603), - [anon_sym_unsigned] = ACTIONS(2603), - [anon_sym_long] = ACTIONS(2603), - [anon_sym_short] = ACTIONS(2603), - [sym_primitive_type] = ACTIONS(2603), - [anon_sym_enum] = ACTIONS(2603), - [anon_sym_class] = ACTIONS(2603), - [anon_sym_struct] = ACTIONS(2603), - [anon_sym_union] = ACTIONS(2603), - [anon_sym_if] = ACTIONS(2603), - [anon_sym_else] = ACTIONS(2603), - [anon_sym_switch] = ACTIONS(2603), - [anon_sym_case] = ACTIONS(2603), - [anon_sym_default] = ACTIONS(2603), - [anon_sym_while] = ACTIONS(2603), - [anon_sym_do] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2603), - [anon_sym_break] = ACTIONS(2603), - [anon_sym_continue] = ACTIONS(2603), - [anon_sym_goto] = ACTIONS(2603), - [anon_sym_not] = ACTIONS(2603), - [anon_sym_compl] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2605), - [anon_sym_PLUS_PLUS] = ACTIONS(2605), - [anon_sym_sizeof] = ACTIONS(2603), - [sym_number_literal] = ACTIONS(2605), - [anon_sym_L_SQUOTE] = ACTIONS(2605), - [anon_sym_u_SQUOTE] = ACTIONS(2605), - [anon_sym_U_SQUOTE] = ACTIONS(2605), - [anon_sym_u8_SQUOTE] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(2605), - [anon_sym_L_DQUOTE] = ACTIONS(2605), - [anon_sym_u_DQUOTE] = ACTIONS(2605), - [anon_sym_U_DQUOTE] = ACTIONS(2605), - [anon_sym_u8_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [sym_true] = ACTIONS(2603), - [sym_false] = ACTIONS(2603), - [sym_null] = ACTIONS(2603), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2475), + [aux_sym_preproc_include_token1] = ACTIONS(2475), + [aux_sym_preproc_def_token1] = ACTIONS(2475), + [aux_sym_preproc_if_token1] = ACTIONS(2475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2475), + [sym_preproc_directive] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2477), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_typedef] = ACTIONS(2475), + [anon_sym_extern] = ACTIONS(2475), + [anon_sym___attribute__] = ACTIONS(2475), + [anon_sym_COLON_COLON] = ACTIONS(2477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), + [anon_sym___declspec] = ACTIONS(2475), + [anon_sym___based] = ACTIONS(2475), + [anon_sym___cdecl] = ACTIONS(2475), + [anon_sym___clrcall] = ACTIONS(2475), + [anon_sym___stdcall] = ACTIONS(2475), + [anon_sym___fastcall] = ACTIONS(2475), + [anon_sym___thiscall] = ACTIONS(2475), + [anon_sym___vectorcall] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2475), + [anon_sym_register] = ACTIONS(2475), + [anon_sym_inline] = ACTIONS(2475), + [anon_sym_thread_local] = ACTIONS(2475), + [anon_sym_input] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_volatile] = ACTIONS(2475), + [anon_sym_restrict] = ACTIONS(2475), + [anon_sym__Atomic] = ACTIONS(2475), + [anon_sym_mutable] = ACTIONS(2475), + [anon_sym_constexpr] = ACTIONS(2475), + [anon_sym_constinit] = ACTIONS(2475), + [anon_sym_consteval] = ACTIONS(2475), + [anon_sym_signed] = ACTIONS(2475), + [anon_sym_unsigned] = ACTIONS(2475), + [anon_sym_long] = ACTIONS(2475), + [anon_sym_short] = ACTIONS(2475), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_class] = ACTIONS(2475), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_switch] = ACTIONS(2475), + [anon_sym_case] = ACTIONS(2475), + [anon_sym_default] = ACTIONS(2475), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_do] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_not] = ACTIONS(2475), + [anon_sym_compl] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2477), + [anon_sym_PLUS_PLUS] = ACTIONS(2477), + [anon_sym_sizeof] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), + [anon_sym_L_SQUOTE] = ACTIONS(2477), + [anon_sym_u_SQUOTE] = ACTIONS(2477), + [anon_sym_U_SQUOTE] = ACTIONS(2477), + [anon_sym_u8_SQUOTE] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2477), + [anon_sym_L_DQUOTE] = ACTIONS(2477), + [anon_sym_u_DQUOTE] = ACTIONS(2477), + [anon_sym_U_DQUOTE] = ACTIONS(2477), + [anon_sym_u8_DQUOTE] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2477), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_null] = ACTIONS(2475), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2603), - [anon_sym_decltype] = ACTIONS(2603), - [anon_sym_virtual] = ACTIONS(2603), - [anon_sym_explicit] = ACTIONS(2603), - [anon_sym_typename] = ACTIONS(2603), - [anon_sym_template] = ACTIONS(2603), - [anon_sym_operator] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2603), - [anon_sym_delete] = ACTIONS(2603), - [anon_sym_throw] = ACTIONS(2603), - [anon_sym_namespace] = ACTIONS(2603), - [anon_sym_using] = ACTIONS(2603), - [anon_sym_static_assert] = ACTIONS(2603), - [anon_sym_concept] = ACTIONS(2603), - [anon_sym_co_return] = ACTIONS(2603), - [anon_sym_co_yield] = ACTIONS(2603), - [anon_sym_R_DQUOTE] = ACTIONS(2605), - [anon_sym_LR_DQUOTE] = ACTIONS(2605), - [anon_sym_uR_DQUOTE] = ACTIONS(2605), - [anon_sym_UR_DQUOTE] = ACTIONS(2605), - [anon_sym_u8R_DQUOTE] = ACTIONS(2605), - [anon_sym_co_await] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2603), - [anon_sym_requires] = ACTIONS(2603), - [sym_this] = ACTIONS(2603), - [sym_nullptr] = ACTIONS(2603), + [sym_auto] = ACTIONS(2475), + [anon_sym_decltype] = ACTIONS(2475), + [anon_sym_virtual] = ACTIONS(2475), + [anon_sym_explicit] = ACTIONS(2475), + [anon_sym_typename] = ACTIONS(2475), + [anon_sym_template] = ACTIONS(2475), + [anon_sym_operator] = ACTIONS(2475), + [anon_sym_try] = ACTIONS(2475), + [anon_sym_delete] = ACTIONS(2475), + [anon_sym_throw] = ACTIONS(2475), + [anon_sym_namespace] = ACTIONS(2475), + [anon_sym_using] = ACTIONS(2475), + [anon_sym_static_assert] = ACTIONS(2475), + [anon_sym_concept] = ACTIONS(2475), + [anon_sym_co_return] = ACTIONS(2475), + [anon_sym_co_yield] = ACTIONS(2475), + [anon_sym_R_DQUOTE] = ACTIONS(2477), + [anon_sym_LR_DQUOTE] = ACTIONS(2477), + [anon_sym_uR_DQUOTE] = ACTIONS(2477), + [anon_sym_UR_DQUOTE] = ACTIONS(2477), + [anon_sym_u8R_DQUOTE] = ACTIONS(2477), + [anon_sym_co_await] = ACTIONS(2475), + [anon_sym_new] = ACTIONS(2475), + [anon_sym_requires] = ACTIONS(2475), + [sym_this] = ACTIONS(2475), + [sym_nullptr] = ACTIONS(2475), }, [656] = { - [sym_identifier] = ACTIONS(2611), - [aux_sym_preproc_include_token1] = ACTIONS(2611), - [aux_sym_preproc_def_token1] = ACTIONS(2611), - [aux_sym_preproc_if_token1] = ACTIONS(2611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), - [sym_preproc_directive] = ACTIONS(2611), - [anon_sym_LPAREN2] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2611), - [anon_sym_PLUS] = ACTIONS(2611), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_typedef] = ACTIONS(2611), - [anon_sym_extern] = ACTIONS(2611), - [anon_sym___attribute__] = ACTIONS(2611), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), - [anon_sym___declspec] = ACTIONS(2611), - [anon_sym___based] = ACTIONS(2611), - [anon_sym___cdecl] = ACTIONS(2611), - [anon_sym___clrcall] = ACTIONS(2611), - [anon_sym___stdcall] = ACTIONS(2611), - [anon_sym___fastcall] = ACTIONS(2611), - [anon_sym___thiscall] = ACTIONS(2611), - [anon_sym___vectorcall] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_RBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2611), - [anon_sym_static] = ACTIONS(2611), - [anon_sym_register] = ACTIONS(2611), - [anon_sym_inline] = ACTIONS(2611), - [anon_sym_thread_local] = ACTIONS(2611), - [anon_sym_const] = ACTIONS(2611), - [anon_sym_volatile] = ACTIONS(2611), - [anon_sym_restrict] = ACTIONS(2611), - [anon_sym__Atomic] = ACTIONS(2611), - [anon_sym_mutable] = ACTIONS(2611), - [anon_sym_constexpr] = ACTIONS(2611), - [anon_sym_constinit] = ACTIONS(2611), - [anon_sym_consteval] = ACTIONS(2611), - [anon_sym_signed] = ACTIONS(2611), - [anon_sym_unsigned] = ACTIONS(2611), - [anon_sym_long] = ACTIONS(2611), - [anon_sym_short] = ACTIONS(2611), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_enum] = ACTIONS(2611), - [anon_sym_class] = ACTIONS(2611), - [anon_sym_struct] = ACTIONS(2611), - [anon_sym_union] = ACTIONS(2611), - [anon_sym_if] = ACTIONS(2611), - [anon_sym_else] = ACTIONS(2611), - [anon_sym_switch] = ACTIONS(2611), - [anon_sym_case] = ACTIONS(2611), - [anon_sym_default] = ACTIONS(2611), - [anon_sym_while] = ACTIONS(2611), - [anon_sym_do] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2611), - [anon_sym_break] = ACTIONS(2611), - [anon_sym_continue] = ACTIONS(2611), - [anon_sym_goto] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(2611), - [anon_sym_compl] = ACTIONS(2611), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_sizeof] = ACTIONS(2611), - [sym_number_literal] = ACTIONS(2613), - [anon_sym_L_SQUOTE] = ACTIONS(2613), - [anon_sym_u_SQUOTE] = ACTIONS(2613), - [anon_sym_U_SQUOTE] = ACTIONS(2613), - [anon_sym_u8_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_L_DQUOTE] = ACTIONS(2613), - [anon_sym_u_DQUOTE] = ACTIONS(2613), - [anon_sym_U_DQUOTE] = ACTIONS(2613), - [anon_sym_u8_DQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [sym_true] = ACTIONS(2611), - [sym_false] = ACTIONS(2611), - [sym_null] = ACTIONS(2611), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2471), + [aux_sym_preproc_include_token1] = ACTIONS(2471), + [aux_sym_preproc_def_token1] = ACTIONS(2471), + [aux_sym_preproc_if_token1] = ACTIONS(2471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2471), + [sym_preproc_directive] = ACTIONS(2471), + [anon_sym_LPAREN2] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2473), + [anon_sym_TILDE] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_typedef] = ACTIONS(2471), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym___attribute__] = ACTIONS(2471), + [anon_sym_COLON_COLON] = ACTIONS(2473), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2473), + [anon_sym___declspec] = ACTIONS(2471), + [anon_sym___based] = ACTIONS(2471), + [anon_sym___cdecl] = ACTIONS(2471), + [anon_sym___clrcall] = ACTIONS(2471), + [anon_sym___stdcall] = ACTIONS(2471), + [anon_sym___fastcall] = ACTIONS(2471), + [anon_sym___thiscall] = ACTIONS(2471), + [anon_sym___vectorcall] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_static] = ACTIONS(2471), + [anon_sym_register] = ACTIONS(2471), + [anon_sym_inline] = ACTIONS(2471), + [anon_sym_thread_local] = ACTIONS(2471), + [anon_sym_input] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [anon_sym_volatile] = ACTIONS(2471), + [anon_sym_restrict] = ACTIONS(2471), + [anon_sym__Atomic] = ACTIONS(2471), + [anon_sym_mutable] = ACTIONS(2471), + [anon_sym_constexpr] = ACTIONS(2471), + [anon_sym_constinit] = ACTIONS(2471), + [anon_sym_consteval] = ACTIONS(2471), + [anon_sym_signed] = ACTIONS(2471), + [anon_sym_unsigned] = ACTIONS(2471), + [anon_sym_long] = ACTIONS(2471), + [anon_sym_short] = ACTIONS(2471), + [sym_primitive_type] = ACTIONS(2471), + [anon_sym_enum] = ACTIONS(2471), + [anon_sym_class] = ACTIONS(2471), + [anon_sym_struct] = ACTIONS(2471), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_else] = ACTIONS(2471), + [anon_sym_switch] = ACTIONS(2471), + [anon_sym_case] = ACTIONS(2471), + [anon_sym_default] = ACTIONS(2471), + [anon_sym_while] = ACTIONS(2471), + [anon_sym_do] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_goto] = ACTIONS(2471), + [anon_sym_not] = ACTIONS(2471), + [anon_sym_compl] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(2473), + [anon_sym_PLUS_PLUS] = ACTIONS(2473), + [anon_sym_sizeof] = ACTIONS(2471), + [sym_number_literal] = ACTIONS(2473), + [anon_sym_L_SQUOTE] = ACTIONS(2473), + [anon_sym_u_SQUOTE] = ACTIONS(2473), + [anon_sym_U_SQUOTE] = ACTIONS(2473), + [anon_sym_u8_SQUOTE] = ACTIONS(2473), + [anon_sym_SQUOTE] = ACTIONS(2473), + [anon_sym_L_DQUOTE] = ACTIONS(2473), + [anon_sym_u_DQUOTE] = ACTIONS(2473), + [anon_sym_U_DQUOTE] = ACTIONS(2473), + [anon_sym_u8_DQUOTE] = ACTIONS(2473), + [anon_sym_DQUOTE] = ACTIONS(2473), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_null] = ACTIONS(2471), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2611), - [anon_sym_decltype] = ACTIONS(2611), - [anon_sym_virtual] = ACTIONS(2611), - [anon_sym_explicit] = ACTIONS(2611), - [anon_sym_typename] = ACTIONS(2611), - [anon_sym_template] = ACTIONS(2611), - [anon_sym_operator] = ACTIONS(2611), - [anon_sym_try] = ACTIONS(2611), - [anon_sym_delete] = ACTIONS(2611), - [anon_sym_throw] = ACTIONS(2611), - [anon_sym_namespace] = ACTIONS(2611), - [anon_sym_using] = ACTIONS(2611), - [anon_sym_static_assert] = ACTIONS(2611), - [anon_sym_concept] = ACTIONS(2611), - [anon_sym_co_return] = ACTIONS(2611), - [anon_sym_co_yield] = ACTIONS(2611), - [anon_sym_R_DQUOTE] = ACTIONS(2613), - [anon_sym_LR_DQUOTE] = ACTIONS(2613), - [anon_sym_uR_DQUOTE] = ACTIONS(2613), - [anon_sym_UR_DQUOTE] = ACTIONS(2613), - [anon_sym_u8R_DQUOTE] = ACTIONS(2613), - [anon_sym_co_await] = ACTIONS(2611), - [anon_sym_new] = ACTIONS(2611), - [anon_sym_requires] = ACTIONS(2611), - [sym_this] = ACTIONS(2611), - [sym_nullptr] = ACTIONS(2611), + [sym_auto] = ACTIONS(2471), + [anon_sym_decltype] = ACTIONS(2471), + [anon_sym_virtual] = ACTIONS(2471), + [anon_sym_explicit] = ACTIONS(2471), + [anon_sym_typename] = ACTIONS(2471), + [anon_sym_template] = ACTIONS(2471), + [anon_sym_operator] = ACTIONS(2471), + [anon_sym_try] = ACTIONS(2471), + [anon_sym_delete] = ACTIONS(2471), + [anon_sym_throw] = ACTIONS(2471), + [anon_sym_namespace] = ACTIONS(2471), + [anon_sym_using] = ACTIONS(2471), + [anon_sym_static_assert] = ACTIONS(2471), + [anon_sym_concept] = ACTIONS(2471), + [anon_sym_co_return] = ACTIONS(2471), + [anon_sym_co_yield] = ACTIONS(2471), + [anon_sym_R_DQUOTE] = ACTIONS(2473), + [anon_sym_LR_DQUOTE] = ACTIONS(2473), + [anon_sym_uR_DQUOTE] = ACTIONS(2473), + [anon_sym_UR_DQUOTE] = ACTIONS(2473), + [anon_sym_u8R_DQUOTE] = ACTIONS(2473), + [anon_sym_co_await] = ACTIONS(2471), + [anon_sym_new] = ACTIONS(2471), + [anon_sym_requires] = ACTIONS(2471), + [sym_this] = ACTIONS(2471), + [sym_nullptr] = ACTIONS(2471), }, [657] = { - [sym_identifier] = ACTIONS(2615), - [aux_sym_preproc_include_token1] = ACTIONS(2615), - [aux_sym_preproc_def_token1] = ACTIONS(2615), - [aux_sym_preproc_if_token1] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), - [sym_preproc_directive] = ACTIONS(2615), - [anon_sym_LPAREN2] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2615), - [anon_sym_PLUS] = ACTIONS(2615), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_typedef] = ACTIONS(2615), - [anon_sym_extern] = ACTIONS(2615), - [anon_sym___attribute__] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), - [anon_sym___declspec] = ACTIONS(2615), - [anon_sym___based] = ACTIONS(2615), - [anon_sym___cdecl] = ACTIONS(2615), - [anon_sym___clrcall] = ACTIONS(2615), - [anon_sym___stdcall] = ACTIONS(2615), - [anon_sym___fastcall] = ACTIONS(2615), - [anon_sym___thiscall] = ACTIONS(2615), - [anon_sym___vectorcall] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_RBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_static] = ACTIONS(2615), - [anon_sym_register] = ACTIONS(2615), - [anon_sym_inline] = ACTIONS(2615), - [anon_sym_thread_local] = ACTIONS(2615), - [anon_sym_const] = ACTIONS(2615), - [anon_sym_volatile] = ACTIONS(2615), - [anon_sym_restrict] = ACTIONS(2615), - [anon_sym__Atomic] = ACTIONS(2615), - [anon_sym_mutable] = ACTIONS(2615), - [anon_sym_constexpr] = ACTIONS(2615), - [anon_sym_constinit] = ACTIONS(2615), - [anon_sym_consteval] = ACTIONS(2615), - [anon_sym_signed] = ACTIONS(2615), - [anon_sym_unsigned] = ACTIONS(2615), - [anon_sym_long] = ACTIONS(2615), - [anon_sym_short] = ACTIONS(2615), - [sym_primitive_type] = ACTIONS(2615), - [anon_sym_enum] = ACTIONS(2615), - [anon_sym_class] = ACTIONS(2615), - [anon_sym_struct] = ACTIONS(2615), - [anon_sym_union] = ACTIONS(2615), - [anon_sym_if] = ACTIONS(2615), - [anon_sym_else] = ACTIONS(2615), - [anon_sym_switch] = ACTIONS(2615), - [anon_sym_case] = ACTIONS(2615), - [anon_sym_default] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2615), - [anon_sym_do] = ACTIONS(2615), - [anon_sym_for] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_goto] = ACTIONS(2615), - [anon_sym_not] = ACTIONS(2615), - [anon_sym_compl] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_sizeof] = ACTIONS(2615), - [sym_number_literal] = ACTIONS(2617), - [anon_sym_L_SQUOTE] = ACTIONS(2617), - [anon_sym_u_SQUOTE] = ACTIONS(2617), - [anon_sym_U_SQUOTE] = ACTIONS(2617), - [anon_sym_u8_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_L_DQUOTE] = ACTIONS(2617), - [anon_sym_u_DQUOTE] = ACTIONS(2617), - [anon_sym_U_DQUOTE] = ACTIONS(2617), - [anon_sym_u8_DQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [sym_true] = ACTIONS(2615), - [sym_false] = ACTIONS(2615), - [sym_null] = ACTIONS(2615), + [ts_builtin_sym_end] = ACTIONS(2469), + [sym_identifier] = ACTIONS(2467), + [aux_sym_preproc_include_token1] = ACTIONS(2467), + [aux_sym_preproc_def_token1] = ACTIONS(2467), + [aux_sym_preproc_if_token1] = ACTIONS(2467), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2467), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2467), + [sym_preproc_directive] = ACTIONS(2467), + [anon_sym_LPAREN2] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_AMP_AMP] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_typedef] = ACTIONS(2467), + [anon_sym_extern] = ACTIONS(2467), + [anon_sym___attribute__] = ACTIONS(2467), + [anon_sym_COLON_COLON] = ACTIONS(2469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2469), + [anon_sym___declspec] = ACTIONS(2467), + [anon_sym___based] = ACTIONS(2467), + [anon_sym___cdecl] = ACTIONS(2467), + [anon_sym___clrcall] = ACTIONS(2467), + [anon_sym___stdcall] = ACTIONS(2467), + [anon_sym___fastcall] = ACTIONS(2467), + [anon_sym___thiscall] = ACTIONS(2467), + [anon_sym___vectorcall] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_static] = ACTIONS(2467), + [anon_sym_register] = ACTIONS(2467), + [anon_sym_inline] = ACTIONS(2467), + [anon_sym_thread_local] = ACTIONS(2467), + [anon_sym_input] = ACTIONS(2467), + [anon_sym_const] = ACTIONS(2467), + [anon_sym_volatile] = ACTIONS(2467), + [anon_sym_restrict] = ACTIONS(2467), + [anon_sym__Atomic] = ACTIONS(2467), + [anon_sym_mutable] = ACTIONS(2467), + [anon_sym_constexpr] = ACTIONS(2467), + [anon_sym_constinit] = ACTIONS(2467), + [anon_sym_consteval] = ACTIONS(2467), + [anon_sym_signed] = ACTIONS(2467), + [anon_sym_unsigned] = ACTIONS(2467), + [anon_sym_long] = ACTIONS(2467), + [anon_sym_short] = ACTIONS(2467), + [sym_primitive_type] = ACTIONS(2467), + [anon_sym_enum] = ACTIONS(2467), + [anon_sym_class] = ACTIONS(2467), + [anon_sym_struct] = ACTIONS(2467), + [anon_sym_union] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_else] = ACTIONS(2467), + [anon_sym_switch] = ACTIONS(2467), + [anon_sym_case] = ACTIONS(2467), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2467), + [anon_sym_do] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_goto] = ACTIONS(2467), + [anon_sym_not] = ACTIONS(2467), + [anon_sym_compl] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2469), + [anon_sym_PLUS_PLUS] = ACTIONS(2469), + [anon_sym_sizeof] = ACTIONS(2467), + [sym_number_literal] = ACTIONS(2469), + [anon_sym_L_SQUOTE] = ACTIONS(2469), + [anon_sym_u_SQUOTE] = ACTIONS(2469), + [anon_sym_U_SQUOTE] = ACTIONS(2469), + [anon_sym_u8_SQUOTE] = ACTIONS(2469), + [anon_sym_SQUOTE] = ACTIONS(2469), + [anon_sym_L_DQUOTE] = ACTIONS(2469), + [anon_sym_u_DQUOTE] = ACTIONS(2469), + [anon_sym_U_DQUOTE] = ACTIONS(2469), + [anon_sym_u8_DQUOTE] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2469), + [sym_true] = ACTIONS(2467), + [sym_false] = ACTIONS(2467), + [sym_null] = ACTIONS(2467), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2615), - [anon_sym_decltype] = ACTIONS(2615), - [anon_sym_virtual] = ACTIONS(2615), - [anon_sym_explicit] = ACTIONS(2615), - [anon_sym_typename] = ACTIONS(2615), - [anon_sym_template] = ACTIONS(2615), - [anon_sym_operator] = ACTIONS(2615), - [anon_sym_try] = ACTIONS(2615), - [anon_sym_delete] = ACTIONS(2615), - [anon_sym_throw] = ACTIONS(2615), - [anon_sym_namespace] = ACTIONS(2615), - [anon_sym_using] = ACTIONS(2615), - [anon_sym_static_assert] = ACTIONS(2615), - [anon_sym_concept] = ACTIONS(2615), - [anon_sym_co_return] = ACTIONS(2615), - [anon_sym_co_yield] = ACTIONS(2615), - [anon_sym_R_DQUOTE] = ACTIONS(2617), - [anon_sym_LR_DQUOTE] = ACTIONS(2617), - [anon_sym_uR_DQUOTE] = ACTIONS(2617), - [anon_sym_UR_DQUOTE] = ACTIONS(2617), - [anon_sym_u8R_DQUOTE] = ACTIONS(2617), - [anon_sym_co_await] = ACTIONS(2615), - [anon_sym_new] = ACTIONS(2615), - [anon_sym_requires] = ACTIONS(2615), - [sym_this] = ACTIONS(2615), - [sym_nullptr] = ACTIONS(2615), + [sym_auto] = ACTIONS(2467), + [anon_sym_decltype] = ACTIONS(2467), + [anon_sym_virtual] = ACTIONS(2467), + [anon_sym_explicit] = ACTIONS(2467), + [anon_sym_typename] = ACTIONS(2467), + [anon_sym_template] = ACTIONS(2467), + [anon_sym_operator] = ACTIONS(2467), + [anon_sym_try] = ACTIONS(2467), + [anon_sym_delete] = ACTIONS(2467), + [anon_sym_throw] = ACTIONS(2467), + [anon_sym_namespace] = ACTIONS(2467), + [anon_sym_using] = ACTIONS(2467), + [anon_sym_static_assert] = ACTIONS(2467), + [anon_sym_concept] = ACTIONS(2467), + [anon_sym_co_return] = ACTIONS(2467), + [anon_sym_co_yield] = ACTIONS(2467), + [anon_sym_R_DQUOTE] = ACTIONS(2469), + [anon_sym_LR_DQUOTE] = ACTIONS(2469), + [anon_sym_uR_DQUOTE] = ACTIONS(2469), + [anon_sym_UR_DQUOTE] = ACTIONS(2469), + [anon_sym_u8R_DQUOTE] = ACTIONS(2469), + [anon_sym_co_await] = ACTIONS(2467), + [anon_sym_new] = ACTIONS(2467), + [anon_sym_requires] = ACTIONS(2467), + [sym_this] = ACTIONS(2467), + [sym_nullptr] = ACTIONS(2467), }, [658] = { - [sym_identifier] = ACTIONS(2623), - [aux_sym_preproc_include_token1] = ACTIONS(2623), - [aux_sym_preproc_def_token1] = ACTIONS(2623), - [aux_sym_preproc_if_token1] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), - [sym_preproc_directive] = ACTIONS(2623), - [anon_sym_LPAREN2] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2623), - [anon_sym_PLUS] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_typedef] = ACTIONS(2623), - [anon_sym_extern] = ACTIONS(2623), - [anon_sym___attribute__] = ACTIONS(2623), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), - [anon_sym___declspec] = ACTIONS(2623), - [anon_sym___based] = ACTIONS(2623), - [anon_sym___cdecl] = ACTIONS(2623), - [anon_sym___clrcall] = ACTIONS(2623), - [anon_sym___stdcall] = ACTIONS(2623), - [anon_sym___fastcall] = ACTIONS(2623), - [anon_sym___thiscall] = ACTIONS(2623), - [anon_sym___vectorcall] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_RBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_static] = ACTIONS(2623), - [anon_sym_register] = ACTIONS(2623), - [anon_sym_inline] = ACTIONS(2623), - [anon_sym_thread_local] = ACTIONS(2623), - [anon_sym_const] = ACTIONS(2623), - [anon_sym_volatile] = ACTIONS(2623), - [anon_sym_restrict] = ACTIONS(2623), - [anon_sym__Atomic] = ACTIONS(2623), - [anon_sym_mutable] = ACTIONS(2623), - [anon_sym_constexpr] = ACTIONS(2623), - [anon_sym_constinit] = ACTIONS(2623), - [anon_sym_consteval] = ACTIONS(2623), - [anon_sym_signed] = ACTIONS(2623), - [anon_sym_unsigned] = ACTIONS(2623), - [anon_sym_long] = ACTIONS(2623), - [anon_sym_short] = ACTIONS(2623), - [sym_primitive_type] = ACTIONS(2623), - [anon_sym_enum] = ACTIONS(2623), - [anon_sym_class] = ACTIONS(2623), - [anon_sym_struct] = ACTIONS(2623), - [anon_sym_union] = ACTIONS(2623), - [anon_sym_if] = ACTIONS(2623), - [anon_sym_else] = ACTIONS(2623), - [anon_sym_switch] = ACTIONS(2623), - [anon_sym_case] = ACTIONS(2623), - [anon_sym_default] = ACTIONS(2623), - [anon_sym_while] = ACTIONS(2623), - [anon_sym_do] = ACTIONS(2623), - [anon_sym_for] = ACTIONS(2623), - [anon_sym_return] = ACTIONS(2623), - [anon_sym_break] = ACTIONS(2623), - [anon_sym_continue] = ACTIONS(2623), - [anon_sym_goto] = ACTIONS(2623), - [anon_sym_not] = ACTIONS(2623), - [anon_sym_compl] = ACTIONS(2623), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_sizeof] = ACTIONS(2623), - [sym_number_literal] = ACTIONS(2625), - [anon_sym_L_SQUOTE] = ACTIONS(2625), - [anon_sym_u_SQUOTE] = ACTIONS(2625), - [anon_sym_U_SQUOTE] = ACTIONS(2625), - [anon_sym_u8_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_L_DQUOTE] = ACTIONS(2625), - [anon_sym_u_DQUOTE] = ACTIONS(2625), - [anon_sym_U_DQUOTE] = ACTIONS(2625), - [anon_sym_u8_DQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [sym_true] = ACTIONS(2623), - [sym_false] = ACTIONS(2623), - [sym_null] = ACTIONS(2623), + [ts_builtin_sym_end] = ACTIONS(2465), + [sym_identifier] = ACTIONS(2463), + [aux_sym_preproc_include_token1] = ACTIONS(2463), + [aux_sym_preproc_def_token1] = ACTIONS(2463), + [aux_sym_preproc_if_token1] = ACTIONS(2463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2463), + [sym_preproc_directive] = ACTIONS(2463), + [anon_sym_LPAREN2] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_TILDE] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_AMP_AMP] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2465), + [anon_sym_typedef] = ACTIONS(2463), + [anon_sym_extern] = ACTIONS(2463), + [anon_sym___attribute__] = ACTIONS(2463), + [anon_sym_COLON_COLON] = ACTIONS(2465), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), + [anon_sym___declspec] = ACTIONS(2463), + [anon_sym___based] = ACTIONS(2463), + [anon_sym___cdecl] = ACTIONS(2463), + [anon_sym___clrcall] = ACTIONS(2463), + [anon_sym___stdcall] = ACTIONS(2463), + [anon_sym___fastcall] = ACTIONS(2463), + [anon_sym___thiscall] = ACTIONS(2463), + [anon_sym___vectorcall] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_static] = ACTIONS(2463), + [anon_sym_register] = ACTIONS(2463), + [anon_sym_inline] = ACTIONS(2463), + [anon_sym_thread_local] = ACTIONS(2463), + [anon_sym_input] = ACTIONS(2463), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_volatile] = ACTIONS(2463), + [anon_sym_restrict] = ACTIONS(2463), + [anon_sym__Atomic] = ACTIONS(2463), + [anon_sym_mutable] = ACTIONS(2463), + [anon_sym_constexpr] = ACTIONS(2463), + [anon_sym_constinit] = ACTIONS(2463), + [anon_sym_consteval] = ACTIONS(2463), + [anon_sym_signed] = ACTIONS(2463), + [anon_sym_unsigned] = ACTIONS(2463), + [anon_sym_long] = ACTIONS(2463), + [anon_sym_short] = ACTIONS(2463), + [sym_primitive_type] = ACTIONS(2463), + [anon_sym_enum] = ACTIONS(2463), + [anon_sym_class] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_else] = ACTIONS(2463), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(2463), + [anon_sym_while] = ACTIONS(2463), + [anon_sym_do] = ACTIONS(2463), + [anon_sym_for] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2463), + [anon_sym_break] = ACTIONS(2463), + [anon_sym_continue] = ACTIONS(2463), + [anon_sym_goto] = ACTIONS(2463), + [anon_sym_not] = ACTIONS(2463), + [anon_sym_compl] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2465), + [anon_sym_PLUS_PLUS] = ACTIONS(2465), + [anon_sym_sizeof] = ACTIONS(2463), + [sym_number_literal] = ACTIONS(2465), + [anon_sym_L_SQUOTE] = ACTIONS(2465), + [anon_sym_u_SQUOTE] = ACTIONS(2465), + [anon_sym_U_SQUOTE] = ACTIONS(2465), + [anon_sym_u8_SQUOTE] = ACTIONS(2465), + [anon_sym_SQUOTE] = ACTIONS(2465), + [anon_sym_L_DQUOTE] = ACTIONS(2465), + [anon_sym_u_DQUOTE] = ACTIONS(2465), + [anon_sym_U_DQUOTE] = ACTIONS(2465), + [anon_sym_u8_DQUOTE] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2465), + [sym_true] = ACTIONS(2463), + [sym_false] = ACTIONS(2463), + [sym_null] = ACTIONS(2463), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2623), - [anon_sym_decltype] = ACTIONS(2623), - [anon_sym_virtual] = ACTIONS(2623), - [anon_sym_explicit] = ACTIONS(2623), - [anon_sym_typename] = ACTIONS(2623), - [anon_sym_template] = ACTIONS(2623), - [anon_sym_operator] = ACTIONS(2623), - [anon_sym_try] = ACTIONS(2623), - [anon_sym_delete] = ACTIONS(2623), - [anon_sym_throw] = ACTIONS(2623), - [anon_sym_namespace] = ACTIONS(2623), - [anon_sym_using] = ACTIONS(2623), - [anon_sym_static_assert] = ACTIONS(2623), - [anon_sym_concept] = ACTIONS(2623), - [anon_sym_co_return] = ACTIONS(2623), - [anon_sym_co_yield] = ACTIONS(2623), - [anon_sym_R_DQUOTE] = ACTIONS(2625), - [anon_sym_LR_DQUOTE] = ACTIONS(2625), - [anon_sym_uR_DQUOTE] = ACTIONS(2625), - [anon_sym_UR_DQUOTE] = ACTIONS(2625), - [anon_sym_u8R_DQUOTE] = ACTIONS(2625), - [anon_sym_co_await] = ACTIONS(2623), - [anon_sym_new] = ACTIONS(2623), - [anon_sym_requires] = ACTIONS(2623), - [sym_this] = ACTIONS(2623), - [sym_nullptr] = ACTIONS(2623), + [sym_auto] = ACTIONS(2463), + [anon_sym_decltype] = ACTIONS(2463), + [anon_sym_virtual] = ACTIONS(2463), + [anon_sym_explicit] = ACTIONS(2463), + [anon_sym_typename] = ACTIONS(2463), + [anon_sym_template] = ACTIONS(2463), + [anon_sym_operator] = ACTIONS(2463), + [anon_sym_try] = ACTIONS(2463), + [anon_sym_delete] = ACTIONS(2463), + [anon_sym_throw] = ACTIONS(2463), + [anon_sym_namespace] = ACTIONS(2463), + [anon_sym_using] = ACTIONS(2463), + [anon_sym_static_assert] = ACTIONS(2463), + [anon_sym_concept] = ACTIONS(2463), + [anon_sym_co_return] = ACTIONS(2463), + [anon_sym_co_yield] = ACTIONS(2463), + [anon_sym_R_DQUOTE] = ACTIONS(2465), + [anon_sym_LR_DQUOTE] = ACTIONS(2465), + [anon_sym_uR_DQUOTE] = ACTIONS(2465), + [anon_sym_UR_DQUOTE] = ACTIONS(2465), + [anon_sym_u8R_DQUOTE] = ACTIONS(2465), + [anon_sym_co_await] = ACTIONS(2463), + [anon_sym_new] = ACTIONS(2463), + [anon_sym_requires] = ACTIONS(2463), + [sym_this] = ACTIONS(2463), + [sym_nullptr] = ACTIONS(2463), }, [659] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2403), + [aux_sym_preproc_include_token1] = ACTIONS(2403), + [aux_sym_preproc_def_token1] = ACTIONS(2403), + [aux_sym_preproc_if_token1] = ACTIONS(2403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2403), + [sym_preproc_directive] = ACTIONS(2403), + [anon_sym_LPAREN2] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(2405), + [anon_sym_AMP] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_typedef] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym___attribute__] = ACTIONS(2403), + [anon_sym_COLON_COLON] = ACTIONS(2405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), + [anon_sym___declspec] = ACTIONS(2403), + [anon_sym___based] = ACTIONS(2403), + [anon_sym___cdecl] = ACTIONS(2403), + [anon_sym___clrcall] = ACTIONS(2403), + [anon_sym___stdcall] = ACTIONS(2403), + [anon_sym___fastcall] = ACTIONS(2403), + [anon_sym___thiscall] = ACTIONS(2403), + [anon_sym___vectorcall] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_inline] = ACTIONS(2403), + [anon_sym_thread_local] = ACTIONS(2403), + [anon_sym_input] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_volatile] = ACTIONS(2403), + [anon_sym_restrict] = ACTIONS(2403), + [anon_sym__Atomic] = ACTIONS(2403), + [anon_sym_mutable] = ACTIONS(2403), + [anon_sym_constexpr] = ACTIONS(2403), + [anon_sym_constinit] = ACTIONS(2403), + [anon_sym_consteval] = ACTIONS(2403), + [anon_sym_signed] = ACTIONS(2403), + [anon_sym_unsigned] = ACTIONS(2403), + [anon_sym_long] = ACTIONS(2403), + [anon_sym_short] = ACTIONS(2403), + [sym_primitive_type] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_class] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_switch] = ACTIONS(2403), + [anon_sym_case] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_goto] = ACTIONS(2403), + [anon_sym_not] = ACTIONS(2403), + [anon_sym_compl] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2405), + [anon_sym_PLUS_PLUS] = ACTIONS(2405), + [anon_sym_sizeof] = ACTIONS(2403), + [sym_number_literal] = ACTIONS(2405), + [anon_sym_L_SQUOTE] = ACTIONS(2405), + [anon_sym_u_SQUOTE] = ACTIONS(2405), + [anon_sym_U_SQUOTE] = ACTIONS(2405), + [anon_sym_u8_SQUOTE] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_L_DQUOTE] = ACTIONS(2405), + [anon_sym_u_DQUOTE] = ACTIONS(2405), + [anon_sym_U_DQUOTE] = ACTIONS(2405), + [anon_sym_u8_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [sym_true] = ACTIONS(2403), + [sym_false] = ACTIONS(2403), + [sym_null] = ACTIONS(2403), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2403), + [anon_sym_decltype] = ACTIONS(2403), + [anon_sym_virtual] = ACTIONS(2403), + [anon_sym_explicit] = ACTIONS(2403), + [anon_sym_typename] = ACTIONS(2403), + [anon_sym_template] = ACTIONS(2403), + [anon_sym_operator] = ACTIONS(2403), + [anon_sym_try] = ACTIONS(2403), + [anon_sym_delete] = ACTIONS(2403), + [anon_sym_throw] = ACTIONS(2403), + [anon_sym_namespace] = ACTIONS(2403), + [anon_sym_using] = ACTIONS(2403), + [anon_sym_static_assert] = ACTIONS(2403), + [anon_sym_concept] = ACTIONS(2403), + [anon_sym_co_return] = ACTIONS(2403), + [anon_sym_co_yield] = ACTIONS(2403), + [anon_sym_R_DQUOTE] = ACTIONS(2405), + [anon_sym_LR_DQUOTE] = ACTIONS(2405), + [anon_sym_uR_DQUOTE] = ACTIONS(2405), + [anon_sym_UR_DQUOTE] = ACTIONS(2405), + [anon_sym_u8R_DQUOTE] = ACTIONS(2405), + [anon_sym_co_await] = ACTIONS(2403), + [anon_sym_new] = ACTIONS(2403), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2403), + [sym_nullptr] = ACTIONS(2403), }, [660] = { - [sym_identifier] = ACTIONS(2627), - [aux_sym_preproc_include_token1] = ACTIONS(2627), - [aux_sym_preproc_def_token1] = ACTIONS(2627), - [aux_sym_preproc_if_token1] = ACTIONS(2627), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), - [sym_preproc_directive] = ACTIONS(2627), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_PLUS] = ACTIONS(2627), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_AMP_AMP] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym_typedef] = ACTIONS(2627), - [anon_sym_extern] = ACTIONS(2627), - [anon_sym___attribute__] = ACTIONS(2627), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), - [anon_sym___declspec] = ACTIONS(2627), - [anon_sym___based] = ACTIONS(2627), - [anon_sym___cdecl] = ACTIONS(2627), - [anon_sym___clrcall] = ACTIONS(2627), - [anon_sym___stdcall] = ACTIONS(2627), - [anon_sym___fastcall] = ACTIONS(2627), - [anon_sym___thiscall] = ACTIONS(2627), - [anon_sym___vectorcall] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_RBRACE] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_static] = ACTIONS(2627), - [anon_sym_register] = ACTIONS(2627), - [anon_sym_inline] = ACTIONS(2627), - [anon_sym_thread_local] = ACTIONS(2627), - [anon_sym_const] = ACTIONS(2627), - [anon_sym_volatile] = ACTIONS(2627), - [anon_sym_restrict] = ACTIONS(2627), - [anon_sym__Atomic] = ACTIONS(2627), - [anon_sym_mutable] = ACTIONS(2627), - [anon_sym_constexpr] = ACTIONS(2627), - [anon_sym_constinit] = ACTIONS(2627), - [anon_sym_consteval] = ACTIONS(2627), - [anon_sym_signed] = ACTIONS(2627), - [anon_sym_unsigned] = ACTIONS(2627), - [anon_sym_long] = ACTIONS(2627), - [anon_sym_short] = ACTIONS(2627), - [sym_primitive_type] = ACTIONS(2627), - [anon_sym_enum] = ACTIONS(2627), - [anon_sym_class] = ACTIONS(2627), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_union] = ACTIONS(2627), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2627), - [anon_sym_switch] = ACTIONS(2627), - [anon_sym_case] = ACTIONS(2627), - [anon_sym_default] = ACTIONS(2627), - [anon_sym_while] = ACTIONS(2627), - [anon_sym_do] = ACTIONS(2627), - [anon_sym_for] = ACTIONS(2627), - [anon_sym_return] = ACTIONS(2627), - [anon_sym_break] = ACTIONS(2627), - [anon_sym_continue] = ACTIONS(2627), - [anon_sym_goto] = ACTIONS(2627), - [anon_sym_not] = ACTIONS(2627), - [anon_sym_compl] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_sizeof] = ACTIONS(2627), - [sym_number_literal] = ACTIONS(2629), - [anon_sym_L_SQUOTE] = ACTIONS(2629), - [anon_sym_u_SQUOTE] = ACTIONS(2629), - [anon_sym_U_SQUOTE] = ACTIONS(2629), - [anon_sym_u8_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_L_DQUOTE] = ACTIONS(2629), - [anon_sym_u_DQUOTE] = ACTIONS(2629), - [anon_sym_U_DQUOTE] = ACTIONS(2629), - [anon_sym_u8_DQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [sym_null] = ACTIONS(2627), + [sym_identifier] = ACTIONS(2407), + [aux_sym_preproc_include_token1] = ACTIONS(2407), + [aux_sym_preproc_def_token1] = ACTIONS(2407), + [aux_sym_preproc_if_token1] = ACTIONS(2407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2407), + [sym_preproc_directive] = ACTIONS(2407), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_BANG] = ACTIONS(2409), + [anon_sym_TILDE] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2407), + [anon_sym_PLUS] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_AMP_AMP] = ACTIONS(2409), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2409), + [anon_sym_typedef] = ACTIONS(2407), + [anon_sym_extern] = ACTIONS(2407), + [anon_sym___attribute__] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2409), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2409), + [anon_sym___declspec] = ACTIONS(2407), + [anon_sym___based] = ACTIONS(2407), + [anon_sym___cdecl] = ACTIONS(2407), + [anon_sym___clrcall] = ACTIONS(2407), + [anon_sym___stdcall] = ACTIONS(2407), + [anon_sym___fastcall] = ACTIONS(2407), + [anon_sym___thiscall] = ACTIONS(2407), + [anon_sym___vectorcall] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_static] = ACTIONS(2407), + [anon_sym_register] = ACTIONS(2407), + [anon_sym_inline] = ACTIONS(2407), + [anon_sym_thread_local] = ACTIONS(2407), + [anon_sym_input] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [anon_sym_volatile] = ACTIONS(2407), + [anon_sym_restrict] = ACTIONS(2407), + [anon_sym__Atomic] = ACTIONS(2407), + [anon_sym_mutable] = ACTIONS(2407), + [anon_sym_constexpr] = ACTIONS(2407), + [anon_sym_constinit] = ACTIONS(2407), + [anon_sym_consteval] = ACTIONS(2407), + [anon_sym_signed] = ACTIONS(2407), + [anon_sym_unsigned] = ACTIONS(2407), + [anon_sym_long] = ACTIONS(2407), + [anon_sym_short] = ACTIONS(2407), + [sym_primitive_type] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2407), + [anon_sym_class] = ACTIONS(2407), + [anon_sym_struct] = ACTIONS(2407), + [anon_sym_union] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_else] = ACTIONS(2407), + [anon_sym_switch] = ACTIONS(2407), + [anon_sym_case] = ACTIONS(2407), + [anon_sym_default] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [anon_sym_do] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_goto] = ACTIONS(2407), + [anon_sym_not] = ACTIONS(2407), + [anon_sym_compl] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2409), + [anon_sym_PLUS_PLUS] = ACTIONS(2409), + [anon_sym_sizeof] = ACTIONS(2407), + [sym_number_literal] = ACTIONS(2409), + [anon_sym_L_SQUOTE] = ACTIONS(2409), + [anon_sym_u_SQUOTE] = ACTIONS(2409), + [anon_sym_U_SQUOTE] = ACTIONS(2409), + [anon_sym_u8_SQUOTE] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_L_DQUOTE] = ACTIONS(2409), + [anon_sym_u_DQUOTE] = ACTIONS(2409), + [anon_sym_U_DQUOTE] = ACTIONS(2409), + [anon_sym_u8_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(2409), + [sym_true] = ACTIONS(2407), + [sym_false] = ACTIONS(2407), + [sym_null] = ACTIONS(2407), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2627), - [anon_sym_decltype] = ACTIONS(2627), - [anon_sym_virtual] = ACTIONS(2627), - [anon_sym_explicit] = ACTIONS(2627), - [anon_sym_typename] = ACTIONS(2627), - [anon_sym_template] = ACTIONS(2627), - [anon_sym_operator] = ACTIONS(2627), - [anon_sym_try] = ACTIONS(2627), - [anon_sym_delete] = ACTIONS(2627), - [anon_sym_throw] = ACTIONS(2627), - [anon_sym_namespace] = ACTIONS(2627), - [anon_sym_using] = ACTIONS(2627), - [anon_sym_static_assert] = ACTIONS(2627), - [anon_sym_concept] = ACTIONS(2627), - [anon_sym_co_return] = ACTIONS(2627), - [anon_sym_co_yield] = ACTIONS(2627), - [anon_sym_R_DQUOTE] = ACTIONS(2629), - [anon_sym_LR_DQUOTE] = ACTIONS(2629), - [anon_sym_uR_DQUOTE] = ACTIONS(2629), - [anon_sym_UR_DQUOTE] = ACTIONS(2629), - [anon_sym_u8R_DQUOTE] = ACTIONS(2629), - [anon_sym_co_await] = ACTIONS(2627), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_requires] = ACTIONS(2627), - [sym_this] = ACTIONS(2627), - [sym_nullptr] = ACTIONS(2627), + [sym_auto] = ACTIONS(2407), + [anon_sym_decltype] = ACTIONS(2407), + [anon_sym_virtual] = ACTIONS(2407), + [anon_sym_explicit] = ACTIONS(2407), + [anon_sym_typename] = ACTIONS(2407), + [anon_sym_template] = ACTIONS(2407), + [anon_sym_operator] = ACTIONS(2407), + [anon_sym_try] = ACTIONS(2407), + [anon_sym_delete] = ACTIONS(2407), + [anon_sym_throw] = ACTIONS(2407), + [anon_sym_namespace] = ACTIONS(2407), + [anon_sym_using] = ACTIONS(2407), + [anon_sym_static_assert] = ACTIONS(2407), + [anon_sym_concept] = ACTIONS(2407), + [anon_sym_co_return] = ACTIONS(2407), + [anon_sym_co_yield] = ACTIONS(2407), + [anon_sym_R_DQUOTE] = ACTIONS(2409), + [anon_sym_LR_DQUOTE] = ACTIONS(2409), + [anon_sym_uR_DQUOTE] = ACTIONS(2409), + [anon_sym_UR_DQUOTE] = ACTIONS(2409), + [anon_sym_u8R_DQUOTE] = ACTIONS(2409), + [anon_sym_co_await] = ACTIONS(2407), + [anon_sym_new] = ACTIONS(2407), + [anon_sym_requires] = ACTIONS(2407), + [sym_this] = ACTIONS(2407), + [sym_nullptr] = ACTIONS(2407), }, [661] = { - [sym_identifier] = ACTIONS(2399), - [aux_sym_preproc_include_token1] = ACTIONS(2399), - [aux_sym_preproc_def_token1] = ACTIONS(2399), - [aux_sym_preproc_if_token1] = ACTIONS(2399), - [aux_sym_preproc_if_token2] = ACTIONS(2399), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2399), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2399), - [sym_preproc_directive] = ACTIONS(2399), - [anon_sym_LPAREN2] = ACTIONS(2401), - [anon_sym_BANG] = ACTIONS(2401), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2399), - [anon_sym_PLUS] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(2401), - [anon_sym_AMP_AMP] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_SEMI] = ACTIONS(2401), - [anon_sym_typedef] = ACTIONS(2399), - [anon_sym_extern] = ACTIONS(2399), - [anon_sym___attribute__] = ACTIONS(2399), - [anon_sym_COLON_COLON] = ACTIONS(2401), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2401), - [anon_sym___declspec] = ACTIONS(2399), - [anon_sym___based] = ACTIONS(2399), - [anon_sym___cdecl] = ACTIONS(2399), - [anon_sym___clrcall] = ACTIONS(2399), - [anon_sym___stdcall] = ACTIONS(2399), - [anon_sym___fastcall] = ACTIONS(2399), - [anon_sym___thiscall] = ACTIONS(2399), - [anon_sym___vectorcall] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_register] = ACTIONS(2399), - [anon_sym_inline] = ACTIONS(2399), - [anon_sym_thread_local] = ACTIONS(2399), - [anon_sym_const] = ACTIONS(2399), - [anon_sym_volatile] = ACTIONS(2399), - [anon_sym_restrict] = ACTIONS(2399), - [anon_sym__Atomic] = ACTIONS(2399), - [anon_sym_mutable] = ACTIONS(2399), - [anon_sym_constexpr] = ACTIONS(2399), - [anon_sym_constinit] = ACTIONS(2399), - [anon_sym_consteval] = ACTIONS(2399), - [anon_sym_signed] = ACTIONS(2399), - [anon_sym_unsigned] = ACTIONS(2399), - [anon_sym_long] = ACTIONS(2399), - [anon_sym_short] = ACTIONS(2399), - [sym_primitive_type] = ACTIONS(2399), - [anon_sym_enum] = ACTIONS(2399), - [anon_sym_class] = ACTIONS(2399), - [anon_sym_struct] = ACTIONS(2399), - [anon_sym_union] = ACTIONS(2399), - [anon_sym_if] = ACTIONS(2399), - [anon_sym_else] = ACTIONS(2853), - [anon_sym_switch] = ACTIONS(2399), - [anon_sym_case] = ACTIONS(2399), - [anon_sym_default] = ACTIONS(2399), - [anon_sym_while] = ACTIONS(2399), - [anon_sym_do] = ACTIONS(2399), - [anon_sym_for] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2399), - [anon_sym_break] = ACTIONS(2399), - [anon_sym_continue] = ACTIONS(2399), - [anon_sym_goto] = ACTIONS(2399), - [anon_sym_not] = ACTIONS(2399), - [anon_sym_compl] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2401), - [anon_sym_PLUS_PLUS] = ACTIONS(2401), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [anon_sym_L_SQUOTE] = ACTIONS(2401), - [anon_sym_u_SQUOTE] = ACTIONS(2401), - [anon_sym_U_SQUOTE] = ACTIONS(2401), - [anon_sym_u8_SQUOTE] = ACTIONS(2401), - [anon_sym_SQUOTE] = ACTIONS(2401), - [anon_sym_L_DQUOTE] = ACTIONS(2401), - [anon_sym_u_DQUOTE] = ACTIONS(2401), - [anon_sym_U_DQUOTE] = ACTIONS(2401), - [anon_sym_u8_DQUOTE] = ACTIONS(2401), - [anon_sym_DQUOTE] = ACTIONS(2401), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_null] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2449), + [aux_sym_preproc_include_token1] = ACTIONS(2449), + [aux_sym_preproc_def_token1] = ACTIONS(2449), + [aux_sym_preproc_if_token1] = ACTIONS(2449), + [aux_sym_preproc_if_token2] = ACTIONS(2449), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2449), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2449), + [sym_preproc_directive] = ACTIONS(2449), + [anon_sym_LPAREN2] = ACTIONS(2451), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_TILDE] = ACTIONS(2451), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2451), + [anon_sym_AMP_AMP] = ACTIONS(2451), + [anon_sym_AMP] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_typedef] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym___attribute__] = ACTIONS(2449), + [anon_sym_COLON_COLON] = ACTIONS(2451), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2451), + [anon_sym___declspec] = ACTIONS(2449), + [anon_sym___based] = ACTIONS(2449), + [anon_sym___cdecl] = ACTIONS(2449), + [anon_sym___clrcall] = ACTIONS(2449), + [anon_sym___stdcall] = ACTIONS(2449), + [anon_sym___fastcall] = ACTIONS(2449), + [anon_sym___thiscall] = ACTIONS(2449), + [anon_sym___vectorcall] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_register] = ACTIONS(2449), + [anon_sym_inline] = ACTIONS(2449), + [anon_sym_thread_local] = ACTIONS(2449), + [anon_sym_input] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_volatile] = ACTIONS(2449), + [anon_sym_restrict] = ACTIONS(2449), + [anon_sym__Atomic] = ACTIONS(2449), + [anon_sym_mutable] = ACTIONS(2449), + [anon_sym_constexpr] = ACTIONS(2449), + [anon_sym_constinit] = ACTIONS(2449), + [anon_sym_consteval] = ACTIONS(2449), + [anon_sym_signed] = ACTIONS(2449), + [anon_sym_unsigned] = ACTIONS(2449), + [anon_sym_long] = ACTIONS(2449), + [anon_sym_short] = ACTIONS(2449), + [sym_primitive_type] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_class] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(2449), + [anon_sym_union] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(2449), + [anon_sym_case] = ACTIONS(2449), + [anon_sym_default] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_goto] = ACTIONS(2449), + [anon_sym_not] = ACTIONS(2449), + [anon_sym_compl] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2451), + [anon_sym_PLUS_PLUS] = ACTIONS(2451), + [anon_sym_sizeof] = ACTIONS(2449), + [sym_number_literal] = ACTIONS(2451), + [anon_sym_L_SQUOTE] = ACTIONS(2451), + [anon_sym_u_SQUOTE] = ACTIONS(2451), + [anon_sym_U_SQUOTE] = ACTIONS(2451), + [anon_sym_u8_SQUOTE] = ACTIONS(2451), + [anon_sym_SQUOTE] = ACTIONS(2451), + [anon_sym_L_DQUOTE] = ACTIONS(2451), + [anon_sym_u_DQUOTE] = ACTIONS(2451), + [anon_sym_U_DQUOTE] = ACTIONS(2451), + [anon_sym_u8_DQUOTE] = ACTIONS(2451), + [anon_sym_DQUOTE] = ACTIONS(2451), + [sym_true] = ACTIONS(2449), + [sym_false] = ACTIONS(2449), + [sym_null] = ACTIONS(2449), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2399), - [anon_sym_decltype] = ACTIONS(2399), - [anon_sym_virtual] = ACTIONS(2399), - [anon_sym_explicit] = ACTIONS(2399), - [anon_sym_typename] = ACTIONS(2399), - [anon_sym_template] = ACTIONS(2399), - [anon_sym_operator] = ACTIONS(2399), - [anon_sym_try] = ACTIONS(2399), - [anon_sym_delete] = ACTIONS(2399), - [anon_sym_throw] = ACTIONS(2399), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_using] = ACTIONS(2399), - [anon_sym_static_assert] = ACTIONS(2399), - [anon_sym_concept] = ACTIONS(2399), - [anon_sym_co_return] = ACTIONS(2399), - [anon_sym_co_yield] = ACTIONS(2399), - [anon_sym_R_DQUOTE] = ACTIONS(2401), - [anon_sym_LR_DQUOTE] = ACTIONS(2401), - [anon_sym_uR_DQUOTE] = ACTIONS(2401), - [anon_sym_UR_DQUOTE] = ACTIONS(2401), - [anon_sym_u8R_DQUOTE] = ACTIONS(2401), - [anon_sym_co_await] = ACTIONS(2399), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_requires] = ACTIONS(2399), - [sym_this] = ACTIONS(2399), - [sym_nullptr] = ACTIONS(2399), + [sym_auto] = ACTIONS(2449), + [anon_sym_decltype] = ACTIONS(2449), + [anon_sym_virtual] = ACTIONS(2449), + [anon_sym_explicit] = ACTIONS(2449), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(2449), + [anon_sym_operator] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_delete] = ACTIONS(2449), + [anon_sym_throw] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_using] = ACTIONS(2449), + [anon_sym_static_assert] = ACTIONS(2449), + [anon_sym_concept] = ACTIONS(2449), + [anon_sym_co_return] = ACTIONS(2449), + [anon_sym_co_yield] = ACTIONS(2449), + [anon_sym_R_DQUOTE] = ACTIONS(2451), + [anon_sym_LR_DQUOTE] = ACTIONS(2451), + [anon_sym_uR_DQUOTE] = ACTIONS(2451), + [anon_sym_UR_DQUOTE] = ACTIONS(2451), + [anon_sym_u8R_DQUOTE] = ACTIONS(2451), + [anon_sym_co_await] = ACTIONS(2449), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_requires] = ACTIONS(2449), + [sym_this] = ACTIONS(2449), + [sym_nullptr] = ACTIONS(2449), }, [662] = { + [sym_identifier] = ACTIONS(2455), + [aux_sym_preproc_include_token1] = ACTIONS(2455), + [aux_sym_preproc_def_token1] = ACTIONS(2455), + [aux_sym_preproc_if_token1] = ACTIONS(2455), + [aux_sym_preproc_if_token2] = ACTIONS(2455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2455), + [sym_preproc_directive] = ACTIONS(2455), + [anon_sym_LPAREN2] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_typedef] = ACTIONS(2455), + [anon_sym_extern] = ACTIONS(2455), + [anon_sym___attribute__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2457), + [anon_sym___declspec] = ACTIONS(2455), + [anon_sym___based] = ACTIONS(2455), + [anon_sym___cdecl] = ACTIONS(2455), + [anon_sym___clrcall] = ACTIONS(2455), + [anon_sym___stdcall] = ACTIONS(2455), + [anon_sym___fastcall] = ACTIONS(2455), + [anon_sym___thiscall] = ACTIONS(2455), + [anon_sym___vectorcall] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_register] = ACTIONS(2455), + [anon_sym_inline] = ACTIONS(2455), + [anon_sym_thread_local] = ACTIONS(2455), + [anon_sym_input] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2455), + [anon_sym_volatile] = ACTIONS(2455), + [anon_sym_restrict] = ACTIONS(2455), + [anon_sym__Atomic] = ACTIONS(2455), + [anon_sym_mutable] = ACTIONS(2455), + [anon_sym_constexpr] = ACTIONS(2455), + [anon_sym_constinit] = ACTIONS(2455), + [anon_sym_consteval] = ACTIONS(2455), + [anon_sym_signed] = ACTIONS(2455), + [anon_sym_unsigned] = ACTIONS(2455), + [anon_sym_long] = ACTIONS(2455), + [anon_sym_short] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2455), + [anon_sym_enum] = ACTIONS(2455), + [anon_sym_class] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_else] = ACTIONS(2455), + [anon_sym_switch] = ACTIONS(2455), + [anon_sym_case] = ACTIONS(2455), + [anon_sym_default] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_do] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2455), + [anon_sym_continue] = ACTIONS(2455), + [anon_sym_goto] = ACTIONS(2455), + [anon_sym_not] = ACTIONS(2455), + [anon_sym_compl] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_sizeof] = ACTIONS(2455), + [sym_number_literal] = ACTIONS(2457), + [anon_sym_L_SQUOTE] = ACTIONS(2457), + [anon_sym_u_SQUOTE] = ACTIONS(2457), + [anon_sym_U_SQUOTE] = ACTIONS(2457), + [anon_sym_u8_SQUOTE] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_L_DQUOTE] = ACTIONS(2457), + [anon_sym_u_DQUOTE] = ACTIONS(2457), + [anon_sym_U_DQUOTE] = ACTIONS(2457), + [anon_sym_u8_DQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [sym_true] = ACTIONS(2455), + [sym_false] = ACTIONS(2455), + [sym_null] = ACTIONS(2455), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2455), + [anon_sym_decltype] = ACTIONS(2455), + [anon_sym_virtual] = ACTIONS(2455), + [anon_sym_explicit] = ACTIONS(2455), + [anon_sym_typename] = ACTIONS(2455), + [anon_sym_template] = ACTIONS(2455), + [anon_sym_operator] = ACTIONS(2455), + [anon_sym_try] = ACTIONS(2455), + [anon_sym_delete] = ACTIONS(2455), + [anon_sym_throw] = ACTIONS(2455), + [anon_sym_namespace] = ACTIONS(2455), + [anon_sym_using] = ACTIONS(2455), + [anon_sym_static_assert] = ACTIONS(2455), + [anon_sym_concept] = ACTIONS(2455), + [anon_sym_co_return] = ACTIONS(2455), + [anon_sym_co_yield] = ACTIONS(2455), + [anon_sym_R_DQUOTE] = ACTIONS(2457), + [anon_sym_LR_DQUOTE] = ACTIONS(2457), + [anon_sym_uR_DQUOTE] = ACTIONS(2457), + [anon_sym_UR_DQUOTE] = ACTIONS(2457), + [anon_sym_u8R_DQUOTE] = ACTIONS(2457), + [anon_sym_co_await] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2455), + [anon_sym_requires] = ACTIONS(2455), + [sym_this] = ACTIONS(2455), + [sym_nullptr] = ACTIONS(2455), + }, + [663] = { + [sym_identifier] = ACTIONS(2419), + [aux_sym_preproc_include_token1] = ACTIONS(2419), + [aux_sym_preproc_def_token1] = ACTIONS(2419), + [aux_sym_preproc_if_token1] = ACTIONS(2419), + [aux_sym_preproc_if_token2] = ACTIONS(2419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2419), + [sym_preproc_directive] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_AMP_AMP] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2421), + [anon_sym_typedef] = ACTIONS(2419), + [anon_sym_extern] = ACTIONS(2419), + [anon_sym___attribute__] = ACTIONS(2419), + [anon_sym_COLON_COLON] = ACTIONS(2421), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2421), + [anon_sym___declspec] = ACTIONS(2419), + [anon_sym___based] = ACTIONS(2419), + [anon_sym___cdecl] = ACTIONS(2419), + [anon_sym___clrcall] = ACTIONS(2419), + [anon_sym___stdcall] = ACTIONS(2419), + [anon_sym___fastcall] = ACTIONS(2419), + [anon_sym___thiscall] = ACTIONS(2419), + [anon_sym___vectorcall] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_static] = ACTIONS(2419), + [anon_sym_register] = ACTIONS(2419), + [anon_sym_inline] = ACTIONS(2419), + [anon_sym_thread_local] = ACTIONS(2419), + [anon_sym_input] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_volatile] = ACTIONS(2419), + [anon_sym_restrict] = ACTIONS(2419), + [anon_sym__Atomic] = ACTIONS(2419), + [anon_sym_mutable] = ACTIONS(2419), + [anon_sym_constexpr] = ACTIONS(2419), + [anon_sym_constinit] = ACTIONS(2419), + [anon_sym_consteval] = ACTIONS(2419), + [anon_sym_signed] = ACTIONS(2419), + [anon_sym_unsigned] = ACTIONS(2419), + [anon_sym_long] = ACTIONS(2419), + [anon_sym_short] = ACTIONS(2419), + [sym_primitive_type] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2419), + [anon_sym_class] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2419), + [anon_sym_union] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_else] = ACTIONS(2851), + [anon_sym_switch] = ACTIONS(2419), + [anon_sym_case] = ACTIONS(2419), + [anon_sym_default] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [anon_sym_do] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_goto] = ACTIONS(2419), + [anon_sym_not] = ACTIONS(2419), + [anon_sym_compl] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2421), + [anon_sym_PLUS_PLUS] = ACTIONS(2421), + [anon_sym_sizeof] = ACTIONS(2419), + [sym_number_literal] = ACTIONS(2421), + [anon_sym_L_SQUOTE] = ACTIONS(2421), + [anon_sym_u_SQUOTE] = ACTIONS(2421), + [anon_sym_U_SQUOTE] = ACTIONS(2421), + [anon_sym_u8_SQUOTE] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_L_DQUOTE] = ACTIONS(2421), + [anon_sym_u_DQUOTE] = ACTIONS(2421), + [anon_sym_U_DQUOTE] = ACTIONS(2421), + [anon_sym_u8_DQUOTE] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [sym_true] = ACTIONS(2419), + [sym_false] = ACTIONS(2419), + [sym_null] = ACTIONS(2419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2419), + [anon_sym_decltype] = ACTIONS(2419), + [anon_sym_virtual] = ACTIONS(2419), + [anon_sym_explicit] = ACTIONS(2419), + [anon_sym_typename] = ACTIONS(2419), + [anon_sym_template] = ACTIONS(2419), + [anon_sym_operator] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2419), + [anon_sym_delete] = ACTIONS(2419), + [anon_sym_throw] = ACTIONS(2419), + [anon_sym_namespace] = ACTIONS(2419), + [anon_sym_using] = ACTIONS(2419), + [anon_sym_static_assert] = ACTIONS(2419), + [anon_sym_concept] = ACTIONS(2419), + [anon_sym_co_return] = ACTIONS(2419), + [anon_sym_co_yield] = ACTIONS(2419), + [anon_sym_R_DQUOTE] = ACTIONS(2421), + [anon_sym_LR_DQUOTE] = ACTIONS(2421), + [anon_sym_uR_DQUOTE] = ACTIONS(2421), + [anon_sym_UR_DQUOTE] = ACTIONS(2421), + [anon_sym_u8R_DQUOTE] = ACTIONS(2421), + [anon_sym_co_await] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(2419), + [anon_sym_requires] = ACTIONS(2419), + [sym_this] = ACTIONS(2419), + [sym_nullptr] = ACTIONS(2419), + }, + [664] = { + [sym_identifier] = ACTIONS(2411), + [aux_sym_preproc_include_token1] = ACTIONS(2411), + [aux_sym_preproc_def_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2411), + [sym_preproc_directive] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym___attribute__] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2413), + [anon_sym___declspec] = ACTIONS(2411), + [anon_sym___based] = ACTIONS(2411), + [anon_sym___cdecl] = ACTIONS(2411), + [anon_sym___clrcall] = ACTIONS(2411), + [anon_sym___stdcall] = ACTIONS(2411), + [anon_sym___fastcall] = ACTIONS(2411), + [anon_sym___thiscall] = ACTIONS(2411), + [anon_sym___vectorcall] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_thread_local] = ACTIONS(2411), + [anon_sym_input] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym__Atomic] = ACTIONS(2411), + [anon_sym_mutable] = ACTIONS(2411), + [anon_sym_constexpr] = ACTIONS(2411), + [anon_sym_constinit] = ACTIONS(2411), + [anon_sym_consteval] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [sym_primitive_type] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_switch] = ACTIONS(2411), + [anon_sym_case] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_goto] = ACTIONS(2411), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_compl] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_sizeof] = ACTIONS(2411), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_L_SQUOTE] = ACTIONS(2413), + [anon_sym_u_SQUOTE] = ACTIONS(2413), + [anon_sym_U_SQUOTE] = ACTIONS(2413), + [anon_sym_u8_SQUOTE] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_L_DQUOTE] = ACTIONS(2413), + [anon_sym_u_DQUOTE] = ACTIONS(2413), + [anon_sym_U_DQUOTE] = ACTIONS(2413), + [anon_sym_u8_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2411), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_virtual] = ACTIONS(2411), + [anon_sym_explicit] = ACTIONS(2411), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2411), + [anon_sym_operator] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_delete] = ACTIONS(2411), + [anon_sym_throw] = ACTIONS(2411), + [anon_sym_namespace] = ACTIONS(2411), + [anon_sym_using] = ACTIONS(2411), + [anon_sym_static_assert] = ACTIONS(2411), + [anon_sym_concept] = ACTIONS(2411), + [anon_sym_co_return] = ACTIONS(2411), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_R_DQUOTE] = ACTIONS(2413), + [anon_sym_LR_DQUOTE] = ACTIONS(2413), + [anon_sym_uR_DQUOTE] = ACTIONS(2413), + [anon_sym_UR_DQUOTE] = ACTIONS(2413), + [anon_sym_u8R_DQUOTE] = ACTIONS(2413), + [anon_sym_co_await] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_requires] = ACTIONS(2411), + [sym_this] = ACTIONS(2411), + [sym_nullptr] = ACTIONS(2411), + }, + [665] = { + [sym_identifier] = ACTIONS(2459), + [aux_sym_preproc_include_token1] = ACTIONS(2459), + [aux_sym_preproc_def_token1] = ACTIONS(2459), + [aux_sym_preproc_if_token1] = ACTIONS(2459), + [aux_sym_preproc_if_token2] = ACTIONS(2459), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), + [sym_preproc_directive] = ACTIONS(2459), + [anon_sym_LPAREN2] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2461), + [anon_sym_TILDE] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_AMP_AMP] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(2459), + [anon_sym_SEMI] = ACTIONS(2461), + [anon_sym_typedef] = ACTIONS(2459), + [anon_sym_extern] = ACTIONS(2459), + [anon_sym___attribute__] = ACTIONS(2459), + [anon_sym_COLON_COLON] = ACTIONS(2461), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), + [anon_sym___declspec] = ACTIONS(2459), + [anon_sym___based] = ACTIONS(2459), + [anon_sym___cdecl] = ACTIONS(2459), + [anon_sym___clrcall] = ACTIONS(2459), + [anon_sym___stdcall] = ACTIONS(2459), + [anon_sym___fastcall] = ACTIONS(2459), + [anon_sym___thiscall] = ACTIONS(2459), + [anon_sym___vectorcall] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2459), + [anon_sym_static] = ACTIONS(2459), + [anon_sym_register] = ACTIONS(2459), + [anon_sym_inline] = ACTIONS(2459), + [anon_sym_thread_local] = ACTIONS(2459), + [anon_sym_input] = ACTIONS(2459), + [anon_sym_const] = ACTIONS(2459), + [anon_sym_volatile] = ACTIONS(2459), + [anon_sym_restrict] = ACTIONS(2459), + [anon_sym__Atomic] = ACTIONS(2459), + [anon_sym_mutable] = ACTIONS(2459), + [anon_sym_constexpr] = ACTIONS(2459), + [anon_sym_constinit] = ACTIONS(2459), + [anon_sym_consteval] = ACTIONS(2459), + [anon_sym_signed] = ACTIONS(2459), + [anon_sym_unsigned] = ACTIONS(2459), + [anon_sym_long] = ACTIONS(2459), + [anon_sym_short] = ACTIONS(2459), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_enum] = ACTIONS(2459), + [anon_sym_class] = ACTIONS(2459), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_union] = ACTIONS(2459), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_else] = ACTIONS(2459), + [anon_sym_switch] = ACTIONS(2459), + [anon_sym_case] = ACTIONS(2459), + [anon_sym_default] = ACTIONS(2459), + [anon_sym_while] = ACTIONS(2459), + [anon_sym_do] = ACTIONS(2459), + [anon_sym_for] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2459), + [anon_sym_break] = ACTIONS(2459), + [anon_sym_continue] = ACTIONS(2459), + [anon_sym_goto] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(2459), + [anon_sym_compl] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2461), + [anon_sym_PLUS_PLUS] = ACTIONS(2461), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_number_literal] = ACTIONS(2461), + [anon_sym_L_SQUOTE] = ACTIONS(2461), + [anon_sym_u_SQUOTE] = ACTIONS(2461), + [anon_sym_U_SQUOTE] = ACTIONS(2461), + [anon_sym_u8_SQUOTE] = ACTIONS(2461), + [anon_sym_SQUOTE] = ACTIONS(2461), + [anon_sym_L_DQUOTE] = ACTIONS(2461), + [anon_sym_u_DQUOTE] = ACTIONS(2461), + [anon_sym_U_DQUOTE] = ACTIONS(2461), + [anon_sym_u8_DQUOTE] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(2461), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_null] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2459), + [anon_sym_decltype] = ACTIONS(2459), + [anon_sym_virtual] = ACTIONS(2459), + [anon_sym_explicit] = ACTIONS(2459), + [anon_sym_typename] = ACTIONS(2459), + [anon_sym_template] = ACTIONS(2459), + [anon_sym_operator] = ACTIONS(2459), + [anon_sym_try] = ACTIONS(2459), + [anon_sym_delete] = ACTIONS(2459), + [anon_sym_throw] = ACTIONS(2459), + [anon_sym_namespace] = ACTIONS(2459), + [anon_sym_using] = ACTIONS(2459), + [anon_sym_static_assert] = ACTIONS(2459), + [anon_sym_concept] = ACTIONS(2459), + [anon_sym_co_return] = ACTIONS(2459), + [anon_sym_co_yield] = ACTIONS(2459), + [anon_sym_R_DQUOTE] = ACTIONS(2461), + [anon_sym_LR_DQUOTE] = ACTIONS(2461), + [anon_sym_uR_DQUOTE] = ACTIONS(2461), + [anon_sym_UR_DQUOTE] = ACTIONS(2461), + [anon_sym_u8R_DQUOTE] = ACTIONS(2461), + [anon_sym_co_await] = ACTIONS(2459), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2459), + [sym_this] = ACTIONS(2459), + [sym_nullptr] = ACTIONS(2459), + }, + [666] = { + [sym_identifier] = ACTIONS(2411), + [aux_sym_preproc_include_token1] = ACTIONS(2411), + [aux_sym_preproc_def_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2411), + [sym_preproc_directive] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym___attribute__] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2413), + [anon_sym___declspec] = ACTIONS(2411), + [anon_sym___based] = ACTIONS(2411), + [anon_sym___cdecl] = ACTIONS(2411), + [anon_sym___clrcall] = ACTIONS(2411), + [anon_sym___stdcall] = ACTIONS(2411), + [anon_sym___fastcall] = ACTIONS(2411), + [anon_sym___thiscall] = ACTIONS(2411), + [anon_sym___vectorcall] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_thread_local] = ACTIONS(2411), + [anon_sym_input] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym__Atomic] = ACTIONS(2411), + [anon_sym_mutable] = ACTIONS(2411), + [anon_sym_constexpr] = ACTIONS(2411), + [anon_sym_constinit] = ACTIONS(2411), + [anon_sym_consteval] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [sym_primitive_type] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_switch] = ACTIONS(2411), + [anon_sym_case] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_goto] = ACTIONS(2411), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_compl] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_sizeof] = ACTIONS(2411), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_L_SQUOTE] = ACTIONS(2413), + [anon_sym_u_SQUOTE] = ACTIONS(2413), + [anon_sym_U_SQUOTE] = ACTIONS(2413), + [anon_sym_u8_SQUOTE] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_L_DQUOTE] = ACTIONS(2413), + [anon_sym_u_DQUOTE] = ACTIONS(2413), + [anon_sym_U_DQUOTE] = ACTIONS(2413), + [anon_sym_u8_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2411), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_virtual] = ACTIONS(2411), + [anon_sym_explicit] = ACTIONS(2411), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2411), + [anon_sym_operator] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_delete] = ACTIONS(2411), + [anon_sym_throw] = ACTIONS(2411), + [anon_sym_namespace] = ACTIONS(2411), + [anon_sym_using] = ACTIONS(2411), + [anon_sym_static_assert] = ACTIONS(2411), + [anon_sym_concept] = ACTIONS(2411), + [anon_sym_co_return] = ACTIONS(2411), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_R_DQUOTE] = ACTIONS(2413), + [anon_sym_LR_DQUOTE] = ACTIONS(2413), + [anon_sym_uR_DQUOTE] = ACTIONS(2413), + [anon_sym_UR_DQUOTE] = ACTIONS(2413), + [anon_sym_u8R_DQUOTE] = ACTIONS(2413), + [anon_sym_co_await] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_requires] = ACTIONS(2411), + [sym_this] = ACTIONS(2411), + [sym_nullptr] = ACTIONS(2411), + }, + [667] = { + [sym_identifier] = ACTIONS(2535), + [aux_sym_preproc_include_token1] = ACTIONS(2535), + [aux_sym_preproc_def_token1] = ACTIONS(2535), + [aux_sym_preproc_if_token1] = ACTIONS(2535), + [aux_sym_preproc_if_token2] = ACTIONS(2535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2535), + [sym_preproc_directive] = ACTIONS(2535), + [anon_sym_LPAREN2] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2537), + [anon_sym_TILDE] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2535), + [anon_sym_STAR] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_typedef] = ACTIONS(2535), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym___attribute__] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), + [anon_sym___declspec] = ACTIONS(2535), + [anon_sym___based] = ACTIONS(2535), + [anon_sym___cdecl] = ACTIONS(2535), + [anon_sym___clrcall] = ACTIONS(2535), + [anon_sym___stdcall] = ACTIONS(2535), + [anon_sym___fastcall] = ACTIONS(2535), + [anon_sym___thiscall] = ACTIONS(2535), + [anon_sym___vectorcall] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2537), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_inline] = ACTIONS(2535), + [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_input] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_volatile] = ACTIONS(2535), + [anon_sym_restrict] = ACTIONS(2535), + [anon_sym__Atomic] = ACTIONS(2535), + [anon_sym_mutable] = ACTIONS(2535), + [anon_sym_constexpr] = ACTIONS(2535), + [anon_sym_constinit] = ACTIONS(2535), + [anon_sym_consteval] = ACTIONS(2535), + [anon_sym_signed] = ACTIONS(2535), + [anon_sym_unsigned] = ACTIONS(2535), + [anon_sym_long] = ACTIONS(2535), + [anon_sym_short] = ACTIONS(2535), + [sym_primitive_type] = ACTIONS(2535), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_else] = ACTIONS(2535), + [anon_sym_switch] = ACTIONS(2535), + [anon_sym_case] = ACTIONS(2535), + [anon_sym_default] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_do] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_goto] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_compl] = ACTIONS(2535), + [anon_sym_DASH_DASH] = ACTIONS(2537), + [anon_sym_PLUS_PLUS] = ACTIONS(2537), + [anon_sym_sizeof] = ACTIONS(2535), + [sym_number_literal] = ACTIONS(2537), + [anon_sym_L_SQUOTE] = ACTIONS(2537), + [anon_sym_u_SQUOTE] = ACTIONS(2537), + [anon_sym_U_SQUOTE] = ACTIONS(2537), + [anon_sym_u8_SQUOTE] = ACTIONS(2537), + [anon_sym_SQUOTE] = ACTIONS(2537), + [anon_sym_L_DQUOTE] = ACTIONS(2537), + [anon_sym_u_DQUOTE] = ACTIONS(2537), + [anon_sym_U_DQUOTE] = ACTIONS(2537), + [anon_sym_u8_DQUOTE] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2537), + [sym_true] = ACTIONS(2535), + [sym_false] = ACTIONS(2535), + [sym_null] = ACTIONS(2535), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2535), + [anon_sym_decltype] = ACTIONS(2535), + [anon_sym_virtual] = ACTIONS(2535), + [anon_sym_explicit] = ACTIONS(2535), + [anon_sym_typename] = ACTIONS(2535), + [anon_sym_template] = ACTIONS(2535), + [anon_sym_operator] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2535), + [anon_sym_delete] = ACTIONS(2535), + [anon_sym_throw] = ACTIONS(2535), + [anon_sym_namespace] = ACTIONS(2535), + [anon_sym_using] = ACTIONS(2535), + [anon_sym_static_assert] = ACTIONS(2535), + [anon_sym_concept] = ACTIONS(2535), + [anon_sym_co_return] = ACTIONS(2535), + [anon_sym_co_yield] = ACTIONS(2535), + [anon_sym_R_DQUOTE] = ACTIONS(2537), + [anon_sym_LR_DQUOTE] = ACTIONS(2537), + [anon_sym_uR_DQUOTE] = ACTIONS(2537), + [anon_sym_UR_DQUOTE] = ACTIONS(2537), + [anon_sym_u8R_DQUOTE] = ACTIONS(2537), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2535), + [anon_sym_requires] = ACTIONS(2535), + [sym_this] = ACTIONS(2535), + [sym_nullptr] = ACTIONS(2535), + }, + [668] = { + [sym_identifier] = ACTIONS(2463), + [aux_sym_preproc_include_token1] = ACTIONS(2463), + [aux_sym_preproc_def_token1] = ACTIONS(2463), + [aux_sym_preproc_if_token1] = ACTIONS(2463), + [aux_sym_preproc_if_token2] = ACTIONS(2463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2463), + [sym_preproc_directive] = ACTIONS(2463), + [anon_sym_LPAREN2] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_TILDE] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_AMP_AMP] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2465), + [anon_sym_typedef] = ACTIONS(2463), + [anon_sym_extern] = ACTIONS(2463), + [anon_sym___attribute__] = ACTIONS(2463), + [anon_sym_COLON_COLON] = ACTIONS(2465), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), + [anon_sym___declspec] = ACTIONS(2463), + [anon_sym___based] = ACTIONS(2463), + [anon_sym___cdecl] = ACTIONS(2463), + [anon_sym___clrcall] = ACTIONS(2463), + [anon_sym___stdcall] = ACTIONS(2463), + [anon_sym___fastcall] = ACTIONS(2463), + [anon_sym___thiscall] = ACTIONS(2463), + [anon_sym___vectorcall] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_static] = ACTIONS(2463), + [anon_sym_register] = ACTIONS(2463), + [anon_sym_inline] = ACTIONS(2463), + [anon_sym_thread_local] = ACTIONS(2463), + [anon_sym_input] = ACTIONS(2463), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_volatile] = ACTIONS(2463), + [anon_sym_restrict] = ACTIONS(2463), + [anon_sym__Atomic] = ACTIONS(2463), + [anon_sym_mutable] = ACTIONS(2463), + [anon_sym_constexpr] = ACTIONS(2463), + [anon_sym_constinit] = ACTIONS(2463), + [anon_sym_consteval] = ACTIONS(2463), + [anon_sym_signed] = ACTIONS(2463), + [anon_sym_unsigned] = ACTIONS(2463), + [anon_sym_long] = ACTIONS(2463), + [anon_sym_short] = ACTIONS(2463), + [sym_primitive_type] = ACTIONS(2463), + [anon_sym_enum] = ACTIONS(2463), + [anon_sym_class] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_else] = ACTIONS(2463), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(2463), + [anon_sym_while] = ACTIONS(2463), + [anon_sym_do] = ACTIONS(2463), + [anon_sym_for] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2463), + [anon_sym_break] = ACTIONS(2463), + [anon_sym_continue] = ACTIONS(2463), + [anon_sym_goto] = ACTIONS(2463), + [anon_sym_not] = ACTIONS(2463), + [anon_sym_compl] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2465), + [anon_sym_PLUS_PLUS] = ACTIONS(2465), + [anon_sym_sizeof] = ACTIONS(2463), + [sym_number_literal] = ACTIONS(2465), + [anon_sym_L_SQUOTE] = ACTIONS(2465), + [anon_sym_u_SQUOTE] = ACTIONS(2465), + [anon_sym_U_SQUOTE] = ACTIONS(2465), + [anon_sym_u8_SQUOTE] = ACTIONS(2465), + [anon_sym_SQUOTE] = ACTIONS(2465), + [anon_sym_L_DQUOTE] = ACTIONS(2465), + [anon_sym_u_DQUOTE] = ACTIONS(2465), + [anon_sym_U_DQUOTE] = ACTIONS(2465), + [anon_sym_u8_DQUOTE] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2465), + [sym_true] = ACTIONS(2463), + [sym_false] = ACTIONS(2463), + [sym_null] = ACTIONS(2463), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2463), + [anon_sym_decltype] = ACTIONS(2463), + [anon_sym_virtual] = ACTIONS(2463), + [anon_sym_explicit] = ACTIONS(2463), + [anon_sym_typename] = ACTIONS(2463), + [anon_sym_template] = ACTIONS(2463), + [anon_sym_operator] = ACTIONS(2463), + [anon_sym_try] = ACTIONS(2463), + [anon_sym_delete] = ACTIONS(2463), + [anon_sym_throw] = ACTIONS(2463), + [anon_sym_namespace] = ACTIONS(2463), + [anon_sym_using] = ACTIONS(2463), + [anon_sym_static_assert] = ACTIONS(2463), + [anon_sym_concept] = ACTIONS(2463), + [anon_sym_co_return] = ACTIONS(2463), + [anon_sym_co_yield] = ACTIONS(2463), + [anon_sym_R_DQUOTE] = ACTIONS(2465), + [anon_sym_LR_DQUOTE] = ACTIONS(2465), + [anon_sym_uR_DQUOTE] = ACTIONS(2465), + [anon_sym_UR_DQUOTE] = ACTIONS(2465), + [anon_sym_u8R_DQUOTE] = ACTIONS(2465), + [anon_sym_co_await] = ACTIONS(2463), + [anon_sym_new] = ACTIONS(2463), + [anon_sym_requires] = ACTIONS(2463), + [sym_this] = ACTIONS(2463), + [sym_nullptr] = ACTIONS(2463), + }, + [669] = { + [sym_identifier] = ACTIONS(2467), + [aux_sym_preproc_include_token1] = ACTIONS(2467), + [aux_sym_preproc_def_token1] = ACTIONS(2467), + [aux_sym_preproc_if_token1] = ACTIONS(2467), + [aux_sym_preproc_if_token2] = ACTIONS(2467), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2467), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2467), + [sym_preproc_directive] = ACTIONS(2467), + [anon_sym_LPAREN2] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_AMP_AMP] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_typedef] = ACTIONS(2467), + [anon_sym_extern] = ACTIONS(2467), + [anon_sym___attribute__] = ACTIONS(2467), + [anon_sym_COLON_COLON] = ACTIONS(2469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2469), + [anon_sym___declspec] = ACTIONS(2467), + [anon_sym___based] = ACTIONS(2467), + [anon_sym___cdecl] = ACTIONS(2467), + [anon_sym___clrcall] = ACTIONS(2467), + [anon_sym___stdcall] = ACTIONS(2467), + [anon_sym___fastcall] = ACTIONS(2467), + [anon_sym___thiscall] = ACTIONS(2467), + [anon_sym___vectorcall] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_static] = ACTIONS(2467), + [anon_sym_register] = ACTIONS(2467), + [anon_sym_inline] = ACTIONS(2467), + [anon_sym_thread_local] = ACTIONS(2467), + [anon_sym_input] = ACTIONS(2467), + [anon_sym_const] = ACTIONS(2467), + [anon_sym_volatile] = ACTIONS(2467), + [anon_sym_restrict] = ACTIONS(2467), + [anon_sym__Atomic] = ACTIONS(2467), + [anon_sym_mutable] = ACTIONS(2467), + [anon_sym_constexpr] = ACTIONS(2467), + [anon_sym_constinit] = ACTIONS(2467), + [anon_sym_consteval] = ACTIONS(2467), + [anon_sym_signed] = ACTIONS(2467), + [anon_sym_unsigned] = ACTIONS(2467), + [anon_sym_long] = ACTIONS(2467), + [anon_sym_short] = ACTIONS(2467), + [sym_primitive_type] = ACTIONS(2467), + [anon_sym_enum] = ACTIONS(2467), + [anon_sym_class] = ACTIONS(2467), + [anon_sym_struct] = ACTIONS(2467), + [anon_sym_union] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_else] = ACTIONS(2467), + [anon_sym_switch] = ACTIONS(2467), + [anon_sym_case] = ACTIONS(2467), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2467), + [anon_sym_do] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_goto] = ACTIONS(2467), + [anon_sym_not] = ACTIONS(2467), + [anon_sym_compl] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2469), + [anon_sym_PLUS_PLUS] = ACTIONS(2469), + [anon_sym_sizeof] = ACTIONS(2467), + [sym_number_literal] = ACTIONS(2469), + [anon_sym_L_SQUOTE] = ACTIONS(2469), + [anon_sym_u_SQUOTE] = ACTIONS(2469), + [anon_sym_U_SQUOTE] = ACTIONS(2469), + [anon_sym_u8_SQUOTE] = ACTIONS(2469), + [anon_sym_SQUOTE] = ACTIONS(2469), + [anon_sym_L_DQUOTE] = ACTIONS(2469), + [anon_sym_u_DQUOTE] = ACTIONS(2469), + [anon_sym_U_DQUOTE] = ACTIONS(2469), + [anon_sym_u8_DQUOTE] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2469), + [sym_true] = ACTIONS(2467), + [sym_false] = ACTIONS(2467), + [sym_null] = ACTIONS(2467), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2467), + [anon_sym_decltype] = ACTIONS(2467), + [anon_sym_virtual] = ACTIONS(2467), + [anon_sym_explicit] = ACTIONS(2467), + [anon_sym_typename] = ACTIONS(2467), + [anon_sym_template] = ACTIONS(2467), + [anon_sym_operator] = ACTIONS(2467), + [anon_sym_try] = ACTIONS(2467), + [anon_sym_delete] = ACTIONS(2467), + [anon_sym_throw] = ACTIONS(2467), + [anon_sym_namespace] = ACTIONS(2467), + [anon_sym_using] = ACTIONS(2467), + [anon_sym_static_assert] = ACTIONS(2467), + [anon_sym_concept] = ACTIONS(2467), + [anon_sym_co_return] = ACTIONS(2467), + [anon_sym_co_yield] = ACTIONS(2467), + [anon_sym_R_DQUOTE] = ACTIONS(2469), + [anon_sym_LR_DQUOTE] = ACTIONS(2469), + [anon_sym_uR_DQUOTE] = ACTIONS(2469), + [anon_sym_UR_DQUOTE] = ACTIONS(2469), + [anon_sym_u8R_DQUOTE] = ACTIONS(2469), + [anon_sym_co_await] = ACTIONS(2467), + [anon_sym_new] = ACTIONS(2467), + [anon_sym_requires] = ACTIONS(2467), + [sym_this] = ACTIONS(2467), + [sym_nullptr] = ACTIONS(2467), + }, + [670] = { + [sym_identifier] = ACTIONS(2415), + [aux_sym_preproc_include_token1] = ACTIONS(2415), + [aux_sym_preproc_def_token1] = ACTIONS(2415), + [aux_sym_preproc_if_token1] = ACTIONS(2415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2415), + [sym_preproc_directive] = ACTIONS(2415), + [anon_sym_LPAREN2] = ACTIONS(2417), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_TILDE] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP_AMP] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(2417), + [anon_sym_typedef] = ACTIONS(2415), + [anon_sym_extern] = ACTIONS(2415), + [anon_sym___attribute__] = ACTIONS(2415), + [anon_sym_COLON_COLON] = ACTIONS(2417), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2417), + [anon_sym___declspec] = ACTIONS(2415), + [anon_sym___based] = ACTIONS(2415), + [anon_sym___cdecl] = ACTIONS(2415), + [anon_sym___clrcall] = ACTIONS(2415), + [anon_sym___stdcall] = ACTIONS(2415), + [anon_sym___fastcall] = ACTIONS(2415), + [anon_sym___thiscall] = ACTIONS(2415), + [anon_sym___vectorcall] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2417), + [anon_sym_RBRACE] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_static] = ACTIONS(2415), + [anon_sym_register] = ACTIONS(2415), + [anon_sym_inline] = ACTIONS(2415), + [anon_sym_thread_local] = ACTIONS(2415), + [anon_sym_input] = ACTIONS(2415), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_volatile] = ACTIONS(2415), + [anon_sym_restrict] = ACTIONS(2415), + [anon_sym__Atomic] = ACTIONS(2415), + [anon_sym_mutable] = ACTIONS(2415), + [anon_sym_constexpr] = ACTIONS(2415), + [anon_sym_constinit] = ACTIONS(2415), + [anon_sym_consteval] = ACTIONS(2415), + [anon_sym_signed] = ACTIONS(2415), + [anon_sym_unsigned] = ACTIONS(2415), + [anon_sym_long] = ACTIONS(2415), + [anon_sym_short] = ACTIONS(2415), + [sym_primitive_type] = ACTIONS(2415), + [anon_sym_enum] = ACTIONS(2415), + [anon_sym_class] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(2415), + [anon_sym_union] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_else] = ACTIONS(2415), + [anon_sym_switch] = ACTIONS(2415), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [anon_sym_do] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_break] = ACTIONS(2415), + [anon_sym_continue] = ACTIONS(2415), + [anon_sym_goto] = ACTIONS(2415), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2417), + [anon_sym_PLUS_PLUS] = ACTIONS(2417), + [anon_sym_sizeof] = ACTIONS(2415), + [sym_number_literal] = ACTIONS(2417), + [anon_sym_L_SQUOTE] = ACTIONS(2417), + [anon_sym_u_SQUOTE] = ACTIONS(2417), + [anon_sym_U_SQUOTE] = ACTIONS(2417), + [anon_sym_u8_SQUOTE] = ACTIONS(2417), + [anon_sym_SQUOTE] = ACTIONS(2417), + [anon_sym_L_DQUOTE] = ACTIONS(2417), + [anon_sym_u_DQUOTE] = ACTIONS(2417), + [anon_sym_U_DQUOTE] = ACTIONS(2417), + [anon_sym_u8_DQUOTE] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2417), + [sym_true] = ACTIONS(2415), + [sym_false] = ACTIONS(2415), + [sym_null] = ACTIONS(2415), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2415), + [anon_sym_decltype] = ACTIONS(2415), + [anon_sym_virtual] = ACTIONS(2415), + [anon_sym_explicit] = ACTIONS(2415), + [anon_sym_typename] = ACTIONS(2415), + [anon_sym_template] = ACTIONS(2415), + [anon_sym_operator] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2415), + [anon_sym_delete] = ACTIONS(2415), + [anon_sym_throw] = ACTIONS(2415), + [anon_sym_namespace] = ACTIONS(2415), + [anon_sym_using] = ACTIONS(2415), + [anon_sym_static_assert] = ACTIONS(2415), + [anon_sym_concept] = ACTIONS(2415), + [anon_sym_co_return] = ACTIONS(2415), + [anon_sym_co_yield] = ACTIONS(2415), + [anon_sym_R_DQUOTE] = ACTIONS(2417), + [anon_sym_LR_DQUOTE] = ACTIONS(2417), + [anon_sym_uR_DQUOTE] = ACTIONS(2417), + [anon_sym_UR_DQUOTE] = ACTIONS(2417), + [anon_sym_u8R_DQUOTE] = ACTIONS(2417), + [anon_sym_co_await] = ACTIONS(2415), + [anon_sym_new] = ACTIONS(2415), + [anon_sym_requires] = ACTIONS(2415), + [sym_this] = ACTIONS(2415), + [sym_nullptr] = ACTIONS(2415), + }, + [671] = { + [ts_builtin_sym_end] = ACTIONS(2461), + [sym_identifier] = ACTIONS(2459), + [aux_sym_preproc_include_token1] = ACTIONS(2459), + [aux_sym_preproc_def_token1] = ACTIONS(2459), + [aux_sym_preproc_if_token1] = ACTIONS(2459), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), + [sym_preproc_directive] = ACTIONS(2459), + [anon_sym_LPAREN2] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2461), + [anon_sym_TILDE] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_AMP_AMP] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(2459), + [anon_sym_SEMI] = ACTIONS(2461), + [anon_sym_typedef] = ACTIONS(2459), + [anon_sym_extern] = ACTIONS(2459), + [anon_sym___attribute__] = ACTIONS(2459), + [anon_sym_COLON_COLON] = ACTIONS(2461), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), + [anon_sym___declspec] = ACTIONS(2459), + [anon_sym___based] = ACTIONS(2459), + [anon_sym___cdecl] = ACTIONS(2459), + [anon_sym___clrcall] = ACTIONS(2459), + [anon_sym___stdcall] = ACTIONS(2459), + [anon_sym___fastcall] = ACTIONS(2459), + [anon_sym___thiscall] = ACTIONS(2459), + [anon_sym___vectorcall] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2459), + [anon_sym_static] = ACTIONS(2459), + [anon_sym_register] = ACTIONS(2459), + [anon_sym_inline] = ACTIONS(2459), + [anon_sym_thread_local] = ACTIONS(2459), + [anon_sym_input] = ACTIONS(2459), + [anon_sym_const] = ACTIONS(2459), + [anon_sym_volatile] = ACTIONS(2459), + [anon_sym_restrict] = ACTIONS(2459), + [anon_sym__Atomic] = ACTIONS(2459), + [anon_sym_mutable] = ACTIONS(2459), + [anon_sym_constexpr] = ACTIONS(2459), + [anon_sym_constinit] = ACTIONS(2459), + [anon_sym_consteval] = ACTIONS(2459), + [anon_sym_signed] = ACTIONS(2459), + [anon_sym_unsigned] = ACTIONS(2459), + [anon_sym_long] = ACTIONS(2459), + [anon_sym_short] = ACTIONS(2459), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_enum] = ACTIONS(2459), + [anon_sym_class] = ACTIONS(2459), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_union] = ACTIONS(2459), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_else] = ACTIONS(2459), + [anon_sym_switch] = ACTIONS(2459), + [anon_sym_case] = ACTIONS(2459), + [anon_sym_default] = ACTIONS(2459), + [anon_sym_while] = ACTIONS(2459), + [anon_sym_do] = ACTIONS(2459), + [anon_sym_for] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2459), + [anon_sym_break] = ACTIONS(2459), + [anon_sym_continue] = ACTIONS(2459), + [anon_sym_goto] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(2459), + [anon_sym_compl] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2461), + [anon_sym_PLUS_PLUS] = ACTIONS(2461), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_number_literal] = ACTIONS(2461), + [anon_sym_L_SQUOTE] = ACTIONS(2461), + [anon_sym_u_SQUOTE] = ACTIONS(2461), + [anon_sym_U_SQUOTE] = ACTIONS(2461), + [anon_sym_u8_SQUOTE] = ACTIONS(2461), + [anon_sym_SQUOTE] = ACTIONS(2461), + [anon_sym_L_DQUOTE] = ACTIONS(2461), + [anon_sym_u_DQUOTE] = ACTIONS(2461), + [anon_sym_U_DQUOTE] = ACTIONS(2461), + [anon_sym_u8_DQUOTE] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(2461), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_null] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2459), + [anon_sym_decltype] = ACTIONS(2459), + [anon_sym_virtual] = ACTIONS(2459), + [anon_sym_explicit] = ACTIONS(2459), + [anon_sym_typename] = ACTIONS(2459), + [anon_sym_template] = ACTIONS(2459), + [anon_sym_operator] = ACTIONS(2459), + [anon_sym_try] = ACTIONS(2459), + [anon_sym_delete] = ACTIONS(2459), + [anon_sym_throw] = ACTIONS(2459), + [anon_sym_namespace] = ACTIONS(2459), + [anon_sym_using] = ACTIONS(2459), + [anon_sym_static_assert] = ACTIONS(2459), + [anon_sym_concept] = ACTIONS(2459), + [anon_sym_co_return] = ACTIONS(2459), + [anon_sym_co_yield] = ACTIONS(2459), + [anon_sym_R_DQUOTE] = ACTIONS(2461), + [anon_sym_LR_DQUOTE] = ACTIONS(2461), + [anon_sym_uR_DQUOTE] = ACTIONS(2461), + [anon_sym_UR_DQUOTE] = ACTIONS(2461), + [anon_sym_u8R_DQUOTE] = ACTIONS(2461), + [anon_sym_co_await] = ACTIONS(2459), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2459), + [sym_this] = ACTIONS(2459), + [sym_nullptr] = ACTIONS(2459), + }, + [672] = { + [ts_builtin_sym_end] = ACTIONS(2559), + [sym_identifier] = ACTIONS(2557), + [aux_sym_preproc_include_token1] = ACTIONS(2557), + [aux_sym_preproc_def_token1] = ACTIONS(2557), + [aux_sym_preproc_if_token1] = ACTIONS(2557), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2557), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2557), + [sym_preproc_directive] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(2557), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_typedef] = ACTIONS(2557), + [anon_sym_extern] = ACTIONS(2557), + [anon_sym___attribute__] = ACTIONS(2557), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2557), + [anon_sym___based] = ACTIONS(2557), + [anon_sym___cdecl] = ACTIONS(2557), + [anon_sym___clrcall] = ACTIONS(2557), + [anon_sym___stdcall] = ACTIONS(2557), + [anon_sym___fastcall] = ACTIONS(2557), + [anon_sym___thiscall] = ACTIONS(2557), + [anon_sym___vectorcall] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2557), + [anon_sym_register] = ACTIONS(2557), + [anon_sym_inline] = ACTIONS(2557), + [anon_sym_thread_local] = ACTIONS(2557), + [anon_sym_input] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [anon_sym_volatile] = ACTIONS(2557), + [anon_sym_restrict] = ACTIONS(2557), + [anon_sym__Atomic] = ACTIONS(2557), + [anon_sym_mutable] = ACTIONS(2557), + [anon_sym_constexpr] = ACTIONS(2557), + [anon_sym_constinit] = ACTIONS(2557), + [anon_sym_consteval] = ACTIONS(2557), + [anon_sym_signed] = ACTIONS(2557), + [anon_sym_unsigned] = ACTIONS(2557), + [anon_sym_long] = ACTIONS(2557), + [anon_sym_short] = ACTIONS(2557), + [sym_primitive_type] = ACTIONS(2557), + [anon_sym_enum] = ACTIONS(2557), + [anon_sym_class] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(2557), + [anon_sym_union] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_else] = ACTIONS(2557), + [anon_sym_switch] = ACTIONS(2557), + [anon_sym_case] = ACTIONS(2557), + [anon_sym_default] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_do] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_goto] = ACTIONS(2557), + [anon_sym_not] = ACTIONS(2557), + [anon_sym_compl] = ACTIONS(2557), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_sizeof] = ACTIONS(2557), + [sym_number_literal] = ACTIONS(2559), + [anon_sym_L_SQUOTE] = ACTIONS(2559), + [anon_sym_u_SQUOTE] = ACTIONS(2559), + [anon_sym_U_SQUOTE] = ACTIONS(2559), + [anon_sym_u8_SQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(2559), + [anon_sym_L_DQUOTE] = ACTIONS(2559), + [anon_sym_u_DQUOTE] = ACTIONS(2559), + [anon_sym_U_DQUOTE] = ACTIONS(2559), + [anon_sym_u8_DQUOTE] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [sym_true] = ACTIONS(2557), + [sym_false] = ACTIONS(2557), + [sym_null] = ACTIONS(2557), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2557), + [anon_sym_decltype] = ACTIONS(2557), + [anon_sym_virtual] = ACTIONS(2557), + [anon_sym_explicit] = ACTIONS(2557), + [anon_sym_typename] = ACTIONS(2557), + [anon_sym_template] = ACTIONS(2557), + [anon_sym_operator] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2557), + [anon_sym_delete] = ACTIONS(2557), + [anon_sym_throw] = ACTIONS(2557), + [anon_sym_namespace] = ACTIONS(2557), + [anon_sym_using] = ACTIONS(2557), + [anon_sym_static_assert] = ACTIONS(2557), + [anon_sym_concept] = ACTIONS(2557), + [anon_sym_co_return] = ACTIONS(2557), + [anon_sym_co_yield] = ACTIONS(2557), + [anon_sym_R_DQUOTE] = ACTIONS(2559), + [anon_sym_LR_DQUOTE] = ACTIONS(2559), + [anon_sym_uR_DQUOTE] = ACTIONS(2559), + [anon_sym_UR_DQUOTE] = ACTIONS(2559), + [anon_sym_u8R_DQUOTE] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2557), + [anon_sym_requires] = ACTIONS(2557), + [sym_this] = ACTIONS(2557), + [sym_nullptr] = ACTIONS(2557), + }, + [673] = { + [sym_identifier] = ACTIONS(2471), + [aux_sym_preproc_include_token1] = ACTIONS(2471), + [aux_sym_preproc_def_token1] = ACTIONS(2471), + [aux_sym_preproc_if_token1] = ACTIONS(2471), + [aux_sym_preproc_if_token2] = ACTIONS(2471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2471), + [sym_preproc_directive] = ACTIONS(2471), + [anon_sym_LPAREN2] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2473), + [anon_sym_TILDE] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_typedef] = ACTIONS(2471), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym___attribute__] = ACTIONS(2471), + [anon_sym_COLON_COLON] = ACTIONS(2473), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2473), + [anon_sym___declspec] = ACTIONS(2471), + [anon_sym___based] = ACTIONS(2471), + [anon_sym___cdecl] = ACTIONS(2471), + [anon_sym___clrcall] = ACTIONS(2471), + [anon_sym___stdcall] = ACTIONS(2471), + [anon_sym___fastcall] = ACTIONS(2471), + [anon_sym___thiscall] = ACTIONS(2471), + [anon_sym___vectorcall] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_static] = ACTIONS(2471), + [anon_sym_register] = ACTIONS(2471), + [anon_sym_inline] = ACTIONS(2471), + [anon_sym_thread_local] = ACTIONS(2471), + [anon_sym_input] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [anon_sym_volatile] = ACTIONS(2471), + [anon_sym_restrict] = ACTIONS(2471), + [anon_sym__Atomic] = ACTIONS(2471), + [anon_sym_mutable] = ACTIONS(2471), + [anon_sym_constexpr] = ACTIONS(2471), + [anon_sym_constinit] = ACTIONS(2471), + [anon_sym_consteval] = ACTIONS(2471), + [anon_sym_signed] = ACTIONS(2471), + [anon_sym_unsigned] = ACTIONS(2471), + [anon_sym_long] = ACTIONS(2471), + [anon_sym_short] = ACTIONS(2471), + [sym_primitive_type] = ACTIONS(2471), + [anon_sym_enum] = ACTIONS(2471), + [anon_sym_class] = ACTIONS(2471), + [anon_sym_struct] = ACTIONS(2471), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_else] = ACTIONS(2471), + [anon_sym_switch] = ACTIONS(2471), + [anon_sym_case] = ACTIONS(2471), + [anon_sym_default] = ACTIONS(2471), + [anon_sym_while] = ACTIONS(2471), + [anon_sym_do] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_goto] = ACTIONS(2471), + [anon_sym_not] = ACTIONS(2471), + [anon_sym_compl] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(2473), + [anon_sym_PLUS_PLUS] = ACTIONS(2473), + [anon_sym_sizeof] = ACTIONS(2471), + [sym_number_literal] = ACTIONS(2473), + [anon_sym_L_SQUOTE] = ACTIONS(2473), + [anon_sym_u_SQUOTE] = ACTIONS(2473), + [anon_sym_U_SQUOTE] = ACTIONS(2473), + [anon_sym_u8_SQUOTE] = ACTIONS(2473), + [anon_sym_SQUOTE] = ACTIONS(2473), + [anon_sym_L_DQUOTE] = ACTIONS(2473), + [anon_sym_u_DQUOTE] = ACTIONS(2473), + [anon_sym_U_DQUOTE] = ACTIONS(2473), + [anon_sym_u8_DQUOTE] = ACTIONS(2473), + [anon_sym_DQUOTE] = ACTIONS(2473), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_null] = ACTIONS(2471), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2471), + [anon_sym_decltype] = ACTIONS(2471), + [anon_sym_virtual] = ACTIONS(2471), + [anon_sym_explicit] = ACTIONS(2471), + [anon_sym_typename] = ACTIONS(2471), + [anon_sym_template] = ACTIONS(2471), + [anon_sym_operator] = ACTIONS(2471), + [anon_sym_try] = ACTIONS(2471), + [anon_sym_delete] = ACTIONS(2471), + [anon_sym_throw] = ACTIONS(2471), + [anon_sym_namespace] = ACTIONS(2471), + [anon_sym_using] = ACTIONS(2471), + [anon_sym_static_assert] = ACTIONS(2471), + [anon_sym_concept] = ACTIONS(2471), + [anon_sym_co_return] = ACTIONS(2471), + [anon_sym_co_yield] = ACTIONS(2471), + [anon_sym_R_DQUOTE] = ACTIONS(2473), + [anon_sym_LR_DQUOTE] = ACTIONS(2473), + [anon_sym_uR_DQUOTE] = ACTIONS(2473), + [anon_sym_UR_DQUOTE] = ACTIONS(2473), + [anon_sym_u8R_DQUOTE] = ACTIONS(2473), + [anon_sym_co_await] = ACTIONS(2471), + [anon_sym_new] = ACTIONS(2471), + [anon_sym_requires] = ACTIONS(2471), + [sym_this] = ACTIONS(2471), + [sym_nullptr] = ACTIONS(2471), + }, + [674] = { + [ts_builtin_sym_end] = ACTIONS(2457), + [sym_identifier] = ACTIONS(2455), + [aux_sym_preproc_include_token1] = ACTIONS(2455), + [aux_sym_preproc_def_token1] = ACTIONS(2455), + [aux_sym_preproc_if_token1] = ACTIONS(2455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2455), + [sym_preproc_directive] = ACTIONS(2455), + [anon_sym_LPAREN2] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_typedef] = ACTIONS(2455), + [anon_sym_extern] = ACTIONS(2455), + [anon_sym___attribute__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2457), + [anon_sym___declspec] = ACTIONS(2455), + [anon_sym___based] = ACTIONS(2455), + [anon_sym___cdecl] = ACTIONS(2455), + [anon_sym___clrcall] = ACTIONS(2455), + [anon_sym___stdcall] = ACTIONS(2455), + [anon_sym___fastcall] = ACTIONS(2455), + [anon_sym___thiscall] = ACTIONS(2455), + [anon_sym___vectorcall] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_register] = ACTIONS(2455), + [anon_sym_inline] = ACTIONS(2455), + [anon_sym_thread_local] = ACTIONS(2455), + [anon_sym_input] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2455), + [anon_sym_volatile] = ACTIONS(2455), + [anon_sym_restrict] = ACTIONS(2455), + [anon_sym__Atomic] = ACTIONS(2455), + [anon_sym_mutable] = ACTIONS(2455), + [anon_sym_constexpr] = ACTIONS(2455), + [anon_sym_constinit] = ACTIONS(2455), + [anon_sym_consteval] = ACTIONS(2455), + [anon_sym_signed] = ACTIONS(2455), + [anon_sym_unsigned] = ACTIONS(2455), + [anon_sym_long] = ACTIONS(2455), + [anon_sym_short] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2455), + [anon_sym_enum] = ACTIONS(2455), + [anon_sym_class] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_else] = ACTIONS(2455), + [anon_sym_switch] = ACTIONS(2455), + [anon_sym_case] = ACTIONS(2455), + [anon_sym_default] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_do] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2455), + [anon_sym_continue] = ACTIONS(2455), + [anon_sym_goto] = ACTIONS(2455), + [anon_sym_not] = ACTIONS(2455), + [anon_sym_compl] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_sizeof] = ACTIONS(2455), + [sym_number_literal] = ACTIONS(2457), + [anon_sym_L_SQUOTE] = ACTIONS(2457), + [anon_sym_u_SQUOTE] = ACTIONS(2457), + [anon_sym_U_SQUOTE] = ACTIONS(2457), + [anon_sym_u8_SQUOTE] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_L_DQUOTE] = ACTIONS(2457), + [anon_sym_u_DQUOTE] = ACTIONS(2457), + [anon_sym_U_DQUOTE] = ACTIONS(2457), + [anon_sym_u8_DQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [sym_true] = ACTIONS(2455), + [sym_false] = ACTIONS(2455), + [sym_null] = ACTIONS(2455), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2455), + [anon_sym_decltype] = ACTIONS(2455), + [anon_sym_virtual] = ACTIONS(2455), + [anon_sym_explicit] = ACTIONS(2455), + [anon_sym_typename] = ACTIONS(2455), + [anon_sym_template] = ACTIONS(2455), + [anon_sym_operator] = ACTIONS(2455), + [anon_sym_try] = ACTIONS(2455), + [anon_sym_delete] = ACTIONS(2455), + [anon_sym_throw] = ACTIONS(2455), + [anon_sym_namespace] = ACTIONS(2455), + [anon_sym_using] = ACTIONS(2455), + [anon_sym_static_assert] = ACTIONS(2455), + [anon_sym_concept] = ACTIONS(2455), + [anon_sym_co_return] = ACTIONS(2455), + [anon_sym_co_yield] = ACTIONS(2455), + [anon_sym_R_DQUOTE] = ACTIONS(2457), + [anon_sym_LR_DQUOTE] = ACTIONS(2457), + [anon_sym_uR_DQUOTE] = ACTIONS(2457), + [anon_sym_UR_DQUOTE] = ACTIONS(2457), + [anon_sym_u8R_DQUOTE] = ACTIONS(2457), + [anon_sym_co_await] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2455), + [anon_sym_requires] = ACTIONS(2455), + [sym_this] = ACTIONS(2455), + [sym_nullptr] = ACTIONS(2455), + }, + [675] = { + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2449), + [aux_sym_preproc_include_token1] = ACTIONS(2449), + [aux_sym_preproc_def_token1] = ACTIONS(2449), + [aux_sym_preproc_if_token1] = ACTIONS(2449), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2449), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2449), + [sym_preproc_directive] = ACTIONS(2449), + [anon_sym_LPAREN2] = ACTIONS(2451), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_TILDE] = ACTIONS(2451), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2451), + [anon_sym_AMP_AMP] = ACTIONS(2451), + [anon_sym_AMP] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_typedef] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym___attribute__] = ACTIONS(2449), + [anon_sym_COLON_COLON] = ACTIONS(2451), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2451), + [anon_sym___declspec] = ACTIONS(2449), + [anon_sym___based] = ACTIONS(2449), + [anon_sym___cdecl] = ACTIONS(2449), + [anon_sym___clrcall] = ACTIONS(2449), + [anon_sym___stdcall] = ACTIONS(2449), + [anon_sym___fastcall] = ACTIONS(2449), + [anon_sym___thiscall] = ACTIONS(2449), + [anon_sym___vectorcall] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_register] = ACTIONS(2449), + [anon_sym_inline] = ACTIONS(2449), + [anon_sym_thread_local] = ACTIONS(2449), + [anon_sym_input] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_volatile] = ACTIONS(2449), + [anon_sym_restrict] = ACTIONS(2449), + [anon_sym__Atomic] = ACTIONS(2449), + [anon_sym_mutable] = ACTIONS(2449), + [anon_sym_constexpr] = ACTIONS(2449), + [anon_sym_constinit] = ACTIONS(2449), + [anon_sym_consteval] = ACTIONS(2449), + [anon_sym_signed] = ACTIONS(2449), + [anon_sym_unsigned] = ACTIONS(2449), + [anon_sym_long] = ACTIONS(2449), + [anon_sym_short] = ACTIONS(2449), + [sym_primitive_type] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_class] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(2449), + [anon_sym_union] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(2449), + [anon_sym_case] = ACTIONS(2449), + [anon_sym_default] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_goto] = ACTIONS(2449), + [anon_sym_not] = ACTIONS(2449), + [anon_sym_compl] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2451), + [anon_sym_PLUS_PLUS] = ACTIONS(2451), + [anon_sym_sizeof] = ACTIONS(2449), + [sym_number_literal] = ACTIONS(2451), + [anon_sym_L_SQUOTE] = ACTIONS(2451), + [anon_sym_u_SQUOTE] = ACTIONS(2451), + [anon_sym_U_SQUOTE] = ACTIONS(2451), + [anon_sym_u8_SQUOTE] = ACTIONS(2451), + [anon_sym_SQUOTE] = ACTIONS(2451), + [anon_sym_L_DQUOTE] = ACTIONS(2451), + [anon_sym_u_DQUOTE] = ACTIONS(2451), + [anon_sym_U_DQUOTE] = ACTIONS(2451), + [anon_sym_u8_DQUOTE] = ACTIONS(2451), + [anon_sym_DQUOTE] = ACTIONS(2451), + [sym_true] = ACTIONS(2449), + [sym_false] = ACTIONS(2449), + [sym_null] = ACTIONS(2449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2449), + [anon_sym_decltype] = ACTIONS(2449), + [anon_sym_virtual] = ACTIONS(2449), + [anon_sym_explicit] = ACTIONS(2449), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(2449), + [anon_sym_operator] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_delete] = ACTIONS(2449), + [anon_sym_throw] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_using] = ACTIONS(2449), + [anon_sym_static_assert] = ACTIONS(2449), + [anon_sym_concept] = ACTIONS(2449), + [anon_sym_co_return] = ACTIONS(2449), + [anon_sym_co_yield] = ACTIONS(2449), + [anon_sym_R_DQUOTE] = ACTIONS(2451), + [anon_sym_LR_DQUOTE] = ACTIONS(2451), + [anon_sym_uR_DQUOTE] = ACTIONS(2451), + [anon_sym_UR_DQUOTE] = ACTIONS(2451), + [anon_sym_u8R_DQUOTE] = ACTIONS(2451), + [anon_sym_co_await] = ACTIONS(2449), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_requires] = ACTIONS(2449), + [sym_this] = ACTIONS(2449), + [sym_nullptr] = ACTIONS(2449), + }, + [676] = { + [sym_identifier] = ACTIONS(2419), + [aux_sym_preproc_include_token1] = ACTIONS(2419), + [aux_sym_preproc_def_token1] = ACTIONS(2419), + [aux_sym_preproc_if_token1] = ACTIONS(2419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2419), + [sym_preproc_directive] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_AMP_AMP] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2421), + [anon_sym_typedef] = ACTIONS(2419), + [anon_sym_extern] = ACTIONS(2419), + [anon_sym___attribute__] = ACTIONS(2419), + [anon_sym_COLON_COLON] = ACTIONS(2421), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2421), + [anon_sym___declspec] = ACTIONS(2419), + [anon_sym___based] = ACTIONS(2419), + [anon_sym___cdecl] = ACTIONS(2419), + [anon_sym___clrcall] = ACTIONS(2419), + [anon_sym___stdcall] = ACTIONS(2419), + [anon_sym___fastcall] = ACTIONS(2419), + [anon_sym___thiscall] = ACTIONS(2419), + [anon_sym___vectorcall] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_static] = ACTIONS(2419), + [anon_sym_register] = ACTIONS(2419), + [anon_sym_inline] = ACTIONS(2419), + [anon_sym_thread_local] = ACTIONS(2419), + [anon_sym_input] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_volatile] = ACTIONS(2419), + [anon_sym_restrict] = ACTIONS(2419), + [anon_sym__Atomic] = ACTIONS(2419), + [anon_sym_mutable] = ACTIONS(2419), + [anon_sym_constexpr] = ACTIONS(2419), + [anon_sym_constinit] = ACTIONS(2419), + [anon_sym_consteval] = ACTIONS(2419), + [anon_sym_signed] = ACTIONS(2419), + [anon_sym_unsigned] = ACTIONS(2419), + [anon_sym_long] = ACTIONS(2419), + [anon_sym_short] = ACTIONS(2419), + [sym_primitive_type] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2419), + [anon_sym_class] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2419), + [anon_sym_union] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_else] = ACTIONS(2853), + [anon_sym_switch] = ACTIONS(2419), + [anon_sym_case] = ACTIONS(2419), + [anon_sym_default] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [anon_sym_do] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_goto] = ACTIONS(2419), + [anon_sym_not] = ACTIONS(2419), + [anon_sym_compl] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2421), + [anon_sym_PLUS_PLUS] = ACTIONS(2421), + [anon_sym_sizeof] = ACTIONS(2419), + [sym_number_literal] = ACTIONS(2421), + [anon_sym_L_SQUOTE] = ACTIONS(2421), + [anon_sym_u_SQUOTE] = ACTIONS(2421), + [anon_sym_U_SQUOTE] = ACTIONS(2421), + [anon_sym_u8_SQUOTE] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_L_DQUOTE] = ACTIONS(2421), + [anon_sym_u_DQUOTE] = ACTIONS(2421), + [anon_sym_U_DQUOTE] = ACTIONS(2421), + [anon_sym_u8_DQUOTE] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [sym_true] = ACTIONS(2419), + [sym_false] = ACTIONS(2419), + [sym_null] = ACTIONS(2419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2419), + [anon_sym_decltype] = ACTIONS(2419), + [anon_sym_virtual] = ACTIONS(2419), + [anon_sym_explicit] = ACTIONS(2419), + [anon_sym_typename] = ACTIONS(2419), + [anon_sym_template] = ACTIONS(2419), + [anon_sym_operator] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2419), + [anon_sym_delete] = ACTIONS(2419), + [anon_sym_throw] = ACTIONS(2419), + [anon_sym_namespace] = ACTIONS(2419), + [anon_sym_using] = ACTIONS(2419), + [anon_sym_static_assert] = ACTIONS(2419), + [anon_sym_concept] = ACTIONS(2419), + [anon_sym_co_return] = ACTIONS(2419), + [anon_sym_co_yield] = ACTIONS(2419), + [anon_sym_R_DQUOTE] = ACTIONS(2421), + [anon_sym_LR_DQUOTE] = ACTIONS(2421), + [anon_sym_uR_DQUOTE] = ACTIONS(2421), + [anon_sym_UR_DQUOTE] = ACTIONS(2421), + [anon_sym_u8R_DQUOTE] = ACTIONS(2421), + [anon_sym_co_await] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(2419), + [anon_sym_requires] = ACTIONS(2419), + [sym_this] = ACTIONS(2419), + [sym_nullptr] = ACTIONS(2419), + }, + [677] = { + [sym_identifier] = ACTIONS(2475), + [aux_sym_preproc_include_token1] = ACTIONS(2475), + [aux_sym_preproc_def_token1] = ACTIONS(2475), + [aux_sym_preproc_if_token1] = ACTIONS(2475), + [aux_sym_preproc_if_token2] = ACTIONS(2475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2475), + [sym_preproc_directive] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2477), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_typedef] = ACTIONS(2475), + [anon_sym_extern] = ACTIONS(2475), + [anon_sym___attribute__] = ACTIONS(2475), + [anon_sym_COLON_COLON] = ACTIONS(2477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), + [anon_sym___declspec] = ACTIONS(2475), + [anon_sym___based] = ACTIONS(2475), + [anon_sym___cdecl] = ACTIONS(2475), + [anon_sym___clrcall] = ACTIONS(2475), + [anon_sym___stdcall] = ACTIONS(2475), + [anon_sym___fastcall] = ACTIONS(2475), + [anon_sym___thiscall] = ACTIONS(2475), + [anon_sym___vectorcall] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2475), + [anon_sym_register] = ACTIONS(2475), + [anon_sym_inline] = ACTIONS(2475), + [anon_sym_thread_local] = ACTIONS(2475), + [anon_sym_input] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_volatile] = ACTIONS(2475), + [anon_sym_restrict] = ACTIONS(2475), + [anon_sym__Atomic] = ACTIONS(2475), + [anon_sym_mutable] = ACTIONS(2475), + [anon_sym_constexpr] = ACTIONS(2475), + [anon_sym_constinit] = ACTIONS(2475), + [anon_sym_consteval] = ACTIONS(2475), + [anon_sym_signed] = ACTIONS(2475), + [anon_sym_unsigned] = ACTIONS(2475), + [anon_sym_long] = ACTIONS(2475), + [anon_sym_short] = ACTIONS(2475), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_class] = ACTIONS(2475), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_switch] = ACTIONS(2475), + [anon_sym_case] = ACTIONS(2475), + [anon_sym_default] = ACTIONS(2475), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_do] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_not] = ACTIONS(2475), + [anon_sym_compl] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2477), + [anon_sym_PLUS_PLUS] = ACTIONS(2477), + [anon_sym_sizeof] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), + [anon_sym_L_SQUOTE] = ACTIONS(2477), + [anon_sym_u_SQUOTE] = ACTIONS(2477), + [anon_sym_U_SQUOTE] = ACTIONS(2477), + [anon_sym_u8_SQUOTE] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2477), + [anon_sym_L_DQUOTE] = ACTIONS(2477), + [anon_sym_u_DQUOTE] = ACTIONS(2477), + [anon_sym_U_DQUOTE] = ACTIONS(2477), + [anon_sym_u8_DQUOTE] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2477), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_null] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2475), + [anon_sym_decltype] = ACTIONS(2475), + [anon_sym_virtual] = ACTIONS(2475), + [anon_sym_explicit] = ACTIONS(2475), + [anon_sym_typename] = ACTIONS(2475), + [anon_sym_template] = ACTIONS(2475), + [anon_sym_operator] = ACTIONS(2475), + [anon_sym_try] = ACTIONS(2475), + [anon_sym_delete] = ACTIONS(2475), + [anon_sym_throw] = ACTIONS(2475), + [anon_sym_namespace] = ACTIONS(2475), + [anon_sym_using] = ACTIONS(2475), + [anon_sym_static_assert] = ACTIONS(2475), + [anon_sym_concept] = ACTIONS(2475), + [anon_sym_co_return] = ACTIONS(2475), + [anon_sym_co_yield] = ACTIONS(2475), + [anon_sym_R_DQUOTE] = ACTIONS(2477), + [anon_sym_LR_DQUOTE] = ACTIONS(2477), + [anon_sym_uR_DQUOTE] = ACTIONS(2477), + [anon_sym_UR_DQUOTE] = ACTIONS(2477), + [anon_sym_u8R_DQUOTE] = ACTIONS(2477), + [anon_sym_co_await] = ACTIONS(2475), + [anon_sym_new] = ACTIONS(2475), + [anon_sym_requires] = ACTIONS(2475), + [sym_this] = ACTIONS(2475), + [sym_nullptr] = ACTIONS(2475), + }, + [678] = { + [sym_identifier] = ACTIONS(2479), + [aux_sym_preproc_include_token1] = ACTIONS(2479), + [aux_sym_preproc_def_token1] = ACTIONS(2479), + [aux_sym_preproc_if_token1] = ACTIONS(2479), + [aux_sym_preproc_if_token2] = ACTIONS(2479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2479), + [sym_preproc_directive] = ACTIONS(2479), + [anon_sym_LPAREN2] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_TILDE] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_typedef] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym___attribute__] = ACTIONS(2479), + [anon_sym_COLON_COLON] = ACTIONS(2481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), + [anon_sym___declspec] = ACTIONS(2479), + [anon_sym___based] = ACTIONS(2479), + [anon_sym___cdecl] = ACTIONS(2479), + [anon_sym___clrcall] = ACTIONS(2479), + [anon_sym___stdcall] = ACTIONS(2479), + [anon_sym___fastcall] = ACTIONS(2479), + [anon_sym___thiscall] = ACTIONS(2479), + [anon_sym___vectorcall] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_register] = ACTIONS(2479), + [anon_sym_inline] = ACTIONS(2479), + [anon_sym_thread_local] = ACTIONS(2479), + [anon_sym_input] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_volatile] = ACTIONS(2479), + [anon_sym_restrict] = ACTIONS(2479), + [anon_sym__Atomic] = ACTIONS(2479), + [anon_sym_mutable] = ACTIONS(2479), + [anon_sym_constexpr] = ACTIONS(2479), + [anon_sym_constinit] = ACTIONS(2479), + [anon_sym_consteval] = ACTIONS(2479), + [anon_sym_signed] = ACTIONS(2479), + [anon_sym_unsigned] = ACTIONS(2479), + [anon_sym_long] = ACTIONS(2479), + [anon_sym_short] = ACTIONS(2479), + [sym_primitive_type] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_class] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_switch] = ACTIONS(2479), + [anon_sym_case] = ACTIONS(2479), + [anon_sym_default] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_goto] = ACTIONS(2479), + [anon_sym_not] = ACTIONS(2479), + [anon_sym_compl] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2481), + [anon_sym_PLUS_PLUS] = ACTIONS(2481), + [anon_sym_sizeof] = ACTIONS(2479), + [sym_number_literal] = ACTIONS(2481), + [anon_sym_L_SQUOTE] = ACTIONS(2481), + [anon_sym_u_SQUOTE] = ACTIONS(2481), + [anon_sym_U_SQUOTE] = ACTIONS(2481), + [anon_sym_u8_SQUOTE] = ACTIONS(2481), + [anon_sym_SQUOTE] = ACTIONS(2481), + [anon_sym_L_DQUOTE] = ACTIONS(2481), + [anon_sym_u_DQUOTE] = ACTIONS(2481), + [anon_sym_U_DQUOTE] = ACTIONS(2481), + [anon_sym_u8_DQUOTE] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(2481), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2479), + [anon_sym_decltype] = ACTIONS(2479), + [anon_sym_virtual] = ACTIONS(2479), + [anon_sym_explicit] = ACTIONS(2479), + [anon_sym_typename] = ACTIONS(2479), + [anon_sym_template] = ACTIONS(2479), + [anon_sym_operator] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2479), + [anon_sym_delete] = ACTIONS(2479), + [anon_sym_throw] = ACTIONS(2479), + [anon_sym_namespace] = ACTIONS(2479), + [anon_sym_using] = ACTIONS(2479), + [anon_sym_static_assert] = ACTIONS(2479), + [anon_sym_concept] = ACTIONS(2479), + [anon_sym_co_return] = ACTIONS(2479), + [anon_sym_co_yield] = ACTIONS(2479), + [anon_sym_R_DQUOTE] = ACTIONS(2481), + [anon_sym_LR_DQUOTE] = ACTIONS(2481), + [anon_sym_uR_DQUOTE] = ACTIONS(2481), + [anon_sym_UR_DQUOTE] = ACTIONS(2481), + [anon_sym_u8R_DQUOTE] = ACTIONS(2481), + [anon_sym_co_await] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(2479), + [anon_sym_requires] = ACTIONS(2479), + [sym_this] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + }, + [679] = { + [sym_identifier] = ACTIONS(2017), + [aux_sym_preproc_include_token1] = ACTIONS(2017), + [aux_sym_preproc_def_token1] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2453), + [aux_sym_preproc_if_token1] = ACTIONS(2017), + [aux_sym_preproc_if_token2] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [sym_preproc_directive] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_typedef] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2015), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym_input] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym_mutable] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_constinit] = ACTIONS(2017), + [anon_sym_consteval] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2017), + [anon_sym_unsigned] = ACTIONS(2017), + [anon_sym_long] = ACTIONS(2017), + [anon_sym_short] = ACTIONS(2017), + [sym_primitive_type] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_class] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_switch] = ACTIONS(2017), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_goto] = ACTIONS(2017), + [anon_sym_not] = ACTIONS(2017), + [anon_sym_compl] = ACTIONS(2017), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_sizeof] = ACTIONS(2017), + [sym_number_literal] = ACTIONS(2015), + [anon_sym_L_SQUOTE] = ACTIONS(2015), + [anon_sym_u_SQUOTE] = ACTIONS(2015), + [anon_sym_U_SQUOTE] = ACTIONS(2015), + [anon_sym_u8_SQUOTE] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(2015), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [sym_null] = ACTIONS(2017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2017), + [anon_sym_decltype] = ACTIONS(2017), + [anon_sym_virtual] = ACTIONS(2017), + [anon_sym_explicit] = ACTIONS(2017), + [anon_sym_typename] = ACTIONS(2017), + [anon_sym_template] = ACTIONS(2017), + [anon_sym_operator] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_delete] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(2017), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_using] = ACTIONS(2017), + [anon_sym_static_assert] = ACTIONS(2017), + [anon_sym_concept] = ACTIONS(2017), + [anon_sym_co_return] = ACTIONS(2017), + [anon_sym_co_yield] = ACTIONS(2017), + [anon_sym_R_DQUOTE] = ACTIONS(2015), + [anon_sym_LR_DQUOTE] = ACTIONS(2015), + [anon_sym_uR_DQUOTE] = ACTIONS(2015), + [anon_sym_UR_DQUOTE] = ACTIONS(2015), + [anon_sym_u8R_DQUOTE] = ACTIONS(2015), + [anon_sym_co_await] = ACTIONS(2017), + [anon_sym_new] = ACTIONS(2017), + [anon_sym_requires] = ACTIONS(2017), + [sym_this] = ACTIONS(2017), + [sym_nullptr] = ACTIONS(2017), + }, + [680] = { + [sym_identifier] = ACTIONS(2017), + [aux_sym_preproc_include_token1] = ACTIONS(2017), + [aux_sym_preproc_def_token1] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2453), + [aux_sym_preproc_if_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [sym_preproc_directive] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_typedef] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2015), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym_input] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym_mutable] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_constinit] = ACTIONS(2017), + [anon_sym_consteval] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2017), + [anon_sym_unsigned] = ACTIONS(2017), + [anon_sym_long] = ACTIONS(2017), + [anon_sym_short] = ACTIONS(2017), + [sym_primitive_type] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_class] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_switch] = ACTIONS(2017), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_goto] = ACTIONS(2017), + [anon_sym_not] = ACTIONS(2017), + [anon_sym_compl] = ACTIONS(2017), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_sizeof] = ACTIONS(2017), + [sym_number_literal] = ACTIONS(2015), + [anon_sym_L_SQUOTE] = ACTIONS(2015), + [anon_sym_u_SQUOTE] = ACTIONS(2015), + [anon_sym_U_SQUOTE] = ACTIONS(2015), + [anon_sym_u8_SQUOTE] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(2015), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [sym_null] = ACTIONS(2017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2017), + [anon_sym_decltype] = ACTIONS(2017), + [anon_sym_virtual] = ACTIONS(2017), + [anon_sym_explicit] = ACTIONS(2017), + [anon_sym_typename] = ACTIONS(2017), + [anon_sym_template] = ACTIONS(2017), + [anon_sym_operator] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_delete] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(2017), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_using] = ACTIONS(2017), + [anon_sym_static_assert] = ACTIONS(2017), + [anon_sym_concept] = ACTIONS(2017), + [anon_sym_co_return] = ACTIONS(2017), + [anon_sym_co_yield] = ACTIONS(2017), + [anon_sym_R_DQUOTE] = ACTIONS(2015), + [anon_sym_LR_DQUOTE] = ACTIONS(2015), + [anon_sym_uR_DQUOTE] = ACTIONS(2015), + [anon_sym_UR_DQUOTE] = ACTIONS(2015), + [anon_sym_u8R_DQUOTE] = ACTIONS(2015), + [anon_sym_co_await] = ACTIONS(2017), + [anon_sym_new] = ACTIONS(2017), + [anon_sym_requires] = ACTIONS(2017), + [sym_this] = ACTIONS(2017), + [sym_nullptr] = ACTIONS(2017), + }, + [681] = { + [sym_identifier] = ACTIONS(2425), + [aux_sym_preproc_include_token1] = ACTIONS(2425), + [aux_sym_preproc_def_token1] = ACTIONS(2425), + [aux_sym_preproc_if_token1] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2425), + [sym_preproc_directive] = ACTIONS(2425), + [anon_sym_LPAREN2] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_AMP_AMP] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_typedef] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym___attribute__] = ACTIONS(2425), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2427), + [anon_sym___declspec] = ACTIONS(2425), + [anon_sym___based] = ACTIONS(2425), + [anon_sym___cdecl] = ACTIONS(2425), + [anon_sym___clrcall] = ACTIONS(2425), + [anon_sym___stdcall] = ACTIONS(2425), + [anon_sym___fastcall] = ACTIONS(2425), + [anon_sym___thiscall] = ACTIONS(2425), + [anon_sym___vectorcall] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_inline] = ACTIONS(2425), + [anon_sym_thread_local] = ACTIONS(2425), + [anon_sym_input] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_volatile] = ACTIONS(2425), + [anon_sym_restrict] = ACTIONS(2425), + [anon_sym__Atomic] = ACTIONS(2425), + [anon_sym_mutable] = ACTIONS(2425), + [anon_sym_constexpr] = ACTIONS(2425), + [anon_sym_constinit] = ACTIONS(2425), + [anon_sym_consteval] = ACTIONS(2425), + [anon_sym_signed] = ACTIONS(2425), + [anon_sym_unsigned] = ACTIONS(2425), + [anon_sym_long] = ACTIONS(2425), + [anon_sym_short] = ACTIONS(2425), + [sym_primitive_type] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2425), + [anon_sym_case] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_goto] = ACTIONS(2425), + [anon_sym_not] = ACTIONS(2425), + [anon_sym_compl] = ACTIONS(2425), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_sizeof] = ACTIONS(2425), + [sym_number_literal] = ACTIONS(2427), + [anon_sym_L_SQUOTE] = ACTIONS(2427), + [anon_sym_u_SQUOTE] = ACTIONS(2427), + [anon_sym_U_SQUOTE] = ACTIONS(2427), + [anon_sym_u8_SQUOTE] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_L_DQUOTE] = ACTIONS(2427), + [anon_sym_u_DQUOTE] = ACTIONS(2427), + [anon_sym_U_DQUOTE] = ACTIONS(2427), + [anon_sym_u8_DQUOTE] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym_true] = ACTIONS(2425), + [sym_false] = ACTIONS(2425), + [sym_null] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2425), + [anon_sym_decltype] = ACTIONS(2425), + [anon_sym_virtual] = ACTIONS(2425), + [anon_sym_explicit] = ACTIONS(2425), + [anon_sym_typename] = ACTIONS(2425), + [anon_sym_template] = ACTIONS(2425), + [anon_sym_operator] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_delete] = ACTIONS(2425), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_using] = ACTIONS(2425), + [anon_sym_static_assert] = ACTIONS(2425), + [anon_sym_concept] = ACTIONS(2425), + [anon_sym_co_return] = ACTIONS(2425), + [anon_sym_co_yield] = ACTIONS(2425), + [anon_sym_R_DQUOTE] = ACTIONS(2427), + [anon_sym_LR_DQUOTE] = ACTIONS(2427), + [anon_sym_uR_DQUOTE] = ACTIONS(2427), + [anon_sym_UR_DQUOTE] = ACTIONS(2427), + [anon_sym_u8R_DQUOTE] = ACTIONS(2427), + [anon_sym_co_await] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_requires] = ACTIONS(2425), + [sym_this] = ACTIONS(2425), + [sym_nullptr] = ACTIONS(2425), + }, + [682] = { + [sym_identifier] = ACTIONS(2425), + [aux_sym_preproc_include_token1] = ACTIONS(2425), + [aux_sym_preproc_def_token1] = ACTIONS(2425), + [aux_sym_preproc_if_token1] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2425), + [sym_preproc_directive] = ACTIONS(2425), + [anon_sym_LPAREN2] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_AMP_AMP] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_typedef] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym___attribute__] = ACTIONS(2425), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2427), + [anon_sym___declspec] = ACTIONS(2425), + [anon_sym___based] = ACTIONS(2425), + [anon_sym___cdecl] = ACTIONS(2425), + [anon_sym___clrcall] = ACTIONS(2425), + [anon_sym___stdcall] = ACTIONS(2425), + [anon_sym___fastcall] = ACTIONS(2425), + [anon_sym___thiscall] = ACTIONS(2425), + [anon_sym___vectorcall] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_inline] = ACTIONS(2425), + [anon_sym_thread_local] = ACTIONS(2425), + [anon_sym_input] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_volatile] = ACTIONS(2425), + [anon_sym_restrict] = ACTIONS(2425), + [anon_sym__Atomic] = ACTIONS(2425), + [anon_sym_mutable] = ACTIONS(2425), + [anon_sym_constexpr] = ACTIONS(2425), + [anon_sym_constinit] = ACTIONS(2425), + [anon_sym_consteval] = ACTIONS(2425), + [anon_sym_signed] = ACTIONS(2425), + [anon_sym_unsigned] = ACTIONS(2425), + [anon_sym_long] = ACTIONS(2425), + [anon_sym_short] = ACTIONS(2425), + [sym_primitive_type] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2425), + [anon_sym_case] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_goto] = ACTIONS(2425), + [anon_sym_not] = ACTIONS(2425), + [anon_sym_compl] = ACTIONS(2425), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_sizeof] = ACTIONS(2425), + [sym_number_literal] = ACTIONS(2427), + [anon_sym_L_SQUOTE] = ACTIONS(2427), + [anon_sym_u_SQUOTE] = ACTIONS(2427), + [anon_sym_U_SQUOTE] = ACTIONS(2427), + [anon_sym_u8_SQUOTE] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_L_DQUOTE] = ACTIONS(2427), + [anon_sym_u_DQUOTE] = ACTIONS(2427), + [anon_sym_U_DQUOTE] = ACTIONS(2427), + [anon_sym_u8_DQUOTE] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym_true] = ACTIONS(2425), + [sym_false] = ACTIONS(2425), + [sym_null] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2425), + [anon_sym_decltype] = ACTIONS(2425), + [anon_sym_virtual] = ACTIONS(2425), + [anon_sym_explicit] = ACTIONS(2425), + [anon_sym_typename] = ACTIONS(2425), + [anon_sym_template] = ACTIONS(2425), + [anon_sym_operator] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_delete] = ACTIONS(2425), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_using] = ACTIONS(2425), + [anon_sym_static_assert] = ACTIONS(2425), + [anon_sym_concept] = ACTIONS(2425), + [anon_sym_co_return] = ACTIONS(2425), + [anon_sym_co_yield] = ACTIONS(2425), + [anon_sym_R_DQUOTE] = ACTIONS(2427), + [anon_sym_LR_DQUOTE] = ACTIONS(2427), + [anon_sym_uR_DQUOTE] = ACTIONS(2427), + [anon_sym_UR_DQUOTE] = ACTIONS(2427), + [anon_sym_u8R_DQUOTE] = ACTIONS(2427), + [anon_sym_co_await] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_requires] = ACTIONS(2425), + [sym_this] = ACTIONS(2425), + [sym_nullptr] = ACTIONS(2425), + }, + [683] = { + [sym_identifier] = ACTIONS(2483), + [aux_sym_preproc_include_token1] = ACTIONS(2483), + [aux_sym_preproc_def_token1] = ACTIONS(2483), + [aux_sym_preproc_if_token1] = ACTIONS(2483), + [aux_sym_preproc_if_token2] = ACTIONS(2483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), + [sym_preproc_directive] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_PLUS] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_AMP_AMP] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_typedef] = ACTIONS(2483), + [anon_sym_extern] = ACTIONS(2483), + [anon_sym___attribute__] = ACTIONS(2483), + [anon_sym_COLON_COLON] = ACTIONS(2485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), + [anon_sym___declspec] = ACTIONS(2483), + [anon_sym___based] = ACTIONS(2483), + [anon_sym___cdecl] = ACTIONS(2483), + [anon_sym___clrcall] = ACTIONS(2483), + [anon_sym___stdcall] = ACTIONS(2483), + [anon_sym___fastcall] = ACTIONS(2483), + [anon_sym___thiscall] = ACTIONS(2483), + [anon_sym___vectorcall] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_static] = ACTIONS(2483), + [anon_sym_register] = ACTIONS(2483), + [anon_sym_inline] = ACTIONS(2483), + [anon_sym_thread_local] = ACTIONS(2483), + [anon_sym_input] = ACTIONS(2483), + [anon_sym_const] = ACTIONS(2483), + [anon_sym_volatile] = ACTIONS(2483), + [anon_sym_restrict] = ACTIONS(2483), + [anon_sym__Atomic] = ACTIONS(2483), + [anon_sym_mutable] = ACTIONS(2483), + [anon_sym_constexpr] = ACTIONS(2483), + [anon_sym_constinit] = ACTIONS(2483), + [anon_sym_consteval] = ACTIONS(2483), + [anon_sym_signed] = ACTIONS(2483), + [anon_sym_unsigned] = ACTIONS(2483), + [anon_sym_long] = ACTIONS(2483), + [anon_sym_short] = ACTIONS(2483), + [sym_primitive_type] = ACTIONS(2483), + [anon_sym_enum] = ACTIONS(2483), + [anon_sym_class] = ACTIONS(2483), + [anon_sym_struct] = ACTIONS(2483), + [anon_sym_union] = ACTIONS(2483), + [anon_sym_if] = ACTIONS(2483), + [anon_sym_else] = ACTIONS(2483), + [anon_sym_switch] = ACTIONS(2483), + [anon_sym_case] = ACTIONS(2483), + [anon_sym_default] = ACTIONS(2483), + [anon_sym_while] = ACTIONS(2483), + [anon_sym_do] = ACTIONS(2483), + [anon_sym_for] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(2483), + [anon_sym_continue] = ACTIONS(2483), + [anon_sym_goto] = ACTIONS(2483), + [anon_sym_not] = ACTIONS(2483), + [anon_sym_compl] = ACTIONS(2483), + [anon_sym_DASH_DASH] = ACTIONS(2485), + [anon_sym_PLUS_PLUS] = ACTIONS(2485), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_number_literal] = ACTIONS(2485), + [anon_sym_L_SQUOTE] = ACTIONS(2485), + [anon_sym_u_SQUOTE] = ACTIONS(2485), + [anon_sym_U_SQUOTE] = ACTIONS(2485), + [anon_sym_u8_SQUOTE] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_L_DQUOTE] = ACTIONS(2485), + [anon_sym_u_DQUOTE] = ACTIONS(2485), + [anon_sym_U_DQUOTE] = ACTIONS(2485), + [anon_sym_u8_DQUOTE] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2485), + [sym_true] = ACTIONS(2483), + [sym_false] = ACTIONS(2483), + [sym_null] = ACTIONS(2483), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2483), + [anon_sym_decltype] = ACTIONS(2483), + [anon_sym_virtual] = ACTIONS(2483), + [anon_sym_explicit] = ACTIONS(2483), + [anon_sym_typename] = ACTIONS(2483), + [anon_sym_template] = ACTIONS(2483), + [anon_sym_operator] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2483), + [anon_sym_delete] = ACTIONS(2483), + [anon_sym_throw] = ACTIONS(2483), + [anon_sym_namespace] = ACTIONS(2483), + [anon_sym_using] = ACTIONS(2483), + [anon_sym_static_assert] = ACTIONS(2483), + [anon_sym_concept] = ACTIONS(2483), + [anon_sym_co_return] = ACTIONS(2483), + [anon_sym_co_yield] = ACTIONS(2483), + [anon_sym_R_DQUOTE] = ACTIONS(2485), + [anon_sym_LR_DQUOTE] = ACTIONS(2485), + [anon_sym_uR_DQUOTE] = ACTIONS(2485), + [anon_sym_UR_DQUOTE] = ACTIONS(2485), + [anon_sym_u8R_DQUOTE] = ACTIONS(2485), + [anon_sym_co_await] = ACTIONS(2483), + [anon_sym_new] = ACTIONS(2483), + [anon_sym_requires] = ACTIONS(2483), + [sym_this] = ACTIONS(2483), + [sym_nullptr] = ACTIONS(2483), + }, + [684] = { + [sym_identifier] = ACTIONS(2487), + [aux_sym_preproc_include_token1] = ACTIONS(2487), + [aux_sym_preproc_def_token1] = ACTIONS(2487), + [aux_sym_preproc_if_token1] = ACTIONS(2487), + [aux_sym_preproc_if_token2] = ACTIONS(2487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2487), + [sym_preproc_directive] = ACTIONS(2487), + [anon_sym_LPAREN2] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_AMP_AMP] = ACTIONS(2489), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_typedef] = ACTIONS(2487), + [anon_sym_extern] = ACTIONS(2487), + [anon_sym___attribute__] = ACTIONS(2487), + [anon_sym_COLON_COLON] = ACTIONS(2489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), + [anon_sym___declspec] = ACTIONS(2487), + [anon_sym___based] = ACTIONS(2487), + [anon_sym___cdecl] = ACTIONS(2487), + [anon_sym___clrcall] = ACTIONS(2487), + [anon_sym___stdcall] = ACTIONS(2487), + [anon_sym___fastcall] = ACTIONS(2487), + [anon_sym___thiscall] = ACTIONS(2487), + [anon_sym___vectorcall] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_register] = ACTIONS(2487), + [anon_sym_inline] = ACTIONS(2487), + [anon_sym_thread_local] = ACTIONS(2487), + [anon_sym_input] = ACTIONS(2487), + [anon_sym_const] = ACTIONS(2487), + [anon_sym_volatile] = ACTIONS(2487), + [anon_sym_restrict] = ACTIONS(2487), + [anon_sym__Atomic] = ACTIONS(2487), + [anon_sym_mutable] = ACTIONS(2487), + [anon_sym_constexpr] = ACTIONS(2487), + [anon_sym_constinit] = ACTIONS(2487), + [anon_sym_consteval] = ACTIONS(2487), + [anon_sym_signed] = ACTIONS(2487), + [anon_sym_unsigned] = ACTIONS(2487), + [anon_sym_long] = ACTIONS(2487), + [anon_sym_short] = ACTIONS(2487), + [sym_primitive_type] = ACTIONS(2487), + [anon_sym_enum] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_struct] = ACTIONS(2487), + [anon_sym_union] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2487), + [anon_sym_switch] = ACTIONS(2487), + [anon_sym_case] = ACTIONS(2487), + [anon_sym_default] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_do] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_goto] = ACTIONS(2487), + [anon_sym_not] = ACTIONS(2487), + [anon_sym_compl] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2489), + [anon_sym_sizeof] = ACTIONS(2487), + [sym_number_literal] = ACTIONS(2489), + [anon_sym_L_SQUOTE] = ACTIONS(2489), + [anon_sym_u_SQUOTE] = ACTIONS(2489), + [anon_sym_U_SQUOTE] = ACTIONS(2489), + [anon_sym_u8_SQUOTE] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(2489), + [anon_sym_L_DQUOTE] = ACTIONS(2489), + [anon_sym_u_DQUOTE] = ACTIONS(2489), + [anon_sym_U_DQUOTE] = ACTIONS(2489), + [anon_sym_u8_DQUOTE] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_null] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2487), + [anon_sym_decltype] = ACTIONS(2487), + [anon_sym_virtual] = ACTIONS(2487), + [anon_sym_explicit] = ACTIONS(2487), + [anon_sym_typename] = ACTIONS(2487), + [anon_sym_template] = ACTIONS(2487), + [anon_sym_operator] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [anon_sym_delete] = ACTIONS(2487), + [anon_sym_throw] = ACTIONS(2487), + [anon_sym_namespace] = ACTIONS(2487), + [anon_sym_using] = ACTIONS(2487), + [anon_sym_static_assert] = ACTIONS(2487), + [anon_sym_concept] = ACTIONS(2487), + [anon_sym_co_return] = ACTIONS(2487), + [anon_sym_co_yield] = ACTIONS(2487), + [anon_sym_R_DQUOTE] = ACTIONS(2489), + [anon_sym_LR_DQUOTE] = ACTIONS(2489), + [anon_sym_uR_DQUOTE] = ACTIONS(2489), + [anon_sym_UR_DQUOTE] = ACTIONS(2489), + [anon_sym_u8R_DQUOTE] = ACTIONS(2489), + [anon_sym_co_await] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_requires] = ACTIONS(2487), + [sym_this] = ACTIONS(2487), + [sym_nullptr] = ACTIONS(2487), + }, + [685] = { [sym_identifier] = ACTIONS(2395), [aux_sym_preproc_include_token1] = ACTIONS(2395), [aux_sym_preproc_def_token1] = ACTIONS(2395), [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), [sym_preproc_directive] = ACTIONS(2395), @@ -113041,12 +116151,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2395), [anon_sym___vectorcall] = ACTIONS(2395), [anon_sym_LBRACE] = ACTIONS(2397), - [anon_sym_RBRACE] = ACTIONS(2397), [anon_sym_LBRACK] = ACTIONS(2395), [anon_sym_static] = ACTIONS(2395), [anon_sym_register] = ACTIONS(2395), [anon_sym_inline] = ACTIONS(2395), [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), [anon_sym_const] = ACTIONS(2395), [anon_sym_volatile] = ACTIONS(2395), [anon_sym_restrict] = ACTIONS(2395), @@ -113123,13793 +116233,1489 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2395), [sym_nullptr] = ACTIONS(2395), }, - [663] = { - [sym_identifier] = ACTIONS(2631), - [aux_sym_preproc_include_token1] = ACTIONS(2631), - [aux_sym_preproc_def_token1] = ACTIONS(2631), - [aux_sym_preproc_if_token1] = ACTIONS(2631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), - [sym_preproc_directive] = ACTIONS(2631), - [anon_sym_LPAREN2] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2631), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_typedef] = ACTIONS(2631), - [anon_sym_extern] = ACTIONS(2631), - [anon_sym___attribute__] = ACTIONS(2631), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), - [anon_sym___declspec] = ACTIONS(2631), - [anon_sym___based] = ACTIONS(2631), - [anon_sym___cdecl] = ACTIONS(2631), - [anon_sym___clrcall] = ACTIONS(2631), - [anon_sym___stdcall] = ACTIONS(2631), - [anon_sym___fastcall] = ACTIONS(2631), - [anon_sym___thiscall] = ACTIONS(2631), - [anon_sym___vectorcall] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_RBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_register] = ACTIONS(2631), - [anon_sym_inline] = ACTIONS(2631), - [anon_sym_thread_local] = ACTIONS(2631), - [anon_sym_const] = ACTIONS(2631), - [anon_sym_volatile] = ACTIONS(2631), - [anon_sym_restrict] = ACTIONS(2631), - [anon_sym__Atomic] = ACTIONS(2631), - [anon_sym_mutable] = ACTIONS(2631), - [anon_sym_constexpr] = ACTIONS(2631), - [anon_sym_constinit] = ACTIONS(2631), - [anon_sym_consteval] = ACTIONS(2631), - [anon_sym_signed] = ACTIONS(2631), - [anon_sym_unsigned] = ACTIONS(2631), - [anon_sym_long] = ACTIONS(2631), - [anon_sym_short] = ACTIONS(2631), - [sym_primitive_type] = ACTIONS(2631), - [anon_sym_enum] = ACTIONS(2631), - [anon_sym_class] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2631), - [anon_sym_union] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_else] = ACTIONS(2631), - [anon_sym_switch] = ACTIONS(2631), - [anon_sym_case] = ACTIONS(2631), - [anon_sym_default] = ACTIONS(2631), - [anon_sym_while] = ACTIONS(2631), - [anon_sym_do] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_return] = ACTIONS(2631), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_continue] = ACTIONS(2631), - [anon_sym_goto] = ACTIONS(2631), - [anon_sym_not] = ACTIONS(2631), - [anon_sym_compl] = ACTIONS(2631), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_sizeof] = ACTIONS(2631), - [sym_number_literal] = ACTIONS(2633), - [anon_sym_L_SQUOTE] = ACTIONS(2633), - [anon_sym_u_SQUOTE] = ACTIONS(2633), - [anon_sym_U_SQUOTE] = ACTIONS(2633), - [anon_sym_u8_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_L_DQUOTE] = ACTIONS(2633), - [anon_sym_u_DQUOTE] = ACTIONS(2633), - [anon_sym_U_DQUOTE] = ACTIONS(2633), - [anon_sym_u8_DQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [sym_true] = ACTIONS(2631), - [sym_false] = ACTIONS(2631), - [sym_null] = ACTIONS(2631), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2631), - [anon_sym_decltype] = ACTIONS(2631), - [anon_sym_virtual] = ACTIONS(2631), - [anon_sym_explicit] = ACTIONS(2631), - [anon_sym_typename] = ACTIONS(2631), - [anon_sym_template] = ACTIONS(2631), - [anon_sym_operator] = ACTIONS(2631), - [anon_sym_try] = ACTIONS(2631), - [anon_sym_delete] = ACTIONS(2631), - [anon_sym_throw] = ACTIONS(2631), - [anon_sym_namespace] = ACTIONS(2631), - [anon_sym_using] = ACTIONS(2631), - [anon_sym_static_assert] = ACTIONS(2631), - [anon_sym_concept] = ACTIONS(2631), - [anon_sym_co_return] = ACTIONS(2631), - [anon_sym_co_yield] = ACTIONS(2631), - [anon_sym_R_DQUOTE] = ACTIONS(2633), - [anon_sym_LR_DQUOTE] = ACTIONS(2633), - [anon_sym_uR_DQUOTE] = ACTIONS(2633), - [anon_sym_UR_DQUOTE] = ACTIONS(2633), - [anon_sym_u8R_DQUOTE] = ACTIONS(2633), - [anon_sym_co_await] = ACTIONS(2631), - [anon_sym_new] = ACTIONS(2631), - [anon_sym_requires] = ACTIONS(2631), - [sym_this] = ACTIONS(2631), - [sym_nullptr] = ACTIONS(2631), - }, - [664] = { - [sym_identifier] = ACTIONS(2635), - [aux_sym_preproc_include_token1] = ACTIONS(2635), - [aux_sym_preproc_def_token1] = ACTIONS(2635), - [aux_sym_preproc_if_token1] = ACTIONS(2635), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), - [sym_preproc_directive] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2635), - [anon_sym_extern] = ACTIONS(2635), - [anon_sym___attribute__] = ACTIONS(2635), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), - [anon_sym___declspec] = ACTIONS(2635), - [anon_sym___based] = ACTIONS(2635), - [anon_sym___cdecl] = ACTIONS(2635), - [anon_sym___clrcall] = ACTIONS(2635), - [anon_sym___stdcall] = ACTIONS(2635), - [anon_sym___fastcall] = ACTIONS(2635), - [anon_sym___thiscall] = ACTIONS(2635), - [anon_sym___vectorcall] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_static] = ACTIONS(2635), - [anon_sym_register] = ACTIONS(2635), - [anon_sym_inline] = ACTIONS(2635), - [anon_sym_thread_local] = ACTIONS(2635), - [anon_sym_const] = ACTIONS(2635), - [anon_sym_volatile] = ACTIONS(2635), - [anon_sym_restrict] = ACTIONS(2635), - [anon_sym__Atomic] = ACTIONS(2635), - [anon_sym_mutable] = ACTIONS(2635), - [anon_sym_constexpr] = ACTIONS(2635), - [anon_sym_constinit] = ACTIONS(2635), - [anon_sym_consteval] = ACTIONS(2635), - [anon_sym_signed] = ACTIONS(2635), - [anon_sym_unsigned] = ACTIONS(2635), - [anon_sym_long] = ACTIONS(2635), - [anon_sym_short] = ACTIONS(2635), - [sym_primitive_type] = ACTIONS(2635), - [anon_sym_enum] = ACTIONS(2635), - [anon_sym_class] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2635), - [anon_sym_union] = ACTIONS(2635), - [anon_sym_if] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(2635), - [anon_sym_switch] = ACTIONS(2635), - [anon_sym_case] = ACTIONS(2635), - [anon_sym_default] = ACTIONS(2635), - [anon_sym_while] = ACTIONS(2635), - [anon_sym_do] = ACTIONS(2635), - [anon_sym_for] = ACTIONS(2635), - [anon_sym_return] = ACTIONS(2635), - [anon_sym_break] = ACTIONS(2635), - [anon_sym_continue] = ACTIONS(2635), - [anon_sym_goto] = ACTIONS(2635), - [anon_sym_not] = ACTIONS(2635), - [anon_sym_compl] = ACTIONS(2635), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_sizeof] = ACTIONS(2635), - [sym_number_literal] = ACTIONS(2637), - [anon_sym_L_SQUOTE] = ACTIONS(2637), - [anon_sym_u_SQUOTE] = ACTIONS(2637), - [anon_sym_U_SQUOTE] = ACTIONS(2637), - [anon_sym_u8_SQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_L_DQUOTE] = ACTIONS(2637), - [anon_sym_u_DQUOTE] = ACTIONS(2637), - [anon_sym_U_DQUOTE] = ACTIONS(2637), - [anon_sym_u8_DQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [sym_true] = ACTIONS(2635), - [sym_false] = ACTIONS(2635), - [sym_null] = ACTIONS(2635), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2635), - [anon_sym_decltype] = ACTIONS(2635), - [anon_sym_virtual] = ACTIONS(2635), - [anon_sym_explicit] = ACTIONS(2635), - [anon_sym_typename] = ACTIONS(2635), - [anon_sym_template] = ACTIONS(2635), - [anon_sym_operator] = ACTIONS(2635), - [anon_sym_try] = ACTIONS(2635), - [anon_sym_delete] = ACTIONS(2635), - [anon_sym_throw] = ACTIONS(2635), - [anon_sym_namespace] = ACTIONS(2635), - [anon_sym_using] = ACTIONS(2635), - [anon_sym_static_assert] = ACTIONS(2635), - [anon_sym_concept] = ACTIONS(2635), - [anon_sym_co_return] = ACTIONS(2635), - [anon_sym_co_yield] = ACTIONS(2635), - [anon_sym_R_DQUOTE] = ACTIONS(2637), - [anon_sym_LR_DQUOTE] = ACTIONS(2637), - [anon_sym_uR_DQUOTE] = ACTIONS(2637), - [anon_sym_UR_DQUOTE] = ACTIONS(2637), - [anon_sym_u8R_DQUOTE] = ACTIONS(2637), - [anon_sym_co_await] = ACTIONS(2635), - [anon_sym_new] = ACTIONS(2635), - [anon_sym_requires] = ACTIONS(2635), - [sym_this] = ACTIONS(2635), - [sym_nullptr] = ACTIONS(2635), - }, - [665] = { - [sym_identifier] = ACTIONS(2639), - [aux_sym_preproc_include_token1] = ACTIONS(2639), - [aux_sym_preproc_def_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), - [sym_preproc_directive] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2639), - [anon_sym_PLUS] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym___based] = ACTIONS(2639), - [anon_sym___cdecl] = ACTIONS(2639), - [anon_sym___clrcall] = ACTIONS(2639), - [anon_sym___stdcall] = ACTIONS(2639), - [anon_sym___fastcall] = ACTIONS(2639), - [anon_sym___thiscall] = ACTIONS(2639), - [anon_sym___vectorcall] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_else] = ACTIONS(2639), - [anon_sym_switch] = ACTIONS(2639), - [anon_sym_case] = ACTIONS(2639), - [anon_sym_default] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_do] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_goto] = ACTIONS(2639), - [anon_sym_not] = ACTIONS(2639), - [anon_sym_compl] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_sizeof] = ACTIONS(2639), - [sym_number_literal] = ACTIONS(2641), - [anon_sym_L_SQUOTE] = ACTIONS(2641), - [anon_sym_u_SQUOTE] = ACTIONS(2641), - [anon_sym_U_SQUOTE] = ACTIONS(2641), - [anon_sym_u8_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_L_DQUOTE] = ACTIONS(2641), - [anon_sym_u_DQUOTE] = ACTIONS(2641), - [anon_sym_U_DQUOTE] = ACTIONS(2641), - [anon_sym_u8_DQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_true] = ACTIONS(2639), - [sym_false] = ACTIONS(2639), - [sym_null] = ACTIONS(2639), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_explicit] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_operator] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [anon_sym_delete] = ACTIONS(2639), - [anon_sym_throw] = ACTIONS(2639), - [anon_sym_namespace] = ACTIONS(2639), - [anon_sym_using] = ACTIONS(2639), - [anon_sym_static_assert] = ACTIONS(2639), - [anon_sym_concept] = ACTIONS(2639), - [anon_sym_co_return] = ACTIONS(2639), - [anon_sym_co_yield] = ACTIONS(2639), - [anon_sym_R_DQUOTE] = ACTIONS(2641), - [anon_sym_LR_DQUOTE] = ACTIONS(2641), - [anon_sym_uR_DQUOTE] = ACTIONS(2641), - [anon_sym_UR_DQUOTE] = ACTIONS(2641), - [anon_sym_u8R_DQUOTE] = ACTIONS(2641), - [anon_sym_co_await] = ACTIONS(2639), - [anon_sym_new] = ACTIONS(2639), - [anon_sym_requires] = ACTIONS(2639), - [sym_this] = ACTIONS(2639), - [sym_nullptr] = ACTIONS(2639), - }, - [666] = { - [sym_identifier] = ACTIONS(2643), - [aux_sym_preproc_include_token1] = ACTIONS(2643), - [aux_sym_preproc_def_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), - [sym_preproc_directive] = ACTIONS(2643), - [anon_sym_LPAREN2] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_AMP_AMP] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_typedef] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym___attribute__] = ACTIONS(2643), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), - [anon_sym___declspec] = ACTIONS(2643), - [anon_sym___based] = ACTIONS(2643), - [anon_sym___cdecl] = ACTIONS(2643), - [anon_sym___clrcall] = ACTIONS(2643), - [anon_sym___stdcall] = ACTIONS(2643), - [anon_sym___fastcall] = ACTIONS(2643), - [anon_sym___thiscall] = ACTIONS(2643), - [anon_sym___vectorcall] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_RBRACE] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_register] = ACTIONS(2643), - [anon_sym_inline] = ACTIONS(2643), - [anon_sym_thread_local] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_volatile] = ACTIONS(2643), - [anon_sym_restrict] = ACTIONS(2643), - [anon_sym__Atomic] = ACTIONS(2643), - [anon_sym_mutable] = ACTIONS(2643), - [anon_sym_constexpr] = ACTIONS(2643), - [anon_sym_constinit] = ACTIONS(2643), - [anon_sym_consteval] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2643), - [anon_sym_unsigned] = ACTIONS(2643), - [anon_sym_long] = ACTIONS(2643), - [anon_sym_short] = ACTIONS(2643), - [sym_primitive_type] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_else] = ACTIONS(2855), - [anon_sym_switch] = ACTIONS(2643), - [anon_sym_case] = ACTIONS(2643), - [anon_sym_default] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym_not] = ACTIONS(2643), - [anon_sym_compl] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2643), - [sym_number_literal] = ACTIONS(2645), - [anon_sym_L_SQUOTE] = ACTIONS(2645), - [anon_sym_u_SQUOTE] = ACTIONS(2645), - [anon_sym_U_SQUOTE] = ACTIONS(2645), - [anon_sym_u8_SQUOTE] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2645), - [anon_sym_L_DQUOTE] = ACTIONS(2645), - [anon_sym_u_DQUOTE] = ACTIONS(2645), - [anon_sym_U_DQUOTE] = ACTIONS(2645), - [anon_sym_u8_DQUOTE] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2645), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_null] = ACTIONS(2643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2643), - [anon_sym_decltype] = ACTIONS(2643), - [anon_sym_virtual] = ACTIONS(2643), - [anon_sym_explicit] = ACTIONS(2643), - [anon_sym_typename] = ACTIONS(2643), - [anon_sym_template] = ACTIONS(2643), - [anon_sym_operator] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2643), - [anon_sym_delete] = ACTIONS(2643), - [anon_sym_throw] = ACTIONS(2643), - [anon_sym_namespace] = ACTIONS(2643), - [anon_sym_using] = ACTIONS(2643), - [anon_sym_static_assert] = ACTIONS(2643), - [anon_sym_concept] = ACTIONS(2643), - [anon_sym_co_return] = ACTIONS(2643), - [anon_sym_co_yield] = ACTIONS(2643), - [anon_sym_R_DQUOTE] = ACTIONS(2645), - [anon_sym_LR_DQUOTE] = ACTIONS(2645), - [anon_sym_uR_DQUOTE] = ACTIONS(2645), - [anon_sym_UR_DQUOTE] = ACTIONS(2645), - [anon_sym_u8R_DQUOTE] = ACTIONS(2645), - [anon_sym_co_await] = ACTIONS(2643), - [anon_sym_new] = ACTIONS(2643), - [anon_sym_requires] = ACTIONS(2643), - [sym_this] = ACTIONS(2643), - [sym_nullptr] = ACTIONS(2643), - }, - [667] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [668] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [669] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [670] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [671] = { - [sym_identifier] = ACTIONS(2599), - [aux_sym_preproc_include_token1] = ACTIONS(2599), - [aux_sym_preproc_def_token1] = ACTIONS(2599), - [aux_sym_preproc_if_token1] = ACTIONS(2599), - [aux_sym_preproc_if_token2] = ACTIONS(2599), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2599), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2599), - [sym_preproc_directive] = ACTIONS(2599), - [anon_sym_LPAREN2] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2599), - [anon_sym_PLUS] = ACTIONS(2599), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_AMP_AMP] = ACTIONS(2601), - [anon_sym_AMP] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2601), - [anon_sym_typedef] = ACTIONS(2599), - [anon_sym_extern] = ACTIONS(2599), - [anon_sym___attribute__] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), - [anon_sym___declspec] = ACTIONS(2599), - [anon_sym___based] = ACTIONS(2599), - [anon_sym___cdecl] = ACTIONS(2599), - [anon_sym___clrcall] = ACTIONS(2599), - [anon_sym___stdcall] = ACTIONS(2599), - [anon_sym___fastcall] = ACTIONS(2599), - [anon_sym___thiscall] = ACTIONS(2599), - [anon_sym___vectorcall] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_static] = ACTIONS(2599), - [anon_sym_register] = ACTIONS(2599), - [anon_sym_inline] = ACTIONS(2599), - [anon_sym_thread_local] = ACTIONS(2599), - [anon_sym_const] = ACTIONS(2599), - [anon_sym_volatile] = ACTIONS(2599), - [anon_sym_restrict] = ACTIONS(2599), - [anon_sym__Atomic] = ACTIONS(2599), - [anon_sym_mutable] = ACTIONS(2599), - [anon_sym_constexpr] = ACTIONS(2599), - [anon_sym_constinit] = ACTIONS(2599), - [anon_sym_consteval] = ACTIONS(2599), - [anon_sym_signed] = ACTIONS(2599), - [anon_sym_unsigned] = ACTIONS(2599), - [anon_sym_long] = ACTIONS(2599), - [anon_sym_short] = ACTIONS(2599), - [sym_primitive_type] = ACTIONS(2599), - [anon_sym_enum] = ACTIONS(2599), - [anon_sym_class] = ACTIONS(2599), - [anon_sym_struct] = ACTIONS(2599), - [anon_sym_union] = ACTIONS(2599), - [anon_sym_if] = ACTIONS(2599), - [anon_sym_else] = ACTIONS(2599), - [anon_sym_switch] = ACTIONS(2599), - [anon_sym_case] = ACTIONS(2599), - [anon_sym_default] = ACTIONS(2599), - [anon_sym_while] = ACTIONS(2599), - [anon_sym_do] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2599), - [anon_sym_break] = ACTIONS(2599), - [anon_sym_continue] = ACTIONS(2599), - [anon_sym_goto] = ACTIONS(2599), - [anon_sym_not] = ACTIONS(2599), - [anon_sym_compl] = ACTIONS(2599), - [anon_sym_DASH_DASH] = ACTIONS(2601), - [anon_sym_PLUS_PLUS] = ACTIONS(2601), - [anon_sym_sizeof] = ACTIONS(2599), - [sym_number_literal] = ACTIONS(2601), - [anon_sym_L_SQUOTE] = ACTIONS(2601), - [anon_sym_u_SQUOTE] = ACTIONS(2601), - [anon_sym_U_SQUOTE] = ACTIONS(2601), - [anon_sym_u8_SQUOTE] = ACTIONS(2601), - [anon_sym_SQUOTE] = ACTIONS(2601), - [anon_sym_L_DQUOTE] = ACTIONS(2601), - [anon_sym_u_DQUOTE] = ACTIONS(2601), - [anon_sym_U_DQUOTE] = ACTIONS(2601), - [anon_sym_u8_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [sym_true] = ACTIONS(2599), - [sym_false] = ACTIONS(2599), - [sym_null] = ACTIONS(2599), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2599), - [anon_sym_decltype] = ACTIONS(2599), - [anon_sym_virtual] = ACTIONS(2599), - [anon_sym_explicit] = ACTIONS(2599), - [anon_sym_typename] = ACTIONS(2599), - [anon_sym_template] = ACTIONS(2599), - [anon_sym_operator] = ACTIONS(2599), - [anon_sym_try] = ACTIONS(2599), - [anon_sym_delete] = ACTIONS(2599), - [anon_sym_throw] = ACTIONS(2599), - [anon_sym_namespace] = ACTIONS(2599), - [anon_sym_using] = ACTIONS(2599), - [anon_sym_static_assert] = ACTIONS(2599), - [anon_sym_concept] = ACTIONS(2599), - [anon_sym_co_return] = ACTIONS(2599), - [anon_sym_co_yield] = ACTIONS(2599), - [anon_sym_R_DQUOTE] = ACTIONS(2601), - [anon_sym_LR_DQUOTE] = ACTIONS(2601), - [anon_sym_uR_DQUOTE] = ACTIONS(2601), - [anon_sym_UR_DQUOTE] = ACTIONS(2601), - [anon_sym_u8R_DQUOTE] = ACTIONS(2601), - [anon_sym_co_await] = ACTIONS(2599), - [anon_sym_new] = ACTIONS(2599), - [anon_sym_requires] = ACTIONS(2599), - [sym_this] = ACTIONS(2599), - [sym_nullptr] = ACTIONS(2599), - }, - [672] = { - [sym_identifier] = ACTIONS(2619), - [aux_sym_preproc_include_token1] = ACTIONS(2619), - [aux_sym_preproc_def_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), - [sym_preproc_directive] = ACTIONS(2619), - [anon_sym_LPAREN2] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2619), - [anon_sym_PLUS] = ACTIONS(2619), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_typedef] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym___attribute__] = ACTIONS(2619), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), - [anon_sym___declspec] = ACTIONS(2619), - [anon_sym___based] = ACTIONS(2619), - [anon_sym___cdecl] = ACTIONS(2619), - [anon_sym___clrcall] = ACTIONS(2619), - [anon_sym___stdcall] = ACTIONS(2619), - [anon_sym___fastcall] = ACTIONS(2619), - [anon_sym___thiscall] = ACTIONS(2619), - [anon_sym___vectorcall] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_RBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_register] = ACTIONS(2619), - [anon_sym_inline] = ACTIONS(2619), - [anon_sym_thread_local] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_volatile] = ACTIONS(2619), - [anon_sym_restrict] = ACTIONS(2619), - [anon_sym__Atomic] = ACTIONS(2619), - [anon_sym_mutable] = ACTIONS(2619), - [anon_sym_constexpr] = ACTIONS(2619), - [anon_sym_constinit] = ACTIONS(2619), - [anon_sym_consteval] = ACTIONS(2619), - [anon_sym_signed] = ACTIONS(2619), - [anon_sym_unsigned] = ACTIONS(2619), - [anon_sym_long] = ACTIONS(2619), - [anon_sym_short] = ACTIONS(2619), - [sym_primitive_type] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_class] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [anon_sym_if] = ACTIONS(2619), - [anon_sym_else] = ACTIONS(2619), - [anon_sym_switch] = ACTIONS(2619), - [anon_sym_case] = ACTIONS(2619), - [anon_sym_default] = ACTIONS(2619), - [anon_sym_while] = ACTIONS(2619), - [anon_sym_do] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2619), - [anon_sym_return] = ACTIONS(2619), - [anon_sym_break] = ACTIONS(2619), - [anon_sym_continue] = ACTIONS(2619), - [anon_sym_goto] = ACTIONS(2619), - [anon_sym_not] = ACTIONS(2619), - [anon_sym_compl] = ACTIONS(2619), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_sizeof] = ACTIONS(2619), - [sym_number_literal] = ACTIONS(2621), - [anon_sym_L_SQUOTE] = ACTIONS(2621), - [anon_sym_u_SQUOTE] = ACTIONS(2621), - [anon_sym_U_SQUOTE] = ACTIONS(2621), - [anon_sym_u8_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_L_DQUOTE] = ACTIONS(2621), - [anon_sym_u_DQUOTE] = ACTIONS(2621), - [anon_sym_U_DQUOTE] = ACTIONS(2621), - [anon_sym_u8_DQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [sym_true] = ACTIONS(2619), - [sym_false] = ACTIONS(2619), - [sym_null] = ACTIONS(2619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2619), - [anon_sym_decltype] = ACTIONS(2619), - [anon_sym_virtual] = ACTIONS(2619), - [anon_sym_explicit] = ACTIONS(2619), - [anon_sym_typename] = ACTIONS(2619), - [anon_sym_template] = ACTIONS(2619), - [anon_sym_operator] = ACTIONS(2619), - [anon_sym_try] = ACTIONS(2619), - [anon_sym_delete] = ACTIONS(2619), - [anon_sym_throw] = ACTIONS(2619), - [anon_sym_namespace] = ACTIONS(2619), - [anon_sym_using] = ACTIONS(2619), - [anon_sym_static_assert] = ACTIONS(2619), - [anon_sym_concept] = ACTIONS(2619), - [anon_sym_co_return] = ACTIONS(2619), - [anon_sym_co_yield] = ACTIONS(2619), - [anon_sym_R_DQUOTE] = ACTIONS(2621), - [anon_sym_LR_DQUOTE] = ACTIONS(2621), - [anon_sym_uR_DQUOTE] = ACTIONS(2621), - [anon_sym_UR_DQUOTE] = ACTIONS(2621), - [anon_sym_u8R_DQUOTE] = ACTIONS(2621), - [anon_sym_co_await] = ACTIONS(2619), - [anon_sym_new] = ACTIONS(2619), - [anon_sym_requires] = ACTIONS(2619), - [sym_this] = ACTIONS(2619), - [sym_nullptr] = ACTIONS(2619), - }, - [673] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [674] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [675] = { - [sym_identifier] = ACTIONS(2599), - [aux_sym_preproc_include_token1] = ACTIONS(2599), - [aux_sym_preproc_def_token1] = ACTIONS(2599), - [aux_sym_preproc_if_token1] = ACTIONS(2599), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2599), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2599), - [sym_preproc_directive] = ACTIONS(2599), - [anon_sym_LPAREN2] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2599), - [anon_sym_PLUS] = ACTIONS(2599), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_AMP_AMP] = ACTIONS(2601), - [anon_sym_AMP] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2601), - [anon_sym_typedef] = ACTIONS(2599), - [anon_sym_extern] = ACTIONS(2599), - [anon_sym___attribute__] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), - [anon_sym___declspec] = ACTIONS(2599), - [anon_sym___based] = ACTIONS(2599), - [anon_sym___cdecl] = ACTIONS(2599), - [anon_sym___clrcall] = ACTIONS(2599), - [anon_sym___stdcall] = ACTIONS(2599), - [anon_sym___fastcall] = ACTIONS(2599), - [anon_sym___thiscall] = ACTIONS(2599), - [anon_sym___vectorcall] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_RBRACE] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_static] = ACTIONS(2599), - [anon_sym_register] = ACTIONS(2599), - [anon_sym_inline] = ACTIONS(2599), - [anon_sym_thread_local] = ACTIONS(2599), - [anon_sym_const] = ACTIONS(2599), - [anon_sym_volatile] = ACTIONS(2599), - [anon_sym_restrict] = ACTIONS(2599), - [anon_sym__Atomic] = ACTIONS(2599), - [anon_sym_mutable] = ACTIONS(2599), - [anon_sym_constexpr] = ACTIONS(2599), - [anon_sym_constinit] = ACTIONS(2599), - [anon_sym_consteval] = ACTIONS(2599), - [anon_sym_signed] = ACTIONS(2599), - [anon_sym_unsigned] = ACTIONS(2599), - [anon_sym_long] = ACTIONS(2599), - [anon_sym_short] = ACTIONS(2599), - [sym_primitive_type] = ACTIONS(2599), - [anon_sym_enum] = ACTIONS(2599), - [anon_sym_class] = ACTIONS(2599), - [anon_sym_struct] = ACTIONS(2599), - [anon_sym_union] = ACTIONS(2599), - [anon_sym_if] = ACTIONS(2599), - [anon_sym_else] = ACTIONS(2599), - [anon_sym_switch] = ACTIONS(2599), - [anon_sym_case] = ACTIONS(2599), - [anon_sym_default] = ACTIONS(2599), - [anon_sym_while] = ACTIONS(2599), - [anon_sym_do] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2599), - [anon_sym_break] = ACTIONS(2599), - [anon_sym_continue] = ACTIONS(2599), - [anon_sym_goto] = ACTIONS(2599), - [anon_sym_not] = ACTIONS(2599), - [anon_sym_compl] = ACTIONS(2599), - [anon_sym_DASH_DASH] = ACTIONS(2601), - [anon_sym_PLUS_PLUS] = ACTIONS(2601), - [anon_sym_sizeof] = ACTIONS(2599), - [sym_number_literal] = ACTIONS(2601), - [anon_sym_L_SQUOTE] = ACTIONS(2601), - [anon_sym_u_SQUOTE] = ACTIONS(2601), - [anon_sym_U_SQUOTE] = ACTIONS(2601), - [anon_sym_u8_SQUOTE] = ACTIONS(2601), - [anon_sym_SQUOTE] = ACTIONS(2601), - [anon_sym_L_DQUOTE] = ACTIONS(2601), - [anon_sym_u_DQUOTE] = ACTIONS(2601), - [anon_sym_U_DQUOTE] = ACTIONS(2601), - [anon_sym_u8_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [sym_true] = ACTIONS(2599), - [sym_false] = ACTIONS(2599), - [sym_null] = ACTIONS(2599), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2599), - [anon_sym_decltype] = ACTIONS(2599), - [anon_sym_virtual] = ACTIONS(2599), - [anon_sym_explicit] = ACTIONS(2599), - [anon_sym_typename] = ACTIONS(2599), - [anon_sym_template] = ACTIONS(2599), - [anon_sym_operator] = ACTIONS(2599), - [anon_sym_try] = ACTIONS(2599), - [anon_sym_delete] = ACTIONS(2599), - [anon_sym_throw] = ACTIONS(2599), - [anon_sym_namespace] = ACTIONS(2599), - [anon_sym_using] = ACTIONS(2599), - [anon_sym_static_assert] = ACTIONS(2599), - [anon_sym_concept] = ACTIONS(2599), - [anon_sym_co_return] = ACTIONS(2599), - [anon_sym_co_yield] = ACTIONS(2599), - [anon_sym_R_DQUOTE] = ACTIONS(2601), - [anon_sym_LR_DQUOTE] = ACTIONS(2601), - [anon_sym_uR_DQUOTE] = ACTIONS(2601), - [anon_sym_UR_DQUOTE] = ACTIONS(2601), - [anon_sym_u8R_DQUOTE] = ACTIONS(2601), - [anon_sym_co_await] = ACTIONS(2599), - [anon_sym_new] = ACTIONS(2599), - [anon_sym_requires] = ACTIONS(2599), - [sym_this] = ACTIONS(2599), - [sym_nullptr] = ACTIONS(2599), - }, - [676] = { - [sym_identifier] = ACTIONS(2595), - [aux_sym_preproc_include_token1] = ACTIONS(2595), - [aux_sym_preproc_def_token1] = ACTIONS(2595), - [aux_sym_preproc_if_token1] = ACTIONS(2595), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), - [sym_preproc_directive] = ACTIONS(2595), - [anon_sym_LPAREN2] = ACTIONS(2597), - [anon_sym_BANG] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2595), - [anon_sym_PLUS] = ACTIONS(2595), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_AMP_AMP] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2597), - [anon_sym_typedef] = ACTIONS(2595), - [anon_sym_extern] = ACTIONS(2595), - [anon_sym___attribute__] = ACTIONS(2595), - [anon_sym_COLON_COLON] = ACTIONS(2597), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), - [anon_sym___declspec] = ACTIONS(2595), - [anon_sym___based] = ACTIONS(2595), - [anon_sym___cdecl] = ACTIONS(2595), - [anon_sym___clrcall] = ACTIONS(2595), - [anon_sym___stdcall] = ACTIONS(2595), - [anon_sym___fastcall] = ACTIONS(2595), - [anon_sym___thiscall] = ACTIONS(2595), - [anon_sym___vectorcall] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_static] = ACTIONS(2595), - [anon_sym_register] = ACTIONS(2595), - [anon_sym_inline] = ACTIONS(2595), - [anon_sym_thread_local] = ACTIONS(2595), - [anon_sym_const] = ACTIONS(2595), - [anon_sym_volatile] = ACTIONS(2595), - [anon_sym_restrict] = ACTIONS(2595), - [anon_sym__Atomic] = ACTIONS(2595), - [anon_sym_mutable] = ACTIONS(2595), - [anon_sym_constexpr] = ACTIONS(2595), - [anon_sym_constinit] = ACTIONS(2595), - [anon_sym_consteval] = ACTIONS(2595), - [anon_sym_signed] = ACTIONS(2595), - [anon_sym_unsigned] = ACTIONS(2595), - [anon_sym_long] = ACTIONS(2595), - [anon_sym_short] = ACTIONS(2595), - [sym_primitive_type] = ACTIONS(2595), - [anon_sym_enum] = ACTIONS(2595), - [anon_sym_class] = ACTIONS(2595), - [anon_sym_struct] = ACTIONS(2595), - [anon_sym_union] = ACTIONS(2595), - [anon_sym_if] = ACTIONS(2595), - [anon_sym_else] = ACTIONS(2595), - [anon_sym_switch] = ACTIONS(2595), - [anon_sym_case] = ACTIONS(2595), - [anon_sym_default] = ACTIONS(2595), - [anon_sym_while] = ACTIONS(2595), - [anon_sym_do] = ACTIONS(2595), - [anon_sym_for] = ACTIONS(2595), - [anon_sym_return] = ACTIONS(2595), - [anon_sym_break] = ACTIONS(2595), - [anon_sym_continue] = ACTIONS(2595), - [anon_sym_goto] = ACTIONS(2595), - [anon_sym_not] = ACTIONS(2595), - [anon_sym_compl] = ACTIONS(2595), - [anon_sym_DASH_DASH] = ACTIONS(2597), - [anon_sym_PLUS_PLUS] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2595), - [sym_number_literal] = ACTIONS(2597), - [anon_sym_L_SQUOTE] = ACTIONS(2597), - [anon_sym_u_SQUOTE] = ACTIONS(2597), - [anon_sym_U_SQUOTE] = ACTIONS(2597), - [anon_sym_u8_SQUOTE] = ACTIONS(2597), - [anon_sym_SQUOTE] = ACTIONS(2597), - [anon_sym_L_DQUOTE] = ACTIONS(2597), - [anon_sym_u_DQUOTE] = ACTIONS(2597), - [anon_sym_U_DQUOTE] = ACTIONS(2597), - [anon_sym_u8_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [sym_true] = ACTIONS(2595), - [sym_false] = ACTIONS(2595), - [sym_null] = ACTIONS(2595), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2595), - [anon_sym_decltype] = ACTIONS(2595), - [anon_sym_virtual] = ACTIONS(2595), - [anon_sym_explicit] = ACTIONS(2595), - [anon_sym_typename] = ACTIONS(2595), - [anon_sym_template] = ACTIONS(2595), - [anon_sym_operator] = ACTIONS(2595), - [anon_sym_try] = ACTIONS(2595), - [anon_sym_delete] = ACTIONS(2595), - [anon_sym_throw] = ACTIONS(2595), - [anon_sym_namespace] = ACTIONS(2595), - [anon_sym_using] = ACTIONS(2595), - [anon_sym_static_assert] = ACTIONS(2595), - [anon_sym_concept] = ACTIONS(2595), - [anon_sym_co_return] = ACTIONS(2595), - [anon_sym_co_yield] = ACTIONS(2595), - [anon_sym_R_DQUOTE] = ACTIONS(2597), - [anon_sym_LR_DQUOTE] = ACTIONS(2597), - [anon_sym_uR_DQUOTE] = ACTIONS(2597), - [anon_sym_UR_DQUOTE] = ACTIONS(2597), - [anon_sym_u8R_DQUOTE] = ACTIONS(2597), - [anon_sym_co_await] = ACTIONS(2595), - [anon_sym_new] = ACTIONS(2595), - [anon_sym_requires] = ACTIONS(2595), - [sym_this] = ACTIONS(2595), - [sym_nullptr] = ACTIONS(2595), - }, - [677] = { - [sym_identifier] = ACTIONS(2591), - [aux_sym_preproc_include_token1] = ACTIONS(2591), - [aux_sym_preproc_def_token1] = ACTIONS(2591), - [aux_sym_preproc_if_token1] = ACTIONS(2591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2591), - [sym_preproc_directive] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2593), - [anon_sym_TILDE] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_AMP_AMP] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_typedef] = ACTIONS(2591), - [anon_sym_extern] = ACTIONS(2591), - [anon_sym___attribute__] = ACTIONS(2591), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), - [anon_sym___declspec] = ACTIONS(2591), - [anon_sym___based] = ACTIONS(2591), - [anon_sym___cdecl] = ACTIONS(2591), - [anon_sym___clrcall] = ACTIONS(2591), - [anon_sym___stdcall] = ACTIONS(2591), - [anon_sym___fastcall] = ACTIONS(2591), - [anon_sym___thiscall] = ACTIONS(2591), - [anon_sym___vectorcall] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_RBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_static] = ACTIONS(2591), - [anon_sym_register] = ACTIONS(2591), - [anon_sym_inline] = ACTIONS(2591), - [anon_sym_thread_local] = ACTIONS(2591), - [anon_sym_const] = ACTIONS(2591), - [anon_sym_volatile] = ACTIONS(2591), - [anon_sym_restrict] = ACTIONS(2591), - [anon_sym__Atomic] = ACTIONS(2591), - [anon_sym_mutable] = ACTIONS(2591), - [anon_sym_constexpr] = ACTIONS(2591), - [anon_sym_constinit] = ACTIONS(2591), - [anon_sym_consteval] = ACTIONS(2591), - [anon_sym_signed] = ACTIONS(2591), - [anon_sym_unsigned] = ACTIONS(2591), - [anon_sym_long] = ACTIONS(2591), - [anon_sym_short] = ACTIONS(2591), - [sym_primitive_type] = ACTIONS(2591), - [anon_sym_enum] = ACTIONS(2591), - [anon_sym_class] = ACTIONS(2591), - [anon_sym_struct] = ACTIONS(2591), - [anon_sym_union] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_else] = ACTIONS(2591), - [anon_sym_switch] = ACTIONS(2591), - [anon_sym_case] = ACTIONS(2591), - [anon_sym_default] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_break] = ACTIONS(2591), - [anon_sym_continue] = ACTIONS(2591), - [anon_sym_goto] = ACTIONS(2591), - [anon_sym_not] = ACTIONS(2591), - [anon_sym_compl] = ACTIONS(2591), - [anon_sym_DASH_DASH] = ACTIONS(2593), - [anon_sym_PLUS_PLUS] = ACTIONS(2593), - [anon_sym_sizeof] = ACTIONS(2591), - [sym_number_literal] = ACTIONS(2593), - [anon_sym_L_SQUOTE] = ACTIONS(2593), - [anon_sym_u_SQUOTE] = ACTIONS(2593), - [anon_sym_U_SQUOTE] = ACTIONS(2593), - [anon_sym_u8_SQUOTE] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_L_DQUOTE] = ACTIONS(2593), - [anon_sym_u_DQUOTE] = ACTIONS(2593), - [anon_sym_U_DQUOTE] = ACTIONS(2593), - [anon_sym_u8_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE] = ACTIONS(2593), - [sym_true] = ACTIONS(2591), - [sym_false] = ACTIONS(2591), - [sym_null] = ACTIONS(2591), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2591), - [anon_sym_decltype] = ACTIONS(2591), - [anon_sym_virtual] = ACTIONS(2591), - [anon_sym_explicit] = ACTIONS(2591), - [anon_sym_typename] = ACTIONS(2591), - [anon_sym_template] = ACTIONS(2591), - [anon_sym_operator] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_delete] = ACTIONS(2591), - [anon_sym_throw] = ACTIONS(2591), - [anon_sym_namespace] = ACTIONS(2591), - [anon_sym_using] = ACTIONS(2591), - [anon_sym_static_assert] = ACTIONS(2591), - [anon_sym_concept] = ACTIONS(2591), - [anon_sym_co_return] = ACTIONS(2591), - [anon_sym_co_yield] = ACTIONS(2591), - [anon_sym_R_DQUOTE] = ACTIONS(2593), - [anon_sym_LR_DQUOTE] = ACTIONS(2593), - [anon_sym_uR_DQUOTE] = ACTIONS(2593), - [anon_sym_UR_DQUOTE] = ACTIONS(2593), - [anon_sym_u8R_DQUOTE] = ACTIONS(2593), - [anon_sym_co_await] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_requires] = ACTIONS(2591), - [sym_this] = ACTIONS(2591), - [sym_nullptr] = ACTIONS(2591), - }, - [678] = { - [sym_identifier] = ACTIONS(2587), - [aux_sym_preproc_include_token1] = ACTIONS(2587), - [aux_sym_preproc_def_token1] = ACTIONS(2587), - [aux_sym_preproc_if_token1] = ACTIONS(2587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2587), - [sym_preproc_directive] = ACTIONS(2587), - [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2589), - [anon_sym_TILDE] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_AMP_AMP] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2589), - [anon_sym_typedef] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym___attribute__] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2589), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), - [anon_sym___declspec] = ACTIONS(2587), - [anon_sym___based] = ACTIONS(2587), - [anon_sym___cdecl] = ACTIONS(2587), - [anon_sym___clrcall] = ACTIONS(2587), - [anon_sym___stdcall] = ACTIONS(2587), - [anon_sym___fastcall] = ACTIONS(2587), - [anon_sym___thiscall] = ACTIONS(2587), - [anon_sym___vectorcall] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2589), - [anon_sym_RBRACE] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_register] = ACTIONS(2587), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_thread_local] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_constexpr] = ACTIONS(2587), - [anon_sym_constinit] = ACTIONS(2587), - [anon_sym_consteval] = ACTIONS(2587), - [anon_sym_signed] = ACTIONS(2587), - [anon_sym_unsigned] = ACTIONS(2587), - [anon_sym_long] = ACTIONS(2587), - [anon_sym_short] = ACTIONS(2587), - [sym_primitive_type] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_class] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_else] = ACTIONS(2587), - [anon_sym_switch] = ACTIONS(2587), - [anon_sym_case] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_goto] = ACTIONS(2587), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_compl] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2589), - [anon_sym_PLUS_PLUS] = ACTIONS(2589), - [anon_sym_sizeof] = ACTIONS(2587), - [sym_number_literal] = ACTIONS(2589), - [anon_sym_L_SQUOTE] = ACTIONS(2589), - [anon_sym_u_SQUOTE] = ACTIONS(2589), - [anon_sym_U_SQUOTE] = ACTIONS(2589), - [anon_sym_u8_SQUOTE] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_L_DQUOTE] = ACTIONS(2589), - [anon_sym_u_DQUOTE] = ACTIONS(2589), - [anon_sym_U_DQUOTE] = ACTIONS(2589), - [anon_sym_u8_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE] = ACTIONS(2589), - [sym_true] = ACTIONS(2587), - [sym_false] = ACTIONS(2587), - [sym_null] = ACTIONS(2587), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2587), - [anon_sym_decltype] = ACTIONS(2587), - [anon_sym_virtual] = ACTIONS(2587), - [anon_sym_explicit] = ACTIONS(2587), - [anon_sym_typename] = ACTIONS(2587), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_operator] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(2587), - [anon_sym_throw] = ACTIONS(2587), - [anon_sym_namespace] = ACTIONS(2587), - [anon_sym_using] = ACTIONS(2587), - [anon_sym_static_assert] = ACTIONS(2587), - [anon_sym_concept] = ACTIONS(2587), - [anon_sym_co_return] = ACTIONS(2587), - [anon_sym_co_yield] = ACTIONS(2587), - [anon_sym_R_DQUOTE] = ACTIONS(2589), - [anon_sym_LR_DQUOTE] = ACTIONS(2589), - [anon_sym_uR_DQUOTE] = ACTIONS(2589), - [anon_sym_UR_DQUOTE] = ACTIONS(2589), - [anon_sym_u8R_DQUOTE] = ACTIONS(2589), - [anon_sym_co_await] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_requires] = ACTIONS(2587), - [sym_this] = ACTIONS(2587), - [sym_nullptr] = ACTIONS(2587), - }, - [679] = { - [sym_identifier] = ACTIONS(2583), - [aux_sym_preproc_include_token1] = ACTIONS(2583), - [aux_sym_preproc_def_token1] = ACTIONS(2583), - [aux_sym_preproc_if_token1] = ACTIONS(2583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2583), - [sym_preproc_directive] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_typedef] = ACTIONS(2583), - [anon_sym_extern] = ACTIONS(2583), - [anon_sym___attribute__] = ACTIONS(2583), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), - [anon_sym___declspec] = ACTIONS(2583), - [anon_sym___based] = ACTIONS(2583), - [anon_sym___cdecl] = ACTIONS(2583), - [anon_sym___clrcall] = ACTIONS(2583), - [anon_sym___stdcall] = ACTIONS(2583), - [anon_sym___fastcall] = ACTIONS(2583), - [anon_sym___thiscall] = ACTIONS(2583), - [anon_sym___vectorcall] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_register] = ACTIONS(2583), - [anon_sym_inline] = ACTIONS(2583), - [anon_sym_thread_local] = ACTIONS(2583), - [anon_sym_const] = ACTIONS(2583), - [anon_sym_volatile] = ACTIONS(2583), - [anon_sym_restrict] = ACTIONS(2583), - [anon_sym__Atomic] = ACTIONS(2583), - [anon_sym_mutable] = ACTIONS(2583), - [anon_sym_constexpr] = ACTIONS(2583), - [anon_sym_constinit] = ACTIONS(2583), - [anon_sym_consteval] = ACTIONS(2583), - [anon_sym_signed] = ACTIONS(2583), - [anon_sym_unsigned] = ACTIONS(2583), - [anon_sym_long] = ACTIONS(2583), - [anon_sym_short] = ACTIONS(2583), - [sym_primitive_type] = ACTIONS(2583), - [anon_sym_enum] = ACTIONS(2583), - [anon_sym_class] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2583), - [anon_sym_union] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_else] = ACTIONS(2583), - [anon_sym_switch] = ACTIONS(2583), - [anon_sym_case] = ACTIONS(2583), - [anon_sym_default] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_break] = ACTIONS(2583), - [anon_sym_continue] = ACTIONS(2583), - [anon_sym_goto] = ACTIONS(2583), - [anon_sym_not] = ACTIONS(2583), - [anon_sym_compl] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_sizeof] = ACTIONS(2583), - [sym_number_literal] = ACTIONS(2585), - [anon_sym_L_SQUOTE] = ACTIONS(2585), - [anon_sym_u_SQUOTE] = ACTIONS(2585), - [anon_sym_U_SQUOTE] = ACTIONS(2585), - [anon_sym_u8_SQUOTE] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_L_DQUOTE] = ACTIONS(2585), - [anon_sym_u_DQUOTE] = ACTIONS(2585), - [anon_sym_U_DQUOTE] = ACTIONS(2585), - [anon_sym_u8_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(2585), - [sym_true] = ACTIONS(2583), - [sym_false] = ACTIONS(2583), - [sym_null] = ACTIONS(2583), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2583), - [anon_sym_decltype] = ACTIONS(2583), - [anon_sym_virtual] = ACTIONS(2583), - [anon_sym_explicit] = ACTIONS(2583), - [anon_sym_typename] = ACTIONS(2583), - [anon_sym_template] = ACTIONS(2583), - [anon_sym_operator] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_delete] = ACTIONS(2583), - [anon_sym_throw] = ACTIONS(2583), - [anon_sym_namespace] = ACTIONS(2583), - [anon_sym_using] = ACTIONS(2583), - [anon_sym_static_assert] = ACTIONS(2583), - [anon_sym_concept] = ACTIONS(2583), - [anon_sym_co_return] = ACTIONS(2583), - [anon_sym_co_yield] = ACTIONS(2583), - [anon_sym_R_DQUOTE] = ACTIONS(2585), - [anon_sym_LR_DQUOTE] = ACTIONS(2585), - [anon_sym_uR_DQUOTE] = ACTIONS(2585), - [anon_sym_UR_DQUOTE] = ACTIONS(2585), - [anon_sym_u8R_DQUOTE] = ACTIONS(2585), - [anon_sym_co_await] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_requires] = ACTIONS(2583), - [sym_this] = ACTIONS(2583), - [sym_nullptr] = ACTIONS(2583), - }, - [680] = { - [sym_identifier] = ACTIONS(2573), - [aux_sym_preproc_include_token1] = ACTIONS(2573), - [aux_sym_preproc_def_token1] = ACTIONS(2573), - [aux_sym_preproc_if_token1] = ACTIONS(2573), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2573), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2573), - [sym_preproc_directive] = ACTIONS(2573), - [anon_sym_LPAREN2] = ACTIONS(2575), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_typedef] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2575), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym___based] = ACTIONS(2573), - [anon_sym___cdecl] = ACTIONS(2573), - [anon_sym___clrcall] = ACTIONS(2573), - [anon_sym___stdcall] = ACTIONS(2573), - [anon_sym___fastcall] = ACTIONS(2573), - [anon_sym___thiscall] = ACTIONS(2573), - [anon_sym___vectorcall] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2573), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_else] = ACTIONS(2573), - [anon_sym_switch] = ACTIONS(2573), - [anon_sym_case] = ACTIONS(2573), - [anon_sym_default] = ACTIONS(2573), - [anon_sym_while] = ACTIONS(2573), - [anon_sym_do] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2573), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_break] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2573), - [anon_sym_goto] = ACTIONS(2573), - [anon_sym_not] = ACTIONS(2573), - [anon_sym_compl] = ACTIONS(2573), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_sizeof] = ACTIONS(2573), - [sym_number_literal] = ACTIONS(2575), - [anon_sym_L_SQUOTE] = ACTIONS(2575), - [anon_sym_u_SQUOTE] = ACTIONS(2575), - [anon_sym_U_SQUOTE] = ACTIONS(2575), - [anon_sym_u8_SQUOTE] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2575), - [anon_sym_L_DQUOTE] = ACTIONS(2575), - [anon_sym_u_DQUOTE] = ACTIONS(2575), - [anon_sym_U_DQUOTE] = ACTIONS(2575), - [anon_sym_u8_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [sym_true] = ACTIONS(2573), - [sym_false] = ACTIONS(2573), - [sym_null] = ACTIONS(2573), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2573), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_explicit] = ACTIONS(2573), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2573), - [anon_sym_operator] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_throw] = ACTIONS(2573), - [anon_sym_namespace] = ACTIONS(2573), - [anon_sym_using] = ACTIONS(2573), - [anon_sym_static_assert] = ACTIONS(2573), - [anon_sym_concept] = ACTIONS(2573), - [anon_sym_co_return] = ACTIONS(2573), - [anon_sym_co_yield] = ACTIONS(2573), - [anon_sym_R_DQUOTE] = ACTIONS(2575), - [anon_sym_LR_DQUOTE] = ACTIONS(2575), - [anon_sym_uR_DQUOTE] = ACTIONS(2575), - [anon_sym_UR_DQUOTE] = ACTIONS(2575), - [anon_sym_u8R_DQUOTE] = ACTIONS(2575), - [anon_sym_co_await] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2573), - [anon_sym_requires] = ACTIONS(2573), - [sym_this] = ACTIONS(2573), - [sym_nullptr] = ACTIONS(2573), - }, - [681] = { - [sym_identifier] = ACTIONS(2525), - [aux_sym_preproc_include_token1] = ACTIONS(2525), - [aux_sym_preproc_def_token1] = ACTIONS(2525), - [aux_sym_preproc_if_token1] = ACTIONS(2525), - [aux_sym_preproc_if_token2] = ACTIONS(2525), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2525), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2525), - [sym_preproc_directive] = ACTIONS(2525), - [anon_sym_LPAREN2] = ACTIONS(2527), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_TILDE] = ACTIONS(2527), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_STAR] = ACTIONS(2527), - [anon_sym_AMP_AMP] = ACTIONS(2527), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_typedef] = ACTIONS(2525), - [anon_sym_extern] = ACTIONS(2525), - [anon_sym___attribute__] = ACTIONS(2525), - [anon_sym_COLON_COLON] = ACTIONS(2527), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2527), - [anon_sym___declspec] = ACTIONS(2525), - [anon_sym___based] = ACTIONS(2525), - [anon_sym___cdecl] = ACTIONS(2525), - [anon_sym___clrcall] = ACTIONS(2525), - [anon_sym___stdcall] = ACTIONS(2525), - [anon_sym___fastcall] = ACTIONS(2525), - [anon_sym___thiscall] = ACTIONS(2525), - [anon_sym___vectorcall] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_register] = ACTIONS(2525), - [anon_sym_inline] = ACTIONS(2525), - [anon_sym_thread_local] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_volatile] = ACTIONS(2525), - [anon_sym_restrict] = ACTIONS(2525), - [anon_sym__Atomic] = ACTIONS(2525), - [anon_sym_mutable] = ACTIONS(2525), - [anon_sym_constexpr] = ACTIONS(2525), - [anon_sym_constinit] = ACTIONS(2525), - [anon_sym_consteval] = ACTIONS(2525), - [anon_sym_signed] = ACTIONS(2525), - [anon_sym_unsigned] = ACTIONS(2525), - [anon_sym_long] = ACTIONS(2525), - [anon_sym_short] = ACTIONS(2525), - [sym_primitive_type] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_struct] = ACTIONS(2525), - [anon_sym_union] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_else] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_goto] = ACTIONS(2525), - [anon_sym_not] = ACTIONS(2525), - [anon_sym_compl] = ACTIONS(2525), - [anon_sym_DASH_DASH] = ACTIONS(2527), - [anon_sym_PLUS_PLUS] = ACTIONS(2527), - [anon_sym_sizeof] = ACTIONS(2525), - [sym_number_literal] = ACTIONS(2527), - [anon_sym_L_SQUOTE] = ACTIONS(2527), - [anon_sym_u_SQUOTE] = ACTIONS(2527), - [anon_sym_U_SQUOTE] = ACTIONS(2527), - [anon_sym_u8_SQUOTE] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2527), - [anon_sym_L_DQUOTE] = ACTIONS(2527), - [anon_sym_u_DQUOTE] = ACTIONS(2527), - [anon_sym_U_DQUOTE] = ACTIONS(2527), - [anon_sym_u8_DQUOTE] = ACTIONS(2527), - [anon_sym_DQUOTE] = ACTIONS(2527), - [sym_true] = ACTIONS(2525), - [sym_false] = ACTIONS(2525), - [sym_null] = ACTIONS(2525), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2525), - [anon_sym_decltype] = ACTIONS(2525), - [anon_sym_virtual] = ACTIONS(2525), - [anon_sym_explicit] = ACTIONS(2525), - [anon_sym_typename] = ACTIONS(2525), - [anon_sym_template] = ACTIONS(2525), - [anon_sym_operator] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_delete] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_namespace] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(2525), - [anon_sym_static_assert] = ACTIONS(2525), - [anon_sym_concept] = ACTIONS(2525), - [anon_sym_co_return] = ACTIONS(2525), - [anon_sym_co_yield] = ACTIONS(2525), - [anon_sym_R_DQUOTE] = ACTIONS(2527), - [anon_sym_LR_DQUOTE] = ACTIONS(2527), - [anon_sym_uR_DQUOTE] = ACTIONS(2527), - [anon_sym_UR_DQUOTE] = ACTIONS(2527), - [anon_sym_u8R_DQUOTE] = ACTIONS(2527), - [anon_sym_co_await] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2525), - [sym_this] = ACTIONS(2525), - [sym_nullptr] = ACTIONS(2525), - }, - [682] = { - [sym_identifier] = ACTIONS(2519), - [aux_sym_preproc_include_token1] = ACTIONS(2519), - [aux_sym_preproc_def_token1] = ACTIONS(2519), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_if_token2] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2519), - [sym_preproc_directive] = ACTIONS(2519), - [anon_sym_LPAREN2] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2521), - [anon_sym_AMP_AMP] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_typedef] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2519), - [anon_sym___attribute__] = ACTIONS(2519), - [anon_sym_COLON_COLON] = ACTIONS(2521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), - [anon_sym___declspec] = ACTIONS(2519), - [anon_sym___based] = ACTIONS(2519), - [anon_sym___cdecl] = ACTIONS(2519), - [anon_sym___clrcall] = ACTIONS(2519), - [anon_sym___stdcall] = ACTIONS(2519), - [anon_sym___fastcall] = ACTIONS(2519), - [anon_sym___thiscall] = ACTIONS(2519), - [anon_sym___vectorcall] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_register] = ACTIONS(2519), - [anon_sym_inline] = ACTIONS(2519), - [anon_sym_thread_local] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_volatile] = ACTIONS(2519), - [anon_sym_restrict] = ACTIONS(2519), - [anon_sym__Atomic] = ACTIONS(2519), - [anon_sym_mutable] = ACTIONS(2519), - [anon_sym_constexpr] = ACTIONS(2519), - [anon_sym_constinit] = ACTIONS(2519), - [anon_sym_consteval] = ACTIONS(2519), - [anon_sym_signed] = ACTIONS(2519), - [anon_sym_unsigned] = ACTIONS(2519), - [anon_sym_long] = ACTIONS(2519), - [anon_sym_short] = ACTIONS(2519), - [sym_primitive_type] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_class] = ACTIONS(2519), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_else] = ACTIONS(2519), - [anon_sym_switch] = ACTIONS(2519), - [anon_sym_case] = ACTIONS(2519), - [anon_sym_default] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_do] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_goto] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2519), - [anon_sym_compl] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2521), - [anon_sym_PLUS_PLUS] = ACTIONS(2521), - [anon_sym_sizeof] = ACTIONS(2519), - [sym_number_literal] = ACTIONS(2521), - [anon_sym_L_SQUOTE] = ACTIONS(2521), - [anon_sym_u_SQUOTE] = ACTIONS(2521), - [anon_sym_U_SQUOTE] = ACTIONS(2521), - [anon_sym_u8_SQUOTE] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2521), - [anon_sym_L_DQUOTE] = ACTIONS(2521), - [anon_sym_u_DQUOTE] = ACTIONS(2521), - [anon_sym_U_DQUOTE] = ACTIONS(2521), - [anon_sym_u8_DQUOTE] = ACTIONS(2521), - [anon_sym_DQUOTE] = ACTIONS(2521), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [sym_null] = ACTIONS(2519), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2519), - [anon_sym_decltype] = ACTIONS(2519), - [anon_sym_virtual] = ACTIONS(2519), - [anon_sym_explicit] = ACTIONS(2519), - [anon_sym_typename] = ACTIONS(2519), - [anon_sym_template] = ACTIONS(2519), - [anon_sym_operator] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_throw] = ACTIONS(2519), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_using] = ACTIONS(2519), - [anon_sym_static_assert] = ACTIONS(2519), - [anon_sym_concept] = ACTIONS(2519), - [anon_sym_co_return] = ACTIONS(2519), - [anon_sym_co_yield] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2519), - [anon_sym_new] = ACTIONS(2519), - [anon_sym_requires] = ACTIONS(2519), - [sym_this] = ACTIONS(2519), - [sym_nullptr] = ACTIONS(2519), - }, - [683] = { - [ts_builtin_sym_end] = ACTIONS(2589), - [sym_identifier] = ACTIONS(2587), - [aux_sym_preproc_include_token1] = ACTIONS(2587), - [aux_sym_preproc_def_token1] = ACTIONS(2587), - [aux_sym_preproc_if_token1] = ACTIONS(2587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2587), - [sym_preproc_directive] = ACTIONS(2587), - [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2589), - [anon_sym_TILDE] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_AMP_AMP] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2589), - [anon_sym_typedef] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym___attribute__] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2589), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), - [anon_sym___declspec] = ACTIONS(2587), - [anon_sym___based] = ACTIONS(2587), - [anon_sym___cdecl] = ACTIONS(2587), - [anon_sym___clrcall] = ACTIONS(2587), - [anon_sym___stdcall] = ACTIONS(2587), - [anon_sym___fastcall] = ACTIONS(2587), - [anon_sym___thiscall] = ACTIONS(2587), - [anon_sym___vectorcall] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_register] = ACTIONS(2587), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_thread_local] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_constexpr] = ACTIONS(2587), - [anon_sym_constinit] = ACTIONS(2587), - [anon_sym_consteval] = ACTIONS(2587), - [anon_sym_signed] = ACTIONS(2587), - [anon_sym_unsigned] = ACTIONS(2587), - [anon_sym_long] = ACTIONS(2587), - [anon_sym_short] = ACTIONS(2587), - [sym_primitive_type] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_class] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_else] = ACTIONS(2587), - [anon_sym_switch] = ACTIONS(2587), - [anon_sym_case] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_goto] = ACTIONS(2587), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_compl] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2589), - [anon_sym_PLUS_PLUS] = ACTIONS(2589), - [anon_sym_sizeof] = ACTIONS(2587), - [sym_number_literal] = ACTIONS(2589), - [anon_sym_L_SQUOTE] = ACTIONS(2589), - [anon_sym_u_SQUOTE] = ACTIONS(2589), - [anon_sym_U_SQUOTE] = ACTIONS(2589), - [anon_sym_u8_SQUOTE] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_L_DQUOTE] = ACTIONS(2589), - [anon_sym_u_DQUOTE] = ACTIONS(2589), - [anon_sym_U_DQUOTE] = ACTIONS(2589), - [anon_sym_u8_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE] = ACTIONS(2589), - [sym_true] = ACTIONS(2587), - [sym_false] = ACTIONS(2587), - [sym_null] = ACTIONS(2587), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2587), - [anon_sym_decltype] = ACTIONS(2587), - [anon_sym_virtual] = ACTIONS(2587), - [anon_sym_explicit] = ACTIONS(2587), - [anon_sym_typename] = ACTIONS(2587), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_operator] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(2587), - [anon_sym_throw] = ACTIONS(2587), - [anon_sym_namespace] = ACTIONS(2587), - [anon_sym_using] = ACTIONS(2587), - [anon_sym_static_assert] = ACTIONS(2587), - [anon_sym_concept] = ACTIONS(2587), - [anon_sym_co_return] = ACTIONS(2587), - [anon_sym_co_yield] = ACTIONS(2587), - [anon_sym_R_DQUOTE] = ACTIONS(2589), - [anon_sym_LR_DQUOTE] = ACTIONS(2589), - [anon_sym_uR_DQUOTE] = ACTIONS(2589), - [anon_sym_UR_DQUOTE] = ACTIONS(2589), - [anon_sym_u8R_DQUOTE] = ACTIONS(2589), - [anon_sym_co_await] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_requires] = ACTIONS(2587), - [sym_this] = ACTIONS(2587), - [sym_nullptr] = ACTIONS(2587), - }, - [684] = { - [ts_builtin_sym_end] = ACTIONS(2585), - [sym_identifier] = ACTIONS(2583), - [aux_sym_preproc_include_token1] = ACTIONS(2583), - [aux_sym_preproc_def_token1] = ACTIONS(2583), - [aux_sym_preproc_if_token1] = ACTIONS(2583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2583), - [sym_preproc_directive] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_typedef] = ACTIONS(2583), - [anon_sym_extern] = ACTIONS(2583), - [anon_sym___attribute__] = ACTIONS(2583), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), - [anon_sym___declspec] = ACTIONS(2583), - [anon_sym___based] = ACTIONS(2583), - [anon_sym___cdecl] = ACTIONS(2583), - [anon_sym___clrcall] = ACTIONS(2583), - [anon_sym___stdcall] = ACTIONS(2583), - [anon_sym___fastcall] = ACTIONS(2583), - [anon_sym___thiscall] = ACTIONS(2583), - [anon_sym___vectorcall] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_register] = ACTIONS(2583), - [anon_sym_inline] = ACTIONS(2583), - [anon_sym_thread_local] = ACTIONS(2583), - [anon_sym_const] = ACTIONS(2583), - [anon_sym_volatile] = ACTIONS(2583), - [anon_sym_restrict] = ACTIONS(2583), - [anon_sym__Atomic] = ACTIONS(2583), - [anon_sym_mutable] = ACTIONS(2583), - [anon_sym_constexpr] = ACTIONS(2583), - [anon_sym_constinit] = ACTIONS(2583), - [anon_sym_consteval] = ACTIONS(2583), - [anon_sym_signed] = ACTIONS(2583), - [anon_sym_unsigned] = ACTIONS(2583), - [anon_sym_long] = ACTIONS(2583), - [anon_sym_short] = ACTIONS(2583), - [sym_primitive_type] = ACTIONS(2583), - [anon_sym_enum] = ACTIONS(2583), - [anon_sym_class] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2583), - [anon_sym_union] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_else] = ACTIONS(2583), - [anon_sym_switch] = ACTIONS(2583), - [anon_sym_case] = ACTIONS(2583), - [anon_sym_default] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_break] = ACTIONS(2583), - [anon_sym_continue] = ACTIONS(2583), - [anon_sym_goto] = ACTIONS(2583), - [anon_sym_not] = ACTIONS(2583), - [anon_sym_compl] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_sizeof] = ACTIONS(2583), - [sym_number_literal] = ACTIONS(2585), - [anon_sym_L_SQUOTE] = ACTIONS(2585), - [anon_sym_u_SQUOTE] = ACTIONS(2585), - [anon_sym_U_SQUOTE] = ACTIONS(2585), - [anon_sym_u8_SQUOTE] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_L_DQUOTE] = ACTIONS(2585), - [anon_sym_u_DQUOTE] = ACTIONS(2585), - [anon_sym_U_DQUOTE] = ACTIONS(2585), - [anon_sym_u8_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(2585), - [sym_true] = ACTIONS(2583), - [sym_false] = ACTIONS(2583), - [sym_null] = ACTIONS(2583), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2583), - [anon_sym_decltype] = ACTIONS(2583), - [anon_sym_virtual] = ACTIONS(2583), - [anon_sym_explicit] = ACTIONS(2583), - [anon_sym_typename] = ACTIONS(2583), - [anon_sym_template] = ACTIONS(2583), - [anon_sym_operator] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_delete] = ACTIONS(2583), - [anon_sym_throw] = ACTIONS(2583), - [anon_sym_namespace] = ACTIONS(2583), - [anon_sym_using] = ACTIONS(2583), - [anon_sym_static_assert] = ACTIONS(2583), - [anon_sym_concept] = ACTIONS(2583), - [anon_sym_co_return] = ACTIONS(2583), - [anon_sym_co_yield] = ACTIONS(2583), - [anon_sym_R_DQUOTE] = ACTIONS(2585), - [anon_sym_LR_DQUOTE] = ACTIONS(2585), - [anon_sym_uR_DQUOTE] = ACTIONS(2585), - [anon_sym_UR_DQUOTE] = ACTIONS(2585), - [anon_sym_u8R_DQUOTE] = ACTIONS(2585), - [anon_sym_co_await] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_requires] = ACTIONS(2583), - [sym_this] = ACTIONS(2583), - [sym_nullptr] = ACTIONS(2583), - }, - [685] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, [686] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [ts_builtin_sym_end] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2445), + [aux_sym_preproc_include_token1] = ACTIONS(2445), + [aux_sym_preproc_def_token1] = ACTIONS(2445), + [aux_sym_preproc_if_token1] = ACTIONS(2445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2445), + [sym_preproc_directive] = ACTIONS(2445), + [anon_sym_LPAREN2] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2447), + [anon_sym_AMP_AMP] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_typedef] = ACTIONS(2445), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym___attribute__] = ACTIONS(2445), + [anon_sym_COLON_COLON] = ACTIONS(2447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2447), + [anon_sym___declspec] = ACTIONS(2445), + [anon_sym___based] = ACTIONS(2445), + [anon_sym___cdecl] = ACTIONS(2445), + [anon_sym___clrcall] = ACTIONS(2445), + [anon_sym___stdcall] = ACTIONS(2445), + [anon_sym___fastcall] = ACTIONS(2445), + [anon_sym___thiscall] = ACTIONS(2445), + [anon_sym___vectorcall] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_register] = ACTIONS(2445), + [anon_sym_inline] = ACTIONS(2445), + [anon_sym_thread_local] = ACTIONS(2445), + [anon_sym_input] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_volatile] = ACTIONS(2445), + [anon_sym_restrict] = ACTIONS(2445), + [anon_sym__Atomic] = ACTIONS(2445), + [anon_sym_mutable] = ACTIONS(2445), + [anon_sym_constexpr] = ACTIONS(2445), + [anon_sym_constinit] = ACTIONS(2445), + [anon_sym_consteval] = ACTIONS(2445), + [anon_sym_signed] = ACTIONS(2445), + [anon_sym_unsigned] = ACTIONS(2445), + [anon_sym_long] = ACTIONS(2445), + [anon_sym_short] = ACTIONS(2445), + [sym_primitive_type] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_class] = ACTIONS(2445), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_union] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_switch] = ACTIONS(2445), + [anon_sym_case] = ACTIONS(2445), + [anon_sym_default] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_goto] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2445), + [anon_sym_compl] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(2447), + [anon_sym_sizeof] = ACTIONS(2445), + [sym_number_literal] = ACTIONS(2447), + [anon_sym_L_SQUOTE] = ACTIONS(2447), + [anon_sym_u_SQUOTE] = ACTIONS(2447), + [anon_sym_U_SQUOTE] = ACTIONS(2447), + [anon_sym_u8_SQUOTE] = ACTIONS(2447), + [anon_sym_SQUOTE] = ACTIONS(2447), + [anon_sym_L_DQUOTE] = ACTIONS(2447), + [anon_sym_u_DQUOTE] = ACTIONS(2447), + [anon_sym_U_DQUOTE] = ACTIONS(2447), + [anon_sym_u8_DQUOTE] = ACTIONS(2447), + [anon_sym_DQUOTE] = ACTIONS(2447), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_null] = ACTIONS(2445), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2445), + [anon_sym_virtual] = ACTIONS(2445), + [anon_sym_explicit] = ACTIONS(2445), + [anon_sym_typename] = ACTIONS(2445), + [anon_sym_template] = ACTIONS(2445), + [anon_sym_operator] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_delete] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_using] = ACTIONS(2445), + [anon_sym_static_assert] = ACTIONS(2445), + [anon_sym_concept] = ACTIONS(2445), + [anon_sym_co_return] = ACTIONS(2445), + [anon_sym_co_yield] = ACTIONS(2445), + [anon_sym_R_DQUOTE] = ACTIONS(2447), + [anon_sym_LR_DQUOTE] = ACTIONS(2447), + [anon_sym_uR_DQUOTE] = ACTIONS(2447), + [anon_sym_UR_DQUOTE] = ACTIONS(2447), + [anon_sym_u8R_DQUOTE] = ACTIONS(2447), + [anon_sym_co_await] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_requires] = ACTIONS(2445), + [sym_this] = ACTIONS(2445), + [sym_nullptr] = ACTIONS(2445), }, [687] = { - [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_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_LBRACK] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = 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_else] = 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), - [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), - [sym_null] = ACTIONS(2563), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = 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_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_nullptr] = ACTIONS(2563), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, [688] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, [689] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, [690] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, [691] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2429), + [aux_sym_preproc_include_token1] = ACTIONS(2429), + [aux_sym_preproc_def_token1] = ACTIONS(2429), + [aux_sym_preproc_if_token1] = ACTIONS(2429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2429), + [sym_preproc_directive] = ACTIONS(2429), + [anon_sym_LPAREN2] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(2431), + [anon_sym_AMP_AMP] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2429), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_typedef] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym___attribute__] = ACTIONS(2429), + [anon_sym_COLON_COLON] = ACTIONS(2431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2431), + [anon_sym___declspec] = ACTIONS(2429), + [anon_sym___based] = ACTIONS(2429), + [anon_sym___cdecl] = ACTIONS(2429), + [anon_sym___clrcall] = ACTIONS(2429), + [anon_sym___stdcall] = ACTIONS(2429), + [anon_sym___fastcall] = ACTIONS(2429), + [anon_sym___thiscall] = ACTIONS(2429), + [anon_sym___vectorcall] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_inline] = ACTIONS(2429), + [anon_sym_thread_local] = ACTIONS(2429), + [anon_sym_input] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_volatile] = ACTIONS(2429), + [anon_sym_restrict] = ACTIONS(2429), + [anon_sym__Atomic] = ACTIONS(2429), + [anon_sym_mutable] = ACTIONS(2429), + [anon_sym_constexpr] = ACTIONS(2429), + [anon_sym_constinit] = ACTIONS(2429), + [anon_sym_consteval] = ACTIONS(2429), + [anon_sym_signed] = ACTIONS(2429), + [anon_sym_unsigned] = ACTIONS(2429), + [anon_sym_long] = ACTIONS(2429), + [anon_sym_short] = ACTIONS(2429), + [sym_primitive_type] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_class] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_switch] = ACTIONS(2429), + [anon_sym_case] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_goto] = ACTIONS(2429), + [anon_sym_not] = ACTIONS(2429), + [anon_sym_compl] = ACTIONS(2429), + [anon_sym_DASH_DASH] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2431), + [anon_sym_sizeof] = ACTIONS(2429), + [sym_number_literal] = ACTIONS(2431), + [anon_sym_L_SQUOTE] = ACTIONS(2431), + [anon_sym_u_SQUOTE] = ACTIONS(2431), + [anon_sym_U_SQUOTE] = ACTIONS(2431), + [anon_sym_u8_SQUOTE] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2431), + [anon_sym_L_DQUOTE] = ACTIONS(2431), + [anon_sym_u_DQUOTE] = ACTIONS(2431), + [anon_sym_U_DQUOTE] = ACTIONS(2431), + [anon_sym_u8_DQUOTE] = ACTIONS(2431), + [anon_sym_DQUOTE] = ACTIONS(2431), + [sym_true] = ACTIONS(2429), + [sym_false] = ACTIONS(2429), + [sym_null] = ACTIONS(2429), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2429), + [anon_sym_decltype] = ACTIONS(2429), + [anon_sym_virtual] = ACTIONS(2429), + [anon_sym_explicit] = ACTIONS(2429), + [anon_sym_typename] = ACTIONS(2429), + [anon_sym_template] = ACTIONS(2429), + [anon_sym_operator] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_delete] = ACTIONS(2429), + [anon_sym_throw] = ACTIONS(2429), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_using] = ACTIONS(2429), + [anon_sym_static_assert] = ACTIONS(2429), + [anon_sym_concept] = ACTIONS(2429), + [anon_sym_co_return] = ACTIONS(2429), + [anon_sym_co_yield] = ACTIONS(2429), + [anon_sym_R_DQUOTE] = ACTIONS(2431), + [anon_sym_LR_DQUOTE] = ACTIONS(2431), + [anon_sym_uR_DQUOTE] = ACTIONS(2431), + [anon_sym_UR_DQUOTE] = ACTIONS(2431), + [anon_sym_u8R_DQUOTE] = ACTIONS(2431), + [anon_sym_co_await] = ACTIONS(2429), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_requires] = ACTIONS(2429), + [sym_this] = ACTIONS(2429), + [sym_nullptr] = ACTIONS(2429), }, [692] = { - [ts_builtin_sym_end] = ACTIONS(2575), - [sym_identifier] = ACTIONS(2573), - [aux_sym_preproc_include_token1] = ACTIONS(2573), - [aux_sym_preproc_def_token1] = ACTIONS(2573), - [aux_sym_preproc_if_token1] = ACTIONS(2573), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2573), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2573), - [sym_preproc_directive] = ACTIONS(2573), - [anon_sym_LPAREN2] = ACTIONS(2575), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_typedef] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2575), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym___based] = ACTIONS(2573), - [anon_sym___cdecl] = ACTIONS(2573), - [anon_sym___clrcall] = ACTIONS(2573), - [anon_sym___stdcall] = ACTIONS(2573), - [anon_sym___fastcall] = ACTIONS(2573), - [anon_sym___thiscall] = ACTIONS(2573), - [anon_sym___vectorcall] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2573), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_else] = ACTIONS(2573), - [anon_sym_switch] = ACTIONS(2573), - [anon_sym_case] = ACTIONS(2573), - [anon_sym_default] = ACTIONS(2573), - [anon_sym_while] = ACTIONS(2573), - [anon_sym_do] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2573), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_break] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2573), - [anon_sym_goto] = ACTIONS(2573), - [anon_sym_not] = ACTIONS(2573), - [anon_sym_compl] = ACTIONS(2573), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_sizeof] = ACTIONS(2573), - [sym_number_literal] = ACTIONS(2575), - [anon_sym_L_SQUOTE] = ACTIONS(2575), - [anon_sym_u_SQUOTE] = ACTIONS(2575), - [anon_sym_U_SQUOTE] = ACTIONS(2575), - [anon_sym_u8_SQUOTE] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2575), - [anon_sym_L_DQUOTE] = ACTIONS(2575), - [anon_sym_u_DQUOTE] = ACTIONS(2575), - [anon_sym_U_DQUOTE] = ACTIONS(2575), - [anon_sym_u8_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [sym_true] = ACTIONS(2573), - [sym_false] = ACTIONS(2573), - [sym_null] = ACTIONS(2573), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2573), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_explicit] = ACTIONS(2573), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2573), - [anon_sym_operator] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_throw] = ACTIONS(2573), - [anon_sym_namespace] = ACTIONS(2573), - [anon_sym_using] = ACTIONS(2573), - [anon_sym_static_assert] = ACTIONS(2573), - [anon_sym_concept] = ACTIONS(2573), - [anon_sym_co_return] = ACTIONS(2573), - [anon_sym_co_yield] = ACTIONS(2573), - [anon_sym_R_DQUOTE] = ACTIONS(2575), - [anon_sym_LR_DQUOTE] = ACTIONS(2575), - [anon_sym_uR_DQUOTE] = ACTIONS(2575), - [anon_sym_UR_DQUOTE] = ACTIONS(2575), - [anon_sym_u8R_DQUOTE] = ACTIONS(2575), - [anon_sym_co_await] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2573), - [anon_sym_requires] = ACTIONS(2573), - [sym_this] = ACTIONS(2573), - [sym_nullptr] = ACTIONS(2573), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, [693] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, [694] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2433), + [aux_sym_preproc_include_token1] = ACTIONS(2433), + [aux_sym_preproc_def_token1] = ACTIONS(2433), + [aux_sym_preproc_if_token1] = ACTIONS(2433), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2433), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2433), + [sym_preproc_directive] = ACTIONS(2433), + [anon_sym_LPAREN2] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(2433), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_typedef] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym___attribute__] = ACTIONS(2433), + [anon_sym_COLON_COLON] = ACTIONS(2435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2435), + [anon_sym___declspec] = ACTIONS(2433), + [anon_sym___based] = ACTIONS(2433), + [anon_sym___cdecl] = ACTIONS(2433), + [anon_sym___clrcall] = ACTIONS(2433), + [anon_sym___stdcall] = ACTIONS(2433), + [anon_sym___fastcall] = ACTIONS(2433), + [anon_sym___thiscall] = ACTIONS(2433), + [anon_sym___vectorcall] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_register] = ACTIONS(2433), + [anon_sym_inline] = ACTIONS(2433), + [anon_sym_thread_local] = ACTIONS(2433), + [anon_sym_input] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_volatile] = ACTIONS(2433), + [anon_sym_restrict] = ACTIONS(2433), + [anon_sym__Atomic] = ACTIONS(2433), + [anon_sym_mutable] = ACTIONS(2433), + [anon_sym_constexpr] = ACTIONS(2433), + [anon_sym_constinit] = ACTIONS(2433), + [anon_sym_consteval] = ACTIONS(2433), + [anon_sym_signed] = ACTIONS(2433), + [anon_sym_unsigned] = ACTIONS(2433), + [anon_sym_long] = ACTIONS(2433), + [anon_sym_short] = ACTIONS(2433), + [sym_primitive_type] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_class] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_union] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_switch] = ACTIONS(2433), + [anon_sym_case] = ACTIONS(2433), + [anon_sym_default] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_goto] = ACTIONS(2433), + [anon_sym_not] = ACTIONS(2433), + [anon_sym_compl] = ACTIONS(2433), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_sizeof] = ACTIONS(2433), + [sym_number_literal] = ACTIONS(2435), + [anon_sym_L_SQUOTE] = ACTIONS(2435), + [anon_sym_u_SQUOTE] = ACTIONS(2435), + [anon_sym_U_SQUOTE] = ACTIONS(2435), + [anon_sym_u8_SQUOTE] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_L_DQUOTE] = ACTIONS(2435), + [anon_sym_u_DQUOTE] = ACTIONS(2435), + [anon_sym_U_DQUOTE] = ACTIONS(2435), + [anon_sym_u8_DQUOTE] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(2435), + [sym_true] = ACTIONS(2433), + [sym_false] = ACTIONS(2433), + [sym_null] = ACTIONS(2433), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2433), + [anon_sym_decltype] = ACTIONS(2433), + [anon_sym_virtual] = ACTIONS(2433), + [anon_sym_explicit] = ACTIONS(2433), + [anon_sym_typename] = ACTIONS(2433), + [anon_sym_template] = ACTIONS(2433), + [anon_sym_operator] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_delete] = ACTIONS(2433), + [anon_sym_throw] = ACTIONS(2433), + [anon_sym_namespace] = ACTIONS(2433), + [anon_sym_using] = ACTIONS(2433), + [anon_sym_static_assert] = ACTIONS(2433), + [anon_sym_concept] = ACTIONS(2433), + [anon_sym_co_return] = ACTIONS(2433), + [anon_sym_co_yield] = ACTIONS(2433), + [anon_sym_R_DQUOTE] = ACTIONS(2435), + [anon_sym_LR_DQUOTE] = ACTIONS(2435), + [anon_sym_uR_DQUOTE] = ACTIONS(2435), + [anon_sym_UR_DQUOTE] = ACTIONS(2435), + [anon_sym_u8R_DQUOTE] = ACTIONS(2435), + [anon_sym_co_await] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2433), + [anon_sym_requires] = ACTIONS(2433), + [sym_this] = ACTIONS(2433), + [sym_nullptr] = ACTIONS(2433), }, [695] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, [696] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [ts_builtin_sym_end] = ACTIONS(2555), + [sym_identifier] = ACTIONS(2553), + [aux_sym_preproc_include_token1] = ACTIONS(2553), + [aux_sym_preproc_def_token1] = ACTIONS(2553), + [aux_sym_preproc_if_token1] = ACTIONS(2553), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2553), + [sym_preproc_directive] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_AMP_AMP] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_typedef] = ACTIONS(2553), + [anon_sym_extern] = ACTIONS(2553), + [anon_sym___attribute__] = ACTIONS(2553), + [anon_sym_COLON_COLON] = ACTIONS(2555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2555), + [anon_sym___declspec] = ACTIONS(2553), + [anon_sym___based] = ACTIONS(2553), + [anon_sym___cdecl] = ACTIONS(2553), + [anon_sym___clrcall] = ACTIONS(2553), + [anon_sym___stdcall] = ACTIONS(2553), + [anon_sym___fastcall] = ACTIONS(2553), + [anon_sym___thiscall] = ACTIONS(2553), + [anon_sym___vectorcall] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2553), + [anon_sym_static] = ACTIONS(2553), + [anon_sym_register] = ACTIONS(2553), + [anon_sym_inline] = ACTIONS(2553), + [anon_sym_thread_local] = ACTIONS(2553), + [anon_sym_input] = ACTIONS(2553), + [anon_sym_const] = ACTIONS(2553), + [anon_sym_volatile] = ACTIONS(2553), + [anon_sym_restrict] = ACTIONS(2553), + [anon_sym__Atomic] = ACTIONS(2553), + [anon_sym_mutable] = ACTIONS(2553), + [anon_sym_constexpr] = ACTIONS(2553), + [anon_sym_constinit] = ACTIONS(2553), + [anon_sym_consteval] = ACTIONS(2553), + [anon_sym_signed] = ACTIONS(2553), + [anon_sym_unsigned] = ACTIONS(2553), + [anon_sym_long] = ACTIONS(2553), + [anon_sym_short] = ACTIONS(2553), + [sym_primitive_type] = ACTIONS(2553), + [anon_sym_enum] = ACTIONS(2553), + [anon_sym_class] = ACTIONS(2553), + [anon_sym_struct] = ACTIONS(2553), + [anon_sym_union] = ACTIONS(2553), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_else] = ACTIONS(2553), + [anon_sym_switch] = ACTIONS(2553), + [anon_sym_case] = ACTIONS(2553), + [anon_sym_default] = ACTIONS(2553), + [anon_sym_while] = ACTIONS(2553), + [anon_sym_do] = ACTIONS(2553), + [anon_sym_for] = ACTIONS(2553), + [anon_sym_return] = ACTIONS(2553), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_goto] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2553), + [anon_sym_compl] = ACTIONS(2553), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_sizeof] = ACTIONS(2553), + [sym_number_literal] = ACTIONS(2555), + [anon_sym_L_SQUOTE] = ACTIONS(2555), + [anon_sym_u_SQUOTE] = ACTIONS(2555), + [anon_sym_U_SQUOTE] = ACTIONS(2555), + [anon_sym_u8_SQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE] = ACTIONS(2555), + [anon_sym_L_DQUOTE] = ACTIONS(2555), + [anon_sym_u_DQUOTE] = ACTIONS(2555), + [anon_sym_U_DQUOTE] = ACTIONS(2555), + [anon_sym_u8_DQUOTE] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(2555), + [sym_true] = ACTIONS(2553), + [sym_false] = ACTIONS(2553), + [sym_null] = ACTIONS(2553), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2553), + [anon_sym_decltype] = ACTIONS(2553), + [anon_sym_virtual] = ACTIONS(2553), + [anon_sym_explicit] = ACTIONS(2553), + [anon_sym_typename] = ACTIONS(2553), + [anon_sym_template] = ACTIONS(2553), + [anon_sym_operator] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2553), + [anon_sym_delete] = ACTIONS(2553), + [anon_sym_throw] = ACTIONS(2553), + [anon_sym_namespace] = ACTIONS(2553), + [anon_sym_using] = ACTIONS(2553), + [anon_sym_static_assert] = ACTIONS(2553), + [anon_sym_concept] = ACTIONS(2553), + [anon_sym_co_return] = ACTIONS(2553), + [anon_sym_co_yield] = ACTIONS(2553), + [anon_sym_R_DQUOTE] = ACTIONS(2555), + [anon_sym_LR_DQUOTE] = ACTIONS(2555), + [anon_sym_uR_DQUOTE] = ACTIONS(2555), + [anon_sym_UR_DQUOTE] = ACTIONS(2555), + [anon_sym_u8R_DQUOTE] = ACTIONS(2555), + [anon_sym_co_await] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(2553), + [anon_sym_requires] = ACTIONS(2553), + [sym_this] = ACTIONS(2553), + [sym_nullptr] = ACTIONS(2553), }, [697] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2407), + [aux_sym_preproc_include_token1] = ACTIONS(2407), + [aux_sym_preproc_def_token1] = ACTIONS(2407), + [aux_sym_preproc_if_token1] = ACTIONS(2407), + [aux_sym_preproc_if_token2] = ACTIONS(2407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2407), + [sym_preproc_directive] = ACTIONS(2407), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_BANG] = ACTIONS(2409), + [anon_sym_TILDE] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2407), + [anon_sym_PLUS] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_AMP_AMP] = ACTIONS(2409), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2409), + [anon_sym_typedef] = ACTIONS(2407), + [anon_sym_extern] = ACTIONS(2407), + [anon_sym___attribute__] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2409), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2409), + [anon_sym___declspec] = ACTIONS(2407), + [anon_sym___based] = ACTIONS(2407), + [anon_sym___cdecl] = ACTIONS(2407), + [anon_sym___clrcall] = ACTIONS(2407), + [anon_sym___stdcall] = ACTIONS(2407), + [anon_sym___fastcall] = ACTIONS(2407), + [anon_sym___thiscall] = ACTIONS(2407), + [anon_sym___vectorcall] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_static] = ACTIONS(2407), + [anon_sym_register] = ACTIONS(2407), + [anon_sym_inline] = ACTIONS(2407), + [anon_sym_thread_local] = ACTIONS(2407), + [anon_sym_input] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [anon_sym_volatile] = ACTIONS(2407), + [anon_sym_restrict] = ACTIONS(2407), + [anon_sym__Atomic] = ACTIONS(2407), + [anon_sym_mutable] = ACTIONS(2407), + [anon_sym_constexpr] = ACTIONS(2407), + [anon_sym_constinit] = ACTIONS(2407), + [anon_sym_consteval] = ACTIONS(2407), + [anon_sym_signed] = ACTIONS(2407), + [anon_sym_unsigned] = ACTIONS(2407), + [anon_sym_long] = ACTIONS(2407), + [anon_sym_short] = ACTIONS(2407), + [sym_primitive_type] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2407), + [anon_sym_class] = ACTIONS(2407), + [anon_sym_struct] = ACTIONS(2407), + [anon_sym_union] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_else] = ACTIONS(2407), + [anon_sym_switch] = ACTIONS(2407), + [anon_sym_case] = ACTIONS(2407), + [anon_sym_default] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [anon_sym_do] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_goto] = ACTIONS(2407), + [anon_sym_not] = ACTIONS(2407), + [anon_sym_compl] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2409), + [anon_sym_PLUS_PLUS] = ACTIONS(2409), + [anon_sym_sizeof] = ACTIONS(2407), + [sym_number_literal] = ACTIONS(2409), + [anon_sym_L_SQUOTE] = ACTIONS(2409), + [anon_sym_u_SQUOTE] = ACTIONS(2409), + [anon_sym_U_SQUOTE] = ACTIONS(2409), + [anon_sym_u8_SQUOTE] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_L_DQUOTE] = ACTIONS(2409), + [anon_sym_u_DQUOTE] = ACTIONS(2409), + [anon_sym_U_DQUOTE] = ACTIONS(2409), + [anon_sym_u8_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(2409), + [sym_true] = ACTIONS(2407), + [sym_false] = ACTIONS(2407), + [sym_null] = ACTIONS(2407), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2407), + [anon_sym_decltype] = ACTIONS(2407), + [anon_sym_virtual] = ACTIONS(2407), + [anon_sym_explicit] = ACTIONS(2407), + [anon_sym_typename] = ACTIONS(2407), + [anon_sym_template] = ACTIONS(2407), + [anon_sym_operator] = ACTIONS(2407), + [anon_sym_try] = ACTIONS(2407), + [anon_sym_delete] = ACTIONS(2407), + [anon_sym_throw] = ACTIONS(2407), + [anon_sym_namespace] = ACTIONS(2407), + [anon_sym_using] = ACTIONS(2407), + [anon_sym_static_assert] = ACTIONS(2407), + [anon_sym_concept] = ACTIONS(2407), + [anon_sym_co_return] = ACTIONS(2407), + [anon_sym_co_yield] = ACTIONS(2407), + [anon_sym_R_DQUOTE] = ACTIONS(2409), + [anon_sym_LR_DQUOTE] = ACTIONS(2409), + [anon_sym_uR_DQUOTE] = ACTIONS(2409), + [anon_sym_UR_DQUOTE] = ACTIONS(2409), + [anon_sym_u8R_DQUOTE] = ACTIONS(2409), + [anon_sym_co_await] = ACTIONS(2407), + [anon_sym_new] = ACTIONS(2407), + [anon_sym_requires] = ACTIONS(2407), + [sym_this] = ACTIONS(2407), + [sym_nullptr] = ACTIONS(2407), }, [698] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2403), + [aux_sym_preproc_include_token1] = ACTIONS(2403), + [aux_sym_preproc_def_token1] = ACTIONS(2403), + [aux_sym_preproc_if_token1] = ACTIONS(2403), + [aux_sym_preproc_if_token2] = ACTIONS(2403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2403), + [sym_preproc_directive] = ACTIONS(2403), + [anon_sym_LPAREN2] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(2405), + [anon_sym_AMP] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_typedef] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym___attribute__] = ACTIONS(2403), + [anon_sym_COLON_COLON] = ACTIONS(2405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), + [anon_sym___declspec] = ACTIONS(2403), + [anon_sym___based] = ACTIONS(2403), + [anon_sym___cdecl] = ACTIONS(2403), + [anon_sym___clrcall] = ACTIONS(2403), + [anon_sym___stdcall] = ACTIONS(2403), + [anon_sym___fastcall] = ACTIONS(2403), + [anon_sym___thiscall] = ACTIONS(2403), + [anon_sym___vectorcall] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_inline] = ACTIONS(2403), + [anon_sym_thread_local] = ACTIONS(2403), + [anon_sym_input] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_volatile] = ACTIONS(2403), + [anon_sym_restrict] = ACTIONS(2403), + [anon_sym__Atomic] = ACTIONS(2403), + [anon_sym_mutable] = ACTIONS(2403), + [anon_sym_constexpr] = ACTIONS(2403), + [anon_sym_constinit] = ACTIONS(2403), + [anon_sym_consteval] = ACTIONS(2403), + [anon_sym_signed] = ACTIONS(2403), + [anon_sym_unsigned] = ACTIONS(2403), + [anon_sym_long] = ACTIONS(2403), + [anon_sym_short] = ACTIONS(2403), + [sym_primitive_type] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_class] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_switch] = ACTIONS(2403), + [anon_sym_case] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_goto] = ACTIONS(2403), + [anon_sym_not] = ACTIONS(2403), + [anon_sym_compl] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2405), + [anon_sym_PLUS_PLUS] = ACTIONS(2405), + [anon_sym_sizeof] = ACTIONS(2403), + [sym_number_literal] = ACTIONS(2405), + [anon_sym_L_SQUOTE] = ACTIONS(2405), + [anon_sym_u_SQUOTE] = ACTIONS(2405), + [anon_sym_U_SQUOTE] = ACTIONS(2405), + [anon_sym_u8_SQUOTE] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_L_DQUOTE] = ACTIONS(2405), + [anon_sym_u_DQUOTE] = ACTIONS(2405), + [anon_sym_U_DQUOTE] = ACTIONS(2405), + [anon_sym_u8_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [sym_true] = ACTIONS(2403), + [sym_false] = ACTIONS(2403), + [sym_null] = ACTIONS(2403), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2403), + [anon_sym_decltype] = ACTIONS(2403), + [anon_sym_virtual] = ACTIONS(2403), + [anon_sym_explicit] = ACTIONS(2403), + [anon_sym_typename] = ACTIONS(2403), + [anon_sym_template] = ACTIONS(2403), + [anon_sym_operator] = ACTIONS(2403), + [anon_sym_try] = ACTIONS(2403), + [anon_sym_delete] = ACTIONS(2403), + [anon_sym_throw] = ACTIONS(2403), + [anon_sym_namespace] = ACTIONS(2403), + [anon_sym_using] = ACTIONS(2403), + [anon_sym_static_assert] = ACTIONS(2403), + [anon_sym_concept] = ACTIONS(2403), + [anon_sym_co_return] = ACTIONS(2403), + [anon_sym_co_yield] = ACTIONS(2403), + [anon_sym_R_DQUOTE] = ACTIONS(2405), + [anon_sym_LR_DQUOTE] = ACTIONS(2405), + [anon_sym_uR_DQUOTE] = ACTIONS(2405), + [anon_sym_UR_DQUOTE] = ACTIONS(2405), + [anon_sym_u8R_DQUOTE] = ACTIONS(2405), + [anon_sym_co_await] = ACTIONS(2403), + [anon_sym_new] = ACTIONS(2403), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2403), + [sym_nullptr] = ACTIONS(2403), }, [699] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [700] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [701] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [702] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [703] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [704] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [705] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [706] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [707] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [708] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [709] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [710] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [711] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [712] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [713] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [714] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [715] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [716] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [717] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [718] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [719] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [720] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [721] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [722] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [723] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [724] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [725] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [726] = { - [ts_builtin_sym_end] = ACTIONS(2569), - [sym_identifier] = ACTIONS(2567), - [aux_sym_preproc_include_token1] = ACTIONS(2567), - [aux_sym_preproc_def_token1] = ACTIONS(2567), - [aux_sym_preproc_if_token1] = ACTIONS(2567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2567), - [sym_preproc_directive] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(2569), - [anon_sym_AMP_AMP] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2569), - [anon_sym_typedef] = ACTIONS(2567), - [anon_sym_extern] = ACTIONS(2567), - [anon_sym___attribute__] = ACTIONS(2567), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2569), - [anon_sym___declspec] = ACTIONS(2567), - [anon_sym___based] = ACTIONS(2567), - [anon_sym___cdecl] = ACTIONS(2567), - [anon_sym___clrcall] = ACTIONS(2567), - [anon_sym___stdcall] = ACTIONS(2567), - [anon_sym___fastcall] = ACTIONS(2567), - [anon_sym___thiscall] = ACTIONS(2567), - [anon_sym___vectorcall] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2569), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_static] = ACTIONS(2567), - [anon_sym_register] = ACTIONS(2567), - [anon_sym_inline] = ACTIONS(2567), - [anon_sym_thread_local] = ACTIONS(2567), - [anon_sym_const] = ACTIONS(2567), - [anon_sym_volatile] = ACTIONS(2567), - [anon_sym_restrict] = ACTIONS(2567), - [anon_sym__Atomic] = ACTIONS(2567), - [anon_sym_mutable] = ACTIONS(2567), - [anon_sym_constexpr] = ACTIONS(2567), - [anon_sym_constinit] = ACTIONS(2567), - [anon_sym_consteval] = ACTIONS(2567), - [anon_sym_signed] = ACTIONS(2567), - [anon_sym_unsigned] = ACTIONS(2567), - [anon_sym_long] = ACTIONS(2567), - [anon_sym_short] = ACTIONS(2567), - [sym_primitive_type] = ACTIONS(2567), - [anon_sym_enum] = ACTIONS(2567), - [anon_sym_class] = ACTIONS(2567), - [anon_sym_struct] = ACTIONS(2567), - [anon_sym_union] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_else] = ACTIONS(2567), - [anon_sym_switch] = ACTIONS(2567), - [anon_sym_case] = ACTIONS(2567), - [anon_sym_default] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_break] = ACTIONS(2567), - [anon_sym_continue] = ACTIONS(2567), - [anon_sym_goto] = ACTIONS(2567), - [anon_sym_not] = ACTIONS(2567), - [anon_sym_compl] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2569), - [anon_sym_PLUS_PLUS] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2567), - [sym_number_literal] = ACTIONS(2569), - [anon_sym_L_SQUOTE] = ACTIONS(2569), - [anon_sym_u_SQUOTE] = ACTIONS(2569), - [anon_sym_U_SQUOTE] = ACTIONS(2569), - [anon_sym_u8_SQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_L_DQUOTE] = ACTIONS(2569), - [anon_sym_u_DQUOTE] = ACTIONS(2569), - [anon_sym_U_DQUOTE] = ACTIONS(2569), - [anon_sym_u8_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE] = ACTIONS(2569), - [sym_true] = ACTIONS(2567), - [sym_false] = ACTIONS(2567), - [sym_null] = ACTIONS(2567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2567), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_virtual] = ACTIONS(2567), - [anon_sym_explicit] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2567), - [anon_sym_template] = ACTIONS(2567), - [anon_sym_operator] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_delete] = ACTIONS(2567), - [anon_sym_throw] = ACTIONS(2567), - [anon_sym_namespace] = ACTIONS(2567), - [anon_sym_using] = ACTIONS(2567), - [anon_sym_static_assert] = ACTIONS(2567), - [anon_sym_concept] = ACTIONS(2567), - [anon_sym_co_return] = ACTIONS(2567), - [anon_sym_co_yield] = ACTIONS(2567), - [anon_sym_R_DQUOTE] = ACTIONS(2569), - [anon_sym_LR_DQUOTE] = ACTIONS(2569), - [anon_sym_uR_DQUOTE] = ACTIONS(2569), - [anon_sym_UR_DQUOTE] = ACTIONS(2569), - [anon_sym_u8R_DQUOTE] = ACTIONS(2569), - [anon_sym_co_await] = ACTIONS(2567), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_requires] = ACTIONS(2567), - [sym_this] = ACTIONS(2567), - [sym_nullptr] = ACTIONS(2567), - }, - [727] = { - [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_SEMI] = ACTIONS(2561), - [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_LBRACK] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_register] = ACTIONS(2559), - [anon_sym_inline] = ACTIONS(2559), - [anon_sym_thread_local] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_volatile] = ACTIONS(2559), - [anon_sym_restrict] = ACTIONS(2559), - [anon_sym__Atomic] = ACTIONS(2559), - [anon_sym_mutable] = ACTIONS(2559), - [anon_sym_constexpr] = ACTIONS(2559), - [anon_sym_constinit] = ACTIONS(2559), - [anon_sym_consteval] = ACTIONS(2559), - [anon_sym_signed] = ACTIONS(2559), - [anon_sym_unsigned] = ACTIONS(2559), - [anon_sym_long] = ACTIONS(2559), - [anon_sym_short] = 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_else] = 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), - [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), - [sym_null] = ACTIONS(2559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2559), - [anon_sym_decltype] = ACTIONS(2559), - [anon_sym_virtual] = 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_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_nullptr] = ACTIONS(2559), - }, - [728] = { - [ts_builtin_sym_end] = ACTIONS(2553), - [sym_identifier] = ACTIONS(2551), - [aux_sym_preproc_include_token1] = ACTIONS(2551), - [aux_sym_preproc_def_token1] = ACTIONS(2551), - [aux_sym_preproc_if_token1] = ACTIONS(2551), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2551), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2551), - [sym_preproc_directive] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2553), - [anon_sym_TILDE] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2551), - [anon_sym_PLUS] = ACTIONS(2551), - [anon_sym_STAR] = ACTIONS(2553), - [anon_sym_AMP_AMP] = ACTIONS(2553), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2553), - [anon_sym_typedef] = ACTIONS(2551), - [anon_sym_extern] = ACTIONS(2551), - [anon_sym___attribute__] = ACTIONS(2551), - [anon_sym_COLON_COLON] = ACTIONS(2553), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), - [anon_sym___declspec] = ACTIONS(2551), - [anon_sym___based] = ACTIONS(2551), - [anon_sym___cdecl] = ACTIONS(2551), - [anon_sym___clrcall] = ACTIONS(2551), - [anon_sym___stdcall] = ACTIONS(2551), - [anon_sym___fastcall] = ACTIONS(2551), - [anon_sym___thiscall] = ACTIONS(2551), - [anon_sym___vectorcall] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_static] = ACTIONS(2551), - [anon_sym_register] = ACTIONS(2551), - [anon_sym_inline] = ACTIONS(2551), - [anon_sym_thread_local] = ACTIONS(2551), - [anon_sym_const] = ACTIONS(2551), - [anon_sym_volatile] = ACTIONS(2551), - [anon_sym_restrict] = ACTIONS(2551), - [anon_sym__Atomic] = ACTIONS(2551), - [anon_sym_mutable] = ACTIONS(2551), - [anon_sym_constexpr] = ACTIONS(2551), - [anon_sym_constinit] = ACTIONS(2551), - [anon_sym_consteval] = ACTIONS(2551), - [anon_sym_signed] = ACTIONS(2551), - [anon_sym_unsigned] = ACTIONS(2551), - [anon_sym_long] = ACTIONS(2551), - [anon_sym_short] = ACTIONS(2551), - [sym_primitive_type] = ACTIONS(2551), - [anon_sym_enum] = ACTIONS(2551), - [anon_sym_class] = ACTIONS(2551), - [anon_sym_struct] = ACTIONS(2551), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_if] = ACTIONS(2551), - [anon_sym_else] = ACTIONS(2551), - [anon_sym_switch] = ACTIONS(2551), - [anon_sym_case] = ACTIONS(2551), - [anon_sym_default] = ACTIONS(2551), - [anon_sym_while] = ACTIONS(2551), - [anon_sym_do] = ACTIONS(2551), - [anon_sym_for] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2551), - [anon_sym_break] = ACTIONS(2551), - [anon_sym_continue] = ACTIONS(2551), - [anon_sym_goto] = ACTIONS(2551), - [anon_sym_not] = ACTIONS(2551), - [anon_sym_compl] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2551), - [sym_number_literal] = ACTIONS(2553), - [anon_sym_L_SQUOTE] = ACTIONS(2553), - [anon_sym_u_SQUOTE] = ACTIONS(2553), - [anon_sym_U_SQUOTE] = ACTIONS(2553), - [anon_sym_u8_SQUOTE] = ACTIONS(2553), - [anon_sym_SQUOTE] = ACTIONS(2553), - [anon_sym_L_DQUOTE] = ACTIONS(2553), - [anon_sym_u_DQUOTE] = ACTIONS(2553), - [anon_sym_U_DQUOTE] = ACTIONS(2553), - [anon_sym_u8_DQUOTE] = ACTIONS(2553), - [anon_sym_DQUOTE] = ACTIONS(2553), - [sym_true] = ACTIONS(2551), - [sym_false] = ACTIONS(2551), - [sym_null] = ACTIONS(2551), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2551), - [anon_sym_decltype] = ACTIONS(2551), - [anon_sym_virtual] = ACTIONS(2551), - [anon_sym_explicit] = ACTIONS(2551), - [anon_sym_typename] = ACTIONS(2551), - [anon_sym_template] = ACTIONS(2551), - [anon_sym_operator] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2551), - [anon_sym_delete] = ACTIONS(2551), - [anon_sym_throw] = ACTIONS(2551), - [anon_sym_namespace] = ACTIONS(2551), - [anon_sym_using] = ACTIONS(2551), - [anon_sym_static_assert] = ACTIONS(2551), - [anon_sym_concept] = ACTIONS(2551), - [anon_sym_co_return] = ACTIONS(2551), - [anon_sym_co_yield] = ACTIONS(2551), - [anon_sym_R_DQUOTE] = ACTIONS(2553), - [anon_sym_LR_DQUOTE] = ACTIONS(2553), - [anon_sym_uR_DQUOTE] = ACTIONS(2553), - [anon_sym_UR_DQUOTE] = ACTIONS(2553), - [anon_sym_u8R_DQUOTE] = ACTIONS(2553), - [anon_sym_co_await] = ACTIONS(2551), - [anon_sym_new] = ACTIONS(2551), - [anon_sym_requires] = ACTIONS(2551), - [sym_this] = ACTIONS(2551), - [sym_nullptr] = ACTIONS(2551), - }, - [729] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [730] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [731] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [732] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [733] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [734] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [735] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [736] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [737] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [738] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [739] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [740] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [741] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [742] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [743] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [744] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [745] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [746] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [747] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [748] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [749] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [750] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [751] = { - [ts_builtin_sym_end] = ACTIONS(2637), - [sym_identifier] = ACTIONS(2635), - [aux_sym_preproc_include_token1] = ACTIONS(2635), - [aux_sym_preproc_def_token1] = ACTIONS(2635), - [aux_sym_preproc_if_token1] = ACTIONS(2635), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), - [sym_preproc_directive] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2635), - [anon_sym_extern] = ACTIONS(2635), - [anon_sym___attribute__] = ACTIONS(2635), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), - [anon_sym___declspec] = ACTIONS(2635), - [anon_sym___based] = ACTIONS(2635), - [anon_sym___cdecl] = ACTIONS(2635), - [anon_sym___clrcall] = ACTIONS(2635), - [anon_sym___stdcall] = ACTIONS(2635), - [anon_sym___fastcall] = ACTIONS(2635), - [anon_sym___thiscall] = ACTIONS(2635), - [anon_sym___vectorcall] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_static] = ACTIONS(2635), - [anon_sym_register] = ACTIONS(2635), - [anon_sym_inline] = ACTIONS(2635), - [anon_sym_thread_local] = ACTIONS(2635), - [anon_sym_const] = ACTIONS(2635), - [anon_sym_volatile] = ACTIONS(2635), - [anon_sym_restrict] = ACTIONS(2635), - [anon_sym__Atomic] = ACTIONS(2635), - [anon_sym_mutable] = ACTIONS(2635), - [anon_sym_constexpr] = ACTIONS(2635), - [anon_sym_constinit] = ACTIONS(2635), - [anon_sym_consteval] = ACTIONS(2635), - [anon_sym_signed] = ACTIONS(2635), - [anon_sym_unsigned] = ACTIONS(2635), - [anon_sym_long] = ACTIONS(2635), - [anon_sym_short] = ACTIONS(2635), - [sym_primitive_type] = ACTIONS(2635), - [anon_sym_enum] = ACTIONS(2635), - [anon_sym_class] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2635), - [anon_sym_union] = ACTIONS(2635), - [anon_sym_if] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(2635), - [anon_sym_switch] = ACTIONS(2635), - [anon_sym_case] = ACTIONS(2635), - [anon_sym_default] = ACTIONS(2635), - [anon_sym_while] = ACTIONS(2635), - [anon_sym_do] = ACTIONS(2635), - [anon_sym_for] = ACTIONS(2635), - [anon_sym_return] = ACTIONS(2635), - [anon_sym_break] = ACTIONS(2635), - [anon_sym_continue] = ACTIONS(2635), - [anon_sym_goto] = ACTIONS(2635), - [anon_sym_not] = ACTIONS(2635), - [anon_sym_compl] = ACTIONS(2635), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_sizeof] = ACTIONS(2635), - [sym_number_literal] = ACTIONS(2637), - [anon_sym_L_SQUOTE] = ACTIONS(2637), - [anon_sym_u_SQUOTE] = ACTIONS(2637), - [anon_sym_U_SQUOTE] = ACTIONS(2637), - [anon_sym_u8_SQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_L_DQUOTE] = ACTIONS(2637), - [anon_sym_u_DQUOTE] = ACTIONS(2637), - [anon_sym_U_DQUOTE] = ACTIONS(2637), - [anon_sym_u8_DQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [sym_true] = ACTIONS(2635), - [sym_false] = ACTIONS(2635), - [sym_null] = ACTIONS(2635), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2635), - [anon_sym_decltype] = ACTIONS(2635), - [anon_sym_virtual] = ACTIONS(2635), - [anon_sym_explicit] = ACTIONS(2635), - [anon_sym_typename] = ACTIONS(2635), - [anon_sym_template] = ACTIONS(2635), - [anon_sym_operator] = ACTIONS(2635), - [anon_sym_try] = ACTIONS(2635), - [anon_sym_delete] = ACTIONS(2635), - [anon_sym_throw] = ACTIONS(2635), - [anon_sym_namespace] = ACTIONS(2635), - [anon_sym_using] = ACTIONS(2635), - [anon_sym_static_assert] = ACTIONS(2635), - [anon_sym_concept] = ACTIONS(2635), - [anon_sym_co_return] = ACTIONS(2635), - [anon_sym_co_yield] = ACTIONS(2635), - [anon_sym_R_DQUOTE] = ACTIONS(2637), - [anon_sym_LR_DQUOTE] = ACTIONS(2637), - [anon_sym_uR_DQUOTE] = ACTIONS(2637), - [anon_sym_UR_DQUOTE] = ACTIONS(2637), - [anon_sym_u8R_DQUOTE] = ACTIONS(2637), - [anon_sym_co_await] = ACTIONS(2635), - [anon_sym_new] = ACTIONS(2635), - [anon_sym_requires] = ACTIONS(2635), - [sym_this] = ACTIONS(2635), - [sym_nullptr] = ACTIONS(2635), - }, - [752] = { - [ts_builtin_sym_end] = ACTIONS(2641), - [sym_identifier] = ACTIONS(2639), - [aux_sym_preproc_include_token1] = ACTIONS(2639), - [aux_sym_preproc_def_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), - [sym_preproc_directive] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2639), - [anon_sym_PLUS] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym___based] = ACTIONS(2639), - [anon_sym___cdecl] = ACTIONS(2639), - [anon_sym___clrcall] = ACTIONS(2639), - [anon_sym___stdcall] = ACTIONS(2639), - [anon_sym___fastcall] = ACTIONS(2639), - [anon_sym___thiscall] = ACTIONS(2639), - [anon_sym___vectorcall] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_else] = ACTIONS(2639), - [anon_sym_switch] = ACTIONS(2639), - [anon_sym_case] = ACTIONS(2639), - [anon_sym_default] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_do] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_goto] = ACTIONS(2639), - [anon_sym_not] = ACTIONS(2639), - [anon_sym_compl] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_sizeof] = ACTIONS(2639), - [sym_number_literal] = ACTIONS(2641), - [anon_sym_L_SQUOTE] = ACTIONS(2641), - [anon_sym_u_SQUOTE] = ACTIONS(2641), - [anon_sym_U_SQUOTE] = ACTIONS(2641), - [anon_sym_u8_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_L_DQUOTE] = ACTIONS(2641), - [anon_sym_u_DQUOTE] = ACTIONS(2641), - [anon_sym_U_DQUOTE] = ACTIONS(2641), - [anon_sym_u8_DQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_true] = ACTIONS(2639), - [sym_false] = ACTIONS(2639), - [sym_null] = ACTIONS(2639), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_explicit] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_operator] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [anon_sym_delete] = ACTIONS(2639), - [anon_sym_throw] = ACTIONS(2639), - [anon_sym_namespace] = ACTIONS(2639), - [anon_sym_using] = ACTIONS(2639), - [anon_sym_static_assert] = ACTIONS(2639), - [anon_sym_concept] = ACTIONS(2639), - [anon_sym_co_return] = ACTIONS(2639), - [anon_sym_co_yield] = ACTIONS(2639), - [anon_sym_R_DQUOTE] = ACTIONS(2641), - [anon_sym_LR_DQUOTE] = ACTIONS(2641), - [anon_sym_uR_DQUOTE] = ACTIONS(2641), - [anon_sym_UR_DQUOTE] = ACTIONS(2641), - [anon_sym_u8R_DQUOTE] = ACTIONS(2641), - [anon_sym_co_await] = ACTIONS(2639), - [anon_sym_new] = ACTIONS(2639), - [anon_sym_requires] = ACTIONS(2639), - [sym_this] = ACTIONS(2639), - [sym_nullptr] = ACTIONS(2639), - }, - [753] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [754] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [755] = { - [ts_builtin_sym_end] = ACTIONS(2579), - [sym_identifier] = ACTIONS(2577), - [aux_sym_preproc_include_token1] = ACTIONS(2577), - [aux_sym_preproc_def_token1] = ACTIONS(2577), - [aux_sym_preproc_if_token1] = ACTIONS(2577), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2577), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2577), - [sym_preproc_directive] = ACTIONS(2577), - [anon_sym_LPAREN2] = ACTIONS(2579), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2577), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_typedef] = ACTIONS(2577), - [anon_sym_extern] = ACTIONS(2577), - [anon_sym___attribute__] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2579), - [anon_sym___declspec] = ACTIONS(2577), - [anon_sym___based] = ACTIONS(2577), - [anon_sym___cdecl] = ACTIONS(2577), - [anon_sym___clrcall] = ACTIONS(2577), - [anon_sym___stdcall] = ACTIONS(2577), - [anon_sym___fastcall] = ACTIONS(2577), - [anon_sym___thiscall] = ACTIONS(2577), - [anon_sym___vectorcall] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2577), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_register] = ACTIONS(2577), - [anon_sym_inline] = ACTIONS(2577), - [anon_sym_thread_local] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_volatile] = ACTIONS(2577), - [anon_sym_restrict] = ACTIONS(2577), - [anon_sym__Atomic] = ACTIONS(2577), - [anon_sym_mutable] = ACTIONS(2577), - [anon_sym_constexpr] = ACTIONS(2577), - [anon_sym_constinit] = ACTIONS(2577), - [anon_sym_consteval] = ACTIONS(2577), - [anon_sym_signed] = ACTIONS(2577), - [anon_sym_unsigned] = ACTIONS(2577), - [anon_sym_long] = ACTIONS(2577), - [anon_sym_short] = ACTIONS(2577), - [sym_primitive_type] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_struct] = ACTIONS(2577), - [anon_sym_union] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_else] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_case] = ACTIONS(2577), - [anon_sym_default] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_goto] = ACTIONS(2577), - [anon_sym_not] = ACTIONS(2577), - [anon_sym_compl] = ACTIONS(2577), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_sizeof] = ACTIONS(2577), - [sym_number_literal] = ACTIONS(2579), - [anon_sym_L_SQUOTE] = ACTIONS(2579), - [anon_sym_u_SQUOTE] = ACTIONS(2579), - [anon_sym_U_SQUOTE] = ACTIONS(2579), - [anon_sym_u8_SQUOTE] = ACTIONS(2579), - [anon_sym_SQUOTE] = ACTIONS(2579), - [anon_sym_L_DQUOTE] = ACTIONS(2579), - [anon_sym_u_DQUOTE] = ACTIONS(2579), - [anon_sym_U_DQUOTE] = ACTIONS(2579), - [anon_sym_u8_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym_true] = ACTIONS(2577), - [sym_false] = ACTIONS(2577), - [sym_null] = ACTIONS(2577), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2577), - [anon_sym_decltype] = ACTIONS(2577), - [anon_sym_virtual] = ACTIONS(2577), - [anon_sym_explicit] = ACTIONS(2577), - [anon_sym_typename] = ACTIONS(2577), - [anon_sym_template] = ACTIONS(2577), - [anon_sym_operator] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_delete] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [anon_sym_static_assert] = ACTIONS(2577), - [anon_sym_concept] = ACTIONS(2577), - [anon_sym_co_return] = ACTIONS(2577), - [anon_sym_co_yield] = ACTIONS(2577), - [anon_sym_R_DQUOTE] = ACTIONS(2579), - [anon_sym_LR_DQUOTE] = ACTIONS(2579), - [anon_sym_uR_DQUOTE] = ACTIONS(2579), - [anon_sym_UR_DQUOTE] = ACTIONS(2579), - [anon_sym_u8R_DQUOTE] = ACTIONS(2579), - [anon_sym_co_await] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2577), - [sym_this] = ACTIONS(2577), - [sym_nullptr] = ACTIONS(2577), - }, - [756] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [757] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [758] = { - [ts_builtin_sym_end] = ACTIONS(2645), - [sym_identifier] = ACTIONS(2643), - [aux_sym_preproc_include_token1] = ACTIONS(2643), - [aux_sym_preproc_def_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), - [sym_preproc_directive] = ACTIONS(2643), - [anon_sym_LPAREN2] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_AMP_AMP] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_typedef] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym___attribute__] = ACTIONS(2643), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), - [anon_sym___declspec] = ACTIONS(2643), - [anon_sym___based] = ACTIONS(2643), - [anon_sym___cdecl] = ACTIONS(2643), - [anon_sym___clrcall] = ACTIONS(2643), - [anon_sym___stdcall] = ACTIONS(2643), - [anon_sym___fastcall] = ACTIONS(2643), - [anon_sym___thiscall] = ACTIONS(2643), - [anon_sym___vectorcall] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_register] = ACTIONS(2643), - [anon_sym_inline] = ACTIONS(2643), - [anon_sym_thread_local] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_volatile] = ACTIONS(2643), - [anon_sym_restrict] = ACTIONS(2643), - [anon_sym__Atomic] = ACTIONS(2643), - [anon_sym_mutable] = ACTIONS(2643), - [anon_sym_constexpr] = ACTIONS(2643), - [anon_sym_constinit] = ACTIONS(2643), - [anon_sym_consteval] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2643), - [anon_sym_unsigned] = ACTIONS(2643), - [anon_sym_long] = ACTIONS(2643), - [anon_sym_short] = ACTIONS(2643), - [sym_primitive_type] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_else] = ACTIONS(2857), - [anon_sym_switch] = ACTIONS(2643), - [anon_sym_case] = ACTIONS(2643), - [anon_sym_default] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym_not] = ACTIONS(2643), - [anon_sym_compl] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2643), - [sym_number_literal] = ACTIONS(2645), - [anon_sym_L_SQUOTE] = ACTIONS(2645), - [anon_sym_u_SQUOTE] = ACTIONS(2645), - [anon_sym_U_SQUOTE] = ACTIONS(2645), - [anon_sym_u8_SQUOTE] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2645), - [anon_sym_L_DQUOTE] = ACTIONS(2645), - [anon_sym_u_DQUOTE] = ACTIONS(2645), - [anon_sym_U_DQUOTE] = ACTIONS(2645), - [anon_sym_u8_DQUOTE] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2645), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_null] = ACTIONS(2643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2643), - [anon_sym_decltype] = ACTIONS(2643), - [anon_sym_virtual] = ACTIONS(2643), - [anon_sym_explicit] = ACTIONS(2643), - [anon_sym_typename] = ACTIONS(2643), - [anon_sym_template] = ACTIONS(2643), - [anon_sym_operator] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2643), - [anon_sym_delete] = ACTIONS(2643), - [anon_sym_throw] = ACTIONS(2643), - [anon_sym_namespace] = ACTIONS(2643), - [anon_sym_using] = ACTIONS(2643), - [anon_sym_static_assert] = ACTIONS(2643), - [anon_sym_concept] = ACTIONS(2643), - [anon_sym_co_return] = ACTIONS(2643), - [anon_sym_co_yield] = ACTIONS(2643), - [anon_sym_R_DQUOTE] = ACTIONS(2645), - [anon_sym_LR_DQUOTE] = ACTIONS(2645), - [anon_sym_uR_DQUOTE] = ACTIONS(2645), - [anon_sym_UR_DQUOTE] = ACTIONS(2645), - [anon_sym_u8R_DQUOTE] = ACTIONS(2645), - [anon_sym_co_await] = ACTIONS(2643), - [anon_sym_new] = ACTIONS(2643), - [anon_sym_requires] = ACTIONS(2643), - [sym_this] = ACTIONS(2643), - [sym_nullptr] = ACTIONS(2643), - }, - [759] = { - [sym__declaration_modifiers] = STATE(2194), - [sym__declaration_specifiers] = STATE(5027), - [sym_attribute_specifier] = STATE(2194), - [sym_attribute_declaration] = STATE(2194), - [sym_ms_declspec_modifier] = STATE(2194), - [sym_storage_class_specifier] = STATE(2194), - [sym_type_qualifier] = STATE(2194), - [sym__type_specifier] = STATE(4066), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(2194), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3418), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(5396), - [sym_qualified_type_identifier] = STATE(3479), - [aux_sym__declaration_specifiers_repeat1] = STATE(2194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3505), - [sym_identifier] = ACTIONS(2859), - [anon_sym_COMMA] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2863), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2863), - [anon_sym_SLASH] = ACTIONS(2863), - [anon_sym_PERCENT] = ACTIONS(2863), - [anon_sym_PIPE_PIPE] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_PIPE] = ACTIONS(2863), - [anon_sym_CARET] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_EQ_EQ] = ACTIONS(2861), - [anon_sym_BANG_EQ] = ACTIONS(2861), - [anon_sym_GT] = ACTIONS(2863), - [anon_sym_GT_EQ] = ACTIONS(2861), - [anon_sym_LT_EQ] = ACTIONS(2863), - [anon_sym_LT] = ACTIONS(2863), - [anon_sym_LT_LT] = ACTIONS(2863), - [anon_sym_GT_GT] = ACTIONS(2863), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_EQ] = ACTIONS(2863), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_STAR_EQ] = ACTIONS(2861), - [anon_sym_SLASH_EQ] = ACTIONS(2861), - [anon_sym_PERCENT_EQ] = ACTIONS(2861), - [anon_sym_PLUS_EQ] = ACTIONS(2861), - [anon_sym_DASH_EQ] = ACTIONS(2861), - [anon_sym_LT_LT_EQ] = ACTIONS(2861), - [anon_sym_GT_GT_EQ] = ACTIONS(2861), - [anon_sym_AMP_EQ] = ACTIONS(2861), - [anon_sym_CARET_EQ] = ACTIONS(2861), - [anon_sym_PIPE_EQ] = ACTIONS(2861), - [anon_sym_and_eq] = ACTIONS(2863), - [anon_sym_or_eq] = ACTIONS(2863), - [anon_sym_xor_eq] = ACTIONS(2863), - [anon_sym_not] = ACTIONS(2863), - [anon_sym_compl] = ACTIONS(2863), - [anon_sym_LT_EQ_GT] = ACTIONS(2861), - [anon_sym_or] = ACTIONS(2863), - [anon_sym_and] = ACTIONS(2863), - [anon_sym_bitor] = ACTIONS(2863), - [anon_sym_xor] = ACTIONS(2863), - [anon_sym_bitand] = ACTIONS(2863), - [anon_sym_not_eq] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_DASH_GT] = ACTIONS(2863), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(2879), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_co_await] = ACTIONS(2863), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_DASH_GT_STAR] = ACTIONS(2861), - [anon_sym_LPAREN_RPAREN] = ACTIONS(2861), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2861), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(2883), - }, - [760] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [761] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [762] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [763] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [764] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [765] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [766] = { - [sym_identifier] = ACTIONS(2619), - [aux_sym_preproc_include_token1] = ACTIONS(2619), - [aux_sym_preproc_def_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token2] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), - [sym_preproc_directive] = ACTIONS(2619), - [anon_sym_LPAREN2] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2619), - [anon_sym_PLUS] = ACTIONS(2619), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_typedef] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym___attribute__] = ACTIONS(2619), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), - [anon_sym___declspec] = ACTIONS(2619), - [anon_sym___based] = ACTIONS(2619), - [anon_sym___cdecl] = ACTIONS(2619), - [anon_sym___clrcall] = ACTIONS(2619), - [anon_sym___stdcall] = ACTIONS(2619), - [anon_sym___fastcall] = ACTIONS(2619), - [anon_sym___thiscall] = ACTIONS(2619), - [anon_sym___vectorcall] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_register] = ACTIONS(2619), - [anon_sym_inline] = ACTIONS(2619), - [anon_sym_thread_local] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_volatile] = ACTIONS(2619), - [anon_sym_restrict] = ACTIONS(2619), - [anon_sym__Atomic] = ACTIONS(2619), - [anon_sym_mutable] = ACTIONS(2619), - [anon_sym_constexpr] = ACTIONS(2619), - [anon_sym_constinit] = ACTIONS(2619), - [anon_sym_consteval] = ACTIONS(2619), - [anon_sym_signed] = ACTIONS(2619), - [anon_sym_unsigned] = ACTIONS(2619), - [anon_sym_long] = ACTIONS(2619), - [anon_sym_short] = ACTIONS(2619), - [sym_primitive_type] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_class] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [anon_sym_if] = ACTIONS(2619), - [anon_sym_else] = ACTIONS(2619), - [anon_sym_switch] = ACTIONS(2619), - [anon_sym_case] = ACTIONS(2619), - [anon_sym_default] = ACTIONS(2619), - [anon_sym_while] = ACTIONS(2619), - [anon_sym_do] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2619), - [anon_sym_return] = ACTIONS(2619), - [anon_sym_break] = ACTIONS(2619), - [anon_sym_continue] = ACTIONS(2619), - [anon_sym_goto] = ACTIONS(2619), - [anon_sym_not] = ACTIONS(2619), - [anon_sym_compl] = ACTIONS(2619), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_sizeof] = ACTIONS(2619), - [sym_number_literal] = ACTIONS(2621), - [anon_sym_L_SQUOTE] = ACTIONS(2621), - [anon_sym_u_SQUOTE] = ACTIONS(2621), - [anon_sym_U_SQUOTE] = ACTIONS(2621), - [anon_sym_u8_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_L_DQUOTE] = ACTIONS(2621), - [anon_sym_u_DQUOTE] = ACTIONS(2621), - [anon_sym_U_DQUOTE] = ACTIONS(2621), - [anon_sym_u8_DQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [sym_true] = ACTIONS(2619), - [sym_false] = ACTIONS(2619), - [sym_null] = ACTIONS(2619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2619), - [anon_sym_decltype] = ACTIONS(2619), - [anon_sym_virtual] = ACTIONS(2619), - [anon_sym_explicit] = ACTIONS(2619), - [anon_sym_typename] = ACTIONS(2619), - [anon_sym_template] = ACTIONS(2619), - [anon_sym_operator] = ACTIONS(2619), - [anon_sym_try] = ACTIONS(2619), - [anon_sym_delete] = ACTIONS(2619), - [anon_sym_throw] = ACTIONS(2619), - [anon_sym_namespace] = ACTIONS(2619), - [anon_sym_using] = ACTIONS(2619), - [anon_sym_static_assert] = ACTIONS(2619), - [anon_sym_concept] = ACTIONS(2619), - [anon_sym_co_return] = ACTIONS(2619), - [anon_sym_co_yield] = ACTIONS(2619), - [anon_sym_R_DQUOTE] = ACTIONS(2621), - [anon_sym_LR_DQUOTE] = ACTIONS(2621), - [anon_sym_uR_DQUOTE] = ACTIONS(2621), - [anon_sym_UR_DQUOTE] = ACTIONS(2621), - [anon_sym_u8R_DQUOTE] = ACTIONS(2621), - [anon_sym_co_await] = ACTIONS(2619), - [anon_sym_new] = ACTIONS(2619), - [anon_sym_requires] = ACTIONS(2619), - [sym_this] = ACTIONS(2619), - [sym_nullptr] = ACTIONS(2619), - }, - [767] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [768] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [769] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [770] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [771] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [772] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [773] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [774] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [775] = { - [ts_builtin_sym_end] = ACTIONS(2467), - [sym_identifier] = ACTIONS(2465), - [aux_sym_preproc_include_token1] = ACTIONS(2465), - [aux_sym_preproc_def_token1] = ACTIONS(2465), - [aux_sym_preproc_if_token1] = ACTIONS(2465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2465), - [sym_preproc_directive] = ACTIONS(2465), - [anon_sym_LPAREN2] = ACTIONS(2467), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2467), - [anon_sym_AMP_AMP] = ACTIONS(2467), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_typedef] = ACTIONS(2465), - [anon_sym_extern] = ACTIONS(2465), - [anon_sym___attribute__] = ACTIONS(2465), - [anon_sym_COLON_COLON] = ACTIONS(2467), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2467), - [anon_sym___declspec] = ACTIONS(2465), - [anon_sym___based] = ACTIONS(2465), - [anon_sym___cdecl] = ACTIONS(2465), - [anon_sym___clrcall] = ACTIONS(2465), - [anon_sym___stdcall] = ACTIONS(2465), - [anon_sym___fastcall] = ACTIONS(2465), - [anon_sym___thiscall] = ACTIONS(2465), - [anon_sym___vectorcall] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_static] = ACTIONS(2465), - [anon_sym_register] = ACTIONS(2465), - [anon_sym_inline] = ACTIONS(2465), - [anon_sym_thread_local] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_volatile] = ACTIONS(2465), - [anon_sym_restrict] = ACTIONS(2465), - [anon_sym__Atomic] = ACTIONS(2465), - [anon_sym_mutable] = ACTIONS(2465), - [anon_sym_constexpr] = ACTIONS(2465), - [anon_sym_constinit] = ACTIONS(2465), - [anon_sym_consteval] = ACTIONS(2465), - [anon_sym_signed] = ACTIONS(2465), - [anon_sym_unsigned] = ACTIONS(2465), - [anon_sym_long] = ACTIONS(2465), - [anon_sym_short] = ACTIONS(2465), - [sym_primitive_type] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_class] = ACTIONS(2465), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_union] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_switch] = ACTIONS(2465), - [anon_sym_case] = ACTIONS(2465), - [anon_sym_default] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_not] = ACTIONS(2465), - [anon_sym_compl] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2467), - [anon_sym_PLUS_PLUS] = ACTIONS(2467), - [anon_sym_sizeof] = ACTIONS(2465), - [sym_number_literal] = ACTIONS(2467), - [anon_sym_L_SQUOTE] = ACTIONS(2467), - [anon_sym_u_SQUOTE] = ACTIONS(2467), - [anon_sym_U_SQUOTE] = ACTIONS(2467), - [anon_sym_u8_SQUOTE] = ACTIONS(2467), - [anon_sym_SQUOTE] = ACTIONS(2467), - [anon_sym_L_DQUOTE] = ACTIONS(2467), - [anon_sym_u_DQUOTE] = ACTIONS(2467), - [anon_sym_U_DQUOTE] = ACTIONS(2467), - [anon_sym_u8_DQUOTE] = ACTIONS(2467), - [anon_sym_DQUOTE] = ACTIONS(2467), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_null] = ACTIONS(2465), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2465), - [anon_sym_decltype] = ACTIONS(2465), - [anon_sym_virtual] = ACTIONS(2465), - [anon_sym_explicit] = ACTIONS(2465), - [anon_sym_typename] = ACTIONS(2465), - [anon_sym_template] = ACTIONS(2465), - [anon_sym_operator] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_delete] = ACTIONS(2465), - [anon_sym_throw] = ACTIONS(2465), - [anon_sym_namespace] = ACTIONS(2465), - [anon_sym_using] = ACTIONS(2465), - [anon_sym_static_assert] = ACTIONS(2465), - [anon_sym_concept] = ACTIONS(2465), - [anon_sym_co_return] = ACTIONS(2465), - [anon_sym_co_yield] = ACTIONS(2465), - [anon_sym_R_DQUOTE] = ACTIONS(2467), - [anon_sym_LR_DQUOTE] = ACTIONS(2467), - [anon_sym_uR_DQUOTE] = ACTIONS(2467), - [anon_sym_UR_DQUOTE] = ACTIONS(2467), - [anon_sym_u8R_DQUOTE] = ACTIONS(2467), - [anon_sym_co_await] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_requires] = ACTIONS(2465), - [sym_this] = ACTIONS(2465), - [sym_nullptr] = ACTIONS(2465), - }, - [776] = { - [ts_builtin_sym_end] = ACTIONS(2471), - [sym_identifier] = ACTIONS(2469), - [aux_sym_preproc_include_token1] = ACTIONS(2469), - [aux_sym_preproc_def_token1] = ACTIONS(2469), - [aux_sym_preproc_if_token1] = ACTIONS(2469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2469), - [sym_preproc_directive] = ACTIONS(2469), - [anon_sym_LPAREN2] = ACTIONS(2471), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_PLUS] = ACTIONS(2469), - [anon_sym_STAR] = ACTIONS(2471), - [anon_sym_AMP_AMP] = ACTIONS(2471), - [anon_sym_AMP] = ACTIONS(2469), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_typedef] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(2469), - [anon_sym___attribute__] = ACTIONS(2469), - [anon_sym_COLON_COLON] = ACTIONS(2471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2471), - [anon_sym___declspec] = ACTIONS(2469), - [anon_sym___based] = ACTIONS(2469), - [anon_sym___cdecl] = ACTIONS(2469), - [anon_sym___clrcall] = ACTIONS(2469), - [anon_sym___stdcall] = ACTIONS(2469), - [anon_sym___fastcall] = ACTIONS(2469), - [anon_sym___thiscall] = ACTIONS(2469), - [anon_sym___vectorcall] = ACTIONS(2469), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_static] = ACTIONS(2469), - [anon_sym_register] = ACTIONS(2469), - [anon_sym_inline] = ACTIONS(2469), - [anon_sym_thread_local] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [anon_sym_volatile] = ACTIONS(2469), - [anon_sym_restrict] = ACTIONS(2469), - [anon_sym__Atomic] = ACTIONS(2469), - [anon_sym_mutable] = ACTIONS(2469), - [anon_sym_constexpr] = ACTIONS(2469), - [anon_sym_constinit] = ACTIONS(2469), - [anon_sym_consteval] = ACTIONS(2469), - [anon_sym_signed] = ACTIONS(2469), - [anon_sym_unsigned] = ACTIONS(2469), - [anon_sym_long] = ACTIONS(2469), - [anon_sym_short] = ACTIONS(2469), - [sym_primitive_type] = ACTIONS(2469), - [anon_sym_enum] = ACTIONS(2469), - [anon_sym_class] = ACTIONS(2469), - [anon_sym_struct] = ACTIONS(2469), - [anon_sym_union] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_switch] = ACTIONS(2469), - [anon_sym_case] = ACTIONS(2469), - [anon_sym_default] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_goto] = ACTIONS(2469), - [anon_sym_not] = ACTIONS(2469), - [anon_sym_compl] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2471), - [anon_sym_sizeof] = ACTIONS(2469), - [sym_number_literal] = ACTIONS(2471), - [anon_sym_L_SQUOTE] = ACTIONS(2471), - [anon_sym_u_SQUOTE] = ACTIONS(2471), - [anon_sym_U_SQUOTE] = ACTIONS(2471), - [anon_sym_u8_SQUOTE] = ACTIONS(2471), - [anon_sym_SQUOTE] = ACTIONS(2471), - [anon_sym_L_DQUOTE] = ACTIONS(2471), - [anon_sym_u_DQUOTE] = ACTIONS(2471), - [anon_sym_U_DQUOTE] = ACTIONS(2471), - [anon_sym_u8_DQUOTE] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(2471), - [sym_true] = ACTIONS(2469), - [sym_false] = ACTIONS(2469), - [sym_null] = ACTIONS(2469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2469), - [anon_sym_decltype] = ACTIONS(2469), - [anon_sym_virtual] = ACTIONS(2469), - [anon_sym_explicit] = ACTIONS(2469), - [anon_sym_typename] = ACTIONS(2469), - [anon_sym_template] = ACTIONS(2469), - [anon_sym_operator] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_delete] = ACTIONS(2469), - [anon_sym_throw] = ACTIONS(2469), - [anon_sym_namespace] = ACTIONS(2469), - [anon_sym_using] = ACTIONS(2469), - [anon_sym_static_assert] = ACTIONS(2469), - [anon_sym_concept] = ACTIONS(2469), - [anon_sym_co_return] = ACTIONS(2469), - [anon_sym_co_yield] = ACTIONS(2469), - [anon_sym_R_DQUOTE] = ACTIONS(2471), - [anon_sym_LR_DQUOTE] = ACTIONS(2471), - [anon_sym_uR_DQUOTE] = ACTIONS(2471), - [anon_sym_UR_DQUOTE] = ACTIONS(2471), - [anon_sym_u8R_DQUOTE] = ACTIONS(2471), - [anon_sym_co_await] = ACTIONS(2469), - [anon_sym_new] = ACTIONS(2469), - [anon_sym_requires] = ACTIONS(2469), - [sym_this] = ACTIONS(2469), - [sym_nullptr] = ACTIONS(2469), - }, - [777] = { - [sym__declaration_modifiers] = STATE(2194), - [sym__declaration_specifiers] = STATE(5027), - [sym_attribute_specifier] = STATE(2194), - [sym_attribute_declaration] = STATE(2194), - [sym_ms_declspec_modifier] = STATE(2194), - [sym_storage_class_specifier] = STATE(2194), - [sym_type_qualifier] = STATE(2194), - [sym__type_specifier] = STATE(4066), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(2194), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3418), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(5396), - [sym_qualified_type_identifier] = STATE(3479), - [aux_sym__declaration_specifiers_repeat1] = STATE(2194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3505), - [sym_identifier] = ACTIONS(2859), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2885), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_EQ] = ACTIONS(2887), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_STAR_EQ] = ACTIONS(2885), - [anon_sym_SLASH_EQ] = ACTIONS(2885), - [anon_sym_PERCENT_EQ] = ACTIONS(2885), - [anon_sym_PLUS_EQ] = ACTIONS(2885), - [anon_sym_DASH_EQ] = ACTIONS(2885), - [anon_sym_LT_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_GT_EQ] = ACTIONS(2885), - [anon_sym_AMP_EQ] = ACTIONS(2885), - [anon_sym_CARET_EQ] = ACTIONS(2885), - [anon_sym_PIPE_EQ] = ACTIONS(2885), - [anon_sym_and_eq] = ACTIONS(2887), - [anon_sym_or_eq] = ACTIONS(2887), - [anon_sym_xor_eq] = ACTIONS(2887), - [anon_sym_not] = ACTIONS(2887), - [anon_sym_compl] = ACTIONS(2887), - [anon_sym_LT_EQ_GT] = ACTIONS(2885), - [anon_sym_or] = ACTIONS(2887), - [anon_sym_and] = ACTIONS(2887), - [anon_sym_bitor] = ACTIONS(2887), - [anon_sym_xor] = ACTIONS(2887), - [anon_sym_bitand] = ACTIONS(2887), - [anon_sym_not_eq] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_GT] = ACTIONS(2887), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(2879), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2889), - [anon_sym_co_await] = ACTIONS(2887), - [anon_sym_new] = ACTIONS(2889), - [anon_sym_DASH_GT_STAR] = ACTIONS(2885), - [anon_sym_LPAREN_RPAREN] = ACTIONS(2885), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2885), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(2891), - }, - [778] = { - [sym_identifier] = ACTIONS(2337), - [aux_sym_preproc_include_token1] = ACTIONS(2337), - [aux_sym_preproc_def_token1] = ACTIONS(2337), - [anon_sym_COMMA] = ACTIONS(2547), - [aux_sym_preproc_if_token1] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), - [sym_preproc_directive] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2335), - [anon_sym_AMP_AMP] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_typedef] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym___attribute__] = ACTIONS(2337), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), - [anon_sym___declspec] = ACTIONS(2337), - [anon_sym___based] = ACTIONS(2337), - [anon_sym___cdecl] = ACTIONS(2337), - [anon_sym___clrcall] = ACTIONS(2337), - [anon_sym___stdcall] = ACTIONS(2337), - [anon_sym___fastcall] = ACTIONS(2337), - [anon_sym___thiscall] = ACTIONS(2337), - [anon_sym___vectorcall] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_inline] = ACTIONS(2337), - [anon_sym_thread_local] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_volatile] = ACTIONS(2337), - [anon_sym_restrict] = ACTIONS(2337), - [anon_sym__Atomic] = ACTIONS(2337), - [anon_sym_mutable] = ACTIONS(2337), - [anon_sym_constexpr] = ACTIONS(2337), - [anon_sym_constinit] = ACTIONS(2337), - [anon_sym_consteval] = ACTIONS(2337), - [anon_sym_signed] = ACTIONS(2337), - [anon_sym_unsigned] = ACTIONS(2337), - [anon_sym_long] = ACTIONS(2337), - [anon_sym_short] = ACTIONS(2337), - [sym_primitive_type] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2337), - [anon_sym_union] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_case] = ACTIONS(2337), - [anon_sym_default] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_goto] = ACTIONS(2337), - [anon_sym_not] = ACTIONS(2337), - [anon_sym_compl] = ACTIONS(2337), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_sizeof] = ACTIONS(2337), - [sym_number_literal] = ACTIONS(2335), - [anon_sym_L_SQUOTE] = ACTIONS(2335), - [anon_sym_u_SQUOTE] = ACTIONS(2335), - [anon_sym_U_SQUOTE] = ACTIONS(2335), - [anon_sym_u8_SQUOTE] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_L_DQUOTE] = ACTIONS(2335), - [anon_sym_u_DQUOTE] = ACTIONS(2335), - [anon_sym_U_DQUOTE] = ACTIONS(2335), - [anon_sym_u8_DQUOTE] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_true] = ACTIONS(2337), - [sym_false] = ACTIONS(2337), - [sym_null] = ACTIONS(2337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2337), - [anon_sym_decltype] = ACTIONS(2337), - [anon_sym_virtual] = ACTIONS(2337), - [anon_sym_explicit] = ACTIONS(2337), - [anon_sym_typename] = ACTIONS(2337), - [anon_sym_template] = ACTIONS(2337), - [anon_sym_operator] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_delete] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_using] = ACTIONS(2337), - [anon_sym_static_assert] = ACTIONS(2337), - [anon_sym_concept] = ACTIONS(2337), - [anon_sym_co_return] = ACTIONS(2337), - [anon_sym_co_yield] = ACTIONS(2337), - [anon_sym_R_DQUOTE] = ACTIONS(2335), - [anon_sym_LR_DQUOTE] = ACTIONS(2335), - [anon_sym_uR_DQUOTE] = ACTIONS(2335), - [anon_sym_UR_DQUOTE] = ACTIONS(2335), - [anon_sym_u8R_DQUOTE] = ACTIONS(2335), - [anon_sym_co_await] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_requires] = ACTIONS(2337), - [sym_this] = ACTIONS(2337), - [sym_nullptr] = ACTIONS(2337), - }, - [779] = { - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(2475), - [aux_sym_preproc_include_token1] = ACTIONS(2475), - [aux_sym_preproc_def_token1] = ACTIONS(2475), - [aux_sym_preproc_if_token1] = ACTIONS(2475), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2475), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2475), - [sym_preproc_directive] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_typedef] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2475), - [anon_sym___attribute__] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), - [anon_sym___declspec] = ACTIONS(2475), - [anon_sym___based] = ACTIONS(2475), - [anon_sym___cdecl] = ACTIONS(2475), - [anon_sym___clrcall] = ACTIONS(2475), - [anon_sym___stdcall] = ACTIONS(2475), - [anon_sym___fastcall] = ACTIONS(2475), - [anon_sym___thiscall] = ACTIONS(2475), - [anon_sym___vectorcall] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2475), - [anon_sym_register] = ACTIONS(2475), - [anon_sym_inline] = ACTIONS(2475), - [anon_sym_thread_local] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_volatile] = ACTIONS(2475), - [anon_sym_restrict] = ACTIONS(2475), - [anon_sym__Atomic] = ACTIONS(2475), - [anon_sym_mutable] = ACTIONS(2475), - [anon_sym_constexpr] = ACTIONS(2475), - [anon_sym_constinit] = ACTIONS(2475), - [anon_sym_consteval] = ACTIONS(2475), - [anon_sym_signed] = ACTIONS(2475), - [anon_sym_unsigned] = ACTIONS(2475), - [anon_sym_long] = ACTIONS(2475), - [anon_sym_short] = ACTIONS(2475), - [sym_primitive_type] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_class] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_switch] = ACTIONS(2475), - [anon_sym_case] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_not] = ACTIONS(2475), - [anon_sym_compl] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_sizeof] = ACTIONS(2475), - [sym_number_literal] = ACTIONS(2477), - [anon_sym_L_SQUOTE] = ACTIONS(2477), - [anon_sym_u_SQUOTE] = ACTIONS(2477), - [anon_sym_U_SQUOTE] = ACTIONS(2477), - [anon_sym_u8_SQUOTE] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2477), - [anon_sym_L_DQUOTE] = ACTIONS(2477), - [anon_sym_u_DQUOTE] = ACTIONS(2477), - [anon_sym_U_DQUOTE] = ACTIONS(2477), - [anon_sym_u8_DQUOTE] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_null] = ACTIONS(2475), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2475), - [anon_sym_decltype] = ACTIONS(2475), - [anon_sym_virtual] = ACTIONS(2475), - [anon_sym_explicit] = ACTIONS(2475), - [anon_sym_typename] = ACTIONS(2475), - [anon_sym_template] = ACTIONS(2475), - [anon_sym_operator] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_delete] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2475), - [anon_sym_namespace] = ACTIONS(2475), - [anon_sym_using] = ACTIONS(2475), - [anon_sym_static_assert] = ACTIONS(2475), - [anon_sym_concept] = ACTIONS(2475), - [anon_sym_co_return] = ACTIONS(2475), - [anon_sym_co_yield] = ACTIONS(2475), - [anon_sym_R_DQUOTE] = ACTIONS(2477), - [anon_sym_LR_DQUOTE] = ACTIONS(2477), - [anon_sym_uR_DQUOTE] = ACTIONS(2477), - [anon_sym_UR_DQUOTE] = ACTIONS(2477), - [anon_sym_u8R_DQUOTE] = ACTIONS(2477), - [anon_sym_co_await] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2475), - [anon_sym_requires] = ACTIONS(2475), - [sym_this] = ACTIONS(2475), - [sym_nullptr] = ACTIONS(2475), - }, - [780] = { - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2479), - [aux_sym_preproc_include_token1] = ACTIONS(2479), - [aux_sym_preproc_def_token1] = ACTIONS(2479), - [aux_sym_preproc_if_token1] = ACTIONS(2479), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2479), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2479), - [sym_preproc_directive] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_typedef] = ACTIONS(2479), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym___attribute__] = ACTIONS(2479), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), - [anon_sym___declspec] = ACTIONS(2479), - [anon_sym___based] = ACTIONS(2479), - [anon_sym___cdecl] = ACTIONS(2479), - [anon_sym___clrcall] = ACTIONS(2479), - [anon_sym___stdcall] = ACTIONS(2479), - [anon_sym___fastcall] = ACTIONS(2479), - [anon_sym___thiscall] = ACTIONS(2479), - [anon_sym___vectorcall] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_register] = ACTIONS(2479), - [anon_sym_inline] = ACTIONS(2479), - [anon_sym_thread_local] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_volatile] = ACTIONS(2479), - [anon_sym_restrict] = ACTIONS(2479), - [anon_sym__Atomic] = ACTIONS(2479), - [anon_sym_mutable] = ACTIONS(2479), - [anon_sym_constexpr] = ACTIONS(2479), - [anon_sym_constinit] = ACTIONS(2479), - [anon_sym_consteval] = ACTIONS(2479), - [anon_sym_signed] = ACTIONS(2479), - [anon_sym_unsigned] = ACTIONS(2479), - [anon_sym_long] = ACTIONS(2479), - [anon_sym_short] = ACTIONS(2479), - [sym_primitive_type] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_class] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2479), - [anon_sym_union] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_switch] = ACTIONS(2479), - [anon_sym_case] = ACTIONS(2479), - [anon_sym_default] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_goto] = ACTIONS(2479), - [anon_sym_not] = ACTIONS(2479), - [anon_sym_compl] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_sizeof] = ACTIONS(2479), - [sym_number_literal] = ACTIONS(2481), - [anon_sym_L_SQUOTE] = ACTIONS(2481), - [anon_sym_u_SQUOTE] = ACTIONS(2481), - [anon_sym_U_SQUOTE] = ACTIONS(2481), - [anon_sym_u8_SQUOTE] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_L_DQUOTE] = ACTIONS(2481), - [anon_sym_u_DQUOTE] = ACTIONS(2481), - [anon_sym_U_DQUOTE] = ACTIONS(2481), - [anon_sym_u8_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(2481), - [sym_true] = ACTIONS(2479), - [sym_false] = ACTIONS(2479), - [sym_null] = ACTIONS(2479), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2479), - [anon_sym_decltype] = ACTIONS(2479), - [anon_sym_virtual] = ACTIONS(2479), - [anon_sym_explicit] = ACTIONS(2479), - [anon_sym_typename] = ACTIONS(2479), - [anon_sym_template] = ACTIONS(2479), - [anon_sym_operator] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_delete] = ACTIONS(2479), - [anon_sym_throw] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2479), - [anon_sym_using] = ACTIONS(2479), - [anon_sym_static_assert] = ACTIONS(2479), - [anon_sym_concept] = ACTIONS(2479), - [anon_sym_co_return] = ACTIONS(2479), - [anon_sym_co_yield] = ACTIONS(2479), - [anon_sym_R_DQUOTE] = ACTIONS(2481), - [anon_sym_LR_DQUOTE] = ACTIONS(2481), - [anon_sym_uR_DQUOTE] = ACTIONS(2481), - [anon_sym_UR_DQUOTE] = ACTIONS(2481), - [anon_sym_u8R_DQUOTE] = ACTIONS(2481), - [anon_sym_co_await] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_requires] = ACTIONS(2479), - [sym_this] = ACTIONS(2479), - [sym_nullptr] = ACTIONS(2479), - }, - [781] = { - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2483), - [aux_sym_preproc_include_token1] = ACTIONS(2483), - [aux_sym_preproc_def_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), - [sym_preproc_directive] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym___based] = ACTIONS(2483), - [anon_sym___cdecl] = ACTIONS(2483), - [anon_sym___clrcall] = ACTIONS(2483), - [anon_sym___stdcall] = ACTIONS(2483), - [anon_sym___fastcall] = ACTIONS(2483), - [anon_sym___thiscall] = ACTIONS(2483), - [anon_sym___vectorcall] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym_not] = ACTIONS(2483), - [anon_sym_compl] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_sizeof] = ACTIONS(2483), - [sym_number_literal] = ACTIONS(2485), - [anon_sym_L_SQUOTE] = ACTIONS(2485), - [anon_sym_u_SQUOTE] = ACTIONS(2485), - [anon_sym_U_SQUOTE] = ACTIONS(2485), - [anon_sym_u8_SQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_L_DQUOTE] = ACTIONS(2485), - [anon_sym_u_DQUOTE] = ACTIONS(2485), - [anon_sym_U_DQUOTE] = ACTIONS(2485), - [anon_sym_u8_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [sym_null] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_explicit] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_operator] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_static_assert] = ACTIONS(2483), - [anon_sym_concept] = ACTIONS(2483), - [anon_sym_co_return] = ACTIONS(2483), - [anon_sym_co_yield] = ACTIONS(2483), - [anon_sym_R_DQUOTE] = ACTIONS(2485), - [anon_sym_LR_DQUOTE] = ACTIONS(2485), - [anon_sym_uR_DQUOTE] = ACTIONS(2485), - [anon_sym_UR_DQUOTE] = ACTIONS(2485), - [anon_sym_u8R_DQUOTE] = ACTIONS(2485), - [anon_sym_co_await] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_requires] = ACTIONS(2483), - [sym_this] = ACTIONS(2483), - [sym_nullptr] = ACTIONS(2483), - }, - [782] = { - [ts_builtin_sym_end] = ACTIONS(2489), - [sym_identifier] = ACTIONS(2487), - [aux_sym_preproc_include_token1] = ACTIONS(2487), - [aux_sym_preproc_def_token1] = ACTIONS(2487), - [aux_sym_preproc_if_token1] = ACTIONS(2487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2487), - [sym_preproc_directive] = ACTIONS(2487), - [anon_sym_LPAREN2] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_AMP_AMP] = ACTIONS(2489), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2489), - [anon_sym_typedef] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym___attribute__] = ACTIONS(2487), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), - [anon_sym___declspec] = ACTIONS(2487), - [anon_sym___based] = ACTIONS(2487), - [anon_sym___cdecl] = ACTIONS(2487), - [anon_sym___clrcall] = ACTIONS(2487), - [anon_sym___stdcall] = ACTIONS(2487), - [anon_sym___fastcall] = ACTIONS(2487), - [anon_sym___thiscall] = ACTIONS(2487), - [anon_sym___vectorcall] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_register] = ACTIONS(2487), - [anon_sym_inline] = ACTIONS(2487), - [anon_sym_thread_local] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_volatile] = ACTIONS(2487), - [anon_sym_restrict] = ACTIONS(2487), - [anon_sym__Atomic] = ACTIONS(2487), - [anon_sym_mutable] = ACTIONS(2487), - [anon_sym_constexpr] = ACTIONS(2487), - [anon_sym_constinit] = ACTIONS(2487), - [anon_sym_consteval] = ACTIONS(2487), - [anon_sym_signed] = ACTIONS(2487), - [anon_sym_unsigned] = ACTIONS(2487), - [anon_sym_long] = ACTIONS(2487), - [anon_sym_short] = ACTIONS(2487), - [sym_primitive_type] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(2487), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_switch] = ACTIONS(2487), - [anon_sym_case] = ACTIONS(2487), - [anon_sym_default] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_goto] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2489), - [anon_sym_PLUS_PLUS] = ACTIONS(2489), - [anon_sym_sizeof] = ACTIONS(2487), - [sym_number_literal] = ACTIONS(2489), - [anon_sym_L_SQUOTE] = ACTIONS(2489), - [anon_sym_u_SQUOTE] = ACTIONS(2489), - [anon_sym_U_SQUOTE] = ACTIONS(2489), - [anon_sym_u8_SQUOTE] = ACTIONS(2489), - [anon_sym_SQUOTE] = ACTIONS(2489), - [anon_sym_L_DQUOTE] = ACTIONS(2489), - [anon_sym_u_DQUOTE] = ACTIONS(2489), - [anon_sym_U_DQUOTE] = ACTIONS(2489), - [anon_sym_u8_DQUOTE] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_null] = ACTIONS(2487), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2487), - [anon_sym_decltype] = ACTIONS(2487), - [anon_sym_virtual] = ACTIONS(2487), - [anon_sym_explicit] = ACTIONS(2487), - [anon_sym_typename] = ACTIONS(2487), - [anon_sym_template] = ACTIONS(2487), - [anon_sym_operator] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_delete] = ACTIONS(2487), - [anon_sym_throw] = ACTIONS(2487), - [anon_sym_namespace] = ACTIONS(2487), - [anon_sym_using] = ACTIONS(2487), - [anon_sym_static_assert] = ACTIONS(2487), - [anon_sym_concept] = ACTIONS(2487), - [anon_sym_co_return] = ACTIONS(2487), - [anon_sym_co_yield] = ACTIONS(2487), - [anon_sym_R_DQUOTE] = ACTIONS(2489), - [anon_sym_LR_DQUOTE] = ACTIONS(2489), - [anon_sym_uR_DQUOTE] = ACTIONS(2489), - [anon_sym_UR_DQUOTE] = ACTIONS(2489), - [anon_sym_u8R_DQUOTE] = ACTIONS(2489), - [anon_sym_co_await] = ACTIONS(2487), - [anon_sym_new] = ACTIONS(2487), - [anon_sym_requires] = ACTIONS(2487), - [sym_this] = ACTIONS(2487), - [sym_nullptr] = ACTIONS(2487), - }, - [783] = { - [ts_builtin_sym_end] = ACTIONS(2493), - [sym_identifier] = ACTIONS(2491), - [aux_sym_preproc_include_token1] = ACTIONS(2491), - [aux_sym_preproc_def_token1] = ACTIONS(2491), - [aux_sym_preproc_if_token1] = ACTIONS(2491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), - [sym_preproc_directive] = ACTIONS(2491), - [anon_sym_LPAREN2] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_AMP_AMP] = ACTIONS(2493), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_typedef] = ACTIONS(2491), - [anon_sym_extern] = ACTIONS(2491), - [anon_sym___attribute__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), - [anon_sym___declspec] = ACTIONS(2491), - [anon_sym___based] = ACTIONS(2491), - [anon_sym___cdecl] = ACTIONS(2491), - [anon_sym___clrcall] = ACTIONS(2491), - [anon_sym___stdcall] = ACTIONS(2491), - [anon_sym___fastcall] = ACTIONS(2491), - [anon_sym___thiscall] = ACTIONS(2491), - [anon_sym___vectorcall] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2491), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_register] = ACTIONS(2491), - [anon_sym_inline] = ACTIONS(2491), - [anon_sym_thread_local] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [anon_sym_volatile] = ACTIONS(2491), - [anon_sym_restrict] = ACTIONS(2491), - [anon_sym__Atomic] = ACTIONS(2491), - [anon_sym_mutable] = ACTIONS(2491), - [anon_sym_constexpr] = ACTIONS(2491), - [anon_sym_constinit] = ACTIONS(2491), - [anon_sym_consteval] = ACTIONS(2491), - [anon_sym_signed] = ACTIONS(2491), - [anon_sym_unsigned] = ACTIONS(2491), - [anon_sym_long] = ACTIONS(2491), - [anon_sym_short] = ACTIONS(2491), - [sym_primitive_type] = ACTIONS(2491), - [anon_sym_enum] = ACTIONS(2491), - [anon_sym_class] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2491), - [anon_sym_union] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_else] = ACTIONS(2491), - [anon_sym_switch] = ACTIONS(2491), - [anon_sym_case] = ACTIONS(2491), - [anon_sym_default] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_do] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_goto] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(2493), - [anon_sym_PLUS_PLUS] = ACTIONS(2493), - [anon_sym_sizeof] = ACTIONS(2491), - [sym_number_literal] = ACTIONS(2493), - [anon_sym_L_SQUOTE] = ACTIONS(2493), - [anon_sym_u_SQUOTE] = ACTIONS(2493), - [anon_sym_U_SQUOTE] = ACTIONS(2493), - [anon_sym_u8_SQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_L_DQUOTE] = ACTIONS(2493), - [anon_sym_u_DQUOTE] = ACTIONS(2493), - [anon_sym_U_DQUOTE] = ACTIONS(2493), - [anon_sym_u8_DQUOTE] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym_true] = ACTIONS(2491), - [sym_false] = ACTIONS(2491), - [sym_null] = ACTIONS(2491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2491), - [anon_sym_decltype] = ACTIONS(2491), - [anon_sym_virtual] = ACTIONS(2491), - [anon_sym_explicit] = ACTIONS(2491), - [anon_sym_typename] = ACTIONS(2491), - [anon_sym_template] = ACTIONS(2491), - [anon_sym_operator] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2491), - [anon_sym_delete] = ACTIONS(2491), - [anon_sym_throw] = ACTIONS(2491), - [anon_sym_namespace] = ACTIONS(2491), - [anon_sym_using] = ACTIONS(2491), - [anon_sym_static_assert] = ACTIONS(2491), - [anon_sym_concept] = ACTIONS(2491), - [anon_sym_co_return] = ACTIONS(2491), - [anon_sym_co_yield] = ACTIONS(2491), - [anon_sym_R_DQUOTE] = ACTIONS(2493), - [anon_sym_LR_DQUOTE] = ACTIONS(2493), - [anon_sym_uR_DQUOTE] = ACTIONS(2493), - [anon_sym_UR_DQUOTE] = ACTIONS(2493), - [anon_sym_u8R_DQUOTE] = ACTIONS(2493), - [anon_sym_co_await] = ACTIONS(2491), - [anon_sym_new] = ACTIONS(2491), - [anon_sym_requires] = ACTIONS(2491), - [sym_this] = ACTIONS(2491), - [sym_nullptr] = ACTIONS(2491), - }, - [784] = { - [sym_identifier] = ACTIONS(2503), - [aux_sym_preproc_include_token1] = ACTIONS(2503), - [aux_sym_preproc_def_token1] = ACTIONS(2503), - [aux_sym_preproc_if_token1] = ACTIONS(2503), - [aux_sym_preproc_if_token2] = ACTIONS(2503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), - [sym_preproc_directive] = ACTIONS(2503), - [anon_sym_LPAREN2] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_AMP_AMP] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_typedef] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2503), - [anon_sym___attribute__] = ACTIONS(2503), - [anon_sym_COLON_COLON] = ACTIONS(2505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), - [anon_sym___declspec] = ACTIONS(2503), - [anon_sym___based] = ACTIONS(2503), - [anon_sym___cdecl] = ACTIONS(2503), - [anon_sym___clrcall] = ACTIONS(2503), - [anon_sym___stdcall] = ACTIONS(2503), - [anon_sym___fastcall] = ACTIONS(2503), - [anon_sym___thiscall] = ACTIONS(2503), - [anon_sym___vectorcall] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2503), - [anon_sym_register] = ACTIONS(2503), - [anon_sym_inline] = ACTIONS(2503), - [anon_sym_thread_local] = ACTIONS(2503), - [anon_sym_const] = ACTIONS(2503), - [anon_sym_volatile] = ACTIONS(2503), - [anon_sym_restrict] = ACTIONS(2503), - [anon_sym__Atomic] = ACTIONS(2503), - [anon_sym_mutable] = ACTIONS(2503), - [anon_sym_constexpr] = ACTIONS(2503), - [anon_sym_constinit] = ACTIONS(2503), - [anon_sym_consteval] = ACTIONS(2503), - [anon_sym_signed] = ACTIONS(2503), - [anon_sym_unsigned] = ACTIONS(2503), - [anon_sym_long] = ACTIONS(2503), - [anon_sym_short] = ACTIONS(2503), - [sym_primitive_type] = ACTIONS(2503), - [anon_sym_enum] = ACTIONS(2503), - [anon_sym_class] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2503), - [anon_sym_union] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2503), - [anon_sym_else] = ACTIONS(2503), - [anon_sym_switch] = ACTIONS(2503), - [anon_sym_case] = ACTIONS(2503), - [anon_sym_default] = ACTIONS(2503), - [anon_sym_while] = ACTIONS(2503), - [anon_sym_do] = ACTIONS(2503), - [anon_sym_for] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2503), - [anon_sym_break] = ACTIONS(2503), - [anon_sym_continue] = ACTIONS(2503), - [anon_sym_goto] = ACTIONS(2503), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_sizeof] = ACTIONS(2503), - [sym_number_literal] = ACTIONS(2505), - [anon_sym_L_SQUOTE] = ACTIONS(2505), - [anon_sym_u_SQUOTE] = ACTIONS(2505), - [anon_sym_U_SQUOTE] = ACTIONS(2505), - [anon_sym_u8_SQUOTE] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2505), - [anon_sym_L_DQUOTE] = ACTIONS(2505), - [anon_sym_u_DQUOTE] = ACTIONS(2505), - [anon_sym_U_DQUOTE] = ACTIONS(2505), - [anon_sym_u8_DQUOTE] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [sym_true] = ACTIONS(2503), - [sym_false] = ACTIONS(2503), - [sym_null] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2503), - [anon_sym_decltype] = ACTIONS(2503), - [anon_sym_virtual] = ACTIONS(2503), - [anon_sym_explicit] = ACTIONS(2503), - [anon_sym_typename] = ACTIONS(2503), - [anon_sym_template] = ACTIONS(2503), - [anon_sym_operator] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2503), - [anon_sym_delete] = ACTIONS(2503), - [anon_sym_throw] = ACTIONS(2503), - [anon_sym_namespace] = ACTIONS(2503), - [anon_sym_using] = ACTIONS(2503), - [anon_sym_static_assert] = ACTIONS(2503), - [anon_sym_concept] = ACTIONS(2503), - [anon_sym_co_return] = ACTIONS(2503), - [anon_sym_co_yield] = ACTIONS(2503), - [anon_sym_R_DQUOTE] = ACTIONS(2505), - [anon_sym_LR_DQUOTE] = ACTIONS(2505), - [anon_sym_uR_DQUOTE] = ACTIONS(2505), - [anon_sym_UR_DQUOTE] = ACTIONS(2505), - [anon_sym_u8R_DQUOTE] = ACTIONS(2505), - [anon_sym_co_await] = ACTIONS(2503), - [anon_sym_new] = ACTIONS(2503), - [anon_sym_requires] = ACTIONS(2503), - [sym_this] = ACTIONS(2503), - [sym_nullptr] = ACTIONS(2503), - }, - [785] = { [sym_identifier] = ACTIONS(2499), [aux_sym_preproc_include_token1] = ACTIONS(2499), [aux_sym_preproc_def_token1] = ACTIONS(2499), @@ -126946,6 +117752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2499), [anon_sym_inline] = ACTIONS(2499), [anon_sym_thread_local] = ACTIONS(2499), + [anon_sym_input] = ACTIONS(2499), [anon_sym_const] = ACTIONS(2499), [anon_sym_volatile] = ACTIONS(2499), [anon_sym_restrict] = ACTIONS(2499), @@ -127022,7470 +117829,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2499), [sym_nullptr] = ACTIONS(2499), }, - [786] = { - [sym_identifier] = ACTIONS(2495), - [aux_sym_preproc_include_token1] = ACTIONS(2495), - [aux_sym_preproc_def_token1] = ACTIONS(2495), - [aux_sym_preproc_if_token1] = ACTIONS(2495), - [aux_sym_preproc_if_token2] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2495), - [sym_preproc_directive] = ACTIONS(2495), - [anon_sym_LPAREN2] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2495), - [anon_sym_PLUS] = ACTIONS(2495), - [anon_sym_STAR] = ACTIONS(2497), - [anon_sym_AMP_AMP] = ACTIONS(2497), - [anon_sym_AMP] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2497), - [anon_sym_typedef] = ACTIONS(2495), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym___attribute__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), - [anon_sym___declspec] = ACTIONS(2495), - [anon_sym___based] = ACTIONS(2495), - [anon_sym___cdecl] = ACTIONS(2495), - [anon_sym___clrcall] = ACTIONS(2495), - [anon_sym___stdcall] = ACTIONS(2495), - [anon_sym___fastcall] = ACTIONS(2495), - [anon_sym___thiscall] = ACTIONS(2495), - [anon_sym___vectorcall] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2495), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_register] = ACTIONS(2495), - [anon_sym_inline] = ACTIONS(2495), - [anon_sym_thread_local] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_volatile] = ACTIONS(2495), - [anon_sym_restrict] = ACTIONS(2495), - [anon_sym__Atomic] = ACTIONS(2495), - [anon_sym_mutable] = ACTIONS(2495), - [anon_sym_constexpr] = ACTIONS(2495), - [anon_sym_constinit] = ACTIONS(2495), - [anon_sym_consteval] = ACTIONS(2495), - [anon_sym_signed] = ACTIONS(2495), - [anon_sym_unsigned] = ACTIONS(2495), - [anon_sym_long] = ACTIONS(2495), - [anon_sym_short] = ACTIONS(2495), - [sym_primitive_type] = ACTIONS(2495), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_if] = ACTIONS(2495), - [anon_sym_else] = ACTIONS(2495), - [anon_sym_switch] = ACTIONS(2495), - [anon_sym_case] = ACTIONS(2495), - [anon_sym_default] = ACTIONS(2495), - [anon_sym_while] = ACTIONS(2495), - [anon_sym_do] = ACTIONS(2495), - [anon_sym_for] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2495), - [anon_sym_break] = ACTIONS(2495), - [anon_sym_continue] = ACTIONS(2495), - [anon_sym_goto] = ACTIONS(2495), - [anon_sym_not] = ACTIONS(2495), - [anon_sym_compl] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2497), - [anon_sym_sizeof] = ACTIONS(2495), - [sym_number_literal] = ACTIONS(2497), - [anon_sym_L_SQUOTE] = ACTIONS(2497), - [anon_sym_u_SQUOTE] = ACTIONS(2497), - [anon_sym_U_SQUOTE] = ACTIONS(2497), - [anon_sym_u8_SQUOTE] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2497), - [anon_sym_L_DQUOTE] = ACTIONS(2497), - [anon_sym_u_DQUOTE] = ACTIONS(2497), - [anon_sym_U_DQUOTE] = ACTIONS(2497), - [anon_sym_u8_DQUOTE] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym_true] = ACTIONS(2495), - [sym_false] = ACTIONS(2495), - [sym_null] = ACTIONS(2495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2495), - [anon_sym_decltype] = ACTIONS(2495), - [anon_sym_virtual] = ACTIONS(2495), - [anon_sym_explicit] = ACTIONS(2495), - [anon_sym_typename] = ACTIONS(2495), - [anon_sym_template] = ACTIONS(2495), - [anon_sym_operator] = ACTIONS(2495), - [anon_sym_try] = ACTIONS(2495), - [anon_sym_delete] = ACTIONS(2495), - [anon_sym_throw] = ACTIONS(2495), - [anon_sym_namespace] = ACTIONS(2495), - [anon_sym_using] = ACTIONS(2495), - [anon_sym_static_assert] = ACTIONS(2495), - [anon_sym_concept] = ACTIONS(2495), - [anon_sym_co_return] = ACTIONS(2495), - [anon_sym_co_yield] = ACTIONS(2495), - [anon_sym_R_DQUOTE] = ACTIONS(2497), - [anon_sym_LR_DQUOTE] = ACTIONS(2497), - [anon_sym_uR_DQUOTE] = ACTIONS(2497), - [anon_sym_UR_DQUOTE] = ACTIONS(2497), - [anon_sym_u8R_DQUOTE] = ACTIONS(2497), - [anon_sym_co_await] = ACTIONS(2495), - [anon_sym_new] = ACTIONS(2495), - [anon_sym_requires] = ACTIONS(2495), - [sym_this] = ACTIONS(2495), - [sym_nullptr] = ACTIONS(2495), - }, - [787] = { - [sym_identifier] = ACTIONS(2491), - [aux_sym_preproc_include_token1] = ACTIONS(2491), - [aux_sym_preproc_def_token1] = ACTIONS(2491), - [aux_sym_preproc_if_token1] = ACTIONS(2491), - [aux_sym_preproc_if_token2] = ACTIONS(2491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), - [sym_preproc_directive] = ACTIONS(2491), - [anon_sym_LPAREN2] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_AMP_AMP] = ACTIONS(2493), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_typedef] = ACTIONS(2491), - [anon_sym_extern] = ACTIONS(2491), - [anon_sym___attribute__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), - [anon_sym___declspec] = ACTIONS(2491), - [anon_sym___based] = ACTIONS(2491), - [anon_sym___cdecl] = ACTIONS(2491), - [anon_sym___clrcall] = ACTIONS(2491), - [anon_sym___stdcall] = ACTIONS(2491), - [anon_sym___fastcall] = ACTIONS(2491), - [anon_sym___thiscall] = ACTIONS(2491), - [anon_sym___vectorcall] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2491), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_register] = ACTIONS(2491), - [anon_sym_inline] = ACTIONS(2491), - [anon_sym_thread_local] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [anon_sym_volatile] = ACTIONS(2491), - [anon_sym_restrict] = ACTIONS(2491), - [anon_sym__Atomic] = ACTIONS(2491), - [anon_sym_mutable] = ACTIONS(2491), - [anon_sym_constexpr] = ACTIONS(2491), - [anon_sym_constinit] = ACTIONS(2491), - [anon_sym_consteval] = ACTIONS(2491), - [anon_sym_signed] = ACTIONS(2491), - [anon_sym_unsigned] = ACTIONS(2491), - [anon_sym_long] = ACTIONS(2491), - [anon_sym_short] = ACTIONS(2491), - [sym_primitive_type] = ACTIONS(2491), - [anon_sym_enum] = ACTIONS(2491), - [anon_sym_class] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2491), - [anon_sym_union] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_else] = ACTIONS(2491), - [anon_sym_switch] = ACTIONS(2491), - [anon_sym_case] = ACTIONS(2491), - [anon_sym_default] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_do] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_goto] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(2493), - [anon_sym_PLUS_PLUS] = ACTIONS(2493), - [anon_sym_sizeof] = ACTIONS(2491), - [sym_number_literal] = ACTIONS(2493), - [anon_sym_L_SQUOTE] = ACTIONS(2493), - [anon_sym_u_SQUOTE] = ACTIONS(2493), - [anon_sym_U_SQUOTE] = ACTIONS(2493), - [anon_sym_u8_SQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_L_DQUOTE] = ACTIONS(2493), - [anon_sym_u_DQUOTE] = ACTIONS(2493), - [anon_sym_U_DQUOTE] = ACTIONS(2493), - [anon_sym_u8_DQUOTE] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym_true] = ACTIONS(2491), - [sym_false] = ACTIONS(2491), - [sym_null] = ACTIONS(2491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2491), - [anon_sym_decltype] = ACTIONS(2491), - [anon_sym_virtual] = ACTIONS(2491), - [anon_sym_explicit] = ACTIONS(2491), - [anon_sym_typename] = ACTIONS(2491), - [anon_sym_template] = ACTIONS(2491), - [anon_sym_operator] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2491), - [anon_sym_delete] = ACTIONS(2491), - [anon_sym_throw] = ACTIONS(2491), - [anon_sym_namespace] = ACTIONS(2491), - [anon_sym_using] = ACTIONS(2491), - [anon_sym_static_assert] = ACTIONS(2491), - [anon_sym_concept] = ACTIONS(2491), - [anon_sym_co_return] = ACTIONS(2491), - [anon_sym_co_yield] = ACTIONS(2491), - [anon_sym_R_DQUOTE] = ACTIONS(2493), - [anon_sym_LR_DQUOTE] = ACTIONS(2493), - [anon_sym_uR_DQUOTE] = ACTIONS(2493), - [anon_sym_UR_DQUOTE] = ACTIONS(2493), - [anon_sym_u8R_DQUOTE] = ACTIONS(2493), - [anon_sym_co_await] = ACTIONS(2491), - [anon_sym_new] = ACTIONS(2491), - [anon_sym_requires] = ACTIONS(2491), - [sym_this] = ACTIONS(2491), - [sym_nullptr] = ACTIONS(2491), - }, - [788] = { - [ts_builtin_sym_end] = ACTIONS(2497), - [sym_identifier] = ACTIONS(2495), - [aux_sym_preproc_include_token1] = ACTIONS(2495), - [aux_sym_preproc_def_token1] = ACTIONS(2495), - [aux_sym_preproc_if_token1] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2495), - [sym_preproc_directive] = ACTIONS(2495), - [anon_sym_LPAREN2] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2495), - [anon_sym_PLUS] = ACTIONS(2495), - [anon_sym_STAR] = ACTIONS(2497), - [anon_sym_AMP_AMP] = ACTIONS(2497), - [anon_sym_AMP] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2497), - [anon_sym_typedef] = ACTIONS(2495), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym___attribute__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), - [anon_sym___declspec] = ACTIONS(2495), - [anon_sym___based] = ACTIONS(2495), - [anon_sym___cdecl] = ACTIONS(2495), - [anon_sym___clrcall] = ACTIONS(2495), - [anon_sym___stdcall] = ACTIONS(2495), - [anon_sym___fastcall] = ACTIONS(2495), - [anon_sym___thiscall] = ACTIONS(2495), - [anon_sym___vectorcall] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2495), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_register] = ACTIONS(2495), - [anon_sym_inline] = ACTIONS(2495), - [anon_sym_thread_local] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_volatile] = ACTIONS(2495), - [anon_sym_restrict] = ACTIONS(2495), - [anon_sym__Atomic] = ACTIONS(2495), - [anon_sym_mutable] = ACTIONS(2495), - [anon_sym_constexpr] = ACTIONS(2495), - [anon_sym_constinit] = ACTIONS(2495), - [anon_sym_consteval] = ACTIONS(2495), - [anon_sym_signed] = ACTIONS(2495), - [anon_sym_unsigned] = ACTIONS(2495), - [anon_sym_long] = ACTIONS(2495), - [anon_sym_short] = ACTIONS(2495), - [sym_primitive_type] = ACTIONS(2495), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_if] = ACTIONS(2495), - [anon_sym_else] = ACTIONS(2495), - [anon_sym_switch] = ACTIONS(2495), - [anon_sym_case] = ACTIONS(2495), - [anon_sym_default] = ACTIONS(2495), - [anon_sym_while] = ACTIONS(2495), - [anon_sym_do] = ACTIONS(2495), - [anon_sym_for] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2495), - [anon_sym_break] = ACTIONS(2495), - [anon_sym_continue] = ACTIONS(2495), - [anon_sym_goto] = ACTIONS(2495), - [anon_sym_not] = ACTIONS(2495), - [anon_sym_compl] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2497), - [anon_sym_sizeof] = ACTIONS(2495), - [sym_number_literal] = ACTIONS(2497), - [anon_sym_L_SQUOTE] = ACTIONS(2497), - [anon_sym_u_SQUOTE] = ACTIONS(2497), - [anon_sym_U_SQUOTE] = ACTIONS(2497), - [anon_sym_u8_SQUOTE] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2497), - [anon_sym_L_DQUOTE] = ACTIONS(2497), - [anon_sym_u_DQUOTE] = ACTIONS(2497), - [anon_sym_U_DQUOTE] = ACTIONS(2497), - [anon_sym_u8_DQUOTE] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym_true] = ACTIONS(2495), - [sym_false] = ACTIONS(2495), - [sym_null] = ACTIONS(2495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2495), - [anon_sym_decltype] = ACTIONS(2495), - [anon_sym_virtual] = ACTIONS(2495), - [anon_sym_explicit] = ACTIONS(2495), - [anon_sym_typename] = ACTIONS(2495), - [anon_sym_template] = ACTIONS(2495), - [anon_sym_operator] = ACTIONS(2495), - [anon_sym_try] = ACTIONS(2495), - [anon_sym_delete] = ACTIONS(2495), - [anon_sym_throw] = ACTIONS(2495), - [anon_sym_namespace] = ACTIONS(2495), - [anon_sym_using] = ACTIONS(2495), - [anon_sym_static_assert] = ACTIONS(2495), - [anon_sym_concept] = ACTIONS(2495), - [anon_sym_co_return] = ACTIONS(2495), - [anon_sym_co_yield] = ACTIONS(2495), - [anon_sym_R_DQUOTE] = ACTIONS(2497), - [anon_sym_LR_DQUOTE] = ACTIONS(2497), - [anon_sym_uR_DQUOTE] = ACTIONS(2497), - [anon_sym_UR_DQUOTE] = ACTIONS(2497), - [anon_sym_u8R_DQUOTE] = ACTIONS(2497), - [anon_sym_co_await] = ACTIONS(2495), - [anon_sym_new] = ACTIONS(2495), - [anon_sym_requires] = ACTIONS(2495), - [sym_this] = ACTIONS(2495), - [sym_nullptr] = ACTIONS(2495), - }, - [789] = { - [sym_identifier] = ACTIONS(2487), - [aux_sym_preproc_include_token1] = ACTIONS(2487), - [aux_sym_preproc_def_token1] = ACTIONS(2487), - [aux_sym_preproc_if_token1] = ACTIONS(2487), - [aux_sym_preproc_if_token2] = ACTIONS(2487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2487), - [sym_preproc_directive] = ACTIONS(2487), - [anon_sym_LPAREN2] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_AMP_AMP] = ACTIONS(2489), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2489), - [anon_sym_typedef] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym___attribute__] = ACTIONS(2487), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), - [anon_sym___declspec] = ACTIONS(2487), - [anon_sym___based] = ACTIONS(2487), - [anon_sym___cdecl] = ACTIONS(2487), - [anon_sym___clrcall] = ACTIONS(2487), - [anon_sym___stdcall] = ACTIONS(2487), - [anon_sym___fastcall] = ACTIONS(2487), - [anon_sym___thiscall] = ACTIONS(2487), - [anon_sym___vectorcall] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_register] = ACTIONS(2487), - [anon_sym_inline] = ACTIONS(2487), - [anon_sym_thread_local] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_volatile] = ACTIONS(2487), - [anon_sym_restrict] = ACTIONS(2487), - [anon_sym__Atomic] = ACTIONS(2487), - [anon_sym_mutable] = ACTIONS(2487), - [anon_sym_constexpr] = ACTIONS(2487), - [anon_sym_constinit] = ACTIONS(2487), - [anon_sym_consteval] = ACTIONS(2487), - [anon_sym_signed] = ACTIONS(2487), - [anon_sym_unsigned] = ACTIONS(2487), - [anon_sym_long] = ACTIONS(2487), - [anon_sym_short] = ACTIONS(2487), - [sym_primitive_type] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(2487), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_switch] = ACTIONS(2487), - [anon_sym_case] = ACTIONS(2487), - [anon_sym_default] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_goto] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2489), - [anon_sym_PLUS_PLUS] = ACTIONS(2489), - [anon_sym_sizeof] = ACTIONS(2487), - [sym_number_literal] = ACTIONS(2489), - [anon_sym_L_SQUOTE] = ACTIONS(2489), - [anon_sym_u_SQUOTE] = ACTIONS(2489), - [anon_sym_U_SQUOTE] = ACTIONS(2489), - [anon_sym_u8_SQUOTE] = ACTIONS(2489), - [anon_sym_SQUOTE] = ACTIONS(2489), - [anon_sym_L_DQUOTE] = ACTIONS(2489), - [anon_sym_u_DQUOTE] = ACTIONS(2489), - [anon_sym_U_DQUOTE] = ACTIONS(2489), - [anon_sym_u8_DQUOTE] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_null] = ACTIONS(2487), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2487), - [anon_sym_decltype] = ACTIONS(2487), - [anon_sym_virtual] = ACTIONS(2487), - [anon_sym_explicit] = ACTIONS(2487), - [anon_sym_typename] = ACTIONS(2487), - [anon_sym_template] = ACTIONS(2487), - [anon_sym_operator] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_delete] = ACTIONS(2487), - [anon_sym_throw] = ACTIONS(2487), - [anon_sym_namespace] = ACTIONS(2487), - [anon_sym_using] = ACTIONS(2487), - [anon_sym_static_assert] = ACTIONS(2487), - [anon_sym_concept] = ACTIONS(2487), - [anon_sym_co_return] = ACTIONS(2487), - [anon_sym_co_yield] = ACTIONS(2487), - [anon_sym_R_DQUOTE] = ACTIONS(2489), - [anon_sym_LR_DQUOTE] = ACTIONS(2489), - [anon_sym_uR_DQUOTE] = ACTIONS(2489), - [anon_sym_UR_DQUOTE] = ACTIONS(2489), - [anon_sym_u8R_DQUOTE] = ACTIONS(2489), - [anon_sym_co_await] = ACTIONS(2487), - [anon_sym_new] = ACTIONS(2487), - [anon_sym_requires] = ACTIONS(2487), - [sym_this] = ACTIONS(2487), - [sym_nullptr] = ACTIONS(2487), - }, - [790] = { - [sym_identifier] = ACTIONS(2595), - [aux_sym_preproc_include_token1] = ACTIONS(2595), - [aux_sym_preproc_def_token1] = ACTIONS(2595), - [aux_sym_preproc_if_token1] = ACTIONS(2595), - [aux_sym_preproc_if_token2] = ACTIONS(2595), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), - [sym_preproc_directive] = ACTIONS(2595), - [anon_sym_LPAREN2] = ACTIONS(2597), - [anon_sym_BANG] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2595), - [anon_sym_PLUS] = ACTIONS(2595), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_AMP_AMP] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2597), - [anon_sym_typedef] = ACTIONS(2595), - [anon_sym_extern] = ACTIONS(2595), - [anon_sym___attribute__] = ACTIONS(2595), - [anon_sym_COLON_COLON] = ACTIONS(2597), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), - [anon_sym___declspec] = ACTIONS(2595), - [anon_sym___based] = ACTIONS(2595), - [anon_sym___cdecl] = ACTIONS(2595), - [anon_sym___clrcall] = ACTIONS(2595), - [anon_sym___stdcall] = ACTIONS(2595), - [anon_sym___fastcall] = ACTIONS(2595), - [anon_sym___thiscall] = ACTIONS(2595), - [anon_sym___vectorcall] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_static] = ACTIONS(2595), - [anon_sym_register] = ACTIONS(2595), - [anon_sym_inline] = ACTIONS(2595), - [anon_sym_thread_local] = ACTIONS(2595), - [anon_sym_const] = ACTIONS(2595), - [anon_sym_volatile] = ACTIONS(2595), - [anon_sym_restrict] = ACTIONS(2595), - [anon_sym__Atomic] = ACTIONS(2595), - [anon_sym_mutable] = ACTIONS(2595), - [anon_sym_constexpr] = ACTIONS(2595), - [anon_sym_constinit] = ACTIONS(2595), - [anon_sym_consteval] = ACTIONS(2595), - [anon_sym_signed] = ACTIONS(2595), - [anon_sym_unsigned] = ACTIONS(2595), - [anon_sym_long] = ACTIONS(2595), - [anon_sym_short] = ACTIONS(2595), - [sym_primitive_type] = ACTIONS(2595), - [anon_sym_enum] = ACTIONS(2595), - [anon_sym_class] = ACTIONS(2595), - [anon_sym_struct] = ACTIONS(2595), - [anon_sym_union] = ACTIONS(2595), - [anon_sym_if] = ACTIONS(2595), - [anon_sym_else] = ACTIONS(2595), - [anon_sym_switch] = ACTIONS(2595), - [anon_sym_case] = ACTIONS(2595), - [anon_sym_default] = ACTIONS(2595), - [anon_sym_while] = ACTIONS(2595), - [anon_sym_do] = ACTIONS(2595), - [anon_sym_for] = ACTIONS(2595), - [anon_sym_return] = ACTIONS(2595), - [anon_sym_break] = ACTIONS(2595), - [anon_sym_continue] = ACTIONS(2595), - [anon_sym_goto] = ACTIONS(2595), - [anon_sym_not] = ACTIONS(2595), - [anon_sym_compl] = ACTIONS(2595), - [anon_sym_DASH_DASH] = ACTIONS(2597), - [anon_sym_PLUS_PLUS] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2595), - [sym_number_literal] = ACTIONS(2597), - [anon_sym_L_SQUOTE] = ACTIONS(2597), - [anon_sym_u_SQUOTE] = ACTIONS(2597), - [anon_sym_U_SQUOTE] = ACTIONS(2597), - [anon_sym_u8_SQUOTE] = ACTIONS(2597), - [anon_sym_SQUOTE] = ACTIONS(2597), - [anon_sym_L_DQUOTE] = ACTIONS(2597), - [anon_sym_u_DQUOTE] = ACTIONS(2597), - [anon_sym_U_DQUOTE] = ACTIONS(2597), - [anon_sym_u8_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [sym_true] = ACTIONS(2595), - [sym_false] = ACTIONS(2595), - [sym_null] = ACTIONS(2595), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2595), - [anon_sym_decltype] = ACTIONS(2595), - [anon_sym_virtual] = ACTIONS(2595), - [anon_sym_explicit] = ACTIONS(2595), - [anon_sym_typename] = ACTIONS(2595), - [anon_sym_template] = ACTIONS(2595), - [anon_sym_operator] = ACTIONS(2595), - [anon_sym_try] = ACTIONS(2595), - [anon_sym_delete] = ACTIONS(2595), - [anon_sym_throw] = ACTIONS(2595), - [anon_sym_namespace] = ACTIONS(2595), - [anon_sym_using] = ACTIONS(2595), - [anon_sym_static_assert] = ACTIONS(2595), - [anon_sym_concept] = ACTIONS(2595), - [anon_sym_co_return] = ACTIONS(2595), - [anon_sym_co_yield] = ACTIONS(2595), - [anon_sym_R_DQUOTE] = ACTIONS(2597), - [anon_sym_LR_DQUOTE] = ACTIONS(2597), - [anon_sym_uR_DQUOTE] = ACTIONS(2597), - [anon_sym_UR_DQUOTE] = ACTIONS(2597), - [anon_sym_u8R_DQUOTE] = ACTIONS(2597), - [anon_sym_co_await] = ACTIONS(2595), - [anon_sym_new] = ACTIONS(2595), - [anon_sym_requires] = ACTIONS(2595), - [sym_this] = ACTIONS(2595), - [sym_nullptr] = ACTIONS(2595), - }, - [791] = { - [ts_builtin_sym_end] = ACTIONS(2501), - [sym_identifier] = ACTIONS(2499), - [aux_sym_preproc_include_token1] = ACTIONS(2499), - [aux_sym_preproc_def_token1] = ACTIONS(2499), - [aux_sym_preproc_if_token1] = ACTIONS(2499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), - [sym_preproc_directive] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2499), - [anon_sym_PLUS] = ACTIONS(2499), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_AMP_AMP] = ACTIONS(2501), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_typedef] = ACTIONS(2499), - [anon_sym_extern] = ACTIONS(2499), - [anon_sym___attribute__] = ACTIONS(2499), - [anon_sym_COLON_COLON] = ACTIONS(2501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), - [anon_sym___declspec] = ACTIONS(2499), - [anon_sym___based] = ACTIONS(2499), - [anon_sym___cdecl] = ACTIONS(2499), - [anon_sym___clrcall] = ACTIONS(2499), - [anon_sym___stdcall] = ACTIONS(2499), - [anon_sym___fastcall] = ACTIONS(2499), - [anon_sym___thiscall] = ACTIONS(2499), - [anon_sym___vectorcall] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2499), - [anon_sym_register] = ACTIONS(2499), - [anon_sym_inline] = ACTIONS(2499), - [anon_sym_thread_local] = ACTIONS(2499), - [anon_sym_const] = ACTIONS(2499), - [anon_sym_volatile] = ACTIONS(2499), - [anon_sym_restrict] = ACTIONS(2499), - [anon_sym__Atomic] = ACTIONS(2499), - [anon_sym_mutable] = ACTIONS(2499), - [anon_sym_constexpr] = ACTIONS(2499), - [anon_sym_constinit] = ACTIONS(2499), - [anon_sym_consteval] = ACTIONS(2499), - [anon_sym_signed] = ACTIONS(2499), - [anon_sym_unsigned] = ACTIONS(2499), - [anon_sym_long] = ACTIONS(2499), - [anon_sym_short] = ACTIONS(2499), - [sym_primitive_type] = ACTIONS(2499), - [anon_sym_enum] = ACTIONS(2499), - [anon_sym_class] = ACTIONS(2499), - [anon_sym_struct] = ACTIONS(2499), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2499), - [anon_sym_else] = ACTIONS(2499), - [anon_sym_switch] = ACTIONS(2499), - [anon_sym_case] = ACTIONS(2499), - [anon_sym_default] = ACTIONS(2499), - [anon_sym_while] = ACTIONS(2499), - [anon_sym_do] = ACTIONS(2499), - [anon_sym_for] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2499), - [anon_sym_break] = ACTIONS(2499), - [anon_sym_continue] = ACTIONS(2499), - [anon_sym_goto] = ACTIONS(2499), - [anon_sym_not] = ACTIONS(2499), - [anon_sym_compl] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2501), - [anon_sym_sizeof] = ACTIONS(2499), - [sym_number_literal] = ACTIONS(2501), - [anon_sym_L_SQUOTE] = ACTIONS(2501), - [anon_sym_u_SQUOTE] = ACTIONS(2501), - [anon_sym_U_SQUOTE] = ACTIONS(2501), - [anon_sym_u8_SQUOTE] = ACTIONS(2501), - [anon_sym_SQUOTE] = ACTIONS(2501), - [anon_sym_L_DQUOTE] = ACTIONS(2501), - [anon_sym_u_DQUOTE] = ACTIONS(2501), - [anon_sym_U_DQUOTE] = ACTIONS(2501), - [anon_sym_u8_DQUOTE] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym_true] = ACTIONS(2499), - [sym_false] = ACTIONS(2499), - [sym_null] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2499), - [anon_sym_decltype] = ACTIONS(2499), - [anon_sym_virtual] = ACTIONS(2499), - [anon_sym_explicit] = ACTIONS(2499), - [anon_sym_typename] = ACTIONS(2499), - [anon_sym_template] = ACTIONS(2499), - [anon_sym_operator] = ACTIONS(2499), - [anon_sym_try] = ACTIONS(2499), - [anon_sym_delete] = ACTIONS(2499), - [anon_sym_throw] = ACTIONS(2499), - [anon_sym_namespace] = ACTIONS(2499), - [anon_sym_using] = ACTIONS(2499), - [anon_sym_static_assert] = ACTIONS(2499), - [anon_sym_concept] = ACTIONS(2499), - [anon_sym_co_return] = ACTIONS(2499), - [anon_sym_co_yield] = ACTIONS(2499), - [anon_sym_R_DQUOTE] = ACTIONS(2501), - [anon_sym_LR_DQUOTE] = ACTIONS(2501), - [anon_sym_uR_DQUOTE] = ACTIONS(2501), - [anon_sym_UR_DQUOTE] = ACTIONS(2501), - [anon_sym_u8R_DQUOTE] = ACTIONS(2501), - [anon_sym_co_await] = ACTIONS(2499), - [anon_sym_new] = ACTIONS(2499), - [anon_sym_requires] = ACTIONS(2499), - [sym_this] = ACTIONS(2499), - [sym_nullptr] = ACTIONS(2499), - }, - [792] = { - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2503), - [aux_sym_preproc_include_token1] = ACTIONS(2503), - [aux_sym_preproc_def_token1] = ACTIONS(2503), - [aux_sym_preproc_if_token1] = ACTIONS(2503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), - [sym_preproc_directive] = ACTIONS(2503), - [anon_sym_LPAREN2] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_AMP_AMP] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_typedef] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2503), - [anon_sym___attribute__] = ACTIONS(2503), - [anon_sym_COLON_COLON] = ACTIONS(2505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), - [anon_sym___declspec] = ACTIONS(2503), - [anon_sym___based] = ACTIONS(2503), - [anon_sym___cdecl] = ACTIONS(2503), - [anon_sym___clrcall] = ACTIONS(2503), - [anon_sym___stdcall] = ACTIONS(2503), - [anon_sym___fastcall] = ACTIONS(2503), - [anon_sym___thiscall] = ACTIONS(2503), - [anon_sym___vectorcall] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2503), - [anon_sym_register] = ACTIONS(2503), - [anon_sym_inline] = ACTIONS(2503), - [anon_sym_thread_local] = ACTIONS(2503), - [anon_sym_const] = ACTIONS(2503), - [anon_sym_volatile] = ACTIONS(2503), - [anon_sym_restrict] = ACTIONS(2503), - [anon_sym__Atomic] = ACTIONS(2503), - [anon_sym_mutable] = ACTIONS(2503), - [anon_sym_constexpr] = ACTIONS(2503), - [anon_sym_constinit] = ACTIONS(2503), - [anon_sym_consteval] = ACTIONS(2503), - [anon_sym_signed] = ACTIONS(2503), - [anon_sym_unsigned] = ACTIONS(2503), - [anon_sym_long] = ACTIONS(2503), - [anon_sym_short] = ACTIONS(2503), - [sym_primitive_type] = ACTIONS(2503), - [anon_sym_enum] = ACTIONS(2503), - [anon_sym_class] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2503), - [anon_sym_union] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2503), - [anon_sym_else] = ACTIONS(2503), - [anon_sym_switch] = ACTIONS(2503), - [anon_sym_case] = ACTIONS(2503), - [anon_sym_default] = ACTIONS(2503), - [anon_sym_while] = ACTIONS(2503), - [anon_sym_do] = ACTIONS(2503), - [anon_sym_for] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2503), - [anon_sym_break] = ACTIONS(2503), - [anon_sym_continue] = ACTIONS(2503), - [anon_sym_goto] = ACTIONS(2503), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_sizeof] = ACTIONS(2503), - [sym_number_literal] = ACTIONS(2505), - [anon_sym_L_SQUOTE] = ACTIONS(2505), - [anon_sym_u_SQUOTE] = ACTIONS(2505), - [anon_sym_U_SQUOTE] = ACTIONS(2505), - [anon_sym_u8_SQUOTE] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2505), - [anon_sym_L_DQUOTE] = ACTIONS(2505), - [anon_sym_u_DQUOTE] = ACTIONS(2505), - [anon_sym_U_DQUOTE] = ACTIONS(2505), - [anon_sym_u8_DQUOTE] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [sym_true] = ACTIONS(2503), - [sym_false] = ACTIONS(2503), - [sym_null] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2503), - [anon_sym_decltype] = ACTIONS(2503), - [anon_sym_virtual] = ACTIONS(2503), - [anon_sym_explicit] = ACTIONS(2503), - [anon_sym_typename] = ACTIONS(2503), - [anon_sym_template] = ACTIONS(2503), - [anon_sym_operator] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2503), - [anon_sym_delete] = ACTIONS(2503), - [anon_sym_throw] = ACTIONS(2503), - [anon_sym_namespace] = ACTIONS(2503), - [anon_sym_using] = ACTIONS(2503), - [anon_sym_static_assert] = ACTIONS(2503), - [anon_sym_concept] = ACTIONS(2503), - [anon_sym_co_return] = ACTIONS(2503), - [anon_sym_co_yield] = ACTIONS(2503), - [anon_sym_R_DQUOTE] = ACTIONS(2505), - [anon_sym_LR_DQUOTE] = ACTIONS(2505), - [anon_sym_uR_DQUOTE] = ACTIONS(2505), - [anon_sym_UR_DQUOTE] = ACTIONS(2505), - [anon_sym_u8R_DQUOTE] = ACTIONS(2505), - [anon_sym_co_await] = ACTIONS(2503), - [anon_sym_new] = ACTIONS(2503), - [anon_sym_requires] = ACTIONS(2503), - [sym_this] = ACTIONS(2503), - [sym_nullptr] = ACTIONS(2503), - }, - [793] = { - [sym_identifier] = ACTIONS(2483), - [aux_sym_preproc_include_token1] = ACTIONS(2483), - [aux_sym_preproc_def_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token2] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), - [sym_preproc_directive] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym___based] = ACTIONS(2483), - [anon_sym___cdecl] = ACTIONS(2483), - [anon_sym___clrcall] = ACTIONS(2483), - [anon_sym___stdcall] = ACTIONS(2483), - [anon_sym___fastcall] = ACTIONS(2483), - [anon_sym___thiscall] = ACTIONS(2483), - [anon_sym___vectorcall] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym_not] = ACTIONS(2483), - [anon_sym_compl] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_sizeof] = ACTIONS(2483), - [sym_number_literal] = ACTIONS(2485), - [anon_sym_L_SQUOTE] = ACTIONS(2485), - [anon_sym_u_SQUOTE] = ACTIONS(2485), - [anon_sym_U_SQUOTE] = ACTIONS(2485), - [anon_sym_u8_SQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_L_DQUOTE] = ACTIONS(2485), - [anon_sym_u_DQUOTE] = ACTIONS(2485), - [anon_sym_U_DQUOTE] = ACTIONS(2485), - [anon_sym_u8_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [sym_null] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_explicit] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_operator] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_static_assert] = ACTIONS(2483), - [anon_sym_concept] = ACTIONS(2483), - [anon_sym_co_return] = ACTIONS(2483), - [anon_sym_co_yield] = ACTIONS(2483), - [anon_sym_R_DQUOTE] = ACTIONS(2485), - [anon_sym_LR_DQUOTE] = ACTIONS(2485), - [anon_sym_uR_DQUOTE] = ACTIONS(2485), - [anon_sym_UR_DQUOTE] = ACTIONS(2485), - [anon_sym_u8R_DQUOTE] = ACTIONS(2485), - [anon_sym_co_await] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_requires] = ACTIONS(2483), - [sym_this] = ACTIONS(2483), - [sym_nullptr] = ACTIONS(2483), - }, - [794] = { - [sym_identifier] = ACTIONS(2479), - [aux_sym_preproc_include_token1] = ACTIONS(2479), - [aux_sym_preproc_def_token1] = ACTIONS(2479), - [aux_sym_preproc_if_token1] = ACTIONS(2479), - [aux_sym_preproc_if_token2] = ACTIONS(2479), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2479), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2479), - [sym_preproc_directive] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_typedef] = ACTIONS(2479), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym___attribute__] = ACTIONS(2479), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), - [anon_sym___declspec] = ACTIONS(2479), - [anon_sym___based] = ACTIONS(2479), - [anon_sym___cdecl] = ACTIONS(2479), - [anon_sym___clrcall] = ACTIONS(2479), - [anon_sym___stdcall] = ACTIONS(2479), - [anon_sym___fastcall] = ACTIONS(2479), - [anon_sym___thiscall] = ACTIONS(2479), - [anon_sym___vectorcall] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_register] = ACTIONS(2479), - [anon_sym_inline] = ACTIONS(2479), - [anon_sym_thread_local] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_volatile] = ACTIONS(2479), - [anon_sym_restrict] = ACTIONS(2479), - [anon_sym__Atomic] = ACTIONS(2479), - [anon_sym_mutable] = ACTIONS(2479), - [anon_sym_constexpr] = ACTIONS(2479), - [anon_sym_constinit] = ACTIONS(2479), - [anon_sym_consteval] = ACTIONS(2479), - [anon_sym_signed] = ACTIONS(2479), - [anon_sym_unsigned] = ACTIONS(2479), - [anon_sym_long] = ACTIONS(2479), - [anon_sym_short] = ACTIONS(2479), - [sym_primitive_type] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_class] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2479), - [anon_sym_union] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_switch] = ACTIONS(2479), - [anon_sym_case] = ACTIONS(2479), - [anon_sym_default] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_goto] = ACTIONS(2479), - [anon_sym_not] = ACTIONS(2479), - [anon_sym_compl] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_sizeof] = ACTIONS(2479), - [sym_number_literal] = ACTIONS(2481), - [anon_sym_L_SQUOTE] = ACTIONS(2481), - [anon_sym_u_SQUOTE] = ACTIONS(2481), - [anon_sym_U_SQUOTE] = ACTIONS(2481), - [anon_sym_u8_SQUOTE] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_L_DQUOTE] = ACTIONS(2481), - [anon_sym_u_DQUOTE] = ACTIONS(2481), - [anon_sym_U_DQUOTE] = ACTIONS(2481), - [anon_sym_u8_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(2481), - [sym_true] = ACTIONS(2479), - [sym_false] = ACTIONS(2479), - [sym_null] = ACTIONS(2479), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2479), - [anon_sym_decltype] = ACTIONS(2479), - [anon_sym_virtual] = ACTIONS(2479), - [anon_sym_explicit] = ACTIONS(2479), - [anon_sym_typename] = ACTIONS(2479), - [anon_sym_template] = ACTIONS(2479), - [anon_sym_operator] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_delete] = ACTIONS(2479), - [anon_sym_throw] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2479), - [anon_sym_using] = ACTIONS(2479), - [anon_sym_static_assert] = ACTIONS(2479), - [anon_sym_concept] = ACTIONS(2479), - [anon_sym_co_return] = ACTIONS(2479), - [anon_sym_co_yield] = ACTIONS(2479), - [anon_sym_R_DQUOTE] = ACTIONS(2481), - [anon_sym_LR_DQUOTE] = ACTIONS(2481), - [anon_sym_uR_DQUOTE] = ACTIONS(2481), - [anon_sym_UR_DQUOTE] = ACTIONS(2481), - [anon_sym_u8R_DQUOTE] = ACTIONS(2481), - [anon_sym_co_await] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_requires] = ACTIONS(2479), - [sym_this] = ACTIONS(2479), - [sym_nullptr] = ACTIONS(2479), - }, - [795] = { - [sym_identifier] = ACTIONS(2337), - [aux_sym_preproc_include_token1] = ACTIONS(2337), - [aux_sym_preproc_def_token1] = ACTIONS(2337), - [anon_sym_COMMA] = ACTIONS(2547), - [aux_sym_preproc_if_token1] = ACTIONS(2337), - [aux_sym_preproc_if_token2] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), - [sym_preproc_directive] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2335), - [anon_sym_AMP_AMP] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_typedef] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym___attribute__] = ACTIONS(2337), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), - [anon_sym___declspec] = ACTIONS(2337), - [anon_sym___based] = ACTIONS(2337), - [anon_sym___cdecl] = ACTIONS(2337), - [anon_sym___clrcall] = ACTIONS(2337), - [anon_sym___stdcall] = ACTIONS(2337), - [anon_sym___fastcall] = ACTIONS(2337), - [anon_sym___thiscall] = ACTIONS(2337), - [anon_sym___vectorcall] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_inline] = ACTIONS(2337), - [anon_sym_thread_local] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_volatile] = ACTIONS(2337), - [anon_sym_restrict] = ACTIONS(2337), - [anon_sym__Atomic] = ACTIONS(2337), - [anon_sym_mutable] = ACTIONS(2337), - [anon_sym_constexpr] = ACTIONS(2337), - [anon_sym_constinit] = ACTIONS(2337), - [anon_sym_consteval] = ACTIONS(2337), - [anon_sym_signed] = ACTIONS(2337), - [anon_sym_unsigned] = ACTIONS(2337), - [anon_sym_long] = ACTIONS(2337), - [anon_sym_short] = ACTIONS(2337), - [sym_primitive_type] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2337), - [anon_sym_union] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_case] = ACTIONS(2337), - [anon_sym_default] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_goto] = ACTIONS(2337), - [anon_sym_not] = ACTIONS(2337), - [anon_sym_compl] = ACTIONS(2337), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_sizeof] = ACTIONS(2337), - [sym_number_literal] = ACTIONS(2335), - [anon_sym_L_SQUOTE] = ACTIONS(2335), - [anon_sym_u_SQUOTE] = ACTIONS(2335), - [anon_sym_U_SQUOTE] = ACTIONS(2335), - [anon_sym_u8_SQUOTE] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_L_DQUOTE] = ACTIONS(2335), - [anon_sym_u_DQUOTE] = ACTIONS(2335), - [anon_sym_U_DQUOTE] = ACTIONS(2335), - [anon_sym_u8_DQUOTE] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_true] = ACTIONS(2337), - [sym_false] = ACTIONS(2337), - [sym_null] = ACTIONS(2337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2337), - [anon_sym_decltype] = ACTIONS(2337), - [anon_sym_virtual] = ACTIONS(2337), - [anon_sym_explicit] = ACTIONS(2337), - [anon_sym_typename] = ACTIONS(2337), - [anon_sym_template] = ACTIONS(2337), - [anon_sym_operator] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_delete] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_using] = ACTIONS(2337), - [anon_sym_static_assert] = ACTIONS(2337), - [anon_sym_concept] = ACTIONS(2337), - [anon_sym_co_return] = ACTIONS(2337), - [anon_sym_co_yield] = ACTIONS(2337), - [anon_sym_R_DQUOTE] = ACTIONS(2335), - [anon_sym_LR_DQUOTE] = ACTIONS(2335), - [anon_sym_uR_DQUOTE] = ACTIONS(2335), - [anon_sym_UR_DQUOTE] = ACTIONS(2335), - [anon_sym_u8R_DQUOTE] = ACTIONS(2335), - [anon_sym_co_await] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_requires] = ACTIONS(2337), - [sym_this] = ACTIONS(2337), - [sym_nullptr] = ACTIONS(2337), - }, - [796] = { - [sym_identifier] = ACTIONS(2475), - [aux_sym_preproc_include_token1] = ACTIONS(2475), - [aux_sym_preproc_def_token1] = ACTIONS(2475), - [aux_sym_preproc_if_token1] = ACTIONS(2475), - [aux_sym_preproc_if_token2] = ACTIONS(2475), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2475), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2475), - [sym_preproc_directive] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_typedef] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2475), - [anon_sym___attribute__] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), - [anon_sym___declspec] = ACTIONS(2475), - [anon_sym___based] = ACTIONS(2475), - [anon_sym___cdecl] = ACTIONS(2475), - [anon_sym___clrcall] = ACTIONS(2475), - [anon_sym___stdcall] = ACTIONS(2475), - [anon_sym___fastcall] = ACTIONS(2475), - [anon_sym___thiscall] = ACTIONS(2475), - [anon_sym___vectorcall] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2475), - [anon_sym_register] = ACTIONS(2475), - [anon_sym_inline] = ACTIONS(2475), - [anon_sym_thread_local] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_volatile] = ACTIONS(2475), - [anon_sym_restrict] = ACTIONS(2475), - [anon_sym__Atomic] = ACTIONS(2475), - [anon_sym_mutable] = ACTIONS(2475), - [anon_sym_constexpr] = ACTIONS(2475), - [anon_sym_constinit] = ACTIONS(2475), - [anon_sym_consteval] = ACTIONS(2475), - [anon_sym_signed] = ACTIONS(2475), - [anon_sym_unsigned] = ACTIONS(2475), - [anon_sym_long] = ACTIONS(2475), - [anon_sym_short] = ACTIONS(2475), - [sym_primitive_type] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_class] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_switch] = ACTIONS(2475), - [anon_sym_case] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_not] = ACTIONS(2475), - [anon_sym_compl] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_sizeof] = ACTIONS(2475), - [sym_number_literal] = ACTIONS(2477), - [anon_sym_L_SQUOTE] = ACTIONS(2477), - [anon_sym_u_SQUOTE] = ACTIONS(2477), - [anon_sym_U_SQUOTE] = ACTIONS(2477), - [anon_sym_u8_SQUOTE] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2477), - [anon_sym_L_DQUOTE] = ACTIONS(2477), - [anon_sym_u_DQUOTE] = ACTIONS(2477), - [anon_sym_U_DQUOTE] = ACTIONS(2477), - [anon_sym_u8_DQUOTE] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_null] = ACTIONS(2475), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2475), - [anon_sym_decltype] = ACTIONS(2475), - [anon_sym_virtual] = ACTIONS(2475), - [anon_sym_explicit] = ACTIONS(2475), - [anon_sym_typename] = ACTIONS(2475), - [anon_sym_template] = ACTIONS(2475), - [anon_sym_operator] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_delete] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2475), - [anon_sym_namespace] = ACTIONS(2475), - [anon_sym_using] = ACTIONS(2475), - [anon_sym_static_assert] = ACTIONS(2475), - [anon_sym_concept] = ACTIONS(2475), - [anon_sym_co_return] = ACTIONS(2475), - [anon_sym_co_yield] = ACTIONS(2475), - [anon_sym_R_DQUOTE] = ACTIONS(2477), - [anon_sym_LR_DQUOTE] = ACTIONS(2477), - [anon_sym_uR_DQUOTE] = ACTIONS(2477), - [anon_sym_UR_DQUOTE] = ACTIONS(2477), - [anon_sym_u8R_DQUOTE] = ACTIONS(2477), - [anon_sym_co_await] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2475), - [anon_sym_requires] = ACTIONS(2475), - [sym_this] = ACTIONS(2475), - [sym_nullptr] = ACTIONS(2475), - }, - [797] = { - [sym_identifier] = ACTIONS(2591), - [aux_sym_preproc_include_token1] = ACTIONS(2591), - [aux_sym_preproc_def_token1] = ACTIONS(2591), - [aux_sym_preproc_if_token1] = ACTIONS(2591), - [aux_sym_preproc_if_token2] = ACTIONS(2591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2591), - [sym_preproc_directive] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2593), - [anon_sym_TILDE] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_AMP_AMP] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_typedef] = ACTIONS(2591), - [anon_sym_extern] = ACTIONS(2591), - [anon_sym___attribute__] = ACTIONS(2591), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), - [anon_sym___declspec] = ACTIONS(2591), - [anon_sym___based] = ACTIONS(2591), - [anon_sym___cdecl] = ACTIONS(2591), - [anon_sym___clrcall] = ACTIONS(2591), - [anon_sym___stdcall] = ACTIONS(2591), - [anon_sym___fastcall] = ACTIONS(2591), - [anon_sym___thiscall] = ACTIONS(2591), - [anon_sym___vectorcall] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_static] = ACTIONS(2591), - [anon_sym_register] = ACTIONS(2591), - [anon_sym_inline] = ACTIONS(2591), - [anon_sym_thread_local] = ACTIONS(2591), - [anon_sym_const] = ACTIONS(2591), - [anon_sym_volatile] = ACTIONS(2591), - [anon_sym_restrict] = ACTIONS(2591), - [anon_sym__Atomic] = ACTIONS(2591), - [anon_sym_mutable] = ACTIONS(2591), - [anon_sym_constexpr] = ACTIONS(2591), - [anon_sym_constinit] = ACTIONS(2591), - [anon_sym_consteval] = ACTIONS(2591), - [anon_sym_signed] = ACTIONS(2591), - [anon_sym_unsigned] = ACTIONS(2591), - [anon_sym_long] = ACTIONS(2591), - [anon_sym_short] = ACTIONS(2591), - [sym_primitive_type] = ACTIONS(2591), - [anon_sym_enum] = ACTIONS(2591), - [anon_sym_class] = ACTIONS(2591), - [anon_sym_struct] = ACTIONS(2591), - [anon_sym_union] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_else] = ACTIONS(2591), - [anon_sym_switch] = ACTIONS(2591), - [anon_sym_case] = ACTIONS(2591), - [anon_sym_default] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_break] = ACTIONS(2591), - [anon_sym_continue] = ACTIONS(2591), - [anon_sym_goto] = ACTIONS(2591), - [anon_sym_not] = ACTIONS(2591), - [anon_sym_compl] = ACTIONS(2591), - [anon_sym_DASH_DASH] = ACTIONS(2593), - [anon_sym_PLUS_PLUS] = ACTIONS(2593), - [anon_sym_sizeof] = ACTIONS(2591), - [sym_number_literal] = ACTIONS(2593), - [anon_sym_L_SQUOTE] = ACTIONS(2593), - [anon_sym_u_SQUOTE] = ACTIONS(2593), - [anon_sym_U_SQUOTE] = ACTIONS(2593), - [anon_sym_u8_SQUOTE] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_L_DQUOTE] = ACTIONS(2593), - [anon_sym_u_DQUOTE] = ACTIONS(2593), - [anon_sym_U_DQUOTE] = ACTIONS(2593), - [anon_sym_u8_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE] = ACTIONS(2593), - [sym_true] = ACTIONS(2591), - [sym_false] = ACTIONS(2591), - [sym_null] = ACTIONS(2591), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2591), - [anon_sym_decltype] = ACTIONS(2591), - [anon_sym_virtual] = ACTIONS(2591), - [anon_sym_explicit] = ACTIONS(2591), - [anon_sym_typename] = ACTIONS(2591), - [anon_sym_template] = ACTIONS(2591), - [anon_sym_operator] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_delete] = ACTIONS(2591), - [anon_sym_throw] = ACTIONS(2591), - [anon_sym_namespace] = ACTIONS(2591), - [anon_sym_using] = ACTIONS(2591), - [anon_sym_static_assert] = ACTIONS(2591), - [anon_sym_concept] = ACTIONS(2591), - [anon_sym_co_return] = ACTIONS(2591), - [anon_sym_co_yield] = ACTIONS(2591), - [anon_sym_R_DQUOTE] = ACTIONS(2593), - [anon_sym_LR_DQUOTE] = ACTIONS(2593), - [anon_sym_uR_DQUOTE] = ACTIONS(2593), - [anon_sym_UR_DQUOTE] = ACTIONS(2593), - [anon_sym_u8R_DQUOTE] = ACTIONS(2593), - [anon_sym_co_await] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_requires] = ACTIONS(2591), - [sym_this] = ACTIONS(2591), - [sym_nullptr] = ACTIONS(2591), - }, - [798] = { - [sym_identifier] = ACTIONS(2469), - [aux_sym_preproc_include_token1] = ACTIONS(2469), - [aux_sym_preproc_def_token1] = ACTIONS(2469), - [aux_sym_preproc_if_token1] = ACTIONS(2469), - [aux_sym_preproc_if_token2] = ACTIONS(2469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2469), - [sym_preproc_directive] = ACTIONS(2469), - [anon_sym_LPAREN2] = ACTIONS(2471), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_PLUS] = ACTIONS(2469), - [anon_sym_STAR] = ACTIONS(2471), - [anon_sym_AMP_AMP] = ACTIONS(2471), - [anon_sym_AMP] = ACTIONS(2469), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_typedef] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(2469), - [anon_sym___attribute__] = ACTIONS(2469), - [anon_sym_COLON_COLON] = ACTIONS(2471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2471), - [anon_sym___declspec] = ACTIONS(2469), - [anon_sym___based] = ACTIONS(2469), - [anon_sym___cdecl] = ACTIONS(2469), - [anon_sym___clrcall] = ACTIONS(2469), - [anon_sym___stdcall] = ACTIONS(2469), - [anon_sym___fastcall] = ACTIONS(2469), - [anon_sym___thiscall] = ACTIONS(2469), - [anon_sym___vectorcall] = ACTIONS(2469), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_static] = ACTIONS(2469), - [anon_sym_register] = ACTIONS(2469), - [anon_sym_inline] = ACTIONS(2469), - [anon_sym_thread_local] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [anon_sym_volatile] = ACTIONS(2469), - [anon_sym_restrict] = ACTIONS(2469), - [anon_sym__Atomic] = ACTIONS(2469), - [anon_sym_mutable] = ACTIONS(2469), - [anon_sym_constexpr] = ACTIONS(2469), - [anon_sym_constinit] = ACTIONS(2469), - [anon_sym_consteval] = ACTIONS(2469), - [anon_sym_signed] = ACTIONS(2469), - [anon_sym_unsigned] = ACTIONS(2469), - [anon_sym_long] = ACTIONS(2469), - [anon_sym_short] = ACTIONS(2469), - [sym_primitive_type] = ACTIONS(2469), - [anon_sym_enum] = ACTIONS(2469), - [anon_sym_class] = ACTIONS(2469), - [anon_sym_struct] = ACTIONS(2469), - [anon_sym_union] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_switch] = ACTIONS(2469), - [anon_sym_case] = ACTIONS(2469), - [anon_sym_default] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_goto] = ACTIONS(2469), - [anon_sym_not] = ACTIONS(2469), - [anon_sym_compl] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2471), - [anon_sym_sizeof] = ACTIONS(2469), - [sym_number_literal] = ACTIONS(2471), - [anon_sym_L_SQUOTE] = ACTIONS(2471), - [anon_sym_u_SQUOTE] = ACTIONS(2471), - [anon_sym_U_SQUOTE] = ACTIONS(2471), - [anon_sym_u8_SQUOTE] = ACTIONS(2471), - [anon_sym_SQUOTE] = ACTIONS(2471), - [anon_sym_L_DQUOTE] = ACTIONS(2471), - [anon_sym_u_DQUOTE] = ACTIONS(2471), - [anon_sym_U_DQUOTE] = ACTIONS(2471), - [anon_sym_u8_DQUOTE] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(2471), - [sym_true] = ACTIONS(2469), - [sym_false] = ACTIONS(2469), - [sym_null] = ACTIONS(2469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2469), - [anon_sym_decltype] = ACTIONS(2469), - [anon_sym_virtual] = ACTIONS(2469), - [anon_sym_explicit] = ACTIONS(2469), - [anon_sym_typename] = ACTIONS(2469), - [anon_sym_template] = ACTIONS(2469), - [anon_sym_operator] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_delete] = ACTIONS(2469), - [anon_sym_throw] = ACTIONS(2469), - [anon_sym_namespace] = ACTIONS(2469), - [anon_sym_using] = ACTIONS(2469), - [anon_sym_static_assert] = ACTIONS(2469), - [anon_sym_concept] = ACTIONS(2469), - [anon_sym_co_return] = ACTIONS(2469), - [anon_sym_co_yield] = ACTIONS(2469), - [anon_sym_R_DQUOTE] = ACTIONS(2471), - [anon_sym_LR_DQUOTE] = ACTIONS(2471), - [anon_sym_uR_DQUOTE] = ACTIONS(2471), - [anon_sym_UR_DQUOTE] = ACTIONS(2471), - [anon_sym_u8R_DQUOTE] = ACTIONS(2471), - [anon_sym_co_await] = ACTIONS(2469), - [anon_sym_new] = ACTIONS(2469), - [anon_sym_requires] = ACTIONS(2469), - [sym_this] = ACTIONS(2469), - [sym_nullptr] = ACTIONS(2469), - }, - [799] = { - [ts_builtin_sym_end] = ACTIONS(2509), - [sym_identifier] = ACTIONS(2507), - [aux_sym_preproc_include_token1] = ACTIONS(2507), - [aux_sym_preproc_def_token1] = ACTIONS(2507), - [aux_sym_preproc_if_token1] = ACTIONS(2507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2507), - [sym_preproc_directive] = ACTIONS(2507), - [anon_sym_LPAREN2] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_AMP_AMP] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_typedef] = ACTIONS(2507), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym___attribute__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), - [anon_sym___declspec] = ACTIONS(2507), - [anon_sym___based] = ACTIONS(2507), - [anon_sym___cdecl] = ACTIONS(2507), - [anon_sym___clrcall] = ACTIONS(2507), - [anon_sym___stdcall] = ACTIONS(2507), - [anon_sym___fastcall] = ACTIONS(2507), - [anon_sym___thiscall] = ACTIONS(2507), - [anon_sym___vectorcall] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2507), - [anon_sym_register] = ACTIONS(2507), - [anon_sym_inline] = ACTIONS(2507), - [anon_sym_thread_local] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_volatile] = ACTIONS(2507), - [anon_sym_restrict] = ACTIONS(2507), - [anon_sym__Atomic] = ACTIONS(2507), - [anon_sym_mutable] = ACTIONS(2507), - [anon_sym_constexpr] = ACTIONS(2507), - [anon_sym_constinit] = ACTIONS(2507), - [anon_sym_consteval] = ACTIONS(2507), - [anon_sym_signed] = ACTIONS(2507), - [anon_sym_unsigned] = ACTIONS(2507), - [anon_sym_long] = ACTIONS(2507), - [anon_sym_short] = ACTIONS(2507), - [sym_primitive_type] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_class] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_else] = ACTIONS(2507), - [anon_sym_switch] = ACTIONS(2507), - [anon_sym_case] = ACTIONS(2507), - [anon_sym_default] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_do] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_not] = ACTIONS(2507), - [anon_sym_compl] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2509), - [anon_sym_sizeof] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2509), - [anon_sym_u_SQUOTE] = ACTIONS(2509), - [anon_sym_U_SQUOTE] = ACTIONS(2509), - [anon_sym_u8_SQUOTE] = ACTIONS(2509), - [anon_sym_SQUOTE] = ACTIONS(2509), - [anon_sym_L_DQUOTE] = ACTIONS(2509), - [anon_sym_u_DQUOTE] = ACTIONS(2509), - [anon_sym_U_DQUOTE] = ACTIONS(2509), - [anon_sym_u8_DQUOTE] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(2509), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_null] = ACTIONS(2507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2507), - [anon_sym_decltype] = ACTIONS(2507), - [anon_sym_virtual] = ACTIONS(2507), - [anon_sym_explicit] = ACTIONS(2507), - [anon_sym_typename] = ACTIONS(2507), - [anon_sym_template] = ACTIONS(2507), - [anon_sym_operator] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2507), - [anon_sym_delete] = ACTIONS(2507), - [anon_sym_throw] = ACTIONS(2507), - [anon_sym_namespace] = ACTIONS(2507), - [anon_sym_using] = ACTIONS(2507), - [anon_sym_static_assert] = ACTIONS(2507), - [anon_sym_concept] = ACTIONS(2507), - [anon_sym_co_return] = ACTIONS(2507), - [anon_sym_co_yield] = ACTIONS(2507), - [anon_sym_R_DQUOTE] = ACTIONS(2509), - [anon_sym_LR_DQUOTE] = ACTIONS(2509), - [anon_sym_uR_DQUOTE] = ACTIONS(2509), - [anon_sym_UR_DQUOTE] = ACTIONS(2509), - [anon_sym_u8R_DQUOTE] = ACTIONS(2509), - [anon_sym_co_await] = ACTIONS(2507), - [anon_sym_new] = ACTIONS(2507), - [anon_sym_requires] = ACTIONS(2507), - [sym_this] = ACTIONS(2507), - [sym_nullptr] = ACTIONS(2507), - }, - [800] = { - [sym_identifier] = ACTIONS(2465), - [aux_sym_preproc_include_token1] = ACTIONS(2465), - [aux_sym_preproc_def_token1] = ACTIONS(2465), - [aux_sym_preproc_if_token1] = ACTIONS(2465), - [aux_sym_preproc_if_token2] = ACTIONS(2465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2465), - [sym_preproc_directive] = ACTIONS(2465), - [anon_sym_LPAREN2] = ACTIONS(2467), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2467), - [anon_sym_AMP_AMP] = ACTIONS(2467), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_typedef] = ACTIONS(2465), - [anon_sym_extern] = ACTIONS(2465), - [anon_sym___attribute__] = ACTIONS(2465), - [anon_sym_COLON_COLON] = ACTIONS(2467), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2467), - [anon_sym___declspec] = ACTIONS(2465), - [anon_sym___based] = ACTIONS(2465), - [anon_sym___cdecl] = ACTIONS(2465), - [anon_sym___clrcall] = ACTIONS(2465), - [anon_sym___stdcall] = ACTIONS(2465), - [anon_sym___fastcall] = ACTIONS(2465), - [anon_sym___thiscall] = ACTIONS(2465), - [anon_sym___vectorcall] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_static] = ACTIONS(2465), - [anon_sym_register] = ACTIONS(2465), - [anon_sym_inline] = ACTIONS(2465), - [anon_sym_thread_local] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_volatile] = ACTIONS(2465), - [anon_sym_restrict] = ACTIONS(2465), - [anon_sym__Atomic] = ACTIONS(2465), - [anon_sym_mutable] = ACTIONS(2465), - [anon_sym_constexpr] = ACTIONS(2465), - [anon_sym_constinit] = ACTIONS(2465), - [anon_sym_consteval] = ACTIONS(2465), - [anon_sym_signed] = ACTIONS(2465), - [anon_sym_unsigned] = ACTIONS(2465), - [anon_sym_long] = ACTIONS(2465), - [anon_sym_short] = ACTIONS(2465), - [sym_primitive_type] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_class] = ACTIONS(2465), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_union] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_switch] = ACTIONS(2465), - [anon_sym_case] = ACTIONS(2465), - [anon_sym_default] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_not] = ACTIONS(2465), - [anon_sym_compl] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2467), - [anon_sym_PLUS_PLUS] = ACTIONS(2467), - [anon_sym_sizeof] = ACTIONS(2465), - [sym_number_literal] = ACTIONS(2467), - [anon_sym_L_SQUOTE] = ACTIONS(2467), - [anon_sym_u_SQUOTE] = ACTIONS(2467), - [anon_sym_U_SQUOTE] = ACTIONS(2467), - [anon_sym_u8_SQUOTE] = ACTIONS(2467), - [anon_sym_SQUOTE] = ACTIONS(2467), - [anon_sym_L_DQUOTE] = ACTIONS(2467), - [anon_sym_u_DQUOTE] = ACTIONS(2467), - [anon_sym_U_DQUOTE] = ACTIONS(2467), - [anon_sym_u8_DQUOTE] = ACTIONS(2467), - [anon_sym_DQUOTE] = ACTIONS(2467), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_null] = ACTIONS(2465), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2465), - [anon_sym_decltype] = ACTIONS(2465), - [anon_sym_virtual] = ACTIONS(2465), - [anon_sym_explicit] = ACTIONS(2465), - [anon_sym_typename] = ACTIONS(2465), - [anon_sym_template] = ACTIONS(2465), - [anon_sym_operator] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_delete] = ACTIONS(2465), - [anon_sym_throw] = ACTIONS(2465), - [anon_sym_namespace] = ACTIONS(2465), - [anon_sym_using] = ACTIONS(2465), - [anon_sym_static_assert] = ACTIONS(2465), - [anon_sym_concept] = ACTIONS(2465), - [anon_sym_co_return] = ACTIONS(2465), - [anon_sym_co_yield] = ACTIONS(2465), - [anon_sym_R_DQUOTE] = ACTIONS(2467), - [anon_sym_LR_DQUOTE] = ACTIONS(2467), - [anon_sym_uR_DQUOTE] = ACTIONS(2467), - [anon_sym_UR_DQUOTE] = ACTIONS(2467), - [anon_sym_u8R_DQUOTE] = ACTIONS(2467), - [anon_sym_co_await] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_requires] = ACTIONS(2465), - [sym_this] = ACTIONS(2465), - [sym_nullptr] = ACTIONS(2465), - }, - [801] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [802] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [803] = { - [ts_builtin_sym_end] = ACTIONS(2601), - [sym_identifier] = ACTIONS(2599), - [aux_sym_preproc_include_token1] = ACTIONS(2599), - [aux_sym_preproc_def_token1] = ACTIONS(2599), - [aux_sym_preproc_if_token1] = ACTIONS(2599), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2599), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2599), - [sym_preproc_directive] = ACTIONS(2599), - [anon_sym_LPAREN2] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2599), - [anon_sym_PLUS] = ACTIONS(2599), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_AMP_AMP] = ACTIONS(2601), - [anon_sym_AMP] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2601), - [anon_sym_typedef] = ACTIONS(2599), - [anon_sym_extern] = ACTIONS(2599), - [anon_sym___attribute__] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), - [anon_sym___declspec] = ACTIONS(2599), - [anon_sym___based] = ACTIONS(2599), - [anon_sym___cdecl] = ACTIONS(2599), - [anon_sym___clrcall] = ACTIONS(2599), - [anon_sym___stdcall] = ACTIONS(2599), - [anon_sym___fastcall] = ACTIONS(2599), - [anon_sym___thiscall] = ACTIONS(2599), - [anon_sym___vectorcall] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_static] = ACTIONS(2599), - [anon_sym_register] = ACTIONS(2599), - [anon_sym_inline] = ACTIONS(2599), - [anon_sym_thread_local] = ACTIONS(2599), - [anon_sym_const] = ACTIONS(2599), - [anon_sym_volatile] = ACTIONS(2599), - [anon_sym_restrict] = ACTIONS(2599), - [anon_sym__Atomic] = ACTIONS(2599), - [anon_sym_mutable] = ACTIONS(2599), - [anon_sym_constexpr] = ACTIONS(2599), - [anon_sym_constinit] = ACTIONS(2599), - [anon_sym_consteval] = ACTIONS(2599), - [anon_sym_signed] = ACTIONS(2599), - [anon_sym_unsigned] = ACTIONS(2599), - [anon_sym_long] = ACTIONS(2599), - [anon_sym_short] = ACTIONS(2599), - [sym_primitive_type] = ACTIONS(2599), - [anon_sym_enum] = ACTIONS(2599), - [anon_sym_class] = ACTIONS(2599), - [anon_sym_struct] = ACTIONS(2599), - [anon_sym_union] = ACTIONS(2599), - [anon_sym_if] = ACTIONS(2599), - [anon_sym_else] = ACTIONS(2599), - [anon_sym_switch] = ACTIONS(2599), - [anon_sym_case] = ACTIONS(2599), - [anon_sym_default] = ACTIONS(2599), - [anon_sym_while] = ACTIONS(2599), - [anon_sym_do] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2599), - [anon_sym_break] = ACTIONS(2599), - [anon_sym_continue] = ACTIONS(2599), - [anon_sym_goto] = ACTIONS(2599), - [anon_sym_not] = ACTIONS(2599), - [anon_sym_compl] = ACTIONS(2599), - [anon_sym_DASH_DASH] = ACTIONS(2601), - [anon_sym_PLUS_PLUS] = ACTIONS(2601), - [anon_sym_sizeof] = ACTIONS(2599), - [sym_number_literal] = ACTIONS(2601), - [anon_sym_L_SQUOTE] = ACTIONS(2601), - [anon_sym_u_SQUOTE] = ACTIONS(2601), - [anon_sym_U_SQUOTE] = ACTIONS(2601), - [anon_sym_u8_SQUOTE] = ACTIONS(2601), - [anon_sym_SQUOTE] = ACTIONS(2601), - [anon_sym_L_DQUOTE] = ACTIONS(2601), - [anon_sym_u_DQUOTE] = ACTIONS(2601), - [anon_sym_U_DQUOTE] = ACTIONS(2601), - [anon_sym_u8_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [sym_true] = ACTIONS(2599), - [sym_false] = ACTIONS(2599), - [sym_null] = ACTIONS(2599), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2599), - [anon_sym_decltype] = ACTIONS(2599), - [anon_sym_virtual] = ACTIONS(2599), - [anon_sym_explicit] = ACTIONS(2599), - [anon_sym_typename] = ACTIONS(2599), - [anon_sym_template] = ACTIONS(2599), - [anon_sym_operator] = ACTIONS(2599), - [anon_sym_try] = ACTIONS(2599), - [anon_sym_delete] = ACTIONS(2599), - [anon_sym_throw] = ACTIONS(2599), - [anon_sym_namespace] = ACTIONS(2599), - [anon_sym_using] = ACTIONS(2599), - [anon_sym_static_assert] = ACTIONS(2599), - [anon_sym_concept] = ACTIONS(2599), - [anon_sym_co_return] = ACTIONS(2599), - [anon_sym_co_yield] = ACTIONS(2599), - [anon_sym_R_DQUOTE] = ACTIONS(2601), - [anon_sym_LR_DQUOTE] = ACTIONS(2601), - [anon_sym_uR_DQUOTE] = ACTIONS(2601), - [anon_sym_UR_DQUOTE] = ACTIONS(2601), - [anon_sym_u8R_DQUOTE] = ACTIONS(2601), - [anon_sym_co_await] = ACTIONS(2599), - [anon_sym_new] = ACTIONS(2599), - [anon_sym_requires] = ACTIONS(2599), - [sym_this] = ACTIONS(2599), - [sym_nullptr] = ACTIONS(2599), - }, - [804] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [805] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [806] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [807] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [808] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [809] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [810] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [811] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [812] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [813] = { - [sym_identifier] = ACTIONS(2555), - [aux_sym_preproc_include_token1] = ACTIONS(2555), - [aux_sym_preproc_def_token1] = ACTIONS(2555), - [aux_sym_preproc_if_token1] = ACTIONS(2555), - [aux_sym_preproc_if_token2] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), - [sym_preproc_directive] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2557), - [anon_sym_TILDE] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_AMP_AMP] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2557), - [anon_sym_typedef] = ACTIONS(2555), - [anon_sym_extern] = ACTIONS(2555), - [anon_sym___attribute__] = ACTIONS(2555), - [anon_sym_COLON_COLON] = ACTIONS(2557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), - [anon_sym___declspec] = ACTIONS(2555), - [anon_sym___based] = ACTIONS(2555), - [anon_sym___cdecl] = ACTIONS(2555), - [anon_sym___clrcall] = ACTIONS(2555), - [anon_sym___stdcall] = ACTIONS(2555), - [anon_sym___fastcall] = ACTIONS(2555), - [anon_sym___thiscall] = ACTIONS(2555), - [anon_sym___vectorcall] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2555), - [anon_sym_register] = ACTIONS(2555), - [anon_sym_inline] = ACTIONS(2555), - [anon_sym_thread_local] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2555), - [anon_sym_volatile] = ACTIONS(2555), - [anon_sym_restrict] = ACTIONS(2555), - [anon_sym__Atomic] = ACTIONS(2555), - [anon_sym_mutable] = ACTIONS(2555), - [anon_sym_constexpr] = ACTIONS(2555), - [anon_sym_constinit] = ACTIONS(2555), - [anon_sym_consteval] = ACTIONS(2555), - [anon_sym_signed] = ACTIONS(2555), - [anon_sym_unsigned] = ACTIONS(2555), - [anon_sym_long] = ACTIONS(2555), - [anon_sym_short] = ACTIONS(2555), - [sym_primitive_type] = ACTIONS(2555), - [anon_sym_enum] = ACTIONS(2555), - [anon_sym_class] = ACTIONS(2555), - [anon_sym_struct] = ACTIONS(2555), - [anon_sym_union] = ACTIONS(2555), - [anon_sym_if] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2555), - [anon_sym_switch] = ACTIONS(2555), - [anon_sym_case] = ACTIONS(2555), - [anon_sym_default] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2555), - [anon_sym_do] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_break] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2555), - [anon_sym_goto] = ACTIONS(2555), - [anon_sym_not] = ACTIONS(2555), - [anon_sym_compl] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2557), - [anon_sym_PLUS_PLUS] = ACTIONS(2557), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2557), - [anon_sym_u_SQUOTE] = ACTIONS(2557), - [anon_sym_U_SQUOTE] = ACTIONS(2557), - [anon_sym_u8_SQUOTE] = ACTIONS(2557), - [anon_sym_SQUOTE] = ACTIONS(2557), - [anon_sym_L_DQUOTE] = ACTIONS(2557), - [anon_sym_u_DQUOTE] = ACTIONS(2557), - [anon_sym_U_DQUOTE] = ACTIONS(2557), - [anon_sym_u8_DQUOTE] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(2557), - [sym_true] = ACTIONS(2555), - [sym_false] = ACTIONS(2555), - [sym_null] = ACTIONS(2555), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2555), - [anon_sym_decltype] = ACTIONS(2555), - [anon_sym_virtual] = ACTIONS(2555), - [anon_sym_explicit] = ACTIONS(2555), - [anon_sym_typename] = ACTIONS(2555), - [anon_sym_template] = ACTIONS(2555), - [anon_sym_operator] = ACTIONS(2555), - [anon_sym_try] = ACTIONS(2555), - [anon_sym_delete] = ACTIONS(2555), - [anon_sym_throw] = ACTIONS(2555), - [anon_sym_namespace] = ACTIONS(2555), - [anon_sym_using] = ACTIONS(2555), - [anon_sym_static_assert] = ACTIONS(2555), - [anon_sym_concept] = ACTIONS(2555), - [anon_sym_co_return] = ACTIONS(2555), - [anon_sym_co_yield] = ACTIONS(2555), - [anon_sym_R_DQUOTE] = ACTIONS(2557), - [anon_sym_LR_DQUOTE] = ACTIONS(2557), - [anon_sym_uR_DQUOTE] = ACTIONS(2557), - [anon_sym_UR_DQUOTE] = ACTIONS(2557), - [anon_sym_u8R_DQUOTE] = ACTIONS(2557), - [anon_sym_co_await] = ACTIONS(2555), - [anon_sym_new] = ACTIONS(2555), - [anon_sym_requires] = ACTIONS(2555), - [sym_this] = ACTIONS(2555), - [sym_nullptr] = ACTIONS(2555), - }, - [814] = { - [sym_identifier] = ACTIONS(2555), - [aux_sym_preproc_include_token1] = ACTIONS(2555), - [aux_sym_preproc_def_token1] = ACTIONS(2555), - [aux_sym_preproc_if_token1] = ACTIONS(2555), - [aux_sym_preproc_if_token2] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), - [sym_preproc_directive] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2557), - [anon_sym_TILDE] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_AMP_AMP] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2557), - [anon_sym_typedef] = ACTIONS(2555), - [anon_sym_extern] = ACTIONS(2555), - [anon_sym___attribute__] = ACTIONS(2555), - [anon_sym_COLON_COLON] = ACTIONS(2557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), - [anon_sym___declspec] = ACTIONS(2555), - [anon_sym___based] = ACTIONS(2555), - [anon_sym___cdecl] = ACTIONS(2555), - [anon_sym___clrcall] = ACTIONS(2555), - [anon_sym___stdcall] = ACTIONS(2555), - [anon_sym___fastcall] = ACTIONS(2555), - [anon_sym___thiscall] = ACTIONS(2555), - [anon_sym___vectorcall] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2555), - [anon_sym_register] = ACTIONS(2555), - [anon_sym_inline] = ACTIONS(2555), - [anon_sym_thread_local] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2555), - [anon_sym_volatile] = ACTIONS(2555), - [anon_sym_restrict] = ACTIONS(2555), - [anon_sym__Atomic] = ACTIONS(2555), - [anon_sym_mutable] = ACTIONS(2555), - [anon_sym_constexpr] = ACTIONS(2555), - [anon_sym_constinit] = ACTIONS(2555), - [anon_sym_consteval] = ACTIONS(2555), - [anon_sym_signed] = ACTIONS(2555), - [anon_sym_unsigned] = ACTIONS(2555), - [anon_sym_long] = ACTIONS(2555), - [anon_sym_short] = ACTIONS(2555), - [sym_primitive_type] = ACTIONS(2555), - [anon_sym_enum] = ACTIONS(2555), - [anon_sym_class] = ACTIONS(2555), - [anon_sym_struct] = ACTIONS(2555), - [anon_sym_union] = ACTIONS(2555), - [anon_sym_if] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2555), - [anon_sym_switch] = ACTIONS(2555), - [anon_sym_case] = ACTIONS(2555), - [anon_sym_default] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2555), - [anon_sym_do] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_break] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2555), - [anon_sym_goto] = ACTIONS(2555), - [anon_sym_not] = ACTIONS(2555), - [anon_sym_compl] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2557), - [anon_sym_PLUS_PLUS] = ACTIONS(2557), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2557), - [anon_sym_u_SQUOTE] = ACTIONS(2557), - [anon_sym_U_SQUOTE] = ACTIONS(2557), - [anon_sym_u8_SQUOTE] = ACTIONS(2557), - [anon_sym_SQUOTE] = ACTIONS(2557), - [anon_sym_L_DQUOTE] = ACTIONS(2557), - [anon_sym_u_DQUOTE] = ACTIONS(2557), - [anon_sym_U_DQUOTE] = ACTIONS(2557), - [anon_sym_u8_DQUOTE] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(2557), - [sym_true] = ACTIONS(2555), - [sym_false] = ACTIONS(2555), - [sym_null] = ACTIONS(2555), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2555), - [anon_sym_decltype] = ACTIONS(2555), - [anon_sym_virtual] = ACTIONS(2555), - [anon_sym_explicit] = ACTIONS(2555), - [anon_sym_typename] = ACTIONS(2555), - [anon_sym_template] = ACTIONS(2555), - [anon_sym_operator] = ACTIONS(2555), - [anon_sym_try] = ACTIONS(2555), - [anon_sym_delete] = ACTIONS(2555), - [anon_sym_throw] = ACTIONS(2555), - [anon_sym_namespace] = ACTIONS(2555), - [anon_sym_using] = ACTIONS(2555), - [anon_sym_static_assert] = ACTIONS(2555), - [anon_sym_concept] = ACTIONS(2555), - [anon_sym_co_return] = ACTIONS(2555), - [anon_sym_co_yield] = ACTIONS(2555), - [anon_sym_R_DQUOTE] = ACTIONS(2557), - [anon_sym_LR_DQUOTE] = ACTIONS(2557), - [anon_sym_uR_DQUOTE] = ACTIONS(2557), - [anon_sym_UR_DQUOTE] = ACTIONS(2557), - [anon_sym_u8R_DQUOTE] = ACTIONS(2557), - [anon_sym_co_await] = ACTIONS(2555), - [anon_sym_new] = ACTIONS(2555), - [anon_sym_requires] = ACTIONS(2555), - [sym_this] = ACTIONS(2555), - [sym_nullptr] = ACTIONS(2555), - }, - [815] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [816] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [817] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [818] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [819] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [820] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [821] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [822] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [823] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [824] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [825] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [826] = { - [ts_builtin_sym_end] = ACTIONS(2521), - [sym_identifier] = ACTIONS(2519), - [aux_sym_preproc_include_token1] = ACTIONS(2519), - [aux_sym_preproc_def_token1] = ACTIONS(2519), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2519), - [sym_preproc_directive] = ACTIONS(2519), - [anon_sym_LPAREN2] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2521), - [anon_sym_AMP_AMP] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_typedef] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2519), - [anon_sym___attribute__] = ACTIONS(2519), - [anon_sym_COLON_COLON] = ACTIONS(2521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), - [anon_sym___declspec] = ACTIONS(2519), - [anon_sym___based] = ACTIONS(2519), - [anon_sym___cdecl] = ACTIONS(2519), - [anon_sym___clrcall] = ACTIONS(2519), - [anon_sym___stdcall] = ACTIONS(2519), - [anon_sym___fastcall] = ACTIONS(2519), - [anon_sym___thiscall] = ACTIONS(2519), - [anon_sym___vectorcall] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_register] = ACTIONS(2519), - [anon_sym_inline] = ACTIONS(2519), - [anon_sym_thread_local] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_volatile] = ACTIONS(2519), - [anon_sym_restrict] = ACTIONS(2519), - [anon_sym__Atomic] = ACTIONS(2519), - [anon_sym_mutable] = ACTIONS(2519), - [anon_sym_constexpr] = ACTIONS(2519), - [anon_sym_constinit] = ACTIONS(2519), - [anon_sym_consteval] = ACTIONS(2519), - [anon_sym_signed] = ACTIONS(2519), - [anon_sym_unsigned] = ACTIONS(2519), - [anon_sym_long] = ACTIONS(2519), - [anon_sym_short] = ACTIONS(2519), - [sym_primitive_type] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_class] = ACTIONS(2519), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_else] = ACTIONS(2519), - [anon_sym_switch] = ACTIONS(2519), - [anon_sym_case] = ACTIONS(2519), - [anon_sym_default] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_do] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_goto] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2519), - [anon_sym_compl] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2521), - [anon_sym_PLUS_PLUS] = ACTIONS(2521), - [anon_sym_sizeof] = ACTIONS(2519), - [sym_number_literal] = ACTIONS(2521), - [anon_sym_L_SQUOTE] = ACTIONS(2521), - [anon_sym_u_SQUOTE] = ACTIONS(2521), - [anon_sym_U_SQUOTE] = ACTIONS(2521), - [anon_sym_u8_SQUOTE] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2521), - [anon_sym_L_DQUOTE] = ACTIONS(2521), - [anon_sym_u_DQUOTE] = ACTIONS(2521), - [anon_sym_U_DQUOTE] = ACTIONS(2521), - [anon_sym_u8_DQUOTE] = ACTIONS(2521), - [anon_sym_DQUOTE] = ACTIONS(2521), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [sym_null] = ACTIONS(2519), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2519), - [anon_sym_decltype] = ACTIONS(2519), - [anon_sym_virtual] = ACTIONS(2519), - [anon_sym_explicit] = ACTIONS(2519), - [anon_sym_typename] = ACTIONS(2519), - [anon_sym_template] = ACTIONS(2519), - [anon_sym_operator] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_throw] = ACTIONS(2519), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_using] = ACTIONS(2519), - [anon_sym_static_assert] = ACTIONS(2519), - [anon_sym_concept] = ACTIONS(2519), - [anon_sym_co_return] = ACTIONS(2519), - [anon_sym_co_yield] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2519), - [anon_sym_new] = ACTIONS(2519), - [anon_sym_requires] = ACTIONS(2519), - [sym_this] = ACTIONS(2519), - [sym_nullptr] = ACTIONS(2519), - }, - [827] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [828] = { - [ts_builtin_sym_end] = ACTIONS(2527), - [sym_identifier] = ACTIONS(2525), - [aux_sym_preproc_include_token1] = ACTIONS(2525), - [aux_sym_preproc_def_token1] = ACTIONS(2525), - [aux_sym_preproc_if_token1] = ACTIONS(2525), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2525), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2525), - [sym_preproc_directive] = ACTIONS(2525), - [anon_sym_LPAREN2] = ACTIONS(2527), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_TILDE] = ACTIONS(2527), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_STAR] = ACTIONS(2527), - [anon_sym_AMP_AMP] = ACTIONS(2527), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_typedef] = ACTIONS(2525), - [anon_sym_extern] = ACTIONS(2525), - [anon_sym___attribute__] = ACTIONS(2525), - [anon_sym_COLON_COLON] = ACTIONS(2527), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2527), - [anon_sym___declspec] = ACTIONS(2525), - [anon_sym___based] = ACTIONS(2525), - [anon_sym___cdecl] = ACTIONS(2525), - [anon_sym___clrcall] = ACTIONS(2525), - [anon_sym___stdcall] = ACTIONS(2525), - [anon_sym___fastcall] = ACTIONS(2525), - [anon_sym___thiscall] = ACTIONS(2525), - [anon_sym___vectorcall] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_register] = ACTIONS(2525), - [anon_sym_inline] = ACTIONS(2525), - [anon_sym_thread_local] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_volatile] = ACTIONS(2525), - [anon_sym_restrict] = ACTIONS(2525), - [anon_sym__Atomic] = ACTIONS(2525), - [anon_sym_mutable] = ACTIONS(2525), - [anon_sym_constexpr] = ACTIONS(2525), - [anon_sym_constinit] = ACTIONS(2525), - [anon_sym_consteval] = ACTIONS(2525), - [anon_sym_signed] = ACTIONS(2525), - [anon_sym_unsigned] = ACTIONS(2525), - [anon_sym_long] = ACTIONS(2525), - [anon_sym_short] = ACTIONS(2525), - [sym_primitive_type] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_struct] = ACTIONS(2525), - [anon_sym_union] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_else] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_goto] = ACTIONS(2525), - [anon_sym_not] = ACTIONS(2525), - [anon_sym_compl] = ACTIONS(2525), - [anon_sym_DASH_DASH] = ACTIONS(2527), - [anon_sym_PLUS_PLUS] = ACTIONS(2527), - [anon_sym_sizeof] = ACTIONS(2525), - [sym_number_literal] = ACTIONS(2527), - [anon_sym_L_SQUOTE] = ACTIONS(2527), - [anon_sym_u_SQUOTE] = ACTIONS(2527), - [anon_sym_U_SQUOTE] = ACTIONS(2527), - [anon_sym_u8_SQUOTE] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2527), - [anon_sym_L_DQUOTE] = ACTIONS(2527), - [anon_sym_u_DQUOTE] = ACTIONS(2527), - [anon_sym_U_DQUOTE] = ACTIONS(2527), - [anon_sym_u8_DQUOTE] = ACTIONS(2527), - [anon_sym_DQUOTE] = ACTIONS(2527), - [sym_true] = ACTIONS(2525), - [sym_false] = ACTIONS(2525), - [sym_null] = ACTIONS(2525), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2525), - [anon_sym_decltype] = ACTIONS(2525), - [anon_sym_virtual] = ACTIONS(2525), - [anon_sym_explicit] = ACTIONS(2525), - [anon_sym_typename] = ACTIONS(2525), - [anon_sym_template] = ACTIONS(2525), - [anon_sym_operator] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_delete] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_namespace] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(2525), - [anon_sym_static_assert] = ACTIONS(2525), - [anon_sym_concept] = ACTIONS(2525), - [anon_sym_co_return] = ACTIONS(2525), - [anon_sym_co_yield] = ACTIONS(2525), - [anon_sym_R_DQUOTE] = ACTIONS(2527), - [anon_sym_LR_DQUOTE] = ACTIONS(2527), - [anon_sym_uR_DQUOTE] = ACTIONS(2527), - [anon_sym_UR_DQUOTE] = ACTIONS(2527), - [anon_sym_u8R_DQUOTE] = ACTIONS(2527), - [anon_sym_co_await] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2525), - [sym_this] = ACTIONS(2525), - [sym_nullptr] = ACTIONS(2525), - }, - [829] = { - [sym_identifier] = ACTIONS(2587), - [aux_sym_preproc_include_token1] = ACTIONS(2587), - [aux_sym_preproc_def_token1] = ACTIONS(2587), - [aux_sym_preproc_if_token1] = ACTIONS(2587), - [aux_sym_preproc_if_token2] = ACTIONS(2587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2587), - [sym_preproc_directive] = ACTIONS(2587), - [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2589), - [anon_sym_TILDE] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_AMP_AMP] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2589), - [anon_sym_typedef] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym___attribute__] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2589), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), - [anon_sym___declspec] = ACTIONS(2587), - [anon_sym___based] = ACTIONS(2587), - [anon_sym___cdecl] = ACTIONS(2587), - [anon_sym___clrcall] = ACTIONS(2587), - [anon_sym___stdcall] = ACTIONS(2587), - [anon_sym___fastcall] = ACTIONS(2587), - [anon_sym___thiscall] = ACTIONS(2587), - [anon_sym___vectorcall] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_register] = ACTIONS(2587), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_thread_local] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_constexpr] = ACTIONS(2587), - [anon_sym_constinit] = ACTIONS(2587), - [anon_sym_consteval] = ACTIONS(2587), - [anon_sym_signed] = ACTIONS(2587), - [anon_sym_unsigned] = ACTIONS(2587), - [anon_sym_long] = ACTIONS(2587), - [anon_sym_short] = ACTIONS(2587), - [sym_primitive_type] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_class] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_else] = ACTIONS(2587), - [anon_sym_switch] = ACTIONS(2587), - [anon_sym_case] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_goto] = ACTIONS(2587), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_compl] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2589), - [anon_sym_PLUS_PLUS] = ACTIONS(2589), - [anon_sym_sizeof] = ACTIONS(2587), - [sym_number_literal] = ACTIONS(2589), - [anon_sym_L_SQUOTE] = ACTIONS(2589), - [anon_sym_u_SQUOTE] = ACTIONS(2589), - [anon_sym_U_SQUOTE] = ACTIONS(2589), - [anon_sym_u8_SQUOTE] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_L_DQUOTE] = ACTIONS(2589), - [anon_sym_u_DQUOTE] = ACTIONS(2589), - [anon_sym_U_DQUOTE] = ACTIONS(2589), - [anon_sym_u8_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE] = ACTIONS(2589), - [sym_true] = ACTIONS(2587), - [sym_false] = ACTIONS(2587), - [sym_null] = ACTIONS(2587), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2587), - [anon_sym_decltype] = ACTIONS(2587), - [anon_sym_virtual] = ACTIONS(2587), - [anon_sym_explicit] = ACTIONS(2587), - [anon_sym_typename] = ACTIONS(2587), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_operator] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(2587), - [anon_sym_throw] = ACTIONS(2587), - [anon_sym_namespace] = ACTIONS(2587), - [anon_sym_using] = ACTIONS(2587), - [anon_sym_static_assert] = ACTIONS(2587), - [anon_sym_concept] = ACTIONS(2587), - [anon_sym_co_return] = ACTIONS(2587), - [anon_sym_co_yield] = ACTIONS(2587), - [anon_sym_R_DQUOTE] = ACTIONS(2589), - [anon_sym_LR_DQUOTE] = ACTIONS(2589), - [anon_sym_uR_DQUOTE] = ACTIONS(2589), - [anon_sym_UR_DQUOTE] = ACTIONS(2589), - [anon_sym_u8R_DQUOTE] = ACTIONS(2589), - [anon_sym_co_await] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_requires] = ACTIONS(2587), - [sym_this] = ACTIONS(2587), - [sym_nullptr] = ACTIONS(2587), - }, - [830] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [831] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [832] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [833] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [834] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [835] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [836] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [837] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [838] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [839] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [840] = { - [sym_identifier] = ACTIONS(2577), - [aux_sym_preproc_include_token1] = ACTIONS(2577), - [aux_sym_preproc_def_token1] = ACTIONS(2577), - [aux_sym_preproc_if_token1] = ACTIONS(2577), - [aux_sym_preproc_if_token2] = ACTIONS(2577), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2577), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2577), - [sym_preproc_directive] = ACTIONS(2577), - [anon_sym_LPAREN2] = ACTIONS(2579), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2577), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_typedef] = ACTIONS(2577), - [anon_sym_extern] = ACTIONS(2577), - [anon_sym___attribute__] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2579), - [anon_sym___declspec] = ACTIONS(2577), - [anon_sym___based] = ACTIONS(2577), - [anon_sym___cdecl] = ACTIONS(2577), - [anon_sym___clrcall] = ACTIONS(2577), - [anon_sym___stdcall] = ACTIONS(2577), - [anon_sym___fastcall] = ACTIONS(2577), - [anon_sym___thiscall] = ACTIONS(2577), - [anon_sym___vectorcall] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2577), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_register] = ACTIONS(2577), - [anon_sym_inline] = ACTIONS(2577), - [anon_sym_thread_local] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_volatile] = ACTIONS(2577), - [anon_sym_restrict] = ACTIONS(2577), - [anon_sym__Atomic] = ACTIONS(2577), - [anon_sym_mutable] = ACTIONS(2577), - [anon_sym_constexpr] = ACTIONS(2577), - [anon_sym_constinit] = ACTIONS(2577), - [anon_sym_consteval] = ACTIONS(2577), - [anon_sym_signed] = ACTIONS(2577), - [anon_sym_unsigned] = ACTIONS(2577), - [anon_sym_long] = ACTIONS(2577), - [anon_sym_short] = ACTIONS(2577), - [sym_primitive_type] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_struct] = ACTIONS(2577), - [anon_sym_union] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_else] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_case] = ACTIONS(2577), - [anon_sym_default] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_goto] = ACTIONS(2577), - [anon_sym_not] = ACTIONS(2577), - [anon_sym_compl] = ACTIONS(2577), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_sizeof] = ACTIONS(2577), - [sym_number_literal] = ACTIONS(2579), - [anon_sym_L_SQUOTE] = ACTIONS(2579), - [anon_sym_u_SQUOTE] = ACTIONS(2579), - [anon_sym_U_SQUOTE] = ACTIONS(2579), - [anon_sym_u8_SQUOTE] = ACTIONS(2579), - [anon_sym_SQUOTE] = ACTIONS(2579), - [anon_sym_L_DQUOTE] = ACTIONS(2579), - [anon_sym_u_DQUOTE] = ACTIONS(2579), - [anon_sym_U_DQUOTE] = ACTIONS(2579), - [anon_sym_u8_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym_true] = ACTIONS(2577), - [sym_false] = ACTIONS(2577), - [sym_null] = ACTIONS(2577), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2577), - [anon_sym_decltype] = ACTIONS(2577), - [anon_sym_virtual] = ACTIONS(2577), - [anon_sym_explicit] = ACTIONS(2577), - [anon_sym_typename] = ACTIONS(2577), - [anon_sym_template] = ACTIONS(2577), - [anon_sym_operator] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_delete] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [anon_sym_static_assert] = ACTIONS(2577), - [anon_sym_concept] = ACTIONS(2577), - [anon_sym_co_return] = ACTIONS(2577), - [anon_sym_co_yield] = ACTIONS(2577), - [anon_sym_R_DQUOTE] = ACTIONS(2579), - [anon_sym_LR_DQUOTE] = ACTIONS(2579), - [anon_sym_uR_DQUOTE] = ACTIONS(2579), - [anon_sym_UR_DQUOTE] = ACTIONS(2579), - [anon_sym_u8R_DQUOTE] = ACTIONS(2579), - [anon_sym_co_await] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2577), - [sym_this] = ACTIONS(2577), - [sym_nullptr] = ACTIONS(2577), - }, - [841] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [842] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [843] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [844] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [845] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [846] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [847] = { - [sym_identifier] = ACTIONS(2551), - [aux_sym_preproc_include_token1] = ACTIONS(2551), - [aux_sym_preproc_def_token1] = ACTIONS(2551), - [aux_sym_preproc_if_token1] = ACTIONS(2551), - [aux_sym_preproc_if_token2] = ACTIONS(2551), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2551), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2551), - [sym_preproc_directive] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2553), - [anon_sym_TILDE] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2551), - [anon_sym_PLUS] = ACTIONS(2551), - [anon_sym_STAR] = ACTIONS(2553), - [anon_sym_AMP_AMP] = ACTIONS(2553), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2553), - [anon_sym_typedef] = ACTIONS(2551), - [anon_sym_extern] = ACTIONS(2551), - [anon_sym___attribute__] = ACTIONS(2551), - [anon_sym_COLON_COLON] = ACTIONS(2553), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), - [anon_sym___declspec] = ACTIONS(2551), - [anon_sym___based] = ACTIONS(2551), - [anon_sym___cdecl] = ACTIONS(2551), - [anon_sym___clrcall] = ACTIONS(2551), - [anon_sym___stdcall] = ACTIONS(2551), - [anon_sym___fastcall] = ACTIONS(2551), - [anon_sym___thiscall] = ACTIONS(2551), - [anon_sym___vectorcall] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_static] = ACTIONS(2551), - [anon_sym_register] = ACTIONS(2551), - [anon_sym_inline] = ACTIONS(2551), - [anon_sym_thread_local] = ACTIONS(2551), - [anon_sym_const] = ACTIONS(2551), - [anon_sym_volatile] = ACTIONS(2551), - [anon_sym_restrict] = ACTIONS(2551), - [anon_sym__Atomic] = ACTIONS(2551), - [anon_sym_mutable] = ACTIONS(2551), - [anon_sym_constexpr] = ACTIONS(2551), - [anon_sym_constinit] = ACTIONS(2551), - [anon_sym_consteval] = ACTIONS(2551), - [anon_sym_signed] = ACTIONS(2551), - [anon_sym_unsigned] = ACTIONS(2551), - [anon_sym_long] = ACTIONS(2551), - [anon_sym_short] = ACTIONS(2551), - [sym_primitive_type] = ACTIONS(2551), - [anon_sym_enum] = ACTIONS(2551), - [anon_sym_class] = ACTIONS(2551), - [anon_sym_struct] = ACTIONS(2551), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_if] = ACTIONS(2551), - [anon_sym_else] = ACTIONS(2551), - [anon_sym_switch] = ACTIONS(2551), - [anon_sym_case] = ACTIONS(2551), - [anon_sym_default] = ACTIONS(2551), - [anon_sym_while] = ACTIONS(2551), - [anon_sym_do] = ACTIONS(2551), - [anon_sym_for] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2551), - [anon_sym_break] = ACTIONS(2551), - [anon_sym_continue] = ACTIONS(2551), - [anon_sym_goto] = ACTIONS(2551), - [anon_sym_not] = ACTIONS(2551), - [anon_sym_compl] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2551), - [sym_number_literal] = ACTIONS(2553), - [anon_sym_L_SQUOTE] = ACTIONS(2553), - [anon_sym_u_SQUOTE] = ACTIONS(2553), - [anon_sym_U_SQUOTE] = ACTIONS(2553), - [anon_sym_u8_SQUOTE] = ACTIONS(2553), - [anon_sym_SQUOTE] = ACTIONS(2553), - [anon_sym_L_DQUOTE] = ACTIONS(2553), - [anon_sym_u_DQUOTE] = ACTIONS(2553), - [anon_sym_U_DQUOTE] = ACTIONS(2553), - [anon_sym_u8_DQUOTE] = ACTIONS(2553), - [anon_sym_DQUOTE] = ACTIONS(2553), - [sym_true] = ACTIONS(2551), - [sym_false] = ACTIONS(2551), - [sym_null] = ACTIONS(2551), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2551), - [anon_sym_decltype] = ACTIONS(2551), - [anon_sym_virtual] = ACTIONS(2551), - [anon_sym_explicit] = ACTIONS(2551), - [anon_sym_typename] = ACTIONS(2551), - [anon_sym_template] = ACTIONS(2551), - [anon_sym_operator] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2551), - [anon_sym_delete] = ACTIONS(2551), - [anon_sym_throw] = ACTIONS(2551), - [anon_sym_namespace] = ACTIONS(2551), - [anon_sym_using] = ACTIONS(2551), - [anon_sym_static_assert] = ACTIONS(2551), - [anon_sym_concept] = ACTIONS(2551), - [anon_sym_co_return] = ACTIONS(2551), - [anon_sym_co_yield] = ACTIONS(2551), - [anon_sym_R_DQUOTE] = ACTIONS(2553), - [anon_sym_LR_DQUOTE] = ACTIONS(2553), - [anon_sym_uR_DQUOTE] = ACTIONS(2553), - [anon_sym_UR_DQUOTE] = ACTIONS(2553), - [anon_sym_u8R_DQUOTE] = ACTIONS(2553), - [anon_sym_co_await] = ACTIONS(2551), - [anon_sym_new] = ACTIONS(2551), - [anon_sym_requires] = ACTIONS(2551), - [sym_this] = ACTIONS(2551), - [sym_nullptr] = ACTIONS(2551), - }, - [848] = { - [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_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_LBRACK] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_register] = ACTIONS(2559), - [anon_sym_inline] = ACTIONS(2559), - [anon_sym_thread_local] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_volatile] = ACTIONS(2559), - [anon_sym_restrict] = ACTIONS(2559), - [anon_sym__Atomic] = ACTIONS(2559), - [anon_sym_mutable] = ACTIONS(2559), - [anon_sym_constexpr] = ACTIONS(2559), - [anon_sym_constinit] = ACTIONS(2559), - [anon_sym_consteval] = ACTIONS(2559), - [anon_sym_signed] = ACTIONS(2559), - [anon_sym_unsigned] = ACTIONS(2559), - [anon_sym_long] = ACTIONS(2559), - [anon_sym_short] = 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_else] = 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), - [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), - [sym_null] = ACTIONS(2559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2559), - [anon_sym_decltype] = ACTIONS(2559), - [anon_sym_virtual] = 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_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_nullptr] = ACTIONS(2559), - }, - [849] = { - [sym_identifier] = ACTIONS(2567), - [aux_sym_preproc_include_token1] = ACTIONS(2567), - [aux_sym_preproc_def_token1] = ACTIONS(2567), - [aux_sym_preproc_if_token1] = ACTIONS(2567), - [aux_sym_preproc_if_token2] = ACTIONS(2567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2567), - [sym_preproc_directive] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(2569), - [anon_sym_AMP_AMP] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2569), - [anon_sym_typedef] = ACTIONS(2567), - [anon_sym_extern] = ACTIONS(2567), - [anon_sym___attribute__] = ACTIONS(2567), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2569), - [anon_sym___declspec] = ACTIONS(2567), - [anon_sym___based] = ACTIONS(2567), - [anon_sym___cdecl] = ACTIONS(2567), - [anon_sym___clrcall] = ACTIONS(2567), - [anon_sym___stdcall] = ACTIONS(2567), - [anon_sym___fastcall] = ACTIONS(2567), - [anon_sym___thiscall] = ACTIONS(2567), - [anon_sym___vectorcall] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2569), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_static] = ACTIONS(2567), - [anon_sym_register] = ACTIONS(2567), - [anon_sym_inline] = ACTIONS(2567), - [anon_sym_thread_local] = ACTIONS(2567), - [anon_sym_const] = ACTIONS(2567), - [anon_sym_volatile] = ACTIONS(2567), - [anon_sym_restrict] = ACTIONS(2567), - [anon_sym__Atomic] = ACTIONS(2567), - [anon_sym_mutable] = ACTIONS(2567), - [anon_sym_constexpr] = ACTIONS(2567), - [anon_sym_constinit] = ACTIONS(2567), - [anon_sym_consteval] = ACTIONS(2567), - [anon_sym_signed] = ACTIONS(2567), - [anon_sym_unsigned] = ACTIONS(2567), - [anon_sym_long] = ACTIONS(2567), - [anon_sym_short] = ACTIONS(2567), - [sym_primitive_type] = ACTIONS(2567), - [anon_sym_enum] = ACTIONS(2567), - [anon_sym_class] = ACTIONS(2567), - [anon_sym_struct] = ACTIONS(2567), - [anon_sym_union] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_else] = ACTIONS(2567), - [anon_sym_switch] = ACTIONS(2567), - [anon_sym_case] = ACTIONS(2567), - [anon_sym_default] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_break] = ACTIONS(2567), - [anon_sym_continue] = ACTIONS(2567), - [anon_sym_goto] = ACTIONS(2567), - [anon_sym_not] = ACTIONS(2567), - [anon_sym_compl] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2569), - [anon_sym_PLUS_PLUS] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2567), - [sym_number_literal] = ACTIONS(2569), - [anon_sym_L_SQUOTE] = ACTIONS(2569), - [anon_sym_u_SQUOTE] = ACTIONS(2569), - [anon_sym_U_SQUOTE] = ACTIONS(2569), - [anon_sym_u8_SQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_L_DQUOTE] = ACTIONS(2569), - [anon_sym_u_DQUOTE] = ACTIONS(2569), - [anon_sym_U_DQUOTE] = ACTIONS(2569), - [anon_sym_u8_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE] = ACTIONS(2569), - [sym_true] = ACTIONS(2567), - [sym_false] = ACTIONS(2567), - [sym_null] = ACTIONS(2567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2567), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_virtual] = ACTIONS(2567), - [anon_sym_explicit] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2567), - [anon_sym_template] = ACTIONS(2567), - [anon_sym_operator] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_delete] = ACTIONS(2567), - [anon_sym_throw] = ACTIONS(2567), - [anon_sym_namespace] = ACTIONS(2567), - [anon_sym_using] = ACTIONS(2567), - [anon_sym_static_assert] = ACTIONS(2567), - [anon_sym_concept] = ACTIONS(2567), - [anon_sym_co_return] = ACTIONS(2567), - [anon_sym_co_yield] = ACTIONS(2567), - [anon_sym_R_DQUOTE] = ACTIONS(2569), - [anon_sym_LR_DQUOTE] = ACTIONS(2569), - [anon_sym_uR_DQUOTE] = ACTIONS(2569), - [anon_sym_UR_DQUOTE] = ACTIONS(2569), - [anon_sym_u8R_DQUOTE] = ACTIONS(2569), - [anon_sym_co_await] = ACTIONS(2567), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_requires] = ACTIONS(2567), - [sym_this] = ACTIONS(2567), - [sym_nullptr] = ACTIONS(2567), - }, - [850] = { - [sym_identifier] = ACTIONS(2583), - [aux_sym_preproc_include_token1] = ACTIONS(2583), - [aux_sym_preproc_def_token1] = ACTIONS(2583), - [aux_sym_preproc_if_token1] = ACTIONS(2583), - [aux_sym_preproc_if_token2] = ACTIONS(2583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2583), - [sym_preproc_directive] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_typedef] = ACTIONS(2583), - [anon_sym_extern] = ACTIONS(2583), - [anon_sym___attribute__] = ACTIONS(2583), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), - [anon_sym___declspec] = ACTIONS(2583), - [anon_sym___based] = ACTIONS(2583), - [anon_sym___cdecl] = ACTIONS(2583), - [anon_sym___clrcall] = ACTIONS(2583), - [anon_sym___stdcall] = ACTIONS(2583), - [anon_sym___fastcall] = ACTIONS(2583), - [anon_sym___thiscall] = ACTIONS(2583), - [anon_sym___vectorcall] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_register] = ACTIONS(2583), - [anon_sym_inline] = ACTIONS(2583), - [anon_sym_thread_local] = ACTIONS(2583), - [anon_sym_const] = ACTIONS(2583), - [anon_sym_volatile] = ACTIONS(2583), - [anon_sym_restrict] = ACTIONS(2583), - [anon_sym__Atomic] = ACTIONS(2583), - [anon_sym_mutable] = ACTIONS(2583), - [anon_sym_constexpr] = ACTIONS(2583), - [anon_sym_constinit] = ACTIONS(2583), - [anon_sym_consteval] = ACTIONS(2583), - [anon_sym_signed] = ACTIONS(2583), - [anon_sym_unsigned] = ACTIONS(2583), - [anon_sym_long] = ACTIONS(2583), - [anon_sym_short] = ACTIONS(2583), - [sym_primitive_type] = ACTIONS(2583), - [anon_sym_enum] = ACTIONS(2583), - [anon_sym_class] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2583), - [anon_sym_union] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_else] = ACTIONS(2583), - [anon_sym_switch] = ACTIONS(2583), - [anon_sym_case] = ACTIONS(2583), - [anon_sym_default] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_break] = ACTIONS(2583), - [anon_sym_continue] = ACTIONS(2583), - [anon_sym_goto] = ACTIONS(2583), - [anon_sym_not] = ACTIONS(2583), - [anon_sym_compl] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_sizeof] = ACTIONS(2583), - [sym_number_literal] = ACTIONS(2585), - [anon_sym_L_SQUOTE] = ACTIONS(2585), - [anon_sym_u_SQUOTE] = ACTIONS(2585), - [anon_sym_U_SQUOTE] = ACTIONS(2585), - [anon_sym_u8_SQUOTE] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_L_DQUOTE] = ACTIONS(2585), - [anon_sym_u_DQUOTE] = ACTIONS(2585), - [anon_sym_U_DQUOTE] = ACTIONS(2585), - [anon_sym_u8_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(2585), - [sym_true] = ACTIONS(2583), - [sym_false] = ACTIONS(2583), - [sym_null] = ACTIONS(2583), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2583), - [anon_sym_decltype] = ACTIONS(2583), - [anon_sym_virtual] = ACTIONS(2583), - [anon_sym_explicit] = ACTIONS(2583), - [anon_sym_typename] = ACTIONS(2583), - [anon_sym_template] = ACTIONS(2583), - [anon_sym_operator] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_delete] = ACTIONS(2583), - [anon_sym_throw] = ACTIONS(2583), - [anon_sym_namespace] = ACTIONS(2583), - [anon_sym_using] = ACTIONS(2583), - [anon_sym_static_assert] = ACTIONS(2583), - [anon_sym_concept] = ACTIONS(2583), - [anon_sym_co_return] = ACTIONS(2583), - [anon_sym_co_yield] = ACTIONS(2583), - [anon_sym_R_DQUOTE] = ACTIONS(2585), - [anon_sym_LR_DQUOTE] = ACTIONS(2585), - [anon_sym_uR_DQUOTE] = ACTIONS(2585), - [anon_sym_UR_DQUOTE] = ACTIONS(2585), - [anon_sym_u8R_DQUOTE] = ACTIONS(2585), - [anon_sym_co_await] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_requires] = ACTIONS(2583), - [sym_this] = ACTIONS(2583), - [sym_nullptr] = ACTIONS(2583), - }, - [851] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [852] = { - [ts_builtin_sym_end] = ACTIONS(2401), + [700] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [701] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [702] = { [sym_identifier] = ACTIONS(2399), [aux_sym_preproc_include_token1] = ACTIONS(2399), [aux_sym_preproc_def_token1] = ACTIONS(2399), [aux_sym_preproc_if_token1] = ACTIONS(2399), + [aux_sym_preproc_if_token2] = ACTIONS(2399), [aux_sym_preproc_ifdef_token1] = ACTIONS(2399), [aux_sym_preproc_ifdef_token2] = ACTIONS(2399), [sym_preproc_directive] = ACTIONS(2399), @@ -134517,6 +118094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2399), [anon_sym_inline] = ACTIONS(2399), [anon_sym_thread_local] = ACTIONS(2399), + [anon_sym_input] = ACTIONS(2399), [anon_sym_const] = ACTIONS(2399), [anon_sym_volatile] = ACTIONS(2399), [anon_sym_restrict] = ACTIONS(2399), @@ -134535,7 +118113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2399), [anon_sym_union] = ACTIONS(2399), [anon_sym_if] = ACTIONS(2399), - [anon_sym_else] = ACTIONS(2893), + [anon_sym_else] = ACTIONS(2399), [anon_sym_switch] = ACTIONS(2399), [anon_sym_case] = ACTIONS(2399), [anon_sym_default] = ACTIONS(2399), @@ -134593,2380 +118171,463 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2399), [sym_nullptr] = ACTIONS(2399), }, - [853] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [703] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, - [854] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [704] = { + [sym_identifier] = ACTIONS(2503), + [aux_sym_preproc_include_token1] = ACTIONS(2503), + [aux_sym_preproc_def_token1] = ACTIONS(2503), + [aux_sym_preproc_if_token1] = ACTIONS(2503), + [aux_sym_preproc_if_token2] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), + [sym_preproc_directive] = ACTIONS(2503), + [anon_sym_LPAREN2] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_typedef] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym___attribute__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), + [anon_sym___declspec] = ACTIONS(2503), + [anon_sym___based] = ACTIONS(2503), + [anon_sym___cdecl] = ACTIONS(2503), + [anon_sym___clrcall] = ACTIONS(2503), + [anon_sym___stdcall] = ACTIONS(2503), + [anon_sym___fastcall] = ACTIONS(2503), + [anon_sym___thiscall] = ACTIONS(2503), + [anon_sym___vectorcall] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_register] = ACTIONS(2503), + [anon_sym_inline] = ACTIONS(2503), + [anon_sym_thread_local] = ACTIONS(2503), + [anon_sym_input] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_volatile] = ACTIONS(2503), + [anon_sym_restrict] = ACTIONS(2503), + [anon_sym__Atomic] = ACTIONS(2503), + [anon_sym_mutable] = ACTIONS(2503), + [anon_sym_constexpr] = ACTIONS(2503), + [anon_sym_constinit] = ACTIONS(2503), + [anon_sym_consteval] = ACTIONS(2503), + [anon_sym_signed] = ACTIONS(2503), + [anon_sym_unsigned] = ACTIONS(2503), + [anon_sym_long] = ACTIONS(2503), + [anon_sym_short] = ACTIONS(2503), + [sym_primitive_type] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_else] = ACTIONS(2503), + [anon_sym_switch] = ACTIONS(2503), + [anon_sym_case] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_goto] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_sizeof] = ACTIONS(2503), + [sym_number_literal] = ACTIONS(2505), + [anon_sym_L_SQUOTE] = ACTIONS(2505), + [anon_sym_u_SQUOTE] = ACTIONS(2505), + [anon_sym_U_SQUOTE] = ACTIONS(2505), + [anon_sym_u8_SQUOTE] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_L_DQUOTE] = ACTIONS(2505), + [anon_sym_u_DQUOTE] = ACTIONS(2505), + [anon_sym_U_DQUOTE] = ACTIONS(2505), + [anon_sym_u8_DQUOTE] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym_true] = ACTIONS(2503), + [sym_false] = ACTIONS(2503), + [sym_null] = ACTIONS(2503), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2503), + [anon_sym_decltype] = ACTIONS(2503), + [anon_sym_virtual] = ACTIONS(2503), + [anon_sym_explicit] = ACTIONS(2503), + [anon_sym_typename] = ACTIONS(2503), + [anon_sym_template] = ACTIONS(2503), + [anon_sym_operator] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [anon_sym_delete] = ACTIONS(2503), + [anon_sym_throw] = ACTIONS(2503), + [anon_sym_namespace] = ACTIONS(2503), + [anon_sym_using] = ACTIONS(2503), + [anon_sym_static_assert] = ACTIONS(2503), + [anon_sym_concept] = ACTIONS(2503), + [anon_sym_co_return] = ACTIONS(2503), + [anon_sym_co_yield] = ACTIONS(2503), + [anon_sym_R_DQUOTE] = ACTIONS(2505), + [anon_sym_LR_DQUOTE] = ACTIONS(2505), + [anon_sym_uR_DQUOTE] = ACTIONS(2505), + [anon_sym_UR_DQUOTE] = ACTIONS(2505), + [anon_sym_u8R_DQUOTE] = ACTIONS(2505), + [anon_sym_co_await] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2503), + [anon_sym_requires] = ACTIONS(2503), + [sym_this] = ACTIONS(2503), + [sym_nullptr] = ACTIONS(2503), }, - [855] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [705] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, - [856] = { - [ts_builtin_sym_end] = ACTIONS(2537), - [sym_identifier] = ACTIONS(2535), - [aux_sym_preproc_include_token1] = ACTIONS(2535), - [aux_sym_preproc_def_token1] = ACTIONS(2535), - [aux_sym_preproc_if_token1] = ACTIONS(2535), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2535), - [sym_preproc_directive] = ACTIONS(2535), - [anon_sym_LPAREN2] = ACTIONS(2537), - [anon_sym_BANG] = ACTIONS(2537), - [anon_sym_TILDE] = ACTIONS(2537), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP_AMP] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_typedef] = ACTIONS(2535), - [anon_sym_extern] = ACTIONS(2535), - [anon_sym___attribute__] = ACTIONS(2535), - [anon_sym_COLON_COLON] = ACTIONS(2537), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), - [anon_sym___declspec] = ACTIONS(2535), - [anon_sym___based] = ACTIONS(2535), - [anon_sym___cdecl] = ACTIONS(2535), - [anon_sym___clrcall] = ACTIONS(2535), - [anon_sym___stdcall] = ACTIONS(2535), - [anon_sym___fastcall] = ACTIONS(2535), - [anon_sym___thiscall] = ACTIONS(2535), - [anon_sym___vectorcall] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2535), - [anon_sym_static] = ACTIONS(2535), - [anon_sym_register] = ACTIONS(2535), - [anon_sym_inline] = ACTIONS(2535), - [anon_sym_thread_local] = ACTIONS(2535), - [anon_sym_const] = ACTIONS(2535), - [anon_sym_volatile] = ACTIONS(2535), - [anon_sym_restrict] = ACTIONS(2535), - [anon_sym__Atomic] = ACTIONS(2535), - [anon_sym_mutable] = ACTIONS(2535), - [anon_sym_constexpr] = ACTIONS(2535), - [anon_sym_constinit] = ACTIONS(2535), - [anon_sym_consteval] = ACTIONS(2535), - [anon_sym_signed] = ACTIONS(2535), - [anon_sym_unsigned] = ACTIONS(2535), - [anon_sym_long] = ACTIONS(2535), - [anon_sym_short] = ACTIONS(2535), - [sym_primitive_type] = ACTIONS(2535), - [anon_sym_enum] = ACTIONS(2535), - [anon_sym_class] = ACTIONS(2535), - [anon_sym_struct] = ACTIONS(2535), - [anon_sym_union] = ACTIONS(2535), - [anon_sym_if] = ACTIONS(2535), - [anon_sym_else] = ACTIONS(2535), - [anon_sym_switch] = ACTIONS(2535), - [anon_sym_case] = ACTIONS(2535), - [anon_sym_default] = ACTIONS(2535), - [anon_sym_while] = ACTIONS(2535), - [anon_sym_do] = ACTIONS(2535), - [anon_sym_for] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2535), - [anon_sym_continue] = ACTIONS(2535), - [anon_sym_goto] = ACTIONS(2535), - [anon_sym_not] = ACTIONS(2535), - [anon_sym_compl] = ACTIONS(2535), - [anon_sym_DASH_DASH] = ACTIONS(2537), - [anon_sym_PLUS_PLUS] = ACTIONS(2537), - [anon_sym_sizeof] = ACTIONS(2535), - [sym_number_literal] = ACTIONS(2537), - [anon_sym_L_SQUOTE] = ACTIONS(2537), - [anon_sym_u_SQUOTE] = ACTIONS(2537), - [anon_sym_U_SQUOTE] = ACTIONS(2537), - [anon_sym_u8_SQUOTE] = ACTIONS(2537), - [anon_sym_SQUOTE] = ACTIONS(2537), - [anon_sym_L_DQUOTE] = ACTIONS(2537), - [anon_sym_u_DQUOTE] = ACTIONS(2537), - [anon_sym_U_DQUOTE] = ACTIONS(2537), - [anon_sym_u8_DQUOTE] = ACTIONS(2537), - [anon_sym_DQUOTE] = ACTIONS(2537), - [sym_true] = ACTIONS(2535), - [sym_false] = ACTIONS(2535), - [sym_null] = ACTIONS(2535), + [706] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2535), - [anon_sym_decltype] = ACTIONS(2535), - [anon_sym_virtual] = ACTIONS(2535), - [anon_sym_explicit] = ACTIONS(2535), - [anon_sym_typename] = ACTIONS(2535), - [anon_sym_template] = ACTIONS(2535), - [anon_sym_operator] = ACTIONS(2535), - [anon_sym_try] = ACTIONS(2535), - [anon_sym_delete] = ACTIONS(2535), - [anon_sym_throw] = ACTIONS(2535), - [anon_sym_namespace] = ACTIONS(2535), - [anon_sym_using] = ACTIONS(2535), - [anon_sym_static_assert] = ACTIONS(2535), - [anon_sym_concept] = ACTIONS(2535), - [anon_sym_co_return] = ACTIONS(2535), - [anon_sym_co_yield] = ACTIONS(2535), - [anon_sym_R_DQUOTE] = ACTIONS(2537), - [anon_sym_LR_DQUOTE] = ACTIONS(2537), - [anon_sym_uR_DQUOTE] = ACTIONS(2537), - [anon_sym_UR_DQUOTE] = ACTIONS(2537), - [anon_sym_u8R_DQUOTE] = ACTIONS(2537), - [anon_sym_co_await] = ACTIONS(2535), - [anon_sym_new] = ACTIONS(2535), - [anon_sym_requires] = ACTIONS(2535), - [sym_this] = ACTIONS(2535), - [sym_nullptr] = ACTIONS(2535), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, - [857] = { - [ts_builtin_sym_end] = ACTIONS(2541), - [sym_identifier] = ACTIONS(2539), - [aux_sym_preproc_include_token1] = ACTIONS(2539), - [aux_sym_preproc_def_token1] = ACTIONS(2539), - [aux_sym_preproc_if_token1] = ACTIONS(2539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2539), - [sym_preproc_directive] = ACTIONS(2539), - [anon_sym_LPAREN2] = ACTIONS(2541), - [anon_sym_BANG] = ACTIONS(2541), - [anon_sym_TILDE] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_PLUS] = ACTIONS(2539), - [anon_sym_STAR] = ACTIONS(2541), - [anon_sym_AMP_AMP] = ACTIONS(2541), - [anon_sym_AMP] = ACTIONS(2539), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_typedef] = ACTIONS(2539), - [anon_sym_extern] = ACTIONS(2539), - [anon_sym___attribute__] = ACTIONS(2539), - [anon_sym_COLON_COLON] = ACTIONS(2541), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2541), - [anon_sym___declspec] = ACTIONS(2539), - [anon_sym___based] = ACTIONS(2539), - [anon_sym___cdecl] = ACTIONS(2539), - [anon_sym___clrcall] = ACTIONS(2539), - [anon_sym___stdcall] = ACTIONS(2539), - [anon_sym___fastcall] = ACTIONS(2539), - [anon_sym___thiscall] = ACTIONS(2539), - [anon_sym___vectorcall] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2539), - [anon_sym_static] = ACTIONS(2539), - [anon_sym_register] = ACTIONS(2539), - [anon_sym_inline] = ACTIONS(2539), - [anon_sym_thread_local] = ACTIONS(2539), - [anon_sym_const] = ACTIONS(2539), - [anon_sym_volatile] = ACTIONS(2539), - [anon_sym_restrict] = ACTIONS(2539), - [anon_sym__Atomic] = ACTIONS(2539), - [anon_sym_mutable] = ACTIONS(2539), - [anon_sym_constexpr] = ACTIONS(2539), - [anon_sym_constinit] = ACTIONS(2539), - [anon_sym_consteval] = ACTIONS(2539), - [anon_sym_signed] = ACTIONS(2539), - [anon_sym_unsigned] = ACTIONS(2539), - [anon_sym_long] = ACTIONS(2539), - [anon_sym_short] = ACTIONS(2539), - [sym_primitive_type] = ACTIONS(2539), - [anon_sym_enum] = ACTIONS(2539), - [anon_sym_class] = ACTIONS(2539), - [anon_sym_struct] = ACTIONS(2539), - [anon_sym_union] = ACTIONS(2539), - [anon_sym_if] = ACTIONS(2539), - [anon_sym_else] = ACTIONS(2539), - [anon_sym_switch] = ACTIONS(2539), - [anon_sym_case] = ACTIONS(2539), - [anon_sym_default] = ACTIONS(2539), - [anon_sym_while] = ACTIONS(2539), - [anon_sym_do] = ACTIONS(2539), - [anon_sym_for] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2539), - [anon_sym_break] = ACTIONS(2539), - [anon_sym_continue] = ACTIONS(2539), - [anon_sym_goto] = ACTIONS(2539), - [anon_sym_not] = ACTIONS(2539), - [anon_sym_compl] = ACTIONS(2539), - [anon_sym_DASH_DASH] = ACTIONS(2541), - [anon_sym_PLUS_PLUS] = ACTIONS(2541), - [anon_sym_sizeof] = ACTIONS(2539), - [sym_number_literal] = ACTIONS(2541), - [anon_sym_L_SQUOTE] = ACTIONS(2541), - [anon_sym_u_SQUOTE] = ACTIONS(2541), - [anon_sym_U_SQUOTE] = ACTIONS(2541), - [anon_sym_u8_SQUOTE] = ACTIONS(2541), - [anon_sym_SQUOTE] = ACTIONS(2541), - [anon_sym_L_DQUOTE] = ACTIONS(2541), - [anon_sym_u_DQUOTE] = ACTIONS(2541), - [anon_sym_U_DQUOTE] = ACTIONS(2541), - [anon_sym_u8_DQUOTE] = ACTIONS(2541), - [anon_sym_DQUOTE] = ACTIONS(2541), - [sym_true] = ACTIONS(2539), - [sym_false] = ACTIONS(2539), - [sym_null] = ACTIONS(2539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2539), - [anon_sym_decltype] = ACTIONS(2539), - [anon_sym_virtual] = ACTIONS(2539), - [anon_sym_explicit] = ACTIONS(2539), - [anon_sym_typename] = ACTIONS(2539), - [anon_sym_template] = ACTIONS(2539), - [anon_sym_operator] = ACTIONS(2539), - [anon_sym_try] = ACTIONS(2539), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_throw] = ACTIONS(2539), - [anon_sym_namespace] = ACTIONS(2539), - [anon_sym_using] = ACTIONS(2539), - [anon_sym_static_assert] = ACTIONS(2539), - [anon_sym_concept] = ACTIONS(2539), - [anon_sym_co_return] = ACTIONS(2539), - [anon_sym_co_yield] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2541), - [anon_sym_LR_DQUOTE] = ACTIONS(2541), - [anon_sym_uR_DQUOTE] = ACTIONS(2541), - [anon_sym_UR_DQUOTE] = ACTIONS(2541), - [anon_sym_u8R_DQUOTE] = ACTIONS(2541), - [anon_sym_co_await] = ACTIONS(2539), - [anon_sym_new] = ACTIONS(2539), - [anon_sym_requires] = ACTIONS(2539), - [sym_this] = ACTIONS(2539), - [sym_nullptr] = ACTIONS(2539), - }, - [858] = { - [sym_identifier] = ACTIONS(2539), - [aux_sym_preproc_include_token1] = ACTIONS(2539), - [aux_sym_preproc_def_token1] = ACTIONS(2539), - [aux_sym_preproc_if_token1] = ACTIONS(2539), - [aux_sym_preproc_if_token2] = ACTIONS(2539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2539), - [sym_preproc_directive] = ACTIONS(2539), - [anon_sym_LPAREN2] = ACTIONS(2541), - [anon_sym_BANG] = ACTIONS(2541), - [anon_sym_TILDE] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_PLUS] = ACTIONS(2539), - [anon_sym_STAR] = ACTIONS(2541), - [anon_sym_AMP_AMP] = ACTIONS(2541), - [anon_sym_AMP] = ACTIONS(2539), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_typedef] = ACTIONS(2539), - [anon_sym_extern] = ACTIONS(2539), - [anon_sym___attribute__] = ACTIONS(2539), - [anon_sym_COLON_COLON] = ACTIONS(2541), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2541), - [anon_sym___declspec] = ACTIONS(2539), - [anon_sym___based] = ACTIONS(2539), - [anon_sym___cdecl] = ACTIONS(2539), - [anon_sym___clrcall] = ACTIONS(2539), - [anon_sym___stdcall] = ACTIONS(2539), - [anon_sym___fastcall] = ACTIONS(2539), - [anon_sym___thiscall] = ACTIONS(2539), - [anon_sym___vectorcall] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2539), - [anon_sym_static] = ACTIONS(2539), - [anon_sym_register] = ACTIONS(2539), - [anon_sym_inline] = ACTIONS(2539), - [anon_sym_thread_local] = ACTIONS(2539), - [anon_sym_const] = ACTIONS(2539), - [anon_sym_volatile] = ACTIONS(2539), - [anon_sym_restrict] = ACTIONS(2539), - [anon_sym__Atomic] = ACTIONS(2539), - [anon_sym_mutable] = ACTIONS(2539), - [anon_sym_constexpr] = ACTIONS(2539), - [anon_sym_constinit] = ACTIONS(2539), - [anon_sym_consteval] = ACTIONS(2539), - [anon_sym_signed] = ACTIONS(2539), - [anon_sym_unsigned] = ACTIONS(2539), - [anon_sym_long] = ACTIONS(2539), - [anon_sym_short] = ACTIONS(2539), - [sym_primitive_type] = ACTIONS(2539), - [anon_sym_enum] = ACTIONS(2539), - [anon_sym_class] = ACTIONS(2539), - [anon_sym_struct] = ACTIONS(2539), - [anon_sym_union] = ACTIONS(2539), - [anon_sym_if] = ACTIONS(2539), - [anon_sym_else] = ACTIONS(2539), - [anon_sym_switch] = ACTIONS(2539), - [anon_sym_case] = ACTIONS(2539), - [anon_sym_default] = ACTIONS(2539), - [anon_sym_while] = ACTIONS(2539), - [anon_sym_do] = ACTIONS(2539), - [anon_sym_for] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2539), - [anon_sym_break] = ACTIONS(2539), - [anon_sym_continue] = ACTIONS(2539), - [anon_sym_goto] = ACTIONS(2539), - [anon_sym_not] = ACTIONS(2539), - [anon_sym_compl] = ACTIONS(2539), - [anon_sym_DASH_DASH] = ACTIONS(2541), - [anon_sym_PLUS_PLUS] = ACTIONS(2541), - [anon_sym_sizeof] = ACTIONS(2539), - [sym_number_literal] = ACTIONS(2541), - [anon_sym_L_SQUOTE] = ACTIONS(2541), - [anon_sym_u_SQUOTE] = ACTIONS(2541), - [anon_sym_U_SQUOTE] = ACTIONS(2541), - [anon_sym_u8_SQUOTE] = ACTIONS(2541), - [anon_sym_SQUOTE] = ACTIONS(2541), - [anon_sym_L_DQUOTE] = ACTIONS(2541), - [anon_sym_u_DQUOTE] = ACTIONS(2541), - [anon_sym_U_DQUOTE] = ACTIONS(2541), - [anon_sym_u8_DQUOTE] = ACTIONS(2541), - [anon_sym_DQUOTE] = ACTIONS(2541), - [sym_true] = ACTIONS(2539), - [sym_false] = ACTIONS(2539), - [sym_null] = ACTIONS(2539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2539), - [anon_sym_decltype] = ACTIONS(2539), - [anon_sym_virtual] = ACTIONS(2539), - [anon_sym_explicit] = ACTIONS(2539), - [anon_sym_typename] = ACTIONS(2539), - [anon_sym_template] = ACTIONS(2539), - [anon_sym_operator] = ACTIONS(2539), - [anon_sym_try] = ACTIONS(2539), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_throw] = ACTIONS(2539), - [anon_sym_namespace] = ACTIONS(2539), - [anon_sym_using] = ACTIONS(2539), - [anon_sym_static_assert] = ACTIONS(2539), - [anon_sym_concept] = ACTIONS(2539), - [anon_sym_co_return] = ACTIONS(2539), - [anon_sym_co_yield] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2541), - [anon_sym_LR_DQUOTE] = ACTIONS(2541), - [anon_sym_uR_DQUOTE] = ACTIONS(2541), - [anon_sym_UR_DQUOTE] = ACTIONS(2541), - [anon_sym_u8R_DQUOTE] = ACTIONS(2541), - [anon_sym_co_await] = ACTIONS(2539), - [anon_sym_new] = ACTIONS(2539), - [anon_sym_requires] = ACTIONS(2539), - [sym_this] = ACTIONS(2539), - [sym_nullptr] = ACTIONS(2539), - }, - [859] = { - [sym_identifier] = ACTIONS(2535), - [aux_sym_preproc_include_token1] = ACTIONS(2535), - [aux_sym_preproc_def_token1] = ACTIONS(2535), - [aux_sym_preproc_if_token1] = ACTIONS(2535), - [aux_sym_preproc_if_token2] = ACTIONS(2535), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2535), - [sym_preproc_directive] = ACTIONS(2535), - [anon_sym_LPAREN2] = ACTIONS(2537), - [anon_sym_BANG] = ACTIONS(2537), - [anon_sym_TILDE] = ACTIONS(2537), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP_AMP] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_typedef] = ACTIONS(2535), - [anon_sym_extern] = ACTIONS(2535), - [anon_sym___attribute__] = ACTIONS(2535), - [anon_sym_COLON_COLON] = ACTIONS(2537), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), - [anon_sym___declspec] = ACTIONS(2535), - [anon_sym___based] = ACTIONS(2535), - [anon_sym___cdecl] = ACTIONS(2535), - [anon_sym___clrcall] = ACTIONS(2535), - [anon_sym___stdcall] = ACTIONS(2535), - [anon_sym___fastcall] = ACTIONS(2535), - [anon_sym___thiscall] = ACTIONS(2535), - [anon_sym___vectorcall] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2535), - [anon_sym_static] = ACTIONS(2535), - [anon_sym_register] = ACTIONS(2535), - [anon_sym_inline] = ACTIONS(2535), - [anon_sym_thread_local] = ACTIONS(2535), - [anon_sym_const] = ACTIONS(2535), - [anon_sym_volatile] = ACTIONS(2535), - [anon_sym_restrict] = ACTIONS(2535), - [anon_sym__Atomic] = ACTIONS(2535), - [anon_sym_mutable] = ACTIONS(2535), - [anon_sym_constexpr] = ACTIONS(2535), - [anon_sym_constinit] = ACTIONS(2535), - [anon_sym_consteval] = ACTIONS(2535), - [anon_sym_signed] = ACTIONS(2535), - [anon_sym_unsigned] = ACTIONS(2535), - [anon_sym_long] = ACTIONS(2535), - [anon_sym_short] = ACTIONS(2535), - [sym_primitive_type] = ACTIONS(2535), - [anon_sym_enum] = ACTIONS(2535), - [anon_sym_class] = ACTIONS(2535), - [anon_sym_struct] = ACTIONS(2535), - [anon_sym_union] = ACTIONS(2535), - [anon_sym_if] = ACTIONS(2535), - [anon_sym_else] = ACTIONS(2535), - [anon_sym_switch] = ACTIONS(2535), - [anon_sym_case] = ACTIONS(2535), - [anon_sym_default] = ACTIONS(2535), - [anon_sym_while] = ACTIONS(2535), - [anon_sym_do] = ACTIONS(2535), - [anon_sym_for] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2535), - [anon_sym_continue] = ACTIONS(2535), - [anon_sym_goto] = ACTIONS(2535), - [anon_sym_not] = ACTIONS(2535), - [anon_sym_compl] = ACTIONS(2535), - [anon_sym_DASH_DASH] = ACTIONS(2537), - [anon_sym_PLUS_PLUS] = ACTIONS(2537), - [anon_sym_sizeof] = ACTIONS(2535), - [sym_number_literal] = ACTIONS(2537), - [anon_sym_L_SQUOTE] = ACTIONS(2537), - [anon_sym_u_SQUOTE] = ACTIONS(2537), - [anon_sym_U_SQUOTE] = ACTIONS(2537), - [anon_sym_u8_SQUOTE] = ACTIONS(2537), - [anon_sym_SQUOTE] = ACTIONS(2537), - [anon_sym_L_DQUOTE] = ACTIONS(2537), - [anon_sym_u_DQUOTE] = ACTIONS(2537), - [anon_sym_U_DQUOTE] = ACTIONS(2537), - [anon_sym_u8_DQUOTE] = ACTIONS(2537), - [anon_sym_DQUOTE] = ACTIONS(2537), - [sym_true] = ACTIONS(2535), - [sym_false] = ACTIONS(2535), - [sym_null] = ACTIONS(2535), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2535), - [anon_sym_decltype] = ACTIONS(2535), - [anon_sym_virtual] = ACTIONS(2535), - [anon_sym_explicit] = ACTIONS(2535), - [anon_sym_typename] = ACTIONS(2535), - [anon_sym_template] = ACTIONS(2535), - [anon_sym_operator] = ACTIONS(2535), - [anon_sym_try] = ACTIONS(2535), - [anon_sym_delete] = ACTIONS(2535), - [anon_sym_throw] = ACTIONS(2535), - [anon_sym_namespace] = ACTIONS(2535), - [anon_sym_using] = ACTIONS(2535), - [anon_sym_static_assert] = ACTIONS(2535), - [anon_sym_concept] = ACTIONS(2535), - [anon_sym_co_return] = ACTIONS(2535), - [anon_sym_co_yield] = ACTIONS(2535), - [anon_sym_R_DQUOTE] = ACTIONS(2537), - [anon_sym_LR_DQUOTE] = ACTIONS(2537), - [anon_sym_uR_DQUOTE] = ACTIONS(2537), - [anon_sym_UR_DQUOTE] = ACTIONS(2537), - [anon_sym_u8R_DQUOTE] = ACTIONS(2537), - [anon_sym_co_await] = ACTIONS(2535), - [anon_sym_new] = ACTIONS(2535), - [anon_sym_requires] = ACTIONS(2535), - [sym_this] = ACTIONS(2535), - [sym_nullptr] = ACTIONS(2535), - }, - [860] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [861] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [862] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [863] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [864] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [865] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [866] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [867] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [868] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [869] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [870] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [871] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [872] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [873] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [874] = { + [707] = { [sym_identifier] = ACTIONS(2507), [aux_sym_preproc_include_token1] = ACTIONS(2507), [aux_sym_preproc_def_token1] = ACTIONS(2507), @@ -137003,6 +118664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2507), [anon_sym_inline] = ACTIONS(2507), [anon_sym_thread_local] = ACTIONS(2507), + [anon_sym_input] = ACTIONS(2507), [anon_sym_const] = ACTIONS(2507), [anon_sym_volatile] = ACTIONS(2507), [anon_sym_restrict] = ACTIONS(2507), @@ -137079,7 +118741,6847 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2507), [sym_nullptr] = ACTIONS(2507), }, - [875] = { + [708] = { + [ts_builtin_sym_end] = ACTIONS(2505), + [sym_identifier] = ACTIONS(2503), + [aux_sym_preproc_include_token1] = ACTIONS(2503), + [aux_sym_preproc_def_token1] = ACTIONS(2503), + [aux_sym_preproc_if_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), + [sym_preproc_directive] = ACTIONS(2503), + [anon_sym_LPAREN2] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_typedef] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym___attribute__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), + [anon_sym___declspec] = ACTIONS(2503), + [anon_sym___based] = ACTIONS(2503), + [anon_sym___cdecl] = ACTIONS(2503), + [anon_sym___clrcall] = ACTIONS(2503), + [anon_sym___stdcall] = ACTIONS(2503), + [anon_sym___fastcall] = ACTIONS(2503), + [anon_sym___thiscall] = ACTIONS(2503), + [anon_sym___vectorcall] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_register] = ACTIONS(2503), + [anon_sym_inline] = ACTIONS(2503), + [anon_sym_thread_local] = ACTIONS(2503), + [anon_sym_input] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_volatile] = ACTIONS(2503), + [anon_sym_restrict] = ACTIONS(2503), + [anon_sym__Atomic] = ACTIONS(2503), + [anon_sym_mutable] = ACTIONS(2503), + [anon_sym_constexpr] = ACTIONS(2503), + [anon_sym_constinit] = ACTIONS(2503), + [anon_sym_consteval] = ACTIONS(2503), + [anon_sym_signed] = ACTIONS(2503), + [anon_sym_unsigned] = ACTIONS(2503), + [anon_sym_long] = ACTIONS(2503), + [anon_sym_short] = ACTIONS(2503), + [sym_primitive_type] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_else] = ACTIONS(2503), + [anon_sym_switch] = ACTIONS(2503), + [anon_sym_case] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_goto] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_sizeof] = ACTIONS(2503), + [sym_number_literal] = ACTIONS(2505), + [anon_sym_L_SQUOTE] = ACTIONS(2505), + [anon_sym_u_SQUOTE] = ACTIONS(2505), + [anon_sym_U_SQUOTE] = ACTIONS(2505), + [anon_sym_u8_SQUOTE] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_L_DQUOTE] = ACTIONS(2505), + [anon_sym_u_DQUOTE] = ACTIONS(2505), + [anon_sym_U_DQUOTE] = ACTIONS(2505), + [anon_sym_u8_DQUOTE] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym_true] = ACTIONS(2503), + [sym_false] = ACTIONS(2503), + [sym_null] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2503), + [anon_sym_decltype] = ACTIONS(2503), + [anon_sym_virtual] = ACTIONS(2503), + [anon_sym_explicit] = ACTIONS(2503), + [anon_sym_typename] = ACTIONS(2503), + [anon_sym_template] = ACTIONS(2503), + [anon_sym_operator] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [anon_sym_delete] = ACTIONS(2503), + [anon_sym_throw] = ACTIONS(2503), + [anon_sym_namespace] = ACTIONS(2503), + [anon_sym_using] = ACTIONS(2503), + [anon_sym_static_assert] = ACTIONS(2503), + [anon_sym_concept] = ACTIONS(2503), + [anon_sym_co_return] = ACTIONS(2503), + [anon_sym_co_yield] = ACTIONS(2503), + [anon_sym_R_DQUOTE] = ACTIONS(2505), + [anon_sym_LR_DQUOTE] = ACTIONS(2505), + [anon_sym_uR_DQUOTE] = ACTIONS(2505), + [anon_sym_UR_DQUOTE] = ACTIONS(2505), + [anon_sym_u8R_DQUOTE] = ACTIONS(2505), + [anon_sym_co_await] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2503), + [anon_sym_requires] = ACTIONS(2503), + [sym_this] = ACTIONS(2503), + [sym_nullptr] = ACTIONS(2503), + }, + [709] = { + [sym_identifier] = ACTIONS(2437), + [aux_sym_preproc_include_token1] = ACTIONS(2437), + [aux_sym_preproc_def_token1] = ACTIONS(2437), + [aux_sym_preproc_if_token1] = ACTIONS(2437), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2437), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2437), + [sym_preproc_directive] = ACTIONS(2437), + [anon_sym_LPAREN2] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_typedef] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym___attribute__] = ACTIONS(2437), + [anon_sym_COLON_COLON] = ACTIONS(2439), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2439), + [anon_sym___declspec] = ACTIONS(2437), + [anon_sym___based] = ACTIONS(2437), + [anon_sym___cdecl] = ACTIONS(2437), + [anon_sym___clrcall] = ACTIONS(2437), + [anon_sym___stdcall] = ACTIONS(2437), + [anon_sym___fastcall] = ACTIONS(2437), + [anon_sym___thiscall] = ACTIONS(2437), + [anon_sym___vectorcall] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_register] = ACTIONS(2437), + [anon_sym_inline] = ACTIONS(2437), + [anon_sym_thread_local] = ACTIONS(2437), + [anon_sym_input] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_volatile] = ACTIONS(2437), + [anon_sym_restrict] = ACTIONS(2437), + [anon_sym__Atomic] = ACTIONS(2437), + [anon_sym_mutable] = ACTIONS(2437), + [anon_sym_constexpr] = ACTIONS(2437), + [anon_sym_constinit] = ACTIONS(2437), + [anon_sym_consteval] = ACTIONS(2437), + [anon_sym_signed] = ACTIONS(2437), + [anon_sym_unsigned] = ACTIONS(2437), + [anon_sym_long] = ACTIONS(2437), + [anon_sym_short] = ACTIONS(2437), + [sym_primitive_type] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_class] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2437), + [anon_sym_union] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_switch] = ACTIONS(2437), + [anon_sym_case] = ACTIONS(2437), + [anon_sym_default] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_goto] = ACTIONS(2437), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_compl] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(2439), + [anon_sym_sizeof] = ACTIONS(2437), + [sym_number_literal] = ACTIONS(2439), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2439), + [anon_sym_u_DQUOTE] = ACTIONS(2439), + [anon_sym_U_DQUOTE] = ACTIONS(2439), + [anon_sym_u8_DQUOTE] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(2439), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_null] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2437), + [anon_sym_decltype] = ACTIONS(2437), + [anon_sym_virtual] = ACTIONS(2437), + [anon_sym_explicit] = ACTIONS(2437), + [anon_sym_typename] = ACTIONS(2437), + [anon_sym_template] = ACTIONS(2437), + [anon_sym_operator] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_delete] = ACTIONS(2437), + [anon_sym_throw] = ACTIONS(2437), + [anon_sym_namespace] = ACTIONS(2437), + [anon_sym_using] = ACTIONS(2437), + [anon_sym_static_assert] = ACTIONS(2437), + [anon_sym_concept] = ACTIONS(2437), + [anon_sym_co_return] = ACTIONS(2437), + [anon_sym_co_yield] = ACTIONS(2437), + [anon_sym_R_DQUOTE] = ACTIONS(2439), + [anon_sym_LR_DQUOTE] = ACTIONS(2439), + [anon_sym_uR_DQUOTE] = ACTIONS(2439), + [anon_sym_UR_DQUOTE] = ACTIONS(2439), + [anon_sym_u8R_DQUOTE] = ACTIONS(2439), + [anon_sym_co_await] = ACTIONS(2437), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_requires] = ACTIONS(2437), + [sym_this] = ACTIONS(2437), + [sym_nullptr] = ACTIONS(2437), + }, + [710] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [711] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [712] = { + [sym_identifier] = ACTIONS(2441), + [aux_sym_preproc_include_token1] = ACTIONS(2441), + [aux_sym_preproc_def_token1] = ACTIONS(2441), + [aux_sym_preproc_if_token1] = ACTIONS(2441), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2441), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2441), + [sym_preproc_directive] = ACTIONS(2441), + [anon_sym_LPAREN2] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2441), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_typedef] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym___attribute__] = ACTIONS(2441), + [anon_sym_COLON_COLON] = ACTIONS(2443), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2443), + [anon_sym___declspec] = ACTIONS(2441), + [anon_sym___based] = ACTIONS(2441), + [anon_sym___cdecl] = ACTIONS(2441), + [anon_sym___clrcall] = ACTIONS(2441), + [anon_sym___stdcall] = ACTIONS(2441), + [anon_sym___fastcall] = ACTIONS(2441), + [anon_sym___thiscall] = ACTIONS(2441), + [anon_sym___vectorcall] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_register] = ACTIONS(2441), + [anon_sym_inline] = ACTIONS(2441), + [anon_sym_thread_local] = ACTIONS(2441), + [anon_sym_input] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_volatile] = ACTIONS(2441), + [anon_sym_restrict] = ACTIONS(2441), + [anon_sym__Atomic] = ACTIONS(2441), + [anon_sym_mutable] = ACTIONS(2441), + [anon_sym_constexpr] = ACTIONS(2441), + [anon_sym_constinit] = ACTIONS(2441), + [anon_sym_consteval] = ACTIONS(2441), + [anon_sym_signed] = ACTIONS(2441), + [anon_sym_unsigned] = ACTIONS(2441), + [anon_sym_long] = ACTIONS(2441), + [anon_sym_short] = ACTIONS(2441), + [sym_primitive_type] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_class] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2441), + [anon_sym_union] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_switch] = ACTIONS(2441), + [anon_sym_case] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_goto] = ACTIONS(2441), + [anon_sym_not] = ACTIONS(2441), + [anon_sym_compl] = ACTIONS(2441), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(2441), + [sym_number_literal] = ACTIONS(2443), + [anon_sym_L_SQUOTE] = ACTIONS(2443), + [anon_sym_u_SQUOTE] = ACTIONS(2443), + [anon_sym_U_SQUOTE] = ACTIONS(2443), + [anon_sym_u8_SQUOTE] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_L_DQUOTE] = ACTIONS(2443), + [anon_sym_u_DQUOTE] = ACTIONS(2443), + [anon_sym_U_DQUOTE] = ACTIONS(2443), + [anon_sym_u8_DQUOTE] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [sym_true] = ACTIONS(2441), + [sym_false] = ACTIONS(2441), + [sym_null] = ACTIONS(2441), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2441), + [anon_sym_decltype] = ACTIONS(2441), + [anon_sym_virtual] = ACTIONS(2441), + [anon_sym_explicit] = ACTIONS(2441), + [anon_sym_typename] = ACTIONS(2441), + [anon_sym_template] = ACTIONS(2441), + [anon_sym_operator] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_delete] = ACTIONS(2441), + [anon_sym_throw] = ACTIONS(2441), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_using] = ACTIONS(2441), + [anon_sym_static_assert] = ACTIONS(2441), + [anon_sym_concept] = ACTIONS(2441), + [anon_sym_co_return] = ACTIONS(2441), + [anon_sym_co_yield] = ACTIONS(2441), + [anon_sym_R_DQUOTE] = ACTIONS(2443), + [anon_sym_LR_DQUOTE] = ACTIONS(2443), + [anon_sym_uR_DQUOTE] = ACTIONS(2443), + [anon_sym_UR_DQUOTE] = ACTIONS(2443), + [anon_sym_u8R_DQUOTE] = ACTIONS(2443), + [anon_sym_co_await] = ACTIONS(2441), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_requires] = ACTIONS(2441), + [sym_this] = ACTIONS(2441), + [sym_nullptr] = ACTIONS(2441), + }, + [713] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [714] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [715] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [716] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [717] = { + [sym_identifier] = ACTIONS(2515), + [aux_sym_preproc_include_token1] = ACTIONS(2515), + [aux_sym_preproc_def_token1] = ACTIONS(2515), + [aux_sym_preproc_if_token1] = ACTIONS(2515), + [aux_sym_preproc_if_token2] = ACTIONS(2515), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2515), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2515), + [sym_preproc_directive] = ACTIONS(2515), + [anon_sym_LPAREN2] = ACTIONS(2517), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_TILDE] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2515), + [anon_sym_PLUS] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2517), + [anon_sym_typedef] = ACTIONS(2515), + [anon_sym_extern] = ACTIONS(2515), + [anon_sym___attribute__] = ACTIONS(2515), + [anon_sym_COLON_COLON] = ACTIONS(2517), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2517), + [anon_sym___declspec] = ACTIONS(2515), + [anon_sym___based] = ACTIONS(2515), + [anon_sym___cdecl] = ACTIONS(2515), + [anon_sym___clrcall] = ACTIONS(2515), + [anon_sym___stdcall] = ACTIONS(2515), + [anon_sym___fastcall] = ACTIONS(2515), + [anon_sym___thiscall] = ACTIONS(2515), + [anon_sym___vectorcall] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_static] = ACTIONS(2515), + [anon_sym_register] = ACTIONS(2515), + [anon_sym_inline] = ACTIONS(2515), + [anon_sym_thread_local] = ACTIONS(2515), + [anon_sym_input] = ACTIONS(2515), + [anon_sym_const] = ACTIONS(2515), + [anon_sym_volatile] = ACTIONS(2515), + [anon_sym_restrict] = ACTIONS(2515), + [anon_sym__Atomic] = ACTIONS(2515), + [anon_sym_mutable] = ACTIONS(2515), + [anon_sym_constexpr] = ACTIONS(2515), + [anon_sym_constinit] = ACTIONS(2515), + [anon_sym_consteval] = ACTIONS(2515), + [anon_sym_signed] = ACTIONS(2515), + [anon_sym_unsigned] = ACTIONS(2515), + [anon_sym_long] = ACTIONS(2515), + [anon_sym_short] = ACTIONS(2515), + [sym_primitive_type] = ACTIONS(2515), + [anon_sym_enum] = ACTIONS(2515), + [anon_sym_class] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(2515), + [anon_sym_union] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2515), + [anon_sym_else] = ACTIONS(2515), + [anon_sym_switch] = ACTIONS(2515), + [anon_sym_case] = ACTIONS(2515), + [anon_sym_default] = ACTIONS(2515), + [anon_sym_while] = ACTIONS(2515), + [anon_sym_do] = ACTIONS(2515), + [anon_sym_for] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2515), + [anon_sym_break] = ACTIONS(2515), + [anon_sym_continue] = ACTIONS(2515), + [anon_sym_goto] = ACTIONS(2515), + [anon_sym_not] = ACTIONS(2515), + [anon_sym_compl] = ACTIONS(2515), + [anon_sym_DASH_DASH] = ACTIONS(2517), + [anon_sym_PLUS_PLUS] = ACTIONS(2517), + [anon_sym_sizeof] = ACTIONS(2515), + [sym_number_literal] = ACTIONS(2517), + [anon_sym_L_SQUOTE] = ACTIONS(2517), + [anon_sym_u_SQUOTE] = ACTIONS(2517), + [anon_sym_U_SQUOTE] = ACTIONS(2517), + [anon_sym_u8_SQUOTE] = ACTIONS(2517), + [anon_sym_SQUOTE] = ACTIONS(2517), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_null] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2515), + [anon_sym_decltype] = ACTIONS(2515), + [anon_sym_virtual] = ACTIONS(2515), + [anon_sym_explicit] = ACTIONS(2515), + [anon_sym_typename] = ACTIONS(2515), + [anon_sym_template] = ACTIONS(2515), + [anon_sym_operator] = ACTIONS(2515), + [anon_sym_try] = ACTIONS(2515), + [anon_sym_delete] = ACTIONS(2515), + [anon_sym_throw] = ACTIONS(2515), + [anon_sym_namespace] = ACTIONS(2515), + [anon_sym_using] = ACTIONS(2515), + [anon_sym_static_assert] = ACTIONS(2515), + [anon_sym_concept] = ACTIONS(2515), + [anon_sym_co_return] = ACTIONS(2515), + [anon_sym_co_yield] = ACTIONS(2515), + [anon_sym_R_DQUOTE] = ACTIONS(2517), + [anon_sym_LR_DQUOTE] = ACTIONS(2517), + [anon_sym_uR_DQUOTE] = ACTIONS(2517), + [anon_sym_UR_DQUOTE] = ACTIONS(2517), + [anon_sym_u8R_DQUOTE] = ACTIONS(2517), + [anon_sym_co_await] = ACTIONS(2515), + [anon_sym_new] = ACTIONS(2515), + [anon_sym_requires] = ACTIONS(2515), + [sym_this] = ACTIONS(2515), + [sym_nullptr] = ACTIONS(2515), + }, + [718] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [719] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [720] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [721] = { + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2441), + [aux_sym_preproc_include_token1] = ACTIONS(2441), + [aux_sym_preproc_def_token1] = ACTIONS(2441), + [aux_sym_preproc_if_token1] = ACTIONS(2441), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2441), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2441), + [sym_preproc_directive] = ACTIONS(2441), + [anon_sym_LPAREN2] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2441), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_typedef] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym___attribute__] = ACTIONS(2441), + [anon_sym_COLON_COLON] = ACTIONS(2443), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2443), + [anon_sym___declspec] = ACTIONS(2441), + [anon_sym___based] = ACTIONS(2441), + [anon_sym___cdecl] = ACTIONS(2441), + [anon_sym___clrcall] = ACTIONS(2441), + [anon_sym___stdcall] = ACTIONS(2441), + [anon_sym___fastcall] = ACTIONS(2441), + [anon_sym___thiscall] = ACTIONS(2441), + [anon_sym___vectorcall] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_register] = ACTIONS(2441), + [anon_sym_inline] = ACTIONS(2441), + [anon_sym_thread_local] = ACTIONS(2441), + [anon_sym_input] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_volatile] = ACTIONS(2441), + [anon_sym_restrict] = ACTIONS(2441), + [anon_sym__Atomic] = ACTIONS(2441), + [anon_sym_mutable] = ACTIONS(2441), + [anon_sym_constexpr] = ACTIONS(2441), + [anon_sym_constinit] = ACTIONS(2441), + [anon_sym_consteval] = ACTIONS(2441), + [anon_sym_signed] = ACTIONS(2441), + [anon_sym_unsigned] = ACTIONS(2441), + [anon_sym_long] = ACTIONS(2441), + [anon_sym_short] = ACTIONS(2441), + [sym_primitive_type] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_class] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2441), + [anon_sym_union] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_switch] = ACTIONS(2441), + [anon_sym_case] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_goto] = ACTIONS(2441), + [anon_sym_not] = ACTIONS(2441), + [anon_sym_compl] = ACTIONS(2441), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(2441), + [sym_number_literal] = ACTIONS(2443), + [anon_sym_L_SQUOTE] = ACTIONS(2443), + [anon_sym_u_SQUOTE] = ACTIONS(2443), + [anon_sym_U_SQUOTE] = ACTIONS(2443), + [anon_sym_u8_SQUOTE] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_L_DQUOTE] = ACTIONS(2443), + [anon_sym_u_DQUOTE] = ACTIONS(2443), + [anon_sym_U_DQUOTE] = ACTIONS(2443), + [anon_sym_u8_DQUOTE] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [sym_true] = ACTIONS(2441), + [sym_false] = ACTIONS(2441), + [sym_null] = ACTIONS(2441), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2441), + [anon_sym_decltype] = ACTIONS(2441), + [anon_sym_virtual] = ACTIONS(2441), + [anon_sym_explicit] = ACTIONS(2441), + [anon_sym_typename] = ACTIONS(2441), + [anon_sym_template] = ACTIONS(2441), + [anon_sym_operator] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_delete] = ACTIONS(2441), + [anon_sym_throw] = ACTIONS(2441), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_using] = ACTIONS(2441), + [anon_sym_static_assert] = ACTIONS(2441), + [anon_sym_concept] = ACTIONS(2441), + [anon_sym_co_return] = ACTIONS(2441), + [anon_sym_co_yield] = ACTIONS(2441), + [anon_sym_R_DQUOTE] = ACTIONS(2443), + [anon_sym_LR_DQUOTE] = ACTIONS(2443), + [anon_sym_uR_DQUOTE] = ACTIONS(2443), + [anon_sym_UR_DQUOTE] = ACTIONS(2443), + [anon_sym_u8R_DQUOTE] = ACTIONS(2443), + [anon_sym_co_await] = ACTIONS(2441), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_requires] = ACTIONS(2441), + [sym_this] = ACTIONS(2441), + [sym_nullptr] = ACTIONS(2441), + }, + [722] = { + [sym_identifier] = ACTIONS(2445), + [aux_sym_preproc_include_token1] = ACTIONS(2445), + [aux_sym_preproc_def_token1] = ACTIONS(2445), + [aux_sym_preproc_if_token1] = ACTIONS(2445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2445), + [sym_preproc_directive] = ACTIONS(2445), + [anon_sym_LPAREN2] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2447), + [anon_sym_AMP_AMP] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_typedef] = ACTIONS(2445), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym___attribute__] = ACTIONS(2445), + [anon_sym_COLON_COLON] = ACTIONS(2447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2447), + [anon_sym___declspec] = ACTIONS(2445), + [anon_sym___based] = ACTIONS(2445), + [anon_sym___cdecl] = ACTIONS(2445), + [anon_sym___clrcall] = ACTIONS(2445), + [anon_sym___stdcall] = ACTIONS(2445), + [anon_sym___fastcall] = ACTIONS(2445), + [anon_sym___thiscall] = ACTIONS(2445), + [anon_sym___vectorcall] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_register] = ACTIONS(2445), + [anon_sym_inline] = ACTIONS(2445), + [anon_sym_thread_local] = ACTIONS(2445), + [anon_sym_input] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_volatile] = ACTIONS(2445), + [anon_sym_restrict] = ACTIONS(2445), + [anon_sym__Atomic] = ACTIONS(2445), + [anon_sym_mutable] = ACTIONS(2445), + [anon_sym_constexpr] = ACTIONS(2445), + [anon_sym_constinit] = ACTIONS(2445), + [anon_sym_consteval] = ACTIONS(2445), + [anon_sym_signed] = ACTIONS(2445), + [anon_sym_unsigned] = ACTIONS(2445), + [anon_sym_long] = ACTIONS(2445), + [anon_sym_short] = ACTIONS(2445), + [sym_primitive_type] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_class] = ACTIONS(2445), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_union] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_switch] = ACTIONS(2445), + [anon_sym_case] = ACTIONS(2445), + [anon_sym_default] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_goto] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2445), + [anon_sym_compl] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(2447), + [anon_sym_sizeof] = ACTIONS(2445), + [sym_number_literal] = ACTIONS(2447), + [anon_sym_L_SQUOTE] = ACTIONS(2447), + [anon_sym_u_SQUOTE] = ACTIONS(2447), + [anon_sym_U_SQUOTE] = ACTIONS(2447), + [anon_sym_u8_SQUOTE] = ACTIONS(2447), + [anon_sym_SQUOTE] = ACTIONS(2447), + [anon_sym_L_DQUOTE] = ACTIONS(2447), + [anon_sym_u_DQUOTE] = ACTIONS(2447), + [anon_sym_U_DQUOTE] = ACTIONS(2447), + [anon_sym_u8_DQUOTE] = ACTIONS(2447), + [anon_sym_DQUOTE] = ACTIONS(2447), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_null] = ACTIONS(2445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2445), + [anon_sym_virtual] = ACTIONS(2445), + [anon_sym_explicit] = ACTIONS(2445), + [anon_sym_typename] = ACTIONS(2445), + [anon_sym_template] = ACTIONS(2445), + [anon_sym_operator] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_delete] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_using] = ACTIONS(2445), + [anon_sym_static_assert] = ACTIONS(2445), + [anon_sym_concept] = ACTIONS(2445), + [anon_sym_co_return] = ACTIONS(2445), + [anon_sym_co_yield] = ACTIONS(2445), + [anon_sym_R_DQUOTE] = ACTIONS(2447), + [anon_sym_LR_DQUOTE] = ACTIONS(2447), + [anon_sym_uR_DQUOTE] = ACTIONS(2447), + [anon_sym_UR_DQUOTE] = ACTIONS(2447), + [anon_sym_u8R_DQUOTE] = ACTIONS(2447), + [anon_sym_co_await] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_requires] = ACTIONS(2445), + [sym_this] = ACTIONS(2445), + [sym_nullptr] = ACTIONS(2445), + }, + [723] = { + [ts_builtin_sym_end] = ACTIONS(2439), + [sym_identifier] = ACTIONS(2437), + [aux_sym_preproc_include_token1] = ACTIONS(2437), + [aux_sym_preproc_def_token1] = ACTIONS(2437), + [aux_sym_preproc_if_token1] = ACTIONS(2437), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2437), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2437), + [sym_preproc_directive] = ACTIONS(2437), + [anon_sym_LPAREN2] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_typedef] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym___attribute__] = ACTIONS(2437), + [anon_sym_COLON_COLON] = ACTIONS(2439), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2439), + [anon_sym___declspec] = ACTIONS(2437), + [anon_sym___based] = ACTIONS(2437), + [anon_sym___cdecl] = ACTIONS(2437), + [anon_sym___clrcall] = ACTIONS(2437), + [anon_sym___stdcall] = ACTIONS(2437), + [anon_sym___fastcall] = ACTIONS(2437), + [anon_sym___thiscall] = ACTIONS(2437), + [anon_sym___vectorcall] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_register] = ACTIONS(2437), + [anon_sym_inline] = ACTIONS(2437), + [anon_sym_thread_local] = ACTIONS(2437), + [anon_sym_input] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_volatile] = ACTIONS(2437), + [anon_sym_restrict] = ACTIONS(2437), + [anon_sym__Atomic] = ACTIONS(2437), + [anon_sym_mutable] = ACTIONS(2437), + [anon_sym_constexpr] = ACTIONS(2437), + [anon_sym_constinit] = ACTIONS(2437), + [anon_sym_consteval] = ACTIONS(2437), + [anon_sym_signed] = ACTIONS(2437), + [anon_sym_unsigned] = ACTIONS(2437), + [anon_sym_long] = ACTIONS(2437), + [anon_sym_short] = ACTIONS(2437), + [sym_primitive_type] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_class] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2437), + [anon_sym_union] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_switch] = ACTIONS(2437), + [anon_sym_case] = ACTIONS(2437), + [anon_sym_default] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_goto] = ACTIONS(2437), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_compl] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(2439), + [anon_sym_sizeof] = ACTIONS(2437), + [sym_number_literal] = ACTIONS(2439), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2439), + [anon_sym_u_DQUOTE] = ACTIONS(2439), + [anon_sym_U_DQUOTE] = ACTIONS(2439), + [anon_sym_u8_DQUOTE] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(2439), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_null] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2437), + [anon_sym_decltype] = ACTIONS(2437), + [anon_sym_virtual] = ACTIONS(2437), + [anon_sym_explicit] = ACTIONS(2437), + [anon_sym_typename] = ACTIONS(2437), + [anon_sym_template] = ACTIONS(2437), + [anon_sym_operator] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_delete] = ACTIONS(2437), + [anon_sym_throw] = ACTIONS(2437), + [anon_sym_namespace] = ACTIONS(2437), + [anon_sym_using] = ACTIONS(2437), + [anon_sym_static_assert] = ACTIONS(2437), + [anon_sym_concept] = ACTIONS(2437), + [anon_sym_co_return] = ACTIONS(2437), + [anon_sym_co_yield] = ACTIONS(2437), + [anon_sym_R_DQUOTE] = ACTIONS(2439), + [anon_sym_LR_DQUOTE] = ACTIONS(2439), + [anon_sym_uR_DQUOTE] = ACTIONS(2439), + [anon_sym_UR_DQUOTE] = ACTIONS(2439), + [anon_sym_u8R_DQUOTE] = ACTIONS(2439), + [anon_sym_co_await] = ACTIONS(2437), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_requires] = ACTIONS(2437), + [sym_this] = ACTIONS(2437), + [sym_nullptr] = ACTIONS(2437), + }, + [724] = { + [sym__declaration_modifiers] = STATE(2101), + [sym__declaration_specifiers] = STATE(5027), + [sym_attribute_specifier] = STATE(2101), + [sym_attribute_declaration] = STATE(2101), + [sym_ms_declspec_modifier] = STATE(2101), + [sym_storage_class_specifier] = STATE(2101), + [sym_type_qualifier] = STATE(2101), + [sym__type_specifier] = STATE(4065), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2101), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3336), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5396), + [sym_qualified_type_identifier] = STATE(3443), + [aux_sym__declaration_specifiers_repeat1] = STATE(2101), + [aux_sym_sized_type_specifier_repeat1] = STATE(3479), + [sym_identifier] = ACTIONS(2855), + [anon_sym_COMMA] = ACTIONS(2857), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_SLASH] = ACTIONS(2859), + [anon_sym_PERCENT] = ACTIONS(2859), + [anon_sym_PIPE_PIPE] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2859), + [anon_sym_CARET] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_EQ_EQ] = ACTIONS(2857), + [anon_sym_BANG_EQ] = ACTIONS(2857), + [anon_sym_GT] = ACTIONS(2859), + [anon_sym_GT_EQ] = ACTIONS(2857), + [anon_sym_LT_EQ] = ACTIONS(2859), + [anon_sym_LT] = ACTIONS(2859), + [anon_sym_LT_LT] = ACTIONS(2859), + [anon_sym_GT_GT] = ACTIONS(2859), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2861), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_EQ] = ACTIONS(2859), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2869), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2873), + [anon_sym_STAR_EQ] = ACTIONS(2857), + [anon_sym_SLASH_EQ] = ACTIONS(2857), + [anon_sym_PERCENT_EQ] = ACTIONS(2857), + [anon_sym_PLUS_EQ] = ACTIONS(2857), + [anon_sym_DASH_EQ] = ACTIONS(2857), + [anon_sym_LT_LT_EQ] = ACTIONS(2857), + [anon_sym_GT_GT_EQ] = ACTIONS(2857), + [anon_sym_AMP_EQ] = ACTIONS(2857), + [anon_sym_CARET_EQ] = ACTIONS(2857), + [anon_sym_PIPE_EQ] = ACTIONS(2857), + [anon_sym_and_eq] = ACTIONS(2859), + [anon_sym_or_eq] = ACTIONS(2859), + [anon_sym_xor_eq] = ACTIONS(2859), + [anon_sym_not] = ACTIONS(2859), + [anon_sym_compl] = ACTIONS(2859), + [anon_sym_LT_EQ_GT] = ACTIONS(2857), + [anon_sym_or] = ACTIONS(2859), + [anon_sym_and] = ACTIONS(2859), + [anon_sym_bitor] = ACTIONS(2859), + [anon_sym_xor] = ACTIONS(2859), + [anon_sym_bitand] = ACTIONS(2859), + [anon_sym_not_eq] = ACTIONS(2859), + [anon_sym_DASH_DASH] = ACTIONS(2857), + [anon_sym_PLUS_PLUS] = ACTIONS(2857), + [anon_sym_DASH_GT] = ACTIONS(2859), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2877), + [anon_sym_co_await] = ACTIONS(2859), + [anon_sym_new] = ACTIONS(2877), + [anon_sym_DASH_GT_STAR] = ACTIONS(2857), + [anon_sym_LPAREN_RPAREN] = ACTIONS(2857), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2857), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(2879), + }, + [725] = { + [ts_builtin_sym_end] = ACTIONS(2509), + [sym_identifier] = ACTIONS(2507), + [aux_sym_preproc_include_token1] = ACTIONS(2507), + [aux_sym_preproc_def_token1] = ACTIONS(2507), + [aux_sym_preproc_if_token1] = ACTIONS(2507), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2507), + [sym_preproc_directive] = ACTIONS(2507), + [anon_sym_LPAREN2] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2509), + [anon_sym_TILDE] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2509), + [anon_sym_AMP_AMP] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_typedef] = ACTIONS(2507), + [anon_sym_extern] = ACTIONS(2507), + [anon_sym___attribute__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), + [anon_sym___declspec] = ACTIONS(2507), + [anon_sym___based] = ACTIONS(2507), + [anon_sym___cdecl] = ACTIONS(2507), + [anon_sym___clrcall] = ACTIONS(2507), + [anon_sym___stdcall] = ACTIONS(2507), + [anon_sym___fastcall] = ACTIONS(2507), + [anon_sym___thiscall] = ACTIONS(2507), + [anon_sym___vectorcall] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2507), + [anon_sym_register] = ACTIONS(2507), + [anon_sym_inline] = ACTIONS(2507), + [anon_sym_thread_local] = ACTIONS(2507), + [anon_sym_input] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [anon_sym_volatile] = ACTIONS(2507), + [anon_sym_restrict] = ACTIONS(2507), + [anon_sym__Atomic] = ACTIONS(2507), + [anon_sym_mutable] = ACTIONS(2507), + [anon_sym_constexpr] = ACTIONS(2507), + [anon_sym_constinit] = ACTIONS(2507), + [anon_sym_consteval] = ACTIONS(2507), + [anon_sym_signed] = ACTIONS(2507), + [anon_sym_unsigned] = ACTIONS(2507), + [anon_sym_long] = ACTIONS(2507), + [anon_sym_short] = ACTIONS(2507), + [sym_primitive_type] = ACTIONS(2507), + [anon_sym_enum] = ACTIONS(2507), + [anon_sym_class] = ACTIONS(2507), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_union] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_else] = ACTIONS(2507), + [anon_sym_switch] = ACTIONS(2507), + [anon_sym_case] = ACTIONS(2507), + [anon_sym_default] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_do] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2507), + [anon_sym_not] = ACTIONS(2507), + [anon_sym_compl] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2509), + [anon_sym_sizeof] = ACTIONS(2507), + [sym_number_literal] = ACTIONS(2509), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2509), + [anon_sym_u_DQUOTE] = ACTIONS(2509), + [anon_sym_U_DQUOTE] = ACTIONS(2509), + [anon_sym_u8_DQUOTE] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2509), + [sym_true] = ACTIONS(2507), + [sym_false] = ACTIONS(2507), + [sym_null] = ACTIONS(2507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2507), + [anon_sym_decltype] = ACTIONS(2507), + [anon_sym_virtual] = ACTIONS(2507), + [anon_sym_explicit] = ACTIONS(2507), + [anon_sym_typename] = ACTIONS(2507), + [anon_sym_template] = ACTIONS(2507), + [anon_sym_operator] = ACTIONS(2507), + [anon_sym_try] = ACTIONS(2507), + [anon_sym_delete] = ACTIONS(2507), + [anon_sym_throw] = ACTIONS(2507), + [anon_sym_namespace] = ACTIONS(2507), + [anon_sym_using] = ACTIONS(2507), + [anon_sym_static_assert] = ACTIONS(2507), + [anon_sym_concept] = ACTIONS(2507), + [anon_sym_co_return] = ACTIONS(2507), + [anon_sym_co_yield] = ACTIONS(2507), + [anon_sym_R_DQUOTE] = ACTIONS(2509), + [anon_sym_LR_DQUOTE] = ACTIONS(2509), + [anon_sym_uR_DQUOTE] = ACTIONS(2509), + [anon_sym_UR_DQUOTE] = ACTIONS(2509), + [anon_sym_u8R_DQUOTE] = ACTIONS(2509), + [anon_sym_co_await] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(2507), + [anon_sym_requires] = ACTIONS(2507), + [sym_this] = ACTIONS(2507), + [sym_nullptr] = ACTIONS(2507), + }, + [726] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [727] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [728] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [729] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [730] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [731] = { + [sym_identifier] = ACTIONS(2491), + [aux_sym_preproc_include_token1] = ACTIONS(2491), + [aux_sym_preproc_def_token1] = ACTIONS(2491), + [aux_sym_preproc_if_token1] = ACTIONS(2491), + [aux_sym_preproc_if_token2] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), + [sym_preproc_directive] = ACTIONS(2491), + [anon_sym_LPAREN2] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2493), + [anon_sym_TILDE] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_AMP_AMP] = ACTIONS(2493), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_typedef] = ACTIONS(2491), + [anon_sym_extern] = ACTIONS(2491), + [anon_sym___attribute__] = ACTIONS(2491), + [anon_sym_COLON_COLON] = ACTIONS(2493), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), + [anon_sym___declspec] = ACTIONS(2491), + [anon_sym___based] = ACTIONS(2491), + [anon_sym___cdecl] = ACTIONS(2491), + [anon_sym___clrcall] = ACTIONS(2491), + [anon_sym___stdcall] = ACTIONS(2491), + [anon_sym___fastcall] = ACTIONS(2491), + [anon_sym___thiscall] = ACTIONS(2491), + [anon_sym___vectorcall] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_static] = ACTIONS(2491), + [anon_sym_register] = ACTIONS(2491), + [anon_sym_inline] = ACTIONS(2491), + [anon_sym_thread_local] = ACTIONS(2491), + [anon_sym_input] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_volatile] = ACTIONS(2491), + [anon_sym_restrict] = ACTIONS(2491), + [anon_sym__Atomic] = ACTIONS(2491), + [anon_sym_mutable] = ACTIONS(2491), + [anon_sym_constexpr] = ACTIONS(2491), + [anon_sym_constinit] = ACTIONS(2491), + [anon_sym_consteval] = ACTIONS(2491), + [anon_sym_signed] = ACTIONS(2491), + [anon_sym_unsigned] = ACTIONS(2491), + [anon_sym_long] = ACTIONS(2491), + [anon_sym_short] = ACTIONS(2491), + [sym_primitive_type] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_class] = ACTIONS(2491), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_else] = ACTIONS(2491), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2491), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_while] = ACTIONS(2491), + [anon_sym_do] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_goto] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2491), + [anon_sym_compl] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2493), + [anon_sym_PLUS_PLUS] = ACTIONS(2493), + [anon_sym_sizeof] = ACTIONS(2491), + [sym_number_literal] = ACTIONS(2493), + [anon_sym_L_SQUOTE] = ACTIONS(2493), + [anon_sym_u_SQUOTE] = ACTIONS(2493), + [anon_sym_U_SQUOTE] = ACTIONS(2493), + [anon_sym_u8_SQUOTE] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_L_DQUOTE] = ACTIONS(2493), + [anon_sym_u_DQUOTE] = ACTIONS(2493), + [anon_sym_U_DQUOTE] = ACTIONS(2493), + [anon_sym_u8_DQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2493), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_null] = ACTIONS(2491), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2491), + [anon_sym_decltype] = ACTIONS(2491), + [anon_sym_virtual] = ACTIONS(2491), + [anon_sym_explicit] = ACTIONS(2491), + [anon_sym_typename] = ACTIONS(2491), + [anon_sym_template] = ACTIONS(2491), + [anon_sym_operator] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2491), + [anon_sym_delete] = ACTIONS(2491), + [anon_sym_throw] = ACTIONS(2491), + [anon_sym_namespace] = ACTIONS(2491), + [anon_sym_using] = ACTIONS(2491), + [anon_sym_static_assert] = ACTIONS(2491), + [anon_sym_concept] = ACTIONS(2491), + [anon_sym_co_return] = ACTIONS(2491), + [anon_sym_co_yield] = ACTIONS(2491), + [anon_sym_R_DQUOTE] = ACTIONS(2493), + [anon_sym_LR_DQUOTE] = ACTIONS(2493), + [anon_sym_uR_DQUOTE] = ACTIONS(2493), + [anon_sym_UR_DQUOTE] = ACTIONS(2493), + [anon_sym_u8R_DQUOTE] = ACTIONS(2493), + [anon_sym_co_await] = ACTIONS(2491), + [anon_sym_new] = ACTIONS(2491), + [anon_sym_requires] = ACTIONS(2491), + [sym_this] = ACTIONS(2491), + [sym_nullptr] = ACTIONS(2491), + }, + [732] = { + [sym_identifier] = ACTIONS(2531), + [aux_sym_preproc_include_token1] = ACTIONS(2531), + [aux_sym_preproc_def_token1] = ACTIONS(2531), + [aux_sym_preproc_if_token1] = ACTIONS(2531), + [aux_sym_preproc_if_token2] = ACTIONS(2531), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2531), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2531), + [sym_preproc_directive] = ACTIONS(2531), + [anon_sym_LPAREN2] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(2533), + [anon_sym_TILDE] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2531), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_typedef] = ACTIONS(2531), + [anon_sym_extern] = ACTIONS(2531), + [anon_sym___attribute__] = ACTIONS(2531), + [anon_sym_COLON_COLON] = ACTIONS(2533), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2533), + [anon_sym___declspec] = ACTIONS(2531), + [anon_sym___based] = ACTIONS(2531), + [anon_sym___cdecl] = ACTIONS(2531), + [anon_sym___clrcall] = ACTIONS(2531), + [anon_sym___stdcall] = ACTIONS(2531), + [anon_sym___fastcall] = ACTIONS(2531), + [anon_sym___thiscall] = ACTIONS(2531), + [anon_sym___vectorcall] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_LBRACK] = ACTIONS(2531), + [anon_sym_static] = ACTIONS(2531), + [anon_sym_register] = ACTIONS(2531), + [anon_sym_inline] = ACTIONS(2531), + [anon_sym_thread_local] = ACTIONS(2531), + [anon_sym_input] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [anon_sym_volatile] = ACTIONS(2531), + [anon_sym_restrict] = ACTIONS(2531), + [anon_sym__Atomic] = ACTIONS(2531), + [anon_sym_mutable] = ACTIONS(2531), + [anon_sym_constexpr] = ACTIONS(2531), + [anon_sym_constinit] = ACTIONS(2531), + [anon_sym_consteval] = ACTIONS(2531), + [anon_sym_signed] = ACTIONS(2531), + [anon_sym_unsigned] = ACTIONS(2531), + [anon_sym_long] = ACTIONS(2531), + [anon_sym_short] = ACTIONS(2531), + [sym_primitive_type] = ACTIONS(2531), + [anon_sym_enum] = ACTIONS(2531), + [anon_sym_class] = ACTIONS(2531), + [anon_sym_struct] = ACTIONS(2531), + [anon_sym_union] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_else] = ACTIONS(2531), + [anon_sym_switch] = ACTIONS(2531), + [anon_sym_case] = ACTIONS(2531), + [anon_sym_default] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_do] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_goto] = ACTIONS(2531), + [anon_sym_not] = ACTIONS(2531), + [anon_sym_compl] = ACTIONS(2531), + [anon_sym_DASH_DASH] = ACTIONS(2533), + [anon_sym_PLUS_PLUS] = ACTIONS(2533), + [anon_sym_sizeof] = ACTIONS(2531), + [sym_number_literal] = ACTIONS(2533), + [anon_sym_L_SQUOTE] = ACTIONS(2533), + [anon_sym_u_SQUOTE] = ACTIONS(2533), + [anon_sym_U_SQUOTE] = ACTIONS(2533), + [anon_sym_u8_SQUOTE] = ACTIONS(2533), + [anon_sym_SQUOTE] = ACTIONS(2533), + [anon_sym_L_DQUOTE] = ACTIONS(2533), + [anon_sym_u_DQUOTE] = ACTIONS(2533), + [anon_sym_U_DQUOTE] = ACTIONS(2533), + [anon_sym_u8_DQUOTE] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(2533), + [sym_true] = ACTIONS(2531), + [sym_false] = ACTIONS(2531), + [sym_null] = ACTIONS(2531), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2531), + [anon_sym_decltype] = ACTIONS(2531), + [anon_sym_virtual] = ACTIONS(2531), + [anon_sym_explicit] = ACTIONS(2531), + [anon_sym_typename] = ACTIONS(2531), + [anon_sym_template] = ACTIONS(2531), + [anon_sym_operator] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_throw] = ACTIONS(2531), + [anon_sym_namespace] = ACTIONS(2531), + [anon_sym_using] = ACTIONS(2531), + [anon_sym_static_assert] = ACTIONS(2531), + [anon_sym_concept] = ACTIONS(2531), + [anon_sym_co_return] = ACTIONS(2531), + [anon_sym_co_yield] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(2531), + [anon_sym_requires] = ACTIONS(2531), + [sym_this] = ACTIONS(2531), + [sym_nullptr] = ACTIONS(2531), + }, + [733] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [734] = { + [sym_identifier] = ACTIONS(2495), + [aux_sym_preproc_include_token1] = ACTIONS(2495), + [aux_sym_preproc_def_token1] = ACTIONS(2495), + [aux_sym_preproc_if_token1] = ACTIONS(2495), + [aux_sym_preproc_if_token2] = ACTIONS(2495), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2495), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2495), + [sym_preproc_directive] = ACTIONS(2495), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_PLUS] = ACTIONS(2495), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_AMP_AMP] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_typedef] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym___attribute__] = ACTIONS(2495), + [anon_sym_COLON_COLON] = ACTIONS(2497), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), + [anon_sym___declspec] = ACTIONS(2495), + [anon_sym___based] = ACTIONS(2495), + [anon_sym___cdecl] = ACTIONS(2495), + [anon_sym___clrcall] = ACTIONS(2495), + [anon_sym___stdcall] = ACTIONS(2495), + [anon_sym___fastcall] = ACTIONS(2495), + [anon_sym___thiscall] = ACTIONS(2495), + [anon_sym___vectorcall] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_register] = ACTIONS(2495), + [anon_sym_inline] = ACTIONS(2495), + [anon_sym_thread_local] = ACTIONS(2495), + [anon_sym_input] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_volatile] = ACTIONS(2495), + [anon_sym_restrict] = ACTIONS(2495), + [anon_sym__Atomic] = ACTIONS(2495), + [anon_sym_mutable] = ACTIONS(2495), + [anon_sym_constexpr] = ACTIONS(2495), + [anon_sym_constinit] = ACTIONS(2495), + [anon_sym_consteval] = ACTIONS(2495), + [anon_sym_signed] = ACTIONS(2495), + [anon_sym_unsigned] = ACTIONS(2495), + [anon_sym_long] = ACTIONS(2495), + [anon_sym_short] = ACTIONS(2495), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_class] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_else] = ACTIONS(2495), + [anon_sym_switch] = ACTIONS(2495), + [anon_sym_case] = ACTIONS(2495), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_do] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_goto] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2495), + [anon_sym_compl] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_sizeof] = ACTIONS(2495), + [sym_number_literal] = ACTIONS(2497), + [anon_sym_L_SQUOTE] = ACTIONS(2497), + [anon_sym_u_SQUOTE] = ACTIONS(2497), + [anon_sym_U_SQUOTE] = ACTIONS(2497), + [anon_sym_u8_SQUOTE] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_L_DQUOTE] = ACTIONS(2497), + [anon_sym_u_DQUOTE] = ACTIONS(2497), + [anon_sym_U_DQUOTE] = ACTIONS(2497), + [anon_sym_u8_DQUOTE] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym_true] = ACTIONS(2495), + [sym_false] = ACTIONS(2495), + [sym_null] = ACTIONS(2495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2495), + [anon_sym_decltype] = ACTIONS(2495), + [anon_sym_virtual] = ACTIONS(2495), + [anon_sym_explicit] = ACTIONS(2495), + [anon_sym_typename] = ACTIONS(2495), + [anon_sym_template] = ACTIONS(2495), + [anon_sym_operator] = ACTIONS(2495), + [anon_sym_try] = ACTIONS(2495), + [anon_sym_delete] = ACTIONS(2495), + [anon_sym_throw] = ACTIONS(2495), + [anon_sym_namespace] = ACTIONS(2495), + [anon_sym_using] = ACTIONS(2495), + [anon_sym_static_assert] = ACTIONS(2495), + [anon_sym_concept] = ACTIONS(2495), + [anon_sym_co_return] = ACTIONS(2495), + [anon_sym_co_yield] = ACTIONS(2495), + [anon_sym_R_DQUOTE] = ACTIONS(2497), + [anon_sym_LR_DQUOTE] = ACTIONS(2497), + [anon_sym_uR_DQUOTE] = ACTIONS(2497), + [anon_sym_UR_DQUOTE] = ACTIONS(2497), + [anon_sym_u8R_DQUOTE] = ACTIONS(2497), + [anon_sym_co_await] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2495), + [anon_sym_requires] = ACTIONS(2495), + [sym_this] = ACTIONS(2495), + [sym_nullptr] = ACTIONS(2495), + }, + [735] = { + [sym_identifier] = ACTIONS(2561), + [aux_sym_preproc_include_token1] = ACTIONS(2561), + [aux_sym_preproc_def_token1] = ACTIONS(2561), + [aux_sym_preproc_if_token1] = ACTIONS(2561), + [aux_sym_preproc_if_token2] = ACTIONS(2561), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2561), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2561), + [sym_preproc_directive] = ACTIONS(2561), + [anon_sym_LPAREN2] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_PLUS] = ACTIONS(2561), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_typedef] = ACTIONS(2561), + [anon_sym_extern] = ACTIONS(2561), + [anon_sym___attribute__] = ACTIONS(2561), + [anon_sym_COLON_COLON] = ACTIONS(2563), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), + [anon_sym___declspec] = ACTIONS(2561), + [anon_sym___based] = ACTIONS(2561), + [anon_sym___cdecl] = ACTIONS(2561), + [anon_sym___clrcall] = ACTIONS(2561), + [anon_sym___stdcall] = ACTIONS(2561), + [anon_sym___fastcall] = ACTIONS(2561), + [anon_sym___thiscall] = ACTIONS(2561), + [anon_sym___vectorcall] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2561), + [anon_sym_register] = ACTIONS(2561), + [anon_sym_inline] = ACTIONS(2561), + [anon_sym_thread_local] = ACTIONS(2561), + [anon_sym_input] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [anon_sym_volatile] = ACTIONS(2561), + [anon_sym_restrict] = ACTIONS(2561), + [anon_sym__Atomic] = ACTIONS(2561), + [anon_sym_mutable] = ACTIONS(2561), + [anon_sym_constexpr] = ACTIONS(2561), + [anon_sym_constinit] = ACTIONS(2561), + [anon_sym_consteval] = ACTIONS(2561), + [anon_sym_signed] = ACTIONS(2561), + [anon_sym_unsigned] = ACTIONS(2561), + [anon_sym_long] = ACTIONS(2561), + [anon_sym_short] = ACTIONS(2561), + [sym_primitive_type] = ACTIONS(2561), + [anon_sym_enum] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2561), + [anon_sym_struct] = ACTIONS(2561), + [anon_sym_union] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2561), + [anon_sym_switch] = ACTIONS(2561), + [anon_sym_case] = ACTIONS(2561), + [anon_sym_default] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [anon_sym_do] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), + [anon_sym_goto] = ACTIONS(2561), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_compl] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_sizeof] = ACTIONS(2561), + [sym_number_literal] = ACTIONS(2563), + [anon_sym_L_SQUOTE] = ACTIONS(2563), + [anon_sym_u_SQUOTE] = ACTIONS(2563), + [anon_sym_U_SQUOTE] = ACTIONS(2563), + [anon_sym_u8_SQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE] = ACTIONS(2563), + [anon_sym_L_DQUOTE] = ACTIONS(2563), + [anon_sym_u_DQUOTE] = ACTIONS(2563), + [anon_sym_U_DQUOTE] = ACTIONS(2563), + [anon_sym_u8_DQUOTE] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2563), + [sym_true] = ACTIONS(2561), + [sym_false] = ACTIONS(2561), + [sym_null] = ACTIONS(2561), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2561), + [anon_sym_decltype] = ACTIONS(2561), + [anon_sym_virtual] = ACTIONS(2561), + [anon_sym_explicit] = ACTIONS(2561), + [anon_sym_typename] = ACTIONS(2561), + [anon_sym_template] = ACTIONS(2561), + [anon_sym_operator] = ACTIONS(2561), + [anon_sym_try] = ACTIONS(2561), + [anon_sym_delete] = ACTIONS(2561), + [anon_sym_throw] = ACTIONS(2561), + [anon_sym_namespace] = ACTIONS(2561), + [anon_sym_using] = ACTIONS(2561), + [anon_sym_static_assert] = ACTIONS(2561), + [anon_sym_concept] = ACTIONS(2561), + [anon_sym_co_return] = ACTIONS(2561), + [anon_sym_co_yield] = ACTIONS(2561), + [anon_sym_R_DQUOTE] = ACTIONS(2563), + [anon_sym_LR_DQUOTE] = ACTIONS(2563), + [anon_sym_uR_DQUOTE] = ACTIONS(2563), + [anon_sym_UR_DQUOTE] = ACTIONS(2563), + [anon_sym_u8R_DQUOTE] = ACTIONS(2563), + [anon_sym_co_await] = ACTIONS(2561), + [anon_sym_new] = ACTIONS(2561), + [anon_sym_requires] = ACTIONS(2561), + [sym_this] = ACTIONS(2561), + [sym_nullptr] = ACTIONS(2561), + }, + [736] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [737] = { + [sym_identifier] = ACTIONS(2539), + [aux_sym_preproc_include_token1] = ACTIONS(2539), + [aux_sym_preproc_def_token1] = ACTIONS(2539), + [aux_sym_preproc_if_token1] = ACTIONS(2539), + [aux_sym_preproc_if_token2] = ACTIONS(2539), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2539), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2539), + [sym_preproc_directive] = ACTIONS(2539), + [anon_sym_LPAREN2] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_PLUS] = ACTIONS(2539), + [anon_sym_STAR] = ACTIONS(2541), + [anon_sym_AMP_AMP] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym___attribute__] = ACTIONS(2539), + [anon_sym_COLON_COLON] = ACTIONS(2541), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2541), + [anon_sym___declspec] = ACTIONS(2539), + [anon_sym___based] = ACTIONS(2539), + [anon_sym___cdecl] = ACTIONS(2539), + [anon_sym___clrcall] = ACTIONS(2539), + [anon_sym___stdcall] = ACTIONS(2539), + [anon_sym___fastcall] = ACTIONS(2539), + [anon_sym___thiscall] = ACTIONS(2539), + [anon_sym___vectorcall] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_register] = ACTIONS(2539), + [anon_sym_inline] = ACTIONS(2539), + [anon_sym_thread_local] = ACTIONS(2539), + [anon_sym_input] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_volatile] = ACTIONS(2539), + [anon_sym_restrict] = ACTIONS(2539), + [anon_sym__Atomic] = ACTIONS(2539), + [anon_sym_mutable] = ACTIONS(2539), + [anon_sym_constexpr] = ACTIONS(2539), + [anon_sym_constinit] = ACTIONS(2539), + [anon_sym_consteval] = ACTIONS(2539), + [anon_sym_signed] = ACTIONS(2539), + [anon_sym_unsigned] = ACTIONS(2539), + [anon_sym_long] = ACTIONS(2539), + [anon_sym_short] = ACTIONS(2539), + [sym_primitive_type] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), + [anon_sym_class] = ACTIONS(2539), + [anon_sym_struct] = ACTIONS(2539), + [anon_sym_union] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2881), + [anon_sym_switch] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2539), + [anon_sym_default] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_goto] = ACTIONS(2539), + [anon_sym_not] = ACTIONS(2539), + [anon_sym_compl] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2541), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_number_literal] = ACTIONS(2541), + [anon_sym_L_SQUOTE] = ACTIONS(2541), + [anon_sym_u_SQUOTE] = ACTIONS(2541), + [anon_sym_U_SQUOTE] = ACTIONS(2541), + [anon_sym_u8_SQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_L_DQUOTE] = ACTIONS(2541), + [anon_sym_u_DQUOTE] = ACTIONS(2541), + [anon_sym_U_DQUOTE] = ACTIONS(2541), + [anon_sym_u8_DQUOTE] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(2541), + [sym_true] = ACTIONS(2539), + [sym_false] = ACTIONS(2539), + [sym_null] = ACTIONS(2539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2539), + [anon_sym_decltype] = ACTIONS(2539), + [anon_sym_virtual] = ACTIONS(2539), + [anon_sym_explicit] = ACTIONS(2539), + [anon_sym_typename] = ACTIONS(2539), + [anon_sym_template] = ACTIONS(2539), + [anon_sym_operator] = ACTIONS(2539), + [anon_sym_try] = ACTIONS(2539), + [anon_sym_delete] = ACTIONS(2539), + [anon_sym_throw] = ACTIONS(2539), + [anon_sym_namespace] = ACTIONS(2539), + [anon_sym_using] = ACTIONS(2539), + [anon_sym_static_assert] = ACTIONS(2539), + [anon_sym_concept] = ACTIONS(2539), + [anon_sym_co_return] = ACTIONS(2539), + [anon_sym_co_yield] = ACTIONS(2539), + [anon_sym_R_DQUOTE] = ACTIONS(2541), + [anon_sym_LR_DQUOTE] = ACTIONS(2541), + [anon_sym_uR_DQUOTE] = ACTIONS(2541), + [anon_sym_UR_DQUOTE] = ACTIONS(2541), + [anon_sym_u8R_DQUOTE] = ACTIONS(2541), + [anon_sym_co_await] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(2539), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2539), + [sym_nullptr] = ACTIONS(2539), + }, + [738] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [739] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [740] = { + [sym_identifier] = ACTIONS(2449), + [aux_sym_preproc_include_token1] = ACTIONS(2449), + [aux_sym_preproc_def_token1] = ACTIONS(2449), + [aux_sym_preproc_if_token1] = ACTIONS(2449), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2449), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2449), + [sym_preproc_directive] = ACTIONS(2449), + [anon_sym_LPAREN2] = ACTIONS(2451), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_TILDE] = ACTIONS(2451), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2451), + [anon_sym_AMP_AMP] = ACTIONS(2451), + [anon_sym_AMP] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_typedef] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym___attribute__] = ACTIONS(2449), + [anon_sym_COLON_COLON] = ACTIONS(2451), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2451), + [anon_sym___declspec] = ACTIONS(2449), + [anon_sym___based] = ACTIONS(2449), + [anon_sym___cdecl] = ACTIONS(2449), + [anon_sym___clrcall] = ACTIONS(2449), + [anon_sym___stdcall] = ACTIONS(2449), + [anon_sym___fastcall] = ACTIONS(2449), + [anon_sym___thiscall] = ACTIONS(2449), + [anon_sym___vectorcall] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_register] = ACTIONS(2449), + [anon_sym_inline] = ACTIONS(2449), + [anon_sym_thread_local] = ACTIONS(2449), + [anon_sym_input] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_volatile] = ACTIONS(2449), + [anon_sym_restrict] = ACTIONS(2449), + [anon_sym__Atomic] = ACTIONS(2449), + [anon_sym_mutable] = ACTIONS(2449), + [anon_sym_constexpr] = ACTIONS(2449), + [anon_sym_constinit] = ACTIONS(2449), + [anon_sym_consteval] = ACTIONS(2449), + [anon_sym_signed] = ACTIONS(2449), + [anon_sym_unsigned] = ACTIONS(2449), + [anon_sym_long] = ACTIONS(2449), + [anon_sym_short] = ACTIONS(2449), + [sym_primitive_type] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_class] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(2449), + [anon_sym_union] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(2449), + [anon_sym_case] = ACTIONS(2449), + [anon_sym_default] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_goto] = ACTIONS(2449), + [anon_sym_not] = ACTIONS(2449), + [anon_sym_compl] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2451), + [anon_sym_PLUS_PLUS] = ACTIONS(2451), + [anon_sym_sizeof] = ACTIONS(2449), + [sym_number_literal] = ACTIONS(2451), + [anon_sym_L_SQUOTE] = ACTIONS(2451), + [anon_sym_u_SQUOTE] = ACTIONS(2451), + [anon_sym_U_SQUOTE] = ACTIONS(2451), + [anon_sym_u8_SQUOTE] = ACTIONS(2451), + [anon_sym_SQUOTE] = ACTIONS(2451), + [anon_sym_L_DQUOTE] = ACTIONS(2451), + [anon_sym_u_DQUOTE] = ACTIONS(2451), + [anon_sym_U_DQUOTE] = ACTIONS(2451), + [anon_sym_u8_DQUOTE] = ACTIONS(2451), + [anon_sym_DQUOTE] = ACTIONS(2451), + [sym_true] = ACTIONS(2449), + [sym_false] = ACTIONS(2449), + [sym_null] = ACTIONS(2449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2449), + [anon_sym_decltype] = ACTIONS(2449), + [anon_sym_virtual] = ACTIONS(2449), + [anon_sym_explicit] = ACTIONS(2449), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(2449), + [anon_sym_operator] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_delete] = ACTIONS(2449), + [anon_sym_throw] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_using] = ACTIONS(2449), + [anon_sym_static_assert] = ACTIONS(2449), + [anon_sym_concept] = ACTIONS(2449), + [anon_sym_co_return] = ACTIONS(2449), + [anon_sym_co_yield] = ACTIONS(2449), + [anon_sym_R_DQUOTE] = ACTIONS(2451), + [anon_sym_LR_DQUOTE] = ACTIONS(2451), + [anon_sym_uR_DQUOTE] = ACTIONS(2451), + [anon_sym_UR_DQUOTE] = ACTIONS(2451), + [anon_sym_u8R_DQUOTE] = ACTIONS(2451), + [anon_sym_co_await] = ACTIONS(2449), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_requires] = ACTIONS(2449), + [sym_this] = ACTIONS(2449), + [sym_nullptr] = ACTIONS(2449), + }, + [741] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [742] = { + [sym_identifier] = ACTIONS(2455), + [aux_sym_preproc_include_token1] = ACTIONS(2455), + [aux_sym_preproc_def_token1] = ACTIONS(2455), + [aux_sym_preproc_if_token1] = ACTIONS(2455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2455), + [sym_preproc_directive] = ACTIONS(2455), + [anon_sym_LPAREN2] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_typedef] = ACTIONS(2455), + [anon_sym_extern] = ACTIONS(2455), + [anon_sym___attribute__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2457), + [anon_sym___declspec] = ACTIONS(2455), + [anon_sym___based] = ACTIONS(2455), + [anon_sym___cdecl] = ACTIONS(2455), + [anon_sym___clrcall] = ACTIONS(2455), + [anon_sym___stdcall] = ACTIONS(2455), + [anon_sym___fastcall] = ACTIONS(2455), + [anon_sym___thiscall] = ACTIONS(2455), + [anon_sym___vectorcall] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_register] = ACTIONS(2455), + [anon_sym_inline] = ACTIONS(2455), + [anon_sym_thread_local] = ACTIONS(2455), + [anon_sym_input] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2455), + [anon_sym_volatile] = ACTIONS(2455), + [anon_sym_restrict] = ACTIONS(2455), + [anon_sym__Atomic] = ACTIONS(2455), + [anon_sym_mutable] = ACTIONS(2455), + [anon_sym_constexpr] = ACTIONS(2455), + [anon_sym_constinit] = ACTIONS(2455), + [anon_sym_consteval] = ACTIONS(2455), + [anon_sym_signed] = ACTIONS(2455), + [anon_sym_unsigned] = ACTIONS(2455), + [anon_sym_long] = ACTIONS(2455), + [anon_sym_short] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2455), + [anon_sym_enum] = ACTIONS(2455), + [anon_sym_class] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_else] = ACTIONS(2455), + [anon_sym_switch] = ACTIONS(2455), + [anon_sym_case] = ACTIONS(2455), + [anon_sym_default] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_do] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2455), + [anon_sym_continue] = ACTIONS(2455), + [anon_sym_goto] = ACTIONS(2455), + [anon_sym_not] = ACTIONS(2455), + [anon_sym_compl] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_sizeof] = ACTIONS(2455), + [sym_number_literal] = ACTIONS(2457), + [anon_sym_L_SQUOTE] = ACTIONS(2457), + [anon_sym_u_SQUOTE] = ACTIONS(2457), + [anon_sym_U_SQUOTE] = ACTIONS(2457), + [anon_sym_u8_SQUOTE] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_L_DQUOTE] = ACTIONS(2457), + [anon_sym_u_DQUOTE] = ACTIONS(2457), + [anon_sym_U_DQUOTE] = ACTIONS(2457), + [anon_sym_u8_DQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [sym_true] = ACTIONS(2455), + [sym_false] = ACTIONS(2455), + [sym_null] = ACTIONS(2455), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2455), + [anon_sym_decltype] = ACTIONS(2455), + [anon_sym_virtual] = ACTIONS(2455), + [anon_sym_explicit] = ACTIONS(2455), + [anon_sym_typename] = ACTIONS(2455), + [anon_sym_template] = ACTIONS(2455), + [anon_sym_operator] = ACTIONS(2455), + [anon_sym_try] = ACTIONS(2455), + [anon_sym_delete] = ACTIONS(2455), + [anon_sym_throw] = ACTIONS(2455), + [anon_sym_namespace] = ACTIONS(2455), + [anon_sym_using] = ACTIONS(2455), + [anon_sym_static_assert] = ACTIONS(2455), + [anon_sym_concept] = ACTIONS(2455), + [anon_sym_co_return] = ACTIONS(2455), + [anon_sym_co_yield] = ACTIONS(2455), + [anon_sym_R_DQUOTE] = ACTIONS(2457), + [anon_sym_LR_DQUOTE] = ACTIONS(2457), + [anon_sym_uR_DQUOTE] = ACTIONS(2457), + [anon_sym_UR_DQUOTE] = ACTIONS(2457), + [anon_sym_u8R_DQUOTE] = ACTIONS(2457), + [anon_sym_co_await] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2455), + [anon_sym_requires] = ACTIONS(2455), + [sym_this] = ACTIONS(2455), + [sym_nullptr] = ACTIONS(2455), + }, + [743] = { + [sym_identifier] = ACTIONS(2459), + [aux_sym_preproc_include_token1] = ACTIONS(2459), + [aux_sym_preproc_def_token1] = ACTIONS(2459), + [aux_sym_preproc_if_token1] = ACTIONS(2459), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), + [sym_preproc_directive] = ACTIONS(2459), + [anon_sym_LPAREN2] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2461), + [anon_sym_TILDE] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_AMP_AMP] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(2459), + [anon_sym_SEMI] = ACTIONS(2461), + [anon_sym_typedef] = ACTIONS(2459), + [anon_sym_extern] = ACTIONS(2459), + [anon_sym___attribute__] = ACTIONS(2459), + [anon_sym_COLON_COLON] = ACTIONS(2461), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), + [anon_sym___declspec] = ACTIONS(2459), + [anon_sym___based] = ACTIONS(2459), + [anon_sym___cdecl] = ACTIONS(2459), + [anon_sym___clrcall] = ACTIONS(2459), + [anon_sym___stdcall] = ACTIONS(2459), + [anon_sym___fastcall] = ACTIONS(2459), + [anon_sym___thiscall] = ACTIONS(2459), + [anon_sym___vectorcall] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2459), + [anon_sym_static] = ACTIONS(2459), + [anon_sym_register] = ACTIONS(2459), + [anon_sym_inline] = ACTIONS(2459), + [anon_sym_thread_local] = ACTIONS(2459), + [anon_sym_input] = ACTIONS(2459), + [anon_sym_const] = ACTIONS(2459), + [anon_sym_volatile] = ACTIONS(2459), + [anon_sym_restrict] = ACTIONS(2459), + [anon_sym__Atomic] = ACTIONS(2459), + [anon_sym_mutable] = ACTIONS(2459), + [anon_sym_constexpr] = ACTIONS(2459), + [anon_sym_constinit] = ACTIONS(2459), + [anon_sym_consteval] = ACTIONS(2459), + [anon_sym_signed] = ACTIONS(2459), + [anon_sym_unsigned] = ACTIONS(2459), + [anon_sym_long] = ACTIONS(2459), + [anon_sym_short] = ACTIONS(2459), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_enum] = ACTIONS(2459), + [anon_sym_class] = ACTIONS(2459), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_union] = ACTIONS(2459), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_else] = ACTIONS(2459), + [anon_sym_switch] = ACTIONS(2459), + [anon_sym_case] = ACTIONS(2459), + [anon_sym_default] = ACTIONS(2459), + [anon_sym_while] = ACTIONS(2459), + [anon_sym_do] = ACTIONS(2459), + [anon_sym_for] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2459), + [anon_sym_break] = ACTIONS(2459), + [anon_sym_continue] = ACTIONS(2459), + [anon_sym_goto] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(2459), + [anon_sym_compl] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2461), + [anon_sym_PLUS_PLUS] = ACTIONS(2461), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_number_literal] = ACTIONS(2461), + [anon_sym_L_SQUOTE] = ACTIONS(2461), + [anon_sym_u_SQUOTE] = ACTIONS(2461), + [anon_sym_U_SQUOTE] = ACTIONS(2461), + [anon_sym_u8_SQUOTE] = ACTIONS(2461), + [anon_sym_SQUOTE] = ACTIONS(2461), + [anon_sym_L_DQUOTE] = ACTIONS(2461), + [anon_sym_u_DQUOTE] = ACTIONS(2461), + [anon_sym_U_DQUOTE] = ACTIONS(2461), + [anon_sym_u8_DQUOTE] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(2461), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_null] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2459), + [anon_sym_decltype] = ACTIONS(2459), + [anon_sym_virtual] = ACTIONS(2459), + [anon_sym_explicit] = ACTIONS(2459), + [anon_sym_typename] = ACTIONS(2459), + [anon_sym_template] = ACTIONS(2459), + [anon_sym_operator] = ACTIONS(2459), + [anon_sym_try] = ACTIONS(2459), + [anon_sym_delete] = ACTIONS(2459), + [anon_sym_throw] = ACTIONS(2459), + [anon_sym_namespace] = ACTIONS(2459), + [anon_sym_using] = ACTIONS(2459), + [anon_sym_static_assert] = ACTIONS(2459), + [anon_sym_concept] = ACTIONS(2459), + [anon_sym_co_return] = ACTIONS(2459), + [anon_sym_co_yield] = ACTIONS(2459), + [anon_sym_R_DQUOTE] = ACTIONS(2461), + [anon_sym_LR_DQUOTE] = ACTIONS(2461), + [anon_sym_uR_DQUOTE] = ACTIONS(2461), + [anon_sym_UR_DQUOTE] = ACTIONS(2461), + [anon_sym_u8R_DQUOTE] = ACTIONS(2461), + [anon_sym_co_await] = ACTIONS(2459), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2459), + [sym_this] = ACTIONS(2459), + [sym_nullptr] = ACTIONS(2459), + }, + [744] = { + [ts_builtin_sym_end] = ACTIONS(2547), + [sym_identifier] = ACTIONS(2545), + [aux_sym_preproc_include_token1] = ACTIONS(2545), + [aux_sym_preproc_def_token1] = ACTIONS(2545), + [aux_sym_preproc_if_token1] = ACTIONS(2545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2545), + [sym_preproc_directive] = ACTIONS(2545), + [anon_sym_LPAREN2] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_AMP_AMP] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_typedef] = ACTIONS(2545), + [anon_sym_extern] = ACTIONS(2545), + [anon_sym___attribute__] = ACTIONS(2545), + [anon_sym_COLON_COLON] = ACTIONS(2547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2547), + [anon_sym___declspec] = ACTIONS(2545), + [anon_sym___based] = ACTIONS(2545), + [anon_sym___cdecl] = ACTIONS(2545), + [anon_sym___clrcall] = ACTIONS(2545), + [anon_sym___stdcall] = ACTIONS(2545), + [anon_sym___fastcall] = ACTIONS(2545), + [anon_sym___thiscall] = ACTIONS(2545), + [anon_sym___vectorcall] = ACTIONS(2545), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2545), + [anon_sym_register] = ACTIONS(2545), + [anon_sym_inline] = ACTIONS(2545), + [anon_sym_thread_local] = ACTIONS(2545), + [anon_sym_input] = ACTIONS(2545), + [anon_sym_const] = ACTIONS(2545), + [anon_sym_volatile] = ACTIONS(2545), + [anon_sym_restrict] = ACTIONS(2545), + [anon_sym__Atomic] = ACTIONS(2545), + [anon_sym_mutable] = ACTIONS(2545), + [anon_sym_constexpr] = ACTIONS(2545), + [anon_sym_constinit] = ACTIONS(2545), + [anon_sym_consteval] = ACTIONS(2545), + [anon_sym_signed] = ACTIONS(2545), + [anon_sym_unsigned] = ACTIONS(2545), + [anon_sym_long] = ACTIONS(2545), + [anon_sym_short] = ACTIONS(2545), + [sym_primitive_type] = ACTIONS(2545), + [anon_sym_enum] = ACTIONS(2545), + [anon_sym_class] = ACTIONS(2545), + [anon_sym_struct] = ACTIONS(2545), + [anon_sym_union] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_else] = ACTIONS(2545), + [anon_sym_switch] = ACTIONS(2545), + [anon_sym_case] = ACTIONS(2545), + [anon_sym_default] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_do] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_goto] = ACTIONS(2545), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_compl] = ACTIONS(2545), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_sizeof] = ACTIONS(2545), + [sym_number_literal] = ACTIONS(2547), + [anon_sym_L_SQUOTE] = ACTIONS(2547), + [anon_sym_u_SQUOTE] = ACTIONS(2547), + [anon_sym_U_SQUOTE] = ACTIONS(2547), + [anon_sym_u8_SQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_L_DQUOTE] = ACTIONS(2547), + [anon_sym_u_DQUOTE] = ACTIONS(2547), + [anon_sym_U_DQUOTE] = ACTIONS(2547), + [anon_sym_u8_DQUOTE] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [sym_true] = ACTIONS(2545), + [sym_false] = ACTIONS(2545), + [sym_null] = ACTIONS(2545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2545), + [anon_sym_decltype] = ACTIONS(2545), + [anon_sym_virtual] = ACTIONS(2545), + [anon_sym_explicit] = ACTIONS(2545), + [anon_sym_typename] = ACTIONS(2545), + [anon_sym_template] = ACTIONS(2545), + [anon_sym_operator] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [anon_sym_delete] = ACTIONS(2545), + [anon_sym_throw] = ACTIONS(2545), + [anon_sym_namespace] = ACTIONS(2545), + [anon_sym_using] = ACTIONS(2545), + [anon_sym_static_assert] = ACTIONS(2545), + [anon_sym_concept] = ACTIONS(2545), + [anon_sym_co_return] = ACTIONS(2545), + [anon_sym_co_yield] = ACTIONS(2545), + [anon_sym_R_DQUOTE] = ACTIONS(2547), + [anon_sym_LR_DQUOTE] = ACTIONS(2547), + [anon_sym_uR_DQUOTE] = ACTIONS(2547), + [anon_sym_UR_DQUOTE] = ACTIONS(2547), + [anon_sym_u8R_DQUOTE] = ACTIONS(2547), + [anon_sym_co_await] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_requires] = ACTIONS(2545), + [sym_this] = ACTIONS(2545), + [sym_nullptr] = ACTIONS(2545), + }, + [745] = { + [sym_identifier] = ACTIONS(2463), + [aux_sym_preproc_include_token1] = ACTIONS(2463), + [aux_sym_preproc_def_token1] = ACTIONS(2463), + [aux_sym_preproc_if_token1] = ACTIONS(2463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2463), + [sym_preproc_directive] = ACTIONS(2463), + [anon_sym_LPAREN2] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_TILDE] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_AMP_AMP] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2465), + [anon_sym_typedef] = ACTIONS(2463), + [anon_sym_extern] = ACTIONS(2463), + [anon_sym___attribute__] = ACTIONS(2463), + [anon_sym_COLON_COLON] = ACTIONS(2465), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), + [anon_sym___declspec] = ACTIONS(2463), + [anon_sym___based] = ACTIONS(2463), + [anon_sym___cdecl] = ACTIONS(2463), + [anon_sym___clrcall] = ACTIONS(2463), + [anon_sym___stdcall] = ACTIONS(2463), + [anon_sym___fastcall] = ACTIONS(2463), + [anon_sym___thiscall] = ACTIONS(2463), + [anon_sym___vectorcall] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_static] = ACTIONS(2463), + [anon_sym_register] = ACTIONS(2463), + [anon_sym_inline] = ACTIONS(2463), + [anon_sym_thread_local] = ACTIONS(2463), + [anon_sym_input] = ACTIONS(2463), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_volatile] = ACTIONS(2463), + [anon_sym_restrict] = ACTIONS(2463), + [anon_sym__Atomic] = ACTIONS(2463), + [anon_sym_mutable] = ACTIONS(2463), + [anon_sym_constexpr] = ACTIONS(2463), + [anon_sym_constinit] = ACTIONS(2463), + [anon_sym_consteval] = ACTIONS(2463), + [anon_sym_signed] = ACTIONS(2463), + [anon_sym_unsigned] = ACTIONS(2463), + [anon_sym_long] = ACTIONS(2463), + [anon_sym_short] = ACTIONS(2463), + [sym_primitive_type] = ACTIONS(2463), + [anon_sym_enum] = ACTIONS(2463), + [anon_sym_class] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_else] = ACTIONS(2463), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(2463), + [anon_sym_while] = ACTIONS(2463), + [anon_sym_do] = ACTIONS(2463), + [anon_sym_for] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2463), + [anon_sym_break] = ACTIONS(2463), + [anon_sym_continue] = ACTIONS(2463), + [anon_sym_goto] = ACTIONS(2463), + [anon_sym_not] = ACTIONS(2463), + [anon_sym_compl] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2465), + [anon_sym_PLUS_PLUS] = ACTIONS(2465), + [anon_sym_sizeof] = ACTIONS(2463), + [sym_number_literal] = ACTIONS(2465), + [anon_sym_L_SQUOTE] = ACTIONS(2465), + [anon_sym_u_SQUOTE] = ACTIONS(2465), + [anon_sym_U_SQUOTE] = ACTIONS(2465), + [anon_sym_u8_SQUOTE] = ACTIONS(2465), + [anon_sym_SQUOTE] = ACTIONS(2465), + [anon_sym_L_DQUOTE] = ACTIONS(2465), + [anon_sym_u_DQUOTE] = ACTIONS(2465), + [anon_sym_U_DQUOTE] = ACTIONS(2465), + [anon_sym_u8_DQUOTE] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2465), + [sym_true] = ACTIONS(2463), + [sym_false] = ACTIONS(2463), + [sym_null] = ACTIONS(2463), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2463), + [anon_sym_decltype] = ACTIONS(2463), + [anon_sym_virtual] = ACTIONS(2463), + [anon_sym_explicit] = ACTIONS(2463), + [anon_sym_typename] = ACTIONS(2463), + [anon_sym_template] = ACTIONS(2463), + [anon_sym_operator] = ACTIONS(2463), + [anon_sym_try] = ACTIONS(2463), + [anon_sym_delete] = ACTIONS(2463), + [anon_sym_throw] = ACTIONS(2463), + [anon_sym_namespace] = ACTIONS(2463), + [anon_sym_using] = ACTIONS(2463), + [anon_sym_static_assert] = ACTIONS(2463), + [anon_sym_concept] = ACTIONS(2463), + [anon_sym_co_return] = ACTIONS(2463), + [anon_sym_co_yield] = ACTIONS(2463), + [anon_sym_R_DQUOTE] = ACTIONS(2465), + [anon_sym_LR_DQUOTE] = ACTIONS(2465), + [anon_sym_uR_DQUOTE] = ACTIONS(2465), + [anon_sym_UR_DQUOTE] = ACTIONS(2465), + [anon_sym_u8R_DQUOTE] = ACTIONS(2465), + [anon_sym_co_await] = ACTIONS(2463), + [anon_sym_new] = ACTIONS(2463), + [anon_sym_requires] = ACTIONS(2463), + [sym_this] = ACTIONS(2463), + [sym_nullptr] = ACTIONS(2463), + }, + [746] = { + [sym_identifier] = ACTIONS(2467), + [aux_sym_preproc_include_token1] = ACTIONS(2467), + [aux_sym_preproc_def_token1] = ACTIONS(2467), + [aux_sym_preproc_if_token1] = ACTIONS(2467), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2467), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2467), + [sym_preproc_directive] = ACTIONS(2467), + [anon_sym_LPAREN2] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_AMP_AMP] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_typedef] = ACTIONS(2467), + [anon_sym_extern] = ACTIONS(2467), + [anon_sym___attribute__] = ACTIONS(2467), + [anon_sym_COLON_COLON] = ACTIONS(2469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2469), + [anon_sym___declspec] = ACTIONS(2467), + [anon_sym___based] = ACTIONS(2467), + [anon_sym___cdecl] = ACTIONS(2467), + [anon_sym___clrcall] = ACTIONS(2467), + [anon_sym___stdcall] = ACTIONS(2467), + [anon_sym___fastcall] = ACTIONS(2467), + [anon_sym___thiscall] = ACTIONS(2467), + [anon_sym___vectorcall] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_static] = ACTIONS(2467), + [anon_sym_register] = ACTIONS(2467), + [anon_sym_inline] = ACTIONS(2467), + [anon_sym_thread_local] = ACTIONS(2467), + [anon_sym_input] = ACTIONS(2467), + [anon_sym_const] = ACTIONS(2467), + [anon_sym_volatile] = ACTIONS(2467), + [anon_sym_restrict] = ACTIONS(2467), + [anon_sym__Atomic] = ACTIONS(2467), + [anon_sym_mutable] = ACTIONS(2467), + [anon_sym_constexpr] = ACTIONS(2467), + [anon_sym_constinit] = ACTIONS(2467), + [anon_sym_consteval] = ACTIONS(2467), + [anon_sym_signed] = ACTIONS(2467), + [anon_sym_unsigned] = ACTIONS(2467), + [anon_sym_long] = ACTIONS(2467), + [anon_sym_short] = ACTIONS(2467), + [sym_primitive_type] = ACTIONS(2467), + [anon_sym_enum] = ACTIONS(2467), + [anon_sym_class] = ACTIONS(2467), + [anon_sym_struct] = ACTIONS(2467), + [anon_sym_union] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_else] = ACTIONS(2467), + [anon_sym_switch] = ACTIONS(2467), + [anon_sym_case] = ACTIONS(2467), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2467), + [anon_sym_do] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_goto] = ACTIONS(2467), + [anon_sym_not] = ACTIONS(2467), + [anon_sym_compl] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2469), + [anon_sym_PLUS_PLUS] = ACTIONS(2469), + [anon_sym_sizeof] = ACTIONS(2467), + [sym_number_literal] = ACTIONS(2469), + [anon_sym_L_SQUOTE] = ACTIONS(2469), + [anon_sym_u_SQUOTE] = ACTIONS(2469), + [anon_sym_U_SQUOTE] = ACTIONS(2469), + [anon_sym_u8_SQUOTE] = ACTIONS(2469), + [anon_sym_SQUOTE] = ACTIONS(2469), + [anon_sym_L_DQUOTE] = ACTIONS(2469), + [anon_sym_u_DQUOTE] = ACTIONS(2469), + [anon_sym_U_DQUOTE] = ACTIONS(2469), + [anon_sym_u8_DQUOTE] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2469), + [sym_true] = ACTIONS(2467), + [sym_false] = ACTIONS(2467), + [sym_null] = ACTIONS(2467), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2467), + [anon_sym_decltype] = ACTIONS(2467), + [anon_sym_virtual] = ACTIONS(2467), + [anon_sym_explicit] = ACTIONS(2467), + [anon_sym_typename] = ACTIONS(2467), + [anon_sym_template] = ACTIONS(2467), + [anon_sym_operator] = ACTIONS(2467), + [anon_sym_try] = ACTIONS(2467), + [anon_sym_delete] = ACTIONS(2467), + [anon_sym_throw] = ACTIONS(2467), + [anon_sym_namespace] = ACTIONS(2467), + [anon_sym_using] = ACTIONS(2467), + [anon_sym_static_assert] = ACTIONS(2467), + [anon_sym_concept] = ACTIONS(2467), + [anon_sym_co_return] = ACTIONS(2467), + [anon_sym_co_yield] = ACTIONS(2467), + [anon_sym_R_DQUOTE] = ACTIONS(2469), + [anon_sym_LR_DQUOTE] = ACTIONS(2469), + [anon_sym_uR_DQUOTE] = ACTIONS(2469), + [anon_sym_UR_DQUOTE] = ACTIONS(2469), + [anon_sym_u8R_DQUOTE] = ACTIONS(2469), + [anon_sym_co_await] = ACTIONS(2467), + [anon_sym_new] = ACTIONS(2467), + [anon_sym_requires] = ACTIONS(2467), + [sym_this] = ACTIONS(2467), + [sym_nullptr] = ACTIONS(2467), + }, + [747] = { + [sym_identifier] = ACTIONS(2471), + [aux_sym_preproc_include_token1] = ACTIONS(2471), + [aux_sym_preproc_def_token1] = ACTIONS(2471), + [aux_sym_preproc_if_token1] = ACTIONS(2471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2471), + [sym_preproc_directive] = ACTIONS(2471), + [anon_sym_LPAREN2] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2473), + [anon_sym_TILDE] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_typedef] = ACTIONS(2471), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym___attribute__] = ACTIONS(2471), + [anon_sym_COLON_COLON] = ACTIONS(2473), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2473), + [anon_sym___declspec] = ACTIONS(2471), + [anon_sym___based] = ACTIONS(2471), + [anon_sym___cdecl] = ACTIONS(2471), + [anon_sym___clrcall] = ACTIONS(2471), + [anon_sym___stdcall] = ACTIONS(2471), + [anon_sym___fastcall] = ACTIONS(2471), + [anon_sym___thiscall] = ACTIONS(2471), + [anon_sym___vectorcall] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_static] = ACTIONS(2471), + [anon_sym_register] = ACTIONS(2471), + [anon_sym_inline] = ACTIONS(2471), + [anon_sym_thread_local] = ACTIONS(2471), + [anon_sym_input] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [anon_sym_volatile] = ACTIONS(2471), + [anon_sym_restrict] = ACTIONS(2471), + [anon_sym__Atomic] = ACTIONS(2471), + [anon_sym_mutable] = ACTIONS(2471), + [anon_sym_constexpr] = ACTIONS(2471), + [anon_sym_constinit] = ACTIONS(2471), + [anon_sym_consteval] = ACTIONS(2471), + [anon_sym_signed] = ACTIONS(2471), + [anon_sym_unsigned] = ACTIONS(2471), + [anon_sym_long] = ACTIONS(2471), + [anon_sym_short] = ACTIONS(2471), + [sym_primitive_type] = ACTIONS(2471), + [anon_sym_enum] = ACTIONS(2471), + [anon_sym_class] = ACTIONS(2471), + [anon_sym_struct] = ACTIONS(2471), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_else] = ACTIONS(2471), + [anon_sym_switch] = ACTIONS(2471), + [anon_sym_case] = ACTIONS(2471), + [anon_sym_default] = ACTIONS(2471), + [anon_sym_while] = ACTIONS(2471), + [anon_sym_do] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_goto] = ACTIONS(2471), + [anon_sym_not] = ACTIONS(2471), + [anon_sym_compl] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(2473), + [anon_sym_PLUS_PLUS] = ACTIONS(2473), + [anon_sym_sizeof] = ACTIONS(2471), + [sym_number_literal] = ACTIONS(2473), + [anon_sym_L_SQUOTE] = ACTIONS(2473), + [anon_sym_u_SQUOTE] = ACTIONS(2473), + [anon_sym_U_SQUOTE] = ACTIONS(2473), + [anon_sym_u8_SQUOTE] = ACTIONS(2473), + [anon_sym_SQUOTE] = ACTIONS(2473), + [anon_sym_L_DQUOTE] = ACTIONS(2473), + [anon_sym_u_DQUOTE] = ACTIONS(2473), + [anon_sym_U_DQUOTE] = ACTIONS(2473), + [anon_sym_u8_DQUOTE] = ACTIONS(2473), + [anon_sym_DQUOTE] = ACTIONS(2473), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_null] = ACTIONS(2471), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2471), + [anon_sym_decltype] = ACTIONS(2471), + [anon_sym_virtual] = ACTIONS(2471), + [anon_sym_explicit] = ACTIONS(2471), + [anon_sym_typename] = ACTIONS(2471), + [anon_sym_template] = ACTIONS(2471), + [anon_sym_operator] = ACTIONS(2471), + [anon_sym_try] = ACTIONS(2471), + [anon_sym_delete] = ACTIONS(2471), + [anon_sym_throw] = ACTIONS(2471), + [anon_sym_namespace] = ACTIONS(2471), + [anon_sym_using] = ACTIONS(2471), + [anon_sym_static_assert] = ACTIONS(2471), + [anon_sym_concept] = ACTIONS(2471), + [anon_sym_co_return] = ACTIONS(2471), + [anon_sym_co_yield] = ACTIONS(2471), + [anon_sym_R_DQUOTE] = ACTIONS(2473), + [anon_sym_LR_DQUOTE] = ACTIONS(2473), + [anon_sym_uR_DQUOTE] = ACTIONS(2473), + [anon_sym_UR_DQUOTE] = ACTIONS(2473), + [anon_sym_u8R_DQUOTE] = ACTIONS(2473), + [anon_sym_co_await] = ACTIONS(2471), + [anon_sym_new] = ACTIONS(2471), + [anon_sym_requires] = ACTIONS(2471), + [sym_this] = ACTIONS(2471), + [sym_nullptr] = ACTIONS(2471), + }, + [748] = { + [sym_identifier] = ACTIONS(2475), + [aux_sym_preproc_include_token1] = ACTIONS(2475), + [aux_sym_preproc_def_token1] = ACTIONS(2475), + [aux_sym_preproc_if_token1] = ACTIONS(2475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2475), + [sym_preproc_directive] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2477), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_typedef] = ACTIONS(2475), + [anon_sym_extern] = ACTIONS(2475), + [anon_sym___attribute__] = ACTIONS(2475), + [anon_sym_COLON_COLON] = ACTIONS(2477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), + [anon_sym___declspec] = ACTIONS(2475), + [anon_sym___based] = ACTIONS(2475), + [anon_sym___cdecl] = ACTIONS(2475), + [anon_sym___clrcall] = ACTIONS(2475), + [anon_sym___stdcall] = ACTIONS(2475), + [anon_sym___fastcall] = ACTIONS(2475), + [anon_sym___thiscall] = ACTIONS(2475), + [anon_sym___vectorcall] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2475), + [anon_sym_register] = ACTIONS(2475), + [anon_sym_inline] = ACTIONS(2475), + [anon_sym_thread_local] = ACTIONS(2475), + [anon_sym_input] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_volatile] = ACTIONS(2475), + [anon_sym_restrict] = ACTIONS(2475), + [anon_sym__Atomic] = ACTIONS(2475), + [anon_sym_mutable] = ACTIONS(2475), + [anon_sym_constexpr] = ACTIONS(2475), + [anon_sym_constinit] = ACTIONS(2475), + [anon_sym_consteval] = ACTIONS(2475), + [anon_sym_signed] = ACTIONS(2475), + [anon_sym_unsigned] = ACTIONS(2475), + [anon_sym_long] = ACTIONS(2475), + [anon_sym_short] = ACTIONS(2475), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_class] = ACTIONS(2475), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_switch] = ACTIONS(2475), + [anon_sym_case] = ACTIONS(2475), + [anon_sym_default] = ACTIONS(2475), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_do] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_not] = ACTIONS(2475), + [anon_sym_compl] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2477), + [anon_sym_PLUS_PLUS] = ACTIONS(2477), + [anon_sym_sizeof] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), + [anon_sym_L_SQUOTE] = ACTIONS(2477), + [anon_sym_u_SQUOTE] = ACTIONS(2477), + [anon_sym_U_SQUOTE] = ACTIONS(2477), + [anon_sym_u8_SQUOTE] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2477), + [anon_sym_L_DQUOTE] = ACTIONS(2477), + [anon_sym_u_DQUOTE] = ACTIONS(2477), + [anon_sym_U_DQUOTE] = ACTIONS(2477), + [anon_sym_u8_DQUOTE] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2477), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_null] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2475), + [anon_sym_decltype] = ACTIONS(2475), + [anon_sym_virtual] = ACTIONS(2475), + [anon_sym_explicit] = ACTIONS(2475), + [anon_sym_typename] = ACTIONS(2475), + [anon_sym_template] = ACTIONS(2475), + [anon_sym_operator] = ACTIONS(2475), + [anon_sym_try] = ACTIONS(2475), + [anon_sym_delete] = ACTIONS(2475), + [anon_sym_throw] = ACTIONS(2475), + [anon_sym_namespace] = ACTIONS(2475), + [anon_sym_using] = ACTIONS(2475), + [anon_sym_static_assert] = ACTIONS(2475), + [anon_sym_concept] = ACTIONS(2475), + [anon_sym_co_return] = ACTIONS(2475), + [anon_sym_co_yield] = ACTIONS(2475), + [anon_sym_R_DQUOTE] = ACTIONS(2477), + [anon_sym_LR_DQUOTE] = ACTIONS(2477), + [anon_sym_uR_DQUOTE] = ACTIONS(2477), + [anon_sym_UR_DQUOTE] = ACTIONS(2477), + [anon_sym_u8R_DQUOTE] = ACTIONS(2477), + [anon_sym_co_await] = ACTIONS(2475), + [anon_sym_new] = ACTIONS(2475), + [anon_sym_requires] = ACTIONS(2475), + [sym_this] = ACTIONS(2475), + [sym_nullptr] = ACTIONS(2475), + }, + [749] = { + [sym_identifier] = ACTIONS(2425), + [aux_sym_preproc_include_token1] = ACTIONS(2425), + [aux_sym_preproc_def_token1] = ACTIONS(2425), + [aux_sym_preproc_if_token1] = ACTIONS(2425), + [aux_sym_preproc_if_token2] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2425), + [sym_preproc_directive] = ACTIONS(2425), + [anon_sym_LPAREN2] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_AMP_AMP] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_typedef] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym___attribute__] = ACTIONS(2425), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2427), + [anon_sym___declspec] = ACTIONS(2425), + [anon_sym___based] = ACTIONS(2425), + [anon_sym___cdecl] = ACTIONS(2425), + [anon_sym___clrcall] = ACTIONS(2425), + [anon_sym___stdcall] = ACTIONS(2425), + [anon_sym___fastcall] = ACTIONS(2425), + [anon_sym___thiscall] = ACTIONS(2425), + [anon_sym___vectorcall] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_inline] = ACTIONS(2425), + [anon_sym_thread_local] = ACTIONS(2425), + [anon_sym_input] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_volatile] = ACTIONS(2425), + [anon_sym_restrict] = ACTIONS(2425), + [anon_sym__Atomic] = ACTIONS(2425), + [anon_sym_mutable] = ACTIONS(2425), + [anon_sym_constexpr] = ACTIONS(2425), + [anon_sym_constinit] = ACTIONS(2425), + [anon_sym_consteval] = ACTIONS(2425), + [anon_sym_signed] = ACTIONS(2425), + [anon_sym_unsigned] = ACTIONS(2425), + [anon_sym_long] = ACTIONS(2425), + [anon_sym_short] = ACTIONS(2425), + [sym_primitive_type] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2425), + [anon_sym_case] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_goto] = ACTIONS(2425), + [anon_sym_not] = ACTIONS(2425), + [anon_sym_compl] = ACTIONS(2425), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_sizeof] = ACTIONS(2425), + [sym_number_literal] = ACTIONS(2427), + [anon_sym_L_SQUOTE] = ACTIONS(2427), + [anon_sym_u_SQUOTE] = ACTIONS(2427), + [anon_sym_U_SQUOTE] = ACTIONS(2427), + [anon_sym_u8_SQUOTE] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_L_DQUOTE] = ACTIONS(2427), + [anon_sym_u_DQUOTE] = ACTIONS(2427), + [anon_sym_U_DQUOTE] = ACTIONS(2427), + [anon_sym_u8_DQUOTE] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym_true] = ACTIONS(2425), + [sym_false] = ACTIONS(2425), + [sym_null] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2425), + [anon_sym_decltype] = ACTIONS(2425), + [anon_sym_virtual] = ACTIONS(2425), + [anon_sym_explicit] = ACTIONS(2425), + [anon_sym_typename] = ACTIONS(2425), + [anon_sym_template] = ACTIONS(2425), + [anon_sym_operator] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_delete] = ACTIONS(2425), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_using] = ACTIONS(2425), + [anon_sym_static_assert] = ACTIONS(2425), + [anon_sym_concept] = ACTIONS(2425), + [anon_sym_co_return] = ACTIONS(2425), + [anon_sym_co_yield] = ACTIONS(2425), + [anon_sym_R_DQUOTE] = ACTIONS(2427), + [anon_sym_LR_DQUOTE] = ACTIONS(2427), + [anon_sym_uR_DQUOTE] = ACTIONS(2427), + [anon_sym_UR_DQUOTE] = ACTIONS(2427), + [anon_sym_u8R_DQUOTE] = ACTIONS(2427), + [anon_sym_co_await] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_requires] = ACTIONS(2425), + [sym_this] = ACTIONS(2425), + [sym_nullptr] = ACTIONS(2425), + }, + [750] = { + [sym_identifier] = ACTIONS(2425), + [aux_sym_preproc_include_token1] = ACTIONS(2425), + [aux_sym_preproc_def_token1] = ACTIONS(2425), + [aux_sym_preproc_if_token1] = ACTIONS(2425), + [aux_sym_preproc_if_token2] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2425), + [sym_preproc_directive] = ACTIONS(2425), + [anon_sym_LPAREN2] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_AMP_AMP] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_typedef] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym___attribute__] = ACTIONS(2425), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2427), + [anon_sym___declspec] = ACTIONS(2425), + [anon_sym___based] = ACTIONS(2425), + [anon_sym___cdecl] = ACTIONS(2425), + [anon_sym___clrcall] = ACTIONS(2425), + [anon_sym___stdcall] = ACTIONS(2425), + [anon_sym___fastcall] = ACTIONS(2425), + [anon_sym___thiscall] = ACTIONS(2425), + [anon_sym___vectorcall] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_inline] = ACTIONS(2425), + [anon_sym_thread_local] = ACTIONS(2425), + [anon_sym_input] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_volatile] = ACTIONS(2425), + [anon_sym_restrict] = ACTIONS(2425), + [anon_sym__Atomic] = ACTIONS(2425), + [anon_sym_mutable] = ACTIONS(2425), + [anon_sym_constexpr] = ACTIONS(2425), + [anon_sym_constinit] = ACTIONS(2425), + [anon_sym_consteval] = ACTIONS(2425), + [anon_sym_signed] = ACTIONS(2425), + [anon_sym_unsigned] = ACTIONS(2425), + [anon_sym_long] = ACTIONS(2425), + [anon_sym_short] = ACTIONS(2425), + [sym_primitive_type] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2425), + [anon_sym_case] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_goto] = ACTIONS(2425), + [anon_sym_not] = ACTIONS(2425), + [anon_sym_compl] = ACTIONS(2425), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_sizeof] = ACTIONS(2425), + [sym_number_literal] = ACTIONS(2427), + [anon_sym_L_SQUOTE] = ACTIONS(2427), + [anon_sym_u_SQUOTE] = ACTIONS(2427), + [anon_sym_U_SQUOTE] = ACTIONS(2427), + [anon_sym_u8_SQUOTE] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_L_DQUOTE] = ACTIONS(2427), + [anon_sym_u_DQUOTE] = ACTIONS(2427), + [anon_sym_U_DQUOTE] = ACTIONS(2427), + [anon_sym_u8_DQUOTE] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym_true] = ACTIONS(2425), + [sym_false] = ACTIONS(2425), + [sym_null] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2425), + [anon_sym_decltype] = ACTIONS(2425), + [anon_sym_virtual] = ACTIONS(2425), + [anon_sym_explicit] = ACTIONS(2425), + [anon_sym_typename] = ACTIONS(2425), + [anon_sym_template] = ACTIONS(2425), + [anon_sym_operator] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_delete] = ACTIONS(2425), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_using] = ACTIONS(2425), + [anon_sym_static_assert] = ACTIONS(2425), + [anon_sym_concept] = ACTIONS(2425), + [anon_sym_co_return] = ACTIONS(2425), + [anon_sym_co_yield] = ACTIONS(2425), + [anon_sym_R_DQUOTE] = ACTIONS(2427), + [anon_sym_LR_DQUOTE] = ACTIONS(2427), + [anon_sym_uR_DQUOTE] = ACTIONS(2427), + [anon_sym_UR_DQUOTE] = ACTIONS(2427), + [anon_sym_u8R_DQUOTE] = ACTIONS(2427), + [anon_sym_co_await] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_requires] = ACTIONS(2425), + [sym_this] = ACTIONS(2425), + [sym_nullptr] = ACTIONS(2425), + }, + [751] = { + [sym_identifier] = ACTIONS(2479), + [aux_sym_preproc_include_token1] = ACTIONS(2479), + [aux_sym_preproc_def_token1] = ACTIONS(2479), + [aux_sym_preproc_if_token1] = ACTIONS(2479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2479), + [sym_preproc_directive] = ACTIONS(2479), + [anon_sym_LPAREN2] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_TILDE] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_typedef] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym___attribute__] = ACTIONS(2479), + [anon_sym_COLON_COLON] = ACTIONS(2481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), + [anon_sym___declspec] = ACTIONS(2479), + [anon_sym___based] = ACTIONS(2479), + [anon_sym___cdecl] = ACTIONS(2479), + [anon_sym___clrcall] = ACTIONS(2479), + [anon_sym___stdcall] = ACTIONS(2479), + [anon_sym___fastcall] = ACTIONS(2479), + [anon_sym___thiscall] = ACTIONS(2479), + [anon_sym___vectorcall] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_register] = ACTIONS(2479), + [anon_sym_inline] = ACTIONS(2479), + [anon_sym_thread_local] = ACTIONS(2479), + [anon_sym_input] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_volatile] = ACTIONS(2479), + [anon_sym_restrict] = ACTIONS(2479), + [anon_sym__Atomic] = ACTIONS(2479), + [anon_sym_mutable] = ACTIONS(2479), + [anon_sym_constexpr] = ACTIONS(2479), + [anon_sym_constinit] = ACTIONS(2479), + [anon_sym_consteval] = ACTIONS(2479), + [anon_sym_signed] = ACTIONS(2479), + [anon_sym_unsigned] = ACTIONS(2479), + [anon_sym_long] = ACTIONS(2479), + [anon_sym_short] = ACTIONS(2479), + [sym_primitive_type] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_class] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_switch] = ACTIONS(2479), + [anon_sym_case] = ACTIONS(2479), + [anon_sym_default] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_goto] = ACTIONS(2479), + [anon_sym_not] = ACTIONS(2479), + [anon_sym_compl] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2481), + [anon_sym_PLUS_PLUS] = ACTIONS(2481), + [anon_sym_sizeof] = ACTIONS(2479), + [sym_number_literal] = ACTIONS(2481), + [anon_sym_L_SQUOTE] = ACTIONS(2481), + [anon_sym_u_SQUOTE] = ACTIONS(2481), + [anon_sym_U_SQUOTE] = ACTIONS(2481), + [anon_sym_u8_SQUOTE] = ACTIONS(2481), + [anon_sym_SQUOTE] = ACTIONS(2481), + [anon_sym_L_DQUOTE] = ACTIONS(2481), + [anon_sym_u_DQUOTE] = ACTIONS(2481), + [anon_sym_U_DQUOTE] = ACTIONS(2481), + [anon_sym_u8_DQUOTE] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(2481), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2479), + [anon_sym_decltype] = ACTIONS(2479), + [anon_sym_virtual] = ACTIONS(2479), + [anon_sym_explicit] = ACTIONS(2479), + [anon_sym_typename] = ACTIONS(2479), + [anon_sym_template] = ACTIONS(2479), + [anon_sym_operator] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2479), + [anon_sym_delete] = ACTIONS(2479), + [anon_sym_throw] = ACTIONS(2479), + [anon_sym_namespace] = ACTIONS(2479), + [anon_sym_using] = ACTIONS(2479), + [anon_sym_static_assert] = ACTIONS(2479), + [anon_sym_concept] = ACTIONS(2479), + [anon_sym_co_return] = ACTIONS(2479), + [anon_sym_co_yield] = ACTIONS(2479), + [anon_sym_R_DQUOTE] = ACTIONS(2481), + [anon_sym_LR_DQUOTE] = ACTIONS(2481), + [anon_sym_uR_DQUOTE] = ACTIONS(2481), + [anon_sym_UR_DQUOTE] = ACTIONS(2481), + [anon_sym_u8R_DQUOTE] = ACTIONS(2481), + [anon_sym_co_await] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(2479), + [anon_sym_requires] = ACTIONS(2479), + [sym_this] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + }, + [752] = { + [sym_identifier] = ACTIONS(2557), + [aux_sym_preproc_include_token1] = ACTIONS(2557), + [aux_sym_preproc_def_token1] = ACTIONS(2557), + [aux_sym_preproc_if_token1] = ACTIONS(2557), + [aux_sym_preproc_if_token2] = ACTIONS(2557), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2557), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2557), + [sym_preproc_directive] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(2557), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_typedef] = ACTIONS(2557), + [anon_sym_extern] = ACTIONS(2557), + [anon_sym___attribute__] = ACTIONS(2557), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2557), + [anon_sym___based] = ACTIONS(2557), + [anon_sym___cdecl] = ACTIONS(2557), + [anon_sym___clrcall] = ACTIONS(2557), + [anon_sym___stdcall] = ACTIONS(2557), + [anon_sym___fastcall] = ACTIONS(2557), + [anon_sym___thiscall] = ACTIONS(2557), + [anon_sym___vectorcall] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2557), + [anon_sym_register] = ACTIONS(2557), + [anon_sym_inline] = ACTIONS(2557), + [anon_sym_thread_local] = ACTIONS(2557), + [anon_sym_input] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [anon_sym_volatile] = ACTIONS(2557), + [anon_sym_restrict] = ACTIONS(2557), + [anon_sym__Atomic] = ACTIONS(2557), + [anon_sym_mutable] = ACTIONS(2557), + [anon_sym_constexpr] = ACTIONS(2557), + [anon_sym_constinit] = ACTIONS(2557), + [anon_sym_consteval] = ACTIONS(2557), + [anon_sym_signed] = ACTIONS(2557), + [anon_sym_unsigned] = ACTIONS(2557), + [anon_sym_long] = ACTIONS(2557), + [anon_sym_short] = ACTIONS(2557), + [sym_primitive_type] = ACTIONS(2557), + [anon_sym_enum] = ACTIONS(2557), + [anon_sym_class] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(2557), + [anon_sym_union] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_else] = ACTIONS(2557), + [anon_sym_switch] = ACTIONS(2557), + [anon_sym_case] = ACTIONS(2557), + [anon_sym_default] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_do] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_goto] = ACTIONS(2557), + [anon_sym_not] = ACTIONS(2557), + [anon_sym_compl] = ACTIONS(2557), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_sizeof] = ACTIONS(2557), + [sym_number_literal] = ACTIONS(2559), + [anon_sym_L_SQUOTE] = ACTIONS(2559), + [anon_sym_u_SQUOTE] = ACTIONS(2559), + [anon_sym_U_SQUOTE] = ACTIONS(2559), + [anon_sym_u8_SQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(2559), + [anon_sym_L_DQUOTE] = ACTIONS(2559), + [anon_sym_u_DQUOTE] = ACTIONS(2559), + [anon_sym_U_DQUOTE] = ACTIONS(2559), + [anon_sym_u8_DQUOTE] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [sym_true] = ACTIONS(2557), + [sym_false] = ACTIONS(2557), + [sym_null] = ACTIONS(2557), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2557), + [anon_sym_decltype] = ACTIONS(2557), + [anon_sym_virtual] = ACTIONS(2557), + [anon_sym_explicit] = ACTIONS(2557), + [anon_sym_typename] = ACTIONS(2557), + [anon_sym_template] = ACTIONS(2557), + [anon_sym_operator] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2557), + [anon_sym_delete] = ACTIONS(2557), + [anon_sym_throw] = ACTIONS(2557), + [anon_sym_namespace] = ACTIONS(2557), + [anon_sym_using] = ACTIONS(2557), + [anon_sym_static_assert] = ACTIONS(2557), + [anon_sym_concept] = ACTIONS(2557), + [anon_sym_co_return] = ACTIONS(2557), + [anon_sym_co_yield] = ACTIONS(2557), + [anon_sym_R_DQUOTE] = ACTIONS(2559), + [anon_sym_LR_DQUOTE] = ACTIONS(2559), + [anon_sym_uR_DQUOTE] = ACTIONS(2559), + [anon_sym_UR_DQUOTE] = ACTIONS(2559), + [anon_sym_u8R_DQUOTE] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2557), + [anon_sym_requires] = ACTIONS(2557), + [sym_this] = ACTIONS(2557), + [sym_nullptr] = ACTIONS(2557), + }, + [753] = { + [sym_identifier] = ACTIONS(2483), + [aux_sym_preproc_include_token1] = ACTIONS(2483), + [aux_sym_preproc_def_token1] = ACTIONS(2483), + [aux_sym_preproc_if_token1] = ACTIONS(2483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), + [sym_preproc_directive] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_PLUS] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_AMP_AMP] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_typedef] = ACTIONS(2483), + [anon_sym_extern] = ACTIONS(2483), + [anon_sym___attribute__] = ACTIONS(2483), + [anon_sym_COLON_COLON] = ACTIONS(2485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), + [anon_sym___declspec] = ACTIONS(2483), + [anon_sym___based] = ACTIONS(2483), + [anon_sym___cdecl] = ACTIONS(2483), + [anon_sym___clrcall] = ACTIONS(2483), + [anon_sym___stdcall] = ACTIONS(2483), + [anon_sym___fastcall] = ACTIONS(2483), + [anon_sym___thiscall] = ACTIONS(2483), + [anon_sym___vectorcall] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_static] = ACTIONS(2483), + [anon_sym_register] = ACTIONS(2483), + [anon_sym_inline] = ACTIONS(2483), + [anon_sym_thread_local] = ACTIONS(2483), + [anon_sym_input] = ACTIONS(2483), + [anon_sym_const] = ACTIONS(2483), + [anon_sym_volatile] = ACTIONS(2483), + [anon_sym_restrict] = ACTIONS(2483), + [anon_sym__Atomic] = ACTIONS(2483), + [anon_sym_mutable] = ACTIONS(2483), + [anon_sym_constexpr] = ACTIONS(2483), + [anon_sym_constinit] = ACTIONS(2483), + [anon_sym_consteval] = ACTIONS(2483), + [anon_sym_signed] = ACTIONS(2483), + [anon_sym_unsigned] = ACTIONS(2483), + [anon_sym_long] = ACTIONS(2483), + [anon_sym_short] = ACTIONS(2483), + [sym_primitive_type] = ACTIONS(2483), + [anon_sym_enum] = ACTIONS(2483), + [anon_sym_class] = ACTIONS(2483), + [anon_sym_struct] = ACTIONS(2483), + [anon_sym_union] = ACTIONS(2483), + [anon_sym_if] = ACTIONS(2483), + [anon_sym_else] = ACTIONS(2483), + [anon_sym_switch] = ACTIONS(2483), + [anon_sym_case] = ACTIONS(2483), + [anon_sym_default] = ACTIONS(2483), + [anon_sym_while] = ACTIONS(2483), + [anon_sym_do] = ACTIONS(2483), + [anon_sym_for] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(2483), + [anon_sym_continue] = ACTIONS(2483), + [anon_sym_goto] = ACTIONS(2483), + [anon_sym_not] = ACTIONS(2483), + [anon_sym_compl] = ACTIONS(2483), + [anon_sym_DASH_DASH] = ACTIONS(2485), + [anon_sym_PLUS_PLUS] = ACTIONS(2485), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_number_literal] = ACTIONS(2485), + [anon_sym_L_SQUOTE] = ACTIONS(2485), + [anon_sym_u_SQUOTE] = ACTIONS(2485), + [anon_sym_U_SQUOTE] = ACTIONS(2485), + [anon_sym_u8_SQUOTE] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_L_DQUOTE] = ACTIONS(2485), + [anon_sym_u_DQUOTE] = ACTIONS(2485), + [anon_sym_U_DQUOTE] = ACTIONS(2485), + [anon_sym_u8_DQUOTE] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2485), + [sym_true] = ACTIONS(2483), + [sym_false] = ACTIONS(2483), + [sym_null] = ACTIONS(2483), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2483), + [anon_sym_decltype] = ACTIONS(2483), + [anon_sym_virtual] = ACTIONS(2483), + [anon_sym_explicit] = ACTIONS(2483), + [anon_sym_typename] = ACTIONS(2483), + [anon_sym_template] = ACTIONS(2483), + [anon_sym_operator] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2483), + [anon_sym_delete] = ACTIONS(2483), + [anon_sym_throw] = ACTIONS(2483), + [anon_sym_namespace] = ACTIONS(2483), + [anon_sym_using] = ACTIONS(2483), + [anon_sym_static_assert] = ACTIONS(2483), + [anon_sym_concept] = ACTIONS(2483), + [anon_sym_co_return] = ACTIONS(2483), + [anon_sym_co_yield] = ACTIONS(2483), + [anon_sym_R_DQUOTE] = ACTIONS(2485), + [anon_sym_LR_DQUOTE] = ACTIONS(2485), + [anon_sym_uR_DQUOTE] = ACTIONS(2485), + [anon_sym_UR_DQUOTE] = ACTIONS(2485), + [anon_sym_u8R_DQUOTE] = ACTIONS(2485), + [anon_sym_co_await] = ACTIONS(2483), + [anon_sym_new] = ACTIONS(2483), + [anon_sym_requires] = ACTIONS(2483), + [sym_this] = ACTIONS(2483), + [sym_nullptr] = ACTIONS(2483), + }, + [754] = { + [sym_identifier] = ACTIONS(2487), + [aux_sym_preproc_include_token1] = ACTIONS(2487), + [aux_sym_preproc_def_token1] = ACTIONS(2487), + [aux_sym_preproc_if_token1] = ACTIONS(2487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2487), + [sym_preproc_directive] = ACTIONS(2487), + [anon_sym_LPAREN2] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_AMP_AMP] = ACTIONS(2489), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_typedef] = ACTIONS(2487), + [anon_sym_extern] = ACTIONS(2487), + [anon_sym___attribute__] = ACTIONS(2487), + [anon_sym_COLON_COLON] = ACTIONS(2489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), + [anon_sym___declspec] = ACTIONS(2487), + [anon_sym___based] = ACTIONS(2487), + [anon_sym___cdecl] = ACTIONS(2487), + [anon_sym___clrcall] = ACTIONS(2487), + [anon_sym___stdcall] = ACTIONS(2487), + [anon_sym___fastcall] = ACTIONS(2487), + [anon_sym___thiscall] = ACTIONS(2487), + [anon_sym___vectorcall] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_register] = ACTIONS(2487), + [anon_sym_inline] = ACTIONS(2487), + [anon_sym_thread_local] = ACTIONS(2487), + [anon_sym_input] = ACTIONS(2487), + [anon_sym_const] = ACTIONS(2487), + [anon_sym_volatile] = ACTIONS(2487), + [anon_sym_restrict] = ACTIONS(2487), + [anon_sym__Atomic] = ACTIONS(2487), + [anon_sym_mutable] = ACTIONS(2487), + [anon_sym_constexpr] = ACTIONS(2487), + [anon_sym_constinit] = ACTIONS(2487), + [anon_sym_consteval] = ACTIONS(2487), + [anon_sym_signed] = ACTIONS(2487), + [anon_sym_unsigned] = ACTIONS(2487), + [anon_sym_long] = ACTIONS(2487), + [anon_sym_short] = ACTIONS(2487), + [sym_primitive_type] = ACTIONS(2487), + [anon_sym_enum] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_struct] = ACTIONS(2487), + [anon_sym_union] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2487), + [anon_sym_switch] = ACTIONS(2487), + [anon_sym_case] = ACTIONS(2487), + [anon_sym_default] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_do] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_goto] = ACTIONS(2487), + [anon_sym_not] = ACTIONS(2487), + [anon_sym_compl] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2489), + [anon_sym_sizeof] = ACTIONS(2487), + [sym_number_literal] = ACTIONS(2489), + [anon_sym_L_SQUOTE] = ACTIONS(2489), + [anon_sym_u_SQUOTE] = ACTIONS(2489), + [anon_sym_U_SQUOTE] = ACTIONS(2489), + [anon_sym_u8_SQUOTE] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(2489), + [anon_sym_L_DQUOTE] = ACTIONS(2489), + [anon_sym_u_DQUOTE] = ACTIONS(2489), + [anon_sym_U_DQUOTE] = ACTIONS(2489), + [anon_sym_u8_DQUOTE] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_null] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2487), + [anon_sym_decltype] = ACTIONS(2487), + [anon_sym_virtual] = ACTIONS(2487), + [anon_sym_explicit] = ACTIONS(2487), + [anon_sym_typename] = ACTIONS(2487), + [anon_sym_template] = ACTIONS(2487), + [anon_sym_operator] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [anon_sym_delete] = ACTIONS(2487), + [anon_sym_throw] = ACTIONS(2487), + [anon_sym_namespace] = ACTIONS(2487), + [anon_sym_using] = ACTIONS(2487), + [anon_sym_static_assert] = ACTIONS(2487), + [anon_sym_concept] = ACTIONS(2487), + [anon_sym_co_return] = ACTIONS(2487), + [anon_sym_co_yield] = ACTIONS(2487), + [anon_sym_R_DQUOTE] = ACTIONS(2489), + [anon_sym_LR_DQUOTE] = ACTIONS(2489), + [anon_sym_uR_DQUOTE] = ACTIONS(2489), + [anon_sym_UR_DQUOTE] = ACTIONS(2489), + [anon_sym_u8R_DQUOTE] = ACTIONS(2489), + [anon_sym_co_await] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_requires] = ACTIONS(2487), + [sym_this] = ACTIONS(2487), + [sym_nullptr] = ACTIONS(2487), + }, + [755] = { + [ts_builtin_sym_end] = ACTIONS(2417), + [sym_identifier] = ACTIONS(2415), + [aux_sym_preproc_include_token1] = ACTIONS(2415), + [aux_sym_preproc_def_token1] = ACTIONS(2415), + [aux_sym_preproc_if_token1] = ACTIONS(2415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2415), + [sym_preproc_directive] = ACTIONS(2415), + [anon_sym_LPAREN2] = ACTIONS(2417), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_TILDE] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP_AMP] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(2417), + [anon_sym_typedef] = ACTIONS(2415), + [anon_sym_extern] = ACTIONS(2415), + [anon_sym___attribute__] = ACTIONS(2415), + [anon_sym_COLON_COLON] = ACTIONS(2417), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2417), + [anon_sym___declspec] = ACTIONS(2415), + [anon_sym___based] = ACTIONS(2415), + [anon_sym___cdecl] = ACTIONS(2415), + [anon_sym___clrcall] = ACTIONS(2415), + [anon_sym___stdcall] = ACTIONS(2415), + [anon_sym___fastcall] = ACTIONS(2415), + [anon_sym___thiscall] = ACTIONS(2415), + [anon_sym___vectorcall] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_static] = ACTIONS(2415), + [anon_sym_register] = ACTIONS(2415), + [anon_sym_inline] = ACTIONS(2415), + [anon_sym_thread_local] = ACTIONS(2415), + [anon_sym_input] = ACTIONS(2415), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_volatile] = ACTIONS(2415), + [anon_sym_restrict] = ACTIONS(2415), + [anon_sym__Atomic] = ACTIONS(2415), + [anon_sym_mutable] = ACTIONS(2415), + [anon_sym_constexpr] = ACTIONS(2415), + [anon_sym_constinit] = ACTIONS(2415), + [anon_sym_consteval] = ACTIONS(2415), + [anon_sym_signed] = ACTIONS(2415), + [anon_sym_unsigned] = ACTIONS(2415), + [anon_sym_long] = ACTIONS(2415), + [anon_sym_short] = ACTIONS(2415), + [sym_primitive_type] = ACTIONS(2415), + [anon_sym_enum] = ACTIONS(2415), + [anon_sym_class] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(2415), + [anon_sym_union] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_else] = ACTIONS(2415), + [anon_sym_switch] = ACTIONS(2415), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [anon_sym_do] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_break] = ACTIONS(2415), + [anon_sym_continue] = ACTIONS(2415), + [anon_sym_goto] = ACTIONS(2415), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2417), + [anon_sym_PLUS_PLUS] = ACTIONS(2417), + [anon_sym_sizeof] = ACTIONS(2415), + [sym_number_literal] = ACTIONS(2417), + [anon_sym_L_SQUOTE] = ACTIONS(2417), + [anon_sym_u_SQUOTE] = ACTIONS(2417), + [anon_sym_U_SQUOTE] = ACTIONS(2417), + [anon_sym_u8_SQUOTE] = ACTIONS(2417), + [anon_sym_SQUOTE] = ACTIONS(2417), + [anon_sym_L_DQUOTE] = ACTIONS(2417), + [anon_sym_u_DQUOTE] = ACTIONS(2417), + [anon_sym_U_DQUOTE] = ACTIONS(2417), + [anon_sym_u8_DQUOTE] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2417), + [sym_true] = ACTIONS(2415), + [sym_false] = ACTIONS(2415), + [sym_null] = ACTIONS(2415), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2415), + [anon_sym_decltype] = ACTIONS(2415), + [anon_sym_virtual] = ACTIONS(2415), + [anon_sym_explicit] = ACTIONS(2415), + [anon_sym_typename] = ACTIONS(2415), + [anon_sym_template] = ACTIONS(2415), + [anon_sym_operator] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2415), + [anon_sym_delete] = ACTIONS(2415), + [anon_sym_throw] = ACTIONS(2415), + [anon_sym_namespace] = ACTIONS(2415), + [anon_sym_using] = ACTIONS(2415), + [anon_sym_static_assert] = ACTIONS(2415), + [anon_sym_concept] = ACTIONS(2415), + [anon_sym_co_return] = ACTIONS(2415), + [anon_sym_co_yield] = ACTIONS(2415), + [anon_sym_R_DQUOTE] = ACTIONS(2417), + [anon_sym_LR_DQUOTE] = ACTIONS(2417), + [anon_sym_uR_DQUOTE] = ACTIONS(2417), + [anon_sym_UR_DQUOTE] = ACTIONS(2417), + [anon_sym_u8R_DQUOTE] = ACTIONS(2417), + [anon_sym_co_await] = ACTIONS(2415), + [anon_sym_new] = ACTIONS(2415), + [anon_sym_requires] = ACTIONS(2415), + [sym_this] = ACTIONS(2415), + [sym_nullptr] = ACTIONS(2415), + }, + [756] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [757] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [758] = { + [sym_identifier] = ACTIONS(2415), + [aux_sym_preproc_include_token1] = ACTIONS(2415), + [aux_sym_preproc_def_token1] = ACTIONS(2415), + [aux_sym_preproc_if_token1] = ACTIONS(2415), + [aux_sym_preproc_if_token2] = ACTIONS(2415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2415), + [sym_preproc_directive] = ACTIONS(2415), + [anon_sym_LPAREN2] = ACTIONS(2417), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_TILDE] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP_AMP] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(2417), + [anon_sym_typedef] = ACTIONS(2415), + [anon_sym_extern] = ACTIONS(2415), + [anon_sym___attribute__] = ACTIONS(2415), + [anon_sym_COLON_COLON] = ACTIONS(2417), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2417), + [anon_sym___declspec] = ACTIONS(2415), + [anon_sym___based] = ACTIONS(2415), + [anon_sym___cdecl] = ACTIONS(2415), + [anon_sym___clrcall] = ACTIONS(2415), + [anon_sym___stdcall] = ACTIONS(2415), + [anon_sym___fastcall] = ACTIONS(2415), + [anon_sym___thiscall] = ACTIONS(2415), + [anon_sym___vectorcall] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_static] = ACTIONS(2415), + [anon_sym_register] = ACTIONS(2415), + [anon_sym_inline] = ACTIONS(2415), + [anon_sym_thread_local] = ACTIONS(2415), + [anon_sym_input] = ACTIONS(2415), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_volatile] = ACTIONS(2415), + [anon_sym_restrict] = ACTIONS(2415), + [anon_sym__Atomic] = ACTIONS(2415), + [anon_sym_mutable] = ACTIONS(2415), + [anon_sym_constexpr] = ACTIONS(2415), + [anon_sym_constinit] = ACTIONS(2415), + [anon_sym_consteval] = ACTIONS(2415), + [anon_sym_signed] = ACTIONS(2415), + [anon_sym_unsigned] = ACTIONS(2415), + [anon_sym_long] = ACTIONS(2415), + [anon_sym_short] = ACTIONS(2415), + [sym_primitive_type] = ACTIONS(2415), + [anon_sym_enum] = ACTIONS(2415), + [anon_sym_class] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(2415), + [anon_sym_union] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_else] = ACTIONS(2415), + [anon_sym_switch] = ACTIONS(2415), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [anon_sym_do] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_break] = ACTIONS(2415), + [anon_sym_continue] = ACTIONS(2415), + [anon_sym_goto] = ACTIONS(2415), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2417), + [anon_sym_PLUS_PLUS] = ACTIONS(2417), + [anon_sym_sizeof] = ACTIONS(2415), + [sym_number_literal] = ACTIONS(2417), + [anon_sym_L_SQUOTE] = ACTIONS(2417), + [anon_sym_u_SQUOTE] = ACTIONS(2417), + [anon_sym_U_SQUOTE] = ACTIONS(2417), + [anon_sym_u8_SQUOTE] = ACTIONS(2417), + [anon_sym_SQUOTE] = ACTIONS(2417), + [anon_sym_L_DQUOTE] = ACTIONS(2417), + [anon_sym_u_DQUOTE] = ACTIONS(2417), + [anon_sym_U_DQUOTE] = ACTIONS(2417), + [anon_sym_u8_DQUOTE] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2417), + [sym_true] = ACTIONS(2415), + [sym_false] = ACTIONS(2415), + [sym_null] = ACTIONS(2415), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2415), + [anon_sym_decltype] = ACTIONS(2415), + [anon_sym_virtual] = ACTIONS(2415), + [anon_sym_explicit] = ACTIONS(2415), + [anon_sym_typename] = ACTIONS(2415), + [anon_sym_template] = ACTIONS(2415), + [anon_sym_operator] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2415), + [anon_sym_delete] = ACTIONS(2415), + [anon_sym_throw] = ACTIONS(2415), + [anon_sym_namespace] = ACTIONS(2415), + [anon_sym_using] = ACTIONS(2415), + [anon_sym_static_assert] = ACTIONS(2415), + [anon_sym_concept] = ACTIONS(2415), + [anon_sym_co_return] = ACTIONS(2415), + [anon_sym_co_yield] = ACTIONS(2415), + [anon_sym_R_DQUOTE] = ACTIONS(2417), + [anon_sym_LR_DQUOTE] = ACTIONS(2417), + [anon_sym_uR_DQUOTE] = ACTIONS(2417), + [anon_sym_UR_DQUOTE] = ACTIONS(2417), + [anon_sym_u8R_DQUOTE] = ACTIONS(2417), + [anon_sym_co_await] = ACTIONS(2415), + [anon_sym_new] = ACTIONS(2415), + [anon_sym_requires] = ACTIONS(2415), + [sym_this] = ACTIONS(2415), + [sym_nullptr] = ACTIONS(2415), + }, + [759] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [760] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [761] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [762] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [763] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [764] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [765] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [766] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [767] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [768] = { [sym_identifier] = ACTIONS(2511), [aux_sym_preproc_include_token1] = ACTIONS(2511), [aux_sym_preproc_def_token1] = ACTIONS(2511), @@ -137116,6 +125618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2511), [anon_sym_inline] = ACTIONS(2511), [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_input] = ACTIONS(2511), [anon_sym_const] = ACTIONS(2511), [anon_sym_volatile] = ACTIONS(2511), [anon_sym_restrict] = ACTIONS(2511), @@ -137192,3286 +125695,15400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2511), [sym_nullptr] = ACTIONS(2511), }, + [769] = { + [sym_identifier] = ACTIONS(2519), + [aux_sym_preproc_include_token1] = ACTIONS(2519), + [aux_sym_preproc_def_token1] = ACTIONS(2519), + [aux_sym_preproc_if_token1] = ACTIONS(2519), + [aux_sym_preproc_if_token2] = ACTIONS(2519), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2519), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2519), + [sym_preproc_directive] = ACTIONS(2519), + [anon_sym_LPAREN2] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_STAR] = ACTIONS(2521), + [anon_sym_AMP_AMP] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_typedef] = ACTIONS(2519), + [anon_sym_extern] = ACTIONS(2519), + [anon_sym___attribute__] = ACTIONS(2519), + [anon_sym_COLON_COLON] = ACTIONS(2521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), + [anon_sym___declspec] = ACTIONS(2519), + [anon_sym___based] = ACTIONS(2519), + [anon_sym___cdecl] = ACTIONS(2519), + [anon_sym___clrcall] = ACTIONS(2519), + [anon_sym___stdcall] = ACTIONS(2519), + [anon_sym___fastcall] = ACTIONS(2519), + [anon_sym___thiscall] = ACTIONS(2519), + [anon_sym___vectorcall] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_static] = ACTIONS(2519), + [anon_sym_register] = ACTIONS(2519), + [anon_sym_inline] = ACTIONS(2519), + [anon_sym_thread_local] = ACTIONS(2519), + [anon_sym_input] = ACTIONS(2519), + [anon_sym_const] = ACTIONS(2519), + [anon_sym_volatile] = ACTIONS(2519), + [anon_sym_restrict] = ACTIONS(2519), + [anon_sym__Atomic] = ACTIONS(2519), + [anon_sym_mutable] = ACTIONS(2519), + [anon_sym_constexpr] = ACTIONS(2519), + [anon_sym_constinit] = ACTIONS(2519), + [anon_sym_consteval] = ACTIONS(2519), + [anon_sym_signed] = ACTIONS(2519), + [anon_sym_unsigned] = ACTIONS(2519), + [anon_sym_long] = ACTIONS(2519), + [anon_sym_short] = ACTIONS(2519), + [sym_primitive_type] = ACTIONS(2519), + [anon_sym_enum] = ACTIONS(2519), + [anon_sym_class] = ACTIONS(2519), + [anon_sym_struct] = ACTIONS(2519), + [anon_sym_union] = ACTIONS(2519), + [anon_sym_if] = ACTIONS(2519), + [anon_sym_else] = ACTIONS(2519), + [anon_sym_switch] = ACTIONS(2519), + [anon_sym_case] = ACTIONS(2519), + [anon_sym_default] = ACTIONS(2519), + [anon_sym_while] = ACTIONS(2519), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_for] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2519), + [anon_sym_break] = ACTIONS(2519), + [anon_sym_continue] = ACTIONS(2519), + [anon_sym_goto] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2519), + [anon_sym_compl] = ACTIONS(2519), + [anon_sym_DASH_DASH] = ACTIONS(2521), + [anon_sym_PLUS_PLUS] = ACTIONS(2521), + [anon_sym_sizeof] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2521), + [anon_sym_u_SQUOTE] = ACTIONS(2521), + [anon_sym_U_SQUOTE] = ACTIONS(2521), + [anon_sym_u8_SQUOTE] = ACTIONS(2521), + [anon_sym_SQUOTE] = ACTIONS(2521), + [anon_sym_L_DQUOTE] = ACTIONS(2521), + [anon_sym_u_DQUOTE] = ACTIONS(2521), + [anon_sym_U_DQUOTE] = ACTIONS(2521), + [anon_sym_u8_DQUOTE] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(2521), + [sym_true] = ACTIONS(2519), + [sym_false] = ACTIONS(2519), + [sym_null] = ACTIONS(2519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2519), + [anon_sym_decltype] = ACTIONS(2519), + [anon_sym_virtual] = ACTIONS(2519), + [anon_sym_explicit] = ACTIONS(2519), + [anon_sym_typename] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(2519), + [anon_sym_operator] = ACTIONS(2519), + [anon_sym_try] = ACTIONS(2519), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_throw] = ACTIONS(2519), + [anon_sym_namespace] = ACTIONS(2519), + [anon_sym_using] = ACTIONS(2519), + [anon_sym_static_assert] = ACTIONS(2519), + [anon_sym_concept] = ACTIONS(2519), + [anon_sym_co_return] = ACTIONS(2519), + [anon_sym_co_yield] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2519), + [anon_sym_new] = ACTIONS(2519), + [anon_sym_requires] = ACTIONS(2519), + [sym_this] = ACTIONS(2519), + [sym_nullptr] = ACTIONS(2519), + }, + [770] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [771] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [772] = { + [sym_identifier] = ACTIONS(2017), + [aux_sym_preproc_include_token1] = ACTIONS(2017), + [aux_sym_preproc_def_token1] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2453), + [aux_sym_preproc_if_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [sym_preproc_directive] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_typedef] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2015), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym_input] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym_mutable] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_constinit] = ACTIONS(2017), + [anon_sym_consteval] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2017), + [anon_sym_unsigned] = ACTIONS(2017), + [anon_sym_long] = ACTIONS(2017), + [anon_sym_short] = ACTIONS(2017), + [sym_primitive_type] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_class] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_switch] = ACTIONS(2017), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_goto] = ACTIONS(2017), + [anon_sym_not] = ACTIONS(2017), + [anon_sym_compl] = ACTIONS(2017), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_sizeof] = ACTIONS(2017), + [sym_number_literal] = ACTIONS(2015), + [anon_sym_L_SQUOTE] = ACTIONS(2015), + [anon_sym_u_SQUOTE] = ACTIONS(2015), + [anon_sym_U_SQUOTE] = ACTIONS(2015), + [anon_sym_u8_SQUOTE] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(2015), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [sym_null] = ACTIONS(2017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2017), + [anon_sym_decltype] = ACTIONS(2017), + [anon_sym_virtual] = ACTIONS(2017), + [anon_sym_explicit] = ACTIONS(2017), + [anon_sym_typename] = ACTIONS(2017), + [anon_sym_template] = ACTIONS(2017), + [anon_sym_operator] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_delete] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(2017), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_using] = ACTIONS(2017), + [anon_sym_static_assert] = ACTIONS(2017), + [anon_sym_concept] = ACTIONS(2017), + [anon_sym_co_return] = ACTIONS(2017), + [anon_sym_co_yield] = ACTIONS(2017), + [anon_sym_R_DQUOTE] = ACTIONS(2015), + [anon_sym_LR_DQUOTE] = ACTIONS(2015), + [anon_sym_uR_DQUOTE] = ACTIONS(2015), + [anon_sym_UR_DQUOTE] = ACTIONS(2015), + [anon_sym_u8R_DQUOTE] = ACTIONS(2015), + [anon_sym_co_await] = ACTIONS(2017), + [anon_sym_new] = ACTIONS(2017), + [anon_sym_requires] = ACTIONS(2017), + [sym_this] = ACTIONS(2017), + [sym_nullptr] = ACTIONS(2017), + }, + [773] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [774] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [775] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [776] = { + [sym_identifier] = ACTIONS(2523), + [aux_sym_preproc_include_token1] = ACTIONS(2523), + [aux_sym_preproc_def_token1] = ACTIONS(2523), + [aux_sym_preproc_if_token1] = ACTIONS(2523), + [aux_sym_preproc_if_token2] = ACTIONS(2523), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2523), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2523), + [sym_preproc_directive] = ACTIONS(2523), + [anon_sym_LPAREN2] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_AMP_AMP] = ACTIONS(2525), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_typedef] = ACTIONS(2523), + [anon_sym_extern] = ACTIONS(2523), + [anon_sym___attribute__] = ACTIONS(2523), + [anon_sym_COLON_COLON] = ACTIONS(2525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2525), + [anon_sym___declspec] = ACTIONS(2523), + [anon_sym___based] = ACTIONS(2523), + [anon_sym___cdecl] = ACTIONS(2523), + [anon_sym___clrcall] = ACTIONS(2523), + [anon_sym___stdcall] = ACTIONS(2523), + [anon_sym___fastcall] = ACTIONS(2523), + [anon_sym___thiscall] = ACTIONS(2523), + [anon_sym___vectorcall] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_static] = ACTIONS(2523), + [anon_sym_register] = ACTIONS(2523), + [anon_sym_inline] = ACTIONS(2523), + [anon_sym_thread_local] = ACTIONS(2523), + [anon_sym_input] = ACTIONS(2523), + [anon_sym_const] = ACTIONS(2523), + [anon_sym_volatile] = ACTIONS(2523), + [anon_sym_restrict] = ACTIONS(2523), + [anon_sym__Atomic] = ACTIONS(2523), + [anon_sym_mutable] = ACTIONS(2523), + [anon_sym_constexpr] = ACTIONS(2523), + [anon_sym_constinit] = ACTIONS(2523), + [anon_sym_consteval] = ACTIONS(2523), + [anon_sym_signed] = ACTIONS(2523), + [anon_sym_unsigned] = ACTIONS(2523), + [anon_sym_long] = ACTIONS(2523), + [anon_sym_short] = ACTIONS(2523), + [sym_primitive_type] = ACTIONS(2523), + [anon_sym_enum] = ACTIONS(2523), + [anon_sym_class] = ACTIONS(2523), + [anon_sym_struct] = ACTIONS(2523), + [anon_sym_union] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_else] = ACTIONS(2523), + [anon_sym_switch] = ACTIONS(2523), + [anon_sym_case] = ACTIONS(2523), + [anon_sym_default] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2523), + [anon_sym_do] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_goto] = ACTIONS(2523), + [anon_sym_not] = ACTIONS(2523), + [anon_sym_compl] = ACTIONS(2523), + [anon_sym_DASH_DASH] = ACTIONS(2525), + [anon_sym_PLUS_PLUS] = ACTIONS(2525), + [anon_sym_sizeof] = ACTIONS(2523), + [sym_number_literal] = ACTIONS(2525), + [anon_sym_L_SQUOTE] = ACTIONS(2525), + [anon_sym_u_SQUOTE] = ACTIONS(2525), + [anon_sym_U_SQUOTE] = ACTIONS(2525), + [anon_sym_u8_SQUOTE] = ACTIONS(2525), + [anon_sym_SQUOTE] = ACTIONS(2525), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2523), + [sym_false] = ACTIONS(2523), + [sym_null] = ACTIONS(2523), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2523), + [anon_sym_decltype] = ACTIONS(2523), + [anon_sym_virtual] = ACTIONS(2523), + [anon_sym_explicit] = ACTIONS(2523), + [anon_sym_typename] = ACTIONS(2523), + [anon_sym_template] = ACTIONS(2523), + [anon_sym_operator] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2523), + [anon_sym_delete] = ACTIONS(2523), + [anon_sym_throw] = ACTIONS(2523), + [anon_sym_namespace] = ACTIONS(2523), + [anon_sym_using] = ACTIONS(2523), + [anon_sym_static_assert] = ACTIONS(2523), + [anon_sym_concept] = ACTIONS(2523), + [anon_sym_co_return] = ACTIONS(2523), + [anon_sym_co_yield] = ACTIONS(2523), + [anon_sym_R_DQUOTE] = ACTIONS(2525), + [anon_sym_LR_DQUOTE] = ACTIONS(2525), + [anon_sym_uR_DQUOTE] = ACTIONS(2525), + [anon_sym_UR_DQUOTE] = ACTIONS(2525), + [anon_sym_u8R_DQUOTE] = ACTIONS(2525), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2523), + [sym_this] = ACTIONS(2523), + [sym_nullptr] = ACTIONS(2523), + }, + [777] = { + [sym__declaration_modifiers] = STATE(2101), + [sym__declaration_specifiers] = STATE(5027), + [sym_attribute_specifier] = STATE(2101), + [sym_attribute_declaration] = STATE(2101), + [sym_ms_declspec_modifier] = STATE(2101), + [sym_storage_class_specifier] = STATE(2101), + [sym_type_qualifier] = STATE(2101), + [sym__type_specifier] = STATE(4065), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2101), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3336), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5396), + [sym_qualified_type_identifier] = STATE(3443), + [aux_sym__declaration_specifiers_repeat1] = STATE(2101), + [aux_sym_sized_type_specifier_repeat1] = STATE(3479), + [sym_identifier] = ACTIONS(2855), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2883), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_SLASH] = ACTIONS(2885), + [anon_sym_PERCENT] = ACTIONS(2885), + [anon_sym_PIPE_PIPE] = ACTIONS(2883), + [anon_sym_AMP_AMP] = ACTIONS(2883), + [anon_sym_PIPE] = ACTIONS(2885), + [anon_sym_CARET] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2885), + [anon_sym_EQ_EQ] = ACTIONS(2883), + [anon_sym_BANG_EQ] = ACTIONS(2883), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_GT_EQ] = ACTIONS(2883), + [anon_sym_LT_EQ] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_LT_LT] = ACTIONS(2885), + [anon_sym_GT_GT] = ACTIONS(2885), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2861), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_EQ] = ACTIONS(2885), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2869), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2873), + [anon_sym_STAR_EQ] = ACTIONS(2883), + [anon_sym_SLASH_EQ] = ACTIONS(2883), + [anon_sym_PERCENT_EQ] = ACTIONS(2883), + [anon_sym_PLUS_EQ] = ACTIONS(2883), + [anon_sym_DASH_EQ] = ACTIONS(2883), + [anon_sym_LT_LT_EQ] = ACTIONS(2883), + [anon_sym_GT_GT_EQ] = ACTIONS(2883), + [anon_sym_AMP_EQ] = ACTIONS(2883), + [anon_sym_CARET_EQ] = ACTIONS(2883), + [anon_sym_PIPE_EQ] = ACTIONS(2883), + [anon_sym_and_eq] = ACTIONS(2885), + [anon_sym_or_eq] = ACTIONS(2885), + [anon_sym_xor_eq] = ACTIONS(2885), + [anon_sym_not] = ACTIONS(2885), + [anon_sym_compl] = ACTIONS(2885), + [anon_sym_LT_EQ_GT] = ACTIONS(2883), + [anon_sym_or] = ACTIONS(2885), + [anon_sym_and] = ACTIONS(2885), + [anon_sym_bitor] = ACTIONS(2885), + [anon_sym_xor] = ACTIONS(2885), + [anon_sym_bitand] = ACTIONS(2885), + [anon_sym_not_eq] = ACTIONS(2885), + [anon_sym_DASH_DASH] = ACTIONS(2883), + [anon_sym_PLUS_PLUS] = ACTIONS(2883), + [anon_sym_DASH_GT] = ACTIONS(2885), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_co_await] = ACTIONS(2885), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_DASH_GT_STAR] = ACTIONS(2883), + [anon_sym_LPAREN_RPAREN] = ACTIONS(2883), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2883), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(2889), + }, + [778] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [779] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [780] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [781] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [782] = { + [sym_identifier] = ACTIONS(2553), + [aux_sym_preproc_include_token1] = ACTIONS(2553), + [aux_sym_preproc_def_token1] = ACTIONS(2553), + [aux_sym_preproc_if_token1] = ACTIONS(2553), + [aux_sym_preproc_if_token2] = ACTIONS(2553), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2553), + [sym_preproc_directive] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_AMP_AMP] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_typedef] = ACTIONS(2553), + [anon_sym_extern] = ACTIONS(2553), + [anon_sym___attribute__] = ACTIONS(2553), + [anon_sym_COLON_COLON] = ACTIONS(2555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2555), + [anon_sym___declspec] = ACTIONS(2553), + [anon_sym___based] = ACTIONS(2553), + [anon_sym___cdecl] = ACTIONS(2553), + [anon_sym___clrcall] = ACTIONS(2553), + [anon_sym___stdcall] = ACTIONS(2553), + [anon_sym___fastcall] = ACTIONS(2553), + [anon_sym___thiscall] = ACTIONS(2553), + [anon_sym___vectorcall] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2553), + [anon_sym_static] = ACTIONS(2553), + [anon_sym_register] = ACTIONS(2553), + [anon_sym_inline] = ACTIONS(2553), + [anon_sym_thread_local] = ACTIONS(2553), + [anon_sym_input] = ACTIONS(2553), + [anon_sym_const] = ACTIONS(2553), + [anon_sym_volatile] = ACTIONS(2553), + [anon_sym_restrict] = ACTIONS(2553), + [anon_sym__Atomic] = ACTIONS(2553), + [anon_sym_mutable] = ACTIONS(2553), + [anon_sym_constexpr] = ACTIONS(2553), + [anon_sym_constinit] = ACTIONS(2553), + [anon_sym_consteval] = ACTIONS(2553), + [anon_sym_signed] = ACTIONS(2553), + [anon_sym_unsigned] = ACTIONS(2553), + [anon_sym_long] = ACTIONS(2553), + [anon_sym_short] = ACTIONS(2553), + [sym_primitive_type] = ACTIONS(2553), + [anon_sym_enum] = ACTIONS(2553), + [anon_sym_class] = ACTIONS(2553), + [anon_sym_struct] = ACTIONS(2553), + [anon_sym_union] = ACTIONS(2553), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_else] = ACTIONS(2553), + [anon_sym_switch] = ACTIONS(2553), + [anon_sym_case] = ACTIONS(2553), + [anon_sym_default] = ACTIONS(2553), + [anon_sym_while] = ACTIONS(2553), + [anon_sym_do] = ACTIONS(2553), + [anon_sym_for] = ACTIONS(2553), + [anon_sym_return] = ACTIONS(2553), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_goto] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2553), + [anon_sym_compl] = ACTIONS(2553), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_sizeof] = ACTIONS(2553), + [sym_number_literal] = ACTIONS(2555), + [anon_sym_L_SQUOTE] = ACTIONS(2555), + [anon_sym_u_SQUOTE] = ACTIONS(2555), + [anon_sym_U_SQUOTE] = ACTIONS(2555), + [anon_sym_u8_SQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE] = ACTIONS(2555), + [anon_sym_L_DQUOTE] = ACTIONS(2555), + [anon_sym_u_DQUOTE] = ACTIONS(2555), + [anon_sym_U_DQUOTE] = ACTIONS(2555), + [anon_sym_u8_DQUOTE] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(2555), + [sym_true] = ACTIONS(2553), + [sym_false] = ACTIONS(2553), + [sym_null] = ACTIONS(2553), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2553), + [anon_sym_decltype] = ACTIONS(2553), + [anon_sym_virtual] = ACTIONS(2553), + [anon_sym_explicit] = ACTIONS(2553), + [anon_sym_typename] = ACTIONS(2553), + [anon_sym_template] = ACTIONS(2553), + [anon_sym_operator] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2553), + [anon_sym_delete] = ACTIONS(2553), + [anon_sym_throw] = ACTIONS(2553), + [anon_sym_namespace] = ACTIONS(2553), + [anon_sym_using] = ACTIONS(2553), + [anon_sym_static_assert] = ACTIONS(2553), + [anon_sym_concept] = ACTIONS(2553), + [anon_sym_co_return] = ACTIONS(2553), + [anon_sym_co_yield] = ACTIONS(2553), + [anon_sym_R_DQUOTE] = ACTIONS(2555), + [anon_sym_LR_DQUOTE] = ACTIONS(2555), + [anon_sym_uR_DQUOTE] = ACTIONS(2555), + [anon_sym_UR_DQUOTE] = ACTIONS(2555), + [anon_sym_u8R_DQUOTE] = ACTIONS(2555), + [anon_sym_co_await] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(2553), + [anon_sym_requires] = ACTIONS(2553), + [sym_this] = ACTIONS(2553), + [sym_nullptr] = ACTIONS(2553), + }, + [783] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [784] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [785] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [786] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [787] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [788] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [789] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [790] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [791] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [792] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [793] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [794] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [795] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [796] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [797] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [798] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [799] = { + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2433), + [aux_sym_preproc_include_token1] = ACTIONS(2433), + [aux_sym_preproc_def_token1] = ACTIONS(2433), + [aux_sym_preproc_if_token1] = ACTIONS(2433), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2433), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2433), + [sym_preproc_directive] = ACTIONS(2433), + [anon_sym_LPAREN2] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(2433), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_typedef] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym___attribute__] = ACTIONS(2433), + [anon_sym_COLON_COLON] = ACTIONS(2435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2435), + [anon_sym___declspec] = ACTIONS(2433), + [anon_sym___based] = ACTIONS(2433), + [anon_sym___cdecl] = ACTIONS(2433), + [anon_sym___clrcall] = ACTIONS(2433), + [anon_sym___stdcall] = ACTIONS(2433), + [anon_sym___fastcall] = ACTIONS(2433), + [anon_sym___thiscall] = ACTIONS(2433), + [anon_sym___vectorcall] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_register] = ACTIONS(2433), + [anon_sym_inline] = ACTIONS(2433), + [anon_sym_thread_local] = ACTIONS(2433), + [anon_sym_input] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_volatile] = ACTIONS(2433), + [anon_sym_restrict] = ACTIONS(2433), + [anon_sym__Atomic] = ACTIONS(2433), + [anon_sym_mutable] = ACTIONS(2433), + [anon_sym_constexpr] = ACTIONS(2433), + [anon_sym_constinit] = ACTIONS(2433), + [anon_sym_consteval] = ACTIONS(2433), + [anon_sym_signed] = ACTIONS(2433), + [anon_sym_unsigned] = ACTIONS(2433), + [anon_sym_long] = ACTIONS(2433), + [anon_sym_short] = ACTIONS(2433), + [sym_primitive_type] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_class] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_union] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_switch] = ACTIONS(2433), + [anon_sym_case] = ACTIONS(2433), + [anon_sym_default] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_goto] = ACTIONS(2433), + [anon_sym_not] = ACTIONS(2433), + [anon_sym_compl] = ACTIONS(2433), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_sizeof] = ACTIONS(2433), + [sym_number_literal] = ACTIONS(2435), + [anon_sym_L_SQUOTE] = ACTIONS(2435), + [anon_sym_u_SQUOTE] = ACTIONS(2435), + [anon_sym_U_SQUOTE] = ACTIONS(2435), + [anon_sym_u8_SQUOTE] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_L_DQUOTE] = ACTIONS(2435), + [anon_sym_u_DQUOTE] = ACTIONS(2435), + [anon_sym_U_DQUOTE] = ACTIONS(2435), + [anon_sym_u8_DQUOTE] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(2435), + [sym_true] = ACTIONS(2433), + [sym_false] = ACTIONS(2433), + [sym_null] = ACTIONS(2433), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2433), + [anon_sym_decltype] = ACTIONS(2433), + [anon_sym_virtual] = ACTIONS(2433), + [anon_sym_explicit] = ACTIONS(2433), + [anon_sym_typename] = ACTIONS(2433), + [anon_sym_template] = ACTIONS(2433), + [anon_sym_operator] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_delete] = ACTIONS(2433), + [anon_sym_throw] = ACTIONS(2433), + [anon_sym_namespace] = ACTIONS(2433), + [anon_sym_using] = ACTIONS(2433), + [anon_sym_static_assert] = ACTIONS(2433), + [anon_sym_concept] = ACTIONS(2433), + [anon_sym_co_return] = ACTIONS(2433), + [anon_sym_co_yield] = ACTIONS(2433), + [anon_sym_R_DQUOTE] = ACTIONS(2435), + [anon_sym_LR_DQUOTE] = ACTIONS(2435), + [anon_sym_uR_DQUOTE] = ACTIONS(2435), + [anon_sym_UR_DQUOTE] = ACTIONS(2435), + [anon_sym_u8R_DQUOTE] = ACTIONS(2435), + [anon_sym_co_await] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2433), + [anon_sym_requires] = ACTIONS(2433), + [sym_this] = ACTIONS(2433), + [sym_nullptr] = ACTIONS(2433), + }, + [800] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [801] = { + [ts_builtin_sym_end] = ACTIONS(2431), + [sym_identifier] = ACTIONS(2429), + [aux_sym_preproc_include_token1] = ACTIONS(2429), + [aux_sym_preproc_def_token1] = ACTIONS(2429), + [aux_sym_preproc_if_token1] = ACTIONS(2429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2429), + [sym_preproc_directive] = ACTIONS(2429), + [anon_sym_LPAREN2] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(2431), + [anon_sym_AMP_AMP] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2429), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_typedef] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym___attribute__] = ACTIONS(2429), + [anon_sym_COLON_COLON] = ACTIONS(2431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2431), + [anon_sym___declspec] = ACTIONS(2429), + [anon_sym___based] = ACTIONS(2429), + [anon_sym___cdecl] = ACTIONS(2429), + [anon_sym___clrcall] = ACTIONS(2429), + [anon_sym___stdcall] = ACTIONS(2429), + [anon_sym___fastcall] = ACTIONS(2429), + [anon_sym___thiscall] = ACTIONS(2429), + [anon_sym___vectorcall] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_inline] = ACTIONS(2429), + [anon_sym_thread_local] = ACTIONS(2429), + [anon_sym_input] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_volatile] = ACTIONS(2429), + [anon_sym_restrict] = ACTIONS(2429), + [anon_sym__Atomic] = ACTIONS(2429), + [anon_sym_mutable] = ACTIONS(2429), + [anon_sym_constexpr] = ACTIONS(2429), + [anon_sym_constinit] = ACTIONS(2429), + [anon_sym_consteval] = ACTIONS(2429), + [anon_sym_signed] = ACTIONS(2429), + [anon_sym_unsigned] = ACTIONS(2429), + [anon_sym_long] = ACTIONS(2429), + [anon_sym_short] = ACTIONS(2429), + [sym_primitive_type] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_class] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_switch] = ACTIONS(2429), + [anon_sym_case] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_goto] = ACTIONS(2429), + [anon_sym_not] = ACTIONS(2429), + [anon_sym_compl] = ACTIONS(2429), + [anon_sym_DASH_DASH] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2431), + [anon_sym_sizeof] = ACTIONS(2429), + [sym_number_literal] = ACTIONS(2431), + [anon_sym_L_SQUOTE] = ACTIONS(2431), + [anon_sym_u_SQUOTE] = ACTIONS(2431), + [anon_sym_U_SQUOTE] = ACTIONS(2431), + [anon_sym_u8_SQUOTE] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2431), + [anon_sym_L_DQUOTE] = ACTIONS(2431), + [anon_sym_u_DQUOTE] = ACTIONS(2431), + [anon_sym_U_DQUOTE] = ACTIONS(2431), + [anon_sym_u8_DQUOTE] = ACTIONS(2431), + [anon_sym_DQUOTE] = ACTIONS(2431), + [sym_true] = ACTIONS(2429), + [sym_false] = ACTIONS(2429), + [sym_null] = ACTIONS(2429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2429), + [anon_sym_decltype] = ACTIONS(2429), + [anon_sym_virtual] = ACTIONS(2429), + [anon_sym_explicit] = ACTIONS(2429), + [anon_sym_typename] = ACTIONS(2429), + [anon_sym_template] = ACTIONS(2429), + [anon_sym_operator] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_delete] = ACTIONS(2429), + [anon_sym_throw] = ACTIONS(2429), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_using] = ACTIONS(2429), + [anon_sym_static_assert] = ACTIONS(2429), + [anon_sym_concept] = ACTIONS(2429), + [anon_sym_co_return] = ACTIONS(2429), + [anon_sym_co_yield] = ACTIONS(2429), + [anon_sym_R_DQUOTE] = ACTIONS(2431), + [anon_sym_LR_DQUOTE] = ACTIONS(2431), + [anon_sym_uR_DQUOTE] = ACTIONS(2431), + [anon_sym_UR_DQUOTE] = ACTIONS(2431), + [anon_sym_u8R_DQUOTE] = ACTIONS(2431), + [anon_sym_co_await] = ACTIONS(2429), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_requires] = ACTIONS(2429), + [sym_this] = ACTIONS(2429), + [sym_nullptr] = ACTIONS(2429), + }, + [802] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [803] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [804] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [805] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [806] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [807] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [808] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [809] = { + [sym_identifier] = ACTIONS(2429), + [aux_sym_preproc_include_token1] = ACTIONS(2429), + [aux_sym_preproc_def_token1] = ACTIONS(2429), + [aux_sym_preproc_if_token1] = ACTIONS(2429), + [aux_sym_preproc_if_token2] = ACTIONS(2429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2429), + [sym_preproc_directive] = ACTIONS(2429), + [anon_sym_LPAREN2] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(2431), + [anon_sym_AMP_AMP] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2429), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_typedef] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym___attribute__] = ACTIONS(2429), + [anon_sym_COLON_COLON] = ACTIONS(2431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2431), + [anon_sym___declspec] = ACTIONS(2429), + [anon_sym___based] = ACTIONS(2429), + [anon_sym___cdecl] = ACTIONS(2429), + [anon_sym___clrcall] = ACTIONS(2429), + [anon_sym___stdcall] = ACTIONS(2429), + [anon_sym___fastcall] = ACTIONS(2429), + [anon_sym___thiscall] = ACTIONS(2429), + [anon_sym___vectorcall] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_inline] = ACTIONS(2429), + [anon_sym_thread_local] = ACTIONS(2429), + [anon_sym_input] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_volatile] = ACTIONS(2429), + [anon_sym_restrict] = ACTIONS(2429), + [anon_sym__Atomic] = ACTIONS(2429), + [anon_sym_mutable] = ACTIONS(2429), + [anon_sym_constexpr] = ACTIONS(2429), + [anon_sym_constinit] = ACTIONS(2429), + [anon_sym_consteval] = ACTIONS(2429), + [anon_sym_signed] = ACTIONS(2429), + [anon_sym_unsigned] = ACTIONS(2429), + [anon_sym_long] = ACTIONS(2429), + [anon_sym_short] = ACTIONS(2429), + [sym_primitive_type] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_class] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_switch] = ACTIONS(2429), + [anon_sym_case] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_goto] = ACTIONS(2429), + [anon_sym_not] = ACTIONS(2429), + [anon_sym_compl] = ACTIONS(2429), + [anon_sym_DASH_DASH] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2431), + [anon_sym_sizeof] = ACTIONS(2429), + [sym_number_literal] = ACTIONS(2431), + [anon_sym_L_SQUOTE] = ACTIONS(2431), + [anon_sym_u_SQUOTE] = ACTIONS(2431), + [anon_sym_U_SQUOTE] = ACTIONS(2431), + [anon_sym_u8_SQUOTE] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2431), + [anon_sym_L_DQUOTE] = ACTIONS(2431), + [anon_sym_u_DQUOTE] = ACTIONS(2431), + [anon_sym_U_DQUOTE] = ACTIONS(2431), + [anon_sym_u8_DQUOTE] = ACTIONS(2431), + [anon_sym_DQUOTE] = ACTIONS(2431), + [sym_true] = ACTIONS(2429), + [sym_false] = ACTIONS(2429), + [sym_null] = ACTIONS(2429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2429), + [anon_sym_decltype] = ACTIONS(2429), + [anon_sym_virtual] = ACTIONS(2429), + [anon_sym_explicit] = ACTIONS(2429), + [anon_sym_typename] = ACTIONS(2429), + [anon_sym_template] = ACTIONS(2429), + [anon_sym_operator] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_delete] = ACTIONS(2429), + [anon_sym_throw] = ACTIONS(2429), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_using] = ACTIONS(2429), + [anon_sym_static_assert] = ACTIONS(2429), + [anon_sym_concept] = ACTIONS(2429), + [anon_sym_co_return] = ACTIONS(2429), + [anon_sym_co_yield] = ACTIONS(2429), + [anon_sym_R_DQUOTE] = ACTIONS(2431), + [anon_sym_LR_DQUOTE] = ACTIONS(2431), + [anon_sym_uR_DQUOTE] = ACTIONS(2431), + [anon_sym_UR_DQUOTE] = ACTIONS(2431), + [anon_sym_u8R_DQUOTE] = ACTIONS(2431), + [anon_sym_co_await] = ACTIONS(2429), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_requires] = ACTIONS(2429), + [sym_this] = ACTIONS(2429), + [sym_nullptr] = ACTIONS(2429), + }, + [810] = { + [sym_identifier] = ACTIONS(2433), + [aux_sym_preproc_include_token1] = ACTIONS(2433), + [aux_sym_preproc_def_token1] = ACTIONS(2433), + [aux_sym_preproc_if_token1] = ACTIONS(2433), + [aux_sym_preproc_if_token2] = ACTIONS(2433), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2433), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2433), + [sym_preproc_directive] = ACTIONS(2433), + [anon_sym_LPAREN2] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(2433), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_typedef] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym___attribute__] = ACTIONS(2433), + [anon_sym_COLON_COLON] = ACTIONS(2435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2435), + [anon_sym___declspec] = ACTIONS(2433), + [anon_sym___based] = ACTIONS(2433), + [anon_sym___cdecl] = ACTIONS(2433), + [anon_sym___clrcall] = ACTIONS(2433), + [anon_sym___stdcall] = ACTIONS(2433), + [anon_sym___fastcall] = ACTIONS(2433), + [anon_sym___thiscall] = ACTIONS(2433), + [anon_sym___vectorcall] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_register] = ACTIONS(2433), + [anon_sym_inline] = ACTIONS(2433), + [anon_sym_thread_local] = ACTIONS(2433), + [anon_sym_input] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_volatile] = ACTIONS(2433), + [anon_sym_restrict] = ACTIONS(2433), + [anon_sym__Atomic] = ACTIONS(2433), + [anon_sym_mutable] = ACTIONS(2433), + [anon_sym_constexpr] = ACTIONS(2433), + [anon_sym_constinit] = ACTIONS(2433), + [anon_sym_consteval] = ACTIONS(2433), + [anon_sym_signed] = ACTIONS(2433), + [anon_sym_unsigned] = ACTIONS(2433), + [anon_sym_long] = ACTIONS(2433), + [anon_sym_short] = ACTIONS(2433), + [sym_primitive_type] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_class] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_union] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_switch] = ACTIONS(2433), + [anon_sym_case] = ACTIONS(2433), + [anon_sym_default] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_goto] = ACTIONS(2433), + [anon_sym_not] = ACTIONS(2433), + [anon_sym_compl] = ACTIONS(2433), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_sizeof] = ACTIONS(2433), + [sym_number_literal] = ACTIONS(2435), + [anon_sym_L_SQUOTE] = ACTIONS(2435), + [anon_sym_u_SQUOTE] = ACTIONS(2435), + [anon_sym_U_SQUOTE] = ACTIONS(2435), + [anon_sym_u8_SQUOTE] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_L_DQUOTE] = ACTIONS(2435), + [anon_sym_u_DQUOTE] = ACTIONS(2435), + [anon_sym_U_DQUOTE] = ACTIONS(2435), + [anon_sym_u8_DQUOTE] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(2435), + [sym_true] = ACTIONS(2433), + [sym_false] = ACTIONS(2433), + [sym_null] = ACTIONS(2433), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2433), + [anon_sym_decltype] = ACTIONS(2433), + [anon_sym_virtual] = ACTIONS(2433), + [anon_sym_explicit] = ACTIONS(2433), + [anon_sym_typename] = ACTIONS(2433), + [anon_sym_template] = ACTIONS(2433), + [anon_sym_operator] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_delete] = ACTIONS(2433), + [anon_sym_throw] = ACTIONS(2433), + [anon_sym_namespace] = ACTIONS(2433), + [anon_sym_using] = ACTIONS(2433), + [anon_sym_static_assert] = ACTIONS(2433), + [anon_sym_concept] = ACTIONS(2433), + [anon_sym_co_return] = ACTIONS(2433), + [anon_sym_co_yield] = ACTIONS(2433), + [anon_sym_R_DQUOTE] = ACTIONS(2435), + [anon_sym_LR_DQUOTE] = ACTIONS(2435), + [anon_sym_uR_DQUOTE] = ACTIONS(2435), + [anon_sym_UR_DQUOTE] = ACTIONS(2435), + [anon_sym_u8R_DQUOTE] = ACTIONS(2435), + [anon_sym_co_await] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2433), + [anon_sym_requires] = ACTIONS(2433), + [sym_this] = ACTIONS(2433), + [sym_nullptr] = ACTIONS(2433), + }, + [811] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [812] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [813] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [814] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [815] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [816] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [817] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [818] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [819] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [820] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [821] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [822] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [823] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [824] = { + [ts_builtin_sym_end] = ACTIONS(2541), + [sym_identifier] = ACTIONS(2539), + [aux_sym_preproc_include_token1] = ACTIONS(2539), + [aux_sym_preproc_def_token1] = ACTIONS(2539), + [aux_sym_preproc_if_token1] = ACTIONS(2539), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2539), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2539), + [sym_preproc_directive] = ACTIONS(2539), + [anon_sym_LPAREN2] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_PLUS] = ACTIONS(2539), + [anon_sym_STAR] = ACTIONS(2541), + [anon_sym_AMP_AMP] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym___attribute__] = ACTIONS(2539), + [anon_sym_COLON_COLON] = ACTIONS(2541), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2541), + [anon_sym___declspec] = ACTIONS(2539), + [anon_sym___based] = ACTIONS(2539), + [anon_sym___cdecl] = ACTIONS(2539), + [anon_sym___clrcall] = ACTIONS(2539), + [anon_sym___stdcall] = ACTIONS(2539), + [anon_sym___fastcall] = ACTIONS(2539), + [anon_sym___thiscall] = ACTIONS(2539), + [anon_sym___vectorcall] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_register] = ACTIONS(2539), + [anon_sym_inline] = ACTIONS(2539), + [anon_sym_thread_local] = ACTIONS(2539), + [anon_sym_input] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_volatile] = ACTIONS(2539), + [anon_sym_restrict] = ACTIONS(2539), + [anon_sym__Atomic] = ACTIONS(2539), + [anon_sym_mutable] = ACTIONS(2539), + [anon_sym_constexpr] = ACTIONS(2539), + [anon_sym_constinit] = ACTIONS(2539), + [anon_sym_consteval] = ACTIONS(2539), + [anon_sym_signed] = ACTIONS(2539), + [anon_sym_unsigned] = ACTIONS(2539), + [anon_sym_long] = ACTIONS(2539), + [anon_sym_short] = ACTIONS(2539), + [sym_primitive_type] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), + [anon_sym_class] = ACTIONS(2539), + [anon_sym_struct] = ACTIONS(2539), + [anon_sym_union] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2539), + [anon_sym_default] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_goto] = ACTIONS(2539), + [anon_sym_not] = ACTIONS(2539), + [anon_sym_compl] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2541), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_number_literal] = ACTIONS(2541), + [anon_sym_L_SQUOTE] = ACTIONS(2541), + [anon_sym_u_SQUOTE] = ACTIONS(2541), + [anon_sym_U_SQUOTE] = ACTIONS(2541), + [anon_sym_u8_SQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_L_DQUOTE] = ACTIONS(2541), + [anon_sym_u_DQUOTE] = ACTIONS(2541), + [anon_sym_U_DQUOTE] = ACTIONS(2541), + [anon_sym_u8_DQUOTE] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(2541), + [sym_true] = ACTIONS(2539), + [sym_false] = ACTIONS(2539), + [sym_null] = ACTIONS(2539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2539), + [anon_sym_decltype] = ACTIONS(2539), + [anon_sym_virtual] = ACTIONS(2539), + [anon_sym_explicit] = ACTIONS(2539), + [anon_sym_typename] = ACTIONS(2539), + [anon_sym_template] = ACTIONS(2539), + [anon_sym_operator] = ACTIONS(2539), + [anon_sym_try] = ACTIONS(2539), + [anon_sym_delete] = ACTIONS(2539), + [anon_sym_throw] = ACTIONS(2539), + [anon_sym_namespace] = ACTIONS(2539), + [anon_sym_using] = ACTIONS(2539), + [anon_sym_static_assert] = ACTIONS(2539), + [anon_sym_concept] = ACTIONS(2539), + [anon_sym_co_return] = ACTIONS(2539), + [anon_sym_co_yield] = ACTIONS(2539), + [anon_sym_R_DQUOTE] = ACTIONS(2541), + [anon_sym_LR_DQUOTE] = ACTIONS(2541), + [anon_sym_uR_DQUOTE] = ACTIONS(2541), + [anon_sym_UR_DQUOTE] = ACTIONS(2541), + [anon_sym_u8R_DQUOTE] = ACTIONS(2541), + [anon_sym_co_await] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(2539), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2539), + [sym_nullptr] = ACTIONS(2539), + }, + [825] = { + [ts_builtin_sym_end] = ACTIONS(2533), + [sym_identifier] = ACTIONS(2531), + [aux_sym_preproc_include_token1] = ACTIONS(2531), + [aux_sym_preproc_def_token1] = ACTIONS(2531), + [aux_sym_preproc_if_token1] = ACTIONS(2531), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2531), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2531), + [sym_preproc_directive] = ACTIONS(2531), + [anon_sym_LPAREN2] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(2533), + [anon_sym_TILDE] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2531), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_typedef] = ACTIONS(2531), + [anon_sym_extern] = ACTIONS(2531), + [anon_sym___attribute__] = ACTIONS(2531), + [anon_sym_COLON_COLON] = ACTIONS(2533), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2533), + [anon_sym___declspec] = ACTIONS(2531), + [anon_sym___based] = ACTIONS(2531), + [anon_sym___cdecl] = ACTIONS(2531), + [anon_sym___clrcall] = ACTIONS(2531), + [anon_sym___stdcall] = ACTIONS(2531), + [anon_sym___fastcall] = ACTIONS(2531), + [anon_sym___thiscall] = ACTIONS(2531), + [anon_sym___vectorcall] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_LBRACK] = ACTIONS(2531), + [anon_sym_static] = ACTIONS(2531), + [anon_sym_register] = ACTIONS(2531), + [anon_sym_inline] = ACTIONS(2531), + [anon_sym_thread_local] = ACTIONS(2531), + [anon_sym_input] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [anon_sym_volatile] = ACTIONS(2531), + [anon_sym_restrict] = ACTIONS(2531), + [anon_sym__Atomic] = ACTIONS(2531), + [anon_sym_mutable] = ACTIONS(2531), + [anon_sym_constexpr] = ACTIONS(2531), + [anon_sym_constinit] = ACTIONS(2531), + [anon_sym_consteval] = ACTIONS(2531), + [anon_sym_signed] = ACTIONS(2531), + [anon_sym_unsigned] = ACTIONS(2531), + [anon_sym_long] = ACTIONS(2531), + [anon_sym_short] = ACTIONS(2531), + [sym_primitive_type] = ACTIONS(2531), + [anon_sym_enum] = ACTIONS(2531), + [anon_sym_class] = ACTIONS(2531), + [anon_sym_struct] = ACTIONS(2531), + [anon_sym_union] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_else] = ACTIONS(2531), + [anon_sym_switch] = ACTIONS(2531), + [anon_sym_case] = ACTIONS(2531), + [anon_sym_default] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_do] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_goto] = ACTIONS(2531), + [anon_sym_not] = ACTIONS(2531), + [anon_sym_compl] = ACTIONS(2531), + [anon_sym_DASH_DASH] = ACTIONS(2533), + [anon_sym_PLUS_PLUS] = ACTIONS(2533), + [anon_sym_sizeof] = ACTIONS(2531), + [sym_number_literal] = ACTIONS(2533), + [anon_sym_L_SQUOTE] = ACTIONS(2533), + [anon_sym_u_SQUOTE] = ACTIONS(2533), + [anon_sym_U_SQUOTE] = ACTIONS(2533), + [anon_sym_u8_SQUOTE] = ACTIONS(2533), + [anon_sym_SQUOTE] = ACTIONS(2533), + [anon_sym_L_DQUOTE] = ACTIONS(2533), + [anon_sym_u_DQUOTE] = ACTIONS(2533), + [anon_sym_U_DQUOTE] = ACTIONS(2533), + [anon_sym_u8_DQUOTE] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(2533), + [sym_true] = ACTIONS(2531), + [sym_false] = ACTIONS(2531), + [sym_null] = ACTIONS(2531), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2531), + [anon_sym_decltype] = ACTIONS(2531), + [anon_sym_virtual] = ACTIONS(2531), + [anon_sym_explicit] = ACTIONS(2531), + [anon_sym_typename] = ACTIONS(2531), + [anon_sym_template] = ACTIONS(2531), + [anon_sym_operator] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_throw] = ACTIONS(2531), + [anon_sym_namespace] = ACTIONS(2531), + [anon_sym_using] = ACTIONS(2531), + [anon_sym_static_assert] = ACTIONS(2531), + [anon_sym_concept] = ACTIONS(2531), + [anon_sym_co_return] = ACTIONS(2531), + [anon_sym_co_yield] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(2531), + [anon_sym_requires] = ACTIONS(2531), + [sym_this] = ACTIONS(2531), + [sym_nullptr] = ACTIONS(2531), + }, + [826] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [827] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [828] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [829] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [830] = { + [ts_builtin_sym_end] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2549), + [aux_sym_preproc_include_token1] = ACTIONS(2549), + [aux_sym_preproc_def_token1] = ACTIONS(2549), + [aux_sym_preproc_if_token1] = ACTIONS(2549), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2549), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2549), + [sym_preproc_directive] = ACTIONS(2549), + [anon_sym_LPAREN2] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_typedef] = ACTIONS(2549), + [anon_sym_extern] = ACTIONS(2549), + [anon_sym___attribute__] = ACTIONS(2549), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2551), + [anon_sym___declspec] = ACTIONS(2549), + [anon_sym___based] = ACTIONS(2549), + [anon_sym___cdecl] = ACTIONS(2549), + [anon_sym___clrcall] = ACTIONS(2549), + [anon_sym___stdcall] = ACTIONS(2549), + [anon_sym___fastcall] = ACTIONS(2549), + [anon_sym___thiscall] = ACTIONS(2549), + [anon_sym___vectorcall] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_register] = ACTIONS(2549), + [anon_sym_inline] = ACTIONS(2549), + [anon_sym_thread_local] = ACTIONS(2549), + [anon_sym_input] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_volatile] = ACTIONS(2549), + [anon_sym_restrict] = ACTIONS(2549), + [anon_sym__Atomic] = ACTIONS(2549), + [anon_sym_mutable] = ACTIONS(2549), + [anon_sym_constexpr] = ACTIONS(2549), + [anon_sym_constinit] = ACTIONS(2549), + [anon_sym_consteval] = ACTIONS(2549), + [anon_sym_signed] = ACTIONS(2549), + [anon_sym_unsigned] = ACTIONS(2549), + [anon_sym_long] = ACTIONS(2549), + [anon_sym_short] = ACTIONS(2549), + [sym_primitive_type] = ACTIONS(2549), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_struct] = ACTIONS(2549), + [anon_sym_union] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(2549), + [anon_sym_else] = ACTIONS(2549), + [anon_sym_switch] = ACTIONS(2549), + [anon_sym_case] = ACTIONS(2549), + [anon_sym_default] = ACTIONS(2549), + [anon_sym_while] = ACTIONS(2549), + [anon_sym_do] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(2549), + [anon_sym_return] = ACTIONS(2549), + [anon_sym_break] = ACTIONS(2549), + [anon_sym_continue] = ACTIONS(2549), + [anon_sym_goto] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(2549), + [anon_sym_compl] = ACTIONS(2549), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_sizeof] = ACTIONS(2549), + [sym_number_literal] = ACTIONS(2551), + [anon_sym_L_SQUOTE] = ACTIONS(2551), + [anon_sym_u_SQUOTE] = ACTIONS(2551), + [anon_sym_U_SQUOTE] = ACTIONS(2551), + [anon_sym_u8_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_L_DQUOTE] = ACTIONS(2551), + [anon_sym_u_DQUOTE] = ACTIONS(2551), + [anon_sym_U_DQUOTE] = ACTIONS(2551), + [anon_sym_u8_DQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [sym_true] = ACTIONS(2549), + [sym_false] = ACTIONS(2549), + [sym_null] = ACTIONS(2549), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2549), + [anon_sym_decltype] = ACTIONS(2549), + [anon_sym_virtual] = ACTIONS(2549), + [anon_sym_explicit] = ACTIONS(2549), + [anon_sym_typename] = ACTIONS(2549), + [anon_sym_template] = ACTIONS(2549), + [anon_sym_operator] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2549), + [anon_sym_delete] = ACTIONS(2549), + [anon_sym_throw] = ACTIONS(2549), + [anon_sym_namespace] = ACTIONS(2549), + [anon_sym_using] = ACTIONS(2549), + [anon_sym_static_assert] = ACTIONS(2549), + [anon_sym_concept] = ACTIONS(2549), + [anon_sym_co_return] = ACTIONS(2549), + [anon_sym_co_yield] = ACTIONS(2549), + [anon_sym_R_DQUOTE] = ACTIONS(2551), + [anon_sym_LR_DQUOTE] = ACTIONS(2551), + [anon_sym_uR_DQUOTE] = ACTIONS(2551), + [anon_sym_UR_DQUOTE] = ACTIONS(2551), + [anon_sym_u8R_DQUOTE] = ACTIONS(2551), + [anon_sym_co_await] = ACTIONS(2549), + [anon_sym_new] = ACTIONS(2549), + [anon_sym_requires] = ACTIONS(2549), + [sym_this] = ACTIONS(2549), + [sym_nullptr] = ACTIONS(2549), + }, + [831] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [832] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_input] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [833] = { + [sym_identifier] = ACTIONS(2519), + [aux_sym_preproc_include_token1] = ACTIONS(2519), + [aux_sym_preproc_def_token1] = ACTIONS(2519), + [aux_sym_preproc_if_token1] = ACTIONS(2519), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2519), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2519), + [sym_preproc_directive] = ACTIONS(2519), + [anon_sym_LPAREN2] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_STAR] = ACTIONS(2521), + [anon_sym_AMP_AMP] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_typedef] = ACTIONS(2519), + [anon_sym_extern] = ACTIONS(2519), + [anon_sym___attribute__] = ACTIONS(2519), + [anon_sym_COLON_COLON] = ACTIONS(2521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), + [anon_sym___declspec] = ACTIONS(2519), + [anon_sym___based] = ACTIONS(2519), + [anon_sym___cdecl] = ACTIONS(2519), + [anon_sym___clrcall] = ACTIONS(2519), + [anon_sym___stdcall] = ACTIONS(2519), + [anon_sym___fastcall] = ACTIONS(2519), + [anon_sym___thiscall] = ACTIONS(2519), + [anon_sym___vectorcall] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_static] = ACTIONS(2519), + [anon_sym_register] = ACTIONS(2519), + [anon_sym_inline] = ACTIONS(2519), + [anon_sym_thread_local] = ACTIONS(2519), + [anon_sym_input] = ACTIONS(2519), + [anon_sym_const] = ACTIONS(2519), + [anon_sym_volatile] = ACTIONS(2519), + [anon_sym_restrict] = ACTIONS(2519), + [anon_sym__Atomic] = ACTIONS(2519), + [anon_sym_mutable] = ACTIONS(2519), + [anon_sym_constexpr] = ACTIONS(2519), + [anon_sym_constinit] = ACTIONS(2519), + [anon_sym_consteval] = ACTIONS(2519), + [anon_sym_signed] = ACTIONS(2519), + [anon_sym_unsigned] = ACTIONS(2519), + [anon_sym_long] = ACTIONS(2519), + [anon_sym_short] = ACTIONS(2519), + [sym_primitive_type] = ACTIONS(2519), + [anon_sym_enum] = ACTIONS(2519), + [anon_sym_class] = ACTIONS(2519), + [anon_sym_struct] = ACTIONS(2519), + [anon_sym_union] = ACTIONS(2519), + [anon_sym_if] = ACTIONS(2519), + [anon_sym_else] = ACTIONS(2519), + [anon_sym_switch] = ACTIONS(2519), + [anon_sym_case] = ACTIONS(2519), + [anon_sym_default] = ACTIONS(2519), + [anon_sym_while] = ACTIONS(2519), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_for] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2519), + [anon_sym_break] = ACTIONS(2519), + [anon_sym_continue] = ACTIONS(2519), + [anon_sym_goto] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2519), + [anon_sym_compl] = ACTIONS(2519), + [anon_sym_DASH_DASH] = ACTIONS(2521), + [anon_sym_PLUS_PLUS] = ACTIONS(2521), + [anon_sym_sizeof] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2521), + [anon_sym_u_SQUOTE] = ACTIONS(2521), + [anon_sym_U_SQUOTE] = ACTIONS(2521), + [anon_sym_u8_SQUOTE] = ACTIONS(2521), + [anon_sym_SQUOTE] = ACTIONS(2521), + [anon_sym_L_DQUOTE] = ACTIONS(2521), + [anon_sym_u_DQUOTE] = ACTIONS(2521), + [anon_sym_U_DQUOTE] = ACTIONS(2521), + [anon_sym_u8_DQUOTE] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(2521), + [sym_true] = ACTIONS(2519), + [sym_false] = ACTIONS(2519), + [sym_null] = ACTIONS(2519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2519), + [anon_sym_decltype] = ACTIONS(2519), + [anon_sym_virtual] = ACTIONS(2519), + [anon_sym_explicit] = ACTIONS(2519), + [anon_sym_typename] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(2519), + [anon_sym_operator] = ACTIONS(2519), + [anon_sym_try] = ACTIONS(2519), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_throw] = ACTIONS(2519), + [anon_sym_namespace] = ACTIONS(2519), + [anon_sym_using] = ACTIONS(2519), + [anon_sym_static_assert] = ACTIONS(2519), + [anon_sym_concept] = ACTIONS(2519), + [anon_sym_co_return] = ACTIONS(2519), + [anon_sym_co_yield] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2519), + [anon_sym_new] = ACTIONS(2519), + [anon_sym_requires] = ACTIONS(2519), + [sym_this] = ACTIONS(2519), + [sym_nullptr] = ACTIONS(2519), + }, + [834] = { + [sym_identifier] = ACTIONS(2523), + [aux_sym_preproc_include_token1] = ACTIONS(2523), + [aux_sym_preproc_def_token1] = ACTIONS(2523), + [aux_sym_preproc_if_token1] = ACTIONS(2523), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2523), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2523), + [sym_preproc_directive] = ACTIONS(2523), + [anon_sym_LPAREN2] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_AMP_AMP] = ACTIONS(2525), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_typedef] = ACTIONS(2523), + [anon_sym_extern] = ACTIONS(2523), + [anon_sym___attribute__] = ACTIONS(2523), + [anon_sym_COLON_COLON] = ACTIONS(2525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2525), + [anon_sym___declspec] = ACTIONS(2523), + [anon_sym___based] = ACTIONS(2523), + [anon_sym___cdecl] = ACTIONS(2523), + [anon_sym___clrcall] = ACTIONS(2523), + [anon_sym___stdcall] = ACTIONS(2523), + [anon_sym___fastcall] = ACTIONS(2523), + [anon_sym___thiscall] = ACTIONS(2523), + [anon_sym___vectorcall] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_static] = ACTIONS(2523), + [anon_sym_register] = ACTIONS(2523), + [anon_sym_inline] = ACTIONS(2523), + [anon_sym_thread_local] = ACTIONS(2523), + [anon_sym_input] = ACTIONS(2523), + [anon_sym_const] = ACTIONS(2523), + [anon_sym_volatile] = ACTIONS(2523), + [anon_sym_restrict] = ACTIONS(2523), + [anon_sym__Atomic] = ACTIONS(2523), + [anon_sym_mutable] = ACTIONS(2523), + [anon_sym_constexpr] = ACTIONS(2523), + [anon_sym_constinit] = ACTIONS(2523), + [anon_sym_consteval] = ACTIONS(2523), + [anon_sym_signed] = ACTIONS(2523), + [anon_sym_unsigned] = ACTIONS(2523), + [anon_sym_long] = ACTIONS(2523), + [anon_sym_short] = ACTIONS(2523), + [sym_primitive_type] = ACTIONS(2523), + [anon_sym_enum] = ACTIONS(2523), + [anon_sym_class] = ACTIONS(2523), + [anon_sym_struct] = ACTIONS(2523), + [anon_sym_union] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_else] = ACTIONS(2523), + [anon_sym_switch] = ACTIONS(2523), + [anon_sym_case] = ACTIONS(2523), + [anon_sym_default] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2523), + [anon_sym_do] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_goto] = ACTIONS(2523), + [anon_sym_not] = ACTIONS(2523), + [anon_sym_compl] = ACTIONS(2523), + [anon_sym_DASH_DASH] = ACTIONS(2525), + [anon_sym_PLUS_PLUS] = ACTIONS(2525), + [anon_sym_sizeof] = ACTIONS(2523), + [sym_number_literal] = ACTIONS(2525), + [anon_sym_L_SQUOTE] = ACTIONS(2525), + [anon_sym_u_SQUOTE] = ACTIONS(2525), + [anon_sym_U_SQUOTE] = ACTIONS(2525), + [anon_sym_u8_SQUOTE] = ACTIONS(2525), + [anon_sym_SQUOTE] = ACTIONS(2525), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2523), + [sym_false] = ACTIONS(2523), + [sym_null] = ACTIONS(2523), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2523), + [anon_sym_decltype] = ACTIONS(2523), + [anon_sym_virtual] = ACTIONS(2523), + [anon_sym_explicit] = ACTIONS(2523), + [anon_sym_typename] = ACTIONS(2523), + [anon_sym_template] = ACTIONS(2523), + [anon_sym_operator] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2523), + [anon_sym_delete] = ACTIONS(2523), + [anon_sym_throw] = ACTIONS(2523), + [anon_sym_namespace] = ACTIONS(2523), + [anon_sym_using] = ACTIONS(2523), + [anon_sym_static_assert] = ACTIONS(2523), + [anon_sym_concept] = ACTIONS(2523), + [anon_sym_co_return] = ACTIONS(2523), + [anon_sym_co_yield] = ACTIONS(2523), + [anon_sym_R_DQUOTE] = ACTIONS(2525), + [anon_sym_LR_DQUOTE] = ACTIONS(2525), + [anon_sym_uR_DQUOTE] = ACTIONS(2525), + [anon_sym_UR_DQUOTE] = ACTIONS(2525), + [anon_sym_u8R_DQUOTE] = ACTIONS(2525), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2523), + [sym_this] = ACTIONS(2523), + [sym_nullptr] = ACTIONS(2523), + }, + [835] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [836] = { + [sym_identifier] = ACTIONS(2545), + [aux_sym_preproc_include_token1] = ACTIONS(2545), + [aux_sym_preproc_def_token1] = ACTIONS(2545), + [aux_sym_preproc_if_token1] = ACTIONS(2545), + [aux_sym_preproc_if_token2] = ACTIONS(2545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2545), + [sym_preproc_directive] = ACTIONS(2545), + [anon_sym_LPAREN2] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_AMP_AMP] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_typedef] = ACTIONS(2545), + [anon_sym_extern] = ACTIONS(2545), + [anon_sym___attribute__] = ACTIONS(2545), + [anon_sym_COLON_COLON] = ACTIONS(2547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2547), + [anon_sym___declspec] = ACTIONS(2545), + [anon_sym___based] = ACTIONS(2545), + [anon_sym___cdecl] = ACTIONS(2545), + [anon_sym___clrcall] = ACTIONS(2545), + [anon_sym___stdcall] = ACTIONS(2545), + [anon_sym___fastcall] = ACTIONS(2545), + [anon_sym___thiscall] = ACTIONS(2545), + [anon_sym___vectorcall] = ACTIONS(2545), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2545), + [anon_sym_register] = ACTIONS(2545), + [anon_sym_inline] = ACTIONS(2545), + [anon_sym_thread_local] = ACTIONS(2545), + [anon_sym_input] = ACTIONS(2545), + [anon_sym_const] = ACTIONS(2545), + [anon_sym_volatile] = ACTIONS(2545), + [anon_sym_restrict] = ACTIONS(2545), + [anon_sym__Atomic] = ACTIONS(2545), + [anon_sym_mutable] = ACTIONS(2545), + [anon_sym_constexpr] = ACTIONS(2545), + [anon_sym_constinit] = ACTIONS(2545), + [anon_sym_consteval] = ACTIONS(2545), + [anon_sym_signed] = ACTIONS(2545), + [anon_sym_unsigned] = ACTIONS(2545), + [anon_sym_long] = ACTIONS(2545), + [anon_sym_short] = ACTIONS(2545), + [sym_primitive_type] = ACTIONS(2545), + [anon_sym_enum] = ACTIONS(2545), + [anon_sym_class] = ACTIONS(2545), + [anon_sym_struct] = ACTIONS(2545), + [anon_sym_union] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_else] = ACTIONS(2545), + [anon_sym_switch] = ACTIONS(2545), + [anon_sym_case] = ACTIONS(2545), + [anon_sym_default] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_do] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_goto] = ACTIONS(2545), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_compl] = ACTIONS(2545), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_sizeof] = ACTIONS(2545), + [sym_number_literal] = ACTIONS(2547), + [anon_sym_L_SQUOTE] = ACTIONS(2547), + [anon_sym_u_SQUOTE] = ACTIONS(2547), + [anon_sym_U_SQUOTE] = ACTIONS(2547), + [anon_sym_u8_SQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_L_DQUOTE] = ACTIONS(2547), + [anon_sym_u_DQUOTE] = ACTIONS(2547), + [anon_sym_U_DQUOTE] = ACTIONS(2547), + [anon_sym_u8_DQUOTE] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [sym_true] = ACTIONS(2545), + [sym_false] = ACTIONS(2545), + [sym_null] = ACTIONS(2545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2545), + [anon_sym_decltype] = ACTIONS(2545), + [anon_sym_virtual] = ACTIONS(2545), + [anon_sym_explicit] = ACTIONS(2545), + [anon_sym_typename] = ACTIONS(2545), + [anon_sym_template] = ACTIONS(2545), + [anon_sym_operator] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [anon_sym_delete] = ACTIONS(2545), + [anon_sym_throw] = ACTIONS(2545), + [anon_sym_namespace] = ACTIONS(2545), + [anon_sym_using] = ACTIONS(2545), + [anon_sym_static_assert] = ACTIONS(2545), + [anon_sym_concept] = ACTIONS(2545), + [anon_sym_co_return] = ACTIONS(2545), + [anon_sym_co_yield] = ACTIONS(2545), + [anon_sym_R_DQUOTE] = ACTIONS(2547), + [anon_sym_LR_DQUOTE] = ACTIONS(2547), + [anon_sym_uR_DQUOTE] = ACTIONS(2547), + [anon_sym_UR_DQUOTE] = ACTIONS(2547), + [anon_sym_u8R_DQUOTE] = ACTIONS(2547), + [anon_sym_co_await] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_requires] = ACTIONS(2545), + [sym_this] = ACTIONS(2545), + [sym_nullptr] = ACTIONS(2545), + }, + [837] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [838] = { + [sym_identifier] = ACTIONS(2445), + [aux_sym_preproc_include_token1] = ACTIONS(2445), + [aux_sym_preproc_def_token1] = ACTIONS(2445), + [aux_sym_preproc_if_token1] = ACTIONS(2445), + [aux_sym_preproc_if_token2] = ACTIONS(2445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2445), + [sym_preproc_directive] = ACTIONS(2445), + [anon_sym_LPAREN2] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2447), + [anon_sym_AMP_AMP] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_typedef] = ACTIONS(2445), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym___attribute__] = ACTIONS(2445), + [anon_sym_COLON_COLON] = ACTIONS(2447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2447), + [anon_sym___declspec] = ACTIONS(2445), + [anon_sym___based] = ACTIONS(2445), + [anon_sym___cdecl] = ACTIONS(2445), + [anon_sym___clrcall] = ACTIONS(2445), + [anon_sym___stdcall] = ACTIONS(2445), + [anon_sym___fastcall] = ACTIONS(2445), + [anon_sym___thiscall] = ACTIONS(2445), + [anon_sym___vectorcall] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_register] = ACTIONS(2445), + [anon_sym_inline] = ACTIONS(2445), + [anon_sym_thread_local] = ACTIONS(2445), + [anon_sym_input] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_volatile] = ACTIONS(2445), + [anon_sym_restrict] = ACTIONS(2445), + [anon_sym__Atomic] = ACTIONS(2445), + [anon_sym_mutable] = ACTIONS(2445), + [anon_sym_constexpr] = ACTIONS(2445), + [anon_sym_constinit] = ACTIONS(2445), + [anon_sym_consteval] = ACTIONS(2445), + [anon_sym_signed] = ACTIONS(2445), + [anon_sym_unsigned] = ACTIONS(2445), + [anon_sym_long] = ACTIONS(2445), + [anon_sym_short] = ACTIONS(2445), + [sym_primitive_type] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_class] = ACTIONS(2445), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_union] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_switch] = ACTIONS(2445), + [anon_sym_case] = ACTIONS(2445), + [anon_sym_default] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_goto] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2445), + [anon_sym_compl] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(2447), + [anon_sym_sizeof] = ACTIONS(2445), + [sym_number_literal] = ACTIONS(2447), + [anon_sym_L_SQUOTE] = ACTIONS(2447), + [anon_sym_u_SQUOTE] = ACTIONS(2447), + [anon_sym_U_SQUOTE] = ACTIONS(2447), + [anon_sym_u8_SQUOTE] = ACTIONS(2447), + [anon_sym_SQUOTE] = ACTIONS(2447), + [anon_sym_L_DQUOTE] = ACTIONS(2447), + [anon_sym_u_DQUOTE] = ACTIONS(2447), + [anon_sym_U_DQUOTE] = ACTIONS(2447), + [anon_sym_u8_DQUOTE] = ACTIONS(2447), + [anon_sym_DQUOTE] = ACTIONS(2447), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_null] = ACTIONS(2445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2445), + [anon_sym_virtual] = ACTIONS(2445), + [anon_sym_explicit] = ACTIONS(2445), + [anon_sym_typename] = ACTIONS(2445), + [anon_sym_template] = ACTIONS(2445), + [anon_sym_operator] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_delete] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_using] = ACTIONS(2445), + [anon_sym_static_assert] = ACTIONS(2445), + [anon_sym_concept] = ACTIONS(2445), + [anon_sym_co_return] = ACTIONS(2445), + [anon_sym_co_yield] = ACTIONS(2445), + [anon_sym_R_DQUOTE] = ACTIONS(2447), + [anon_sym_LR_DQUOTE] = ACTIONS(2447), + [anon_sym_uR_DQUOTE] = ACTIONS(2447), + [anon_sym_UR_DQUOTE] = ACTIONS(2447), + [anon_sym_u8R_DQUOTE] = ACTIONS(2447), + [anon_sym_co_await] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_requires] = ACTIONS(2445), + [sym_this] = ACTIONS(2445), + [sym_nullptr] = ACTIONS(2445), + }, + [839] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [840] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [841] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [842] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [843] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [844] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [845] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [846] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [847] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [848] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [849] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [850] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [851] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [852] = { + [ts_builtin_sym_end] = ACTIONS(2421), + [sym_identifier] = ACTIONS(2419), + [aux_sym_preproc_include_token1] = ACTIONS(2419), + [aux_sym_preproc_def_token1] = ACTIONS(2419), + [aux_sym_preproc_if_token1] = ACTIONS(2419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2419), + [sym_preproc_directive] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_AMP_AMP] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2421), + [anon_sym_typedef] = ACTIONS(2419), + [anon_sym_extern] = ACTIONS(2419), + [anon_sym___attribute__] = ACTIONS(2419), + [anon_sym_COLON_COLON] = ACTIONS(2421), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2421), + [anon_sym___declspec] = ACTIONS(2419), + [anon_sym___based] = ACTIONS(2419), + [anon_sym___cdecl] = ACTIONS(2419), + [anon_sym___clrcall] = ACTIONS(2419), + [anon_sym___stdcall] = ACTIONS(2419), + [anon_sym___fastcall] = ACTIONS(2419), + [anon_sym___thiscall] = ACTIONS(2419), + [anon_sym___vectorcall] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_static] = ACTIONS(2419), + [anon_sym_register] = ACTIONS(2419), + [anon_sym_inline] = ACTIONS(2419), + [anon_sym_thread_local] = ACTIONS(2419), + [anon_sym_input] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_volatile] = ACTIONS(2419), + [anon_sym_restrict] = ACTIONS(2419), + [anon_sym__Atomic] = ACTIONS(2419), + [anon_sym_mutable] = ACTIONS(2419), + [anon_sym_constexpr] = ACTIONS(2419), + [anon_sym_constinit] = ACTIONS(2419), + [anon_sym_consteval] = ACTIONS(2419), + [anon_sym_signed] = ACTIONS(2419), + [anon_sym_unsigned] = ACTIONS(2419), + [anon_sym_long] = ACTIONS(2419), + [anon_sym_short] = ACTIONS(2419), + [sym_primitive_type] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2419), + [anon_sym_class] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2419), + [anon_sym_union] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_else] = ACTIONS(2893), + [anon_sym_switch] = ACTIONS(2419), + [anon_sym_case] = ACTIONS(2419), + [anon_sym_default] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [anon_sym_do] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_goto] = ACTIONS(2419), + [anon_sym_not] = ACTIONS(2419), + [anon_sym_compl] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2421), + [anon_sym_PLUS_PLUS] = ACTIONS(2421), + [anon_sym_sizeof] = ACTIONS(2419), + [sym_number_literal] = ACTIONS(2421), + [anon_sym_L_SQUOTE] = ACTIONS(2421), + [anon_sym_u_SQUOTE] = ACTIONS(2421), + [anon_sym_U_SQUOTE] = ACTIONS(2421), + [anon_sym_u8_SQUOTE] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_L_DQUOTE] = ACTIONS(2421), + [anon_sym_u_DQUOTE] = ACTIONS(2421), + [anon_sym_U_DQUOTE] = ACTIONS(2421), + [anon_sym_u8_DQUOTE] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [sym_true] = ACTIONS(2419), + [sym_false] = ACTIONS(2419), + [sym_null] = ACTIONS(2419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2419), + [anon_sym_decltype] = ACTIONS(2419), + [anon_sym_virtual] = ACTIONS(2419), + [anon_sym_explicit] = ACTIONS(2419), + [anon_sym_typename] = ACTIONS(2419), + [anon_sym_template] = ACTIONS(2419), + [anon_sym_operator] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2419), + [anon_sym_delete] = ACTIONS(2419), + [anon_sym_throw] = ACTIONS(2419), + [anon_sym_namespace] = ACTIONS(2419), + [anon_sym_using] = ACTIONS(2419), + [anon_sym_static_assert] = ACTIONS(2419), + [anon_sym_concept] = ACTIONS(2419), + [anon_sym_co_return] = ACTIONS(2419), + [anon_sym_co_yield] = ACTIONS(2419), + [anon_sym_R_DQUOTE] = ACTIONS(2421), + [anon_sym_LR_DQUOTE] = ACTIONS(2421), + [anon_sym_uR_DQUOTE] = ACTIONS(2421), + [anon_sym_UR_DQUOTE] = ACTIONS(2421), + [anon_sym_u8R_DQUOTE] = ACTIONS(2421), + [anon_sym_co_await] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(2419), + [anon_sym_requires] = ACTIONS(2419), + [sym_this] = ACTIONS(2419), + [sym_nullptr] = ACTIONS(2419), + }, + [853] = { + [ts_builtin_sym_end] = ACTIONS(2517), + [sym_identifier] = ACTIONS(2515), + [aux_sym_preproc_include_token1] = ACTIONS(2515), + [aux_sym_preproc_def_token1] = ACTIONS(2515), + [aux_sym_preproc_if_token1] = ACTIONS(2515), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2515), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2515), + [sym_preproc_directive] = ACTIONS(2515), + [anon_sym_LPAREN2] = ACTIONS(2517), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_TILDE] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2515), + [anon_sym_PLUS] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2517), + [anon_sym_typedef] = ACTIONS(2515), + [anon_sym_extern] = ACTIONS(2515), + [anon_sym___attribute__] = ACTIONS(2515), + [anon_sym_COLON_COLON] = ACTIONS(2517), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2517), + [anon_sym___declspec] = ACTIONS(2515), + [anon_sym___based] = ACTIONS(2515), + [anon_sym___cdecl] = ACTIONS(2515), + [anon_sym___clrcall] = ACTIONS(2515), + [anon_sym___stdcall] = ACTIONS(2515), + [anon_sym___fastcall] = ACTIONS(2515), + [anon_sym___thiscall] = ACTIONS(2515), + [anon_sym___vectorcall] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_static] = ACTIONS(2515), + [anon_sym_register] = ACTIONS(2515), + [anon_sym_inline] = ACTIONS(2515), + [anon_sym_thread_local] = ACTIONS(2515), + [anon_sym_input] = ACTIONS(2515), + [anon_sym_const] = ACTIONS(2515), + [anon_sym_volatile] = ACTIONS(2515), + [anon_sym_restrict] = ACTIONS(2515), + [anon_sym__Atomic] = ACTIONS(2515), + [anon_sym_mutable] = ACTIONS(2515), + [anon_sym_constexpr] = ACTIONS(2515), + [anon_sym_constinit] = ACTIONS(2515), + [anon_sym_consteval] = ACTIONS(2515), + [anon_sym_signed] = ACTIONS(2515), + [anon_sym_unsigned] = ACTIONS(2515), + [anon_sym_long] = ACTIONS(2515), + [anon_sym_short] = ACTIONS(2515), + [sym_primitive_type] = ACTIONS(2515), + [anon_sym_enum] = ACTIONS(2515), + [anon_sym_class] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(2515), + [anon_sym_union] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2515), + [anon_sym_else] = ACTIONS(2515), + [anon_sym_switch] = ACTIONS(2515), + [anon_sym_case] = ACTIONS(2515), + [anon_sym_default] = ACTIONS(2515), + [anon_sym_while] = ACTIONS(2515), + [anon_sym_do] = ACTIONS(2515), + [anon_sym_for] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2515), + [anon_sym_break] = ACTIONS(2515), + [anon_sym_continue] = ACTIONS(2515), + [anon_sym_goto] = ACTIONS(2515), + [anon_sym_not] = ACTIONS(2515), + [anon_sym_compl] = ACTIONS(2515), + [anon_sym_DASH_DASH] = ACTIONS(2517), + [anon_sym_PLUS_PLUS] = ACTIONS(2517), + [anon_sym_sizeof] = ACTIONS(2515), + [sym_number_literal] = ACTIONS(2517), + [anon_sym_L_SQUOTE] = ACTIONS(2517), + [anon_sym_u_SQUOTE] = ACTIONS(2517), + [anon_sym_U_SQUOTE] = ACTIONS(2517), + [anon_sym_u8_SQUOTE] = ACTIONS(2517), + [anon_sym_SQUOTE] = ACTIONS(2517), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_null] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2515), + [anon_sym_decltype] = ACTIONS(2515), + [anon_sym_virtual] = ACTIONS(2515), + [anon_sym_explicit] = ACTIONS(2515), + [anon_sym_typename] = ACTIONS(2515), + [anon_sym_template] = ACTIONS(2515), + [anon_sym_operator] = ACTIONS(2515), + [anon_sym_try] = ACTIONS(2515), + [anon_sym_delete] = ACTIONS(2515), + [anon_sym_throw] = ACTIONS(2515), + [anon_sym_namespace] = ACTIONS(2515), + [anon_sym_using] = ACTIONS(2515), + [anon_sym_static_assert] = ACTIONS(2515), + [anon_sym_concept] = ACTIONS(2515), + [anon_sym_co_return] = ACTIONS(2515), + [anon_sym_co_yield] = ACTIONS(2515), + [anon_sym_R_DQUOTE] = ACTIONS(2517), + [anon_sym_LR_DQUOTE] = ACTIONS(2517), + [anon_sym_uR_DQUOTE] = ACTIONS(2517), + [anon_sym_UR_DQUOTE] = ACTIONS(2517), + [anon_sym_u8R_DQUOTE] = ACTIONS(2517), + [anon_sym_co_await] = ACTIONS(2515), + [anon_sym_new] = ACTIONS(2515), + [anon_sym_requires] = ACTIONS(2515), + [sym_this] = ACTIONS(2515), + [sym_nullptr] = ACTIONS(2515), + }, + [854] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [855] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [856] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [857] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [858] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [859] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [860] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [861] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [862] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [863] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [864] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [865] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [866] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [867] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [868] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [869] = { + [ts_builtin_sym_end] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2425), + [aux_sym_preproc_include_token1] = ACTIONS(2425), + [aux_sym_preproc_def_token1] = ACTIONS(2425), + [aux_sym_preproc_if_token1] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2425), + [sym_preproc_directive] = ACTIONS(2425), + [anon_sym_LPAREN2] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_AMP_AMP] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_typedef] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym___attribute__] = ACTIONS(2425), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2427), + [anon_sym___declspec] = ACTIONS(2425), + [anon_sym___based] = ACTIONS(2425), + [anon_sym___cdecl] = ACTIONS(2425), + [anon_sym___clrcall] = ACTIONS(2425), + [anon_sym___stdcall] = ACTIONS(2425), + [anon_sym___fastcall] = ACTIONS(2425), + [anon_sym___thiscall] = ACTIONS(2425), + [anon_sym___vectorcall] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_inline] = ACTIONS(2425), + [anon_sym_thread_local] = ACTIONS(2425), + [anon_sym_input] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_volatile] = ACTIONS(2425), + [anon_sym_restrict] = ACTIONS(2425), + [anon_sym__Atomic] = ACTIONS(2425), + [anon_sym_mutable] = ACTIONS(2425), + [anon_sym_constexpr] = ACTIONS(2425), + [anon_sym_constinit] = ACTIONS(2425), + [anon_sym_consteval] = ACTIONS(2425), + [anon_sym_signed] = ACTIONS(2425), + [anon_sym_unsigned] = ACTIONS(2425), + [anon_sym_long] = ACTIONS(2425), + [anon_sym_short] = ACTIONS(2425), + [sym_primitive_type] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2425), + [anon_sym_case] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_goto] = ACTIONS(2425), + [anon_sym_not] = ACTIONS(2425), + [anon_sym_compl] = ACTIONS(2425), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_sizeof] = ACTIONS(2425), + [sym_number_literal] = ACTIONS(2427), + [anon_sym_L_SQUOTE] = ACTIONS(2427), + [anon_sym_u_SQUOTE] = ACTIONS(2427), + [anon_sym_U_SQUOTE] = ACTIONS(2427), + [anon_sym_u8_SQUOTE] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_L_DQUOTE] = ACTIONS(2427), + [anon_sym_u_DQUOTE] = ACTIONS(2427), + [anon_sym_U_DQUOTE] = ACTIONS(2427), + [anon_sym_u8_DQUOTE] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym_true] = ACTIONS(2425), + [sym_false] = ACTIONS(2425), + [sym_null] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2425), + [anon_sym_decltype] = ACTIONS(2425), + [anon_sym_virtual] = ACTIONS(2425), + [anon_sym_explicit] = ACTIONS(2425), + [anon_sym_typename] = ACTIONS(2425), + [anon_sym_template] = ACTIONS(2425), + [anon_sym_operator] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_delete] = ACTIONS(2425), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_using] = ACTIONS(2425), + [anon_sym_static_assert] = ACTIONS(2425), + [anon_sym_concept] = ACTIONS(2425), + [anon_sym_co_return] = ACTIONS(2425), + [anon_sym_co_yield] = ACTIONS(2425), + [anon_sym_R_DQUOTE] = ACTIONS(2427), + [anon_sym_LR_DQUOTE] = ACTIONS(2427), + [anon_sym_uR_DQUOTE] = ACTIONS(2427), + [anon_sym_UR_DQUOTE] = ACTIONS(2427), + [anon_sym_u8R_DQUOTE] = ACTIONS(2427), + [anon_sym_co_await] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_requires] = ACTIONS(2425), + [sym_this] = ACTIONS(2425), + [sym_nullptr] = ACTIONS(2425), + }, + [870] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [871] = { + [ts_builtin_sym_end] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2425), + [aux_sym_preproc_include_token1] = ACTIONS(2425), + [aux_sym_preproc_def_token1] = ACTIONS(2425), + [aux_sym_preproc_if_token1] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2425), + [sym_preproc_directive] = ACTIONS(2425), + [anon_sym_LPAREN2] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_AMP_AMP] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_typedef] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym___attribute__] = ACTIONS(2425), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2427), + [anon_sym___declspec] = ACTIONS(2425), + [anon_sym___based] = ACTIONS(2425), + [anon_sym___cdecl] = ACTIONS(2425), + [anon_sym___clrcall] = ACTIONS(2425), + [anon_sym___stdcall] = ACTIONS(2425), + [anon_sym___fastcall] = ACTIONS(2425), + [anon_sym___thiscall] = ACTIONS(2425), + [anon_sym___vectorcall] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_inline] = ACTIONS(2425), + [anon_sym_thread_local] = ACTIONS(2425), + [anon_sym_input] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_volatile] = ACTIONS(2425), + [anon_sym_restrict] = ACTIONS(2425), + [anon_sym__Atomic] = ACTIONS(2425), + [anon_sym_mutable] = ACTIONS(2425), + [anon_sym_constexpr] = ACTIONS(2425), + [anon_sym_constinit] = ACTIONS(2425), + [anon_sym_consteval] = ACTIONS(2425), + [anon_sym_signed] = ACTIONS(2425), + [anon_sym_unsigned] = ACTIONS(2425), + [anon_sym_long] = ACTIONS(2425), + [anon_sym_short] = ACTIONS(2425), + [sym_primitive_type] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2425), + [anon_sym_case] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_goto] = ACTIONS(2425), + [anon_sym_not] = ACTIONS(2425), + [anon_sym_compl] = ACTIONS(2425), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_sizeof] = ACTIONS(2425), + [sym_number_literal] = ACTIONS(2427), + [anon_sym_L_SQUOTE] = ACTIONS(2427), + [anon_sym_u_SQUOTE] = ACTIONS(2427), + [anon_sym_U_SQUOTE] = ACTIONS(2427), + [anon_sym_u8_SQUOTE] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_L_DQUOTE] = ACTIONS(2427), + [anon_sym_u_DQUOTE] = ACTIONS(2427), + [anon_sym_U_DQUOTE] = ACTIONS(2427), + [anon_sym_u8_DQUOTE] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym_true] = ACTIONS(2425), + [sym_false] = ACTIONS(2425), + [sym_null] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2425), + [anon_sym_decltype] = ACTIONS(2425), + [anon_sym_virtual] = ACTIONS(2425), + [anon_sym_explicit] = ACTIONS(2425), + [anon_sym_typename] = ACTIONS(2425), + [anon_sym_template] = ACTIONS(2425), + [anon_sym_operator] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_delete] = ACTIONS(2425), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_using] = ACTIONS(2425), + [anon_sym_static_assert] = ACTIONS(2425), + [anon_sym_concept] = ACTIONS(2425), + [anon_sym_co_return] = ACTIONS(2425), + [anon_sym_co_yield] = ACTIONS(2425), + [anon_sym_R_DQUOTE] = ACTIONS(2427), + [anon_sym_LR_DQUOTE] = ACTIONS(2427), + [anon_sym_uR_DQUOTE] = ACTIONS(2427), + [anon_sym_UR_DQUOTE] = ACTIONS(2427), + [anon_sym_u8R_DQUOTE] = ACTIONS(2427), + [anon_sym_co_await] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_requires] = ACTIONS(2425), + [sym_this] = ACTIONS(2425), + [sym_nullptr] = ACTIONS(2425), + }, + [872] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [873] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [874] = { + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [875] = { + [ts_builtin_sym_end] = ACTIONS(2015), + [sym_identifier] = ACTIONS(2017), + [aux_sym_preproc_include_token1] = ACTIONS(2017), + [aux_sym_preproc_def_token1] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2453), + [aux_sym_preproc_if_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [sym_preproc_directive] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_typedef] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2015), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym_input] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym_mutable] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_constinit] = ACTIONS(2017), + [anon_sym_consteval] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2017), + [anon_sym_unsigned] = ACTIONS(2017), + [anon_sym_long] = ACTIONS(2017), + [anon_sym_short] = ACTIONS(2017), + [sym_primitive_type] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_class] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_switch] = ACTIONS(2017), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_goto] = ACTIONS(2017), + [anon_sym_not] = ACTIONS(2017), + [anon_sym_compl] = ACTIONS(2017), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_sizeof] = ACTIONS(2017), + [sym_number_literal] = ACTIONS(2015), + [anon_sym_L_SQUOTE] = ACTIONS(2015), + [anon_sym_u_SQUOTE] = ACTIONS(2015), + [anon_sym_U_SQUOTE] = ACTIONS(2015), + [anon_sym_u8_SQUOTE] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(2015), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [sym_null] = ACTIONS(2017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2017), + [anon_sym_decltype] = ACTIONS(2017), + [anon_sym_virtual] = ACTIONS(2017), + [anon_sym_explicit] = ACTIONS(2017), + [anon_sym_typename] = ACTIONS(2017), + [anon_sym_template] = ACTIONS(2017), + [anon_sym_operator] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_delete] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(2017), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_using] = ACTIONS(2017), + [anon_sym_static_assert] = ACTIONS(2017), + [anon_sym_concept] = ACTIONS(2017), + [anon_sym_co_return] = ACTIONS(2017), + [anon_sym_co_yield] = ACTIONS(2017), + [anon_sym_R_DQUOTE] = ACTIONS(2015), + [anon_sym_LR_DQUOTE] = ACTIONS(2015), + [anon_sym_uR_DQUOTE] = ACTIONS(2015), + [anon_sym_UR_DQUOTE] = ACTIONS(2015), + [anon_sym_u8R_DQUOTE] = ACTIONS(2015), + [anon_sym_co_await] = ACTIONS(2017), + [anon_sym_new] = ACTIONS(2017), + [anon_sym_requires] = ACTIONS(2017), + [sym_this] = ACTIONS(2017), + [sym_nullptr] = ACTIONS(2017), + }, [876] = { - [sym_identifier] = ACTIONS(2573), - [aux_sym_preproc_include_token1] = ACTIONS(2573), - [aux_sym_preproc_def_token1] = ACTIONS(2573), - [aux_sym_preproc_if_token1] = ACTIONS(2573), - [aux_sym_preproc_if_token2] = ACTIONS(2573), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2573), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2573), - [sym_preproc_directive] = ACTIONS(2573), - [anon_sym_LPAREN2] = ACTIONS(2575), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_typedef] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2575), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym___based] = ACTIONS(2573), - [anon_sym___cdecl] = ACTIONS(2573), - [anon_sym___clrcall] = ACTIONS(2573), - [anon_sym___stdcall] = ACTIONS(2573), - [anon_sym___fastcall] = ACTIONS(2573), - [anon_sym___thiscall] = ACTIONS(2573), - [anon_sym___vectorcall] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2573), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_else] = ACTIONS(2573), - [anon_sym_switch] = ACTIONS(2573), - [anon_sym_case] = ACTIONS(2573), - [anon_sym_default] = ACTIONS(2573), - [anon_sym_while] = ACTIONS(2573), - [anon_sym_do] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2573), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_break] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2573), - [anon_sym_goto] = ACTIONS(2573), - [anon_sym_not] = ACTIONS(2573), - [anon_sym_compl] = ACTIONS(2573), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_sizeof] = ACTIONS(2573), - [sym_number_literal] = ACTIONS(2575), - [anon_sym_L_SQUOTE] = ACTIONS(2575), - [anon_sym_u_SQUOTE] = ACTIONS(2575), - [anon_sym_U_SQUOTE] = ACTIONS(2575), - [anon_sym_u8_SQUOTE] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2575), - [anon_sym_L_DQUOTE] = ACTIONS(2575), - [anon_sym_u_DQUOTE] = ACTIONS(2575), - [anon_sym_U_DQUOTE] = ACTIONS(2575), - [anon_sym_u8_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [sym_true] = ACTIONS(2573), - [sym_false] = ACTIONS(2573), - [sym_null] = ACTIONS(2573), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2573), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_explicit] = ACTIONS(2573), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2573), - [anon_sym_operator] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_throw] = ACTIONS(2573), - [anon_sym_namespace] = ACTIONS(2573), - [anon_sym_using] = ACTIONS(2573), - [anon_sym_static_assert] = ACTIONS(2573), - [anon_sym_concept] = ACTIONS(2573), - [anon_sym_co_return] = ACTIONS(2573), - [anon_sym_co_yield] = ACTIONS(2573), - [anon_sym_R_DQUOTE] = ACTIONS(2575), - [anon_sym_LR_DQUOTE] = ACTIONS(2575), - [anon_sym_uR_DQUOTE] = ACTIONS(2575), - [anon_sym_UR_DQUOTE] = ACTIONS(2575), - [anon_sym_u8R_DQUOTE] = ACTIONS(2575), - [anon_sym_co_await] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2573), - [anon_sym_requires] = ACTIONS(2573), - [sym_this] = ACTIONS(2573), - [sym_nullptr] = ACTIONS(2573), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [877] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [878] = { - [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_SEMI] = ACTIONS(2565), - [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_LBRACK] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = 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_else] = 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), - [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), - [sym_null] = ACTIONS(2563), + [sym_type_qualifier] = STATE(3397), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3194), + [sym_enum_specifier] = STATE(3194), + [sym_struct_specifier] = STATE(3194), + [sym_union_specifier] = STATE(3194), + [sym__expression] = STATE(3701), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_type_descriptor] = STATE(5881), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3194), + [sym_decltype_auto] = STATE(3195), + [sym_decltype] = STATE(3194), + [sym_class_specifier] = STATE(3194), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3194), + [sym_template_type] = STATE(4436), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_type_parameter_pack_expansion] = STATE(6477), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4543), + [sym_user_defined_literal] = STATE(3903), + [aux_sym_type_definition_repeat1] = STATE(3397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(2565), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = 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_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_nullptr] = ACTIONS(2563), + [sym_auto] = ACTIONS(2601), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), }, [879] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [880] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [881] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [882] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [883] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [884] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [885] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [ts_builtin_sym_end] = ACTIONS(2537), + [sym_identifier] = ACTIONS(2535), + [aux_sym_preproc_include_token1] = ACTIONS(2535), + [aux_sym_preproc_def_token1] = ACTIONS(2535), + [aux_sym_preproc_if_token1] = ACTIONS(2535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2535), + [sym_preproc_directive] = ACTIONS(2535), + [anon_sym_LPAREN2] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2537), + [anon_sym_TILDE] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2535), + [anon_sym_STAR] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_typedef] = ACTIONS(2535), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym___attribute__] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), + [anon_sym___declspec] = ACTIONS(2535), + [anon_sym___based] = ACTIONS(2535), + [anon_sym___cdecl] = ACTIONS(2535), + [anon_sym___clrcall] = ACTIONS(2535), + [anon_sym___stdcall] = ACTIONS(2535), + [anon_sym___fastcall] = ACTIONS(2535), + [anon_sym___thiscall] = ACTIONS(2535), + [anon_sym___vectorcall] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2537), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_inline] = ACTIONS(2535), + [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_input] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_volatile] = ACTIONS(2535), + [anon_sym_restrict] = ACTIONS(2535), + [anon_sym__Atomic] = ACTIONS(2535), + [anon_sym_mutable] = ACTIONS(2535), + [anon_sym_constexpr] = ACTIONS(2535), + [anon_sym_constinit] = ACTIONS(2535), + [anon_sym_consteval] = ACTIONS(2535), + [anon_sym_signed] = ACTIONS(2535), + [anon_sym_unsigned] = ACTIONS(2535), + [anon_sym_long] = ACTIONS(2535), + [anon_sym_short] = ACTIONS(2535), + [sym_primitive_type] = ACTIONS(2535), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_else] = ACTIONS(2535), + [anon_sym_switch] = ACTIONS(2535), + [anon_sym_case] = ACTIONS(2535), + [anon_sym_default] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_do] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_goto] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_compl] = ACTIONS(2535), + [anon_sym_DASH_DASH] = ACTIONS(2537), + [anon_sym_PLUS_PLUS] = ACTIONS(2537), + [anon_sym_sizeof] = ACTIONS(2535), + [sym_number_literal] = ACTIONS(2537), + [anon_sym_L_SQUOTE] = ACTIONS(2537), + [anon_sym_u_SQUOTE] = ACTIONS(2537), + [anon_sym_U_SQUOTE] = ACTIONS(2537), + [anon_sym_u8_SQUOTE] = ACTIONS(2537), + [anon_sym_SQUOTE] = ACTIONS(2537), + [anon_sym_L_DQUOTE] = ACTIONS(2537), + [anon_sym_u_DQUOTE] = ACTIONS(2537), + [anon_sym_U_DQUOTE] = ACTIONS(2537), + [anon_sym_u8_DQUOTE] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2537), + [sym_true] = ACTIONS(2535), + [sym_false] = ACTIONS(2535), + [sym_null] = ACTIONS(2535), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2535), + [anon_sym_decltype] = ACTIONS(2535), + [anon_sym_virtual] = ACTIONS(2535), + [anon_sym_explicit] = ACTIONS(2535), + [anon_sym_typename] = ACTIONS(2535), + [anon_sym_template] = ACTIONS(2535), + [anon_sym_operator] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2535), + [anon_sym_delete] = ACTIONS(2535), + [anon_sym_throw] = ACTIONS(2535), + [anon_sym_namespace] = ACTIONS(2535), + [anon_sym_using] = ACTIONS(2535), + [anon_sym_static_assert] = ACTIONS(2535), + [anon_sym_concept] = ACTIONS(2535), + [anon_sym_co_return] = ACTIONS(2535), + [anon_sym_co_yield] = ACTIONS(2535), + [anon_sym_R_DQUOTE] = ACTIONS(2537), + [anon_sym_LR_DQUOTE] = ACTIONS(2537), + [anon_sym_uR_DQUOTE] = ACTIONS(2537), + [anon_sym_UR_DQUOTE] = ACTIONS(2537), + [anon_sym_u8R_DQUOTE] = ACTIONS(2537), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2535), + [anon_sym_requires] = ACTIONS(2535), + [sym_this] = ACTIONS(2535), + [sym_nullptr] = ACTIONS(2535), }, [886] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [887] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [888] = { - [sym_identifier] = ACTIONS(2603), - [aux_sym_preproc_include_token1] = ACTIONS(2603), - [aux_sym_preproc_def_token1] = ACTIONS(2603), - [aux_sym_preproc_if_token1] = ACTIONS(2603), - [aux_sym_preproc_if_token2] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), - [sym_preproc_directive] = ACTIONS(2603), - [anon_sym_LPAREN2] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2603), - [anon_sym_PLUS] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2605), - [anon_sym_typedef] = ACTIONS(2603), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym___attribute__] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2605), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), - [anon_sym___declspec] = ACTIONS(2603), - [anon_sym___based] = ACTIONS(2603), - [anon_sym___cdecl] = ACTIONS(2603), - [anon_sym___clrcall] = ACTIONS(2603), - [anon_sym___stdcall] = ACTIONS(2603), - [anon_sym___fastcall] = ACTIONS(2603), - [anon_sym___thiscall] = ACTIONS(2603), - [anon_sym___vectorcall] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2603), - [anon_sym_register] = ACTIONS(2603), - [anon_sym_inline] = ACTIONS(2603), - [anon_sym_thread_local] = ACTIONS(2603), - [anon_sym_const] = ACTIONS(2603), - [anon_sym_volatile] = ACTIONS(2603), - [anon_sym_restrict] = ACTIONS(2603), - [anon_sym__Atomic] = ACTIONS(2603), - [anon_sym_mutable] = ACTIONS(2603), - [anon_sym_constexpr] = ACTIONS(2603), - [anon_sym_constinit] = ACTIONS(2603), - [anon_sym_consteval] = ACTIONS(2603), - [anon_sym_signed] = ACTIONS(2603), - [anon_sym_unsigned] = ACTIONS(2603), - [anon_sym_long] = ACTIONS(2603), - [anon_sym_short] = ACTIONS(2603), - [sym_primitive_type] = ACTIONS(2603), - [anon_sym_enum] = ACTIONS(2603), - [anon_sym_class] = ACTIONS(2603), - [anon_sym_struct] = ACTIONS(2603), - [anon_sym_union] = ACTIONS(2603), - [anon_sym_if] = ACTIONS(2603), - [anon_sym_else] = ACTIONS(2603), - [anon_sym_switch] = ACTIONS(2603), - [anon_sym_case] = ACTIONS(2603), - [anon_sym_default] = ACTIONS(2603), - [anon_sym_while] = ACTIONS(2603), - [anon_sym_do] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2603), - [anon_sym_break] = ACTIONS(2603), - [anon_sym_continue] = ACTIONS(2603), - [anon_sym_goto] = ACTIONS(2603), - [anon_sym_not] = ACTIONS(2603), - [anon_sym_compl] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2605), - [anon_sym_PLUS_PLUS] = ACTIONS(2605), - [anon_sym_sizeof] = ACTIONS(2603), - [sym_number_literal] = ACTIONS(2605), - [anon_sym_L_SQUOTE] = ACTIONS(2605), - [anon_sym_u_SQUOTE] = ACTIONS(2605), - [anon_sym_U_SQUOTE] = ACTIONS(2605), - [anon_sym_u8_SQUOTE] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(2605), - [anon_sym_L_DQUOTE] = ACTIONS(2605), - [anon_sym_u_DQUOTE] = ACTIONS(2605), - [anon_sym_U_DQUOTE] = ACTIONS(2605), - [anon_sym_u8_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [sym_true] = ACTIONS(2603), - [sym_false] = ACTIONS(2603), - [sym_null] = ACTIONS(2603), + [sym_identifier] = ACTIONS(2411), + [aux_sym_preproc_include_token1] = ACTIONS(2411), + [aux_sym_preproc_def_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token2] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2411), + [sym_preproc_directive] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym___attribute__] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2413), + [anon_sym___declspec] = ACTIONS(2411), + [anon_sym___based] = ACTIONS(2411), + [anon_sym___cdecl] = ACTIONS(2411), + [anon_sym___clrcall] = ACTIONS(2411), + [anon_sym___stdcall] = ACTIONS(2411), + [anon_sym___fastcall] = ACTIONS(2411), + [anon_sym___thiscall] = ACTIONS(2411), + [anon_sym___vectorcall] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_thread_local] = ACTIONS(2411), + [anon_sym_input] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym__Atomic] = ACTIONS(2411), + [anon_sym_mutable] = ACTIONS(2411), + [anon_sym_constexpr] = ACTIONS(2411), + [anon_sym_constinit] = ACTIONS(2411), + [anon_sym_consteval] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [sym_primitive_type] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_switch] = ACTIONS(2411), + [anon_sym_case] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_goto] = ACTIONS(2411), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_compl] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_sizeof] = ACTIONS(2411), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_L_SQUOTE] = ACTIONS(2413), + [anon_sym_u_SQUOTE] = ACTIONS(2413), + [anon_sym_U_SQUOTE] = ACTIONS(2413), + [anon_sym_u8_SQUOTE] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_L_DQUOTE] = ACTIONS(2413), + [anon_sym_u_DQUOTE] = ACTIONS(2413), + [anon_sym_U_DQUOTE] = ACTIONS(2413), + [anon_sym_u8_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2603), - [anon_sym_decltype] = ACTIONS(2603), - [anon_sym_virtual] = ACTIONS(2603), - [anon_sym_explicit] = ACTIONS(2603), - [anon_sym_typename] = ACTIONS(2603), - [anon_sym_template] = ACTIONS(2603), - [anon_sym_operator] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2603), - [anon_sym_delete] = ACTIONS(2603), - [anon_sym_throw] = ACTIONS(2603), - [anon_sym_namespace] = ACTIONS(2603), - [anon_sym_using] = ACTIONS(2603), - [anon_sym_static_assert] = ACTIONS(2603), - [anon_sym_concept] = ACTIONS(2603), - [anon_sym_co_return] = ACTIONS(2603), - [anon_sym_co_yield] = ACTIONS(2603), - [anon_sym_R_DQUOTE] = ACTIONS(2605), - [anon_sym_LR_DQUOTE] = ACTIONS(2605), - [anon_sym_uR_DQUOTE] = ACTIONS(2605), - [anon_sym_UR_DQUOTE] = ACTIONS(2605), - [anon_sym_u8R_DQUOTE] = ACTIONS(2605), - [anon_sym_co_await] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2603), - [anon_sym_requires] = ACTIONS(2603), - [sym_this] = ACTIONS(2603), - [sym_nullptr] = ACTIONS(2603), + [sym_auto] = ACTIONS(2411), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_virtual] = ACTIONS(2411), + [anon_sym_explicit] = ACTIONS(2411), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2411), + [anon_sym_operator] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_delete] = ACTIONS(2411), + [anon_sym_throw] = ACTIONS(2411), + [anon_sym_namespace] = ACTIONS(2411), + [anon_sym_using] = ACTIONS(2411), + [anon_sym_static_assert] = ACTIONS(2411), + [anon_sym_concept] = ACTIONS(2411), + [anon_sym_co_return] = ACTIONS(2411), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_R_DQUOTE] = ACTIONS(2413), + [anon_sym_LR_DQUOTE] = ACTIONS(2413), + [anon_sym_uR_DQUOTE] = ACTIONS(2413), + [anon_sym_UR_DQUOTE] = ACTIONS(2413), + [anon_sym_u8R_DQUOTE] = ACTIONS(2413), + [anon_sym_co_await] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_requires] = ACTIONS(2411), + [sym_this] = ACTIONS(2411), + [sym_nullptr] = ACTIONS(2411), }, [889] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [890] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [891] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [892] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [893] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2411), + [aux_sym_preproc_include_token1] = ACTIONS(2411), + [aux_sym_preproc_def_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token2] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2411), + [sym_preproc_directive] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym___attribute__] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2413), + [anon_sym___declspec] = ACTIONS(2411), + [anon_sym___based] = ACTIONS(2411), + [anon_sym___cdecl] = ACTIONS(2411), + [anon_sym___clrcall] = ACTIONS(2411), + [anon_sym___stdcall] = ACTIONS(2411), + [anon_sym___fastcall] = ACTIONS(2411), + [anon_sym___thiscall] = ACTIONS(2411), + [anon_sym___vectorcall] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_thread_local] = ACTIONS(2411), + [anon_sym_input] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym__Atomic] = ACTIONS(2411), + [anon_sym_mutable] = ACTIONS(2411), + [anon_sym_constexpr] = ACTIONS(2411), + [anon_sym_constinit] = ACTIONS(2411), + [anon_sym_consteval] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [sym_primitive_type] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_switch] = ACTIONS(2411), + [anon_sym_case] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_goto] = ACTIONS(2411), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_compl] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_sizeof] = ACTIONS(2411), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_L_SQUOTE] = ACTIONS(2413), + [anon_sym_u_SQUOTE] = ACTIONS(2413), + [anon_sym_U_SQUOTE] = ACTIONS(2413), + [anon_sym_u8_SQUOTE] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_L_DQUOTE] = ACTIONS(2413), + [anon_sym_u_DQUOTE] = ACTIONS(2413), + [anon_sym_U_DQUOTE] = ACTIONS(2413), + [anon_sym_u8_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2411), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_virtual] = ACTIONS(2411), + [anon_sym_explicit] = ACTIONS(2411), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2411), + [anon_sym_operator] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_delete] = ACTIONS(2411), + [anon_sym_throw] = ACTIONS(2411), + [anon_sym_namespace] = ACTIONS(2411), + [anon_sym_using] = ACTIONS(2411), + [anon_sym_static_assert] = ACTIONS(2411), + [anon_sym_concept] = ACTIONS(2411), + [anon_sym_co_return] = ACTIONS(2411), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_R_DQUOTE] = ACTIONS(2413), + [anon_sym_LR_DQUOTE] = ACTIONS(2413), + [anon_sym_uR_DQUOTE] = ACTIONS(2413), + [anon_sym_UR_DQUOTE] = ACTIONS(2413), + [anon_sym_u8R_DQUOTE] = ACTIONS(2413), + [anon_sym_co_await] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_requires] = ACTIONS(2411), + [sym_this] = ACTIONS(2411), + [sym_nullptr] = ACTIONS(2411), }, [894] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [895] = { - [ts_builtin_sym_end] = ACTIONS(2557), - [sym_identifier] = ACTIONS(2555), - [aux_sym_preproc_include_token1] = ACTIONS(2555), - [aux_sym_preproc_def_token1] = ACTIONS(2555), - [aux_sym_preproc_if_token1] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), - [sym_preproc_directive] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2557), - [anon_sym_TILDE] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_AMP_AMP] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2557), - [anon_sym_typedef] = ACTIONS(2555), - [anon_sym_extern] = ACTIONS(2555), - [anon_sym___attribute__] = ACTIONS(2555), - [anon_sym_COLON_COLON] = ACTIONS(2557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), - [anon_sym___declspec] = ACTIONS(2555), - [anon_sym___based] = ACTIONS(2555), - [anon_sym___cdecl] = ACTIONS(2555), - [anon_sym___clrcall] = ACTIONS(2555), - [anon_sym___stdcall] = ACTIONS(2555), - [anon_sym___fastcall] = ACTIONS(2555), - [anon_sym___thiscall] = ACTIONS(2555), - [anon_sym___vectorcall] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2555), - [anon_sym_register] = ACTIONS(2555), - [anon_sym_inline] = ACTIONS(2555), - [anon_sym_thread_local] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2555), - [anon_sym_volatile] = ACTIONS(2555), - [anon_sym_restrict] = ACTIONS(2555), - [anon_sym__Atomic] = ACTIONS(2555), - [anon_sym_mutable] = ACTIONS(2555), - [anon_sym_constexpr] = ACTIONS(2555), - [anon_sym_constinit] = ACTIONS(2555), - [anon_sym_consteval] = ACTIONS(2555), - [anon_sym_signed] = ACTIONS(2555), - [anon_sym_unsigned] = ACTIONS(2555), - [anon_sym_long] = ACTIONS(2555), - [anon_sym_short] = ACTIONS(2555), - [sym_primitive_type] = ACTIONS(2555), - [anon_sym_enum] = ACTIONS(2555), - [anon_sym_class] = ACTIONS(2555), - [anon_sym_struct] = ACTIONS(2555), - [anon_sym_union] = ACTIONS(2555), - [anon_sym_if] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2555), - [anon_sym_switch] = ACTIONS(2555), - [anon_sym_case] = ACTIONS(2555), - [anon_sym_default] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2555), - [anon_sym_do] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_break] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2555), - [anon_sym_goto] = ACTIONS(2555), - [anon_sym_not] = ACTIONS(2555), - [anon_sym_compl] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2557), - [anon_sym_PLUS_PLUS] = ACTIONS(2557), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2557), - [anon_sym_u_SQUOTE] = ACTIONS(2557), - [anon_sym_U_SQUOTE] = ACTIONS(2557), - [anon_sym_u8_SQUOTE] = ACTIONS(2557), - [anon_sym_SQUOTE] = ACTIONS(2557), - [anon_sym_L_DQUOTE] = ACTIONS(2557), - [anon_sym_u_DQUOTE] = ACTIONS(2557), - [anon_sym_U_DQUOTE] = ACTIONS(2557), - [anon_sym_u8_DQUOTE] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(2557), - [sym_true] = ACTIONS(2555), - [sym_false] = ACTIONS(2555), - [sym_null] = ACTIONS(2555), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2555), - [anon_sym_decltype] = ACTIONS(2555), - [anon_sym_virtual] = ACTIONS(2555), - [anon_sym_explicit] = ACTIONS(2555), - [anon_sym_typename] = ACTIONS(2555), - [anon_sym_template] = ACTIONS(2555), - [anon_sym_operator] = ACTIONS(2555), - [anon_sym_try] = ACTIONS(2555), - [anon_sym_delete] = ACTIONS(2555), - [anon_sym_throw] = ACTIONS(2555), - [anon_sym_namespace] = ACTIONS(2555), - [anon_sym_using] = ACTIONS(2555), - [anon_sym_static_assert] = ACTIONS(2555), - [anon_sym_concept] = ACTIONS(2555), - [anon_sym_co_return] = ACTIONS(2555), - [anon_sym_co_yield] = ACTIONS(2555), - [anon_sym_R_DQUOTE] = ACTIONS(2557), - [anon_sym_LR_DQUOTE] = ACTIONS(2557), - [anon_sym_uR_DQUOTE] = ACTIONS(2557), - [anon_sym_UR_DQUOTE] = ACTIONS(2557), - [anon_sym_u8R_DQUOTE] = ACTIONS(2557), - [anon_sym_co_await] = ACTIONS(2555), - [anon_sym_new] = ACTIONS(2555), - [anon_sym_requires] = ACTIONS(2555), - [sym_this] = ACTIONS(2555), - [sym_nullptr] = ACTIONS(2555), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [896] = { - [ts_builtin_sym_end] = ACTIONS(2557), - [sym_identifier] = ACTIONS(2555), - [aux_sym_preproc_include_token1] = ACTIONS(2555), - [aux_sym_preproc_def_token1] = ACTIONS(2555), - [aux_sym_preproc_if_token1] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), - [sym_preproc_directive] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2557), - [anon_sym_TILDE] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_AMP_AMP] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2557), - [anon_sym_typedef] = ACTIONS(2555), - [anon_sym_extern] = ACTIONS(2555), - [anon_sym___attribute__] = ACTIONS(2555), - [anon_sym_COLON_COLON] = ACTIONS(2557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), - [anon_sym___declspec] = ACTIONS(2555), - [anon_sym___based] = ACTIONS(2555), - [anon_sym___cdecl] = ACTIONS(2555), - [anon_sym___clrcall] = ACTIONS(2555), - [anon_sym___stdcall] = ACTIONS(2555), - [anon_sym___fastcall] = ACTIONS(2555), - [anon_sym___thiscall] = ACTIONS(2555), - [anon_sym___vectorcall] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2555), - [anon_sym_register] = ACTIONS(2555), - [anon_sym_inline] = ACTIONS(2555), - [anon_sym_thread_local] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2555), - [anon_sym_volatile] = ACTIONS(2555), - [anon_sym_restrict] = ACTIONS(2555), - [anon_sym__Atomic] = ACTIONS(2555), - [anon_sym_mutable] = ACTIONS(2555), - [anon_sym_constexpr] = ACTIONS(2555), - [anon_sym_constinit] = ACTIONS(2555), - [anon_sym_consteval] = ACTIONS(2555), - [anon_sym_signed] = ACTIONS(2555), - [anon_sym_unsigned] = ACTIONS(2555), - [anon_sym_long] = ACTIONS(2555), - [anon_sym_short] = ACTIONS(2555), - [sym_primitive_type] = ACTIONS(2555), - [anon_sym_enum] = ACTIONS(2555), - [anon_sym_class] = ACTIONS(2555), - [anon_sym_struct] = ACTIONS(2555), - [anon_sym_union] = ACTIONS(2555), - [anon_sym_if] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2555), - [anon_sym_switch] = ACTIONS(2555), - [anon_sym_case] = ACTIONS(2555), - [anon_sym_default] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2555), - [anon_sym_do] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_break] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2555), - [anon_sym_goto] = ACTIONS(2555), - [anon_sym_not] = ACTIONS(2555), - [anon_sym_compl] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2557), - [anon_sym_PLUS_PLUS] = ACTIONS(2557), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2557), - [anon_sym_u_SQUOTE] = ACTIONS(2557), - [anon_sym_U_SQUOTE] = ACTIONS(2557), - [anon_sym_u8_SQUOTE] = ACTIONS(2557), - [anon_sym_SQUOTE] = ACTIONS(2557), - [anon_sym_L_DQUOTE] = ACTIONS(2557), - [anon_sym_u_DQUOTE] = ACTIONS(2557), - [anon_sym_U_DQUOTE] = ACTIONS(2557), - [anon_sym_u8_DQUOTE] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(2557), - [sym_true] = ACTIONS(2555), - [sym_false] = ACTIONS(2555), - [sym_null] = ACTIONS(2555), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2555), - [anon_sym_decltype] = ACTIONS(2555), - [anon_sym_virtual] = ACTIONS(2555), - [anon_sym_explicit] = ACTIONS(2555), - [anon_sym_typename] = ACTIONS(2555), - [anon_sym_template] = ACTIONS(2555), - [anon_sym_operator] = ACTIONS(2555), - [anon_sym_try] = ACTIONS(2555), - [anon_sym_delete] = ACTIONS(2555), - [anon_sym_throw] = ACTIONS(2555), - [anon_sym_namespace] = ACTIONS(2555), - [anon_sym_using] = ACTIONS(2555), - [anon_sym_static_assert] = ACTIONS(2555), - [anon_sym_concept] = ACTIONS(2555), - [anon_sym_co_return] = ACTIONS(2555), - [anon_sym_co_yield] = ACTIONS(2555), - [anon_sym_R_DQUOTE] = ACTIONS(2557), - [anon_sym_LR_DQUOTE] = ACTIONS(2557), - [anon_sym_uR_DQUOTE] = ACTIONS(2557), - [anon_sym_UR_DQUOTE] = ACTIONS(2557), - [anon_sym_u8R_DQUOTE] = ACTIONS(2557), - [anon_sym_co_await] = ACTIONS(2555), - [anon_sym_new] = ACTIONS(2555), - [anon_sym_requires] = ACTIONS(2555), - [sym_this] = ACTIONS(2555), - [sym_nullptr] = ACTIONS(2555), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [897] = { - [ts_builtin_sym_end] = ACTIONS(2335), - [sym_identifier] = ACTIONS(2337), - [aux_sym_preproc_include_token1] = ACTIONS(2337), - [aux_sym_preproc_def_token1] = ACTIONS(2337), - [anon_sym_COMMA] = ACTIONS(2547), - [aux_sym_preproc_if_token1] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), - [sym_preproc_directive] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2335), - [anon_sym_AMP_AMP] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_typedef] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym___attribute__] = ACTIONS(2337), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), - [anon_sym___declspec] = ACTIONS(2337), - [anon_sym___based] = ACTIONS(2337), - [anon_sym___cdecl] = ACTIONS(2337), - [anon_sym___clrcall] = ACTIONS(2337), - [anon_sym___stdcall] = ACTIONS(2337), - [anon_sym___fastcall] = ACTIONS(2337), - [anon_sym___thiscall] = ACTIONS(2337), - [anon_sym___vectorcall] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_inline] = ACTIONS(2337), - [anon_sym_thread_local] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_volatile] = ACTIONS(2337), - [anon_sym_restrict] = ACTIONS(2337), - [anon_sym__Atomic] = ACTIONS(2337), - [anon_sym_mutable] = ACTIONS(2337), - [anon_sym_constexpr] = ACTIONS(2337), - [anon_sym_constinit] = ACTIONS(2337), - [anon_sym_consteval] = ACTIONS(2337), - [anon_sym_signed] = ACTIONS(2337), - [anon_sym_unsigned] = ACTIONS(2337), - [anon_sym_long] = ACTIONS(2337), - [anon_sym_short] = ACTIONS(2337), - [sym_primitive_type] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2337), - [anon_sym_union] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_case] = ACTIONS(2337), - [anon_sym_default] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_goto] = ACTIONS(2337), - [anon_sym_not] = ACTIONS(2337), - [anon_sym_compl] = ACTIONS(2337), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_sizeof] = ACTIONS(2337), - [sym_number_literal] = ACTIONS(2335), - [anon_sym_L_SQUOTE] = ACTIONS(2335), - [anon_sym_u_SQUOTE] = ACTIONS(2335), - [anon_sym_U_SQUOTE] = ACTIONS(2335), - [anon_sym_u8_SQUOTE] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_L_DQUOTE] = ACTIONS(2335), - [anon_sym_u_DQUOTE] = ACTIONS(2335), - [anon_sym_U_DQUOTE] = ACTIONS(2335), - [anon_sym_u8_DQUOTE] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_true] = ACTIONS(2337), - [sym_false] = ACTIONS(2337), - [sym_null] = ACTIONS(2337), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2337), - [anon_sym_decltype] = ACTIONS(2337), - [anon_sym_virtual] = ACTIONS(2337), - [anon_sym_explicit] = ACTIONS(2337), - [anon_sym_typename] = ACTIONS(2337), - [anon_sym_template] = ACTIONS(2337), - [anon_sym_operator] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_delete] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_using] = ACTIONS(2337), - [anon_sym_static_assert] = ACTIONS(2337), - [anon_sym_concept] = ACTIONS(2337), - [anon_sym_co_return] = ACTIONS(2337), - [anon_sym_co_yield] = ACTIONS(2337), - [anon_sym_R_DQUOTE] = ACTIONS(2335), - [anon_sym_LR_DQUOTE] = ACTIONS(2335), - [anon_sym_uR_DQUOTE] = ACTIONS(2335), - [anon_sym_UR_DQUOTE] = ACTIONS(2335), - [anon_sym_u8R_DQUOTE] = ACTIONS(2335), - [anon_sym_co_await] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_requires] = ACTIONS(2337), - [sym_this] = ACTIONS(2337), - [sym_nullptr] = ACTIONS(2337), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [898] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [899] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [900] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), + [ts_builtin_sym_end] = ACTIONS(2401), + [sym_identifier] = ACTIONS(2399), + [aux_sym_preproc_include_token1] = ACTIONS(2399), + [aux_sym_preproc_def_token1] = ACTIONS(2399), + [aux_sym_preproc_if_token1] = ACTIONS(2399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2399), + [sym_preproc_directive] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_AMP_AMP] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_SEMI] = ACTIONS(2401), + [anon_sym_typedef] = ACTIONS(2399), + [anon_sym_extern] = ACTIONS(2399), + [anon_sym___attribute__] = ACTIONS(2399), + [anon_sym_COLON_COLON] = ACTIONS(2401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2401), + [anon_sym___declspec] = ACTIONS(2399), + [anon_sym___based] = ACTIONS(2399), + [anon_sym___cdecl] = ACTIONS(2399), + [anon_sym___clrcall] = ACTIONS(2399), + [anon_sym___stdcall] = ACTIONS(2399), + [anon_sym___fastcall] = ACTIONS(2399), + [anon_sym___thiscall] = ACTIONS(2399), + [anon_sym___vectorcall] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(2399), + [anon_sym_inline] = ACTIONS(2399), + [anon_sym_thread_local] = ACTIONS(2399), + [anon_sym_input] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [anon_sym_volatile] = ACTIONS(2399), + [anon_sym_restrict] = ACTIONS(2399), + [anon_sym__Atomic] = ACTIONS(2399), + [anon_sym_mutable] = ACTIONS(2399), + [anon_sym_constexpr] = ACTIONS(2399), + [anon_sym_constinit] = ACTIONS(2399), + [anon_sym_consteval] = ACTIONS(2399), + [anon_sym_signed] = ACTIONS(2399), + [anon_sym_unsigned] = ACTIONS(2399), + [anon_sym_long] = ACTIONS(2399), + [anon_sym_short] = ACTIONS(2399), + [sym_primitive_type] = ACTIONS(2399), + [anon_sym_enum] = ACTIONS(2399), + [anon_sym_class] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2399), + [anon_sym_union] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_else] = ACTIONS(2399), + [anon_sym_switch] = ACTIONS(2399), + [anon_sym_case] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [anon_sym_do] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_goto] = ACTIONS(2399), + [anon_sym_not] = ACTIONS(2399), + [anon_sym_compl] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_sizeof] = ACTIONS(2399), + [sym_number_literal] = ACTIONS(2401), + [anon_sym_L_SQUOTE] = ACTIONS(2401), + [anon_sym_u_SQUOTE] = ACTIONS(2401), + [anon_sym_U_SQUOTE] = ACTIONS(2401), + [anon_sym_u8_SQUOTE] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_L_DQUOTE] = ACTIONS(2401), + [anon_sym_u_DQUOTE] = ACTIONS(2401), + [anon_sym_U_DQUOTE] = ACTIONS(2401), + [anon_sym_u8_DQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [sym_true] = ACTIONS(2399), + [sym_false] = ACTIONS(2399), + [sym_null] = ACTIONS(2399), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), + [sym_auto] = ACTIONS(2399), + [anon_sym_decltype] = ACTIONS(2399), + [anon_sym_virtual] = ACTIONS(2399), + [anon_sym_explicit] = ACTIONS(2399), + [anon_sym_typename] = ACTIONS(2399), + [anon_sym_template] = ACTIONS(2399), + [anon_sym_operator] = ACTIONS(2399), + [anon_sym_try] = ACTIONS(2399), + [anon_sym_delete] = ACTIONS(2399), + [anon_sym_throw] = ACTIONS(2399), + [anon_sym_namespace] = ACTIONS(2399), + [anon_sym_using] = ACTIONS(2399), + [anon_sym_static_assert] = ACTIONS(2399), + [anon_sym_concept] = ACTIONS(2399), + [anon_sym_co_return] = ACTIONS(2399), + [anon_sym_co_yield] = ACTIONS(2399), + [anon_sym_R_DQUOTE] = ACTIONS(2401), + [anon_sym_LR_DQUOTE] = ACTIONS(2401), + [anon_sym_uR_DQUOTE] = ACTIONS(2401), + [anon_sym_UR_DQUOTE] = ACTIONS(2401), + [anon_sym_u8R_DQUOTE] = ACTIONS(2401), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2399), + [anon_sym_requires] = ACTIONS(2399), + [sym_this] = ACTIONS(2399), + [sym_nullptr] = ACTIONS(2399), }, [901] = { - [ts_builtin_sym_end] = ACTIONS(2621), - [sym_identifier] = ACTIONS(2619), - [aux_sym_preproc_include_token1] = ACTIONS(2619), - [aux_sym_preproc_def_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), - [sym_preproc_directive] = ACTIONS(2619), - [anon_sym_LPAREN2] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2619), - [anon_sym_PLUS] = ACTIONS(2619), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_typedef] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym___attribute__] = ACTIONS(2619), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), - [anon_sym___declspec] = ACTIONS(2619), - [anon_sym___based] = ACTIONS(2619), - [anon_sym___cdecl] = ACTIONS(2619), - [anon_sym___clrcall] = ACTIONS(2619), - [anon_sym___stdcall] = ACTIONS(2619), - [anon_sym___fastcall] = ACTIONS(2619), - [anon_sym___thiscall] = ACTIONS(2619), - [anon_sym___vectorcall] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_register] = ACTIONS(2619), - [anon_sym_inline] = ACTIONS(2619), - [anon_sym_thread_local] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_volatile] = ACTIONS(2619), - [anon_sym_restrict] = ACTIONS(2619), - [anon_sym__Atomic] = ACTIONS(2619), - [anon_sym_mutable] = ACTIONS(2619), - [anon_sym_constexpr] = ACTIONS(2619), - [anon_sym_constinit] = ACTIONS(2619), - [anon_sym_consteval] = ACTIONS(2619), - [anon_sym_signed] = ACTIONS(2619), - [anon_sym_unsigned] = ACTIONS(2619), - [anon_sym_long] = ACTIONS(2619), - [anon_sym_short] = ACTIONS(2619), - [sym_primitive_type] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_class] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [anon_sym_if] = ACTIONS(2619), - [anon_sym_else] = ACTIONS(2619), - [anon_sym_switch] = ACTIONS(2619), - [anon_sym_case] = ACTIONS(2619), - [anon_sym_default] = ACTIONS(2619), - [anon_sym_while] = ACTIONS(2619), - [anon_sym_do] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2619), - [anon_sym_return] = ACTIONS(2619), - [anon_sym_break] = ACTIONS(2619), - [anon_sym_continue] = ACTIONS(2619), - [anon_sym_goto] = ACTIONS(2619), - [anon_sym_not] = ACTIONS(2619), - [anon_sym_compl] = ACTIONS(2619), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_sizeof] = ACTIONS(2619), - [sym_number_literal] = ACTIONS(2621), - [anon_sym_L_SQUOTE] = ACTIONS(2621), - [anon_sym_u_SQUOTE] = ACTIONS(2621), - [anon_sym_U_SQUOTE] = ACTIONS(2621), - [anon_sym_u8_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_L_DQUOTE] = ACTIONS(2621), - [anon_sym_u_DQUOTE] = ACTIONS(2621), - [anon_sym_U_DQUOTE] = ACTIONS(2621), - [anon_sym_u8_DQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [sym_true] = ACTIONS(2619), - [sym_false] = ACTIONS(2619), - [sym_null] = ACTIONS(2619), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2619), - [anon_sym_decltype] = ACTIONS(2619), - [anon_sym_virtual] = ACTIONS(2619), - [anon_sym_explicit] = ACTIONS(2619), - [anon_sym_typename] = ACTIONS(2619), - [anon_sym_template] = ACTIONS(2619), - [anon_sym_operator] = ACTIONS(2619), - [anon_sym_try] = ACTIONS(2619), - [anon_sym_delete] = ACTIONS(2619), - [anon_sym_throw] = ACTIONS(2619), - [anon_sym_namespace] = ACTIONS(2619), - [anon_sym_using] = ACTIONS(2619), - [anon_sym_static_assert] = ACTIONS(2619), - [anon_sym_concept] = ACTIONS(2619), - [anon_sym_co_return] = ACTIONS(2619), - [anon_sym_co_yield] = ACTIONS(2619), - [anon_sym_R_DQUOTE] = ACTIONS(2621), - [anon_sym_LR_DQUOTE] = ACTIONS(2621), - [anon_sym_uR_DQUOTE] = ACTIONS(2621), - [anon_sym_UR_DQUOTE] = ACTIONS(2621), - [anon_sym_u8R_DQUOTE] = ACTIONS(2621), - [anon_sym_co_await] = ACTIONS(2619), - [anon_sym_new] = ACTIONS(2619), - [anon_sym_requires] = ACTIONS(2619), - [sym_this] = ACTIONS(2619), - [sym_nullptr] = ACTIONS(2619), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [902] = { - [sym_identifier] = ACTIONS(2761), - [aux_sym_preproc_include_token1] = ACTIONS(2761), - [aux_sym_preproc_def_token1] = ACTIONS(2761), - [aux_sym_preproc_if_token1] = ACTIONS(2761), - [aux_sym_preproc_if_token2] = ACTIONS(2761), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2761), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2761), - [sym_preproc_directive] = ACTIONS(2761), - [anon_sym_LPAREN2] = ACTIONS(2763), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_TILDE] = ACTIONS(2763), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2763), - [anon_sym_AMP_AMP] = ACTIONS(2763), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(2761), - [anon_sym_extern] = ACTIONS(2761), - [anon_sym___attribute__] = ACTIONS(2761), - [anon_sym_COLON_COLON] = ACTIONS(2763), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2763), - [anon_sym___declspec] = ACTIONS(2761), - [anon_sym___based] = ACTIONS(2761), - [anon_sym___cdecl] = ACTIONS(2761), - [anon_sym___clrcall] = ACTIONS(2761), - [anon_sym___stdcall] = ACTIONS(2761), - [anon_sym___fastcall] = ACTIONS(2761), - [anon_sym___thiscall] = ACTIONS(2761), - [anon_sym___vectorcall] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2763), - [anon_sym_LBRACK] = ACTIONS(2761), - [anon_sym_static] = ACTIONS(2761), - [anon_sym_register] = ACTIONS(2761), - [anon_sym_inline] = ACTIONS(2761), - [anon_sym_thread_local] = ACTIONS(2761), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_volatile] = ACTIONS(2761), - [anon_sym_restrict] = ACTIONS(2761), - [anon_sym__Atomic] = ACTIONS(2761), - [anon_sym_mutable] = ACTIONS(2761), - [anon_sym_constexpr] = ACTIONS(2761), - [anon_sym_constinit] = ACTIONS(2761), - [anon_sym_consteval] = ACTIONS(2761), - [anon_sym_signed] = ACTIONS(2761), - [anon_sym_unsigned] = ACTIONS(2761), - [anon_sym_long] = ACTIONS(2761), - [anon_sym_short] = ACTIONS(2761), - [sym_primitive_type] = ACTIONS(2761), - [anon_sym_enum] = ACTIONS(2761), - [anon_sym_class] = ACTIONS(2761), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_union] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_switch] = ACTIONS(2761), - [anon_sym_case] = ACTIONS(2761), - [anon_sym_default] = ACTIONS(2761), - [anon_sym_while] = ACTIONS(2761), - [anon_sym_do] = ACTIONS(2761), - [anon_sym_for] = ACTIONS(2761), - [anon_sym_return] = ACTIONS(2761), - [anon_sym_break] = ACTIONS(2761), - [anon_sym_continue] = ACTIONS(2761), - [anon_sym_goto] = ACTIONS(2761), - [anon_sym_not] = ACTIONS(2761), - [anon_sym_compl] = ACTIONS(2761), - [anon_sym_DASH_DASH] = ACTIONS(2763), - [anon_sym_PLUS_PLUS] = ACTIONS(2763), - [anon_sym_sizeof] = ACTIONS(2761), - [sym_number_literal] = ACTIONS(2763), - [anon_sym_L_SQUOTE] = ACTIONS(2763), - [anon_sym_u_SQUOTE] = ACTIONS(2763), - [anon_sym_U_SQUOTE] = ACTIONS(2763), - [anon_sym_u8_SQUOTE] = ACTIONS(2763), - [anon_sym_SQUOTE] = ACTIONS(2763), - [anon_sym_L_DQUOTE] = ACTIONS(2763), - [anon_sym_u_DQUOTE] = ACTIONS(2763), - [anon_sym_U_DQUOTE] = ACTIONS(2763), - [anon_sym_u8_DQUOTE] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2763), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_null] = ACTIONS(2761), + [ts_builtin_sym_end] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2807), + [aux_sym_preproc_include_token1] = ACTIONS(2807), + [aux_sym_preproc_def_token1] = ACTIONS(2807), + [aux_sym_preproc_if_token1] = ACTIONS(2807), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2807), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2807), + [sym_preproc_directive] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_AMP_AMP] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2809), + [anon_sym_typedef] = ACTIONS(2807), + [anon_sym_extern] = ACTIONS(2807), + [anon_sym___attribute__] = ACTIONS(2807), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2809), + [anon_sym___declspec] = ACTIONS(2807), + [anon_sym___based] = ACTIONS(2807), + [anon_sym___cdecl] = ACTIONS(2807), + [anon_sym___clrcall] = ACTIONS(2807), + [anon_sym___stdcall] = ACTIONS(2807), + [anon_sym___fastcall] = ACTIONS(2807), + [anon_sym___thiscall] = ACTIONS(2807), + [anon_sym___vectorcall] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_static] = ACTIONS(2807), + [anon_sym_register] = ACTIONS(2807), + [anon_sym_inline] = ACTIONS(2807), + [anon_sym_thread_local] = ACTIONS(2807), + [anon_sym_input] = ACTIONS(2807), + [anon_sym_const] = ACTIONS(2807), + [anon_sym_volatile] = ACTIONS(2807), + [anon_sym_restrict] = ACTIONS(2807), + [anon_sym__Atomic] = ACTIONS(2807), + [anon_sym_mutable] = ACTIONS(2807), + [anon_sym_constexpr] = ACTIONS(2807), + [anon_sym_constinit] = ACTIONS(2807), + [anon_sym_consteval] = ACTIONS(2807), + [anon_sym_signed] = ACTIONS(2807), + [anon_sym_unsigned] = ACTIONS(2807), + [anon_sym_long] = ACTIONS(2807), + [anon_sym_short] = ACTIONS(2807), + [sym_primitive_type] = ACTIONS(2807), + [anon_sym_enum] = ACTIONS(2807), + [anon_sym_class] = ACTIONS(2807), + [anon_sym_struct] = ACTIONS(2807), + [anon_sym_union] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_switch] = ACTIONS(2807), + [anon_sym_case] = ACTIONS(2807), + [anon_sym_default] = ACTIONS(2807), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_break] = ACTIONS(2807), + [anon_sym_continue] = ACTIONS(2807), + [anon_sym_goto] = ACTIONS(2807), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_PLUS_PLUS] = ACTIONS(2809), + [anon_sym_sizeof] = ACTIONS(2807), + [sym_number_literal] = ACTIONS(2809), + [anon_sym_L_SQUOTE] = ACTIONS(2809), + [anon_sym_u_SQUOTE] = ACTIONS(2809), + [anon_sym_U_SQUOTE] = ACTIONS(2809), + [anon_sym_u8_SQUOTE] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_L_DQUOTE] = ACTIONS(2809), + [anon_sym_u_DQUOTE] = ACTIONS(2809), + [anon_sym_U_DQUOTE] = ACTIONS(2809), + [anon_sym_u8_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2809), + [sym_true] = ACTIONS(2807), + [sym_false] = ACTIONS(2807), + [sym_null] = ACTIONS(2807), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2761), - [anon_sym_decltype] = ACTIONS(2761), - [anon_sym_virtual] = ACTIONS(2761), - [anon_sym_explicit] = ACTIONS(2761), - [anon_sym_typename] = ACTIONS(2761), - [anon_sym_template] = ACTIONS(2761), - [anon_sym_operator] = ACTIONS(2761), - [anon_sym_try] = ACTIONS(2761), - [anon_sym_delete] = ACTIONS(2761), - [anon_sym_throw] = ACTIONS(2761), - [anon_sym_namespace] = ACTIONS(2761), - [anon_sym_using] = ACTIONS(2761), - [anon_sym_static_assert] = ACTIONS(2761), - [anon_sym_concept] = ACTIONS(2761), - [anon_sym_co_return] = ACTIONS(2761), - [anon_sym_co_yield] = ACTIONS(2761), - [anon_sym_R_DQUOTE] = ACTIONS(2763), - [anon_sym_LR_DQUOTE] = ACTIONS(2763), - [anon_sym_uR_DQUOTE] = ACTIONS(2763), - [anon_sym_UR_DQUOTE] = ACTIONS(2763), - [anon_sym_u8R_DQUOTE] = ACTIONS(2763), - [anon_sym_co_await] = ACTIONS(2761), - [anon_sym_new] = ACTIONS(2761), - [anon_sym_requires] = ACTIONS(2761), - [sym_this] = ACTIONS(2761), - [sym_nullptr] = ACTIONS(2761), + [sym_auto] = ACTIONS(2807), + [anon_sym_decltype] = ACTIONS(2807), + [anon_sym_virtual] = ACTIONS(2807), + [anon_sym_explicit] = ACTIONS(2807), + [anon_sym_typename] = ACTIONS(2807), + [anon_sym_template] = ACTIONS(2807), + [anon_sym_operator] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_delete] = ACTIONS(2807), + [anon_sym_throw] = ACTIONS(2807), + [anon_sym_namespace] = ACTIONS(2807), + [anon_sym_using] = ACTIONS(2807), + [anon_sym_static_assert] = ACTIONS(2807), + [anon_sym_concept] = ACTIONS(2807), + [anon_sym_co_return] = ACTIONS(2807), + [anon_sym_co_yield] = ACTIONS(2807), + [anon_sym_R_DQUOTE] = ACTIONS(2809), + [anon_sym_LR_DQUOTE] = ACTIONS(2809), + [anon_sym_uR_DQUOTE] = ACTIONS(2809), + [anon_sym_UR_DQUOTE] = ACTIONS(2809), + [anon_sym_u8R_DQUOTE] = ACTIONS(2809), + [anon_sym_co_await] = ACTIONS(2807), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_requires] = ACTIONS(2807), + [sym_this] = ACTIONS(2807), + [sym_nullptr] = ACTIONS(2807), }, [903] = { - [sym_identifier] = ACTIONS(2741), - [aux_sym_preproc_include_token1] = ACTIONS(2741), - [aux_sym_preproc_def_token1] = ACTIONS(2741), - [aux_sym_preproc_if_token1] = ACTIONS(2741), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2741), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2741), - [sym_preproc_directive] = ACTIONS(2741), - [anon_sym_LPAREN2] = ACTIONS(2743), - [anon_sym_BANG] = ACTIONS(2743), - [anon_sym_TILDE] = ACTIONS(2743), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_AMP_AMP] = ACTIONS(2743), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_SEMI] = ACTIONS(2743), - [anon_sym_typedef] = ACTIONS(2741), - [anon_sym_extern] = ACTIONS(2741), - [anon_sym___attribute__] = ACTIONS(2741), - [anon_sym_COLON_COLON] = ACTIONS(2743), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2743), - [anon_sym___declspec] = ACTIONS(2741), - [anon_sym___based] = ACTIONS(2741), - [anon_sym___cdecl] = ACTIONS(2741), - [anon_sym___clrcall] = ACTIONS(2741), - [anon_sym___stdcall] = ACTIONS(2741), - [anon_sym___fastcall] = ACTIONS(2741), - [anon_sym___thiscall] = ACTIONS(2741), - [anon_sym___vectorcall] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2743), - [anon_sym_RBRACE] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2741), - [anon_sym_static] = ACTIONS(2741), - [anon_sym_register] = ACTIONS(2741), - [anon_sym_inline] = ACTIONS(2741), - [anon_sym_thread_local] = ACTIONS(2741), - [anon_sym_const] = ACTIONS(2741), - [anon_sym_volatile] = ACTIONS(2741), - [anon_sym_restrict] = ACTIONS(2741), - [anon_sym__Atomic] = ACTIONS(2741), - [anon_sym_mutable] = ACTIONS(2741), - [anon_sym_constexpr] = ACTIONS(2741), - [anon_sym_constinit] = ACTIONS(2741), - [anon_sym_consteval] = ACTIONS(2741), - [anon_sym_signed] = ACTIONS(2741), - [anon_sym_unsigned] = ACTIONS(2741), - [anon_sym_long] = ACTIONS(2741), - [anon_sym_short] = ACTIONS(2741), - [sym_primitive_type] = ACTIONS(2741), - [anon_sym_enum] = ACTIONS(2741), - [anon_sym_class] = ACTIONS(2741), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_union] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_switch] = ACTIONS(2741), - [anon_sym_case] = ACTIONS(2741), - [anon_sym_default] = ACTIONS(2741), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_return] = ACTIONS(2741), - [anon_sym_break] = ACTIONS(2741), - [anon_sym_continue] = ACTIONS(2741), - [anon_sym_goto] = ACTIONS(2741), - [anon_sym_not] = ACTIONS(2741), - [anon_sym_compl] = ACTIONS(2741), - [anon_sym_DASH_DASH] = ACTIONS(2743), - [anon_sym_PLUS_PLUS] = ACTIONS(2743), - [anon_sym_sizeof] = ACTIONS(2741), - [sym_number_literal] = ACTIONS(2743), - [anon_sym_L_SQUOTE] = ACTIONS(2743), - [anon_sym_u_SQUOTE] = ACTIONS(2743), - [anon_sym_U_SQUOTE] = ACTIONS(2743), - [anon_sym_u8_SQUOTE] = ACTIONS(2743), - [anon_sym_SQUOTE] = ACTIONS(2743), - [anon_sym_L_DQUOTE] = ACTIONS(2743), - [anon_sym_u_DQUOTE] = ACTIONS(2743), - [anon_sym_U_DQUOTE] = ACTIONS(2743), - [anon_sym_u8_DQUOTE] = ACTIONS(2743), - [anon_sym_DQUOTE] = ACTIONS(2743), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_null] = ACTIONS(2741), + [sym_identifier] = ACTIONS(2633), + [aux_sym_preproc_include_token1] = ACTIONS(2633), + [aux_sym_preproc_def_token1] = ACTIONS(2633), + [aux_sym_preproc_if_token1] = ACTIONS(2633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2633), + [sym_preproc_directive] = ACTIONS(2633), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_typedef] = ACTIONS(2633), + [anon_sym_extern] = ACTIONS(2633), + [anon_sym___attribute__] = ACTIONS(2633), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2635), + [anon_sym___declspec] = ACTIONS(2633), + [anon_sym___based] = ACTIONS(2633), + [anon_sym___cdecl] = ACTIONS(2633), + [anon_sym___clrcall] = ACTIONS(2633), + [anon_sym___stdcall] = ACTIONS(2633), + [anon_sym___fastcall] = ACTIONS(2633), + [anon_sym___thiscall] = ACTIONS(2633), + [anon_sym___vectorcall] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_RBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_static] = ACTIONS(2633), + [anon_sym_register] = ACTIONS(2633), + [anon_sym_inline] = ACTIONS(2633), + [anon_sym_thread_local] = ACTIONS(2633), + [anon_sym_input] = ACTIONS(2633), + [anon_sym_const] = ACTIONS(2633), + [anon_sym_volatile] = ACTIONS(2633), + [anon_sym_restrict] = ACTIONS(2633), + [anon_sym__Atomic] = ACTIONS(2633), + [anon_sym_mutable] = ACTIONS(2633), + [anon_sym_constexpr] = ACTIONS(2633), + [anon_sym_constinit] = ACTIONS(2633), + [anon_sym_consteval] = ACTIONS(2633), + [anon_sym_signed] = ACTIONS(2633), + [anon_sym_unsigned] = ACTIONS(2633), + [anon_sym_long] = ACTIONS(2633), + [anon_sym_short] = ACTIONS(2633), + [sym_primitive_type] = ACTIONS(2633), + [anon_sym_enum] = ACTIONS(2633), + [anon_sym_class] = ACTIONS(2633), + [anon_sym_struct] = ACTIONS(2633), + [anon_sym_union] = ACTIONS(2633), + [anon_sym_if] = ACTIONS(2633), + [anon_sym_switch] = ACTIONS(2633), + [anon_sym_case] = ACTIONS(2633), + [anon_sym_default] = ACTIONS(2633), + [anon_sym_while] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_for] = ACTIONS(2633), + [anon_sym_return] = ACTIONS(2633), + [anon_sym_break] = ACTIONS(2633), + [anon_sym_continue] = ACTIONS(2633), + [anon_sym_goto] = ACTIONS(2633), + [anon_sym_not] = ACTIONS(2633), + [anon_sym_compl] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_sizeof] = ACTIONS(2633), + [sym_number_literal] = ACTIONS(2635), + [anon_sym_L_SQUOTE] = ACTIONS(2635), + [anon_sym_u_SQUOTE] = ACTIONS(2635), + [anon_sym_U_SQUOTE] = ACTIONS(2635), + [anon_sym_u8_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_L_DQUOTE] = ACTIONS(2635), + [anon_sym_u_DQUOTE] = ACTIONS(2635), + [anon_sym_U_DQUOTE] = ACTIONS(2635), + [anon_sym_u8_DQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym_true] = ACTIONS(2633), + [sym_false] = ACTIONS(2633), + [sym_null] = ACTIONS(2633), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2741), - [anon_sym_decltype] = ACTIONS(2741), - [anon_sym_virtual] = ACTIONS(2741), - [anon_sym_explicit] = ACTIONS(2741), - [anon_sym_typename] = ACTIONS(2741), - [anon_sym_template] = ACTIONS(2741), - [anon_sym_operator] = ACTIONS(2741), - [anon_sym_try] = ACTIONS(2741), - [anon_sym_delete] = ACTIONS(2741), - [anon_sym_throw] = ACTIONS(2741), - [anon_sym_namespace] = ACTIONS(2741), - [anon_sym_using] = ACTIONS(2741), - [anon_sym_static_assert] = ACTIONS(2741), - [anon_sym_concept] = ACTIONS(2741), - [anon_sym_co_return] = ACTIONS(2741), - [anon_sym_co_yield] = ACTIONS(2741), - [anon_sym_R_DQUOTE] = ACTIONS(2743), - [anon_sym_LR_DQUOTE] = ACTIONS(2743), - [anon_sym_uR_DQUOTE] = ACTIONS(2743), - [anon_sym_UR_DQUOTE] = ACTIONS(2743), - [anon_sym_u8R_DQUOTE] = ACTIONS(2743), - [anon_sym_co_await] = ACTIONS(2741), - [anon_sym_new] = ACTIONS(2741), - [anon_sym_requires] = ACTIONS(2741), - [sym_this] = ACTIONS(2741), - [sym_nullptr] = ACTIONS(2741), + [sym_auto] = ACTIONS(2633), + [anon_sym_decltype] = ACTIONS(2633), + [anon_sym_virtual] = ACTIONS(2633), + [anon_sym_explicit] = ACTIONS(2633), + [anon_sym_typename] = ACTIONS(2633), + [anon_sym_template] = ACTIONS(2633), + [anon_sym_operator] = ACTIONS(2633), + [anon_sym_try] = ACTIONS(2633), + [anon_sym_delete] = ACTIONS(2633), + [anon_sym_throw] = ACTIONS(2633), + [anon_sym_namespace] = ACTIONS(2633), + [anon_sym_using] = ACTIONS(2633), + [anon_sym_static_assert] = ACTIONS(2633), + [anon_sym_concept] = ACTIONS(2633), + [anon_sym_co_return] = ACTIONS(2633), + [anon_sym_co_yield] = ACTIONS(2633), + [anon_sym_R_DQUOTE] = ACTIONS(2635), + [anon_sym_LR_DQUOTE] = ACTIONS(2635), + [anon_sym_uR_DQUOTE] = ACTIONS(2635), + [anon_sym_UR_DQUOTE] = ACTIONS(2635), + [anon_sym_u8R_DQUOTE] = ACTIONS(2635), + [anon_sym_co_await] = ACTIONS(2633), + [anon_sym_new] = ACTIONS(2633), + [anon_sym_requires] = ACTIONS(2633), + [sym_this] = ACTIONS(2633), + [sym_nullptr] = ACTIONS(2633), }, [904] = { - [sym_identifier] = ACTIONS(2797), - [aux_sym_preproc_include_token1] = ACTIONS(2797), - [aux_sym_preproc_def_token1] = ACTIONS(2797), - [aux_sym_preproc_if_token1] = ACTIONS(2797), - [aux_sym_preproc_if_token2] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [sym_preproc_directive] = ACTIONS(2797), - [anon_sym_LPAREN2] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_AMP_AMP] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2797), - [anon_sym_extern] = ACTIONS(2797), - [anon_sym___attribute__] = ACTIONS(2797), - [anon_sym_COLON_COLON] = ACTIONS(2799), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), - [anon_sym___declspec] = ACTIONS(2797), - [anon_sym___based] = ACTIONS(2797), - [anon_sym___cdecl] = ACTIONS(2797), - [anon_sym___clrcall] = ACTIONS(2797), - [anon_sym___stdcall] = ACTIONS(2797), - [anon_sym___fastcall] = ACTIONS(2797), - [anon_sym___thiscall] = ACTIONS(2797), - [anon_sym___vectorcall] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2797), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_register] = ACTIONS(2797), - [anon_sym_inline] = ACTIONS(2797), - [anon_sym_thread_local] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_volatile] = ACTIONS(2797), - [anon_sym_restrict] = ACTIONS(2797), - [anon_sym__Atomic] = ACTIONS(2797), - [anon_sym_mutable] = ACTIONS(2797), - [anon_sym_constexpr] = ACTIONS(2797), - [anon_sym_constinit] = ACTIONS(2797), - [anon_sym_consteval] = ACTIONS(2797), - [anon_sym_signed] = ACTIONS(2797), - [anon_sym_unsigned] = ACTIONS(2797), - [anon_sym_long] = ACTIONS(2797), - [anon_sym_short] = ACTIONS(2797), - [sym_primitive_type] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), - [anon_sym_class] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_union] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_switch] = ACTIONS(2797), - [anon_sym_case] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_do] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_goto] = ACTIONS(2797), - [anon_sym_not] = ACTIONS(2797), - [anon_sym_compl] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_sizeof] = ACTIONS(2797), - [sym_number_literal] = ACTIONS(2799), - [anon_sym_L_SQUOTE] = ACTIONS(2799), - [anon_sym_u_SQUOTE] = ACTIONS(2799), - [anon_sym_U_SQUOTE] = ACTIONS(2799), - [anon_sym_u8_SQUOTE] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2799), - [anon_sym_L_DQUOTE] = ACTIONS(2799), - [anon_sym_u_DQUOTE] = ACTIONS(2799), - [anon_sym_U_DQUOTE] = ACTIONS(2799), - [anon_sym_u8_DQUOTE] = ACTIONS(2799), - [anon_sym_DQUOTE] = ACTIONS(2799), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [sym_null] = ACTIONS(2797), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2797), - [anon_sym_decltype] = ACTIONS(2797), - [anon_sym_virtual] = ACTIONS(2797), - [anon_sym_explicit] = ACTIONS(2797), - [anon_sym_typename] = ACTIONS(2797), - [anon_sym_template] = ACTIONS(2797), - [anon_sym_operator] = ACTIONS(2797), - [anon_sym_try] = ACTIONS(2797), - [anon_sym_delete] = ACTIONS(2797), - [anon_sym_throw] = ACTIONS(2797), - [anon_sym_namespace] = ACTIONS(2797), - [anon_sym_using] = ACTIONS(2797), - [anon_sym_static_assert] = ACTIONS(2797), - [anon_sym_concept] = ACTIONS(2797), - [anon_sym_co_return] = ACTIONS(2797), - [anon_sym_co_yield] = ACTIONS(2797), - [anon_sym_R_DQUOTE] = ACTIONS(2799), - [anon_sym_LR_DQUOTE] = ACTIONS(2799), - [anon_sym_uR_DQUOTE] = ACTIONS(2799), - [anon_sym_UR_DQUOTE] = ACTIONS(2799), - [anon_sym_u8R_DQUOTE] = ACTIONS(2799), - [anon_sym_co_await] = ACTIONS(2797), - [anon_sym_new] = ACTIONS(2797), - [anon_sym_requires] = ACTIONS(2797), - [sym_this] = ACTIONS(2797), - [sym_nullptr] = ACTIONS(2797), - }, - [905] = { - [ts_builtin_sym_end] = ACTIONS(2699), [sym_identifier] = ACTIONS(2697), [aux_sym_preproc_include_token1] = ACTIONS(2697), [aux_sym_preproc_def_token1] = ACTIONS(2697), [aux_sym_preproc_if_token1] = ACTIONS(2697), + [aux_sym_preproc_if_token2] = ACTIONS(2697), [aux_sym_preproc_ifdef_token1] = ACTIONS(2697), [aux_sym_preproc_ifdef_token2] = ACTIONS(2697), [sym_preproc_directive] = ACTIONS(2697), @@ -140503,6 +141120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2697), [anon_sym_inline] = ACTIONS(2697), [anon_sym_thread_local] = ACTIONS(2697), + [anon_sym_input] = ACTIONS(2697), [anon_sym_const] = ACTIONS(2697), [anon_sym_volatile] = ACTIONS(2697), [anon_sym_restrict] = ACTIONS(2697), @@ -140578,572 +141196,577 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2697), [sym_nullptr] = ACTIONS(2697), }, - [906] = { - [ts_builtin_sym_end] = ACTIONS(2695), - [sym_identifier] = ACTIONS(2693), - [aux_sym_preproc_include_token1] = ACTIONS(2693), - [aux_sym_preproc_def_token1] = ACTIONS(2693), - [aux_sym_preproc_if_token1] = ACTIONS(2693), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2693), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2693), - [sym_preproc_directive] = ACTIONS(2693), - [anon_sym_LPAREN2] = ACTIONS(2695), - [anon_sym_BANG] = ACTIONS(2695), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2695), - [anon_sym_AMP_AMP] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_SEMI] = ACTIONS(2695), - [anon_sym_typedef] = ACTIONS(2693), - [anon_sym_extern] = ACTIONS(2693), - [anon_sym___attribute__] = ACTIONS(2693), - [anon_sym_COLON_COLON] = ACTIONS(2695), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2695), - [anon_sym___declspec] = ACTIONS(2693), - [anon_sym___based] = ACTIONS(2693), - [anon_sym___cdecl] = ACTIONS(2693), - [anon_sym___clrcall] = ACTIONS(2693), - [anon_sym___stdcall] = ACTIONS(2693), - [anon_sym___fastcall] = ACTIONS(2693), - [anon_sym___thiscall] = ACTIONS(2693), - [anon_sym___vectorcall] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_static] = ACTIONS(2693), - [anon_sym_register] = ACTIONS(2693), - [anon_sym_inline] = ACTIONS(2693), - [anon_sym_thread_local] = ACTIONS(2693), - [anon_sym_const] = ACTIONS(2693), - [anon_sym_volatile] = ACTIONS(2693), - [anon_sym_restrict] = ACTIONS(2693), - [anon_sym__Atomic] = ACTIONS(2693), - [anon_sym_mutable] = ACTIONS(2693), - [anon_sym_constexpr] = ACTIONS(2693), - [anon_sym_constinit] = ACTIONS(2693), - [anon_sym_consteval] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2693), - [anon_sym_unsigned] = ACTIONS(2693), - [anon_sym_long] = ACTIONS(2693), - [anon_sym_short] = ACTIONS(2693), - [sym_primitive_type] = ACTIONS(2693), - [anon_sym_enum] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_struct] = ACTIONS(2693), - [anon_sym_union] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2693), - [anon_sym_default] = ACTIONS(2693), - [anon_sym_while] = ACTIONS(2693), - [anon_sym_do] = ACTIONS(2693), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2693), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2693), - [anon_sym_goto] = ACTIONS(2693), - [anon_sym_not] = ACTIONS(2693), - [anon_sym_compl] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_sizeof] = ACTIONS(2693), - [sym_number_literal] = ACTIONS(2695), - [anon_sym_L_SQUOTE] = ACTIONS(2695), - [anon_sym_u_SQUOTE] = ACTIONS(2695), - [anon_sym_U_SQUOTE] = ACTIONS(2695), - [anon_sym_u8_SQUOTE] = ACTIONS(2695), - [anon_sym_SQUOTE] = ACTIONS(2695), - [anon_sym_L_DQUOTE] = ACTIONS(2695), - [anon_sym_u_DQUOTE] = ACTIONS(2695), - [anon_sym_U_DQUOTE] = ACTIONS(2695), - [anon_sym_u8_DQUOTE] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(2695), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_null] = ACTIONS(2693), + [905] = { + [sym_identifier] = ACTIONS(2811), + [aux_sym_preproc_include_token1] = ACTIONS(2811), + [aux_sym_preproc_def_token1] = ACTIONS(2811), + [aux_sym_preproc_if_token1] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2811), + [sym_preproc_directive] = ACTIONS(2811), + [anon_sym_LPAREN2] = ACTIONS(2813), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP_AMP] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym_typedef] = ACTIONS(2811), + [anon_sym_extern] = ACTIONS(2811), + [anon_sym___attribute__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2813), + [anon_sym___declspec] = ACTIONS(2811), + [anon_sym___based] = ACTIONS(2811), + [anon_sym___cdecl] = ACTIONS(2811), + [anon_sym___clrcall] = ACTIONS(2811), + [anon_sym___stdcall] = ACTIONS(2811), + [anon_sym___fastcall] = ACTIONS(2811), + [anon_sym___thiscall] = ACTIONS(2811), + [anon_sym___vectorcall] = ACTIONS(2811), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_RBRACE] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_register] = ACTIONS(2811), + [anon_sym_inline] = ACTIONS(2811), + [anon_sym_thread_local] = ACTIONS(2811), + [anon_sym_input] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_volatile] = ACTIONS(2811), + [anon_sym_restrict] = ACTIONS(2811), + [anon_sym__Atomic] = ACTIONS(2811), + [anon_sym_mutable] = ACTIONS(2811), + [anon_sym_constexpr] = ACTIONS(2811), + [anon_sym_constinit] = ACTIONS(2811), + [anon_sym_consteval] = ACTIONS(2811), + [anon_sym_signed] = ACTIONS(2811), + [anon_sym_unsigned] = ACTIONS(2811), + [anon_sym_long] = ACTIONS(2811), + [anon_sym_short] = ACTIONS(2811), + [sym_primitive_type] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2811), + [anon_sym_union] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_switch] = ACTIONS(2811), + [anon_sym_case] = ACTIONS(2811), + [anon_sym_default] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_do] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_goto] = ACTIONS(2811), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2813), + [anon_sym_PLUS_PLUS] = ACTIONS(2813), + [anon_sym_sizeof] = ACTIONS(2811), + [sym_number_literal] = ACTIONS(2813), + [anon_sym_L_SQUOTE] = ACTIONS(2813), + [anon_sym_u_SQUOTE] = ACTIONS(2813), + [anon_sym_U_SQUOTE] = ACTIONS(2813), + [anon_sym_u8_SQUOTE] = ACTIONS(2813), + [anon_sym_SQUOTE] = ACTIONS(2813), + [anon_sym_L_DQUOTE] = ACTIONS(2813), + [anon_sym_u_DQUOTE] = ACTIONS(2813), + [anon_sym_U_DQUOTE] = ACTIONS(2813), + [anon_sym_u8_DQUOTE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2813), + [sym_true] = ACTIONS(2811), + [sym_false] = ACTIONS(2811), + [sym_null] = ACTIONS(2811), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2693), - [anon_sym_decltype] = ACTIONS(2693), - [anon_sym_virtual] = ACTIONS(2693), - [anon_sym_explicit] = ACTIONS(2693), - [anon_sym_typename] = ACTIONS(2693), - [anon_sym_template] = ACTIONS(2693), - [anon_sym_operator] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_delete] = ACTIONS(2693), - [anon_sym_throw] = ACTIONS(2693), - [anon_sym_namespace] = ACTIONS(2693), - [anon_sym_using] = ACTIONS(2693), - [anon_sym_static_assert] = ACTIONS(2693), - [anon_sym_concept] = ACTIONS(2693), - [anon_sym_co_return] = ACTIONS(2693), - [anon_sym_co_yield] = ACTIONS(2693), - [anon_sym_R_DQUOTE] = ACTIONS(2695), - [anon_sym_LR_DQUOTE] = ACTIONS(2695), - [anon_sym_uR_DQUOTE] = ACTIONS(2695), - [anon_sym_UR_DQUOTE] = ACTIONS(2695), - [anon_sym_u8R_DQUOTE] = ACTIONS(2695), - [anon_sym_co_await] = ACTIONS(2693), - [anon_sym_new] = ACTIONS(2693), - [anon_sym_requires] = ACTIONS(2693), - [sym_this] = ACTIONS(2693), - [sym_nullptr] = ACTIONS(2693), + [sym_auto] = ACTIONS(2811), + [anon_sym_decltype] = ACTIONS(2811), + [anon_sym_virtual] = ACTIONS(2811), + [anon_sym_explicit] = ACTIONS(2811), + [anon_sym_typename] = ACTIONS(2811), + [anon_sym_template] = ACTIONS(2811), + [anon_sym_operator] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_throw] = ACTIONS(2811), + [anon_sym_namespace] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2811), + [anon_sym_static_assert] = ACTIONS(2811), + [anon_sym_concept] = ACTIONS(2811), + [anon_sym_co_return] = ACTIONS(2811), + [anon_sym_co_yield] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2813), + [anon_sym_LR_DQUOTE] = ACTIONS(2813), + [anon_sym_uR_DQUOTE] = ACTIONS(2813), + [anon_sym_UR_DQUOTE] = ACTIONS(2813), + [anon_sym_u8R_DQUOTE] = ACTIONS(2813), + [anon_sym_co_await] = ACTIONS(2811), + [anon_sym_new] = ACTIONS(2811), + [anon_sym_requires] = ACTIONS(2811), + [sym_this] = ACTIONS(2811), + [sym_nullptr] = ACTIONS(2811), + }, + [906] = { + [sym_identifier] = ACTIONS(2623), + [aux_sym_preproc_include_token1] = ACTIONS(2623), + [aux_sym_preproc_def_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token2] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), + [sym_preproc_directive] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym___attribute__] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), + [anon_sym___declspec] = ACTIONS(2623), + [anon_sym___based] = ACTIONS(2623), + [anon_sym___cdecl] = ACTIONS(2623), + [anon_sym___clrcall] = ACTIONS(2623), + [anon_sym___stdcall] = ACTIONS(2623), + [anon_sym___fastcall] = ACTIONS(2623), + [anon_sym___thiscall] = ACTIONS(2623), + [anon_sym___vectorcall] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_thread_local] = ACTIONS(2623), + [anon_sym_input] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_mutable] = ACTIONS(2623), + [anon_sym_constexpr] = ACTIONS(2623), + [anon_sym_constinit] = ACTIONS(2623), + [anon_sym_consteval] = ACTIONS(2623), + [anon_sym_signed] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_compl] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_L_SQUOTE] = ACTIONS(2625), + [anon_sym_u_SQUOTE] = ACTIONS(2625), + [anon_sym_U_SQUOTE] = ACTIONS(2625), + [anon_sym_u8_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_L_DQUOTE] = ACTIONS(2625), + [anon_sym_u_DQUOTE] = ACTIONS(2625), + [anon_sym_U_DQUOTE] = ACTIONS(2625), + [anon_sym_u8_DQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2623), + [anon_sym_decltype] = ACTIONS(2623), + [anon_sym_virtual] = ACTIONS(2623), + [anon_sym_explicit] = ACTIONS(2623), + [anon_sym_typename] = ACTIONS(2623), + [anon_sym_template] = ACTIONS(2623), + [anon_sym_operator] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_namespace] = ACTIONS(2623), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_static_assert] = ACTIONS(2623), + [anon_sym_concept] = ACTIONS(2623), + [anon_sym_co_return] = ACTIONS(2623), + [anon_sym_co_yield] = ACTIONS(2623), + [anon_sym_R_DQUOTE] = ACTIONS(2625), + [anon_sym_LR_DQUOTE] = ACTIONS(2625), + [anon_sym_uR_DQUOTE] = ACTIONS(2625), + [anon_sym_UR_DQUOTE] = ACTIONS(2625), + [anon_sym_u8R_DQUOTE] = ACTIONS(2625), + [anon_sym_co_await] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_requires] = ACTIONS(2623), + [sym_this] = ACTIONS(2623), + [sym_nullptr] = ACTIONS(2623), }, [907] = { - [sym_ms_based_modifier] = STATE(6985), - [sym_ms_unaligned_ptr_modifier] = STATE(4390), - [sym_ms_pointer_modifier] = STATE(3249), - [sym__declarator] = STATE(5321), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5152), - [sym_array_declarator] = STATE(5152), - [sym_type_qualifier] = STATE(3624), - [sym__expression] = STATE(2669), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2586), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4911), - [sym_qualified_identifier] = STATE(2587), - [sym_qualified_type_identifier] = STATE(6425), - [sym_operator_name] = STATE(5152), - [sym_user_defined_literal] = STATE(2709), - [aux_sym_type_definition_repeat1] = STATE(3624), - [aux_sym_pointer_declarator_repeat1] = STATE(3249), - [sym_identifier] = ACTIONS(2895), - [anon_sym_LPAREN2] = ACTIONS(2897), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym___based] = ACTIONS(47), - [sym_ms_restrict_modifier] = ACTIONS(2901), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2901), - [sym_ms_signed_ptr_modifier] = ACTIONS(2901), - [anon_sym__unaligned] = ACTIONS(2903), - [anon_sym___unaligned] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), + [ts_builtin_sym_end] = ACTIONS(2777), + [sym_identifier] = ACTIONS(2775), + [aux_sym_preproc_include_token1] = ACTIONS(2775), + [aux_sym_preproc_def_token1] = ACTIONS(2775), + [aux_sym_preproc_if_token1] = ACTIONS(2775), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2775), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2775), + [sym_preproc_directive] = ACTIONS(2775), + [anon_sym_LPAREN2] = ACTIONS(2777), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_TILDE] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2777), + [anon_sym_AMP_AMP] = ACTIONS(2777), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_SEMI] = ACTIONS(2777), + [anon_sym_typedef] = ACTIONS(2775), + [anon_sym_extern] = ACTIONS(2775), + [anon_sym___attribute__] = ACTIONS(2775), + [anon_sym_COLON_COLON] = ACTIONS(2777), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2777), + [anon_sym___declspec] = ACTIONS(2775), + [anon_sym___based] = ACTIONS(2775), + [anon_sym___cdecl] = ACTIONS(2775), + [anon_sym___clrcall] = ACTIONS(2775), + [anon_sym___stdcall] = ACTIONS(2775), + [anon_sym___fastcall] = ACTIONS(2775), + [anon_sym___thiscall] = ACTIONS(2775), + [anon_sym___vectorcall] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2775), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_register] = ACTIONS(2775), + [anon_sym_inline] = ACTIONS(2775), + [anon_sym_thread_local] = ACTIONS(2775), + [anon_sym_input] = ACTIONS(2775), + [anon_sym_const] = ACTIONS(2775), + [anon_sym_volatile] = ACTIONS(2775), + [anon_sym_restrict] = ACTIONS(2775), + [anon_sym__Atomic] = ACTIONS(2775), + [anon_sym_mutable] = ACTIONS(2775), + [anon_sym_constexpr] = ACTIONS(2775), + [anon_sym_constinit] = ACTIONS(2775), + [anon_sym_consteval] = ACTIONS(2775), + [anon_sym_signed] = ACTIONS(2775), + [anon_sym_unsigned] = ACTIONS(2775), + [anon_sym_long] = ACTIONS(2775), + [anon_sym_short] = ACTIONS(2775), + [sym_primitive_type] = ACTIONS(2775), + [anon_sym_enum] = ACTIONS(2775), + [anon_sym_class] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_union] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_switch] = ACTIONS(2775), + [anon_sym_case] = ACTIONS(2775), + [anon_sym_default] = ACTIONS(2775), + [anon_sym_while] = ACTIONS(2775), + [anon_sym_do] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2775), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2775), + [anon_sym_continue] = ACTIONS(2775), + [anon_sym_goto] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2775), + [anon_sym_compl] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2777), + [anon_sym_sizeof] = ACTIONS(2775), + [sym_number_literal] = ACTIONS(2777), + [anon_sym_L_SQUOTE] = ACTIONS(2777), + [anon_sym_u_SQUOTE] = ACTIONS(2777), + [anon_sym_U_SQUOTE] = ACTIONS(2777), + [anon_sym_u8_SQUOTE] = ACTIONS(2777), + [anon_sym_SQUOTE] = ACTIONS(2777), + [anon_sym_L_DQUOTE] = ACTIONS(2777), + [anon_sym_u_DQUOTE] = ACTIONS(2777), + [anon_sym_U_DQUOTE] = ACTIONS(2777), + [anon_sym_u8_DQUOTE] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2777), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [sym_null] = ACTIONS(2775), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(1501), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), + [sym_auto] = ACTIONS(2775), + [anon_sym_decltype] = ACTIONS(2775), + [anon_sym_virtual] = ACTIONS(2775), + [anon_sym_explicit] = ACTIONS(2775), + [anon_sym_typename] = ACTIONS(2775), + [anon_sym_template] = ACTIONS(2775), + [anon_sym_operator] = ACTIONS(2775), + [anon_sym_try] = ACTIONS(2775), + [anon_sym_delete] = ACTIONS(2775), + [anon_sym_throw] = ACTIONS(2775), + [anon_sym_namespace] = ACTIONS(2775), + [anon_sym_using] = ACTIONS(2775), + [anon_sym_static_assert] = ACTIONS(2775), + [anon_sym_concept] = ACTIONS(2775), + [anon_sym_co_return] = ACTIONS(2775), + [anon_sym_co_yield] = ACTIONS(2775), + [anon_sym_R_DQUOTE] = ACTIONS(2777), + [anon_sym_LR_DQUOTE] = ACTIONS(2777), + [anon_sym_uR_DQUOTE] = ACTIONS(2777), + [anon_sym_UR_DQUOTE] = ACTIONS(2777), + [anon_sym_u8R_DQUOTE] = ACTIONS(2777), + [anon_sym_co_await] = ACTIONS(2775), + [anon_sym_new] = ACTIONS(2775), + [anon_sym_requires] = ACTIONS(2775), + [sym_this] = ACTIONS(2775), + [sym_nullptr] = ACTIONS(2775), }, [908] = { - [ts_builtin_sym_end] = ACTIONS(2847), - [sym_identifier] = ACTIONS(2845), - [aux_sym_preproc_include_token1] = ACTIONS(2845), - [aux_sym_preproc_def_token1] = ACTIONS(2845), - [aux_sym_preproc_if_token1] = ACTIONS(2845), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2845), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2845), - [sym_preproc_directive] = ACTIONS(2845), - [anon_sym_LPAREN2] = ACTIONS(2847), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_TILDE] = ACTIONS(2847), - [anon_sym_DASH] = ACTIONS(2845), - [anon_sym_PLUS] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_AMP_AMP] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_SEMI] = ACTIONS(2847), - [anon_sym_typedef] = ACTIONS(2845), - [anon_sym_extern] = ACTIONS(2845), - [anon_sym___attribute__] = ACTIONS(2845), - [anon_sym_COLON_COLON] = ACTIONS(2847), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2847), - [anon_sym___declspec] = ACTIONS(2845), - [anon_sym___based] = ACTIONS(2845), - [anon_sym___cdecl] = ACTIONS(2845), - [anon_sym___clrcall] = ACTIONS(2845), - [anon_sym___stdcall] = ACTIONS(2845), - [anon_sym___fastcall] = ACTIONS(2845), - [anon_sym___thiscall] = ACTIONS(2845), - [anon_sym___vectorcall] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_static] = ACTIONS(2845), - [anon_sym_register] = ACTIONS(2845), - [anon_sym_inline] = ACTIONS(2845), - [anon_sym_thread_local] = ACTIONS(2845), - [anon_sym_const] = ACTIONS(2845), - [anon_sym_volatile] = ACTIONS(2845), - [anon_sym_restrict] = ACTIONS(2845), - [anon_sym__Atomic] = ACTIONS(2845), - [anon_sym_mutable] = ACTIONS(2845), - [anon_sym_constexpr] = ACTIONS(2845), - [anon_sym_constinit] = ACTIONS(2845), - [anon_sym_consteval] = ACTIONS(2845), - [anon_sym_signed] = ACTIONS(2845), - [anon_sym_unsigned] = ACTIONS(2845), - [anon_sym_long] = ACTIONS(2845), - [anon_sym_short] = ACTIONS(2845), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_enum] = ACTIONS(2845), - [anon_sym_class] = ACTIONS(2845), - [anon_sym_struct] = ACTIONS(2845), - [anon_sym_union] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(2845), - [anon_sym_switch] = ACTIONS(2845), - [anon_sym_case] = ACTIONS(2845), - [anon_sym_default] = ACTIONS(2845), - [anon_sym_while] = ACTIONS(2845), - [anon_sym_do] = ACTIONS(2845), - [anon_sym_for] = ACTIONS(2845), - [anon_sym_return] = ACTIONS(2845), - [anon_sym_break] = ACTIONS(2845), - [anon_sym_continue] = ACTIONS(2845), - [anon_sym_goto] = ACTIONS(2845), - [anon_sym_not] = ACTIONS(2845), - [anon_sym_compl] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2845), - [sym_number_literal] = ACTIONS(2847), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2847), - [anon_sym_u_DQUOTE] = ACTIONS(2847), - [anon_sym_U_DQUOTE] = ACTIONS(2847), - [anon_sym_u8_DQUOTE] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2847), - [sym_true] = ACTIONS(2845), - [sym_false] = ACTIONS(2845), - [sym_null] = ACTIONS(2845), + [sym_identifier] = ACTIONS(2807), + [aux_sym_preproc_include_token1] = ACTIONS(2807), + [aux_sym_preproc_def_token1] = ACTIONS(2807), + [aux_sym_preproc_if_token1] = ACTIONS(2807), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2807), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2807), + [sym_preproc_directive] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_AMP_AMP] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2809), + [anon_sym_typedef] = ACTIONS(2807), + [anon_sym_extern] = ACTIONS(2807), + [anon_sym___attribute__] = ACTIONS(2807), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2809), + [anon_sym___declspec] = ACTIONS(2807), + [anon_sym___based] = ACTIONS(2807), + [anon_sym___cdecl] = ACTIONS(2807), + [anon_sym___clrcall] = ACTIONS(2807), + [anon_sym___stdcall] = ACTIONS(2807), + [anon_sym___fastcall] = ACTIONS(2807), + [anon_sym___thiscall] = ACTIONS(2807), + [anon_sym___vectorcall] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_RBRACE] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_static] = ACTIONS(2807), + [anon_sym_register] = ACTIONS(2807), + [anon_sym_inline] = ACTIONS(2807), + [anon_sym_thread_local] = ACTIONS(2807), + [anon_sym_input] = ACTIONS(2807), + [anon_sym_const] = ACTIONS(2807), + [anon_sym_volatile] = ACTIONS(2807), + [anon_sym_restrict] = ACTIONS(2807), + [anon_sym__Atomic] = ACTIONS(2807), + [anon_sym_mutable] = ACTIONS(2807), + [anon_sym_constexpr] = ACTIONS(2807), + [anon_sym_constinit] = ACTIONS(2807), + [anon_sym_consteval] = ACTIONS(2807), + [anon_sym_signed] = ACTIONS(2807), + [anon_sym_unsigned] = ACTIONS(2807), + [anon_sym_long] = ACTIONS(2807), + [anon_sym_short] = ACTIONS(2807), + [sym_primitive_type] = ACTIONS(2807), + [anon_sym_enum] = ACTIONS(2807), + [anon_sym_class] = ACTIONS(2807), + [anon_sym_struct] = ACTIONS(2807), + [anon_sym_union] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_switch] = ACTIONS(2807), + [anon_sym_case] = ACTIONS(2807), + [anon_sym_default] = ACTIONS(2807), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_break] = ACTIONS(2807), + [anon_sym_continue] = ACTIONS(2807), + [anon_sym_goto] = ACTIONS(2807), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_PLUS_PLUS] = ACTIONS(2809), + [anon_sym_sizeof] = ACTIONS(2807), + [sym_number_literal] = ACTIONS(2809), + [anon_sym_L_SQUOTE] = ACTIONS(2809), + [anon_sym_u_SQUOTE] = ACTIONS(2809), + [anon_sym_U_SQUOTE] = ACTIONS(2809), + [anon_sym_u8_SQUOTE] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_L_DQUOTE] = ACTIONS(2809), + [anon_sym_u_DQUOTE] = ACTIONS(2809), + [anon_sym_U_DQUOTE] = ACTIONS(2809), + [anon_sym_u8_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2809), + [sym_true] = ACTIONS(2807), + [sym_false] = ACTIONS(2807), + [sym_null] = ACTIONS(2807), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2845), - [anon_sym_decltype] = ACTIONS(2845), - [anon_sym_virtual] = ACTIONS(2845), - [anon_sym_explicit] = ACTIONS(2845), - [anon_sym_typename] = ACTIONS(2845), - [anon_sym_template] = ACTIONS(2845), - [anon_sym_operator] = ACTIONS(2845), - [anon_sym_try] = ACTIONS(2845), - [anon_sym_delete] = ACTIONS(2845), - [anon_sym_throw] = ACTIONS(2845), - [anon_sym_namespace] = ACTIONS(2845), - [anon_sym_using] = ACTIONS(2845), - [anon_sym_static_assert] = ACTIONS(2845), - [anon_sym_concept] = ACTIONS(2845), - [anon_sym_co_return] = ACTIONS(2845), - [anon_sym_co_yield] = ACTIONS(2845), - [anon_sym_R_DQUOTE] = ACTIONS(2847), - [anon_sym_LR_DQUOTE] = ACTIONS(2847), - [anon_sym_uR_DQUOTE] = ACTIONS(2847), - [anon_sym_UR_DQUOTE] = ACTIONS(2847), - [anon_sym_u8R_DQUOTE] = ACTIONS(2847), - [anon_sym_co_await] = ACTIONS(2845), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_requires] = ACTIONS(2845), - [sym_this] = ACTIONS(2845), - [sym_nullptr] = ACTIONS(2845), + [sym_auto] = ACTIONS(2807), + [anon_sym_decltype] = ACTIONS(2807), + [anon_sym_virtual] = ACTIONS(2807), + [anon_sym_explicit] = ACTIONS(2807), + [anon_sym_typename] = ACTIONS(2807), + [anon_sym_template] = ACTIONS(2807), + [anon_sym_operator] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_delete] = ACTIONS(2807), + [anon_sym_throw] = ACTIONS(2807), + [anon_sym_namespace] = ACTIONS(2807), + [anon_sym_using] = ACTIONS(2807), + [anon_sym_static_assert] = ACTIONS(2807), + [anon_sym_concept] = ACTIONS(2807), + [anon_sym_co_return] = ACTIONS(2807), + [anon_sym_co_yield] = ACTIONS(2807), + [anon_sym_R_DQUOTE] = ACTIONS(2809), + [anon_sym_LR_DQUOTE] = ACTIONS(2809), + [anon_sym_uR_DQUOTE] = ACTIONS(2809), + [anon_sym_UR_DQUOTE] = ACTIONS(2809), + [anon_sym_u8R_DQUOTE] = ACTIONS(2809), + [anon_sym_co_await] = ACTIONS(2807), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_requires] = ACTIONS(2807), + [sym_this] = ACTIONS(2807), + [sym_nullptr] = ACTIONS(2807), }, [909] = { - [ts_builtin_sym_end] = ACTIONS(2731), - [sym_identifier] = ACTIONS(2729), - [aux_sym_preproc_include_token1] = ACTIONS(2729), - [aux_sym_preproc_def_token1] = ACTIONS(2729), - [aux_sym_preproc_if_token1] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), - [sym_preproc_directive] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_TILDE] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_AMP_AMP] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_SEMI] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2729), - [anon_sym_extern] = ACTIONS(2729), - [anon_sym___attribute__] = ACTIONS(2729), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), - [anon_sym___declspec] = ACTIONS(2729), - [anon_sym___based] = ACTIONS(2729), - [anon_sym___cdecl] = ACTIONS(2729), - [anon_sym___clrcall] = ACTIONS(2729), - [anon_sym___stdcall] = ACTIONS(2729), - [anon_sym___fastcall] = ACTIONS(2729), - [anon_sym___thiscall] = ACTIONS(2729), - [anon_sym___vectorcall] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_register] = ACTIONS(2729), - [anon_sym_inline] = ACTIONS(2729), - [anon_sym_thread_local] = ACTIONS(2729), - [anon_sym_const] = ACTIONS(2729), - [anon_sym_volatile] = ACTIONS(2729), - [anon_sym_restrict] = ACTIONS(2729), - [anon_sym__Atomic] = ACTIONS(2729), - [anon_sym_mutable] = ACTIONS(2729), - [anon_sym_constexpr] = ACTIONS(2729), - [anon_sym_constinit] = ACTIONS(2729), - [anon_sym_consteval] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2729), - [anon_sym_unsigned] = ACTIONS(2729), - [anon_sym_long] = ACTIONS(2729), - [anon_sym_short] = ACTIONS(2729), - [sym_primitive_type] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_union] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_switch] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_default] = ACTIONS(2729), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_break] = ACTIONS(2729), - [anon_sym_continue] = ACTIONS(2729), - [anon_sym_goto] = ACTIONS(2729), - [anon_sym_not] = ACTIONS(2729), - [anon_sym_compl] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_sizeof] = ACTIONS(2729), - [sym_number_literal] = ACTIONS(2731), - [anon_sym_L_SQUOTE] = ACTIONS(2731), - [anon_sym_u_SQUOTE] = ACTIONS(2731), - [anon_sym_U_SQUOTE] = ACTIONS(2731), - [anon_sym_u8_SQUOTE] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_L_DQUOTE] = ACTIONS(2731), - [anon_sym_u_DQUOTE] = ACTIONS(2731), - [anon_sym_U_DQUOTE] = ACTIONS(2731), - [anon_sym_u8_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2731), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_null] = ACTIONS(2729), + [ts_builtin_sym_end] = ACTIONS(2781), + [sym_identifier] = ACTIONS(2779), + [aux_sym_preproc_include_token1] = ACTIONS(2779), + [aux_sym_preproc_def_token1] = ACTIONS(2779), + [aux_sym_preproc_if_token1] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2779), + [sym_preproc_directive] = ACTIONS(2779), + [anon_sym_LPAREN2] = ACTIONS(2781), + [anon_sym_BANG] = ACTIONS(2781), + [anon_sym_TILDE] = ACTIONS(2781), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2781), + [anon_sym_typedef] = ACTIONS(2779), + [anon_sym_extern] = ACTIONS(2779), + [anon_sym___attribute__] = ACTIONS(2779), + [anon_sym_COLON_COLON] = ACTIONS(2781), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2781), + [anon_sym___declspec] = ACTIONS(2779), + [anon_sym___based] = ACTIONS(2779), + [anon_sym___cdecl] = ACTIONS(2779), + [anon_sym___clrcall] = ACTIONS(2779), + [anon_sym___stdcall] = ACTIONS(2779), + [anon_sym___fastcall] = ACTIONS(2779), + [anon_sym___thiscall] = ACTIONS(2779), + [anon_sym___vectorcall] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2781), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_static] = ACTIONS(2779), + [anon_sym_register] = ACTIONS(2779), + [anon_sym_inline] = ACTIONS(2779), + [anon_sym_thread_local] = ACTIONS(2779), + [anon_sym_input] = ACTIONS(2779), + [anon_sym_const] = ACTIONS(2779), + [anon_sym_volatile] = ACTIONS(2779), + [anon_sym_restrict] = ACTIONS(2779), + [anon_sym__Atomic] = ACTIONS(2779), + [anon_sym_mutable] = ACTIONS(2779), + [anon_sym_constexpr] = ACTIONS(2779), + [anon_sym_constinit] = ACTIONS(2779), + [anon_sym_consteval] = ACTIONS(2779), + [anon_sym_signed] = ACTIONS(2779), + [anon_sym_unsigned] = ACTIONS(2779), + [anon_sym_long] = ACTIONS(2779), + [anon_sym_short] = ACTIONS(2779), + [sym_primitive_type] = ACTIONS(2779), + [anon_sym_enum] = ACTIONS(2779), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_union] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_switch] = ACTIONS(2779), + [anon_sym_case] = ACTIONS(2779), + [anon_sym_default] = ACTIONS(2779), + [anon_sym_while] = ACTIONS(2779), + [anon_sym_do] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2779), + [anon_sym_return] = ACTIONS(2779), + [anon_sym_break] = ACTIONS(2779), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_goto] = ACTIONS(2779), + [anon_sym_not] = ACTIONS(2779), + [anon_sym_compl] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2781), + [anon_sym_sizeof] = ACTIONS(2779), + [sym_number_literal] = ACTIONS(2781), + [anon_sym_L_SQUOTE] = ACTIONS(2781), + [anon_sym_u_SQUOTE] = ACTIONS(2781), + [anon_sym_U_SQUOTE] = ACTIONS(2781), + [anon_sym_u8_SQUOTE] = ACTIONS(2781), + [anon_sym_SQUOTE] = ACTIONS(2781), + [anon_sym_L_DQUOTE] = ACTIONS(2781), + [anon_sym_u_DQUOTE] = ACTIONS(2781), + [anon_sym_U_DQUOTE] = ACTIONS(2781), + [anon_sym_u8_DQUOTE] = ACTIONS(2781), + [anon_sym_DQUOTE] = ACTIONS(2781), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [sym_null] = ACTIONS(2779), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2729), - [anon_sym_decltype] = ACTIONS(2729), - [anon_sym_virtual] = ACTIONS(2729), - [anon_sym_explicit] = ACTIONS(2729), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2729), - [anon_sym_operator] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_delete] = ACTIONS(2729), - [anon_sym_throw] = ACTIONS(2729), - [anon_sym_namespace] = ACTIONS(2729), - [anon_sym_using] = ACTIONS(2729), - [anon_sym_static_assert] = ACTIONS(2729), - [anon_sym_concept] = ACTIONS(2729), - [anon_sym_co_return] = ACTIONS(2729), - [anon_sym_co_yield] = ACTIONS(2729), - [anon_sym_R_DQUOTE] = ACTIONS(2731), - [anon_sym_LR_DQUOTE] = ACTIONS(2731), - [anon_sym_uR_DQUOTE] = ACTIONS(2731), - [anon_sym_UR_DQUOTE] = ACTIONS(2731), - [anon_sym_u8R_DQUOTE] = ACTIONS(2731), - [anon_sym_co_await] = ACTIONS(2729), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_requires] = ACTIONS(2729), - [sym_this] = ACTIONS(2729), - [sym_nullptr] = ACTIONS(2729), + [sym_auto] = ACTIONS(2779), + [anon_sym_decltype] = ACTIONS(2779), + [anon_sym_virtual] = ACTIONS(2779), + [anon_sym_explicit] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_template] = ACTIONS(2779), + [anon_sym_operator] = ACTIONS(2779), + [anon_sym_try] = ACTIONS(2779), + [anon_sym_delete] = ACTIONS(2779), + [anon_sym_throw] = ACTIONS(2779), + [anon_sym_namespace] = ACTIONS(2779), + [anon_sym_using] = ACTIONS(2779), + [anon_sym_static_assert] = ACTIONS(2779), + [anon_sym_concept] = ACTIONS(2779), + [anon_sym_co_return] = ACTIONS(2779), + [anon_sym_co_yield] = ACTIONS(2779), + [anon_sym_R_DQUOTE] = ACTIONS(2781), + [anon_sym_LR_DQUOTE] = ACTIONS(2781), + [anon_sym_uR_DQUOTE] = ACTIONS(2781), + [anon_sym_UR_DQUOTE] = ACTIONS(2781), + [anon_sym_u8R_DQUOTE] = ACTIONS(2781), + [anon_sym_co_await] = ACTIONS(2779), + [anon_sym_new] = ACTIONS(2779), + [anon_sym_requires] = ACTIONS(2779), + [sym_this] = ACTIONS(2779), + [sym_nullptr] = ACTIONS(2779), }, [910] = { - [ts_builtin_sym_end] = ACTIONS(2751), - [sym_identifier] = ACTIONS(2749), - [aux_sym_preproc_include_token1] = ACTIONS(2749), - [aux_sym_preproc_def_token1] = ACTIONS(2749), - [aux_sym_preproc_if_token1] = ACTIONS(2749), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2749), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2749), - [sym_preproc_directive] = ACTIONS(2749), - [anon_sym_LPAREN2] = ACTIONS(2751), - [anon_sym_BANG] = ACTIONS(2751), - [anon_sym_TILDE] = ACTIONS(2751), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_PLUS] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2751), - [anon_sym_AMP_AMP] = ACTIONS(2751), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_SEMI] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2749), - [anon_sym_extern] = ACTIONS(2749), - [anon_sym___attribute__] = ACTIONS(2749), - [anon_sym_COLON_COLON] = ACTIONS(2751), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2751), - [anon_sym___declspec] = ACTIONS(2749), - [anon_sym___based] = ACTIONS(2749), - [anon_sym___cdecl] = ACTIONS(2749), - [anon_sym___clrcall] = ACTIONS(2749), - [anon_sym___stdcall] = ACTIONS(2749), - [anon_sym___fastcall] = ACTIONS(2749), - [anon_sym___thiscall] = ACTIONS(2749), - [anon_sym___vectorcall] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2749), - [anon_sym_static] = ACTIONS(2749), - [anon_sym_register] = ACTIONS(2749), - [anon_sym_inline] = ACTIONS(2749), - [anon_sym_thread_local] = ACTIONS(2749), - [anon_sym_const] = ACTIONS(2749), - [anon_sym_volatile] = ACTIONS(2749), - [anon_sym_restrict] = ACTIONS(2749), - [anon_sym__Atomic] = ACTIONS(2749), - [anon_sym_mutable] = ACTIONS(2749), - [anon_sym_constexpr] = ACTIONS(2749), - [anon_sym_constinit] = ACTIONS(2749), - [anon_sym_consteval] = ACTIONS(2749), - [anon_sym_signed] = ACTIONS(2749), - [anon_sym_unsigned] = ACTIONS(2749), - [anon_sym_long] = ACTIONS(2749), - [anon_sym_short] = ACTIONS(2749), - [sym_primitive_type] = ACTIONS(2749), - [anon_sym_enum] = ACTIONS(2749), - [anon_sym_class] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2749), - [anon_sym_union] = ACTIONS(2749), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_switch] = ACTIONS(2749), - [anon_sym_case] = ACTIONS(2749), - [anon_sym_default] = ACTIONS(2749), - [anon_sym_while] = ACTIONS(2749), - [anon_sym_do] = ACTIONS(2749), - [anon_sym_for] = ACTIONS(2749), - [anon_sym_return] = ACTIONS(2749), - [anon_sym_break] = ACTIONS(2749), - [anon_sym_continue] = ACTIONS(2749), - [anon_sym_goto] = ACTIONS(2749), - [anon_sym_not] = ACTIONS(2749), - [anon_sym_compl] = ACTIONS(2749), - [anon_sym_DASH_DASH] = ACTIONS(2751), - [anon_sym_PLUS_PLUS] = ACTIONS(2751), - [anon_sym_sizeof] = ACTIONS(2749), - [sym_number_literal] = ACTIONS(2751), - [anon_sym_L_SQUOTE] = ACTIONS(2751), - [anon_sym_u_SQUOTE] = ACTIONS(2751), - [anon_sym_U_SQUOTE] = ACTIONS(2751), - [anon_sym_u8_SQUOTE] = ACTIONS(2751), - [anon_sym_SQUOTE] = ACTIONS(2751), - [anon_sym_L_DQUOTE] = ACTIONS(2751), - [anon_sym_u_DQUOTE] = ACTIONS(2751), - [anon_sym_U_DQUOTE] = ACTIONS(2751), - [anon_sym_u8_DQUOTE] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(2751), - [sym_true] = ACTIONS(2749), - [sym_false] = ACTIONS(2749), - [sym_null] = ACTIONS(2749), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2749), - [anon_sym_decltype] = ACTIONS(2749), - [anon_sym_virtual] = ACTIONS(2749), - [anon_sym_explicit] = ACTIONS(2749), - [anon_sym_typename] = ACTIONS(2749), - [anon_sym_template] = ACTIONS(2749), - [anon_sym_operator] = ACTIONS(2749), - [anon_sym_try] = ACTIONS(2749), - [anon_sym_delete] = ACTIONS(2749), - [anon_sym_throw] = ACTIONS(2749), - [anon_sym_namespace] = ACTIONS(2749), - [anon_sym_using] = ACTIONS(2749), - [anon_sym_static_assert] = ACTIONS(2749), - [anon_sym_concept] = ACTIONS(2749), - [anon_sym_co_return] = ACTIONS(2749), - [anon_sym_co_yield] = ACTIONS(2749), - [anon_sym_R_DQUOTE] = ACTIONS(2751), - [anon_sym_LR_DQUOTE] = ACTIONS(2751), - [anon_sym_uR_DQUOTE] = ACTIONS(2751), - [anon_sym_UR_DQUOTE] = ACTIONS(2751), - [anon_sym_u8R_DQUOTE] = ACTIONS(2751), - [anon_sym_co_await] = ACTIONS(2749), - [anon_sym_new] = ACTIONS(2749), - [anon_sym_requires] = ACTIONS(2749), - [sym_this] = ACTIONS(2749), - [sym_nullptr] = ACTIONS(2749), - }, - [911] = { - [ts_builtin_sym_end] = ACTIONS(2651), [sym_identifier] = ACTIONS(2649), [aux_sym_preproc_include_token1] = ACTIONS(2649), [aux_sym_preproc_def_token1] = ACTIONS(2649), [aux_sym_preproc_if_token1] = ACTIONS(2649), + [aux_sym_preproc_if_token2] = ACTIONS(2649), [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), [sym_preproc_directive] = ACTIONS(2649), @@ -141175,6 +141798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2649), [anon_sym_inline] = ACTIONS(2649), [anon_sym_thread_local] = ACTIONS(2649), + [anon_sym_input] = ACTIONS(2649), [anon_sym_const] = ACTIONS(2649), [anon_sym_volatile] = ACTIONS(2649), [anon_sym_restrict] = ACTIONS(2649), @@ -141250,908 +141874,1933 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2649), [sym_nullptr] = ACTIONS(2649), }, - [912] = { - [ts_builtin_sym_end] = ACTIONS(2747), - [sym_identifier] = ACTIONS(2745), - [aux_sym_preproc_include_token1] = ACTIONS(2745), - [aux_sym_preproc_def_token1] = ACTIONS(2745), - [aux_sym_preproc_if_token1] = ACTIONS(2745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2745), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2745), - [sym_preproc_directive] = ACTIONS(2745), - [anon_sym_LPAREN2] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_AMP_AMP] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2745), - [anon_sym_extern] = ACTIONS(2745), - [anon_sym___attribute__] = ACTIONS(2745), - [anon_sym_COLON_COLON] = ACTIONS(2747), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2747), - [anon_sym___declspec] = ACTIONS(2745), - [anon_sym___based] = ACTIONS(2745), - [anon_sym___cdecl] = ACTIONS(2745), - [anon_sym___clrcall] = ACTIONS(2745), - [anon_sym___stdcall] = ACTIONS(2745), - [anon_sym___fastcall] = ACTIONS(2745), - [anon_sym___thiscall] = ACTIONS(2745), - [anon_sym___vectorcall] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_static] = ACTIONS(2745), - [anon_sym_register] = ACTIONS(2745), - [anon_sym_inline] = ACTIONS(2745), - [anon_sym_thread_local] = ACTIONS(2745), - [anon_sym_const] = ACTIONS(2745), - [anon_sym_volatile] = ACTIONS(2745), - [anon_sym_restrict] = ACTIONS(2745), - [anon_sym__Atomic] = ACTIONS(2745), - [anon_sym_mutable] = ACTIONS(2745), - [anon_sym_constexpr] = ACTIONS(2745), - [anon_sym_constinit] = ACTIONS(2745), - [anon_sym_consteval] = ACTIONS(2745), - [anon_sym_signed] = ACTIONS(2745), - [anon_sym_unsigned] = ACTIONS(2745), - [anon_sym_long] = ACTIONS(2745), - [anon_sym_short] = ACTIONS(2745), - [sym_primitive_type] = ACTIONS(2745), - [anon_sym_enum] = ACTIONS(2745), - [anon_sym_class] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2745), - [anon_sym_union] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_switch] = ACTIONS(2745), - [anon_sym_case] = ACTIONS(2745), - [anon_sym_default] = ACTIONS(2745), - [anon_sym_while] = ACTIONS(2745), - [anon_sym_do] = ACTIONS(2745), - [anon_sym_for] = ACTIONS(2745), - [anon_sym_return] = ACTIONS(2745), - [anon_sym_break] = ACTIONS(2745), - [anon_sym_continue] = ACTIONS(2745), - [anon_sym_goto] = ACTIONS(2745), - [anon_sym_not] = ACTIONS(2745), - [anon_sym_compl] = ACTIONS(2745), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_sizeof] = ACTIONS(2745), - [sym_number_literal] = ACTIONS(2747), - [anon_sym_L_SQUOTE] = ACTIONS(2747), - [anon_sym_u_SQUOTE] = ACTIONS(2747), - [anon_sym_U_SQUOTE] = ACTIONS(2747), - [anon_sym_u8_SQUOTE] = ACTIONS(2747), - [anon_sym_SQUOTE] = ACTIONS(2747), - [anon_sym_L_DQUOTE] = ACTIONS(2747), - [anon_sym_u_DQUOTE] = ACTIONS(2747), - [anon_sym_U_DQUOTE] = ACTIONS(2747), - [anon_sym_u8_DQUOTE] = ACTIONS(2747), - [anon_sym_DQUOTE] = ACTIONS(2747), - [sym_true] = ACTIONS(2745), - [sym_false] = ACTIONS(2745), - [sym_null] = ACTIONS(2745), + [911] = { + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_include_token1] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token2] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_BANG] = ACTIONS(2797), + [anon_sym_TILDE] = ACTIONS(2797), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_AMP_AMP] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2797), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym___cdecl] = ACTIONS(2795), + [anon_sym___clrcall] = ACTIONS(2795), + [anon_sym___stdcall] = ACTIONS(2795), + [anon_sym___fastcall] = ACTIONS(2795), + [anon_sym___thiscall] = ACTIONS(2795), + [anon_sym___vectorcall] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym_input] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_switch] = ACTIONS(2795), + [anon_sym_case] = ACTIONS(2795), + [anon_sym_default] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_break] = ACTIONS(2795), + [anon_sym_continue] = ACTIONS(2795), + [anon_sym_goto] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2795), + [anon_sym_compl] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2797), + [anon_sym_PLUS_PLUS] = ACTIONS(2797), + [anon_sym_sizeof] = ACTIONS(2795), + [sym_number_literal] = ACTIONS(2797), + [anon_sym_L_SQUOTE] = ACTIONS(2797), + [anon_sym_u_SQUOTE] = ACTIONS(2797), + [anon_sym_U_SQUOTE] = ACTIONS(2797), + [anon_sym_u8_SQUOTE] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_L_DQUOTE] = ACTIONS(2797), + [anon_sym_u_DQUOTE] = ACTIONS(2797), + [anon_sym_U_DQUOTE] = ACTIONS(2797), + [anon_sym_u8_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE] = ACTIONS(2797), + [sym_true] = ACTIONS(2795), + [sym_false] = ACTIONS(2795), + [sym_null] = ACTIONS(2795), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2745), - [anon_sym_decltype] = ACTIONS(2745), - [anon_sym_virtual] = ACTIONS(2745), - [anon_sym_explicit] = ACTIONS(2745), - [anon_sym_typename] = ACTIONS(2745), - [anon_sym_template] = ACTIONS(2745), - [anon_sym_operator] = ACTIONS(2745), - [anon_sym_try] = ACTIONS(2745), - [anon_sym_delete] = ACTIONS(2745), - [anon_sym_throw] = ACTIONS(2745), - [anon_sym_namespace] = ACTIONS(2745), - [anon_sym_using] = ACTIONS(2745), - [anon_sym_static_assert] = ACTIONS(2745), - [anon_sym_concept] = ACTIONS(2745), - [anon_sym_co_return] = ACTIONS(2745), - [anon_sym_co_yield] = ACTIONS(2745), - [anon_sym_R_DQUOTE] = ACTIONS(2747), - [anon_sym_LR_DQUOTE] = ACTIONS(2747), - [anon_sym_uR_DQUOTE] = ACTIONS(2747), - [anon_sym_UR_DQUOTE] = ACTIONS(2747), - [anon_sym_u8R_DQUOTE] = ACTIONS(2747), - [anon_sym_co_await] = ACTIONS(2745), - [anon_sym_new] = ACTIONS(2745), - [anon_sym_requires] = ACTIONS(2745), - [sym_this] = ACTIONS(2745), - [sym_nullptr] = ACTIONS(2745), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_delete] = ACTIONS(2795), + [anon_sym_throw] = ACTIONS(2795), + [anon_sym_namespace] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), + [anon_sym_concept] = ACTIONS(2795), + [anon_sym_co_return] = ACTIONS(2795), + [anon_sym_co_yield] = ACTIONS(2795), + [anon_sym_R_DQUOTE] = ACTIONS(2797), + [anon_sym_LR_DQUOTE] = ACTIONS(2797), + [anon_sym_uR_DQUOTE] = ACTIONS(2797), + [anon_sym_UR_DQUOTE] = ACTIONS(2797), + [anon_sym_u8R_DQUOTE] = ACTIONS(2797), + [anon_sym_co_await] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_requires] = ACTIONS(2795), + [sym_this] = ACTIONS(2795), + [sym_nullptr] = ACTIONS(2795), + }, + [912] = { + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_include_token1] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_BANG] = ACTIONS(2797), + [anon_sym_TILDE] = ACTIONS(2797), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_AMP_AMP] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2797), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym___cdecl] = ACTIONS(2795), + [anon_sym___clrcall] = ACTIONS(2795), + [anon_sym___stdcall] = ACTIONS(2795), + [anon_sym___fastcall] = ACTIONS(2795), + [anon_sym___thiscall] = ACTIONS(2795), + [anon_sym___vectorcall] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2797), + [anon_sym_RBRACE] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym_input] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_switch] = ACTIONS(2795), + [anon_sym_case] = ACTIONS(2795), + [anon_sym_default] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_break] = ACTIONS(2795), + [anon_sym_continue] = ACTIONS(2795), + [anon_sym_goto] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2795), + [anon_sym_compl] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2797), + [anon_sym_PLUS_PLUS] = ACTIONS(2797), + [anon_sym_sizeof] = ACTIONS(2795), + [sym_number_literal] = ACTIONS(2797), + [anon_sym_L_SQUOTE] = ACTIONS(2797), + [anon_sym_u_SQUOTE] = ACTIONS(2797), + [anon_sym_U_SQUOTE] = ACTIONS(2797), + [anon_sym_u8_SQUOTE] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_L_DQUOTE] = ACTIONS(2797), + [anon_sym_u_DQUOTE] = ACTIONS(2797), + [anon_sym_U_DQUOTE] = ACTIONS(2797), + [anon_sym_u8_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE] = ACTIONS(2797), + [sym_true] = ACTIONS(2795), + [sym_false] = ACTIONS(2795), + [sym_null] = ACTIONS(2795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_delete] = ACTIONS(2795), + [anon_sym_throw] = ACTIONS(2795), + [anon_sym_namespace] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), + [anon_sym_concept] = ACTIONS(2795), + [anon_sym_co_return] = ACTIONS(2795), + [anon_sym_co_yield] = ACTIONS(2795), + [anon_sym_R_DQUOTE] = ACTIONS(2797), + [anon_sym_LR_DQUOTE] = ACTIONS(2797), + [anon_sym_uR_DQUOTE] = ACTIONS(2797), + [anon_sym_UR_DQUOTE] = ACTIONS(2797), + [anon_sym_u8R_DQUOTE] = ACTIONS(2797), + [anon_sym_co_await] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_requires] = ACTIONS(2795), + [sym_this] = ACTIONS(2795), + [sym_nullptr] = ACTIONS(2795), }, [913] = { - [ts_builtin_sym_end] = ACTIONS(2743), - [sym_identifier] = ACTIONS(2741), - [aux_sym_preproc_include_token1] = ACTIONS(2741), - [aux_sym_preproc_def_token1] = ACTIONS(2741), - [aux_sym_preproc_if_token1] = ACTIONS(2741), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2741), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2741), - [sym_preproc_directive] = ACTIONS(2741), - [anon_sym_LPAREN2] = ACTIONS(2743), - [anon_sym_BANG] = ACTIONS(2743), - [anon_sym_TILDE] = ACTIONS(2743), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_AMP_AMP] = ACTIONS(2743), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_SEMI] = ACTIONS(2743), - [anon_sym_typedef] = ACTIONS(2741), - [anon_sym_extern] = ACTIONS(2741), - [anon_sym___attribute__] = ACTIONS(2741), - [anon_sym_COLON_COLON] = ACTIONS(2743), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2743), - [anon_sym___declspec] = ACTIONS(2741), - [anon_sym___based] = ACTIONS(2741), - [anon_sym___cdecl] = ACTIONS(2741), - [anon_sym___clrcall] = ACTIONS(2741), - [anon_sym___stdcall] = ACTIONS(2741), - [anon_sym___fastcall] = ACTIONS(2741), - [anon_sym___thiscall] = ACTIONS(2741), - [anon_sym___vectorcall] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2741), - [anon_sym_static] = ACTIONS(2741), - [anon_sym_register] = ACTIONS(2741), - [anon_sym_inline] = ACTIONS(2741), - [anon_sym_thread_local] = ACTIONS(2741), - [anon_sym_const] = ACTIONS(2741), - [anon_sym_volatile] = ACTIONS(2741), - [anon_sym_restrict] = ACTIONS(2741), - [anon_sym__Atomic] = ACTIONS(2741), - [anon_sym_mutable] = ACTIONS(2741), - [anon_sym_constexpr] = ACTIONS(2741), - [anon_sym_constinit] = ACTIONS(2741), - [anon_sym_consteval] = ACTIONS(2741), - [anon_sym_signed] = ACTIONS(2741), - [anon_sym_unsigned] = ACTIONS(2741), - [anon_sym_long] = ACTIONS(2741), - [anon_sym_short] = ACTIONS(2741), - [sym_primitive_type] = ACTIONS(2741), - [anon_sym_enum] = ACTIONS(2741), - [anon_sym_class] = ACTIONS(2741), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_union] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_switch] = ACTIONS(2741), - [anon_sym_case] = ACTIONS(2741), - [anon_sym_default] = ACTIONS(2741), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_return] = ACTIONS(2741), - [anon_sym_break] = ACTIONS(2741), - [anon_sym_continue] = ACTIONS(2741), - [anon_sym_goto] = ACTIONS(2741), - [anon_sym_not] = ACTIONS(2741), - [anon_sym_compl] = ACTIONS(2741), - [anon_sym_DASH_DASH] = ACTIONS(2743), - [anon_sym_PLUS_PLUS] = ACTIONS(2743), - [anon_sym_sizeof] = ACTIONS(2741), - [sym_number_literal] = ACTIONS(2743), - [anon_sym_L_SQUOTE] = ACTIONS(2743), - [anon_sym_u_SQUOTE] = ACTIONS(2743), - [anon_sym_U_SQUOTE] = ACTIONS(2743), - [anon_sym_u8_SQUOTE] = ACTIONS(2743), - [anon_sym_SQUOTE] = ACTIONS(2743), - [anon_sym_L_DQUOTE] = ACTIONS(2743), - [anon_sym_u_DQUOTE] = ACTIONS(2743), - [anon_sym_U_DQUOTE] = ACTIONS(2743), - [anon_sym_u8_DQUOTE] = ACTIONS(2743), - [anon_sym_DQUOTE] = ACTIONS(2743), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_null] = ACTIONS(2741), + [sym_identifier] = ACTIONS(2815), + [aux_sym_preproc_include_token1] = ACTIONS(2815), + [aux_sym_preproc_def_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), + [sym_preproc_directive] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym_typedef] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym___attribute__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), + [anon_sym___declspec] = ACTIONS(2815), + [anon_sym___based] = ACTIONS(2815), + [anon_sym___cdecl] = ACTIONS(2815), + [anon_sym___clrcall] = ACTIONS(2815), + [anon_sym___stdcall] = ACTIONS(2815), + [anon_sym___fastcall] = ACTIONS(2815), + [anon_sym___thiscall] = ACTIONS(2815), + [anon_sym___vectorcall] = ACTIONS(2815), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_RBRACE] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_register] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym_thread_local] = ACTIONS(2815), + [anon_sym_input] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_volatile] = ACTIONS(2815), + [anon_sym_restrict] = ACTIONS(2815), + [anon_sym__Atomic] = ACTIONS(2815), + [anon_sym_mutable] = ACTIONS(2815), + [anon_sym_constexpr] = ACTIONS(2815), + [anon_sym_constinit] = ACTIONS(2815), + [anon_sym_consteval] = ACTIONS(2815), + [anon_sym_signed] = ACTIONS(2815), + [anon_sym_unsigned] = ACTIONS(2815), + [anon_sym_long] = ACTIONS(2815), + [anon_sym_short] = ACTIONS(2815), + [sym_primitive_type] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_switch] = ACTIONS(2815), + [anon_sym_case] = ACTIONS(2815), + [anon_sym_default] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_goto] = ACTIONS(2815), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_compl] = ACTIONS(2815), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_sizeof] = ACTIONS(2815), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2817), + [anon_sym_u_SQUOTE] = ACTIONS(2817), + [anon_sym_U_SQUOTE] = ACTIONS(2817), + [anon_sym_u8_SQUOTE] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [anon_sym_L_DQUOTE] = ACTIONS(2817), + [anon_sym_u_DQUOTE] = ACTIONS(2817), + [anon_sym_U_DQUOTE] = ACTIONS(2817), + [anon_sym_u8_DQUOTE] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_null] = ACTIONS(2815), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2741), - [anon_sym_decltype] = ACTIONS(2741), - [anon_sym_virtual] = ACTIONS(2741), - [anon_sym_explicit] = ACTIONS(2741), - [anon_sym_typename] = ACTIONS(2741), - [anon_sym_template] = ACTIONS(2741), - [anon_sym_operator] = ACTIONS(2741), - [anon_sym_try] = ACTIONS(2741), - [anon_sym_delete] = ACTIONS(2741), - [anon_sym_throw] = ACTIONS(2741), - [anon_sym_namespace] = ACTIONS(2741), - [anon_sym_using] = ACTIONS(2741), - [anon_sym_static_assert] = ACTIONS(2741), - [anon_sym_concept] = ACTIONS(2741), - [anon_sym_co_return] = ACTIONS(2741), - [anon_sym_co_yield] = ACTIONS(2741), - [anon_sym_R_DQUOTE] = ACTIONS(2743), - [anon_sym_LR_DQUOTE] = ACTIONS(2743), - [anon_sym_uR_DQUOTE] = ACTIONS(2743), - [anon_sym_UR_DQUOTE] = ACTIONS(2743), - [anon_sym_u8R_DQUOTE] = ACTIONS(2743), - [anon_sym_co_await] = ACTIONS(2741), - [anon_sym_new] = ACTIONS(2741), - [anon_sym_requires] = ACTIONS(2741), - [sym_this] = ACTIONS(2741), - [sym_nullptr] = ACTIONS(2741), + [sym_auto] = ACTIONS(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_virtual] = ACTIONS(2815), + [anon_sym_explicit] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_template] = ACTIONS(2815), + [anon_sym_operator] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [anon_sym_delete] = ACTIONS(2815), + [anon_sym_throw] = ACTIONS(2815), + [anon_sym_namespace] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_static_assert] = ACTIONS(2815), + [anon_sym_concept] = ACTIONS(2815), + [anon_sym_co_return] = ACTIONS(2815), + [anon_sym_co_yield] = ACTIONS(2815), + [anon_sym_R_DQUOTE] = ACTIONS(2817), + [anon_sym_LR_DQUOTE] = ACTIONS(2817), + [anon_sym_uR_DQUOTE] = ACTIONS(2817), + [anon_sym_UR_DQUOTE] = ACTIONS(2817), + [anon_sym_u8R_DQUOTE] = ACTIONS(2817), + [anon_sym_co_await] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(2815), + [anon_sym_requires] = ACTIONS(2815), + [sym_this] = ACTIONS(2815), + [sym_nullptr] = ACTIONS(2815), }, [914] = { - [ts_builtin_sym_end] = ACTIONS(2767), - [sym_identifier] = ACTIONS(2765), - [aux_sym_preproc_include_token1] = ACTIONS(2765), - [aux_sym_preproc_def_token1] = ACTIONS(2765), - [aux_sym_preproc_if_token1] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), - [sym_preproc_directive] = ACTIONS(2765), - [anon_sym_LPAREN2] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2767), - [anon_sym_AMP_AMP] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2765), - [anon_sym_extern] = ACTIONS(2765), - [anon_sym___attribute__] = ACTIONS(2765), - [anon_sym_COLON_COLON] = ACTIONS(2767), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), - [anon_sym___declspec] = ACTIONS(2765), - [anon_sym___based] = ACTIONS(2765), - [anon_sym___cdecl] = ACTIONS(2765), - [anon_sym___clrcall] = ACTIONS(2765), - [anon_sym___stdcall] = ACTIONS(2765), - [anon_sym___fastcall] = ACTIONS(2765), - [anon_sym___thiscall] = ACTIONS(2765), - [anon_sym___vectorcall] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_register] = ACTIONS(2765), - [anon_sym_inline] = ACTIONS(2765), - [anon_sym_thread_local] = ACTIONS(2765), - [anon_sym_const] = ACTIONS(2765), - [anon_sym_volatile] = ACTIONS(2765), - [anon_sym_restrict] = ACTIONS(2765), - [anon_sym__Atomic] = ACTIONS(2765), - [anon_sym_mutable] = ACTIONS(2765), - [anon_sym_constexpr] = ACTIONS(2765), - [anon_sym_constinit] = ACTIONS(2765), - [anon_sym_consteval] = ACTIONS(2765), - [anon_sym_signed] = ACTIONS(2765), - [anon_sym_unsigned] = ACTIONS(2765), - [anon_sym_long] = ACTIONS(2765), - [anon_sym_short] = ACTIONS(2765), - [sym_primitive_type] = ACTIONS(2765), - [anon_sym_enum] = ACTIONS(2765), - [anon_sym_class] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2765), - [anon_sym_union] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_switch] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_default] = ACTIONS(2765), - [anon_sym_while] = ACTIONS(2765), - [anon_sym_do] = ACTIONS(2765), - [anon_sym_for] = ACTIONS(2765), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2765), - [anon_sym_continue] = ACTIONS(2765), - [anon_sym_goto] = ACTIONS(2765), - [anon_sym_not] = ACTIONS(2765), - [anon_sym_compl] = ACTIONS(2765), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2765), - [sym_number_literal] = ACTIONS(2767), - [anon_sym_L_SQUOTE] = ACTIONS(2767), - [anon_sym_u_SQUOTE] = ACTIONS(2767), - [anon_sym_U_SQUOTE] = ACTIONS(2767), - [anon_sym_u8_SQUOTE] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_L_DQUOTE] = ACTIONS(2767), - [anon_sym_u_DQUOTE] = ACTIONS(2767), - [anon_sym_U_DQUOTE] = ACTIONS(2767), - [anon_sym_u8_DQUOTE] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [sym_true] = ACTIONS(2765), - [sym_false] = ACTIONS(2765), - [sym_null] = ACTIONS(2765), + [sym_identifier] = ACTIONS(2791), + [aux_sym_preproc_include_token1] = ACTIONS(2791), + [aux_sym_preproc_def_token1] = ACTIONS(2791), + [aux_sym_preproc_if_token1] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2791), + [sym_preproc_directive] = ACTIONS(2791), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2791), + [anon_sym_PLUS] = ACTIONS(2791), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2791), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym_typedef] = ACTIONS(2791), + [anon_sym_extern] = ACTIONS(2791), + [anon_sym___attribute__] = ACTIONS(2791), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2791), + [anon_sym___based] = ACTIONS(2791), + [anon_sym___cdecl] = ACTIONS(2791), + [anon_sym___clrcall] = ACTIONS(2791), + [anon_sym___stdcall] = ACTIONS(2791), + [anon_sym___fastcall] = ACTIONS(2791), + [anon_sym___thiscall] = ACTIONS(2791), + [anon_sym___vectorcall] = ACTIONS(2791), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_RBRACE] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_static] = ACTIONS(2791), + [anon_sym_register] = ACTIONS(2791), + [anon_sym_inline] = ACTIONS(2791), + [anon_sym_thread_local] = ACTIONS(2791), + [anon_sym_input] = ACTIONS(2791), + [anon_sym_const] = ACTIONS(2791), + [anon_sym_volatile] = ACTIONS(2791), + [anon_sym_restrict] = ACTIONS(2791), + [anon_sym__Atomic] = ACTIONS(2791), + [anon_sym_mutable] = ACTIONS(2791), + [anon_sym_constexpr] = ACTIONS(2791), + [anon_sym_constinit] = ACTIONS(2791), + [anon_sym_consteval] = ACTIONS(2791), + [anon_sym_signed] = ACTIONS(2791), + [anon_sym_unsigned] = ACTIONS(2791), + [anon_sym_long] = ACTIONS(2791), + [anon_sym_short] = ACTIONS(2791), + [sym_primitive_type] = ACTIONS(2791), + [anon_sym_enum] = ACTIONS(2791), + [anon_sym_class] = ACTIONS(2791), + [anon_sym_struct] = ACTIONS(2791), + [anon_sym_union] = ACTIONS(2791), + [anon_sym_if] = ACTIONS(2791), + [anon_sym_switch] = ACTIONS(2791), + [anon_sym_case] = ACTIONS(2791), + [anon_sym_default] = ACTIONS(2791), + [anon_sym_while] = ACTIONS(2791), + [anon_sym_do] = ACTIONS(2791), + [anon_sym_for] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2791), + [anon_sym_break] = ACTIONS(2791), + [anon_sym_continue] = ACTIONS(2791), + [anon_sym_goto] = ACTIONS(2791), + [anon_sym_not] = ACTIONS(2791), + [anon_sym_compl] = ACTIONS(2791), + [anon_sym_DASH_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2793), + [anon_sym_sizeof] = ACTIONS(2791), + [sym_number_literal] = ACTIONS(2793), + [anon_sym_L_SQUOTE] = ACTIONS(2793), + [anon_sym_u_SQUOTE] = ACTIONS(2793), + [anon_sym_U_SQUOTE] = ACTIONS(2793), + [anon_sym_u8_SQUOTE] = ACTIONS(2793), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_L_DQUOTE] = ACTIONS(2793), + [anon_sym_u_DQUOTE] = ACTIONS(2793), + [anon_sym_U_DQUOTE] = ACTIONS(2793), + [anon_sym_u8_DQUOTE] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [sym_true] = ACTIONS(2791), + [sym_false] = ACTIONS(2791), + [sym_null] = ACTIONS(2791), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2765), - [anon_sym_decltype] = ACTIONS(2765), - [anon_sym_virtual] = ACTIONS(2765), - [anon_sym_explicit] = ACTIONS(2765), - [anon_sym_typename] = ACTIONS(2765), - [anon_sym_template] = ACTIONS(2765), - [anon_sym_operator] = ACTIONS(2765), - [anon_sym_try] = ACTIONS(2765), - [anon_sym_delete] = ACTIONS(2765), - [anon_sym_throw] = ACTIONS(2765), - [anon_sym_namespace] = ACTIONS(2765), - [anon_sym_using] = ACTIONS(2765), - [anon_sym_static_assert] = ACTIONS(2765), - [anon_sym_concept] = ACTIONS(2765), - [anon_sym_co_return] = ACTIONS(2765), - [anon_sym_co_yield] = ACTIONS(2765), - [anon_sym_R_DQUOTE] = ACTIONS(2767), - [anon_sym_LR_DQUOTE] = ACTIONS(2767), - [anon_sym_uR_DQUOTE] = ACTIONS(2767), - [anon_sym_UR_DQUOTE] = ACTIONS(2767), - [anon_sym_u8R_DQUOTE] = ACTIONS(2767), - [anon_sym_co_await] = ACTIONS(2765), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_requires] = ACTIONS(2765), - [sym_this] = ACTIONS(2765), - [sym_nullptr] = ACTIONS(2765), + [sym_auto] = ACTIONS(2791), + [anon_sym_decltype] = ACTIONS(2791), + [anon_sym_virtual] = ACTIONS(2791), + [anon_sym_explicit] = ACTIONS(2791), + [anon_sym_typename] = ACTIONS(2791), + [anon_sym_template] = ACTIONS(2791), + [anon_sym_operator] = ACTIONS(2791), + [anon_sym_try] = ACTIONS(2791), + [anon_sym_delete] = ACTIONS(2791), + [anon_sym_throw] = ACTIONS(2791), + [anon_sym_namespace] = ACTIONS(2791), + [anon_sym_using] = ACTIONS(2791), + [anon_sym_static_assert] = ACTIONS(2791), + [anon_sym_concept] = ACTIONS(2791), + [anon_sym_co_return] = ACTIONS(2791), + [anon_sym_co_yield] = ACTIONS(2791), + [anon_sym_R_DQUOTE] = ACTIONS(2793), + [anon_sym_LR_DQUOTE] = ACTIONS(2793), + [anon_sym_uR_DQUOTE] = ACTIONS(2793), + [anon_sym_UR_DQUOTE] = ACTIONS(2793), + [anon_sym_u8R_DQUOTE] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2791), + [anon_sym_new] = ACTIONS(2791), + [anon_sym_requires] = ACTIONS(2791), + [sym_this] = ACTIONS(2791), + [sym_nullptr] = ACTIONS(2791), }, [915] = { - [sym_identifier] = ACTIONS(2841), - [aux_sym_preproc_include_token1] = ACTIONS(2841), - [aux_sym_preproc_def_token1] = ACTIONS(2841), - [aux_sym_preproc_if_token1] = ACTIONS(2841), - [aux_sym_preproc_if_token2] = ACTIONS(2841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2841), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2841), - [sym_preproc_directive] = ACTIONS(2841), - [anon_sym_LPAREN2] = ACTIONS(2843), - [anon_sym_BANG] = ACTIONS(2843), - [anon_sym_TILDE] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_STAR] = ACTIONS(2843), - [anon_sym_AMP_AMP] = ACTIONS(2843), - [anon_sym_AMP] = ACTIONS(2841), - [anon_sym_SEMI] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2841), - [anon_sym_extern] = ACTIONS(2841), - [anon_sym___attribute__] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(2843), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2843), - [anon_sym___declspec] = ACTIONS(2841), - [anon_sym___based] = ACTIONS(2841), - [anon_sym___cdecl] = ACTIONS(2841), - [anon_sym___clrcall] = ACTIONS(2841), - [anon_sym___stdcall] = ACTIONS(2841), - [anon_sym___fastcall] = ACTIONS(2841), - [anon_sym___thiscall] = ACTIONS(2841), - [anon_sym___vectorcall] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_static] = ACTIONS(2841), - [anon_sym_register] = ACTIONS(2841), - [anon_sym_inline] = ACTIONS(2841), - [anon_sym_thread_local] = ACTIONS(2841), - [anon_sym_const] = ACTIONS(2841), - [anon_sym_volatile] = ACTIONS(2841), - [anon_sym_restrict] = ACTIONS(2841), - [anon_sym__Atomic] = ACTIONS(2841), - [anon_sym_mutable] = ACTIONS(2841), - [anon_sym_constexpr] = ACTIONS(2841), - [anon_sym_constinit] = ACTIONS(2841), - [anon_sym_consteval] = ACTIONS(2841), - [anon_sym_signed] = ACTIONS(2841), - [anon_sym_unsigned] = ACTIONS(2841), - [anon_sym_long] = ACTIONS(2841), - [anon_sym_short] = ACTIONS(2841), - [sym_primitive_type] = ACTIONS(2841), - [anon_sym_enum] = ACTIONS(2841), - [anon_sym_class] = ACTIONS(2841), - [anon_sym_struct] = ACTIONS(2841), - [anon_sym_union] = ACTIONS(2841), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_switch] = ACTIONS(2841), - [anon_sym_case] = ACTIONS(2841), - [anon_sym_default] = ACTIONS(2841), - [anon_sym_while] = ACTIONS(2841), - [anon_sym_do] = ACTIONS(2841), - [anon_sym_for] = ACTIONS(2841), - [anon_sym_return] = ACTIONS(2841), - [anon_sym_break] = ACTIONS(2841), - [anon_sym_continue] = ACTIONS(2841), - [anon_sym_goto] = ACTIONS(2841), - [anon_sym_not] = ACTIONS(2841), - [anon_sym_compl] = ACTIONS(2841), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_PLUS_PLUS] = ACTIONS(2843), - [anon_sym_sizeof] = ACTIONS(2841), - [sym_number_literal] = ACTIONS(2843), - [anon_sym_L_SQUOTE] = ACTIONS(2843), - [anon_sym_u_SQUOTE] = ACTIONS(2843), - [anon_sym_U_SQUOTE] = ACTIONS(2843), - [anon_sym_u8_SQUOTE] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_L_DQUOTE] = ACTIONS(2843), - [anon_sym_u_DQUOTE] = ACTIONS(2843), - [anon_sym_U_DQUOTE] = ACTIONS(2843), - [anon_sym_u8_DQUOTE] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym_true] = ACTIONS(2841), - [sym_false] = ACTIONS(2841), - [sym_null] = ACTIONS(2841), + [sym_identifier] = ACTIONS(2653), + [aux_sym_preproc_include_token1] = ACTIONS(2653), + [aux_sym_preproc_def_token1] = ACTIONS(2653), + [aux_sym_preproc_if_token1] = ACTIONS(2653), + [aux_sym_preproc_if_token2] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2653), + [sym_preproc_directive] = ACTIONS(2653), + [anon_sym_LPAREN2] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_TILDE] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_AMP_AMP] = ACTIONS(2655), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_typedef] = ACTIONS(2653), + [anon_sym_extern] = ACTIONS(2653), + [anon_sym___attribute__] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2655), + [anon_sym___declspec] = ACTIONS(2653), + [anon_sym___based] = ACTIONS(2653), + [anon_sym___cdecl] = ACTIONS(2653), + [anon_sym___clrcall] = ACTIONS(2653), + [anon_sym___stdcall] = ACTIONS(2653), + [anon_sym___fastcall] = ACTIONS(2653), + [anon_sym___thiscall] = ACTIONS(2653), + [anon_sym___vectorcall] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_static] = ACTIONS(2653), + [anon_sym_register] = ACTIONS(2653), + [anon_sym_inline] = ACTIONS(2653), + [anon_sym_thread_local] = ACTIONS(2653), + [anon_sym_input] = ACTIONS(2653), + [anon_sym_const] = ACTIONS(2653), + [anon_sym_volatile] = ACTIONS(2653), + [anon_sym_restrict] = ACTIONS(2653), + [anon_sym__Atomic] = ACTIONS(2653), + [anon_sym_mutable] = ACTIONS(2653), + [anon_sym_constexpr] = ACTIONS(2653), + [anon_sym_constinit] = ACTIONS(2653), + [anon_sym_consteval] = ACTIONS(2653), + [anon_sym_signed] = ACTIONS(2653), + [anon_sym_unsigned] = ACTIONS(2653), + [anon_sym_long] = ACTIONS(2653), + [anon_sym_short] = ACTIONS(2653), + [sym_primitive_type] = ACTIONS(2653), + [anon_sym_enum] = ACTIONS(2653), + [anon_sym_class] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_switch] = ACTIONS(2653), + [anon_sym_case] = ACTIONS(2653), + [anon_sym_default] = ACTIONS(2653), + [anon_sym_while] = ACTIONS(2653), + [anon_sym_do] = ACTIONS(2653), + [anon_sym_for] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_break] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2653), + [anon_sym_goto] = ACTIONS(2653), + [anon_sym_not] = ACTIONS(2653), + [anon_sym_compl] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_PLUS_PLUS] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2653), + [sym_number_literal] = ACTIONS(2655), + [anon_sym_L_SQUOTE] = ACTIONS(2655), + [anon_sym_u_SQUOTE] = ACTIONS(2655), + [anon_sym_U_SQUOTE] = ACTIONS(2655), + [anon_sym_u8_SQUOTE] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_L_DQUOTE] = ACTIONS(2655), + [anon_sym_u_DQUOTE] = ACTIONS(2655), + [anon_sym_U_DQUOTE] = ACTIONS(2655), + [anon_sym_u8_DQUOTE] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym_true] = ACTIONS(2653), + [sym_false] = ACTIONS(2653), + [sym_null] = ACTIONS(2653), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2841), - [anon_sym_decltype] = ACTIONS(2841), - [anon_sym_virtual] = ACTIONS(2841), - [anon_sym_explicit] = ACTIONS(2841), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2841), - [anon_sym_operator] = ACTIONS(2841), - [anon_sym_try] = ACTIONS(2841), - [anon_sym_delete] = ACTIONS(2841), - [anon_sym_throw] = ACTIONS(2841), - [anon_sym_namespace] = ACTIONS(2841), - [anon_sym_using] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2841), - [anon_sym_concept] = ACTIONS(2841), - [anon_sym_co_return] = ACTIONS(2841), - [anon_sym_co_yield] = ACTIONS(2841), - [anon_sym_R_DQUOTE] = ACTIONS(2843), - [anon_sym_LR_DQUOTE] = ACTIONS(2843), - [anon_sym_uR_DQUOTE] = ACTIONS(2843), - [anon_sym_UR_DQUOTE] = ACTIONS(2843), - [anon_sym_u8R_DQUOTE] = ACTIONS(2843), - [anon_sym_co_await] = ACTIONS(2841), - [anon_sym_new] = ACTIONS(2841), - [anon_sym_requires] = ACTIONS(2841), - [sym_this] = ACTIONS(2841), - [sym_nullptr] = ACTIONS(2841), + [sym_auto] = ACTIONS(2653), + [anon_sym_decltype] = ACTIONS(2653), + [anon_sym_virtual] = ACTIONS(2653), + [anon_sym_explicit] = ACTIONS(2653), + [anon_sym_typename] = ACTIONS(2653), + [anon_sym_template] = ACTIONS(2653), + [anon_sym_operator] = ACTIONS(2653), + [anon_sym_try] = ACTIONS(2653), + [anon_sym_delete] = ACTIONS(2653), + [anon_sym_throw] = ACTIONS(2653), + [anon_sym_namespace] = ACTIONS(2653), + [anon_sym_using] = ACTIONS(2653), + [anon_sym_static_assert] = ACTIONS(2653), + [anon_sym_concept] = ACTIONS(2653), + [anon_sym_co_return] = ACTIONS(2653), + [anon_sym_co_yield] = ACTIONS(2653), + [anon_sym_R_DQUOTE] = ACTIONS(2655), + [anon_sym_LR_DQUOTE] = ACTIONS(2655), + [anon_sym_uR_DQUOTE] = ACTIONS(2655), + [anon_sym_UR_DQUOTE] = ACTIONS(2655), + [anon_sym_u8R_DQUOTE] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2653), + [anon_sym_new] = ACTIONS(2653), + [anon_sym_requires] = ACTIONS(2653), + [sym_this] = ACTIONS(2653), + [sym_nullptr] = ACTIONS(2653), }, [916] = { - [ts_builtin_sym_end] = ACTIONS(2679), - [sym_identifier] = ACTIONS(2677), - [aux_sym_preproc_include_token1] = ACTIONS(2677), - [aux_sym_preproc_def_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), - [sym_preproc_directive] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2677), - [anon_sym_extern] = ACTIONS(2677), - [anon_sym___attribute__] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), - [anon_sym___declspec] = ACTIONS(2677), - [anon_sym___based] = ACTIONS(2677), - [anon_sym___cdecl] = ACTIONS(2677), - [anon_sym___clrcall] = ACTIONS(2677), - [anon_sym___stdcall] = ACTIONS(2677), - [anon_sym___fastcall] = ACTIONS(2677), - [anon_sym___thiscall] = ACTIONS(2677), - [anon_sym___vectorcall] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_register] = ACTIONS(2677), - [anon_sym_inline] = ACTIONS(2677), - [anon_sym_thread_local] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_volatile] = ACTIONS(2677), - [anon_sym_restrict] = ACTIONS(2677), - [anon_sym__Atomic] = ACTIONS(2677), - [anon_sym_mutable] = ACTIONS(2677), - [anon_sym_constexpr] = ACTIONS(2677), - [anon_sym_constinit] = ACTIONS(2677), - [anon_sym_consteval] = ACTIONS(2677), - [anon_sym_signed] = ACTIONS(2677), - [anon_sym_unsigned] = ACTIONS(2677), - [anon_sym_long] = ACTIONS(2677), - [anon_sym_short] = ACTIONS(2677), - [sym_primitive_type] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2677), - [anon_sym_default] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_goto] = ACTIONS(2677), - [anon_sym_not] = ACTIONS(2677), - [anon_sym_compl] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_sizeof] = ACTIONS(2677), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_L_SQUOTE] = ACTIONS(2679), - [anon_sym_u_SQUOTE] = ACTIONS(2679), - [anon_sym_U_SQUOTE] = ACTIONS(2679), - [anon_sym_u8_SQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_L_DQUOTE] = ACTIONS(2679), - [anon_sym_u_DQUOTE] = ACTIONS(2679), - [anon_sym_U_DQUOTE] = ACTIONS(2679), - [anon_sym_u8_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_null] = ACTIONS(2677), + [ts_builtin_sym_end] = ACTIONS(2769), + [sym_identifier] = ACTIONS(2767), + [aux_sym_preproc_include_token1] = ACTIONS(2767), + [aux_sym_preproc_def_token1] = ACTIONS(2767), + [aux_sym_preproc_if_token1] = ACTIONS(2767), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), + [sym_preproc_directive] = ACTIONS(2767), + [anon_sym_LPAREN2] = ACTIONS(2769), + [anon_sym_BANG] = ACTIONS(2769), + [anon_sym_TILDE] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_AMP_AMP] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_SEMI] = ACTIONS(2769), + [anon_sym_typedef] = ACTIONS(2767), + [anon_sym_extern] = ACTIONS(2767), + [anon_sym___attribute__] = ACTIONS(2767), + [anon_sym_COLON_COLON] = ACTIONS(2769), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), + [anon_sym___declspec] = ACTIONS(2767), + [anon_sym___based] = ACTIONS(2767), + [anon_sym___cdecl] = ACTIONS(2767), + [anon_sym___clrcall] = ACTIONS(2767), + [anon_sym___stdcall] = ACTIONS(2767), + [anon_sym___fastcall] = ACTIONS(2767), + [anon_sym___thiscall] = ACTIONS(2767), + [anon_sym___vectorcall] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_static] = ACTIONS(2767), + [anon_sym_register] = ACTIONS(2767), + [anon_sym_inline] = ACTIONS(2767), + [anon_sym_thread_local] = ACTIONS(2767), + [anon_sym_input] = ACTIONS(2767), + [anon_sym_const] = ACTIONS(2767), + [anon_sym_volatile] = ACTIONS(2767), + [anon_sym_restrict] = ACTIONS(2767), + [anon_sym__Atomic] = ACTIONS(2767), + [anon_sym_mutable] = ACTIONS(2767), + [anon_sym_constexpr] = ACTIONS(2767), + [anon_sym_constinit] = ACTIONS(2767), + [anon_sym_consteval] = ACTIONS(2767), + [anon_sym_signed] = ACTIONS(2767), + [anon_sym_unsigned] = ACTIONS(2767), + [anon_sym_long] = ACTIONS(2767), + [anon_sym_short] = ACTIONS(2767), + [sym_primitive_type] = ACTIONS(2767), + [anon_sym_enum] = ACTIONS(2767), + [anon_sym_class] = ACTIONS(2767), + [anon_sym_struct] = ACTIONS(2767), + [anon_sym_union] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2767), + [anon_sym_switch] = ACTIONS(2767), + [anon_sym_case] = ACTIONS(2767), + [anon_sym_default] = ACTIONS(2767), + [anon_sym_while] = ACTIONS(2767), + [anon_sym_do] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2767), + [anon_sym_return] = ACTIONS(2767), + [anon_sym_break] = ACTIONS(2767), + [anon_sym_continue] = ACTIONS(2767), + [anon_sym_goto] = ACTIONS(2767), + [anon_sym_not] = ACTIONS(2767), + [anon_sym_compl] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2769), + [anon_sym_PLUS_PLUS] = ACTIONS(2769), + [anon_sym_sizeof] = ACTIONS(2767), + [sym_number_literal] = ACTIONS(2769), + [anon_sym_L_SQUOTE] = ACTIONS(2769), + [anon_sym_u_SQUOTE] = ACTIONS(2769), + [anon_sym_U_SQUOTE] = ACTIONS(2769), + [anon_sym_u8_SQUOTE] = ACTIONS(2769), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_L_DQUOTE] = ACTIONS(2769), + [anon_sym_u_DQUOTE] = ACTIONS(2769), + [anon_sym_U_DQUOTE] = ACTIONS(2769), + [anon_sym_u8_DQUOTE] = ACTIONS(2769), + [anon_sym_DQUOTE] = ACTIONS(2769), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_null] = ACTIONS(2767), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2677), - [anon_sym_decltype] = ACTIONS(2677), - [anon_sym_virtual] = ACTIONS(2677), - [anon_sym_explicit] = ACTIONS(2677), - [anon_sym_typename] = ACTIONS(2677), - [anon_sym_template] = ACTIONS(2677), - [anon_sym_operator] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_using] = ACTIONS(2677), - [anon_sym_static_assert] = ACTIONS(2677), - [anon_sym_concept] = ACTIONS(2677), - [anon_sym_co_return] = ACTIONS(2677), - [anon_sym_co_yield] = ACTIONS(2677), - [anon_sym_R_DQUOTE] = ACTIONS(2679), - [anon_sym_LR_DQUOTE] = ACTIONS(2679), - [anon_sym_uR_DQUOTE] = ACTIONS(2679), - [anon_sym_UR_DQUOTE] = ACTIONS(2679), - [anon_sym_u8R_DQUOTE] = ACTIONS(2679), - [anon_sym_co_await] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_requires] = ACTIONS(2677), - [sym_this] = ACTIONS(2677), - [sym_nullptr] = ACTIONS(2677), + [sym_auto] = ACTIONS(2767), + [anon_sym_decltype] = ACTIONS(2767), + [anon_sym_virtual] = ACTIONS(2767), + [anon_sym_explicit] = ACTIONS(2767), + [anon_sym_typename] = ACTIONS(2767), + [anon_sym_template] = ACTIONS(2767), + [anon_sym_operator] = ACTIONS(2767), + [anon_sym_try] = ACTIONS(2767), + [anon_sym_delete] = ACTIONS(2767), + [anon_sym_throw] = ACTIONS(2767), + [anon_sym_namespace] = ACTIONS(2767), + [anon_sym_using] = ACTIONS(2767), + [anon_sym_static_assert] = ACTIONS(2767), + [anon_sym_concept] = ACTIONS(2767), + [anon_sym_co_return] = ACTIONS(2767), + [anon_sym_co_yield] = ACTIONS(2767), + [anon_sym_R_DQUOTE] = ACTIONS(2769), + [anon_sym_LR_DQUOTE] = ACTIONS(2769), + [anon_sym_uR_DQUOTE] = ACTIONS(2769), + [anon_sym_UR_DQUOTE] = ACTIONS(2769), + [anon_sym_u8R_DQUOTE] = ACTIONS(2769), + [anon_sym_co_await] = ACTIONS(2767), + [anon_sym_new] = ACTIONS(2767), + [anon_sym_requires] = ACTIONS(2767), + [sym_this] = ACTIONS(2767), + [sym_nullptr] = ACTIONS(2767), }, [917] = { - [ts_builtin_sym_end] = ACTIONS(2675), - [sym_identifier] = ACTIONS(2673), - [aux_sym_preproc_include_token1] = ACTIONS(2673), - [aux_sym_preproc_def_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), - [sym_preproc_directive] = ACTIONS(2673), - [anon_sym_LPAREN2] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_AMP_AMP] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_typedef] = ACTIONS(2673), - [anon_sym_extern] = ACTIONS(2673), - [anon_sym___attribute__] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), - [anon_sym___declspec] = ACTIONS(2673), - [anon_sym___based] = ACTIONS(2673), - [anon_sym___cdecl] = ACTIONS(2673), - [anon_sym___clrcall] = ACTIONS(2673), - [anon_sym___stdcall] = ACTIONS(2673), - [anon_sym___fastcall] = ACTIONS(2673), - [anon_sym___thiscall] = ACTIONS(2673), - [anon_sym___vectorcall] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_register] = ACTIONS(2673), - [anon_sym_inline] = ACTIONS(2673), - [anon_sym_thread_local] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_volatile] = ACTIONS(2673), - [anon_sym_restrict] = ACTIONS(2673), - [anon_sym__Atomic] = ACTIONS(2673), - [anon_sym_mutable] = ACTIONS(2673), - [anon_sym_constexpr] = ACTIONS(2673), - [anon_sym_constinit] = ACTIONS(2673), - [anon_sym_consteval] = ACTIONS(2673), - [anon_sym_signed] = ACTIONS(2673), - [anon_sym_unsigned] = ACTIONS(2673), - [anon_sym_long] = ACTIONS(2673), - [anon_sym_short] = ACTIONS(2673), - [sym_primitive_type] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_union] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_goto] = ACTIONS(2673), - [anon_sym_not] = ACTIONS(2673), - [anon_sym_compl] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_sizeof] = ACTIONS(2673), - [sym_number_literal] = ACTIONS(2675), - [anon_sym_L_SQUOTE] = ACTIONS(2675), - [anon_sym_u_SQUOTE] = ACTIONS(2675), - [anon_sym_U_SQUOTE] = ACTIONS(2675), - [anon_sym_u8_SQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_L_DQUOTE] = ACTIONS(2675), - [anon_sym_u_DQUOTE] = ACTIONS(2675), - [anon_sym_U_DQUOTE] = ACTIONS(2675), - [anon_sym_u8_DQUOTE] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), + [sym_identifier] = ACTIONS(2657), + [aux_sym_preproc_include_token1] = ACTIONS(2657), + [aux_sym_preproc_def_token1] = ACTIONS(2657), + [aux_sym_preproc_if_token1] = ACTIONS(2657), + [aux_sym_preproc_if_token2] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2657), + [sym_preproc_directive] = ACTIONS(2657), + [anon_sym_LPAREN2] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2659), + [anon_sym_typedef] = ACTIONS(2657), + [anon_sym_extern] = ACTIONS(2657), + [anon_sym___attribute__] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2659), + [anon_sym___declspec] = ACTIONS(2657), + [anon_sym___based] = ACTIONS(2657), + [anon_sym___cdecl] = ACTIONS(2657), + [anon_sym___clrcall] = ACTIONS(2657), + [anon_sym___stdcall] = ACTIONS(2657), + [anon_sym___fastcall] = ACTIONS(2657), + [anon_sym___thiscall] = ACTIONS(2657), + [anon_sym___vectorcall] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_register] = ACTIONS(2657), + [anon_sym_inline] = ACTIONS(2657), + [anon_sym_thread_local] = ACTIONS(2657), + [anon_sym_input] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_volatile] = ACTIONS(2657), + [anon_sym_restrict] = ACTIONS(2657), + [anon_sym__Atomic] = ACTIONS(2657), + [anon_sym_mutable] = ACTIONS(2657), + [anon_sym_constexpr] = ACTIONS(2657), + [anon_sym_constinit] = ACTIONS(2657), + [anon_sym_consteval] = ACTIONS(2657), + [anon_sym_signed] = ACTIONS(2657), + [anon_sym_unsigned] = ACTIONS(2657), + [anon_sym_long] = ACTIONS(2657), + [anon_sym_short] = ACTIONS(2657), + [sym_primitive_type] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_class] = ACTIONS(2657), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_switch] = ACTIONS(2657), + [anon_sym_case] = ACTIONS(2657), + [anon_sym_default] = ACTIONS(2657), + [anon_sym_while] = ACTIONS(2657), + [anon_sym_do] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_goto] = ACTIONS(2657), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_compl] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_sizeof] = ACTIONS(2657), + [sym_number_literal] = ACTIONS(2659), + [anon_sym_L_SQUOTE] = ACTIONS(2659), + [anon_sym_u_SQUOTE] = ACTIONS(2659), + [anon_sym_U_SQUOTE] = ACTIONS(2659), + [anon_sym_u8_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_L_DQUOTE] = ACTIONS(2659), + [anon_sym_u_DQUOTE] = ACTIONS(2659), + [anon_sym_U_DQUOTE] = ACTIONS(2659), + [anon_sym_u8_DQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [sym_true] = ACTIONS(2657), + [sym_false] = ACTIONS(2657), + [sym_null] = ACTIONS(2657), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2673), - [anon_sym_decltype] = ACTIONS(2673), - [anon_sym_virtual] = ACTIONS(2673), - [anon_sym_explicit] = ACTIONS(2673), - [anon_sym_typename] = ACTIONS(2673), - [anon_sym_template] = ACTIONS(2673), - [anon_sym_operator] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_static_assert] = ACTIONS(2673), - [anon_sym_concept] = ACTIONS(2673), - [anon_sym_co_return] = ACTIONS(2673), - [anon_sym_co_yield] = ACTIONS(2673), - [anon_sym_R_DQUOTE] = ACTIONS(2675), - [anon_sym_LR_DQUOTE] = ACTIONS(2675), - [anon_sym_uR_DQUOTE] = ACTIONS(2675), - [anon_sym_UR_DQUOTE] = ACTIONS(2675), - [anon_sym_u8R_DQUOTE] = ACTIONS(2675), - [anon_sym_co_await] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_requires] = ACTIONS(2673), - [sym_this] = ACTIONS(2673), - [sym_nullptr] = ACTIONS(2673), + [sym_auto] = ACTIONS(2657), + [anon_sym_decltype] = ACTIONS(2657), + [anon_sym_virtual] = ACTIONS(2657), + [anon_sym_explicit] = ACTIONS(2657), + [anon_sym_typename] = ACTIONS(2657), + [anon_sym_template] = ACTIONS(2657), + [anon_sym_operator] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2657), + [anon_sym_delete] = ACTIONS(2657), + [anon_sym_throw] = ACTIONS(2657), + [anon_sym_namespace] = ACTIONS(2657), + [anon_sym_using] = ACTIONS(2657), + [anon_sym_static_assert] = ACTIONS(2657), + [anon_sym_concept] = ACTIONS(2657), + [anon_sym_co_return] = ACTIONS(2657), + [anon_sym_co_yield] = ACTIONS(2657), + [anon_sym_R_DQUOTE] = ACTIONS(2659), + [anon_sym_LR_DQUOTE] = ACTIONS(2659), + [anon_sym_uR_DQUOTE] = ACTIONS(2659), + [anon_sym_UR_DQUOTE] = ACTIONS(2659), + [anon_sym_u8R_DQUOTE] = ACTIONS(2659), + [anon_sym_co_await] = ACTIONS(2657), + [anon_sym_new] = ACTIONS(2657), + [anon_sym_requires] = ACTIONS(2657), + [sym_this] = ACTIONS(2657), + [sym_nullptr] = ACTIONS(2657), }, [918] = { - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2669), - [aux_sym_preproc_include_token1] = ACTIONS(2669), - [aux_sym_preproc_def_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), - [sym_preproc_directive] = ACTIONS(2669), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_typedef] = ACTIONS(2669), - [anon_sym_extern] = ACTIONS(2669), - [anon_sym___attribute__] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), - [anon_sym___declspec] = ACTIONS(2669), - [anon_sym___based] = ACTIONS(2669), - [anon_sym___cdecl] = ACTIONS(2669), - [anon_sym___clrcall] = ACTIONS(2669), - [anon_sym___stdcall] = ACTIONS(2669), - [anon_sym___fastcall] = ACTIONS(2669), - [anon_sym___thiscall] = ACTIONS(2669), - [anon_sym___vectorcall] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_register] = ACTIONS(2669), - [anon_sym_inline] = ACTIONS(2669), - [anon_sym_thread_local] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_volatile] = ACTIONS(2669), - [anon_sym_restrict] = ACTIONS(2669), - [anon_sym__Atomic] = ACTIONS(2669), - [anon_sym_mutable] = ACTIONS(2669), - [anon_sym_constexpr] = ACTIONS(2669), - [anon_sym_constinit] = ACTIONS(2669), - [anon_sym_consteval] = ACTIONS(2669), - [anon_sym_signed] = ACTIONS(2669), - [anon_sym_unsigned] = ACTIONS(2669), - [anon_sym_long] = ACTIONS(2669), - [anon_sym_short] = ACTIONS(2669), - [sym_primitive_type] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_default] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym_not] = ACTIONS(2669), - [anon_sym_compl] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_sizeof] = ACTIONS(2669), - [sym_number_literal] = ACTIONS(2671), - [anon_sym_L_SQUOTE] = ACTIONS(2671), - [anon_sym_u_SQUOTE] = ACTIONS(2671), - [anon_sym_U_SQUOTE] = ACTIONS(2671), - [anon_sym_u8_SQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_L_DQUOTE] = ACTIONS(2671), - [anon_sym_u_DQUOTE] = ACTIONS(2671), - [anon_sym_U_DQUOTE] = ACTIONS(2671), - [anon_sym_u8_DQUOTE] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_null] = ACTIONS(2669), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2701), + [aux_sym_preproc_include_token1] = ACTIONS(2701), + [aux_sym_preproc_def_token1] = ACTIONS(2701), + [aux_sym_preproc_if_token1] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2701), + [sym_preproc_directive] = ACTIONS(2701), + [anon_sym_LPAREN2] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym___attribute__] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2703), + [anon_sym___declspec] = ACTIONS(2701), + [anon_sym___based] = ACTIONS(2701), + [anon_sym___cdecl] = ACTIONS(2701), + [anon_sym___clrcall] = ACTIONS(2701), + [anon_sym___stdcall] = ACTIONS(2701), + [anon_sym___fastcall] = ACTIONS(2701), + [anon_sym___thiscall] = ACTIONS(2701), + [anon_sym___vectorcall] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_register] = ACTIONS(2701), + [anon_sym_inline] = ACTIONS(2701), + [anon_sym_thread_local] = ACTIONS(2701), + [anon_sym_input] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_volatile] = ACTIONS(2701), + [anon_sym_restrict] = ACTIONS(2701), + [anon_sym__Atomic] = ACTIONS(2701), + [anon_sym_mutable] = ACTIONS(2701), + [anon_sym_constexpr] = ACTIONS(2701), + [anon_sym_constinit] = ACTIONS(2701), + [anon_sym_consteval] = ACTIONS(2701), + [anon_sym_signed] = ACTIONS(2701), + [anon_sym_unsigned] = ACTIONS(2701), + [anon_sym_long] = ACTIONS(2701), + [anon_sym_short] = ACTIONS(2701), + [sym_primitive_type] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_goto] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(2701), + [anon_sym_compl] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_sizeof] = ACTIONS(2701), + [sym_number_literal] = ACTIONS(2703), + [anon_sym_L_SQUOTE] = ACTIONS(2703), + [anon_sym_u_SQUOTE] = ACTIONS(2703), + [anon_sym_U_SQUOTE] = ACTIONS(2703), + [anon_sym_u8_SQUOTE] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2703), + [anon_sym_L_DQUOTE] = ACTIONS(2703), + [anon_sym_u_DQUOTE] = ACTIONS(2703), + [anon_sym_U_DQUOTE] = ACTIONS(2703), + [anon_sym_u8_DQUOTE] = ACTIONS(2703), + [anon_sym_DQUOTE] = ACTIONS(2703), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_null] = ACTIONS(2701), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2669), - [anon_sym_decltype] = ACTIONS(2669), - [anon_sym_virtual] = ACTIONS(2669), - [anon_sym_explicit] = ACTIONS(2669), - [anon_sym_typename] = ACTIONS(2669), - [anon_sym_template] = ACTIONS(2669), - [anon_sym_operator] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_namespace] = ACTIONS(2669), - [anon_sym_using] = ACTIONS(2669), - [anon_sym_static_assert] = ACTIONS(2669), - [anon_sym_concept] = ACTIONS(2669), - [anon_sym_co_return] = ACTIONS(2669), - [anon_sym_co_yield] = ACTIONS(2669), - [anon_sym_R_DQUOTE] = ACTIONS(2671), - [anon_sym_LR_DQUOTE] = ACTIONS(2671), - [anon_sym_uR_DQUOTE] = ACTIONS(2671), - [anon_sym_UR_DQUOTE] = ACTIONS(2671), - [anon_sym_u8R_DQUOTE] = ACTIONS(2671), - [anon_sym_co_await] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_requires] = ACTIONS(2669), - [sym_this] = ACTIONS(2669), - [sym_nullptr] = ACTIONS(2669), + [sym_auto] = ACTIONS(2701), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_virtual] = ACTIONS(2701), + [anon_sym_explicit] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2701), + [anon_sym_template] = ACTIONS(2701), + [anon_sym_operator] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_delete] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_namespace] = ACTIONS(2701), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_static_assert] = ACTIONS(2701), + [anon_sym_concept] = ACTIONS(2701), + [anon_sym_co_return] = ACTIONS(2701), + [anon_sym_co_yield] = ACTIONS(2701), + [anon_sym_R_DQUOTE] = ACTIONS(2703), + [anon_sym_LR_DQUOTE] = ACTIONS(2703), + [anon_sym_uR_DQUOTE] = ACTIONS(2703), + [anon_sym_UR_DQUOTE] = ACTIONS(2703), + [anon_sym_u8R_DQUOTE] = ACTIONS(2703), + [anon_sym_co_await] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_requires] = ACTIONS(2701), + [sym_this] = ACTIONS(2701), + [sym_nullptr] = ACTIONS(2701), }, [919] = { - [ts_builtin_sym_end] = ACTIONS(2771), - [sym_identifier] = ACTIONS(2769), - [aux_sym_preproc_include_token1] = ACTIONS(2769), - [aux_sym_preproc_def_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), - [sym_preproc_directive] = ACTIONS(2769), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym___attribute__] = ACTIONS(2769), - [anon_sym_COLON_COLON] = ACTIONS(2771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), - [anon_sym___declspec] = ACTIONS(2769), - [anon_sym___based] = ACTIONS(2769), - [anon_sym___cdecl] = ACTIONS(2769), - [anon_sym___clrcall] = ACTIONS(2769), - [anon_sym___stdcall] = ACTIONS(2769), - [anon_sym___fastcall] = ACTIONS(2769), - [anon_sym___thiscall] = ACTIONS(2769), - [anon_sym___vectorcall] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym_thread_local] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym_mutable] = ACTIONS(2769), - [anon_sym_constexpr] = ACTIONS(2769), - [anon_sym_constinit] = ACTIONS(2769), - [anon_sym_consteval] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym_not] = ACTIONS(2769), - [anon_sym_compl] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_L_SQUOTE] = ACTIONS(2771), - [anon_sym_u_SQUOTE] = ACTIONS(2771), - [anon_sym_U_SQUOTE] = ACTIONS(2771), - [anon_sym_u8_SQUOTE] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_L_DQUOTE] = ACTIONS(2771), - [anon_sym_u_DQUOTE] = ACTIONS(2771), - [anon_sym_U_DQUOTE] = ACTIONS(2771), - [anon_sym_u8_DQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [sym_null] = ACTIONS(2769), + [sym_identifier] = ACTIONS(2661), + [aux_sym_preproc_include_token1] = ACTIONS(2661), + [aux_sym_preproc_def_token1] = ACTIONS(2661), + [aux_sym_preproc_if_token1] = ACTIONS(2661), + [aux_sym_preproc_if_token2] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2661), + [sym_preproc_directive] = ACTIONS(2661), + [anon_sym_LPAREN2] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_AMP_AMP] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym___attribute__] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2663), + [anon_sym___declspec] = ACTIONS(2661), + [anon_sym___based] = ACTIONS(2661), + [anon_sym___cdecl] = ACTIONS(2661), + [anon_sym___clrcall] = ACTIONS(2661), + [anon_sym___stdcall] = ACTIONS(2661), + [anon_sym___fastcall] = ACTIONS(2661), + [anon_sym___thiscall] = ACTIONS(2661), + [anon_sym___vectorcall] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_register] = ACTIONS(2661), + [anon_sym_inline] = ACTIONS(2661), + [anon_sym_thread_local] = ACTIONS(2661), + [anon_sym_input] = ACTIONS(2661), + [anon_sym_const] = ACTIONS(2661), + [anon_sym_volatile] = ACTIONS(2661), + [anon_sym_restrict] = ACTIONS(2661), + [anon_sym__Atomic] = ACTIONS(2661), + [anon_sym_mutable] = ACTIONS(2661), + [anon_sym_constexpr] = ACTIONS(2661), + [anon_sym_constinit] = ACTIONS(2661), + [anon_sym_consteval] = ACTIONS(2661), + [anon_sym_signed] = ACTIONS(2661), + [anon_sym_unsigned] = ACTIONS(2661), + [anon_sym_long] = ACTIONS(2661), + [anon_sym_short] = ACTIONS(2661), + [sym_primitive_type] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_class] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(2661), + [anon_sym_union] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_switch] = ACTIONS(2661), + [anon_sym_case] = ACTIONS(2661), + [anon_sym_default] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2661), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_goto] = ACTIONS(2661), + [anon_sym_not] = ACTIONS(2661), + [anon_sym_compl] = ACTIONS(2661), + [anon_sym_DASH_DASH] = ACTIONS(2663), + [anon_sym_PLUS_PLUS] = ACTIONS(2663), + [anon_sym_sizeof] = ACTIONS(2661), + [sym_number_literal] = ACTIONS(2663), + [anon_sym_L_SQUOTE] = ACTIONS(2663), + [anon_sym_u_SQUOTE] = ACTIONS(2663), + [anon_sym_U_SQUOTE] = ACTIONS(2663), + [anon_sym_u8_SQUOTE] = ACTIONS(2663), + [anon_sym_SQUOTE] = ACTIONS(2663), + [anon_sym_L_DQUOTE] = ACTIONS(2663), + [anon_sym_u_DQUOTE] = ACTIONS(2663), + [anon_sym_U_DQUOTE] = ACTIONS(2663), + [anon_sym_u8_DQUOTE] = ACTIONS(2663), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym_true] = ACTIONS(2661), + [sym_false] = ACTIONS(2661), + [sym_null] = ACTIONS(2661), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2769), - [anon_sym_decltype] = ACTIONS(2769), - [anon_sym_virtual] = ACTIONS(2769), - [anon_sym_explicit] = ACTIONS(2769), - [anon_sym_typename] = ACTIONS(2769), - [anon_sym_template] = ACTIONS(2769), - [anon_sym_operator] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_delete] = ACTIONS(2769), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_namespace] = ACTIONS(2769), - [anon_sym_using] = ACTIONS(2769), - [anon_sym_static_assert] = ACTIONS(2769), - [anon_sym_concept] = ACTIONS(2769), - [anon_sym_co_return] = ACTIONS(2769), - [anon_sym_co_yield] = ACTIONS(2769), - [anon_sym_R_DQUOTE] = ACTIONS(2771), - [anon_sym_LR_DQUOTE] = ACTIONS(2771), - [anon_sym_uR_DQUOTE] = ACTIONS(2771), - [anon_sym_UR_DQUOTE] = ACTIONS(2771), - [anon_sym_u8R_DQUOTE] = ACTIONS(2771), - [anon_sym_co_await] = ACTIONS(2769), - [anon_sym_new] = ACTIONS(2769), - [anon_sym_requires] = ACTIONS(2769), - [sym_this] = ACTIONS(2769), - [sym_nullptr] = ACTIONS(2769), + [sym_auto] = ACTIONS(2661), + [anon_sym_decltype] = ACTIONS(2661), + [anon_sym_virtual] = ACTIONS(2661), + [anon_sym_explicit] = ACTIONS(2661), + [anon_sym_typename] = ACTIONS(2661), + [anon_sym_template] = ACTIONS(2661), + [anon_sym_operator] = ACTIONS(2661), + [anon_sym_try] = ACTIONS(2661), + [anon_sym_delete] = ACTIONS(2661), + [anon_sym_throw] = ACTIONS(2661), + [anon_sym_namespace] = ACTIONS(2661), + [anon_sym_using] = ACTIONS(2661), + [anon_sym_static_assert] = ACTIONS(2661), + [anon_sym_concept] = ACTIONS(2661), + [anon_sym_co_return] = ACTIONS(2661), + [anon_sym_co_yield] = ACTIONS(2661), + [anon_sym_R_DQUOTE] = ACTIONS(2663), + [anon_sym_LR_DQUOTE] = ACTIONS(2663), + [anon_sym_uR_DQUOTE] = ACTIONS(2663), + [anon_sym_UR_DQUOTE] = ACTIONS(2663), + [anon_sym_u8R_DQUOTE] = ACTIONS(2663), + [anon_sym_co_await] = ACTIONS(2661), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_requires] = ACTIONS(2661), + [sym_this] = ACTIONS(2661), + [sym_nullptr] = ACTIONS(2661), }, [920] = { + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2697), + [aux_sym_preproc_include_token1] = ACTIONS(2697), + [aux_sym_preproc_def_token1] = ACTIONS(2697), + [aux_sym_preproc_if_token1] = ACTIONS(2697), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2697), + [sym_preproc_directive] = ACTIONS(2697), + [anon_sym_LPAREN2] = ACTIONS(2699), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2697), + [anon_sym_extern] = ACTIONS(2697), + [anon_sym___attribute__] = ACTIONS(2697), + [anon_sym_COLON_COLON] = ACTIONS(2699), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2699), + [anon_sym___declspec] = ACTIONS(2697), + [anon_sym___based] = ACTIONS(2697), + [anon_sym___cdecl] = ACTIONS(2697), + [anon_sym___clrcall] = ACTIONS(2697), + [anon_sym___stdcall] = ACTIONS(2697), + [anon_sym___fastcall] = ACTIONS(2697), + [anon_sym___thiscall] = ACTIONS(2697), + [anon_sym___vectorcall] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_register] = ACTIONS(2697), + [anon_sym_inline] = ACTIONS(2697), + [anon_sym_thread_local] = ACTIONS(2697), + [anon_sym_input] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_volatile] = ACTIONS(2697), + [anon_sym_restrict] = ACTIONS(2697), + [anon_sym__Atomic] = ACTIONS(2697), + [anon_sym_mutable] = ACTIONS(2697), + [anon_sym_constexpr] = ACTIONS(2697), + [anon_sym_constinit] = ACTIONS(2697), + [anon_sym_consteval] = ACTIONS(2697), + [anon_sym_signed] = ACTIONS(2697), + [anon_sym_unsigned] = ACTIONS(2697), + [anon_sym_long] = ACTIONS(2697), + [anon_sym_short] = ACTIONS(2697), + [sym_primitive_type] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_class] = ACTIONS(2697), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_union] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_switch] = ACTIONS(2697), + [anon_sym_case] = ACTIONS(2697), + [anon_sym_default] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_goto] = ACTIONS(2697), + [anon_sym_not] = ACTIONS(2697), + [anon_sym_compl] = ACTIONS(2697), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_sizeof] = ACTIONS(2697), + [sym_number_literal] = ACTIONS(2699), + [anon_sym_L_SQUOTE] = ACTIONS(2699), + [anon_sym_u_SQUOTE] = ACTIONS(2699), + [anon_sym_U_SQUOTE] = ACTIONS(2699), + [anon_sym_u8_SQUOTE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2699), + [anon_sym_L_DQUOTE] = ACTIONS(2699), + [anon_sym_u_DQUOTE] = ACTIONS(2699), + [anon_sym_U_DQUOTE] = ACTIONS(2699), + [anon_sym_u8_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2697), + [anon_sym_decltype] = ACTIONS(2697), + [anon_sym_virtual] = ACTIONS(2697), + [anon_sym_explicit] = ACTIONS(2697), + [anon_sym_typename] = ACTIONS(2697), + [anon_sym_template] = ACTIONS(2697), + [anon_sym_operator] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [anon_sym_delete] = ACTIONS(2697), + [anon_sym_throw] = ACTIONS(2697), + [anon_sym_namespace] = ACTIONS(2697), + [anon_sym_using] = ACTIONS(2697), + [anon_sym_static_assert] = ACTIONS(2697), + [anon_sym_concept] = ACTIONS(2697), + [anon_sym_co_return] = ACTIONS(2697), + [anon_sym_co_yield] = ACTIONS(2697), + [anon_sym_R_DQUOTE] = ACTIONS(2699), + [anon_sym_LR_DQUOTE] = ACTIONS(2699), + [anon_sym_uR_DQUOTE] = ACTIONS(2699), + [anon_sym_UR_DQUOTE] = ACTIONS(2699), + [anon_sym_u8R_DQUOTE] = ACTIONS(2699), + [anon_sym_co_await] = ACTIONS(2697), + [anon_sym_new] = ACTIONS(2697), + [anon_sym_requires] = ACTIONS(2697), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + }, + [921] = { + [sym_identifier] = ACTIONS(2787), + [aux_sym_preproc_include_token1] = ACTIONS(2787), + [aux_sym_preproc_def_token1] = ACTIONS(2787), + [aux_sym_preproc_if_token1] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2787), + [sym_preproc_directive] = ACTIONS(2787), + [anon_sym_LPAREN2] = ACTIONS(2789), + [anon_sym_BANG] = ACTIONS(2789), + [anon_sym_TILDE] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2787), + [anon_sym_PLUS] = ACTIONS(2787), + [anon_sym_STAR] = ACTIONS(2789), + [anon_sym_AMP_AMP] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(2787), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym_typedef] = ACTIONS(2787), + [anon_sym_extern] = ACTIONS(2787), + [anon_sym___attribute__] = ACTIONS(2787), + [anon_sym_COLON_COLON] = ACTIONS(2789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2789), + [anon_sym___declspec] = ACTIONS(2787), + [anon_sym___based] = ACTIONS(2787), + [anon_sym___cdecl] = ACTIONS(2787), + [anon_sym___clrcall] = ACTIONS(2787), + [anon_sym___stdcall] = ACTIONS(2787), + [anon_sym___fastcall] = ACTIONS(2787), + [anon_sym___thiscall] = ACTIONS(2787), + [anon_sym___vectorcall] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_RBRACE] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_static] = ACTIONS(2787), + [anon_sym_register] = ACTIONS(2787), + [anon_sym_inline] = ACTIONS(2787), + [anon_sym_thread_local] = ACTIONS(2787), + [anon_sym_input] = ACTIONS(2787), + [anon_sym_const] = ACTIONS(2787), + [anon_sym_volatile] = ACTIONS(2787), + [anon_sym_restrict] = ACTIONS(2787), + [anon_sym__Atomic] = ACTIONS(2787), + [anon_sym_mutable] = ACTIONS(2787), + [anon_sym_constexpr] = ACTIONS(2787), + [anon_sym_constinit] = ACTIONS(2787), + [anon_sym_consteval] = ACTIONS(2787), + [anon_sym_signed] = ACTIONS(2787), + [anon_sym_unsigned] = ACTIONS(2787), + [anon_sym_long] = ACTIONS(2787), + [anon_sym_short] = ACTIONS(2787), + [sym_primitive_type] = ACTIONS(2787), + [anon_sym_enum] = ACTIONS(2787), + [anon_sym_class] = ACTIONS(2787), + [anon_sym_struct] = ACTIONS(2787), + [anon_sym_union] = ACTIONS(2787), + [anon_sym_if] = ACTIONS(2787), + [anon_sym_switch] = ACTIONS(2787), + [anon_sym_case] = ACTIONS(2787), + [anon_sym_default] = ACTIONS(2787), + [anon_sym_while] = ACTIONS(2787), + [anon_sym_do] = ACTIONS(2787), + [anon_sym_for] = ACTIONS(2787), + [anon_sym_return] = ACTIONS(2787), + [anon_sym_break] = ACTIONS(2787), + [anon_sym_continue] = ACTIONS(2787), + [anon_sym_goto] = ACTIONS(2787), + [anon_sym_not] = ACTIONS(2787), + [anon_sym_compl] = ACTIONS(2787), + [anon_sym_DASH_DASH] = ACTIONS(2789), + [anon_sym_PLUS_PLUS] = ACTIONS(2789), + [anon_sym_sizeof] = ACTIONS(2787), + [sym_number_literal] = ACTIONS(2789), + [anon_sym_L_SQUOTE] = ACTIONS(2789), + [anon_sym_u_SQUOTE] = ACTIONS(2789), + [anon_sym_U_SQUOTE] = ACTIONS(2789), + [anon_sym_u8_SQUOTE] = ACTIONS(2789), + [anon_sym_SQUOTE] = ACTIONS(2789), + [anon_sym_L_DQUOTE] = ACTIONS(2789), + [anon_sym_u_DQUOTE] = ACTIONS(2789), + [anon_sym_U_DQUOTE] = ACTIONS(2789), + [anon_sym_u8_DQUOTE] = ACTIONS(2789), + [anon_sym_DQUOTE] = ACTIONS(2789), + [sym_true] = ACTIONS(2787), + [sym_false] = ACTIONS(2787), + [sym_null] = ACTIONS(2787), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2787), + [anon_sym_decltype] = ACTIONS(2787), + [anon_sym_virtual] = ACTIONS(2787), + [anon_sym_explicit] = ACTIONS(2787), + [anon_sym_typename] = ACTIONS(2787), + [anon_sym_template] = ACTIONS(2787), + [anon_sym_operator] = ACTIONS(2787), + [anon_sym_try] = ACTIONS(2787), + [anon_sym_delete] = ACTIONS(2787), + [anon_sym_throw] = ACTIONS(2787), + [anon_sym_namespace] = ACTIONS(2787), + [anon_sym_using] = ACTIONS(2787), + [anon_sym_static_assert] = ACTIONS(2787), + [anon_sym_concept] = ACTIONS(2787), + [anon_sym_co_return] = ACTIONS(2787), + [anon_sym_co_yield] = ACTIONS(2787), + [anon_sym_R_DQUOTE] = ACTIONS(2789), + [anon_sym_LR_DQUOTE] = ACTIONS(2789), + [anon_sym_uR_DQUOTE] = ACTIONS(2789), + [anon_sym_UR_DQUOTE] = ACTIONS(2789), + [anon_sym_u8R_DQUOTE] = ACTIONS(2789), + [anon_sym_co_await] = ACTIONS(2787), + [anon_sym_new] = ACTIONS(2787), + [anon_sym_requires] = ACTIONS(2787), + [sym_this] = ACTIONS(2787), + [sym_nullptr] = ACTIONS(2787), + }, + [922] = { + [sym_identifier] = ACTIONS(2783), + [aux_sym_preproc_include_token1] = ACTIONS(2783), + [aux_sym_preproc_def_token1] = ACTIONS(2783), + [aux_sym_preproc_if_token1] = ACTIONS(2783), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), + [sym_preproc_directive] = ACTIONS(2783), + [anon_sym_LPAREN2] = ACTIONS(2785), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_AMP_AMP] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_SEMI] = ACTIONS(2785), + [anon_sym_typedef] = ACTIONS(2783), + [anon_sym_extern] = ACTIONS(2783), + [anon_sym___attribute__] = ACTIONS(2783), + [anon_sym_COLON_COLON] = ACTIONS(2785), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2785), + [anon_sym___declspec] = ACTIONS(2783), + [anon_sym___based] = ACTIONS(2783), + [anon_sym___cdecl] = ACTIONS(2783), + [anon_sym___clrcall] = ACTIONS(2783), + [anon_sym___stdcall] = ACTIONS(2783), + [anon_sym___fastcall] = ACTIONS(2783), + [anon_sym___thiscall] = ACTIONS(2783), + [anon_sym___vectorcall] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2785), + [anon_sym_RBRACE] = ACTIONS(2785), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_static] = ACTIONS(2783), + [anon_sym_register] = ACTIONS(2783), + [anon_sym_inline] = ACTIONS(2783), + [anon_sym_thread_local] = ACTIONS(2783), + [anon_sym_input] = ACTIONS(2783), + [anon_sym_const] = ACTIONS(2783), + [anon_sym_volatile] = ACTIONS(2783), + [anon_sym_restrict] = ACTIONS(2783), + [anon_sym__Atomic] = ACTIONS(2783), + [anon_sym_mutable] = ACTIONS(2783), + [anon_sym_constexpr] = ACTIONS(2783), + [anon_sym_constinit] = ACTIONS(2783), + [anon_sym_consteval] = ACTIONS(2783), + [anon_sym_signed] = ACTIONS(2783), + [anon_sym_unsigned] = ACTIONS(2783), + [anon_sym_long] = ACTIONS(2783), + [anon_sym_short] = ACTIONS(2783), + [sym_primitive_type] = ACTIONS(2783), + [anon_sym_enum] = ACTIONS(2783), + [anon_sym_class] = ACTIONS(2783), + [anon_sym_struct] = ACTIONS(2783), + [anon_sym_union] = ACTIONS(2783), + [anon_sym_if] = ACTIONS(2783), + [anon_sym_switch] = ACTIONS(2783), + [anon_sym_case] = ACTIONS(2783), + [anon_sym_default] = ACTIONS(2783), + [anon_sym_while] = ACTIONS(2783), + [anon_sym_do] = ACTIONS(2783), + [anon_sym_for] = ACTIONS(2783), + [anon_sym_return] = ACTIONS(2783), + [anon_sym_break] = ACTIONS(2783), + [anon_sym_continue] = ACTIONS(2783), + [anon_sym_goto] = ACTIONS(2783), + [anon_sym_not] = ACTIONS(2783), + [anon_sym_compl] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2785), + [anon_sym_PLUS_PLUS] = ACTIONS(2785), + [anon_sym_sizeof] = ACTIONS(2783), + [sym_number_literal] = ACTIONS(2785), + [anon_sym_L_SQUOTE] = ACTIONS(2785), + [anon_sym_u_SQUOTE] = ACTIONS(2785), + [anon_sym_U_SQUOTE] = ACTIONS(2785), + [anon_sym_u8_SQUOTE] = ACTIONS(2785), + [anon_sym_SQUOTE] = ACTIONS(2785), + [anon_sym_L_DQUOTE] = ACTIONS(2785), + [anon_sym_u_DQUOTE] = ACTIONS(2785), + [anon_sym_U_DQUOTE] = ACTIONS(2785), + [anon_sym_u8_DQUOTE] = ACTIONS(2785), + [anon_sym_DQUOTE] = ACTIONS(2785), + [sym_true] = ACTIONS(2783), + [sym_false] = ACTIONS(2783), + [sym_null] = ACTIONS(2783), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2783), + [anon_sym_decltype] = ACTIONS(2783), + [anon_sym_virtual] = ACTIONS(2783), + [anon_sym_explicit] = ACTIONS(2783), + [anon_sym_typename] = ACTIONS(2783), + [anon_sym_template] = ACTIONS(2783), + [anon_sym_operator] = ACTIONS(2783), + [anon_sym_try] = ACTIONS(2783), + [anon_sym_delete] = ACTIONS(2783), + [anon_sym_throw] = ACTIONS(2783), + [anon_sym_namespace] = ACTIONS(2783), + [anon_sym_using] = ACTIONS(2783), + [anon_sym_static_assert] = ACTIONS(2783), + [anon_sym_concept] = ACTIONS(2783), + [anon_sym_co_return] = ACTIONS(2783), + [anon_sym_co_yield] = ACTIONS(2783), + [anon_sym_R_DQUOTE] = ACTIONS(2785), + [anon_sym_LR_DQUOTE] = ACTIONS(2785), + [anon_sym_uR_DQUOTE] = ACTIONS(2785), + [anon_sym_UR_DQUOTE] = ACTIONS(2785), + [anon_sym_u8R_DQUOTE] = ACTIONS(2785), + [anon_sym_co_await] = ACTIONS(2783), + [anon_sym_new] = ACTIONS(2783), + [anon_sym_requires] = ACTIONS(2783), + [sym_this] = ACTIONS(2783), + [sym_nullptr] = ACTIONS(2783), + }, + [923] = { + [ts_builtin_sym_end] = ACTIONS(2695), + [sym_identifier] = ACTIONS(2693), + [aux_sym_preproc_include_token1] = ACTIONS(2693), + [aux_sym_preproc_def_token1] = ACTIONS(2693), + [aux_sym_preproc_if_token1] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2693), + [sym_preproc_directive] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_typedef] = ACTIONS(2693), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym___attribute__] = ACTIONS(2693), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2695), + [anon_sym___declspec] = ACTIONS(2693), + [anon_sym___based] = ACTIONS(2693), + [anon_sym___cdecl] = ACTIONS(2693), + [anon_sym___clrcall] = ACTIONS(2693), + [anon_sym___stdcall] = ACTIONS(2693), + [anon_sym___fastcall] = ACTIONS(2693), + [anon_sym___thiscall] = ACTIONS(2693), + [anon_sym___vectorcall] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_register] = ACTIONS(2693), + [anon_sym_inline] = ACTIONS(2693), + [anon_sym_thread_local] = ACTIONS(2693), + [anon_sym_input] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_volatile] = ACTIONS(2693), + [anon_sym_restrict] = ACTIONS(2693), + [anon_sym__Atomic] = ACTIONS(2693), + [anon_sym_mutable] = ACTIONS(2693), + [anon_sym_constexpr] = ACTIONS(2693), + [anon_sym_constinit] = ACTIONS(2693), + [anon_sym_consteval] = ACTIONS(2693), + [anon_sym_signed] = ACTIONS(2693), + [anon_sym_unsigned] = ACTIONS(2693), + [anon_sym_long] = ACTIONS(2693), + [anon_sym_short] = ACTIONS(2693), + [sym_primitive_type] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_class] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2693), + [anon_sym_union] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_switch] = ACTIONS(2693), + [anon_sym_case] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_goto] = ACTIONS(2693), + [anon_sym_not] = ACTIONS(2693), + [anon_sym_compl] = ACTIONS(2693), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_sizeof] = ACTIONS(2693), + [sym_number_literal] = ACTIONS(2695), + [anon_sym_L_SQUOTE] = ACTIONS(2695), + [anon_sym_u_SQUOTE] = ACTIONS(2695), + [anon_sym_U_SQUOTE] = ACTIONS(2695), + [anon_sym_u8_SQUOTE] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2693), + [sym_false] = ACTIONS(2693), + [sym_null] = ACTIONS(2693), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2693), + [anon_sym_decltype] = ACTIONS(2693), + [anon_sym_virtual] = ACTIONS(2693), + [anon_sym_explicit] = ACTIONS(2693), + [anon_sym_typename] = ACTIONS(2693), + [anon_sym_template] = ACTIONS(2693), + [anon_sym_operator] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_delete] = ACTIONS(2693), + [anon_sym_throw] = ACTIONS(2693), + [anon_sym_namespace] = ACTIONS(2693), + [anon_sym_using] = ACTIONS(2693), + [anon_sym_static_assert] = ACTIONS(2693), + [anon_sym_concept] = ACTIONS(2693), + [anon_sym_co_return] = ACTIONS(2693), + [anon_sym_co_yield] = ACTIONS(2693), + [anon_sym_R_DQUOTE] = ACTIONS(2695), + [anon_sym_LR_DQUOTE] = ACTIONS(2695), + [anon_sym_uR_DQUOTE] = ACTIONS(2695), + [anon_sym_UR_DQUOTE] = ACTIONS(2695), + [anon_sym_u8R_DQUOTE] = ACTIONS(2695), + [anon_sym_co_await] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_requires] = ACTIONS(2693), + [sym_this] = ACTIONS(2693), + [sym_nullptr] = ACTIONS(2693), + }, + [924] = { + [sym_identifier] = ACTIONS(2637), + [aux_sym_preproc_include_token1] = ACTIONS(2637), + [aux_sym_preproc_def_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token2] = ACTIONS(2637), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), + [sym_preproc_directive] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_typedef] = ACTIONS(2637), + [anon_sym_extern] = ACTIONS(2637), + [anon_sym___attribute__] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2639), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), + [anon_sym___declspec] = ACTIONS(2637), + [anon_sym___based] = ACTIONS(2637), + [anon_sym___cdecl] = ACTIONS(2637), + [anon_sym___clrcall] = ACTIONS(2637), + [anon_sym___stdcall] = ACTIONS(2637), + [anon_sym___fastcall] = ACTIONS(2637), + [anon_sym___thiscall] = ACTIONS(2637), + [anon_sym___vectorcall] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_static] = ACTIONS(2637), + [anon_sym_register] = ACTIONS(2637), + [anon_sym_inline] = ACTIONS(2637), + [anon_sym_thread_local] = ACTIONS(2637), + [anon_sym_input] = ACTIONS(2637), + [anon_sym_const] = ACTIONS(2637), + [anon_sym_volatile] = ACTIONS(2637), + [anon_sym_restrict] = ACTIONS(2637), + [anon_sym__Atomic] = ACTIONS(2637), + [anon_sym_mutable] = ACTIONS(2637), + [anon_sym_constexpr] = ACTIONS(2637), + [anon_sym_constinit] = ACTIONS(2637), + [anon_sym_consteval] = ACTIONS(2637), + [anon_sym_signed] = ACTIONS(2637), + [anon_sym_unsigned] = ACTIONS(2637), + [anon_sym_long] = ACTIONS(2637), + [anon_sym_short] = ACTIONS(2637), + [sym_primitive_type] = ACTIONS(2637), + [anon_sym_enum] = ACTIONS(2637), + [anon_sym_class] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2637), + [anon_sym_union] = ACTIONS(2637), + [anon_sym_if] = ACTIONS(2637), + [anon_sym_switch] = ACTIONS(2637), + [anon_sym_case] = ACTIONS(2637), + [anon_sym_default] = ACTIONS(2637), + [anon_sym_while] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_for] = ACTIONS(2637), + [anon_sym_return] = ACTIONS(2637), + [anon_sym_break] = ACTIONS(2637), + [anon_sym_continue] = ACTIONS(2637), + [anon_sym_goto] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_compl] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2637), + [sym_number_literal] = ACTIONS(2639), + [anon_sym_L_SQUOTE] = ACTIONS(2639), + [anon_sym_u_SQUOTE] = ACTIONS(2639), + [anon_sym_U_SQUOTE] = ACTIONS(2639), + [anon_sym_u8_SQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_L_DQUOTE] = ACTIONS(2639), + [anon_sym_u_DQUOTE] = ACTIONS(2639), + [anon_sym_U_DQUOTE] = ACTIONS(2639), + [anon_sym_u8_DQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [sym_true] = ACTIONS(2637), + [sym_false] = ACTIONS(2637), + [sym_null] = ACTIONS(2637), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2637), + [anon_sym_decltype] = ACTIONS(2637), + [anon_sym_virtual] = ACTIONS(2637), + [anon_sym_explicit] = ACTIONS(2637), + [anon_sym_typename] = ACTIONS(2637), + [anon_sym_template] = ACTIONS(2637), + [anon_sym_operator] = ACTIONS(2637), + [anon_sym_try] = ACTIONS(2637), + [anon_sym_delete] = ACTIONS(2637), + [anon_sym_throw] = ACTIONS(2637), + [anon_sym_namespace] = ACTIONS(2637), + [anon_sym_using] = ACTIONS(2637), + [anon_sym_static_assert] = ACTIONS(2637), + [anon_sym_concept] = ACTIONS(2637), + [anon_sym_co_return] = ACTIONS(2637), + [anon_sym_co_yield] = ACTIONS(2637), + [anon_sym_R_DQUOTE] = ACTIONS(2639), + [anon_sym_LR_DQUOTE] = ACTIONS(2639), + [anon_sym_uR_DQUOTE] = ACTIONS(2639), + [anon_sym_UR_DQUOTE] = ACTIONS(2639), + [anon_sym_u8R_DQUOTE] = ACTIONS(2639), + [anon_sym_co_await] = ACTIONS(2637), + [anon_sym_new] = ACTIONS(2637), + [anon_sym_requires] = ACTIONS(2637), + [sym_this] = ACTIONS(2637), + [sym_nullptr] = ACTIONS(2637), + }, + [925] = { + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token2] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_input] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), + }, + [926] = { + [sym_identifier] = ACTIONS(2779), + [aux_sym_preproc_include_token1] = ACTIONS(2779), + [aux_sym_preproc_def_token1] = ACTIONS(2779), + [aux_sym_preproc_if_token1] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2779), + [sym_preproc_directive] = ACTIONS(2779), + [anon_sym_LPAREN2] = ACTIONS(2781), + [anon_sym_BANG] = ACTIONS(2781), + [anon_sym_TILDE] = ACTIONS(2781), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2781), + [anon_sym_typedef] = ACTIONS(2779), + [anon_sym_extern] = ACTIONS(2779), + [anon_sym___attribute__] = ACTIONS(2779), + [anon_sym_COLON_COLON] = ACTIONS(2781), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2781), + [anon_sym___declspec] = ACTIONS(2779), + [anon_sym___based] = ACTIONS(2779), + [anon_sym___cdecl] = ACTIONS(2779), + [anon_sym___clrcall] = ACTIONS(2779), + [anon_sym___stdcall] = ACTIONS(2779), + [anon_sym___fastcall] = ACTIONS(2779), + [anon_sym___thiscall] = ACTIONS(2779), + [anon_sym___vectorcall] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2781), + [anon_sym_RBRACE] = ACTIONS(2781), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_static] = ACTIONS(2779), + [anon_sym_register] = ACTIONS(2779), + [anon_sym_inline] = ACTIONS(2779), + [anon_sym_thread_local] = ACTIONS(2779), + [anon_sym_input] = ACTIONS(2779), + [anon_sym_const] = ACTIONS(2779), + [anon_sym_volatile] = ACTIONS(2779), + [anon_sym_restrict] = ACTIONS(2779), + [anon_sym__Atomic] = ACTIONS(2779), + [anon_sym_mutable] = ACTIONS(2779), + [anon_sym_constexpr] = ACTIONS(2779), + [anon_sym_constinit] = ACTIONS(2779), + [anon_sym_consteval] = ACTIONS(2779), + [anon_sym_signed] = ACTIONS(2779), + [anon_sym_unsigned] = ACTIONS(2779), + [anon_sym_long] = ACTIONS(2779), + [anon_sym_short] = ACTIONS(2779), + [sym_primitive_type] = ACTIONS(2779), + [anon_sym_enum] = ACTIONS(2779), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_union] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_switch] = ACTIONS(2779), + [anon_sym_case] = ACTIONS(2779), + [anon_sym_default] = ACTIONS(2779), + [anon_sym_while] = ACTIONS(2779), + [anon_sym_do] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2779), + [anon_sym_return] = ACTIONS(2779), + [anon_sym_break] = ACTIONS(2779), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_goto] = ACTIONS(2779), + [anon_sym_not] = ACTIONS(2779), + [anon_sym_compl] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2781), + [anon_sym_sizeof] = ACTIONS(2779), + [sym_number_literal] = ACTIONS(2781), + [anon_sym_L_SQUOTE] = ACTIONS(2781), + [anon_sym_u_SQUOTE] = ACTIONS(2781), + [anon_sym_U_SQUOTE] = ACTIONS(2781), + [anon_sym_u8_SQUOTE] = ACTIONS(2781), + [anon_sym_SQUOTE] = ACTIONS(2781), + [anon_sym_L_DQUOTE] = ACTIONS(2781), + [anon_sym_u_DQUOTE] = ACTIONS(2781), + [anon_sym_U_DQUOTE] = ACTIONS(2781), + [anon_sym_u8_DQUOTE] = ACTIONS(2781), + [anon_sym_DQUOTE] = ACTIONS(2781), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [sym_null] = ACTIONS(2779), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2779), + [anon_sym_decltype] = ACTIONS(2779), + [anon_sym_virtual] = ACTIONS(2779), + [anon_sym_explicit] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_template] = ACTIONS(2779), + [anon_sym_operator] = ACTIONS(2779), + [anon_sym_try] = ACTIONS(2779), + [anon_sym_delete] = ACTIONS(2779), + [anon_sym_throw] = ACTIONS(2779), + [anon_sym_namespace] = ACTIONS(2779), + [anon_sym_using] = ACTIONS(2779), + [anon_sym_static_assert] = ACTIONS(2779), + [anon_sym_concept] = ACTIONS(2779), + [anon_sym_co_return] = ACTIONS(2779), + [anon_sym_co_yield] = ACTIONS(2779), + [anon_sym_R_DQUOTE] = ACTIONS(2781), + [anon_sym_LR_DQUOTE] = ACTIONS(2781), + [anon_sym_uR_DQUOTE] = ACTIONS(2781), + [anon_sym_UR_DQUOTE] = ACTIONS(2781), + [anon_sym_u8R_DQUOTE] = ACTIONS(2781), + [anon_sym_co_await] = ACTIONS(2779), + [anon_sym_new] = ACTIONS(2779), + [anon_sym_requires] = ACTIONS(2779), + [sym_this] = ACTIONS(2779), + [sym_nullptr] = ACTIONS(2779), + }, + [927] = { + [sym_identifier] = ACTIONS(2775), + [aux_sym_preproc_include_token1] = ACTIONS(2775), + [aux_sym_preproc_def_token1] = ACTIONS(2775), + [aux_sym_preproc_if_token1] = ACTIONS(2775), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2775), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2775), + [sym_preproc_directive] = ACTIONS(2775), + [anon_sym_LPAREN2] = ACTIONS(2777), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_TILDE] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2777), + [anon_sym_AMP_AMP] = ACTIONS(2777), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_SEMI] = ACTIONS(2777), + [anon_sym_typedef] = ACTIONS(2775), + [anon_sym_extern] = ACTIONS(2775), + [anon_sym___attribute__] = ACTIONS(2775), + [anon_sym_COLON_COLON] = ACTIONS(2777), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2777), + [anon_sym___declspec] = ACTIONS(2775), + [anon_sym___based] = ACTIONS(2775), + [anon_sym___cdecl] = ACTIONS(2775), + [anon_sym___clrcall] = ACTIONS(2775), + [anon_sym___stdcall] = ACTIONS(2775), + [anon_sym___fastcall] = ACTIONS(2775), + [anon_sym___thiscall] = ACTIONS(2775), + [anon_sym___vectorcall] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2777), + [anon_sym_RBRACE] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2775), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_register] = ACTIONS(2775), + [anon_sym_inline] = ACTIONS(2775), + [anon_sym_thread_local] = ACTIONS(2775), + [anon_sym_input] = ACTIONS(2775), + [anon_sym_const] = ACTIONS(2775), + [anon_sym_volatile] = ACTIONS(2775), + [anon_sym_restrict] = ACTIONS(2775), + [anon_sym__Atomic] = ACTIONS(2775), + [anon_sym_mutable] = ACTIONS(2775), + [anon_sym_constexpr] = ACTIONS(2775), + [anon_sym_constinit] = ACTIONS(2775), + [anon_sym_consteval] = ACTIONS(2775), + [anon_sym_signed] = ACTIONS(2775), + [anon_sym_unsigned] = ACTIONS(2775), + [anon_sym_long] = ACTIONS(2775), + [anon_sym_short] = ACTIONS(2775), + [sym_primitive_type] = ACTIONS(2775), + [anon_sym_enum] = ACTIONS(2775), + [anon_sym_class] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_union] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_switch] = ACTIONS(2775), + [anon_sym_case] = ACTIONS(2775), + [anon_sym_default] = ACTIONS(2775), + [anon_sym_while] = ACTIONS(2775), + [anon_sym_do] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2775), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2775), + [anon_sym_continue] = ACTIONS(2775), + [anon_sym_goto] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2775), + [anon_sym_compl] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2777), + [anon_sym_sizeof] = ACTIONS(2775), + [sym_number_literal] = ACTIONS(2777), + [anon_sym_L_SQUOTE] = ACTIONS(2777), + [anon_sym_u_SQUOTE] = ACTIONS(2777), + [anon_sym_U_SQUOTE] = ACTIONS(2777), + [anon_sym_u8_SQUOTE] = ACTIONS(2777), + [anon_sym_SQUOTE] = ACTIONS(2777), + [anon_sym_L_DQUOTE] = ACTIONS(2777), + [anon_sym_u_DQUOTE] = ACTIONS(2777), + [anon_sym_U_DQUOTE] = ACTIONS(2777), + [anon_sym_u8_DQUOTE] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2777), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [sym_null] = ACTIONS(2775), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2775), + [anon_sym_decltype] = ACTIONS(2775), + [anon_sym_virtual] = ACTIONS(2775), + [anon_sym_explicit] = ACTIONS(2775), + [anon_sym_typename] = ACTIONS(2775), + [anon_sym_template] = ACTIONS(2775), + [anon_sym_operator] = ACTIONS(2775), + [anon_sym_try] = ACTIONS(2775), + [anon_sym_delete] = ACTIONS(2775), + [anon_sym_throw] = ACTIONS(2775), + [anon_sym_namespace] = ACTIONS(2775), + [anon_sym_using] = ACTIONS(2775), + [anon_sym_static_assert] = ACTIONS(2775), + [anon_sym_concept] = ACTIONS(2775), + [anon_sym_co_return] = ACTIONS(2775), + [anon_sym_co_yield] = ACTIONS(2775), + [anon_sym_R_DQUOTE] = ACTIONS(2777), + [anon_sym_LR_DQUOTE] = ACTIONS(2777), + [anon_sym_uR_DQUOTE] = ACTIONS(2777), + [anon_sym_UR_DQUOTE] = ACTIONS(2777), + [anon_sym_u8R_DQUOTE] = ACTIONS(2777), + [anon_sym_co_await] = ACTIONS(2775), + [anon_sym_new] = ACTIONS(2775), + [anon_sym_requires] = ACTIONS(2775), + [sym_this] = ACTIONS(2775), + [sym_nullptr] = ACTIONS(2775), + }, + [928] = { + [ts_builtin_sym_end] = ACTIONS(2691), [sym_identifier] = ACTIONS(2689), [aux_sym_preproc_include_token1] = ACTIONS(2689), [aux_sym_preproc_def_token1] = ACTIONS(2689), [aux_sym_preproc_if_token1] = ACTIONS(2689), - [aux_sym_preproc_if_token2] = ACTIONS(2689), [aux_sym_preproc_ifdef_token1] = ACTIONS(2689), [aux_sym_preproc_ifdef_token2] = ACTIONS(2689), [sym_preproc_directive] = ACTIONS(2689), @@ -142183,6 +143832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2689), [anon_sym_inline] = ACTIONS(2689), [anon_sym_thread_local] = ACTIONS(2689), + [anon_sym_input] = ACTIONS(2689), [anon_sym_const] = ACTIONS(2689), [anon_sym_volatile] = ACTIONS(2689), [anon_sym_restrict] = ACTIONS(2689), @@ -142258,232 +143908,4979 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2689), [sym_nullptr] = ACTIONS(2689), }, - [921] = { - [ts_builtin_sym_end] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2753), - [aux_sym_preproc_include_token1] = ACTIONS(2753), - [aux_sym_preproc_def_token1] = ACTIONS(2753), - [aux_sym_preproc_if_token1] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), - [sym_preproc_directive] = ACTIONS(2753), - [anon_sym_LPAREN2] = ACTIONS(2755), - [anon_sym_BANG] = ACTIONS(2755), - [anon_sym_TILDE] = ACTIONS(2755), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_SEMI] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2753), - [anon_sym_extern] = ACTIONS(2753), - [anon_sym___attribute__] = ACTIONS(2753), - [anon_sym_COLON_COLON] = ACTIONS(2755), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), - [anon_sym___declspec] = ACTIONS(2753), - [anon_sym___based] = ACTIONS(2753), - [anon_sym___cdecl] = ACTIONS(2753), - [anon_sym___clrcall] = ACTIONS(2753), - [anon_sym___stdcall] = ACTIONS(2753), - [anon_sym___fastcall] = ACTIONS(2753), - [anon_sym___thiscall] = ACTIONS(2753), - [anon_sym___vectorcall] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2753), - [anon_sym_static] = ACTIONS(2753), - [anon_sym_register] = ACTIONS(2753), - [anon_sym_inline] = ACTIONS(2753), - [anon_sym_thread_local] = ACTIONS(2753), - [anon_sym_const] = ACTIONS(2753), - [anon_sym_volatile] = ACTIONS(2753), - [anon_sym_restrict] = ACTIONS(2753), - [anon_sym__Atomic] = ACTIONS(2753), - [anon_sym_mutable] = ACTIONS(2753), - [anon_sym_constexpr] = ACTIONS(2753), - [anon_sym_constinit] = ACTIONS(2753), - [anon_sym_consteval] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2753), - [anon_sym_unsigned] = ACTIONS(2753), - [anon_sym_long] = ACTIONS(2753), - [anon_sym_short] = ACTIONS(2753), - [sym_primitive_type] = ACTIONS(2753), - [anon_sym_enum] = ACTIONS(2753), - [anon_sym_class] = ACTIONS(2753), - [anon_sym_struct] = ACTIONS(2753), - [anon_sym_union] = ACTIONS(2753), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_switch] = ACTIONS(2753), - [anon_sym_case] = ACTIONS(2753), - [anon_sym_default] = ACTIONS(2753), - [anon_sym_while] = ACTIONS(2753), - [anon_sym_do] = ACTIONS(2753), - [anon_sym_for] = ACTIONS(2753), - [anon_sym_return] = ACTIONS(2753), - [anon_sym_break] = ACTIONS(2753), - [anon_sym_continue] = ACTIONS(2753), - [anon_sym_goto] = ACTIONS(2753), - [anon_sym_not] = ACTIONS(2753), - [anon_sym_compl] = ACTIONS(2753), - [anon_sym_DASH_DASH] = ACTIONS(2755), - [anon_sym_PLUS_PLUS] = ACTIONS(2755), - [anon_sym_sizeof] = ACTIONS(2753), - [sym_number_literal] = ACTIONS(2755), - [anon_sym_L_SQUOTE] = ACTIONS(2755), - [anon_sym_u_SQUOTE] = ACTIONS(2755), - [anon_sym_U_SQUOTE] = ACTIONS(2755), - [anon_sym_u8_SQUOTE] = ACTIONS(2755), - [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_L_DQUOTE] = ACTIONS(2755), - [anon_sym_u_DQUOTE] = ACTIONS(2755), - [anon_sym_U_DQUOTE] = ACTIONS(2755), - [anon_sym_u8_DQUOTE] = ACTIONS(2755), - [anon_sym_DQUOTE] = ACTIONS(2755), - [sym_true] = ACTIONS(2753), - [sym_false] = ACTIONS(2753), - [sym_null] = ACTIONS(2753), + [929] = { + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_include_token1] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token2] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym___cdecl] = ACTIONS(2743), + [anon_sym___clrcall] = ACTIONS(2743), + [anon_sym___stdcall] = ACTIONS(2743), + [anon_sym___fastcall] = ACTIONS(2743), + [anon_sym___thiscall] = ACTIONS(2743), + [anon_sym___vectorcall] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym_input] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2743), + [anon_sym_case] = ACTIONS(2743), + [anon_sym_default] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_do] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym_not] = ACTIONS(2743), + [anon_sym_compl] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_sizeof] = ACTIONS(2743), + [sym_number_literal] = ACTIONS(2745), + [anon_sym_L_SQUOTE] = ACTIONS(2745), + [anon_sym_u_SQUOTE] = ACTIONS(2745), + [anon_sym_U_SQUOTE] = ACTIONS(2745), + [anon_sym_u8_SQUOTE] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_L_DQUOTE] = ACTIONS(2745), + [anon_sym_u_DQUOTE] = ACTIONS(2745), + [anon_sym_U_DQUOTE] = ACTIONS(2745), + [anon_sym_u8_DQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_null] = ACTIONS(2743), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2753), - [anon_sym_decltype] = ACTIONS(2753), - [anon_sym_virtual] = ACTIONS(2753), - [anon_sym_explicit] = ACTIONS(2753), - [anon_sym_typename] = ACTIONS(2753), - [anon_sym_template] = ACTIONS(2753), - [anon_sym_operator] = ACTIONS(2753), - [anon_sym_try] = ACTIONS(2753), - [anon_sym_delete] = ACTIONS(2753), - [anon_sym_throw] = ACTIONS(2753), - [anon_sym_namespace] = ACTIONS(2753), - [anon_sym_using] = ACTIONS(2753), - [anon_sym_static_assert] = ACTIONS(2753), - [anon_sym_concept] = ACTIONS(2753), - [anon_sym_co_return] = ACTIONS(2753), - [anon_sym_co_yield] = ACTIONS(2753), - [anon_sym_R_DQUOTE] = ACTIONS(2755), - [anon_sym_LR_DQUOTE] = ACTIONS(2755), - [anon_sym_uR_DQUOTE] = ACTIONS(2755), - [anon_sym_UR_DQUOTE] = ACTIONS(2755), - [anon_sym_u8R_DQUOTE] = ACTIONS(2755), - [anon_sym_co_await] = ACTIONS(2753), - [anon_sym_new] = ACTIONS(2753), - [anon_sym_requires] = ACTIONS(2753), - [sym_this] = ACTIONS(2753), - [sym_nullptr] = ACTIONS(2753), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [anon_sym_delete] = ACTIONS(2743), + [anon_sym_throw] = ACTIONS(2743), + [anon_sym_namespace] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), + [anon_sym_concept] = ACTIONS(2743), + [anon_sym_co_return] = ACTIONS(2743), + [anon_sym_co_yield] = ACTIONS(2743), + [anon_sym_R_DQUOTE] = ACTIONS(2745), + [anon_sym_LR_DQUOTE] = ACTIONS(2745), + [anon_sym_uR_DQUOTE] = ACTIONS(2745), + [anon_sym_UR_DQUOTE] = ACTIONS(2745), + [anon_sym_u8R_DQUOTE] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2743), + [anon_sym_new] = ACTIONS(2743), + [anon_sym_requires] = ACTIONS(2743), + [sym_this] = ACTIONS(2743), + [sym_nullptr] = ACTIONS(2743), }, - [922] = { - [ts_builtin_sym_end] = ACTIONS(2711), - [sym_identifier] = ACTIONS(2709), - [aux_sym_preproc_include_token1] = ACTIONS(2709), - [aux_sym_preproc_def_token1] = ACTIONS(2709), - [aux_sym_preproc_if_token1] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), - [sym_preproc_directive] = ACTIONS(2709), - [anon_sym_LPAREN2] = ACTIONS(2711), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_TILDE] = ACTIONS(2711), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2711), - [anon_sym_AMP_AMP] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2709), - [anon_sym_extern] = ACTIONS(2709), - [anon_sym___attribute__] = ACTIONS(2709), - [anon_sym_COLON_COLON] = ACTIONS(2711), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), - [anon_sym___declspec] = ACTIONS(2709), - [anon_sym___based] = ACTIONS(2709), - [anon_sym___cdecl] = ACTIONS(2709), - [anon_sym___clrcall] = ACTIONS(2709), - [anon_sym___stdcall] = ACTIONS(2709), - [anon_sym___fastcall] = ACTIONS(2709), - [anon_sym___thiscall] = ACTIONS(2709), - [anon_sym___vectorcall] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_static] = ACTIONS(2709), - [anon_sym_register] = ACTIONS(2709), - [anon_sym_inline] = ACTIONS(2709), - [anon_sym_thread_local] = ACTIONS(2709), - [anon_sym_const] = ACTIONS(2709), - [anon_sym_volatile] = ACTIONS(2709), - [anon_sym_restrict] = ACTIONS(2709), - [anon_sym__Atomic] = ACTIONS(2709), - [anon_sym_mutable] = ACTIONS(2709), - [anon_sym_constexpr] = ACTIONS(2709), - [anon_sym_constinit] = ACTIONS(2709), - [anon_sym_consteval] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2709), - [anon_sym_unsigned] = ACTIONS(2709), - [anon_sym_long] = ACTIONS(2709), - [anon_sym_short] = ACTIONS(2709), - [sym_primitive_type] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_union] = ACTIONS(2709), - [anon_sym_if] = ACTIONS(2709), - [anon_sym_switch] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2709), - [anon_sym_default] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2709), - [anon_sym_do] = ACTIONS(2709), - [anon_sym_for] = ACTIONS(2709), - [anon_sym_return] = ACTIONS(2709), - [anon_sym_break] = ACTIONS(2709), - [anon_sym_continue] = ACTIONS(2709), - [anon_sym_goto] = ACTIONS(2709), - [anon_sym_not] = ACTIONS(2709), - [anon_sym_compl] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2711), - [anon_sym_PLUS_PLUS] = ACTIONS(2711), - [anon_sym_sizeof] = ACTIONS(2709), - [sym_number_literal] = ACTIONS(2711), - [anon_sym_L_SQUOTE] = ACTIONS(2711), - [anon_sym_u_SQUOTE] = ACTIONS(2711), - [anon_sym_U_SQUOTE] = ACTIONS(2711), - [anon_sym_u8_SQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_L_DQUOTE] = ACTIONS(2711), - [anon_sym_u_DQUOTE] = ACTIONS(2711), - [anon_sym_U_DQUOTE] = ACTIONS(2711), - [anon_sym_u8_DQUOTE] = ACTIONS(2711), - [anon_sym_DQUOTE] = ACTIONS(2711), - [sym_true] = ACTIONS(2709), - [sym_false] = ACTIONS(2709), - [sym_null] = ACTIONS(2709), + [930] = { + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token2] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_input] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2709), - [anon_sym_decltype] = ACTIONS(2709), - [anon_sym_virtual] = ACTIONS(2709), - [anon_sym_explicit] = ACTIONS(2709), - [anon_sym_typename] = ACTIONS(2709), - [anon_sym_template] = ACTIONS(2709), - [anon_sym_operator] = ACTIONS(2709), - [anon_sym_try] = ACTIONS(2709), - [anon_sym_delete] = ACTIONS(2709), - [anon_sym_throw] = ACTIONS(2709), - [anon_sym_namespace] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2709), - [anon_sym_static_assert] = ACTIONS(2709), - [anon_sym_concept] = ACTIONS(2709), - [anon_sym_co_return] = ACTIONS(2709), - [anon_sym_co_yield] = ACTIONS(2709), - [anon_sym_R_DQUOTE] = ACTIONS(2711), - [anon_sym_LR_DQUOTE] = ACTIONS(2711), - [anon_sym_uR_DQUOTE] = ACTIONS(2711), - [anon_sym_UR_DQUOTE] = ACTIONS(2711), - [anon_sym_u8R_DQUOTE] = ACTIONS(2711), - [anon_sym_co_await] = ACTIONS(2709), - [anon_sym_new] = ACTIONS(2709), - [anon_sym_requires] = ACTIONS(2709), - [sym_this] = ACTIONS(2709), - [sym_nullptr] = ACTIONS(2709), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), }, - [923] = { - [ts_builtin_sym_end] = ACTIONS(2719), + [931] = { + [sym_identifier] = ACTIONS(2771), + [aux_sym_preproc_include_token1] = ACTIONS(2771), + [aux_sym_preproc_def_token1] = ACTIONS(2771), + [aux_sym_preproc_if_token1] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2771), + [sym_preproc_directive] = ACTIONS(2771), + [anon_sym_LPAREN2] = ACTIONS(2773), + [anon_sym_BANG] = ACTIONS(2773), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym_typedef] = ACTIONS(2771), + [anon_sym_extern] = ACTIONS(2771), + [anon_sym___attribute__] = ACTIONS(2771), + [anon_sym_COLON_COLON] = ACTIONS(2773), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2773), + [anon_sym___declspec] = ACTIONS(2771), + [anon_sym___based] = ACTIONS(2771), + [anon_sym___cdecl] = ACTIONS(2771), + [anon_sym___clrcall] = ACTIONS(2771), + [anon_sym___stdcall] = ACTIONS(2771), + [anon_sym___fastcall] = ACTIONS(2771), + [anon_sym___thiscall] = ACTIONS(2771), + [anon_sym___vectorcall] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2773), + [anon_sym_RBRACE] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_static] = ACTIONS(2771), + [anon_sym_register] = ACTIONS(2771), + [anon_sym_inline] = ACTIONS(2771), + [anon_sym_thread_local] = ACTIONS(2771), + [anon_sym_input] = ACTIONS(2771), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_volatile] = ACTIONS(2771), + [anon_sym_restrict] = ACTIONS(2771), + [anon_sym__Atomic] = ACTIONS(2771), + [anon_sym_mutable] = ACTIONS(2771), + [anon_sym_constexpr] = ACTIONS(2771), + [anon_sym_constinit] = ACTIONS(2771), + [anon_sym_consteval] = ACTIONS(2771), + [anon_sym_signed] = ACTIONS(2771), + [anon_sym_unsigned] = ACTIONS(2771), + [anon_sym_long] = ACTIONS(2771), + [anon_sym_short] = ACTIONS(2771), + [sym_primitive_type] = ACTIONS(2771), + [anon_sym_enum] = ACTIONS(2771), + [anon_sym_class] = ACTIONS(2771), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(2771), + [anon_sym_switch] = ACTIONS(2771), + [anon_sym_case] = ACTIONS(2771), + [anon_sym_default] = ACTIONS(2771), + [anon_sym_while] = ACTIONS(2771), + [anon_sym_do] = ACTIONS(2771), + [anon_sym_for] = ACTIONS(2771), + [anon_sym_return] = ACTIONS(2771), + [anon_sym_break] = ACTIONS(2771), + [anon_sym_continue] = ACTIONS(2771), + [anon_sym_goto] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2771), + [anon_sym_compl] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(2773), + [anon_sym_sizeof] = ACTIONS(2771), + [sym_number_literal] = ACTIONS(2773), + [anon_sym_L_SQUOTE] = ACTIONS(2773), + [anon_sym_u_SQUOTE] = ACTIONS(2773), + [anon_sym_U_SQUOTE] = ACTIONS(2773), + [anon_sym_u8_SQUOTE] = ACTIONS(2773), + [anon_sym_SQUOTE] = ACTIONS(2773), + [anon_sym_L_DQUOTE] = ACTIONS(2773), + [anon_sym_u_DQUOTE] = ACTIONS(2773), + [anon_sym_U_DQUOTE] = ACTIONS(2773), + [anon_sym_u8_DQUOTE] = ACTIONS(2773), + [anon_sym_DQUOTE] = ACTIONS(2773), + [sym_true] = ACTIONS(2771), + [sym_false] = ACTIONS(2771), + [sym_null] = ACTIONS(2771), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2771), + [anon_sym_decltype] = ACTIONS(2771), + [anon_sym_virtual] = ACTIONS(2771), + [anon_sym_explicit] = ACTIONS(2771), + [anon_sym_typename] = ACTIONS(2771), + [anon_sym_template] = ACTIONS(2771), + [anon_sym_operator] = ACTIONS(2771), + [anon_sym_try] = ACTIONS(2771), + [anon_sym_delete] = ACTIONS(2771), + [anon_sym_throw] = ACTIONS(2771), + [anon_sym_namespace] = ACTIONS(2771), + [anon_sym_using] = ACTIONS(2771), + [anon_sym_static_assert] = ACTIONS(2771), + [anon_sym_concept] = ACTIONS(2771), + [anon_sym_co_return] = ACTIONS(2771), + [anon_sym_co_yield] = ACTIONS(2771), + [anon_sym_R_DQUOTE] = ACTIONS(2773), + [anon_sym_LR_DQUOTE] = ACTIONS(2773), + [anon_sym_uR_DQUOTE] = ACTIONS(2773), + [anon_sym_UR_DQUOTE] = ACTIONS(2773), + [anon_sym_u8R_DQUOTE] = ACTIONS(2773), + [anon_sym_co_await] = ACTIONS(2771), + [anon_sym_new] = ACTIONS(2771), + [anon_sym_requires] = ACTIONS(2771), + [sym_this] = ACTIONS(2771), + [sym_nullptr] = ACTIONS(2771), + }, + [932] = { + [sym_identifier] = ACTIONS(2629), + [aux_sym_preproc_include_token1] = ACTIONS(2629), + [aux_sym_preproc_def_token1] = ACTIONS(2629), + [aux_sym_preproc_if_token1] = ACTIONS(2629), + [aux_sym_preproc_if_token2] = ACTIONS(2629), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2629), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2629), + [sym_preproc_directive] = ACTIONS(2629), + [anon_sym_LPAREN2] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_typedef] = ACTIONS(2629), + [anon_sym_extern] = ACTIONS(2629), + [anon_sym___attribute__] = ACTIONS(2629), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2631), + [anon_sym___declspec] = ACTIONS(2629), + [anon_sym___based] = ACTIONS(2629), + [anon_sym___cdecl] = ACTIONS(2629), + [anon_sym___clrcall] = ACTIONS(2629), + [anon_sym___stdcall] = ACTIONS(2629), + [anon_sym___fastcall] = ACTIONS(2629), + [anon_sym___thiscall] = ACTIONS(2629), + [anon_sym___vectorcall] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_static] = ACTIONS(2629), + [anon_sym_register] = ACTIONS(2629), + [anon_sym_inline] = ACTIONS(2629), + [anon_sym_thread_local] = ACTIONS(2629), + [anon_sym_input] = ACTIONS(2629), + [anon_sym_const] = ACTIONS(2629), + [anon_sym_volatile] = ACTIONS(2629), + [anon_sym_restrict] = ACTIONS(2629), + [anon_sym__Atomic] = ACTIONS(2629), + [anon_sym_mutable] = ACTIONS(2629), + [anon_sym_constexpr] = ACTIONS(2629), + [anon_sym_constinit] = ACTIONS(2629), + [anon_sym_consteval] = ACTIONS(2629), + [anon_sym_signed] = ACTIONS(2629), + [anon_sym_unsigned] = ACTIONS(2629), + [anon_sym_long] = ACTIONS(2629), + [anon_sym_short] = ACTIONS(2629), + [sym_primitive_type] = ACTIONS(2629), + [anon_sym_enum] = ACTIONS(2629), + [anon_sym_class] = ACTIONS(2629), + [anon_sym_struct] = ACTIONS(2629), + [anon_sym_union] = ACTIONS(2629), + [anon_sym_if] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2629), + [anon_sym_case] = ACTIONS(2629), + [anon_sym_default] = ACTIONS(2629), + [anon_sym_while] = ACTIONS(2629), + [anon_sym_do] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2629), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_break] = ACTIONS(2629), + [anon_sym_continue] = ACTIONS(2629), + [anon_sym_goto] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_compl] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_sizeof] = ACTIONS(2629), + [sym_number_literal] = ACTIONS(2631), + [anon_sym_L_SQUOTE] = ACTIONS(2631), + [anon_sym_u_SQUOTE] = ACTIONS(2631), + [anon_sym_U_SQUOTE] = ACTIONS(2631), + [anon_sym_u8_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_L_DQUOTE] = ACTIONS(2631), + [anon_sym_u_DQUOTE] = ACTIONS(2631), + [anon_sym_U_DQUOTE] = ACTIONS(2631), + [anon_sym_u8_DQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [sym_true] = ACTIONS(2629), + [sym_false] = ACTIONS(2629), + [sym_null] = ACTIONS(2629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2629), + [anon_sym_decltype] = ACTIONS(2629), + [anon_sym_virtual] = ACTIONS(2629), + [anon_sym_explicit] = ACTIONS(2629), + [anon_sym_typename] = ACTIONS(2629), + [anon_sym_template] = ACTIONS(2629), + [anon_sym_operator] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2629), + [anon_sym_delete] = ACTIONS(2629), + [anon_sym_throw] = ACTIONS(2629), + [anon_sym_namespace] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2629), + [anon_sym_static_assert] = ACTIONS(2629), + [anon_sym_concept] = ACTIONS(2629), + [anon_sym_co_return] = ACTIONS(2629), + [anon_sym_co_yield] = ACTIONS(2629), + [anon_sym_R_DQUOTE] = ACTIONS(2631), + [anon_sym_LR_DQUOTE] = ACTIONS(2631), + [anon_sym_uR_DQUOTE] = ACTIONS(2631), + [anon_sym_UR_DQUOTE] = ACTIONS(2631), + [anon_sym_u8R_DQUOTE] = ACTIONS(2631), + [anon_sym_co_await] = ACTIONS(2629), + [anon_sym_new] = ACTIONS(2629), + [anon_sym_requires] = ACTIONS(2629), + [sym_this] = ACTIONS(2629), + [sym_nullptr] = ACTIONS(2629), + }, + [933] = { + [sym_identifier] = ACTIONS(2693), + [aux_sym_preproc_include_token1] = ACTIONS(2693), + [aux_sym_preproc_def_token1] = ACTIONS(2693), + [aux_sym_preproc_if_token1] = ACTIONS(2693), + [aux_sym_preproc_if_token2] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2693), + [sym_preproc_directive] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_typedef] = ACTIONS(2693), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym___attribute__] = ACTIONS(2693), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2695), + [anon_sym___declspec] = ACTIONS(2693), + [anon_sym___based] = ACTIONS(2693), + [anon_sym___cdecl] = ACTIONS(2693), + [anon_sym___clrcall] = ACTIONS(2693), + [anon_sym___stdcall] = ACTIONS(2693), + [anon_sym___fastcall] = ACTIONS(2693), + [anon_sym___thiscall] = ACTIONS(2693), + [anon_sym___vectorcall] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_register] = ACTIONS(2693), + [anon_sym_inline] = ACTIONS(2693), + [anon_sym_thread_local] = ACTIONS(2693), + [anon_sym_input] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_volatile] = ACTIONS(2693), + [anon_sym_restrict] = ACTIONS(2693), + [anon_sym__Atomic] = ACTIONS(2693), + [anon_sym_mutable] = ACTIONS(2693), + [anon_sym_constexpr] = ACTIONS(2693), + [anon_sym_constinit] = ACTIONS(2693), + [anon_sym_consteval] = ACTIONS(2693), + [anon_sym_signed] = ACTIONS(2693), + [anon_sym_unsigned] = ACTIONS(2693), + [anon_sym_long] = ACTIONS(2693), + [anon_sym_short] = ACTIONS(2693), + [sym_primitive_type] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_class] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2693), + [anon_sym_union] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_switch] = ACTIONS(2693), + [anon_sym_case] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_goto] = ACTIONS(2693), + [anon_sym_not] = ACTIONS(2693), + [anon_sym_compl] = ACTIONS(2693), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_sizeof] = ACTIONS(2693), + [sym_number_literal] = ACTIONS(2695), + [anon_sym_L_SQUOTE] = ACTIONS(2695), + [anon_sym_u_SQUOTE] = ACTIONS(2695), + [anon_sym_U_SQUOTE] = ACTIONS(2695), + [anon_sym_u8_SQUOTE] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2693), + [sym_false] = ACTIONS(2693), + [sym_null] = ACTIONS(2693), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2693), + [anon_sym_decltype] = ACTIONS(2693), + [anon_sym_virtual] = ACTIONS(2693), + [anon_sym_explicit] = ACTIONS(2693), + [anon_sym_typename] = ACTIONS(2693), + [anon_sym_template] = ACTIONS(2693), + [anon_sym_operator] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_delete] = ACTIONS(2693), + [anon_sym_throw] = ACTIONS(2693), + [anon_sym_namespace] = ACTIONS(2693), + [anon_sym_using] = ACTIONS(2693), + [anon_sym_static_assert] = ACTIONS(2693), + [anon_sym_concept] = ACTIONS(2693), + [anon_sym_co_return] = ACTIONS(2693), + [anon_sym_co_yield] = ACTIONS(2693), + [anon_sym_R_DQUOTE] = ACTIONS(2695), + [anon_sym_LR_DQUOTE] = ACTIONS(2695), + [anon_sym_uR_DQUOTE] = ACTIONS(2695), + [anon_sym_UR_DQUOTE] = ACTIONS(2695), + [anon_sym_u8R_DQUOTE] = ACTIONS(2695), + [anon_sym_co_await] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_requires] = ACTIONS(2693), + [sym_this] = ACTIONS(2693), + [sym_nullptr] = ACTIONS(2693), + }, + [934] = { + [ts_builtin_sym_end] = ACTIONS(2765), + [sym_identifier] = ACTIONS(2763), + [aux_sym_preproc_include_token1] = ACTIONS(2763), + [aux_sym_preproc_def_token1] = ACTIONS(2763), + [aux_sym_preproc_if_token1] = ACTIONS(2763), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2763), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2763), + [sym_preproc_directive] = ACTIONS(2763), + [anon_sym_LPAREN2] = ACTIONS(2765), + [anon_sym_BANG] = ACTIONS(2765), + [anon_sym_TILDE] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_PLUS] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_AMP_AMP] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_SEMI] = ACTIONS(2765), + [anon_sym_typedef] = ACTIONS(2763), + [anon_sym_extern] = ACTIONS(2763), + [anon_sym___attribute__] = ACTIONS(2763), + [anon_sym_COLON_COLON] = ACTIONS(2765), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2765), + [anon_sym___declspec] = ACTIONS(2763), + [anon_sym___based] = ACTIONS(2763), + [anon_sym___cdecl] = ACTIONS(2763), + [anon_sym___clrcall] = ACTIONS(2763), + [anon_sym___stdcall] = ACTIONS(2763), + [anon_sym___fastcall] = ACTIONS(2763), + [anon_sym___thiscall] = ACTIONS(2763), + [anon_sym___vectorcall] = ACTIONS(2763), + [anon_sym_LBRACE] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_static] = ACTIONS(2763), + [anon_sym_register] = ACTIONS(2763), + [anon_sym_inline] = ACTIONS(2763), + [anon_sym_thread_local] = ACTIONS(2763), + [anon_sym_input] = ACTIONS(2763), + [anon_sym_const] = ACTIONS(2763), + [anon_sym_volatile] = ACTIONS(2763), + [anon_sym_restrict] = ACTIONS(2763), + [anon_sym__Atomic] = ACTIONS(2763), + [anon_sym_mutable] = ACTIONS(2763), + [anon_sym_constexpr] = ACTIONS(2763), + [anon_sym_constinit] = ACTIONS(2763), + [anon_sym_consteval] = ACTIONS(2763), + [anon_sym_signed] = ACTIONS(2763), + [anon_sym_unsigned] = ACTIONS(2763), + [anon_sym_long] = ACTIONS(2763), + [anon_sym_short] = ACTIONS(2763), + [sym_primitive_type] = ACTIONS(2763), + [anon_sym_enum] = ACTIONS(2763), + [anon_sym_class] = ACTIONS(2763), + [anon_sym_struct] = ACTIONS(2763), + [anon_sym_union] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_switch] = ACTIONS(2763), + [anon_sym_case] = ACTIONS(2763), + [anon_sym_default] = ACTIONS(2763), + [anon_sym_while] = ACTIONS(2763), + [anon_sym_do] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2763), + [anon_sym_return] = ACTIONS(2763), + [anon_sym_break] = ACTIONS(2763), + [anon_sym_continue] = ACTIONS(2763), + [anon_sym_goto] = ACTIONS(2763), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_compl] = ACTIONS(2763), + [anon_sym_DASH_DASH] = ACTIONS(2765), + [anon_sym_PLUS_PLUS] = ACTIONS(2765), + [anon_sym_sizeof] = ACTIONS(2763), + [sym_number_literal] = ACTIONS(2765), + [anon_sym_L_SQUOTE] = ACTIONS(2765), + [anon_sym_u_SQUOTE] = ACTIONS(2765), + [anon_sym_U_SQUOTE] = ACTIONS(2765), + [anon_sym_u8_SQUOTE] = ACTIONS(2765), + [anon_sym_SQUOTE] = ACTIONS(2765), + [anon_sym_L_DQUOTE] = ACTIONS(2765), + [anon_sym_u_DQUOTE] = ACTIONS(2765), + [anon_sym_U_DQUOTE] = ACTIONS(2765), + [anon_sym_u8_DQUOTE] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2765), + [sym_true] = ACTIONS(2763), + [sym_false] = ACTIONS(2763), + [sym_null] = ACTIONS(2763), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2763), + [anon_sym_decltype] = ACTIONS(2763), + [anon_sym_virtual] = ACTIONS(2763), + [anon_sym_explicit] = ACTIONS(2763), + [anon_sym_typename] = ACTIONS(2763), + [anon_sym_template] = ACTIONS(2763), + [anon_sym_operator] = ACTIONS(2763), + [anon_sym_try] = ACTIONS(2763), + [anon_sym_delete] = ACTIONS(2763), + [anon_sym_throw] = ACTIONS(2763), + [anon_sym_namespace] = ACTIONS(2763), + [anon_sym_using] = ACTIONS(2763), + [anon_sym_static_assert] = ACTIONS(2763), + [anon_sym_concept] = ACTIONS(2763), + [anon_sym_co_return] = ACTIONS(2763), + [anon_sym_co_yield] = ACTIONS(2763), + [anon_sym_R_DQUOTE] = ACTIONS(2765), + [anon_sym_LR_DQUOTE] = ACTIONS(2765), + [anon_sym_uR_DQUOTE] = ACTIONS(2765), + [anon_sym_UR_DQUOTE] = ACTIONS(2765), + [anon_sym_u8R_DQUOTE] = ACTIONS(2765), + [anon_sym_co_await] = ACTIONS(2763), + [anon_sym_new] = ACTIONS(2763), + [anon_sym_requires] = ACTIONS(2763), + [sym_this] = ACTIONS(2763), + [sym_nullptr] = ACTIONS(2763), + }, + [935] = { + [ts_builtin_sym_end] = ACTIONS(2761), + [sym_identifier] = ACTIONS(2759), + [aux_sym_preproc_include_token1] = ACTIONS(2759), + [aux_sym_preproc_def_token1] = ACTIONS(2759), + [aux_sym_preproc_if_token1] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), + [sym_preproc_directive] = ACTIONS(2759), + [anon_sym_LPAREN2] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2759), + [anon_sym_PLUS] = ACTIONS(2759), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_SEMI] = ACTIONS(2761), + [anon_sym_typedef] = ACTIONS(2759), + [anon_sym_extern] = ACTIONS(2759), + [anon_sym___attribute__] = ACTIONS(2759), + [anon_sym_COLON_COLON] = ACTIONS(2761), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), + [anon_sym___declspec] = ACTIONS(2759), + [anon_sym___based] = ACTIONS(2759), + [anon_sym___cdecl] = ACTIONS(2759), + [anon_sym___clrcall] = ACTIONS(2759), + [anon_sym___stdcall] = ACTIONS(2759), + [anon_sym___fastcall] = ACTIONS(2759), + [anon_sym___thiscall] = ACTIONS(2759), + [anon_sym___vectorcall] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_static] = ACTIONS(2759), + [anon_sym_register] = ACTIONS(2759), + [anon_sym_inline] = ACTIONS(2759), + [anon_sym_thread_local] = ACTIONS(2759), + [anon_sym_input] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2759), + [anon_sym_volatile] = ACTIONS(2759), + [anon_sym_restrict] = ACTIONS(2759), + [anon_sym__Atomic] = ACTIONS(2759), + [anon_sym_mutable] = ACTIONS(2759), + [anon_sym_constexpr] = ACTIONS(2759), + [anon_sym_constinit] = ACTIONS(2759), + [anon_sym_consteval] = ACTIONS(2759), + [anon_sym_signed] = ACTIONS(2759), + [anon_sym_unsigned] = ACTIONS(2759), + [anon_sym_long] = ACTIONS(2759), + [anon_sym_short] = ACTIONS(2759), + [sym_primitive_type] = ACTIONS(2759), + [anon_sym_enum] = ACTIONS(2759), + [anon_sym_class] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2759), + [anon_sym_union] = ACTIONS(2759), + [anon_sym_if] = ACTIONS(2759), + [anon_sym_switch] = ACTIONS(2759), + [anon_sym_case] = ACTIONS(2759), + [anon_sym_default] = ACTIONS(2759), + [anon_sym_while] = ACTIONS(2759), + [anon_sym_do] = ACTIONS(2759), + [anon_sym_for] = ACTIONS(2759), + [anon_sym_return] = ACTIONS(2759), + [anon_sym_break] = ACTIONS(2759), + [anon_sym_continue] = ACTIONS(2759), + [anon_sym_goto] = ACTIONS(2759), + [anon_sym_not] = ACTIONS(2759), + [anon_sym_compl] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2761), + [anon_sym_sizeof] = ACTIONS(2759), + [sym_number_literal] = ACTIONS(2761), + [anon_sym_L_SQUOTE] = ACTIONS(2761), + [anon_sym_u_SQUOTE] = ACTIONS(2761), + [anon_sym_U_SQUOTE] = ACTIONS(2761), + [anon_sym_u8_SQUOTE] = ACTIONS(2761), + [anon_sym_SQUOTE] = ACTIONS(2761), + [anon_sym_L_DQUOTE] = ACTIONS(2761), + [anon_sym_u_DQUOTE] = ACTIONS(2761), + [anon_sym_U_DQUOTE] = ACTIONS(2761), + [anon_sym_u8_DQUOTE] = ACTIONS(2761), + [anon_sym_DQUOTE] = ACTIONS(2761), + [sym_true] = ACTIONS(2759), + [sym_false] = ACTIONS(2759), + [sym_null] = ACTIONS(2759), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2759), + [anon_sym_decltype] = ACTIONS(2759), + [anon_sym_virtual] = ACTIONS(2759), + [anon_sym_explicit] = ACTIONS(2759), + [anon_sym_typename] = ACTIONS(2759), + [anon_sym_template] = ACTIONS(2759), + [anon_sym_operator] = ACTIONS(2759), + [anon_sym_try] = ACTIONS(2759), + [anon_sym_delete] = ACTIONS(2759), + [anon_sym_throw] = ACTIONS(2759), + [anon_sym_namespace] = ACTIONS(2759), + [anon_sym_using] = ACTIONS(2759), + [anon_sym_static_assert] = ACTIONS(2759), + [anon_sym_concept] = ACTIONS(2759), + [anon_sym_co_return] = ACTIONS(2759), + [anon_sym_co_yield] = ACTIONS(2759), + [anon_sym_R_DQUOTE] = ACTIONS(2761), + [anon_sym_LR_DQUOTE] = ACTIONS(2761), + [anon_sym_uR_DQUOTE] = ACTIONS(2761), + [anon_sym_UR_DQUOTE] = ACTIONS(2761), + [anon_sym_u8R_DQUOTE] = ACTIONS(2761), + [anon_sym_co_await] = ACTIONS(2759), + [anon_sym_new] = ACTIONS(2759), + [anon_sym_requires] = ACTIONS(2759), + [sym_this] = ACTIONS(2759), + [sym_nullptr] = ACTIONS(2759), + }, + [936] = { + [sym_identifier] = ACTIONS(2791), + [aux_sym_preproc_include_token1] = ACTIONS(2791), + [aux_sym_preproc_def_token1] = ACTIONS(2791), + [aux_sym_preproc_if_token1] = ACTIONS(2791), + [aux_sym_preproc_if_token2] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2791), + [sym_preproc_directive] = ACTIONS(2791), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2791), + [anon_sym_PLUS] = ACTIONS(2791), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2791), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym_typedef] = ACTIONS(2791), + [anon_sym_extern] = ACTIONS(2791), + [anon_sym___attribute__] = ACTIONS(2791), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2791), + [anon_sym___based] = ACTIONS(2791), + [anon_sym___cdecl] = ACTIONS(2791), + [anon_sym___clrcall] = ACTIONS(2791), + [anon_sym___stdcall] = ACTIONS(2791), + [anon_sym___fastcall] = ACTIONS(2791), + [anon_sym___thiscall] = ACTIONS(2791), + [anon_sym___vectorcall] = ACTIONS(2791), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_static] = ACTIONS(2791), + [anon_sym_register] = ACTIONS(2791), + [anon_sym_inline] = ACTIONS(2791), + [anon_sym_thread_local] = ACTIONS(2791), + [anon_sym_input] = ACTIONS(2791), + [anon_sym_const] = ACTIONS(2791), + [anon_sym_volatile] = ACTIONS(2791), + [anon_sym_restrict] = ACTIONS(2791), + [anon_sym__Atomic] = ACTIONS(2791), + [anon_sym_mutable] = ACTIONS(2791), + [anon_sym_constexpr] = ACTIONS(2791), + [anon_sym_constinit] = ACTIONS(2791), + [anon_sym_consteval] = ACTIONS(2791), + [anon_sym_signed] = ACTIONS(2791), + [anon_sym_unsigned] = ACTIONS(2791), + [anon_sym_long] = ACTIONS(2791), + [anon_sym_short] = ACTIONS(2791), + [sym_primitive_type] = ACTIONS(2791), + [anon_sym_enum] = ACTIONS(2791), + [anon_sym_class] = ACTIONS(2791), + [anon_sym_struct] = ACTIONS(2791), + [anon_sym_union] = ACTIONS(2791), + [anon_sym_if] = ACTIONS(2791), + [anon_sym_switch] = ACTIONS(2791), + [anon_sym_case] = ACTIONS(2791), + [anon_sym_default] = ACTIONS(2791), + [anon_sym_while] = ACTIONS(2791), + [anon_sym_do] = ACTIONS(2791), + [anon_sym_for] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2791), + [anon_sym_break] = ACTIONS(2791), + [anon_sym_continue] = ACTIONS(2791), + [anon_sym_goto] = ACTIONS(2791), + [anon_sym_not] = ACTIONS(2791), + [anon_sym_compl] = ACTIONS(2791), + [anon_sym_DASH_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2793), + [anon_sym_sizeof] = ACTIONS(2791), + [sym_number_literal] = ACTIONS(2793), + [anon_sym_L_SQUOTE] = ACTIONS(2793), + [anon_sym_u_SQUOTE] = ACTIONS(2793), + [anon_sym_U_SQUOTE] = ACTIONS(2793), + [anon_sym_u8_SQUOTE] = ACTIONS(2793), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_L_DQUOTE] = ACTIONS(2793), + [anon_sym_u_DQUOTE] = ACTIONS(2793), + [anon_sym_U_DQUOTE] = ACTIONS(2793), + [anon_sym_u8_DQUOTE] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [sym_true] = ACTIONS(2791), + [sym_false] = ACTIONS(2791), + [sym_null] = ACTIONS(2791), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2791), + [anon_sym_decltype] = ACTIONS(2791), + [anon_sym_virtual] = ACTIONS(2791), + [anon_sym_explicit] = ACTIONS(2791), + [anon_sym_typename] = ACTIONS(2791), + [anon_sym_template] = ACTIONS(2791), + [anon_sym_operator] = ACTIONS(2791), + [anon_sym_try] = ACTIONS(2791), + [anon_sym_delete] = ACTIONS(2791), + [anon_sym_throw] = ACTIONS(2791), + [anon_sym_namespace] = ACTIONS(2791), + [anon_sym_using] = ACTIONS(2791), + [anon_sym_static_assert] = ACTIONS(2791), + [anon_sym_concept] = ACTIONS(2791), + [anon_sym_co_return] = ACTIONS(2791), + [anon_sym_co_yield] = ACTIONS(2791), + [anon_sym_R_DQUOTE] = ACTIONS(2793), + [anon_sym_LR_DQUOTE] = ACTIONS(2793), + [anon_sym_uR_DQUOTE] = ACTIONS(2793), + [anon_sym_UR_DQUOTE] = ACTIONS(2793), + [anon_sym_u8R_DQUOTE] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2791), + [anon_sym_new] = ACTIONS(2791), + [anon_sym_requires] = ACTIONS(2791), + [sym_this] = ACTIONS(2791), + [sym_nullptr] = ACTIONS(2791), + }, + [937] = { + [ts_builtin_sym_end] = ACTIONS(2757), + [sym_identifier] = ACTIONS(2755), + [aux_sym_preproc_include_token1] = ACTIONS(2755), + [aux_sym_preproc_def_token1] = ACTIONS(2755), + [aux_sym_preproc_if_token1] = ACTIONS(2755), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2755), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2755), + [sym_preproc_directive] = ACTIONS(2755), + [anon_sym_LPAREN2] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_TILDE] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_AMP_AMP] = ACTIONS(2757), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_SEMI] = ACTIONS(2757), + [anon_sym_typedef] = ACTIONS(2755), + [anon_sym_extern] = ACTIONS(2755), + [anon_sym___attribute__] = ACTIONS(2755), + [anon_sym_COLON_COLON] = ACTIONS(2757), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2757), + [anon_sym___declspec] = ACTIONS(2755), + [anon_sym___based] = ACTIONS(2755), + [anon_sym___cdecl] = ACTIONS(2755), + [anon_sym___clrcall] = ACTIONS(2755), + [anon_sym___stdcall] = ACTIONS(2755), + [anon_sym___fastcall] = ACTIONS(2755), + [anon_sym___thiscall] = ACTIONS(2755), + [anon_sym___vectorcall] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_static] = ACTIONS(2755), + [anon_sym_register] = ACTIONS(2755), + [anon_sym_inline] = ACTIONS(2755), + [anon_sym_thread_local] = ACTIONS(2755), + [anon_sym_input] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_volatile] = ACTIONS(2755), + [anon_sym_restrict] = ACTIONS(2755), + [anon_sym__Atomic] = ACTIONS(2755), + [anon_sym_mutable] = ACTIONS(2755), + [anon_sym_constexpr] = ACTIONS(2755), + [anon_sym_constinit] = ACTIONS(2755), + [anon_sym_consteval] = ACTIONS(2755), + [anon_sym_signed] = ACTIONS(2755), + [anon_sym_unsigned] = ACTIONS(2755), + [anon_sym_long] = ACTIONS(2755), + [anon_sym_short] = ACTIONS(2755), + [sym_primitive_type] = ACTIONS(2755), + [anon_sym_enum] = ACTIONS(2755), + [anon_sym_class] = ACTIONS(2755), + [anon_sym_struct] = ACTIONS(2755), + [anon_sym_union] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_switch] = ACTIONS(2755), + [anon_sym_case] = ACTIONS(2755), + [anon_sym_default] = ACTIONS(2755), + [anon_sym_while] = ACTIONS(2755), + [anon_sym_do] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_goto] = ACTIONS(2755), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_compl] = ACTIONS(2755), + [anon_sym_DASH_DASH] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2757), + [anon_sym_sizeof] = ACTIONS(2755), + [sym_number_literal] = ACTIONS(2757), + [anon_sym_L_SQUOTE] = ACTIONS(2757), + [anon_sym_u_SQUOTE] = ACTIONS(2757), + [anon_sym_U_SQUOTE] = ACTIONS(2757), + [anon_sym_u8_SQUOTE] = ACTIONS(2757), + [anon_sym_SQUOTE] = ACTIONS(2757), + [anon_sym_L_DQUOTE] = ACTIONS(2757), + [anon_sym_u_DQUOTE] = ACTIONS(2757), + [anon_sym_U_DQUOTE] = ACTIONS(2757), + [anon_sym_u8_DQUOTE] = ACTIONS(2757), + [anon_sym_DQUOTE] = ACTIONS(2757), + [sym_true] = ACTIONS(2755), + [sym_false] = ACTIONS(2755), + [sym_null] = ACTIONS(2755), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2755), + [anon_sym_decltype] = ACTIONS(2755), + [anon_sym_virtual] = ACTIONS(2755), + [anon_sym_explicit] = ACTIONS(2755), + [anon_sym_typename] = ACTIONS(2755), + [anon_sym_template] = ACTIONS(2755), + [anon_sym_operator] = ACTIONS(2755), + [anon_sym_try] = ACTIONS(2755), + [anon_sym_delete] = ACTIONS(2755), + [anon_sym_throw] = ACTIONS(2755), + [anon_sym_namespace] = ACTIONS(2755), + [anon_sym_using] = ACTIONS(2755), + [anon_sym_static_assert] = ACTIONS(2755), + [anon_sym_concept] = ACTIONS(2755), + [anon_sym_co_return] = ACTIONS(2755), + [anon_sym_co_yield] = ACTIONS(2755), + [anon_sym_R_DQUOTE] = ACTIONS(2757), + [anon_sym_LR_DQUOTE] = ACTIONS(2757), + [anon_sym_uR_DQUOTE] = ACTIONS(2757), + [anon_sym_UR_DQUOTE] = ACTIONS(2757), + [anon_sym_u8R_DQUOTE] = ACTIONS(2757), + [anon_sym_co_await] = ACTIONS(2755), + [anon_sym_new] = ACTIONS(2755), + [anon_sym_requires] = ACTIONS(2755), + [sym_this] = ACTIONS(2755), + [sym_nullptr] = ACTIONS(2755), + }, + [938] = { + [ts_builtin_sym_end] = ACTIONS(2753), + [sym_identifier] = ACTIONS(2751), + [aux_sym_preproc_include_token1] = ACTIONS(2751), + [aux_sym_preproc_def_token1] = ACTIONS(2751), + [aux_sym_preproc_if_token1] = ACTIONS(2751), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2751), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2751), + [sym_preproc_directive] = ACTIONS(2751), + [anon_sym_LPAREN2] = ACTIONS(2753), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_TILDE] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_STAR] = ACTIONS(2753), + [anon_sym_AMP_AMP] = ACTIONS(2753), + [anon_sym_AMP] = ACTIONS(2751), + [anon_sym_SEMI] = ACTIONS(2753), + [anon_sym_typedef] = ACTIONS(2751), + [anon_sym_extern] = ACTIONS(2751), + [anon_sym___attribute__] = ACTIONS(2751), + [anon_sym_COLON_COLON] = ACTIONS(2753), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), + [anon_sym___declspec] = ACTIONS(2751), + [anon_sym___based] = ACTIONS(2751), + [anon_sym___cdecl] = ACTIONS(2751), + [anon_sym___clrcall] = ACTIONS(2751), + [anon_sym___stdcall] = ACTIONS(2751), + [anon_sym___fastcall] = ACTIONS(2751), + [anon_sym___thiscall] = ACTIONS(2751), + [anon_sym___vectorcall] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_static] = ACTIONS(2751), + [anon_sym_register] = ACTIONS(2751), + [anon_sym_inline] = ACTIONS(2751), + [anon_sym_thread_local] = ACTIONS(2751), + [anon_sym_input] = ACTIONS(2751), + [anon_sym_const] = ACTIONS(2751), + [anon_sym_volatile] = ACTIONS(2751), + [anon_sym_restrict] = ACTIONS(2751), + [anon_sym__Atomic] = ACTIONS(2751), + [anon_sym_mutable] = ACTIONS(2751), + [anon_sym_constexpr] = ACTIONS(2751), + [anon_sym_constinit] = ACTIONS(2751), + [anon_sym_consteval] = ACTIONS(2751), + [anon_sym_signed] = ACTIONS(2751), + [anon_sym_unsigned] = ACTIONS(2751), + [anon_sym_long] = ACTIONS(2751), + [anon_sym_short] = ACTIONS(2751), + [sym_primitive_type] = ACTIONS(2751), + [anon_sym_enum] = ACTIONS(2751), + [anon_sym_class] = ACTIONS(2751), + [anon_sym_struct] = ACTIONS(2751), + [anon_sym_union] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(2751), + [anon_sym_switch] = ACTIONS(2751), + [anon_sym_case] = ACTIONS(2751), + [anon_sym_default] = ACTIONS(2751), + [anon_sym_while] = ACTIONS(2751), + [anon_sym_do] = ACTIONS(2751), + [anon_sym_for] = ACTIONS(2751), + [anon_sym_return] = ACTIONS(2751), + [anon_sym_break] = ACTIONS(2751), + [anon_sym_continue] = ACTIONS(2751), + [anon_sym_goto] = ACTIONS(2751), + [anon_sym_not] = ACTIONS(2751), + [anon_sym_compl] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2753), + [anon_sym_PLUS_PLUS] = ACTIONS(2753), + [anon_sym_sizeof] = ACTIONS(2751), + [sym_number_literal] = ACTIONS(2753), + [anon_sym_L_SQUOTE] = ACTIONS(2753), + [anon_sym_u_SQUOTE] = ACTIONS(2753), + [anon_sym_U_SQUOTE] = ACTIONS(2753), + [anon_sym_u8_SQUOTE] = ACTIONS(2753), + [anon_sym_SQUOTE] = ACTIONS(2753), + [anon_sym_L_DQUOTE] = ACTIONS(2753), + [anon_sym_u_DQUOTE] = ACTIONS(2753), + [anon_sym_U_DQUOTE] = ACTIONS(2753), + [anon_sym_u8_DQUOTE] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2753), + [sym_true] = ACTIONS(2751), + [sym_false] = ACTIONS(2751), + [sym_null] = ACTIONS(2751), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2751), + [anon_sym_decltype] = ACTIONS(2751), + [anon_sym_virtual] = ACTIONS(2751), + [anon_sym_explicit] = ACTIONS(2751), + [anon_sym_typename] = ACTIONS(2751), + [anon_sym_template] = ACTIONS(2751), + [anon_sym_operator] = ACTIONS(2751), + [anon_sym_try] = ACTIONS(2751), + [anon_sym_delete] = ACTIONS(2751), + [anon_sym_throw] = ACTIONS(2751), + [anon_sym_namespace] = ACTIONS(2751), + [anon_sym_using] = ACTIONS(2751), + [anon_sym_static_assert] = ACTIONS(2751), + [anon_sym_concept] = ACTIONS(2751), + [anon_sym_co_return] = ACTIONS(2751), + [anon_sym_co_yield] = ACTIONS(2751), + [anon_sym_R_DQUOTE] = ACTIONS(2753), + [anon_sym_LR_DQUOTE] = ACTIONS(2753), + [anon_sym_uR_DQUOTE] = ACTIONS(2753), + [anon_sym_UR_DQUOTE] = ACTIONS(2753), + [anon_sym_u8R_DQUOTE] = ACTIONS(2753), + [anon_sym_co_await] = ACTIONS(2751), + [anon_sym_new] = ACTIONS(2751), + [anon_sym_requires] = ACTIONS(2751), + [sym_this] = ACTIONS(2751), + [sym_nullptr] = ACTIONS(2751), + }, + [939] = { + [sym_identifier] = ACTIONS(2783), + [aux_sym_preproc_include_token1] = ACTIONS(2783), + [aux_sym_preproc_def_token1] = ACTIONS(2783), + [aux_sym_preproc_if_token1] = ACTIONS(2783), + [aux_sym_preproc_if_token2] = ACTIONS(2783), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), + [sym_preproc_directive] = ACTIONS(2783), + [anon_sym_LPAREN2] = ACTIONS(2785), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_AMP_AMP] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_SEMI] = ACTIONS(2785), + [anon_sym_typedef] = ACTIONS(2783), + [anon_sym_extern] = ACTIONS(2783), + [anon_sym___attribute__] = ACTIONS(2783), + [anon_sym_COLON_COLON] = ACTIONS(2785), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2785), + [anon_sym___declspec] = ACTIONS(2783), + [anon_sym___based] = ACTIONS(2783), + [anon_sym___cdecl] = ACTIONS(2783), + [anon_sym___clrcall] = ACTIONS(2783), + [anon_sym___stdcall] = ACTIONS(2783), + [anon_sym___fastcall] = ACTIONS(2783), + [anon_sym___thiscall] = ACTIONS(2783), + [anon_sym___vectorcall] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2785), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_static] = ACTIONS(2783), + [anon_sym_register] = ACTIONS(2783), + [anon_sym_inline] = ACTIONS(2783), + [anon_sym_thread_local] = ACTIONS(2783), + [anon_sym_input] = ACTIONS(2783), + [anon_sym_const] = ACTIONS(2783), + [anon_sym_volatile] = ACTIONS(2783), + [anon_sym_restrict] = ACTIONS(2783), + [anon_sym__Atomic] = ACTIONS(2783), + [anon_sym_mutable] = ACTIONS(2783), + [anon_sym_constexpr] = ACTIONS(2783), + [anon_sym_constinit] = ACTIONS(2783), + [anon_sym_consteval] = ACTIONS(2783), + [anon_sym_signed] = ACTIONS(2783), + [anon_sym_unsigned] = ACTIONS(2783), + [anon_sym_long] = ACTIONS(2783), + [anon_sym_short] = ACTIONS(2783), + [sym_primitive_type] = ACTIONS(2783), + [anon_sym_enum] = ACTIONS(2783), + [anon_sym_class] = ACTIONS(2783), + [anon_sym_struct] = ACTIONS(2783), + [anon_sym_union] = ACTIONS(2783), + [anon_sym_if] = ACTIONS(2783), + [anon_sym_switch] = ACTIONS(2783), + [anon_sym_case] = ACTIONS(2783), + [anon_sym_default] = ACTIONS(2783), + [anon_sym_while] = ACTIONS(2783), + [anon_sym_do] = ACTIONS(2783), + [anon_sym_for] = ACTIONS(2783), + [anon_sym_return] = ACTIONS(2783), + [anon_sym_break] = ACTIONS(2783), + [anon_sym_continue] = ACTIONS(2783), + [anon_sym_goto] = ACTIONS(2783), + [anon_sym_not] = ACTIONS(2783), + [anon_sym_compl] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2785), + [anon_sym_PLUS_PLUS] = ACTIONS(2785), + [anon_sym_sizeof] = ACTIONS(2783), + [sym_number_literal] = ACTIONS(2785), + [anon_sym_L_SQUOTE] = ACTIONS(2785), + [anon_sym_u_SQUOTE] = ACTIONS(2785), + [anon_sym_U_SQUOTE] = ACTIONS(2785), + [anon_sym_u8_SQUOTE] = ACTIONS(2785), + [anon_sym_SQUOTE] = ACTIONS(2785), + [anon_sym_L_DQUOTE] = ACTIONS(2785), + [anon_sym_u_DQUOTE] = ACTIONS(2785), + [anon_sym_U_DQUOTE] = ACTIONS(2785), + [anon_sym_u8_DQUOTE] = ACTIONS(2785), + [anon_sym_DQUOTE] = ACTIONS(2785), + [sym_true] = ACTIONS(2783), + [sym_false] = ACTIONS(2783), + [sym_null] = ACTIONS(2783), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2783), + [anon_sym_decltype] = ACTIONS(2783), + [anon_sym_virtual] = ACTIONS(2783), + [anon_sym_explicit] = ACTIONS(2783), + [anon_sym_typename] = ACTIONS(2783), + [anon_sym_template] = ACTIONS(2783), + [anon_sym_operator] = ACTIONS(2783), + [anon_sym_try] = ACTIONS(2783), + [anon_sym_delete] = ACTIONS(2783), + [anon_sym_throw] = ACTIONS(2783), + [anon_sym_namespace] = ACTIONS(2783), + [anon_sym_using] = ACTIONS(2783), + [anon_sym_static_assert] = ACTIONS(2783), + [anon_sym_concept] = ACTIONS(2783), + [anon_sym_co_return] = ACTIONS(2783), + [anon_sym_co_yield] = ACTIONS(2783), + [anon_sym_R_DQUOTE] = ACTIONS(2785), + [anon_sym_LR_DQUOTE] = ACTIONS(2785), + [anon_sym_uR_DQUOTE] = ACTIONS(2785), + [anon_sym_UR_DQUOTE] = ACTIONS(2785), + [anon_sym_u8R_DQUOTE] = ACTIONS(2785), + [anon_sym_co_await] = ACTIONS(2783), + [anon_sym_new] = ACTIONS(2783), + [anon_sym_requires] = ACTIONS(2783), + [sym_this] = ACTIONS(2783), + [sym_nullptr] = ACTIONS(2783), + }, + [940] = { + [sym_identifier] = ACTIONS(2771), + [aux_sym_preproc_include_token1] = ACTIONS(2771), + [aux_sym_preproc_def_token1] = ACTIONS(2771), + [aux_sym_preproc_if_token1] = ACTIONS(2771), + [aux_sym_preproc_if_token2] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2771), + [sym_preproc_directive] = ACTIONS(2771), + [anon_sym_LPAREN2] = ACTIONS(2773), + [anon_sym_BANG] = ACTIONS(2773), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym_typedef] = ACTIONS(2771), + [anon_sym_extern] = ACTIONS(2771), + [anon_sym___attribute__] = ACTIONS(2771), + [anon_sym_COLON_COLON] = ACTIONS(2773), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2773), + [anon_sym___declspec] = ACTIONS(2771), + [anon_sym___based] = ACTIONS(2771), + [anon_sym___cdecl] = ACTIONS(2771), + [anon_sym___clrcall] = ACTIONS(2771), + [anon_sym___stdcall] = ACTIONS(2771), + [anon_sym___fastcall] = ACTIONS(2771), + [anon_sym___thiscall] = ACTIONS(2771), + [anon_sym___vectorcall] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_static] = ACTIONS(2771), + [anon_sym_register] = ACTIONS(2771), + [anon_sym_inline] = ACTIONS(2771), + [anon_sym_thread_local] = ACTIONS(2771), + [anon_sym_input] = ACTIONS(2771), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_volatile] = ACTIONS(2771), + [anon_sym_restrict] = ACTIONS(2771), + [anon_sym__Atomic] = ACTIONS(2771), + [anon_sym_mutable] = ACTIONS(2771), + [anon_sym_constexpr] = ACTIONS(2771), + [anon_sym_constinit] = ACTIONS(2771), + [anon_sym_consteval] = ACTIONS(2771), + [anon_sym_signed] = ACTIONS(2771), + [anon_sym_unsigned] = ACTIONS(2771), + [anon_sym_long] = ACTIONS(2771), + [anon_sym_short] = ACTIONS(2771), + [sym_primitive_type] = ACTIONS(2771), + [anon_sym_enum] = ACTIONS(2771), + [anon_sym_class] = ACTIONS(2771), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(2771), + [anon_sym_switch] = ACTIONS(2771), + [anon_sym_case] = ACTIONS(2771), + [anon_sym_default] = ACTIONS(2771), + [anon_sym_while] = ACTIONS(2771), + [anon_sym_do] = ACTIONS(2771), + [anon_sym_for] = ACTIONS(2771), + [anon_sym_return] = ACTIONS(2771), + [anon_sym_break] = ACTIONS(2771), + [anon_sym_continue] = ACTIONS(2771), + [anon_sym_goto] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2771), + [anon_sym_compl] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(2773), + [anon_sym_sizeof] = ACTIONS(2771), + [sym_number_literal] = ACTIONS(2773), + [anon_sym_L_SQUOTE] = ACTIONS(2773), + [anon_sym_u_SQUOTE] = ACTIONS(2773), + [anon_sym_U_SQUOTE] = ACTIONS(2773), + [anon_sym_u8_SQUOTE] = ACTIONS(2773), + [anon_sym_SQUOTE] = ACTIONS(2773), + [anon_sym_L_DQUOTE] = ACTIONS(2773), + [anon_sym_u_DQUOTE] = ACTIONS(2773), + [anon_sym_U_DQUOTE] = ACTIONS(2773), + [anon_sym_u8_DQUOTE] = ACTIONS(2773), + [anon_sym_DQUOTE] = ACTIONS(2773), + [sym_true] = ACTIONS(2771), + [sym_false] = ACTIONS(2771), + [sym_null] = ACTIONS(2771), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2771), + [anon_sym_decltype] = ACTIONS(2771), + [anon_sym_virtual] = ACTIONS(2771), + [anon_sym_explicit] = ACTIONS(2771), + [anon_sym_typename] = ACTIONS(2771), + [anon_sym_template] = ACTIONS(2771), + [anon_sym_operator] = ACTIONS(2771), + [anon_sym_try] = ACTIONS(2771), + [anon_sym_delete] = ACTIONS(2771), + [anon_sym_throw] = ACTIONS(2771), + [anon_sym_namespace] = ACTIONS(2771), + [anon_sym_using] = ACTIONS(2771), + [anon_sym_static_assert] = ACTIONS(2771), + [anon_sym_concept] = ACTIONS(2771), + [anon_sym_co_return] = ACTIONS(2771), + [anon_sym_co_yield] = ACTIONS(2771), + [anon_sym_R_DQUOTE] = ACTIONS(2773), + [anon_sym_LR_DQUOTE] = ACTIONS(2773), + [anon_sym_uR_DQUOTE] = ACTIONS(2773), + [anon_sym_UR_DQUOTE] = ACTIONS(2773), + [anon_sym_u8R_DQUOTE] = ACTIONS(2773), + [anon_sym_co_await] = ACTIONS(2771), + [anon_sym_new] = ACTIONS(2771), + [anon_sym_requires] = ACTIONS(2771), + [sym_this] = ACTIONS(2771), + [sym_nullptr] = ACTIONS(2771), + }, + [941] = { + [ts_builtin_sym_end] = ACTIONS(2749), + [sym_identifier] = ACTIONS(2747), + [aux_sym_preproc_include_token1] = ACTIONS(2747), + [aux_sym_preproc_def_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), + [sym_preproc_directive] = ACTIONS(2747), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_typedef] = ACTIONS(2747), + [anon_sym_extern] = ACTIONS(2747), + [anon_sym___attribute__] = ACTIONS(2747), + [anon_sym_COLON_COLON] = ACTIONS(2749), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), + [anon_sym___declspec] = ACTIONS(2747), + [anon_sym___based] = ACTIONS(2747), + [anon_sym___cdecl] = ACTIONS(2747), + [anon_sym___clrcall] = ACTIONS(2747), + [anon_sym___stdcall] = ACTIONS(2747), + [anon_sym___fastcall] = ACTIONS(2747), + [anon_sym___thiscall] = ACTIONS(2747), + [anon_sym___vectorcall] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_static] = ACTIONS(2747), + [anon_sym_register] = ACTIONS(2747), + [anon_sym_inline] = ACTIONS(2747), + [anon_sym_thread_local] = ACTIONS(2747), + [anon_sym_input] = ACTIONS(2747), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_volatile] = ACTIONS(2747), + [anon_sym_restrict] = ACTIONS(2747), + [anon_sym__Atomic] = ACTIONS(2747), + [anon_sym_mutable] = ACTIONS(2747), + [anon_sym_constexpr] = ACTIONS(2747), + [anon_sym_constinit] = ACTIONS(2747), + [anon_sym_consteval] = ACTIONS(2747), + [anon_sym_signed] = ACTIONS(2747), + [anon_sym_unsigned] = ACTIONS(2747), + [anon_sym_long] = ACTIONS(2747), + [anon_sym_short] = ACTIONS(2747), + [sym_primitive_type] = ACTIONS(2747), + [anon_sym_enum] = ACTIONS(2747), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2747), + [anon_sym_union] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2747), + [anon_sym_case] = ACTIONS(2747), + [anon_sym_default] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_do] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_goto] = ACTIONS(2747), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_compl] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_sizeof] = ACTIONS(2747), + [sym_number_literal] = ACTIONS(2749), + [anon_sym_L_SQUOTE] = ACTIONS(2749), + [anon_sym_u_SQUOTE] = ACTIONS(2749), + [anon_sym_U_SQUOTE] = ACTIONS(2749), + [anon_sym_u8_SQUOTE] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_L_DQUOTE] = ACTIONS(2749), + [anon_sym_u_DQUOTE] = ACTIONS(2749), + [anon_sym_U_DQUOTE] = ACTIONS(2749), + [anon_sym_u8_DQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [sym_null] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2747), + [anon_sym_decltype] = ACTIONS(2747), + [anon_sym_virtual] = ACTIONS(2747), + [anon_sym_explicit] = ACTIONS(2747), + [anon_sym_typename] = ACTIONS(2747), + [anon_sym_template] = ACTIONS(2747), + [anon_sym_operator] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_delete] = ACTIONS(2747), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_namespace] = ACTIONS(2747), + [anon_sym_using] = ACTIONS(2747), + [anon_sym_static_assert] = ACTIONS(2747), + [anon_sym_concept] = ACTIONS(2747), + [anon_sym_co_return] = ACTIONS(2747), + [anon_sym_co_yield] = ACTIONS(2747), + [anon_sym_R_DQUOTE] = ACTIONS(2749), + [anon_sym_LR_DQUOTE] = ACTIONS(2749), + [anon_sym_uR_DQUOTE] = ACTIONS(2749), + [anon_sym_UR_DQUOTE] = ACTIONS(2749), + [anon_sym_u8R_DQUOTE] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_requires] = ACTIONS(2747), + [sym_this] = ACTIONS(2747), + [sym_nullptr] = ACTIONS(2747), + }, + [942] = { + [sym_identifier] = ACTIONS(2701), + [aux_sym_preproc_include_token1] = ACTIONS(2701), + [aux_sym_preproc_def_token1] = ACTIONS(2701), + [aux_sym_preproc_if_token1] = ACTIONS(2701), + [aux_sym_preproc_if_token2] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2701), + [sym_preproc_directive] = ACTIONS(2701), + [anon_sym_LPAREN2] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym___attribute__] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2703), + [anon_sym___declspec] = ACTIONS(2701), + [anon_sym___based] = ACTIONS(2701), + [anon_sym___cdecl] = ACTIONS(2701), + [anon_sym___clrcall] = ACTIONS(2701), + [anon_sym___stdcall] = ACTIONS(2701), + [anon_sym___fastcall] = ACTIONS(2701), + [anon_sym___thiscall] = ACTIONS(2701), + [anon_sym___vectorcall] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_register] = ACTIONS(2701), + [anon_sym_inline] = ACTIONS(2701), + [anon_sym_thread_local] = ACTIONS(2701), + [anon_sym_input] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_volatile] = ACTIONS(2701), + [anon_sym_restrict] = ACTIONS(2701), + [anon_sym__Atomic] = ACTIONS(2701), + [anon_sym_mutable] = ACTIONS(2701), + [anon_sym_constexpr] = ACTIONS(2701), + [anon_sym_constinit] = ACTIONS(2701), + [anon_sym_consteval] = ACTIONS(2701), + [anon_sym_signed] = ACTIONS(2701), + [anon_sym_unsigned] = ACTIONS(2701), + [anon_sym_long] = ACTIONS(2701), + [anon_sym_short] = ACTIONS(2701), + [sym_primitive_type] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_goto] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(2701), + [anon_sym_compl] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_sizeof] = ACTIONS(2701), + [sym_number_literal] = ACTIONS(2703), + [anon_sym_L_SQUOTE] = ACTIONS(2703), + [anon_sym_u_SQUOTE] = ACTIONS(2703), + [anon_sym_U_SQUOTE] = ACTIONS(2703), + [anon_sym_u8_SQUOTE] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2703), + [anon_sym_L_DQUOTE] = ACTIONS(2703), + [anon_sym_u_DQUOTE] = ACTIONS(2703), + [anon_sym_U_DQUOTE] = ACTIONS(2703), + [anon_sym_u8_DQUOTE] = ACTIONS(2703), + [anon_sym_DQUOTE] = ACTIONS(2703), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_null] = ACTIONS(2701), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2701), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_virtual] = ACTIONS(2701), + [anon_sym_explicit] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2701), + [anon_sym_template] = ACTIONS(2701), + [anon_sym_operator] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_delete] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_namespace] = ACTIONS(2701), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_static_assert] = ACTIONS(2701), + [anon_sym_concept] = ACTIONS(2701), + [anon_sym_co_return] = ACTIONS(2701), + [anon_sym_co_yield] = ACTIONS(2701), + [anon_sym_R_DQUOTE] = ACTIONS(2703), + [anon_sym_LR_DQUOTE] = ACTIONS(2703), + [anon_sym_uR_DQUOTE] = ACTIONS(2703), + [anon_sym_UR_DQUOTE] = ACTIONS(2703), + [anon_sym_u8R_DQUOTE] = ACTIONS(2703), + [anon_sym_co_await] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_requires] = ACTIONS(2701), + [sym_this] = ACTIONS(2701), + [sym_nullptr] = ACTIONS(2701), + }, + [943] = { + [ts_builtin_sym_end] = ACTIONS(2749), + [sym_identifier] = ACTIONS(2747), + [aux_sym_preproc_include_token1] = ACTIONS(2747), + [aux_sym_preproc_def_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), + [sym_preproc_directive] = ACTIONS(2747), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_typedef] = ACTIONS(2747), + [anon_sym_extern] = ACTIONS(2747), + [anon_sym___attribute__] = ACTIONS(2747), + [anon_sym_COLON_COLON] = ACTIONS(2749), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), + [anon_sym___declspec] = ACTIONS(2747), + [anon_sym___based] = ACTIONS(2747), + [anon_sym___cdecl] = ACTIONS(2747), + [anon_sym___clrcall] = ACTIONS(2747), + [anon_sym___stdcall] = ACTIONS(2747), + [anon_sym___fastcall] = ACTIONS(2747), + [anon_sym___thiscall] = ACTIONS(2747), + [anon_sym___vectorcall] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_static] = ACTIONS(2747), + [anon_sym_register] = ACTIONS(2747), + [anon_sym_inline] = ACTIONS(2747), + [anon_sym_thread_local] = ACTIONS(2747), + [anon_sym_input] = ACTIONS(2747), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_volatile] = ACTIONS(2747), + [anon_sym_restrict] = ACTIONS(2747), + [anon_sym__Atomic] = ACTIONS(2747), + [anon_sym_mutable] = ACTIONS(2747), + [anon_sym_constexpr] = ACTIONS(2747), + [anon_sym_constinit] = ACTIONS(2747), + [anon_sym_consteval] = ACTIONS(2747), + [anon_sym_signed] = ACTIONS(2747), + [anon_sym_unsigned] = ACTIONS(2747), + [anon_sym_long] = ACTIONS(2747), + [anon_sym_short] = ACTIONS(2747), + [sym_primitive_type] = ACTIONS(2747), + [anon_sym_enum] = ACTIONS(2747), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2747), + [anon_sym_union] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2747), + [anon_sym_case] = ACTIONS(2747), + [anon_sym_default] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_do] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_goto] = ACTIONS(2747), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_compl] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_sizeof] = ACTIONS(2747), + [sym_number_literal] = ACTIONS(2749), + [anon_sym_L_SQUOTE] = ACTIONS(2749), + [anon_sym_u_SQUOTE] = ACTIONS(2749), + [anon_sym_U_SQUOTE] = ACTIONS(2749), + [anon_sym_u8_SQUOTE] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_L_DQUOTE] = ACTIONS(2749), + [anon_sym_u_DQUOTE] = ACTIONS(2749), + [anon_sym_U_DQUOTE] = ACTIONS(2749), + [anon_sym_u8_DQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [sym_null] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2747), + [anon_sym_decltype] = ACTIONS(2747), + [anon_sym_virtual] = ACTIONS(2747), + [anon_sym_explicit] = ACTIONS(2747), + [anon_sym_typename] = ACTIONS(2747), + [anon_sym_template] = ACTIONS(2747), + [anon_sym_operator] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_delete] = ACTIONS(2747), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_namespace] = ACTIONS(2747), + [anon_sym_using] = ACTIONS(2747), + [anon_sym_static_assert] = ACTIONS(2747), + [anon_sym_concept] = ACTIONS(2747), + [anon_sym_co_return] = ACTIONS(2747), + [anon_sym_co_yield] = ACTIONS(2747), + [anon_sym_R_DQUOTE] = ACTIONS(2749), + [anon_sym_LR_DQUOTE] = ACTIONS(2749), + [anon_sym_uR_DQUOTE] = ACTIONS(2749), + [anon_sym_UR_DQUOTE] = ACTIONS(2749), + [anon_sym_u8R_DQUOTE] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_requires] = ACTIONS(2747), + [sym_this] = ACTIONS(2747), + [sym_nullptr] = ACTIONS(2747), + }, + [944] = { + [sym_identifier] = ACTIONS(2775), + [aux_sym_preproc_include_token1] = ACTIONS(2775), + [aux_sym_preproc_def_token1] = ACTIONS(2775), + [aux_sym_preproc_if_token1] = ACTIONS(2775), + [aux_sym_preproc_if_token2] = ACTIONS(2775), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2775), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2775), + [sym_preproc_directive] = ACTIONS(2775), + [anon_sym_LPAREN2] = ACTIONS(2777), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_TILDE] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2777), + [anon_sym_AMP_AMP] = ACTIONS(2777), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_SEMI] = ACTIONS(2777), + [anon_sym_typedef] = ACTIONS(2775), + [anon_sym_extern] = ACTIONS(2775), + [anon_sym___attribute__] = ACTIONS(2775), + [anon_sym_COLON_COLON] = ACTIONS(2777), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2777), + [anon_sym___declspec] = ACTIONS(2775), + [anon_sym___based] = ACTIONS(2775), + [anon_sym___cdecl] = ACTIONS(2775), + [anon_sym___clrcall] = ACTIONS(2775), + [anon_sym___stdcall] = ACTIONS(2775), + [anon_sym___fastcall] = ACTIONS(2775), + [anon_sym___thiscall] = ACTIONS(2775), + [anon_sym___vectorcall] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2775), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_register] = ACTIONS(2775), + [anon_sym_inline] = ACTIONS(2775), + [anon_sym_thread_local] = ACTIONS(2775), + [anon_sym_input] = ACTIONS(2775), + [anon_sym_const] = ACTIONS(2775), + [anon_sym_volatile] = ACTIONS(2775), + [anon_sym_restrict] = ACTIONS(2775), + [anon_sym__Atomic] = ACTIONS(2775), + [anon_sym_mutable] = ACTIONS(2775), + [anon_sym_constexpr] = ACTIONS(2775), + [anon_sym_constinit] = ACTIONS(2775), + [anon_sym_consteval] = ACTIONS(2775), + [anon_sym_signed] = ACTIONS(2775), + [anon_sym_unsigned] = ACTIONS(2775), + [anon_sym_long] = ACTIONS(2775), + [anon_sym_short] = ACTIONS(2775), + [sym_primitive_type] = ACTIONS(2775), + [anon_sym_enum] = ACTIONS(2775), + [anon_sym_class] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_union] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_switch] = ACTIONS(2775), + [anon_sym_case] = ACTIONS(2775), + [anon_sym_default] = ACTIONS(2775), + [anon_sym_while] = ACTIONS(2775), + [anon_sym_do] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2775), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2775), + [anon_sym_continue] = ACTIONS(2775), + [anon_sym_goto] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2775), + [anon_sym_compl] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2777), + [anon_sym_sizeof] = ACTIONS(2775), + [sym_number_literal] = ACTIONS(2777), + [anon_sym_L_SQUOTE] = ACTIONS(2777), + [anon_sym_u_SQUOTE] = ACTIONS(2777), + [anon_sym_U_SQUOTE] = ACTIONS(2777), + [anon_sym_u8_SQUOTE] = ACTIONS(2777), + [anon_sym_SQUOTE] = ACTIONS(2777), + [anon_sym_L_DQUOTE] = ACTIONS(2777), + [anon_sym_u_DQUOTE] = ACTIONS(2777), + [anon_sym_U_DQUOTE] = ACTIONS(2777), + [anon_sym_u8_DQUOTE] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2777), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [sym_null] = ACTIONS(2775), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2775), + [anon_sym_decltype] = ACTIONS(2775), + [anon_sym_virtual] = ACTIONS(2775), + [anon_sym_explicit] = ACTIONS(2775), + [anon_sym_typename] = ACTIONS(2775), + [anon_sym_template] = ACTIONS(2775), + [anon_sym_operator] = ACTIONS(2775), + [anon_sym_try] = ACTIONS(2775), + [anon_sym_delete] = ACTIONS(2775), + [anon_sym_throw] = ACTIONS(2775), + [anon_sym_namespace] = ACTIONS(2775), + [anon_sym_using] = ACTIONS(2775), + [anon_sym_static_assert] = ACTIONS(2775), + [anon_sym_concept] = ACTIONS(2775), + [anon_sym_co_return] = ACTIONS(2775), + [anon_sym_co_yield] = ACTIONS(2775), + [anon_sym_R_DQUOTE] = ACTIONS(2777), + [anon_sym_LR_DQUOTE] = ACTIONS(2777), + [anon_sym_uR_DQUOTE] = ACTIONS(2777), + [anon_sym_UR_DQUOTE] = ACTIONS(2777), + [anon_sym_u8R_DQUOTE] = ACTIONS(2777), + [anon_sym_co_await] = ACTIONS(2775), + [anon_sym_new] = ACTIONS(2775), + [anon_sym_requires] = ACTIONS(2775), + [sym_this] = ACTIONS(2775), + [sym_nullptr] = ACTIONS(2775), + }, + [945] = { + [ts_builtin_sym_end] = ACTIONS(2745), + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_include_token1] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym___cdecl] = ACTIONS(2743), + [anon_sym___clrcall] = ACTIONS(2743), + [anon_sym___stdcall] = ACTIONS(2743), + [anon_sym___fastcall] = ACTIONS(2743), + [anon_sym___thiscall] = ACTIONS(2743), + [anon_sym___vectorcall] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym_input] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2743), + [anon_sym_case] = ACTIONS(2743), + [anon_sym_default] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_do] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym_not] = ACTIONS(2743), + [anon_sym_compl] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_sizeof] = ACTIONS(2743), + [sym_number_literal] = ACTIONS(2745), + [anon_sym_L_SQUOTE] = ACTIONS(2745), + [anon_sym_u_SQUOTE] = ACTIONS(2745), + [anon_sym_U_SQUOTE] = ACTIONS(2745), + [anon_sym_u8_SQUOTE] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_L_DQUOTE] = ACTIONS(2745), + [anon_sym_u_DQUOTE] = ACTIONS(2745), + [anon_sym_U_DQUOTE] = ACTIONS(2745), + [anon_sym_u8_DQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_null] = ACTIONS(2743), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [anon_sym_delete] = ACTIONS(2743), + [anon_sym_throw] = ACTIONS(2743), + [anon_sym_namespace] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), + [anon_sym_concept] = ACTIONS(2743), + [anon_sym_co_return] = ACTIONS(2743), + [anon_sym_co_yield] = ACTIONS(2743), + [anon_sym_R_DQUOTE] = ACTIONS(2745), + [anon_sym_LR_DQUOTE] = ACTIONS(2745), + [anon_sym_uR_DQUOTE] = ACTIONS(2745), + [anon_sym_UR_DQUOTE] = ACTIONS(2745), + [anon_sym_u8R_DQUOTE] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2743), + [anon_sym_new] = ACTIONS(2743), + [anon_sym_requires] = ACTIONS(2743), + [sym_this] = ACTIONS(2743), + [sym_nullptr] = ACTIONS(2743), + }, + [946] = { + [sym_identifier] = ACTIONS(2739), + [aux_sym_preproc_include_token1] = ACTIONS(2739), + [aux_sym_preproc_def_token1] = ACTIONS(2739), + [aux_sym_preproc_if_token1] = ACTIONS(2739), + [aux_sym_preproc_if_token2] = ACTIONS(2739), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), + [sym_preproc_directive] = ACTIONS(2739), + [anon_sym_LPAREN2] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_PLUS] = ACTIONS(2739), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_AMP_AMP] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2739), + [anon_sym_SEMI] = ACTIONS(2741), + [anon_sym_typedef] = ACTIONS(2739), + [anon_sym_extern] = ACTIONS(2739), + [anon_sym___attribute__] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2741), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), + [anon_sym___declspec] = ACTIONS(2739), + [anon_sym___based] = ACTIONS(2739), + [anon_sym___cdecl] = ACTIONS(2739), + [anon_sym___clrcall] = ACTIONS(2739), + [anon_sym___stdcall] = ACTIONS(2739), + [anon_sym___fastcall] = ACTIONS(2739), + [anon_sym___thiscall] = ACTIONS(2739), + [anon_sym___vectorcall] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_static] = ACTIONS(2739), + [anon_sym_register] = ACTIONS(2739), + [anon_sym_inline] = ACTIONS(2739), + [anon_sym_thread_local] = ACTIONS(2739), + [anon_sym_input] = ACTIONS(2739), + [anon_sym_const] = ACTIONS(2739), + [anon_sym_volatile] = ACTIONS(2739), + [anon_sym_restrict] = ACTIONS(2739), + [anon_sym__Atomic] = ACTIONS(2739), + [anon_sym_mutable] = ACTIONS(2739), + [anon_sym_constexpr] = ACTIONS(2739), + [anon_sym_constinit] = ACTIONS(2739), + [anon_sym_consteval] = ACTIONS(2739), + [anon_sym_signed] = ACTIONS(2739), + [anon_sym_unsigned] = ACTIONS(2739), + [anon_sym_long] = ACTIONS(2739), + [anon_sym_short] = ACTIONS(2739), + [sym_primitive_type] = ACTIONS(2739), + [anon_sym_enum] = ACTIONS(2739), + [anon_sym_class] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2739), + [anon_sym_union] = ACTIONS(2739), + [anon_sym_if] = ACTIONS(2739), + [anon_sym_switch] = ACTIONS(2739), + [anon_sym_case] = ACTIONS(2739), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2739), + [anon_sym_do] = ACTIONS(2739), + [anon_sym_for] = ACTIONS(2739), + [anon_sym_return] = ACTIONS(2739), + [anon_sym_break] = ACTIONS(2739), + [anon_sym_continue] = ACTIONS(2739), + [anon_sym_goto] = ACTIONS(2739), + [anon_sym_not] = ACTIONS(2739), + [anon_sym_compl] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_sizeof] = ACTIONS(2739), + [sym_number_literal] = ACTIONS(2741), + [anon_sym_L_SQUOTE] = ACTIONS(2741), + [anon_sym_u_SQUOTE] = ACTIONS(2741), + [anon_sym_U_SQUOTE] = ACTIONS(2741), + [anon_sym_u8_SQUOTE] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_L_DQUOTE] = ACTIONS(2741), + [anon_sym_u_DQUOTE] = ACTIONS(2741), + [anon_sym_U_DQUOTE] = ACTIONS(2741), + [anon_sym_u8_DQUOTE] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2741), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2739), + [anon_sym_decltype] = ACTIONS(2739), + [anon_sym_virtual] = ACTIONS(2739), + [anon_sym_explicit] = ACTIONS(2739), + [anon_sym_typename] = ACTIONS(2739), + [anon_sym_template] = ACTIONS(2739), + [anon_sym_operator] = ACTIONS(2739), + [anon_sym_try] = ACTIONS(2739), + [anon_sym_delete] = ACTIONS(2739), + [anon_sym_throw] = ACTIONS(2739), + [anon_sym_namespace] = ACTIONS(2739), + [anon_sym_using] = ACTIONS(2739), + [anon_sym_static_assert] = ACTIONS(2739), + [anon_sym_concept] = ACTIONS(2739), + [anon_sym_co_return] = ACTIONS(2739), + [anon_sym_co_yield] = ACTIONS(2739), + [anon_sym_R_DQUOTE] = ACTIONS(2741), + [anon_sym_LR_DQUOTE] = ACTIONS(2741), + [anon_sym_uR_DQUOTE] = ACTIONS(2741), + [anon_sym_UR_DQUOTE] = ACTIONS(2741), + [anon_sym_u8R_DQUOTE] = ACTIONS(2741), + [anon_sym_co_await] = ACTIONS(2739), + [anon_sym_new] = ACTIONS(2739), + [anon_sym_requires] = ACTIONS(2739), + [sym_this] = ACTIONS(2739), + [sym_nullptr] = ACTIONS(2739), + }, + [947] = { + [sym_identifier] = ACTIONS(2767), + [aux_sym_preproc_include_token1] = ACTIONS(2767), + [aux_sym_preproc_def_token1] = ACTIONS(2767), + [aux_sym_preproc_if_token1] = ACTIONS(2767), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), + [sym_preproc_directive] = ACTIONS(2767), + [anon_sym_LPAREN2] = ACTIONS(2769), + [anon_sym_BANG] = ACTIONS(2769), + [anon_sym_TILDE] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_AMP_AMP] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_SEMI] = ACTIONS(2769), + [anon_sym_typedef] = ACTIONS(2767), + [anon_sym_extern] = ACTIONS(2767), + [anon_sym___attribute__] = ACTIONS(2767), + [anon_sym_COLON_COLON] = ACTIONS(2769), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), + [anon_sym___declspec] = ACTIONS(2767), + [anon_sym___based] = ACTIONS(2767), + [anon_sym___cdecl] = ACTIONS(2767), + [anon_sym___clrcall] = ACTIONS(2767), + [anon_sym___stdcall] = ACTIONS(2767), + [anon_sym___fastcall] = ACTIONS(2767), + [anon_sym___thiscall] = ACTIONS(2767), + [anon_sym___vectorcall] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2769), + [anon_sym_RBRACE] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_static] = ACTIONS(2767), + [anon_sym_register] = ACTIONS(2767), + [anon_sym_inline] = ACTIONS(2767), + [anon_sym_thread_local] = ACTIONS(2767), + [anon_sym_input] = ACTIONS(2767), + [anon_sym_const] = ACTIONS(2767), + [anon_sym_volatile] = ACTIONS(2767), + [anon_sym_restrict] = ACTIONS(2767), + [anon_sym__Atomic] = ACTIONS(2767), + [anon_sym_mutable] = ACTIONS(2767), + [anon_sym_constexpr] = ACTIONS(2767), + [anon_sym_constinit] = ACTIONS(2767), + [anon_sym_consteval] = ACTIONS(2767), + [anon_sym_signed] = ACTIONS(2767), + [anon_sym_unsigned] = ACTIONS(2767), + [anon_sym_long] = ACTIONS(2767), + [anon_sym_short] = ACTIONS(2767), + [sym_primitive_type] = ACTIONS(2767), + [anon_sym_enum] = ACTIONS(2767), + [anon_sym_class] = ACTIONS(2767), + [anon_sym_struct] = ACTIONS(2767), + [anon_sym_union] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2767), + [anon_sym_switch] = ACTIONS(2767), + [anon_sym_case] = ACTIONS(2767), + [anon_sym_default] = ACTIONS(2767), + [anon_sym_while] = ACTIONS(2767), + [anon_sym_do] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2767), + [anon_sym_return] = ACTIONS(2767), + [anon_sym_break] = ACTIONS(2767), + [anon_sym_continue] = ACTIONS(2767), + [anon_sym_goto] = ACTIONS(2767), + [anon_sym_not] = ACTIONS(2767), + [anon_sym_compl] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2769), + [anon_sym_PLUS_PLUS] = ACTIONS(2769), + [anon_sym_sizeof] = ACTIONS(2767), + [sym_number_literal] = ACTIONS(2769), + [anon_sym_L_SQUOTE] = ACTIONS(2769), + [anon_sym_u_SQUOTE] = ACTIONS(2769), + [anon_sym_U_SQUOTE] = ACTIONS(2769), + [anon_sym_u8_SQUOTE] = ACTIONS(2769), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_L_DQUOTE] = ACTIONS(2769), + [anon_sym_u_DQUOTE] = ACTIONS(2769), + [anon_sym_U_DQUOTE] = ACTIONS(2769), + [anon_sym_u8_DQUOTE] = ACTIONS(2769), + [anon_sym_DQUOTE] = ACTIONS(2769), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_null] = ACTIONS(2767), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2767), + [anon_sym_decltype] = ACTIONS(2767), + [anon_sym_virtual] = ACTIONS(2767), + [anon_sym_explicit] = ACTIONS(2767), + [anon_sym_typename] = ACTIONS(2767), + [anon_sym_template] = ACTIONS(2767), + [anon_sym_operator] = ACTIONS(2767), + [anon_sym_try] = ACTIONS(2767), + [anon_sym_delete] = ACTIONS(2767), + [anon_sym_throw] = ACTIONS(2767), + [anon_sym_namespace] = ACTIONS(2767), + [anon_sym_using] = ACTIONS(2767), + [anon_sym_static_assert] = ACTIONS(2767), + [anon_sym_concept] = ACTIONS(2767), + [anon_sym_co_return] = ACTIONS(2767), + [anon_sym_co_yield] = ACTIONS(2767), + [anon_sym_R_DQUOTE] = ACTIONS(2769), + [anon_sym_LR_DQUOTE] = ACTIONS(2769), + [anon_sym_uR_DQUOTE] = ACTIONS(2769), + [anon_sym_UR_DQUOTE] = ACTIONS(2769), + [anon_sym_u8R_DQUOTE] = ACTIONS(2769), + [anon_sym_co_await] = ACTIONS(2767), + [anon_sym_new] = ACTIONS(2767), + [anon_sym_requires] = ACTIONS(2767), + [sym_this] = ACTIONS(2767), + [sym_nullptr] = ACTIONS(2767), + }, + [948] = { + [sym_identifier] = ACTIONS(2763), + [aux_sym_preproc_include_token1] = ACTIONS(2763), + [aux_sym_preproc_def_token1] = ACTIONS(2763), + [aux_sym_preproc_if_token1] = ACTIONS(2763), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2763), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2763), + [sym_preproc_directive] = ACTIONS(2763), + [anon_sym_LPAREN2] = ACTIONS(2765), + [anon_sym_BANG] = ACTIONS(2765), + [anon_sym_TILDE] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_PLUS] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_AMP_AMP] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_SEMI] = ACTIONS(2765), + [anon_sym_typedef] = ACTIONS(2763), + [anon_sym_extern] = ACTIONS(2763), + [anon_sym___attribute__] = ACTIONS(2763), + [anon_sym_COLON_COLON] = ACTIONS(2765), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2765), + [anon_sym___declspec] = ACTIONS(2763), + [anon_sym___based] = ACTIONS(2763), + [anon_sym___cdecl] = ACTIONS(2763), + [anon_sym___clrcall] = ACTIONS(2763), + [anon_sym___stdcall] = ACTIONS(2763), + [anon_sym___fastcall] = ACTIONS(2763), + [anon_sym___thiscall] = ACTIONS(2763), + [anon_sym___vectorcall] = ACTIONS(2763), + [anon_sym_LBRACE] = ACTIONS(2765), + [anon_sym_RBRACE] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_static] = ACTIONS(2763), + [anon_sym_register] = ACTIONS(2763), + [anon_sym_inline] = ACTIONS(2763), + [anon_sym_thread_local] = ACTIONS(2763), + [anon_sym_input] = ACTIONS(2763), + [anon_sym_const] = ACTIONS(2763), + [anon_sym_volatile] = ACTIONS(2763), + [anon_sym_restrict] = ACTIONS(2763), + [anon_sym__Atomic] = ACTIONS(2763), + [anon_sym_mutable] = ACTIONS(2763), + [anon_sym_constexpr] = ACTIONS(2763), + [anon_sym_constinit] = ACTIONS(2763), + [anon_sym_consteval] = ACTIONS(2763), + [anon_sym_signed] = ACTIONS(2763), + [anon_sym_unsigned] = ACTIONS(2763), + [anon_sym_long] = ACTIONS(2763), + [anon_sym_short] = ACTIONS(2763), + [sym_primitive_type] = ACTIONS(2763), + [anon_sym_enum] = ACTIONS(2763), + [anon_sym_class] = ACTIONS(2763), + [anon_sym_struct] = ACTIONS(2763), + [anon_sym_union] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_switch] = ACTIONS(2763), + [anon_sym_case] = ACTIONS(2763), + [anon_sym_default] = ACTIONS(2763), + [anon_sym_while] = ACTIONS(2763), + [anon_sym_do] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2763), + [anon_sym_return] = ACTIONS(2763), + [anon_sym_break] = ACTIONS(2763), + [anon_sym_continue] = ACTIONS(2763), + [anon_sym_goto] = ACTIONS(2763), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_compl] = ACTIONS(2763), + [anon_sym_DASH_DASH] = ACTIONS(2765), + [anon_sym_PLUS_PLUS] = ACTIONS(2765), + [anon_sym_sizeof] = ACTIONS(2763), + [sym_number_literal] = ACTIONS(2765), + [anon_sym_L_SQUOTE] = ACTIONS(2765), + [anon_sym_u_SQUOTE] = ACTIONS(2765), + [anon_sym_U_SQUOTE] = ACTIONS(2765), + [anon_sym_u8_SQUOTE] = ACTIONS(2765), + [anon_sym_SQUOTE] = ACTIONS(2765), + [anon_sym_L_DQUOTE] = ACTIONS(2765), + [anon_sym_u_DQUOTE] = ACTIONS(2765), + [anon_sym_U_DQUOTE] = ACTIONS(2765), + [anon_sym_u8_DQUOTE] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2765), + [sym_true] = ACTIONS(2763), + [sym_false] = ACTIONS(2763), + [sym_null] = ACTIONS(2763), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2763), + [anon_sym_decltype] = ACTIONS(2763), + [anon_sym_virtual] = ACTIONS(2763), + [anon_sym_explicit] = ACTIONS(2763), + [anon_sym_typename] = ACTIONS(2763), + [anon_sym_template] = ACTIONS(2763), + [anon_sym_operator] = ACTIONS(2763), + [anon_sym_try] = ACTIONS(2763), + [anon_sym_delete] = ACTIONS(2763), + [anon_sym_throw] = ACTIONS(2763), + [anon_sym_namespace] = ACTIONS(2763), + [anon_sym_using] = ACTIONS(2763), + [anon_sym_static_assert] = ACTIONS(2763), + [anon_sym_concept] = ACTIONS(2763), + [anon_sym_co_return] = ACTIONS(2763), + [anon_sym_co_yield] = ACTIONS(2763), + [anon_sym_R_DQUOTE] = ACTIONS(2765), + [anon_sym_LR_DQUOTE] = ACTIONS(2765), + [anon_sym_uR_DQUOTE] = ACTIONS(2765), + [anon_sym_UR_DQUOTE] = ACTIONS(2765), + [anon_sym_u8R_DQUOTE] = ACTIONS(2765), + [anon_sym_co_await] = ACTIONS(2763), + [anon_sym_new] = ACTIONS(2763), + [anon_sym_requires] = ACTIONS(2763), + [sym_this] = ACTIONS(2763), + [sym_nullptr] = ACTIONS(2763), + }, + [949] = { + [ts_builtin_sym_end] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2623), + [aux_sym_preproc_include_token1] = ACTIONS(2623), + [aux_sym_preproc_def_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), + [sym_preproc_directive] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym___attribute__] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), + [anon_sym___declspec] = ACTIONS(2623), + [anon_sym___based] = ACTIONS(2623), + [anon_sym___cdecl] = ACTIONS(2623), + [anon_sym___clrcall] = ACTIONS(2623), + [anon_sym___stdcall] = ACTIONS(2623), + [anon_sym___fastcall] = ACTIONS(2623), + [anon_sym___thiscall] = ACTIONS(2623), + [anon_sym___vectorcall] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_thread_local] = ACTIONS(2623), + [anon_sym_input] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_mutable] = ACTIONS(2623), + [anon_sym_constexpr] = ACTIONS(2623), + [anon_sym_constinit] = ACTIONS(2623), + [anon_sym_consteval] = ACTIONS(2623), + [anon_sym_signed] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_compl] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_L_SQUOTE] = ACTIONS(2625), + [anon_sym_u_SQUOTE] = ACTIONS(2625), + [anon_sym_U_SQUOTE] = ACTIONS(2625), + [anon_sym_u8_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_L_DQUOTE] = ACTIONS(2625), + [anon_sym_u_DQUOTE] = ACTIONS(2625), + [anon_sym_U_DQUOTE] = ACTIONS(2625), + [anon_sym_u8_DQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2623), + [anon_sym_decltype] = ACTIONS(2623), + [anon_sym_virtual] = ACTIONS(2623), + [anon_sym_explicit] = ACTIONS(2623), + [anon_sym_typename] = ACTIONS(2623), + [anon_sym_template] = ACTIONS(2623), + [anon_sym_operator] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_namespace] = ACTIONS(2623), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_static_assert] = ACTIONS(2623), + [anon_sym_concept] = ACTIONS(2623), + [anon_sym_co_return] = ACTIONS(2623), + [anon_sym_co_yield] = ACTIONS(2623), + [anon_sym_R_DQUOTE] = ACTIONS(2625), + [anon_sym_LR_DQUOTE] = ACTIONS(2625), + [anon_sym_uR_DQUOTE] = ACTIONS(2625), + [anon_sym_UR_DQUOTE] = ACTIONS(2625), + [anon_sym_u8R_DQUOTE] = ACTIONS(2625), + [anon_sym_co_await] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_requires] = ACTIONS(2623), + [sym_this] = ACTIONS(2623), + [sym_nullptr] = ACTIONS(2623), + }, + [950] = { + [sym_identifier] = ACTIONS(2759), + [aux_sym_preproc_include_token1] = ACTIONS(2759), + [aux_sym_preproc_def_token1] = ACTIONS(2759), + [aux_sym_preproc_if_token1] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), + [sym_preproc_directive] = ACTIONS(2759), + [anon_sym_LPAREN2] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2759), + [anon_sym_PLUS] = ACTIONS(2759), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_SEMI] = ACTIONS(2761), + [anon_sym_typedef] = ACTIONS(2759), + [anon_sym_extern] = ACTIONS(2759), + [anon_sym___attribute__] = ACTIONS(2759), + [anon_sym_COLON_COLON] = ACTIONS(2761), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), + [anon_sym___declspec] = ACTIONS(2759), + [anon_sym___based] = ACTIONS(2759), + [anon_sym___cdecl] = ACTIONS(2759), + [anon_sym___clrcall] = ACTIONS(2759), + [anon_sym___stdcall] = ACTIONS(2759), + [anon_sym___fastcall] = ACTIONS(2759), + [anon_sym___thiscall] = ACTIONS(2759), + [anon_sym___vectorcall] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_RBRACE] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_static] = ACTIONS(2759), + [anon_sym_register] = ACTIONS(2759), + [anon_sym_inline] = ACTIONS(2759), + [anon_sym_thread_local] = ACTIONS(2759), + [anon_sym_input] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2759), + [anon_sym_volatile] = ACTIONS(2759), + [anon_sym_restrict] = ACTIONS(2759), + [anon_sym__Atomic] = ACTIONS(2759), + [anon_sym_mutable] = ACTIONS(2759), + [anon_sym_constexpr] = ACTIONS(2759), + [anon_sym_constinit] = ACTIONS(2759), + [anon_sym_consteval] = ACTIONS(2759), + [anon_sym_signed] = ACTIONS(2759), + [anon_sym_unsigned] = ACTIONS(2759), + [anon_sym_long] = ACTIONS(2759), + [anon_sym_short] = ACTIONS(2759), + [sym_primitive_type] = ACTIONS(2759), + [anon_sym_enum] = ACTIONS(2759), + [anon_sym_class] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2759), + [anon_sym_union] = ACTIONS(2759), + [anon_sym_if] = ACTIONS(2759), + [anon_sym_switch] = ACTIONS(2759), + [anon_sym_case] = ACTIONS(2759), + [anon_sym_default] = ACTIONS(2759), + [anon_sym_while] = ACTIONS(2759), + [anon_sym_do] = ACTIONS(2759), + [anon_sym_for] = ACTIONS(2759), + [anon_sym_return] = ACTIONS(2759), + [anon_sym_break] = ACTIONS(2759), + [anon_sym_continue] = ACTIONS(2759), + [anon_sym_goto] = ACTIONS(2759), + [anon_sym_not] = ACTIONS(2759), + [anon_sym_compl] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2761), + [anon_sym_sizeof] = ACTIONS(2759), + [sym_number_literal] = ACTIONS(2761), + [anon_sym_L_SQUOTE] = ACTIONS(2761), + [anon_sym_u_SQUOTE] = ACTIONS(2761), + [anon_sym_U_SQUOTE] = ACTIONS(2761), + [anon_sym_u8_SQUOTE] = ACTIONS(2761), + [anon_sym_SQUOTE] = ACTIONS(2761), + [anon_sym_L_DQUOTE] = ACTIONS(2761), + [anon_sym_u_DQUOTE] = ACTIONS(2761), + [anon_sym_U_DQUOTE] = ACTIONS(2761), + [anon_sym_u8_DQUOTE] = ACTIONS(2761), + [anon_sym_DQUOTE] = ACTIONS(2761), + [sym_true] = ACTIONS(2759), + [sym_false] = ACTIONS(2759), + [sym_null] = ACTIONS(2759), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2759), + [anon_sym_decltype] = ACTIONS(2759), + [anon_sym_virtual] = ACTIONS(2759), + [anon_sym_explicit] = ACTIONS(2759), + [anon_sym_typename] = ACTIONS(2759), + [anon_sym_template] = ACTIONS(2759), + [anon_sym_operator] = ACTIONS(2759), + [anon_sym_try] = ACTIONS(2759), + [anon_sym_delete] = ACTIONS(2759), + [anon_sym_throw] = ACTIONS(2759), + [anon_sym_namespace] = ACTIONS(2759), + [anon_sym_using] = ACTIONS(2759), + [anon_sym_static_assert] = ACTIONS(2759), + [anon_sym_concept] = ACTIONS(2759), + [anon_sym_co_return] = ACTIONS(2759), + [anon_sym_co_yield] = ACTIONS(2759), + [anon_sym_R_DQUOTE] = ACTIONS(2761), + [anon_sym_LR_DQUOTE] = ACTIONS(2761), + [anon_sym_uR_DQUOTE] = ACTIONS(2761), + [anon_sym_UR_DQUOTE] = ACTIONS(2761), + [anon_sym_u8R_DQUOTE] = ACTIONS(2761), + [anon_sym_co_await] = ACTIONS(2759), + [anon_sym_new] = ACTIONS(2759), + [anon_sym_requires] = ACTIONS(2759), + [sym_this] = ACTIONS(2759), + [sym_nullptr] = ACTIONS(2759), + }, + [951] = { + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_input] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), + }, + [952] = { + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_input] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), + }, + [953] = { + [sym_identifier] = ACTIONS(2799), + [aux_sym_preproc_include_token1] = ACTIONS(2799), + [aux_sym_preproc_def_token1] = ACTIONS(2799), + [aux_sym_preproc_if_token1] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2799), + [sym_preproc_directive] = ACTIONS(2799), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym_typedef] = ACTIONS(2799), + [anon_sym_extern] = ACTIONS(2799), + [anon_sym___attribute__] = ACTIONS(2799), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2799), + [anon_sym___based] = ACTIONS(2799), + [anon_sym___cdecl] = ACTIONS(2799), + [anon_sym___clrcall] = ACTIONS(2799), + [anon_sym___stdcall] = ACTIONS(2799), + [anon_sym___fastcall] = ACTIONS(2799), + [anon_sym___thiscall] = ACTIONS(2799), + [anon_sym___vectorcall] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_static] = ACTIONS(2799), + [anon_sym_register] = ACTIONS(2799), + [anon_sym_inline] = ACTIONS(2799), + [anon_sym_thread_local] = ACTIONS(2799), + [anon_sym_input] = ACTIONS(2799), + [anon_sym_const] = ACTIONS(2799), + [anon_sym_volatile] = ACTIONS(2799), + [anon_sym_restrict] = ACTIONS(2799), + [anon_sym__Atomic] = ACTIONS(2799), + [anon_sym_mutable] = ACTIONS(2799), + [anon_sym_constexpr] = ACTIONS(2799), + [anon_sym_constinit] = ACTIONS(2799), + [anon_sym_consteval] = ACTIONS(2799), + [anon_sym_signed] = ACTIONS(2799), + [anon_sym_unsigned] = ACTIONS(2799), + [anon_sym_long] = ACTIONS(2799), + [anon_sym_short] = ACTIONS(2799), + [sym_primitive_type] = ACTIONS(2799), + [anon_sym_enum] = ACTIONS(2799), + [anon_sym_class] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_union] = ACTIONS(2799), + [anon_sym_if] = ACTIONS(2799), + [anon_sym_switch] = ACTIONS(2799), + [anon_sym_case] = ACTIONS(2799), + [anon_sym_default] = ACTIONS(2799), + [anon_sym_while] = ACTIONS(2799), + [anon_sym_do] = ACTIONS(2799), + [anon_sym_for] = ACTIONS(2799), + [anon_sym_return] = ACTIONS(2799), + [anon_sym_break] = ACTIONS(2799), + [anon_sym_continue] = ACTIONS(2799), + [anon_sym_goto] = ACTIONS(2799), + [anon_sym_not] = ACTIONS(2799), + [anon_sym_compl] = ACTIONS(2799), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2799), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [sym_null] = ACTIONS(2799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2799), + [anon_sym_decltype] = ACTIONS(2799), + [anon_sym_virtual] = ACTIONS(2799), + [anon_sym_explicit] = ACTIONS(2799), + [anon_sym_typename] = ACTIONS(2799), + [anon_sym_template] = ACTIONS(2799), + [anon_sym_operator] = ACTIONS(2799), + [anon_sym_try] = ACTIONS(2799), + [anon_sym_delete] = ACTIONS(2799), + [anon_sym_throw] = ACTIONS(2799), + [anon_sym_namespace] = ACTIONS(2799), + [anon_sym_using] = ACTIONS(2799), + [anon_sym_static_assert] = ACTIONS(2799), + [anon_sym_concept] = ACTIONS(2799), + [anon_sym_co_return] = ACTIONS(2799), + [anon_sym_co_yield] = ACTIONS(2799), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2799), + [anon_sym_new] = ACTIONS(2799), + [anon_sym_requires] = ACTIONS(2799), + [sym_this] = ACTIONS(2799), + [sym_nullptr] = ACTIONS(2799), + }, + [954] = { + [sym_identifier] = ACTIONS(2755), + [aux_sym_preproc_include_token1] = ACTIONS(2755), + [aux_sym_preproc_def_token1] = ACTIONS(2755), + [aux_sym_preproc_if_token1] = ACTIONS(2755), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2755), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2755), + [sym_preproc_directive] = ACTIONS(2755), + [anon_sym_LPAREN2] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_TILDE] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_AMP_AMP] = ACTIONS(2757), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_SEMI] = ACTIONS(2757), + [anon_sym_typedef] = ACTIONS(2755), + [anon_sym_extern] = ACTIONS(2755), + [anon_sym___attribute__] = ACTIONS(2755), + [anon_sym_COLON_COLON] = ACTIONS(2757), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2757), + [anon_sym___declspec] = ACTIONS(2755), + [anon_sym___based] = ACTIONS(2755), + [anon_sym___cdecl] = ACTIONS(2755), + [anon_sym___clrcall] = ACTIONS(2755), + [anon_sym___stdcall] = ACTIONS(2755), + [anon_sym___fastcall] = ACTIONS(2755), + [anon_sym___thiscall] = ACTIONS(2755), + [anon_sym___vectorcall] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2757), + [anon_sym_RBRACE] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_static] = ACTIONS(2755), + [anon_sym_register] = ACTIONS(2755), + [anon_sym_inline] = ACTIONS(2755), + [anon_sym_thread_local] = ACTIONS(2755), + [anon_sym_input] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_volatile] = ACTIONS(2755), + [anon_sym_restrict] = ACTIONS(2755), + [anon_sym__Atomic] = ACTIONS(2755), + [anon_sym_mutable] = ACTIONS(2755), + [anon_sym_constexpr] = ACTIONS(2755), + [anon_sym_constinit] = ACTIONS(2755), + [anon_sym_consteval] = ACTIONS(2755), + [anon_sym_signed] = ACTIONS(2755), + [anon_sym_unsigned] = ACTIONS(2755), + [anon_sym_long] = ACTIONS(2755), + [anon_sym_short] = ACTIONS(2755), + [sym_primitive_type] = ACTIONS(2755), + [anon_sym_enum] = ACTIONS(2755), + [anon_sym_class] = ACTIONS(2755), + [anon_sym_struct] = ACTIONS(2755), + [anon_sym_union] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_switch] = ACTIONS(2755), + [anon_sym_case] = ACTIONS(2755), + [anon_sym_default] = ACTIONS(2755), + [anon_sym_while] = ACTIONS(2755), + [anon_sym_do] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_goto] = ACTIONS(2755), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_compl] = ACTIONS(2755), + [anon_sym_DASH_DASH] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2757), + [anon_sym_sizeof] = ACTIONS(2755), + [sym_number_literal] = ACTIONS(2757), + [anon_sym_L_SQUOTE] = ACTIONS(2757), + [anon_sym_u_SQUOTE] = ACTIONS(2757), + [anon_sym_U_SQUOTE] = ACTIONS(2757), + [anon_sym_u8_SQUOTE] = ACTIONS(2757), + [anon_sym_SQUOTE] = ACTIONS(2757), + [anon_sym_L_DQUOTE] = ACTIONS(2757), + [anon_sym_u_DQUOTE] = ACTIONS(2757), + [anon_sym_U_DQUOTE] = ACTIONS(2757), + [anon_sym_u8_DQUOTE] = ACTIONS(2757), + [anon_sym_DQUOTE] = ACTIONS(2757), + [sym_true] = ACTIONS(2755), + [sym_false] = ACTIONS(2755), + [sym_null] = ACTIONS(2755), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2755), + [anon_sym_decltype] = ACTIONS(2755), + [anon_sym_virtual] = ACTIONS(2755), + [anon_sym_explicit] = ACTIONS(2755), + [anon_sym_typename] = ACTIONS(2755), + [anon_sym_template] = ACTIONS(2755), + [anon_sym_operator] = ACTIONS(2755), + [anon_sym_try] = ACTIONS(2755), + [anon_sym_delete] = ACTIONS(2755), + [anon_sym_throw] = ACTIONS(2755), + [anon_sym_namespace] = ACTIONS(2755), + [anon_sym_using] = ACTIONS(2755), + [anon_sym_static_assert] = ACTIONS(2755), + [anon_sym_concept] = ACTIONS(2755), + [anon_sym_co_return] = ACTIONS(2755), + [anon_sym_co_yield] = ACTIONS(2755), + [anon_sym_R_DQUOTE] = ACTIONS(2757), + [anon_sym_LR_DQUOTE] = ACTIONS(2757), + [anon_sym_uR_DQUOTE] = ACTIONS(2757), + [anon_sym_UR_DQUOTE] = ACTIONS(2757), + [anon_sym_u8R_DQUOTE] = ACTIONS(2757), + [anon_sym_co_await] = ACTIONS(2755), + [anon_sym_new] = ACTIONS(2755), + [anon_sym_requires] = ACTIONS(2755), + [sym_this] = ACTIONS(2755), + [sym_nullptr] = ACTIONS(2755), + }, + [955] = { + [sym_identifier] = ACTIONS(2751), + [aux_sym_preproc_include_token1] = ACTIONS(2751), + [aux_sym_preproc_def_token1] = ACTIONS(2751), + [aux_sym_preproc_if_token1] = ACTIONS(2751), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2751), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2751), + [sym_preproc_directive] = ACTIONS(2751), + [anon_sym_LPAREN2] = ACTIONS(2753), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_TILDE] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_STAR] = ACTIONS(2753), + [anon_sym_AMP_AMP] = ACTIONS(2753), + [anon_sym_AMP] = ACTIONS(2751), + [anon_sym_SEMI] = ACTIONS(2753), + [anon_sym_typedef] = ACTIONS(2751), + [anon_sym_extern] = ACTIONS(2751), + [anon_sym___attribute__] = ACTIONS(2751), + [anon_sym_COLON_COLON] = ACTIONS(2753), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), + [anon_sym___declspec] = ACTIONS(2751), + [anon_sym___based] = ACTIONS(2751), + [anon_sym___cdecl] = ACTIONS(2751), + [anon_sym___clrcall] = ACTIONS(2751), + [anon_sym___stdcall] = ACTIONS(2751), + [anon_sym___fastcall] = ACTIONS(2751), + [anon_sym___thiscall] = ACTIONS(2751), + [anon_sym___vectorcall] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2753), + [anon_sym_RBRACE] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_static] = ACTIONS(2751), + [anon_sym_register] = ACTIONS(2751), + [anon_sym_inline] = ACTIONS(2751), + [anon_sym_thread_local] = ACTIONS(2751), + [anon_sym_input] = ACTIONS(2751), + [anon_sym_const] = ACTIONS(2751), + [anon_sym_volatile] = ACTIONS(2751), + [anon_sym_restrict] = ACTIONS(2751), + [anon_sym__Atomic] = ACTIONS(2751), + [anon_sym_mutable] = ACTIONS(2751), + [anon_sym_constexpr] = ACTIONS(2751), + [anon_sym_constinit] = ACTIONS(2751), + [anon_sym_consteval] = ACTIONS(2751), + [anon_sym_signed] = ACTIONS(2751), + [anon_sym_unsigned] = ACTIONS(2751), + [anon_sym_long] = ACTIONS(2751), + [anon_sym_short] = ACTIONS(2751), + [sym_primitive_type] = ACTIONS(2751), + [anon_sym_enum] = ACTIONS(2751), + [anon_sym_class] = ACTIONS(2751), + [anon_sym_struct] = ACTIONS(2751), + [anon_sym_union] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(2751), + [anon_sym_switch] = ACTIONS(2751), + [anon_sym_case] = ACTIONS(2751), + [anon_sym_default] = ACTIONS(2751), + [anon_sym_while] = ACTIONS(2751), + [anon_sym_do] = ACTIONS(2751), + [anon_sym_for] = ACTIONS(2751), + [anon_sym_return] = ACTIONS(2751), + [anon_sym_break] = ACTIONS(2751), + [anon_sym_continue] = ACTIONS(2751), + [anon_sym_goto] = ACTIONS(2751), + [anon_sym_not] = ACTIONS(2751), + [anon_sym_compl] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2753), + [anon_sym_PLUS_PLUS] = ACTIONS(2753), + [anon_sym_sizeof] = ACTIONS(2751), + [sym_number_literal] = ACTIONS(2753), + [anon_sym_L_SQUOTE] = ACTIONS(2753), + [anon_sym_u_SQUOTE] = ACTIONS(2753), + [anon_sym_U_SQUOTE] = ACTIONS(2753), + [anon_sym_u8_SQUOTE] = ACTIONS(2753), + [anon_sym_SQUOTE] = ACTIONS(2753), + [anon_sym_L_DQUOTE] = ACTIONS(2753), + [anon_sym_u_DQUOTE] = ACTIONS(2753), + [anon_sym_U_DQUOTE] = ACTIONS(2753), + [anon_sym_u8_DQUOTE] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2753), + [sym_true] = ACTIONS(2751), + [sym_false] = ACTIONS(2751), + [sym_null] = ACTIONS(2751), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2751), + [anon_sym_decltype] = ACTIONS(2751), + [anon_sym_virtual] = ACTIONS(2751), + [anon_sym_explicit] = ACTIONS(2751), + [anon_sym_typename] = ACTIONS(2751), + [anon_sym_template] = ACTIONS(2751), + [anon_sym_operator] = ACTIONS(2751), + [anon_sym_try] = ACTIONS(2751), + [anon_sym_delete] = ACTIONS(2751), + [anon_sym_throw] = ACTIONS(2751), + [anon_sym_namespace] = ACTIONS(2751), + [anon_sym_using] = ACTIONS(2751), + [anon_sym_static_assert] = ACTIONS(2751), + [anon_sym_concept] = ACTIONS(2751), + [anon_sym_co_return] = ACTIONS(2751), + [anon_sym_co_yield] = ACTIONS(2751), + [anon_sym_R_DQUOTE] = ACTIONS(2753), + [anon_sym_LR_DQUOTE] = ACTIONS(2753), + [anon_sym_uR_DQUOTE] = ACTIONS(2753), + [anon_sym_UR_DQUOTE] = ACTIONS(2753), + [anon_sym_u8R_DQUOTE] = ACTIONS(2753), + [anon_sym_co_await] = ACTIONS(2751), + [anon_sym_new] = ACTIONS(2751), + [anon_sym_requires] = ACTIONS(2751), + [sym_this] = ACTIONS(2751), + [sym_nullptr] = ACTIONS(2751), + }, + [956] = { + [ts_builtin_sym_end] = ACTIONS(2793), + [sym_identifier] = ACTIONS(2791), + [aux_sym_preproc_include_token1] = ACTIONS(2791), + [aux_sym_preproc_def_token1] = ACTIONS(2791), + [aux_sym_preproc_if_token1] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2791), + [sym_preproc_directive] = ACTIONS(2791), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2791), + [anon_sym_PLUS] = ACTIONS(2791), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2791), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym_typedef] = ACTIONS(2791), + [anon_sym_extern] = ACTIONS(2791), + [anon_sym___attribute__] = ACTIONS(2791), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2791), + [anon_sym___based] = ACTIONS(2791), + [anon_sym___cdecl] = ACTIONS(2791), + [anon_sym___clrcall] = ACTIONS(2791), + [anon_sym___stdcall] = ACTIONS(2791), + [anon_sym___fastcall] = ACTIONS(2791), + [anon_sym___thiscall] = ACTIONS(2791), + [anon_sym___vectorcall] = ACTIONS(2791), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_static] = ACTIONS(2791), + [anon_sym_register] = ACTIONS(2791), + [anon_sym_inline] = ACTIONS(2791), + [anon_sym_thread_local] = ACTIONS(2791), + [anon_sym_input] = ACTIONS(2791), + [anon_sym_const] = ACTIONS(2791), + [anon_sym_volatile] = ACTIONS(2791), + [anon_sym_restrict] = ACTIONS(2791), + [anon_sym__Atomic] = ACTIONS(2791), + [anon_sym_mutable] = ACTIONS(2791), + [anon_sym_constexpr] = ACTIONS(2791), + [anon_sym_constinit] = ACTIONS(2791), + [anon_sym_consteval] = ACTIONS(2791), + [anon_sym_signed] = ACTIONS(2791), + [anon_sym_unsigned] = ACTIONS(2791), + [anon_sym_long] = ACTIONS(2791), + [anon_sym_short] = ACTIONS(2791), + [sym_primitive_type] = ACTIONS(2791), + [anon_sym_enum] = ACTIONS(2791), + [anon_sym_class] = ACTIONS(2791), + [anon_sym_struct] = ACTIONS(2791), + [anon_sym_union] = ACTIONS(2791), + [anon_sym_if] = ACTIONS(2791), + [anon_sym_switch] = ACTIONS(2791), + [anon_sym_case] = ACTIONS(2791), + [anon_sym_default] = ACTIONS(2791), + [anon_sym_while] = ACTIONS(2791), + [anon_sym_do] = ACTIONS(2791), + [anon_sym_for] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2791), + [anon_sym_break] = ACTIONS(2791), + [anon_sym_continue] = ACTIONS(2791), + [anon_sym_goto] = ACTIONS(2791), + [anon_sym_not] = ACTIONS(2791), + [anon_sym_compl] = ACTIONS(2791), + [anon_sym_DASH_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2793), + [anon_sym_sizeof] = ACTIONS(2791), + [sym_number_literal] = ACTIONS(2793), + [anon_sym_L_SQUOTE] = ACTIONS(2793), + [anon_sym_u_SQUOTE] = ACTIONS(2793), + [anon_sym_U_SQUOTE] = ACTIONS(2793), + [anon_sym_u8_SQUOTE] = ACTIONS(2793), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_L_DQUOTE] = ACTIONS(2793), + [anon_sym_u_DQUOTE] = ACTIONS(2793), + [anon_sym_U_DQUOTE] = ACTIONS(2793), + [anon_sym_u8_DQUOTE] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [sym_true] = ACTIONS(2791), + [sym_false] = ACTIONS(2791), + [sym_null] = ACTIONS(2791), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2791), + [anon_sym_decltype] = ACTIONS(2791), + [anon_sym_virtual] = ACTIONS(2791), + [anon_sym_explicit] = ACTIONS(2791), + [anon_sym_typename] = ACTIONS(2791), + [anon_sym_template] = ACTIONS(2791), + [anon_sym_operator] = ACTIONS(2791), + [anon_sym_try] = ACTIONS(2791), + [anon_sym_delete] = ACTIONS(2791), + [anon_sym_throw] = ACTIONS(2791), + [anon_sym_namespace] = ACTIONS(2791), + [anon_sym_using] = ACTIONS(2791), + [anon_sym_static_assert] = ACTIONS(2791), + [anon_sym_concept] = ACTIONS(2791), + [anon_sym_co_return] = ACTIONS(2791), + [anon_sym_co_yield] = ACTIONS(2791), + [anon_sym_R_DQUOTE] = ACTIONS(2793), + [anon_sym_LR_DQUOTE] = ACTIONS(2793), + [anon_sym_uR_DQUOTE] = ACTIONS(2793), + [anon_sym_UR_DQUOTE] = ACTIONS(2793), + [anon_sym_u8R_DQUOTE] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2791), + [anon_sym_new] = ACTIONS(2791), + [anon_sym_requires] = ACTIONS(2791), + [sym_this] = ACTIONS(2791), + [sym_nullptr] = ACTIONS(2791), + }, + [957] = { + [sym_identifier] = ACTIONS(2807), + [aux_sym_preproc_include_token1] = ACTIONS(2807), + [aux_sym_preproc_def_token1] = ACTIONS(2807), + [aux_sym_preproc_if_token1] = ACTIONS(2807), + [aux_sym_preproc_if_token2] = ACTIONS(2807), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2807), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2807), + [sym_preproc_directive] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_AMP_AMP] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2809), + [anon_sym_typedef] = ACTIONS(2807), + [anon_sym_extern] = ACTIONS(2807), + [anon_sym___attribute__] = ACTIONS(2807), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2809), + [anon_sym___declspec] = ACTIONS(2807), + [anon_sym___based] = ACTIONS(2807), + [anon_sym___cdecl] = ACTIONS(2807), + [anon_sym___clrcall] = ACTIONS(2807), + [anon_sym___stdcall] = ACTIONS(2807), + [anon_sym___fastcall] = ACTIONS(2807), + [anon_sym___thiscall] = ACTIONS(2807), + [anon_sym___vectorcall] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_static] = ACTIONS(2807), + [anon_sym_register] = ACTIONS(2807), + [anon_sym_inline] = ACTIONS(2807), + [anon_sym_thread_local] = ACTIONS(2807), + [anon_sym_input] = ACTIONS(2807), + [anon_sym_const] = ACTIONS(2807), + [anon_sym_volatile] = ACTIONS(2807), + [anon_sym_restrict] = ACTIONS(2807), + [anon_sym__Atomic] = ACTIONS(2807), + [anon_sym_mutable] = ACTIONS(2807), + [anon_sym_constexpr] = ACTIONS(2807), + [anon_sym_constinit] = ACTIONS(2807), + [anon_sym_consteval] = ACTIONS(2807), + [anon_sym_signed] = ACTIONS(2807), + [anon_sym_unsigned] = ACTIONS(2807), + [anon_sym_long] = ACTIONS(2807), + [anon_sym_short] = ACTIONS(2807), + [sym_primitive_type] = ACTIONS(2807), + [anon_sym_enum] = ACTIONS(2807), + [anon_sym_class] = ACTIONS(2807), + [anon_sym_struct] = ACTIONS(2807), + [anon_sym_union] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_switch] = ACTIONS(2807), + [anon_sym_case] = ACTIONS(2807), + [anon_sym_default] = ACTIONS(2807), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_break] = ACTIONS(2807), + [anon_sym_continue] = ACTIONS(2807), + [anon_sym_goto] = ACTIONS(2807), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_PLUS_PLUS] = ACTIONS(2809), + [anon_sym_sizeof] = ACTIONS(2807), + [sym_number_literal] = ACTIONS(2809), + [anon_sym_L_SQUOTE] = ACTIONS(2809), + [anon_sym_u_SQUOTE] = ACTIONS(2809), + [anon_sym_U_SQUOTE] = ACTIONS(2809), + [anon_sym_u8_SQUOTE] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_L_DQUOTE] = ACTIONS(2809), + [anon_sym_u_DQUOTE] = ACTIONS(2809), + [anon_sym_U_DQUOTE] = ACTIONS(2809), + [anon_sym_u8_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2809), + [sym_true] = ACTIONS(2807), + [sym_false] = ACTIONS(2807), + [sym_null] = ACTIONS(2807), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2807), + [anon_sym_decltype] = ACTIONS(2807), + [anon_sym_virtual] = ACTIONS(2807), + [anon_sym_explicit] = ACTIONS(2807), + [anon_sym_typename] = ACTIONS(2807), + [anon_sym_template] = ACTIONS(2807), + [anon_sym_operator] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_delete] = ACTIONS(2807), + [anon_sym_throw] = ACTIONS(2807), + [anon_sym_namespace] = ACTIONS(2807), + [anon_sym_using] = ACTIONS(2807), + [anon_sym_static_assert] = ACTIONS(2807), + [anon_sym_concept] = ACTIONS(2807), + [anon_sym_co_return] = ACTIONS(2807), + [anon_sym_co_yield] = ACTIONS(2807), + [anon_sym_R_DQUOTE] = ACTIONS(2809), + [anon_sym_LR_DQUOTE] = ACTIONS(2809), + [anon_sym_uR_DQUOTE] = ACTIONS(2809), + [anon_sym_UR_DQUOTE] = ACTIONS(2809), + [anon_sym_u8R_DQUOTE] = ACTIONS(2809), + [anon_sym_co_await] = ACTIONS(2807), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_requires] = ACTIONS(2807), + [sym_this] = ACTIONS(2807), + [sym_nullptr] = ACTIONS(2807), + }, + [958] = { + [sym_identifier] = ACTIONS(2815), + [aux_sym_preproc_include_token1] = ACTIONS(2815), + [aux_sym_preproc_def_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token2] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), + [sym_preproc_directive] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym_typedef] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym___attribute__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), + [anon_sym___declspec] = ACTIONS(2815), + [anon_sym___based] = ACTIONS(2815), + [anon_sym___cdecl] = ACTIONS(2815), + [anon_sym___clrcall] = ACTIONS(2815), + [anon_sym___stdcall] = ACTIONS(2815), + [anon_sym___fastcall] = ACTIONS(2815), + [anon_sym___thiscall] = ACTIONS(2815), + [anon_sym___vectorcall] = ACTIONS(2815), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_register] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym_thread_local] = ACTIONS(2815), + [anon_sym_input] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_volatile] = ACTIONS(2815), + [anon_sym_restrict] = ACTIONS(2815), + [anon_sym__Atomic] = ACTIONS(2815), + [anon_sym_mutable] = ACTIONS(2815), + [anon_sym_constexpr] = ACTIONS(2815), + [anon_sym_constinit] = ACTIONS(2815), + [anon_sym_consteval] = ACTIONS(2815), + [anon_sym_signed] = ACTIONS(2815), + [anon_sym_unsigned] = ACTIONS(2815), + [anon_sym_long] = ACTIONS(2815), + [anon_sym_short] = ACTIONS(2815), + [sym_primitive_type] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_switch] = ACTIONS(2815), + [anon_sym_case] = ACTIONS(2815), + [anon_sym_default] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_goto] = ACTIONS(2815), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_compl] = ACTIONS(2815), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_sizeof] = ACTIONS(2815), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2817), + [anon_sym_u_SQUOTE] = ACTIONS(2817), + [anon_sym_U_SQUOTE] = ACTIONS(2817), + [anon_sym_u8_SQUOTE] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [anon_sym_L_DQUOTE] = ACTIONS(2817), + [anon_sym_u_DQUOTE] = ACTIONS(2817), + [anon_sym_U_DQUOTE] = ACTIONS(2817), + [anon_sym_u8_DQUOTE] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_null] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_virtual] = ACTIONS(2815), + [anon_sym_explicit] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_template] = ACTIONS(2815), + [anon_sym_operator] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [anon_sym_delete] = ACTIONS(2815), + [anon_sym_throw] = ACTIONS(2815), + [anon_sym_namespace] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_static_assert] = ACTIONS(2815), + [anon_sym_concept] = ACTIONS(2815), + [anon_sym_co_return] = ACTIONS(2815), + [anon_sym_co_yield] = ACTIONS(2815), + [anon_sym_R_DQUOTE] = ACTIONS(2817), + [anon_sym_LR_DQUOTE] = ACTIONS(2817), + [anon_sym_uR_DQUOTE] = ACTIONS(2817), + [anon_sym_UR_DQUOTE] = ACTIONS(2817), + [anon_sym_u8R_DQUOTE] = ACTIONS(2817), + [anon_sym_co_await] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(2815), + [anon_sym_requires] = ACTIONS(2815), + [sym_this] = ACTIONS(2815), + [sym_nullptr] = ACTIONS(2815), + }, + [959] = { + [sym_identifier] = ACTIONS(2751), + [aux_sym_preproc_include_token1] = ACTIONS(2751), + [aux_sym_preproc_def_token1] = ACTIONS(2751), + [aux_sym_preproc_if_token1] = ACTIONS(2751), + [aux_sym_preproc_if_token2] = ACTIONS(2751), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2751), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2751), + [sym_preproc_directive] = ACTIONS(2751), + [anon_sym_LPAREN2] = ACTIONS(2753), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_TILDE] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_STAR] = ACTIONS(2753), + [anon_sym_AMP_AMP] = ACTIONS(2753), + [anon_sym_AMP] = ACTIONS(2751), + [anon_sym_SEMI] = ACTIONS(2753), + [anon_sym_typedef] = ACTIONS(2751), + [anon_sym_extern] = ACTIONS(2751), + [anon_sym___attribute__] = ACTIONS(2751), + [anon_sym_COLON_COLON] = ACTIONS(2753), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), + [anon_sym___declspec] = ACTIONS(2751), + [anon_sym___based] = ACTIONS(2751), + [anon_sym___cdecl] = ACTIONS(2751), + [anon_sym___clrcall] = ACTIONS(2751), + [anon_sym___stdcall] = ACTIONS(2751), + [anon_sym___fastcall] = ACTIONS(2751), + [anon_sym___thiscall] = ACTIONS(2751), + [anon_sym___vectorcall] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_static] = ACTIONS(2751), + [anon_sym_register] = ACTIONS(2751), + [anon_sym_inline] = ACTIONS(2751), + [anon_sym_thread_local] = ACTIONS(2751), + [anon_sym_input] = ACTIONS(2751), + [anon_sym_const] = ACTIONS(2751), + [anon_sym_volatile] = ACTIONS(2751), + [anon_sym_restrict] = ACTIONS(2751), + [anon_sym__Atomic] = ACTIONS(2751), + [anon_sym_mutable] = ACTIONS(2751), + [anon_sym_constexpr] = ACTIONS(2751), + [anon_sym_constinit] = ACTIONS(2751), + [anon_sym_consteval] = ACTIONS(2751), + [anon_sym_signed] = ACTIONS(2751), + [anon_sym_unsigned] = ACTIONS(2751), + [anon_sym_long] = ACTIONS(2751), + [anon_sym_short] = ACTIONS(2751), + [sym_primitive_type] = ACTIONS(2751), + [anon_sym_enum] = ACTIONS(2751), + [anon_sym_class] = ACTIONS(2751), + [anon_sym_struct] = ACTIONS(2751), + [anon_sym_union] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(2751), + [anon_sym_switch] = ACTIONS(2751), + [anon_sym_case] = ACTIONS(2751), + [anon_sym_default] = ACTIONS(2751), + [anon_sym_while] = ACTIONS(2751), + [anon_sym_do] = ACTIONS(2751), + [anon_sym_for] = ACTIONS(2751), + [anon_sym_return] = ACTIONS(2751), + [anon_sym_break] = ACTIONS(2751), + [anon_sym_continue] = ACTIONS(2751), + [anon_sym_goto] = ACTIONS(2751), + [anon_sym_not] = ACTIONS(2751), + [anon_sym_compl] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2753), + [anon_sym_PLUS_PLUS] = ACTIONS(2753), + [anon_sym_sizeof] = ACTIONS(2751), + [sym_number_literal] = ACTIONS(2753), + [anon_sym_L_SQUOTE] = ACTIONS(2753), + [anon_sym_u_SQUOTE] = ACTIONS(2753), + [anon_sym_U_SQUOTE] = ACTIONS(2753), + [anon_sym_u8_SQUOTE] = ACTIONS(2753), + [anon_sym_SQUOTE] = ACTIONS(2753), + [anon_sym_L_DQUOTE] = ACTIONS(2753), + [anon_sym_u_DQUOTE] = ACTIONS(2753), + [anon_sym_U_DQUOTE] = ACTIONS(2753), + [anon_sym_u8_DQUOTE] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2753), + [sym_true] = ACTIONS(2751), + [sym_false] = ACTIONS(2751), + [sym_null] = ACTIONS(2751), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2751), + [anon_sym_decltype] = ACTIONS(2751), + [anon_sym_virtual] = ACTIONS(2751), + [anon_sym_explicit] = ACTIONS(2751), + [anon_sym_typename] = ACTIONS(2751), + [anon_sym_template] = ACTIONS(2751), + [anon_sym_operator] = ACTIONS(2751), + [anon_sym_try] = ACTIONS(2751), + [anon_sym_delete] = ACTIONS(2751), + [anon_sym_throw] = ACTIONS(2751), + [anon_sym_namespace] = ACTIONS(2751), + [anon_sym_using] = ACTIONS(2751), + [anon_sym_static_assert] = ACTIONS(2751), + [anon_sym_concept] = ACTIONS(2751), + [anon_sym_co_return] = ACTIONS(2751), + [anon_sym_co_yield] = ACTIONS(2751), + [anon_sym_R_DQUOTE] = ACTIONS(2753), + [anon_sym_LR_DQUOTE] = ACTIONS(2753), + [anon_sym_uR_DQUOTE] = ACTIONS(2753), + [anon_sym_UR_DQUOTE] = ACTIONS(2753), + [anon_sym_u8R_DQUOTE] = ACTIONS(2753), + [anon_sym_co_await] = ACTIONS(2751), + [anon_sym_new] = ACTIONS(2751), + [anon_sym_requires] = ACTIONS(2751), + [sym_this] = ACTIONS(2751), + [sym_nullptr] = ACTIONS(2751), + }, + [960] = { + [sym_identifier] = ACTIONS(2747), + [aux_sym_preproc_include_token1] = ACTIONS(2747), + [aux_sym_preproc_def_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), + [sym_preproc_directive] = ACTIONS(2747), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_typedef] = ACTIONS(2747), + [anon_sym_extern] = ACTIONS(2747), + [anon_sym___attribute__] = ACTIONS(2747), + [anon_sym_COLON_COLON] = ACTIONS(2749), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), + [anon_sym___declspec] = ACTIONS(2747), + [anon_sym___based] = ACTIONS(2747), + [anon_sym___cdecl] = ACTIONS(2747), + [anon_sym___clrcall] = ACTIONS(2747), + [anon_sym___stdcall] = ACTIONS(2747), + [anon_sym___fastcall] = ACTIONS(2747), + [anon_sym___thiscall] = ACTIONS(2747), + [anon_sym___vectorcall] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_RBRACE] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_static] = ACTIONS(2747), + [anon_sym_register] = ACTIONS(2747), + [anon_sym_inline] = ACTIONS(2747), + [anon_sym_thread_local] = ACTIONS(2747), + [anon_sym_input] = ACTIONS(2747), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_volatile] = ACTIONS(2747), + [anon_sym_restrict] = ACTIONS(2747), + [anon_sym__Atomic] = ACTIONS(2747), + [anon_sym_mutable] = ACTIONS(2747), + [anon_sym_constexpr] = ACTIONS(2747), + [anon_sym_constinit] = ACTIONS(2747), + [anon_sym_consteval] = ACTIONS(2747), + [anon_sym_signed] = ACTIONS(2747), + [anon_sym_unsigned] = ACTIONS(2747), + [anon_sym_long] = ACTIONS(2747), + [anon_sym_short] = ACTIONS(2747), + [sym_primitive_type] = ACTIONS(2747), + [anon_sym_enum] = ACTIONS(2747), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2747), + [anon_sym_union] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2747), + [anon_sym_case] = ACTIONS(2747), + [anon_sym_default] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_do] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_goto] = ACTIONS(2747), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_compl] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_sizeof] = ACTIONS(2747), + [sym_number_literal] = ACTIONS(2749), + [anon_sym_L_SQUOTE] = ACTIONS(2749), + [anon_sym_u_SQUOTE] = ACTIONS(2749), + [anon_sym_U_SQUOTE] = ACTIONS(2749), + [anon_sym_u8_SQUOTE] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_L_DQUOTE] = ACTIONS(2749), + [anon_sym_u_DQUOTE] = ACTIONS(2749), + [anon_sym_U_DQUOTE] = ACTIONS(2749), + [anon_sym_u8_DQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [sym_null] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2747), + [anon_sym_decltype] = ACTIONS(2747), + [anon_sym_virtual] = ACTIONS(2747), + [anon_sym_explicit] = ACTIONS(2747), + [anon_sym_typename] = ACTIONS(2747), + [anon_sym_template] = ACTIONS(2747), + [anon_sym_operator] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_delete] = ACTIONS(2747), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_namespace] = ACTIONS(2747), + [anon_sym_using] = ACTIONS(2747), + [anon_sym_static_assert] = ACTIONS(2747), + [anon_sym_concept] = ACTIONS(2747), + [anon_sym_co_return] = ACTIONS(2747), + [anon_sym_co_yield] = ACTIONS(2747), + [anon_sym_R_DQUOTE] = ACTIONS(2749), + [anon_sym_LR_DQUOTE] = ACTIONS(2749), + [anon_sym_uR_DQUOTE] = ACTIONS(2749), + [anon_sym_UR_DQUOTE] = ACTIONS(2749), + [anon_sym_u8R_DQUOTE] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_requires] = ACTIONS(2747), + [sym_this] = ACTIONS(2747), + [sym_nullptr] = ACTIONS(2747), + }, + [961] = { + [sym_identifier] = ACTIONS(2747), + [aux_sym_preproc_include_token1] = ACTIONS(2747), + [aux_sym_preproc_def_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), + [sym_preproc_directive] = ACTIONS(2747), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_typedef] = ACTIONS(2747), + [anon_sym_extern] = ACTIONS(2747), + [anon_sym___attribute__] = ACTIONS(2747), + [anon_sym_COLON_COLON] = ACTIONS(2749), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), + [anon_sym___declspec] = ACTIONS(2747), + [anon_sym___based] = ACTIONS(2747), + [anon_sym___cdecl] = ACTIONS(2747), + [anon_sym___clrcall] = ACTIONS(2747), + [anon_sym___stdcall] = ACTIONS(2747), + [anon_sym___fastcall] = ACTIONS(2747), + [anon_sym___thiscall] = ACTIONS(2747), + [anon_sym___vectorcall] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_RBRACE] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_static] = ACTIONS(2747), + [anon_sym_register] = ACTIONS(2747), + [anon_sym_inline] = ACTIONS(2747), + [anon_sym_thread_local] = ACTIONS(2747), + [anon_sym_input] = ACTIONS(2747), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_volatile] = ACTIONS(2747), + [anon_sym_restrict] = ACTIONS(2747), + [anon_sym__Atomic] = ACTIONS(2747), + [anon_sym_mutable] = ACTIONS(2747), + [anon_sym_constexpr] = ACTIONS(2747), + [anon_sym_constinit] = ACTIONS(2747), + [anon_sym_consteval] = ACTIONS(2747), + [anon_sym_signed] = ACTIONS(2747), + [anon_sym_unsigned] = ACTIONS(2747), + [anon_sym_long] = ACTIONS(2747), + [anon_sym_short] = ACTIONS(2747), + [sym_primitive_type] = ACTIONS(2747), + [anon_sym_enum] = ACTIONS(2747), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2747), + [anon_sym_union] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2747), + [anon_sym_case] = ACTIONS(2747), + [anon_sym_default] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_do] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_goto] = ACTIONS(2747), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_compl] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_sizeof] = ACTIONS(2747), + [sym_number_literal] = ACTIONS(2749), + [anon_sym_L_SQUOTE] = ACTIONS(2749), + [anon_sym_u_SQUOTE] = ACTIONS(2749), + [anon_sym_U_SQUOTE] = ACTIONS(2749), + [anon_sym_u8_SQUOTE] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_L_DQUOTE] = ACTIONS(2749), + [anon_sym_u_DQUOTE] = ACTIONS(2749), + [anon_sym_U_DQUOTE] = ACTIONS(2749), + [anon_sym_u8_DQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [sym_null] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2747), + [anon_sym_decltype] = ACTIONS(2747), + [anon_sym_virtual] = ACTIONS(2747), + [anon_sym_explicit] = ACTIONS(2747), + [anon_sym_typename] = ACTIONS(2747), + [anon_sym_template] = ACTIONS(2747), + [anon_sym_operator] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_delete] = ACTIONS(2747), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_namespace] = ACTIONS(2747), + [anon_sym_using] = ACTIONS(2747), + [anon_sym_static_assert] = ACTIONS(2747), + [anon_sym_concept] = ACTIONS(2747), + [anon_sym_co_return] = ACTIONS(2747), + [anon_sym_co_yield] = ACTIONS(2747), + [anon_sym_R_DQUOTE] = ACTIONS(2749), + [anon_sym_LR_DQUOTE] = ACTIONS(2749), + [anon_sym_uR_DQUOTE] = ACTIONS(2749), + [anon_sym_UR_DQUOTE] = ACTIONS(2749), + [anon_sym_u8R_DQUOTE] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_requires] = ACTIONS(2747), + [sym_this] = ACTIONS(2747), + [sym_nullptr] = ACTIONS(2747), + }, + [962] = { + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_include_token1] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym___cdecl] = ACTIONS(2743), + [anon_sym___clrcall] = ACTIONS(2743), + [anon_sym___stdcall] = ACTIONS(2743), + [anon_sym___fastcall] = ACTIONS(2743), + [anon_sym___thiscall] = ACTIONS(2743), + [anon_sym___vectorcall] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym_input] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2743), + [anon_sym_case] = ACTIONS(2743), + [anon_sym_default] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_do] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym_not] = ACTIONS(2743), + [anon_sym_compl] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_sizeof] = ACTIONS(2743), + [sym_number_literal] = ACTIONS(2745), + [anon_sym_L_SQUOTE] = ACTIONS(2745), + [anon_sym_u_SQUOTE] = ACTIONS(2745), + [anon_sym_U_SQUOTE] = ACTIONS(2745), + [anon_sym_u8_SQUOTE] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_L_DQUOTE] = ACTIONS(2745), + [anon_sym_u_DQUOTE] = ACTIONS(2745), + [anon_sym_U_DQUOTE] = ACTIONS(2745), + [anon_sym_u8_DQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_null] = ACTIONS(2743), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [anon_sym_delete] = ACTIONS(2743), + [anon_sym_throw] = ACTIONS(2743), + [anon_sym_namespace] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), + [anon_sym_concept] = ACTIONS(2743), + [anon_sym_co_return] = ACTIONS(2743), + [anon_sym_co_yield] = ACTIONS(2743), + [anon_sym_R_DQUOTE] = ACTIONS(2745), + [anon_sym_LR_DQUOTE] = ACTIONS(2745), + [anon_sym_uR_DQUOTE] = ACTIONS(2745), + [anon_sym_UR_DQUOTE] = ACTIONS(2745), + [anon_sym_u8R_DQUOTE] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2743), + [anon_sym_new] = ACTIONS(2743), + [anon_sym_requires] = ACTIONS(2743), + [sym_this] = ACTIONS(2743), + [sym_nullptr] = ACTIONS(2743), + }, + [963] = { + [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_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_LBRACK] = ACTIONS(2735), + [anon_sym_static] = ACTIONS(2735), + [anon_sym_register] = ACTIONS(2735), + [anon_sym_inline] = ACTIONS(2735), + [anon_sym_thread_local] = ACTIONS(2735), + [anon_sym_input] = ACTIONS(2735), + [anon_sym_const] = ACTIONS(2735), + [anon_sym_volatile] = ACTIONS(2735), + [anon_sym_restrict] = ACTIONS(2735), + [anon_sym__Atomic] = ACTIONS(2735), + [anon_sym_mutable] = ACTIONS(2735), + [anon_sym_constexpr] = ACTIONS(2735), + [anon_sym_constinit] = ACTIONS(2735), + [anon_sym_consteval] = ACTIONS(2735), + [anon_sym_signed] = ACTIONS(2735), + [anon_sym_unsigned] = ACTIONS(2735), + [anon_sym_long] = ACTIONS(2735), + [anon_sym_short] = 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_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), + [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), + [sym_null] = ACTIONS(2735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2735), + [anon_sym_decltype] = ACTIONS(2735), + [anon_sym_virtual] = 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), + [sym_nullptr] = ACTIONS(2735), + }, + [964] = { + [sym_identifier] = ACTIONS(2729), + [aux_sym_preproc_include_token1] = ACTIONS(2729), + [aux_sym_preproc_def_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token2] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), + [sym_preproc_directive] = ACTIONS(2729), + [anon_sym_LPAREN2] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym___attribute__] = ACTIONS(2729), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), + [anon_sym___declspec] = ACTIONS(2729), + [anon_sym___based] = ACTIONS(2729), + [anon_sym___cdecl] = ACTIONS(2729), + [anon_sym___clrcall] = ACTIONS(2729), + [anon_sym___stdcall] = ACTIONS(2729), + [anon_sym___fastcall] = ACTIONS(2729), + [anon_sym___thiscall] = ACTIONS(2729), + [anon_sym___vectorcall] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_register] = ACTIONS(2729), + [anon_sym_inline] = ACTIONS(2729), + [anon_sym_thread_local] = ACTIONS(2729), + [anon_sym_input] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_volatile] = ACTIONS(2729), + [anon_sym_restrict] = ACTIONS(2729), + [anon_sym__Atomic] = ACTIONS(2729), + [anon_sym_mutable] = ACTIONS(2729), + [anon_sym_constexpr] = ACTIONS(2729), + [anon_sym_constinit] = ACTIONS(2729), + [anon_sym_consteval] = ACTIONS(2729), + [anon_sym_signed] = ACTIONS(2729), + [anon_sym_unsigned] = ACTIONS(2729), + [anon_sym_long] = ACTIONS(2729), + [anon_sym_short] = ACTIONS(2729), + [sym_primitive_type] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_case] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_goto] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_compl] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(2731), + [anon_sym_L_SQUOTE] = ACTIONS(2731), + [anon_sym_u_SQUOTE] = ACTIONS(2731), + [anon_sym_U_SQUOTE] = ACTIONS(2731), + [anon_sym_u8_SQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_L_DQUOTE] = ACTIONS(2731), + [anon_sym_u_DQUOTE] = ACTIONS(2731), + [anon_sym_U_DQUOTE] = ACTIONS(2731), + [anon_sym_u8_DQUOTE] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_null] = ACTIONS(2729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2729), + [anon_sym_decltype] = ACTIONS(2729), + [anon_sym_virtual] = ACTIONS(2729), + [anon_sym_explicit] = ACTIONS(2729), + [anon_sym_typename] = ACTIONS(2729), + [anon_sym_template] = ACTIONS(2729), + [anon_sym_operator] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_delete] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_static_assert] = ACTIONS(2729), + [anon_sym_concept] = ACTIONS(2729), + [anon_sym_co_return] = ACTIONS(2729), + [anon_sym_co_yield] = ACTIONS(2729), + [anon_sym_R_DQUOTE] = ACTIONS(2731), + [anon_sym_LR_DQUOTE] = ACTIONS(2731), + [anon_sym_uR_DQUOTE] = ACTIONS(2731), + [anon_sym_UR_DQUOTE] = ACTIONS(2731), + [anon_sym_u8R_DQUOTE] = ACTIONS(2731), + [anon_sym_co_await] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_requires] = ACTIONS(2729), + [sym_this] = ACTIONS(2729), + [sym_nullptr] = ACTIONS(2729), + }, + [965] = { + [ts_builtin_sym_end] = ACTIONS(2797), + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_include_token1] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_BANG] = ACTIONS(2797), + [anon_sym_TILDE] = ACTIONS(2797), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_AMP_AMP] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2797), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym___cdecl] = ACTIONS(2795), + [anon_sym___clrcall] = ACTIONS(2795), + [anon_sym___stdcall] = ACTIONS(2795), + [anon_sym___fastcall] = ACTIONS(2795), + [anon_sym___thiscall] = ACTIONS(2795), + [anon_sym___vectorcall] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym_input] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_switch] = ACTIONS(2795), + [anon_sym_case] = ACTIONS(2795), + [anon_sym_default] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_break] = ACTIONS(2795), + [anon_sym_continue] = ACTIONS(2795), + [anon_sym_goto] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2795), + [anon_sym_compl] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2797), + [anon_sym_PLUS_PLUS] = ACTIONS(2797), + [anon_sym_sizeof] = ACTIONS(2795), + [sym_number_literal] = ACTIONS(2797), + [anon_sym_L_SQUOTE] = ACTIONS(2797), + [anon_sym_u_SQUOTE] = ACTIONS(2797), + [anon_sym_U_SQUOTE] = ACTIONS(2797), + [anon_sym_u8_SQUOTE] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_L_DQUOTE] = ACTIONS(2797), + [anon_sym_u_DQUOTE] = ACTIONS(2797), + [anon_sym_U_DQUOTE] = ACTIONS(2797), + [anon_sym_u8_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE] = ACTIONS(2797), + [sym_true] = ACTIONS(2795), + [sym_false] = ACTIONS(2795), + [sym_null] = ACTIONS(2795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_delete] = ACTIONS(2795), + [anon_sym_throw] = ACTIONS(2795), + [anon_sym_namespace] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), + [anon_sym_concept] = ACTIONS(2795), + [anon_sym_co_return] = ACTIONS(2795), + [anon_sym_co_yield] = ACTIONS(2795), + [anon_sym_R_DQUOTE] = ACTIONS(2797), + [anon_sym_LR_DQUOTE] = ACTIONS(2797), + [anon_sym_uR_DQUOTE] = ACTIONS(2797), + [anon_sym_UR_DQUOTE] = ACTIONS(2797), + [anon_sym_u8R_DQUOTE] = ACTIONS(2797), + [anon_sym_co_await] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_requires] = ACTIONS(2795), + [sym_this] = ACTIONS(2795), + [sym_nullptr] = ACTIONS(2795), + }, + [966] = { + [sym_identifier] = ACTIONS(2739), + [aux_sym_preproc_include_token1] = ACTIONS(2739), + [aux_sym_preproc_def_token1] = ACTIONS(2739), + [aux_sym_preproc_if_token1] = ACTIONS(2739), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), + [sym_preproc_directive] = ACTIONS(2739), + [anon_sym_LPAREN2] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_PLUS] = ACTIONS(2739), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_AMP_AMP] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2739), + [anon_sym_SEMI] = ACTIONS(2741), + [anon_sym_typedef] = ACTIONS(2739), + [anon_sym_extern] = ACTIONS(2739), + [anon_sym___attribute__] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2741), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), + [anon_sym___declspec] = ACTIONS(2739), + [anon_sym___based] = ACTIONS(2739), + [anon_sym___cdecl] = ACTIONS(2739), + [anon_sym___clrcall] = ACTIONS(2739), + [anon_sym___stdcall] = ACTIONS(2739), + [anon_sym___fastcall] = ACTIONS(2739), + [anon_sym___thiscall] = ACTIONS(2739), + [anon_sym___vectorcall] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_RBRACE] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_static] = ACTIONS(2739), + [anon_sym_register] = ACTIONS(2739), + [anon_sym_inline] = ACTIONS(2739), + [anon_sym_thread_local] = ACTIONS(2739), + [anon_sym_input] = ACTIONS(2739), + [anon_sym_const] = ACTIONS(2739), + [anon_sym_volatile] = ACTIONS(2739), + [anon_sym_restrict] = ACTIONS(2739), + [anon_sym__Atomic] = ACTIONS(2739), + [anon_sym_mutable] = ACTIONS(2739), + [anon_sym_constexpr] = ACTIONS(2739), + [anon_sym_constinit] = ACTIONS(2739), + [anon_sym_consteval] = ACTIONS(2739), + [anon_sym_signed] = ACTIONS(2739), + [anon_sym_unsigned] = ACTIONS(2739), + [anon_sym_long] = ACTIONS(2739), + [anon_sym_short] = ACTIONS(2739), + [sym_primitive_type] = ACTIONS(2739), + [anon_sym_enum] = ACTIONS(2739), + [anon_sym_class] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2739), + [anon_sym_union] = ACTIONS(2739), + [anon_sym_if] = ACTIONS(2739), + [anon_sym_switch] = ACTIONS(2739), + [anon_sym_case] = ACTIONS(2739), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2739), + [anon_sym_do] = ACTIONS(2739), + [anon_sym_for] = ACTIONS(2739), + [anon_sym_return] = ACTIONS(2739), + [anon_sym_break] = ACTIONS(2739), + [anon_sym_continue] = ACTIONS(2739), + [anon_sym_goto] = ACTIONS(2739), + [anon_sym_not] = ACTIONS(2739), + [anon_sym_compl] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_sizeof] = ACTIONS(2739), + [sym_number_literal] = ACTIONS(2741), + [anon_sym_L_SQUOTE] = ACTIONS(2741), + [anon_sym_u_SQUOTE] = ACTIONS(2741), + [anon_sym_U_SQUOTE] = ACTIONS(2741), + [anon_sym_u8_SQUOTE] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_L_DQUOTE] = ACTIONS(2741), + [anon_sym_u_DQUOTE] = ACTIONS(2741), + [anon_sym_U_DQUOTE] = ACTIONS(2741), + [anon_sym_u8_DQUOTE] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2741), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2739), + [anon_sym_decltype] = ACTIONS(2739), + [anon_sym_virtual] = ACTIONS(2739), + [anon_sym_explicit] = ACTIONS(2739), + [anon_sym_typename] = ACTIONS(2739), + [anon_sym_template] = ACTIONS(2739), + [anon_sym_operator] = ACTIONS(2739), + [anon_sym_try] = ACTIONS(2739), + [anon_sym_delete] = ACTIONS(2739), + [anon_sym_throw] = ACTIONS(2739), + [anon_sym_namespace] = ACTIONS(2739), + [anon_sym_using] = ACTIONS(2739), + [anon_sym_static_assert] = ACTIONS(2739), + [anon_sym_concept] = ACTIONS(2739), + [anon_sym_co_return] = ACTIONS(2739), + [anon_sym_co_yield] = ACTIONS(2739), + [anon_sym_R_DQUOTE] = ACTIONS(2741), + [anon_sym_LR_DQUOTE] = ACTIONS(2741), + [anon_sym_uR_DQUOTE] = ACTIONS(2741), + [anon_sym_UR_DQUOTE] = ACTIONS(2741), + [anon_sym_u8R_DQUOTE] = ACTIONS(2741), + [anon_sym_co_await] = ACTIONS(2739), + [anon_sym_new] = ACTIONS(2739), + [anon_sym_requires] = ACTIONS(2739), + [sym_this] = ACTIONS(2739), + [sym_nullptr] = ACTIONS(2739), + }, + [967] = { + [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_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_LBRACK] = ACTIONS(2735), + [anon_sym_static] = ACTIONS(2735), + [anon_sym_register] = ACTIONS(2735), + [anon_sym_inline] = ACTIONS(2735), + [anon_sym_thread_local] = ACTIONS(2735), + [anon_sym_input] = ACTIONS(2735), + [anon_sym_const] = ACTIONS(2735), + [anon_sym_volatile] = ACTIONS(2735), + [anon_sym_restrict] = ACTIONS(2735), + [anon_sym__Atomic] = ACTIONS(2735), + [anon_sym_mutable] = ACTIONS(2735), + [anon_sym_constexpr] = ACTIONS(2735), + [anon_sym_constinit] = ACTIONS(2735), + [anon_sym_consteval] = ACTIONS(2735), + [anon_sym_signed] = ACTIONS(2735), + [anon_sym_unsigned] = ACTIONS(2735), + [anon_sym_long] = ACTIONS(2735), + [anon_sym_short] = 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_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), + [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), + [sym_null] = ACTIONS(2735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2735), + [anon_sym_decltype] = ACTIONS(2735), + [anon_sym_virtual] = 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), + [sym_nullptr] = ACTIONS(2735), + }, + [968] = { + [ts_builtin_sym_end] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2681), + [aux_sym_preproc_include_token1] = ACTIONS(2681), + [aux_sym_preproc_def_token1] = ACTIONS(2681), + [aux_sym_preproc_if_token1] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), + [sym_preproc_directive] = ACTIONS(2681), + [anon_sym_LPAREN2] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_AMP_AMP] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2681), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym___attribute__] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), + [anon_sym___declspec] = ACTIONS(2681), + [anon_sym___based] = ACTIONS(2681), + [anon_sym___cdecl] = ACTIONS(2681), + [anon_sym___clrcall] = ACTIONS(2681), + [anon_sym___stdcall] = ACTIONS(2681), + [anon_sym___fastcall] = ACTIONS(2681), + [anon_sym___thiscall] = ACTIONS(2681), + [anon_sym___vectorcall] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_register] = ACTIONS(2681), + [anon_sym_inline] = ACTIONS(2681), + [anon_sym_thread_local] = ACTIONS(2681), + [anon_sym_input] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_volatile] = ACTIONS(2681), + [anon_sym_restrict] = ACTIONS(2681), + [anon_sym__Atomic] = ACTIONS(2681), + [anon_sym_mutable] = ACTIONS(2681), + [anon_sym_constexpr] = ACTIONS(2681), + [anon_sym_constinit] = ACTIONS(2681), + [anon_sym_consteval] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2681), + [anon_sym_unsigned] = ACTIONS(2681), + [anon_sym_long] = ACTIONS(2681), + [anon_sym_short] = ACTIONS(2681), + [sym_primitive_type] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2681), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2681), + [anon_sym_case] = ACTIONS(2681), + [anon_sym_default] = ACTIONS(2681), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_do] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [anon_sym_goto] = ACTIONS(2681), + [anon_sym_not] = ACTIONS(2681), + [anon_sym_compl] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_sizeof] = ACTIONS(2681), + [sym_number_literal] = ACTIONS(2683), + [anon_sym_L_SQUOTE] = ACTIONS(2683), + [anon_sym_u_SQUOTE] = ACTIONS(2683), + [anon_sym_U_SQUOTE] = ACTIONS(2683), + [anon_sym_u8_SQUOTE] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_L_DQUOTE] = ACTIONS(2683), + [anon_sym_u_DQUOTE] = ACTIONS(2683), + [anon_sym_U_DQUOTE] = ACTIONS(2683), + [anon_sym_u8_DQUOTE] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [sym_true] = ACTIONS(2681), + [sym_false] = ACTIONS(2681), + [sym_null] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2681), + [anon_sym_decltype] = ACTIONS(2681), + [anon_sym_virtual] = ACTIONS(2681), + [anon_sym_explicit] = ACTIONS(2681), + [anon_sym_typename] = ACTIONS(2681), + [anon_sym_template] = ACTIONS(2681), + [anon_sym_operator] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_delete] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2681), + [anon_sym_namespace] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2681), + [anon_sym_static_assert] = ACTIONS(2681), + [anon_sym_concept] = ACTIONS(2681), + [anon_sym_co_return] = ACTIONS(2681), + [anon_sym_co_yield] = ACTIONS(2681), + [anon_sym_R_DQUOTE] = ACTIONS(2683), + [anon_sym_LR_DQUOTE] = ACTIONS(2683), + [anon_sym_uR_DQUOTE] = ACTIONS(2683), + [anon_sym_UR_DQUOTE] = ACTIONS(2683), + [anon_sym_u8R_DQUOTE] = ACTIONS(2683), + [anon_sym_co_await] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2681), + [anon_sym_requires] = ACTIONS(2681), + [sym_this] = ACTIONS(2681), + [sym_nullptr] = ACTIONS(2681), + }, + [969] = { + [ts_builtin_sym_end] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2677), + [aux_sym_preproc_include_token1] = ACTIONS(2677), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), + [sym_preproc_directive] = ACTIONS(2677), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym___attribute__] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), + [anon_sym___declspec] = ACTIONS(2677), + [anon_sym___based] = ACTIONS(2677), + [anon_sym___cdecl] = ACTIONS(2677), + [anon_sym___clrcall] = ACTIONS(2677), + [anon_sym___stdcall] = ACTIONS(2677), + [anon_sym___fastcall] = ACTIONS(2677), + [anon_sym___thiscall] = ACTIONS(2677), + [anon_sym___vectorcall] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_register] = ACTIONS(2677), + [anon_sym_inline] = ACTIONS(2677), + [anon_sym_thread_local] = ACTIONS(2677), + [anon_sym_input] = ACTIONS(2677), + [anon_sym_const] = ACTIONS(2677), + [anon_sym_volatile] = ACTIONS(2677), + [anon_sym_restrict] = ACTIONS(2677), + [anon_sym__Atomic] = ACTIONS(2677), + [anon_sym_mutable] = ACTIONS(2677), + [anon_sym_constexpr] = ACTIONS(2677), + [anon_sym_constinit] = ACTIONS(2677), + [anon_sym_consteval] = ACTIONS(2677), + [anon_sym_signed] = ACTIONS(2677), + [anon_sym_unsigned] = ACTIONS(2677), + [anon_sym_long] = ACTIONS(2677), + [anon_sym_short] = ACTIONS(2677), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(2677), + [anon_sym_union] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_case] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_goto] = ACTIONS(2677), + [anon_sym_not] = ACTIONS(2677), + [anon_sym_compl] = ACTIONS(2677), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_sizeof] = ACTIONS(2677), + [sym_number_literal] = ACTIONS(2679), + [anon_sym_L_SQUOTE] = ACTIONS(2679), + [anon_sym_u_SQUOTE] = ACTIONS(2679), + [anon_sym_U_SQUOTE] = ACTIONS(2679), + [anon_sym_u8_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_L_DQUOTE] = ACTIONS(2679), + [anon_sym_u_DQUOTE] = ACTIONS(2679), + [anon_sym_U_DQUOTE] = ACTIONS(2679), + [anon_sym_u8_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [sym_true] = ACTIONS(2677), + [sym_false] = ACTIONS(2677), + [sym_null] = ACTIONS(2677), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2677), + [anon_sym_decltype] = ACTIONS(2677), + [anon_sym_virtual] = ACTIONS(2677), + [anon_sym_explicit] = ACTIONS(2677), + [anon_sym_typename] = ACTIONS(2677), + [anon_sym_template] = ACTIONS(2677), + [anon_sym_operator] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_delete] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_namespace] = ACTIONS(2677), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_static_assert] = ACTIONS(2677), + [anon_sym_concept] = ACTIONS(2677), + [anon_sym_co_return] = ACTIONS(2677), + [anon_sym_co_yield] = ACTIONS(2677), + [anon_sym_R_DQUOTE] = ACTIONS(2679), + [anon_sym_LR_DQUOTE] = ACTIONS(2679), + [anon_sym_uR_DQUOTE] = ACTIONS(2679), + [anon_sym_UR_DQUOTE] = ACTIONS(2679), + [anon_sym_u8R_DQUOTE] = ACTIONS(2679), + [anon_sym_co_await] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_requires] = ACTIONS(2677), + [sym_this] = ACTIONS(2677), + [sym_nullptr] = ACTIONS(2677), + }, + [970] = { + [sym_identifier] = ACTIONS(2729), + [aux_sym_preproc_include_token1] = ACTIONS(2729), + [aux_sym_preproc_def_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), + [sym_preproc_directive] = ACTIONS(2729), + [anon_sym_LPAREN2] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym___attribute__] = ACTIONS(2729), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), + [anon_sym___declspec] = ACTIONS(2729), + [anon_sym___based] = ACTIONS(2729), + [anon_sym___cdecl] = ACTIONS(2729), + [anon_sym___clrcall] = ACTIONS(2729), + [anon_sym___stdcall] = ACTIONS(2729), + [anon_sym___fastcall] = ACTIONS(2729), + [anon_sym___thiscall] = ACTIONS(2729), + [anon_sym___vectorcall] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_RBRACE] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_register] = ACTIONS(2729), + [anon_sym_inline] = ACTIONS(2729), + [anon_sym_thread_local] = ACTIONS(2729), + [anon_sym_input] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_volatile] = ACTIONS(2729), + [anon_sym_restrict] = ACTIONS(2729), + [anon_sym__Atomic] = ACTIONS(2729), + [anon_sym_mutable] = ACTIONS(2729), + [anon_sym_constexpr] = ACTIONS(2729), + [anon_sym_constinit] = ACTIONS(2729), + [anon_sym_consteval] = ACTIONS(2729), + [anon_sym_signed] = ACTIONS(2729), + [anon_sym_unsigned] = ACTIONS(2729), + [anon_sym_long] = ACTIONS(2729), + [anon_sym_short] = ACTIONS(2729), + [sym_primitive_type] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_case] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_goto] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_compl] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(2731), + [anon_sym_L_SQUOTE] = ACTIONS(2731), + [anon_sym_u_SQUOTE] = ACTIONS(2731), + [anon_sym_U_SQUOTE] = ACTIONS(2731), + [anon_sym_u8_SQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_L_DQUOTE] = ACTIONS(2731), + [anon_sym_u_DQUOTE] = ACTIONS(2731), + [anon_sym_U_DQUOTE] = ACTIONS(2731), + [anon_sym_u8_DQUOTE] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_null] = ACTIONS(2729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2729), + [anon_sym_decltype] = ACTIONS(2729), + [anon_sym_virtual] = ACTIONS(2729), + [anon_sym_explicit] = ACTIONS(2729), + [anon_sym_typename] = ACTIONS(2729), + [anon_sym_template] = ACTIONS(2729), + [anon_sym_operator] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_delete] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_static_assert] = ACTIONS(2729), + [anon_sym_concept] = ACTIONS(2729), + [anon_sym_co_return] = ACTIONS(2729), + [anon_sym_co_yield] = ACTIONS(2729), + [anon_sym_R_DQUOTE] = ACTIONS(2731), + [anon_sym_LR_DQUOTE] = ACTIONS(2731), + [anon_sym_uR_DQUOTE] = ACTIONS(2731), + [anon_sym_UR_DQUOTE] = ACTIONS(2731), + [anon_sym_u8R_DQUOTE] = ACTIONS(2731), + [anon_sym_co_await] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_requires] = ACTIONS(2729), + [sym_this] = ACTIONS(2729), + [sym_nullptr] = ACTIONS(2729), + }, + [971] = { + [sym_identifier] = ACTIONS(2725), + [aux_sym_preproc_include_token1] = ACTIONS(2725), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), + [sym_preproc_directive] = ACTIONS(2725), + [anon_sym_LPAREN2] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_typedef] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym___attribute__] = ACTIONS(2725), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), + [anon_sym___declspec] = ACTIONS(2725), + [anon_sym___based] = ACTIONS(2725), + [anon_sym___cdecl] = ACTIONS(2725), + [anon_sym___clrcall] = ACTIONS(2725), + [anon_sym___stdcall] = ACTIONS(2725), + [anon_sym___fastcall] = ACTIONS(2725), + [anon_sym___thiscall] = ACTIONS(2725), + [anon_sym___vectorcall] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_register] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym_thread_local] = ACTIONS(2725), + [anon_sym_input] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_volatile] = ACTIONS(2725), + [anon_sym_restrict] = ACTIONS(2725), + [anon_sym__Atomic] = ACTIONS(2725), + [anon_sym_mutable] = ACTIONS(2725), + [anon_sym_constexpr] = ACTIONS(2725), + [anon_sym_constinit] = ACTIONS(2725), + [anon_sym_consteval] = ACTIONS(2725), + [anon_sym_signed] = ACTIONS(2725), + [anon_sym_unsigned] = ACTIONS(2725), + [anon_sym_long] = ACTIONS(2725), + [anon_sym_short] = ACTIONS(2725), + [sym_primitive_type] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_case] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2725), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_compl] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2725), + [sym_number_literal] = ACTIONS(2727), + [anon_sym_L_SQUOTE] = ACTIONS(2727), + [anon_sym_u_SQUOTE] = ACTIONS(2727), + [anon_sym_U_SQUOTE] = ACTIONS(2727), + [anon_sym_u8_SQUOTE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_L_DQUOTE] = ACTIONS(2727), + [anon_sym_u_DQUOTE] = ACTIONS(2727), + [anon_sym_U_DQUOTE] = ACTIONS(2727), + [anon_sym_u8_DQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [sym_null] = ACTIONS(2725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2725), + [anon_sym_decltype] = ACTIONS(2725), + [anon_sym_virtual] = ACTIONS(2725), + [anon_sym_explicit] = ACTIONS(2725), + [anon_sym_typename] = ACTIONS(2725), + [anon_sym_template] = ACTIONS(2725), + [anon_sym_operator] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_namespace] = ACTIONS(2725), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2725), + [anon_sym_concept] = ACTIONS(2725), + [anon_sym_co_return] = ACTIONS(2725), + [anon_sym_co_yield] = ACTIONS(2725), + [anon_sym_R_DQUOTE] = ACTIONS(2727), + [anon_sym_LR_DQUOTE] = ACTIONS(2727), + [anon_sym_uR_DQUOTE] = ACTIONS(2727), + [anon_sym_UR_DQUOTE] = ACTIONS(2727), + [anon_sym_u8R_DQUOTE] = ACTIONS(2727), + [anon_sym_co_await] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_requires] = ACTIONS(2725), + [sym_this] = ACTIONS(2725), + [sym_nullptr] = ACTIONS(2725), + }, + [972] = { + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym_input] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [sym_null] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), + [sym_nullptr] = ACTIONS(2721), + }, + [973] = { [sym_identifier] = ACTIONS(2717), [aux_sym_preproc_include_token1] = ACTIONS(2717), [aux_sym_preproc_def_token1] = ACTIONS(2717), @@ -142514,11 +148911,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2717), [anon_sym___vectorcall] = ACTIONS(2717), [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), [anon_sym_LBRACK] = ACTIONS(2717), [anon_sym_static] = ACTIONS(2717), [anon_sym_register] = ACTIONS(2717), [anon_sym_inline] = ACTIONS(2717), [anon_sym_thread_local] = ACTIONS(2717), + [anon_sym_input] = ACTIONS(2717), [anon_sym_const] = ACTIONS(2717), [anon_sym_volatile] = ACTIONS(2717), [anon_sym_restrict] = ACTIONS(2717), @@ -142594,10 +148993,9502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2717), [sym_nullptr] = ACTIONS(2717), }, - [924] = { + [974] = { + [sym_identifier] = ACTIONS(2713), + [aux_sym_preproc_include_token1] = ACTIONS(2713), + [aux_sym_preproc_def_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), + [sym_preproc_directive] = ACTIONS(2713), + [anon_sym_LPAREN2] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym___attribute__] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), + [anon_sym___declspec] = ACTIONS(2713), + [anon_sym___based] = ACTIONS(2713), + [anon_sym___cdecl] = ACTIONS(2713), + [anon_sym___clrcall] = ACTIONS(2713), + [anon_sym___stdcall] = ACTIONS(2713), + [anon_sym___fastcall] = ACTIONS(2713), + [anon_sym___thiscall] = ACTIONS(2713), + [anon_sym___vectorcall] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_register] = ACTIONS(2713), + [anon_sym_inline] = ACTIONS(2713), + [anon_sym_thread_local] = ACTIONS(2713), + [anon_sym_input] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_volatile] = ACTIONS(2713), + [anon_sym_restrict] = ACTIONS(2713), + [anon_sym__Atomic] = ACTIONS(2713), + [anon_sym_mutable] = ACTIONS(2713), + [anon_sym_constexpr] = ACTIONS(2713), + [anon_sym_constinit] = ACTIONS(2713), + [anon_sym_consteval] = ACTIONS(2713), + [anon_sym_signed] = ACTIONS(2713), + [anon_sym_unsigned] = ACTIONS(2713), + [anon_sym_long] = ACTIONS(2713), + [anon_sym_short] = ACTIONS(2713), + [sym_primitive_type] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_case] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_goto] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2713), + [anon_sym_compl] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_sizeof] = ACTIONS(2713), + [sym_number_literal] = ACTIONS(2715), + [anon_sym_L_SQUOTE] = ACTIONS(2715), + [anon_sym_u_SQUOTE] = ACTIONS(2715), + [anon_sym_U_SQUOTE] = ACTIONS(2715), + [anon_sym_u8_SQUOTE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_L_DQUOTE] = ACTIONS(2715), + [anon_sym_u_DQUOTE] = ACTIONS(2715), + [anon_sym_U_DQUOTE] = ACTIONS(2715), + [anon_sym_u8_DQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [sym_true] = ACTIONS(2713), + [sym_false] = ACTIONS(2713), + [sym_null] = ACTIONS(2713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2713), + [anon_sym_decltype] = ACTIONS(2713), + [anon_sym_virtual] = ACTIONS(2713), + [anon_sym_explicit] = ACTIONS(2713), + [anon_sym_typename] = ACTIONS(2713), + [anon_sym_template] = ACTIONS(2713), + [anon_sym_operator] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_namespace] = ACTIONS(2713), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_static_assert] = ACTIONS(2713), + [anon_sym_concept] = ACTIONS(2713), + [anon_sym_co_return] = ACTIONS(2713), + [anon_sym_co_yield] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2715), + [anon_sym_LR_DQUOTE] = ACTIONS(2715), + [anon_sym_uR_DQUOTE] = ACTIONS(2715), + [anon_sym_UR_DQUOTE] = ACTIONS(2715), + [anon_sym_u8R_DQUOTE] = ACTIONS(2715), + [anon_sym_co_await] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2713), + [sym_nullptr] = ACTIONS(2713), + }, + [975] = { + [sym_identifier] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym___attribute__] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym___declspec] = ACTIONS(2709), + [anon_sym___based] = ACTIONS(2709), + [anon_sym___cdecl] = ACTIONS(2709), + [anon_sym___clrcall] = ACTIONS(2709), + [anon_sym___stdcall] = ACTIONS(2709), + [anon_sym___fastcall] = ACTIONS(2709), + [anon_sym___thiscall] = ACTIONS(2709), + [anon_sym___vectorcall] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_thread_local] = ACTIONS(2709), + [anon_sym_input] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [anon_sym_constinit] = ACTIONS(2709), + [anon_sym_consteval] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_compl] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_L_SQUOTE] = ACTIONS(2711), + [anon_sym_u_SQUOTE] = ACTIONS(2711), + [anon_sym_U_SQUOTE] = ACTIONS(2711), + [anon_sym_u8_SQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_L_DQUOTE] = ACTIONS(2711), + [anon_sym_u_DQUOTE] = ACTIONS(2711), + [anon_sym_U_DQUOTE] = ACTIONS(2711), + [anon_sym_u8_DQUOTE] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_null] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2709), + [anon_sym_decltype] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_operator] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_namespace] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_static_assert] = ACTIONS(2709), + [anon_sym_concept] = ACTIONS(2709), + [anon_sym_co_return] = ACTIONS(2709), + [anon_sym_co_yield] = ACTIONS(2709), + [anon_sym_R_DQUOTE] = ACTIONS(2711), + [anon_sym_LR_DQUOTE] = ACTIONS(2711), + [anon_sym_uR_DQUOTE] = ACTIONS(2711), + [anon_sym_UR_DQUOTE] = ACTIONS(2711), + [anon_sym_u8R_DQUOTE] = ACTIONS(2711), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_requires] = ACTIONS(2709), + [sym_this] = ACTIONS(2709), + [sym_nullptr] = ACTIONS(2709), + }, + [976] = { + [sym_identifier] = ACTIONS(2705), + [aux_sym_preproc_include_token1] = ACTIONS(2705), + [aux_sym_preproc_def_token1] = ACTIONS(2705), + [aux_sym_preproc_if_token1] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), + [sym_preproc_directive] = ACTIONS(2705), + [anon_sym_LPAREN2] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_AMP_AMP] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_typedef] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym___attribute__] = ACTIONS(2705), + [anon_sym_COLON_COLON] = ACTIONS(2707), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), + [anon_sym___declspec] = ACTIONS(2705), + [anon_sym___based] = ACTIONS(2705), + [anon_sym___cdecl] = ACTIONS(2705), + [anon_sym___clrcall] = ACTIONS(2705), + [anon_sym___stdcall] = ACTIONS(2705), + [anon_sym___fastcall] = ACTIONS(2705), + [anon_sym___thiscall] = ACTIONS(2705), + [anon_sym___vectorcall] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_RBRACE] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_register] = ACTIONS(2705), + [anon_sym_inline] = ACTIONS(2705), + [anon_sym_thread_local] = ACTIONS(2705), + [anon_sym_input] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_volatile] = ACTIONS(2705), + [anon_sym_restrict] = ACTIONS(2705), + [anon_sym__Atomic] = ACTIONS(2705), + [anon_sym_mutable] = ACTIONS(2705), + [anon_sym_constexpr] = ACTIONS(2705), + [anon_sym_constinit] = ACTIONS(2705), + [anon_sym_consteval] = ACTIONS(2705), + [anon_sym_signed] = ACTIONS(2705), + [anon_sym_unsigned] = ACTIONS(2705), + [anon_sym_long] = ACTIONS(2705), + [anon_sym_short] = ACTIONS(2705), + [sym_primitive_type] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_switch] = ACTIONS(2705), + [anon_sym_case] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_do] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_goto] = ACTIONS(2705), + [anon_sym_not] = ACTIONS(2705), + [anon_sym_compl] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_sizeof] = ACTIONS(2705), + [sym_number_literal] = ACTIONS(2707), + [anon_sym_L_SQUOTE] = ACTIONS(2707), + [anon_sym_u_SQUOTE] = ACTIONS(2707), + [anon_sym_U_SQUOTE] = ACTIONS(2707), + [anon_sym_u8_SQUOTE] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_L_DQUOTE] = ACTIONS(2707), + [anon_sym_u_DQUOTE] = ACTIONS(2707), + [anon_sym_U_DQUOTE] = ACTIONS(2707), + [anon_sym_u8_DQUOTE] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2707), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_null] = ACTIONS(2705), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2705), + [anon_sym_decltype] = ACTIONS(2705), + [anon_sym_virtual] = ACTIONS(2705), + [anon_sym_explicit] = ACTIONS(2705), + [anon_sym_typename] = ACTIONS(2705), + [anon_sym_template] = ACTIONS(2705), + [anon_sym_operator] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_delete] = ACTIONS(2705), + [anon_sym_throw] = ACTIONS(2705), + [anon_sym_namespace] = ACTIONS(2705), + [anon_sym_using] = ACTIONS(2705), + [anon_sym_static_assert] = ACTIONS(2705), + [anon_sym_concept] = ACTIONS(2705), + [anon_sym_co_return] = ACTIONS(2705), + [anon_sym_co_yield] = ACTIONS(2705), + [anon_sym_R_DQUOTE] = ACTIONS(2707), + [anon_sym_LR_DQUOTE] = ACTIONS(2707), + [anon_sym_uR_DQUOTE] = ACTIONS(2707), + [anon_sym_UR_DQUOTE] = ACTIONS(2707), + [anon_sym_u8R_DQUOTE] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_requires] = ACTIONS(2705), + [sym_this] = ACTIONS(2705), + [sym_nullptr] = ACTIONS(2705), + }, + [977] = { + [sym_identifier] = ACTIONS(2819), + [aux_sym_preproc_include_token1] = ACTIONS(2819), + [aux_sym_preproc_def_token1] = ACTIONS(2819), + [aux_sym_preproc_if_token1] = ACTIONS(2819), + [aux_sym_preproc_if_token2] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2819), + [sym_preproc_directive] = ACTIONS(2819), + [anon_sym_LPAREN2] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym_typedef] = ACTIONS(2819), + [anon_sym_extern] = ACTIONS(2819), + [anon_sym___attribute__] = ACTIONS(2819), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2821), + [anon_sym___declspec] = ACTIONS(2819), + [anon_sym___based] = ACTIONS(2819), + [anon_sym___cdecl] = ACTIONS(2819), + [anon_sym___clrcall] = ACTIONS(2819), + [anon_sym___stdcall] = ACTIONS(2819), + [anon_sym___fastcall] = ACTIONS(2819), + [anon_sym___thiscall] = ACTIONS(2819), + [anon_sym___vectorcall] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_static] = ACTIONS(2819), + [anon_sym_register] = ACTIONS(2819), + [anon_sym_inline] = ACTIONS(2819), + [anon_sym_thread_local] = ACTIONS(2819), + [anon_sym_input] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_volatile] = ACTIONS(2819), + [anon_sym_restrict] = ACTIONS(2819), + [anon_sym__Atomic] = ACTIONS(2819), + [anon_sym_mutable] = ACTIONS(2819), + [anon_sym_constexpr] = ACTIONS(2819), + [anon_sym_constinit] = ACTIONS(2819), + [anon_sym_consteval] = ACTIONS(2819), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [sym_primitive_type] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), + [anon_sym_class] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_union] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_switch] = ACTIONS(2819), + [anon_sym_case] = ACTIONS(2819), + [anon_sym_default] = ACTIONS(2819), + [anon_sym_while] = ACTIONS(2819), + [anon_sym_do] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_goto] = ACTIONS(2819), + [anon_sym_not] = ACTIONS(2819), + [anon_sym_compl] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_sizeof] = ACTIONS(2819), + [sym_number_literal] = ACTIONS(2821), + [anon_sym_L_SQUOTE] = ACTIONS(2821), + [anon_sym_u_SQUOTE] = ACTIONS(2821), + [anon_sym_U_SQUOTE] = ACTIONS(2821), + [anon_sym_u8_SQUOTE] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2821), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2819), + [sym_false] = ACTIONS(2819), + [sym_null] = ACTIONS(2819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2819), + [anon_sym_decltype] = ACTIONS(2819), + [anon_sym_virtual] = ACTIONS(2819), + [anon_sym_explicit] = ACTIONS(2819), + [anon_sym_typename] = ACTIONS(2819), + [anon_sym_template] = ACTIONS(2819), + [anon_sym_operator] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2819), + [anon_sym_delete] = ACTIONS(2819), + [anon_sym_throw] = ACTIONS(2819), + [anon_sym_namespace] = ACTIONS(2819), + [anon_sym_using] = ACTIONS(2819), + [anon_sym_static_assert] = ACTIONS(2819), + [anon_sym_concept] = ACTIONS(2819), + [anon_sym_co_return] = ACTIONS(2819), + [anon_sym_co_yield] = ACTIONS(2819), + [anon_sym_R_DQUOTE] = ACTIONS(2821), + [anon_sym_LR_DQUOTE] = ACTIONS(2821), + [anon_sym_uR_DQUOTE] = ACTIONS(2821), + [anon_sym_UR_DQUOTE] = ACTIONS(2821), + [anon_sym_u8R_DQUOTE] = ACTIONS(2821), + [anon_sym_co_await] = ACTIONS(2819), + [anon_sym_new] = ACTIONS(2819), + [anon_sym_requires] = ACTIONS(2819), + [sym_this] = ACTIONS(2819), + [sym_nullptr] = ACTIONS(2819), + }, + [978] = { + [sym_identifier] = ACTIONS(2779), + [aux_sym_preproc_include_token1] = ACTIONS(2779), + [aux_sym_preproc_def_token1] = ACTIONS(2779), + [aux_sym_preproc_if_token1] = ACTIONS(2779), + [aux_sym_preproc_if_token2] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2779), + [sym_preproc_directive] = ACTIONS(2779), + [anon_sym_LPAREN2] = ACTIONS(2781), + [anon_sym_BANG] = ACTIONS(2781), + [anon_sym_TILDE] = ACTIONS(2781), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2781), + [anon_sym_typedef] = ACTIONS(2779), + [anon_sym_extern] = ACTIONS(2779), + [anon_sym___attribute__] = ACTIONS(2779), + [anon_sym_COLON_COLON] = ACTIONS(2781), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2781), + [anon_sym___declspec] = ACTIONS(2779), + [anon_sym___based] = ACTIONS(2779), + [anon_sym___cdecl] = ACTIONS(2779), + [anon_sym___clrcall] = ACTIONS(2779), + [anon_sym___stdcall] = ACTIONS(2779), + [anon_sym___fastcall] = ACTIONS(2779), + [anon_sym___thiscall] = ACTIONS(2779), + [anon_sym___vectorcall] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2781), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_static] = ACTIONS(2779), + [anon_sym_register] = ACTIONS(2779), + [anon_sym_inline] = ACTIONS(2779), + [anon_sym_thread_local] = ACTIONS(2779), + [anon_sym_input] = ACTIONS(2779), + [anon_sym_const] = ACTIONS(2779), + [anon_sym_volatile] = ACTIONS(2779), + [anon_sym_restrict] = ACTIONS(2779), + [anon_sym__Atomic] = ACTIONS(2779), + [anon_sym_mutable] = ACTIONS(2779), + [anon_sym_constexpr] = ACTIONS(2779), + [anon_sym_constinit] = ACTIONS(2779), + [anon_sym_consteval] = ACTIONS(2779), + [anon_sym_signed] = ACTIONS(2779), + [anon_sym_unsigned] = ACTIONS(2779), + [anon_sym_long] = ACTIONS(2779), + [anon_sym_short] = ACTIONS(2779), + [sym_primitive_type] = ACTIONS(2779), + [anon_sym_enum] = ACTIONS(2779), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_union] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_switch] = ACTIONS(2779), + [anon_sym_case] = ACTIONS(2779), + [anon_sym_default] = ACTIONS(2779), + [anon_sym_while] = ACTIONS(2779), + [anon_sym_do] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2779), + [anon_sym_return] = ACTIONS(2779), + [anon_sym_break] = ACTIONS(2779), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_goto] = ACTIONS(2779), + [anon_sym_not] = ACTIONS(2779), + [anon_sym_compl] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2781), + [anon_sym_sizeof] = ACTIONS(2779), + [sym_number_literal] = ACTIONS(2781), + [anon_sym_L_SQUOTE] = ACTIONS(2781), + [anon_sym_u_SQUOTE] = ACTIONS(2781), + [anon_sym_U_SQUOTE] = ACTIONS(2781), + [anon_sym_u8_SQUOTE] = ACTIONS(2781), + [anon_sym_SQUOTE] = ACTIONS(2781), + [anon_sym_L_DQUOTE] = ACTIONS(2781), + [anon_sym_u_DQUOTE] = ACTIONS(2781), + [anon_sym_U_DQUOTE] = ACTIONS(2781), + [anon_sym_u8_DQUOTE] = ACTIONS(2781), + [anon_sym_DQUOTE] = ACTIONS(2781), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [sym_null] = ACTIONS(2779), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2779), + [anon_sym_decltype] = ACTIONS(2779), + [anon_sym_virtual] = ACTIONS(2779), + [anon_sym_explicit] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_template] = ACTIONS(2779), + [anon_sym_operator] = ACTIONS(2779), + [anon_sym_try] = ACTIONS(2779), + [anon_sym_delete] = ACTIONS(2779), + [anon_sym_throw] = ACTIONS(2779), + [anon_sym_namespace] = ACTIONS(2779), + [anon_sym_using] = ACTIONS(2779), + [anon_sym_static_assert] = ACTIONS(2779), + [anon_sym_concept] = ACTIONS(2779), + [anon_sym_co_return] = ACTIONS(2779), + [anon_sym_co_yield] = ACTIONS(2779), + [anon_sym_R_DQUOTE] = ACTIONS(2781), + [anon_sym_LR_DQUOTE] = ACTIONS(2781), + [anon_sym_uR_DQUOTE] = ACTIONS(2781), + [anon_sym_UR_DQUOTE] = ACTIONS(2781), + [anon_sym_u8R_DQUOTE] = ACTIONS(2781), + [anon_sym_co_await] = ACTIONS(2779), + [anon_sym_new] = ACTIONS(2779), + [anon_sym_requires] = ACTIONS(2779), + [sym_this] = ACTIONS(2779), + [sym_nullptr] = ACTIONS(2779), + }, + [979] = { + [sym_identifier] = ACTIONS(2705), + [aux_sym_preproc_include_token1] = ACTIONS(2705), + [aux_sym_preproc_def_token1] = ACTIONS(2705), + [aux_sym_preproc_if_token1] = ACTIONS(2705), + [aux_sym_preproc_if_token2] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), + [sym_preproc_directive] = ACTIONS(2705), + [anon_sym_LPAREN2] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_AMP_AMP] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_typedef] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym___attribute__] = ACTIONS(2705), + [anon_sym_COLON_COLON] = ACTIONS(2707), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), + [anon_sym___declspec] = ACTIONS(2705), + [anon_sym___based] = ACTIONS(2705), + [anon_sym___cdecl] = ACTIONS(2705), + [anon_sym___clrcall] = ACTIONS(2705), + [anon_sym___stdcall] = ACTIONS(2705), + [anon_sym___fastcall] = ACTIONS(2705), + [anon_sym___thiscall] = ACTIONS(2705), + [anon_sym___vectorcall] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_register] = ACTIONS(2705), + [anon_sym_inline] = ACTIONS(2705), + [anon_sym_thread_local] = ACTIONS(2705), + [anon_sym_input] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_volatile] = ACTIONS(2705), + [anon_sym_restrict] = ACTIONS(2705), + [anon_sym__Atomic] = ACTIONS(2705), + [anon_sym_mutable] = ACTIONS(2705), + [anon_sym_constexpr] = ACTIONS(2705), + [anon_sym_constinit] = ACTIONS(2705), + [anon_sym_consteval] = ACTIONS(2705), + [anon_sym_signed] = ACTIONS(2705), + [anon_sym_unsigned] = ACTIONS(2705), + [anon_sym_long] = ACTIONS(2705), + [anon_sym_short] = ACTIONS(2705), + [sym_primitive_type] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_switch] = ACTIONS(2705), + [anon_sym_case] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_do] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_goto] = ACTIONS(2705), + [anon_sym_not] = ACTIONS(2705), + [anon_sym_compl] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_sizeof] = ACTIONS(2705), + [sym_number_literal] = ACTIONS(2707), + [anon_sym_L_SQUOTE] = ACTIONS(2707), + [anon_sym_u_SQUOTE] = ACTIONS(2707), + [anon_sym_U_SQUOTE] = ACTIONS(2707), + [anon_sym_u8_SQUOTE] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_L_DQUOTE] = ACTIONS(2707), + [anon_sym_u_DQUOTE] = ACTIONS(2707), + [anon_sym_U_DQUOTE] = ACTIONS(2707), + [anon_sym_u8_DQUOTE] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2707), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_null] = ACTIONS(2705), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2705), + [anon_sym_decltype] = ACTIONS(2705), + [anon_sym_virtual] = ACTIONS(2705), + [anon_sym_explicit] = ACTIONS(2705), + [anon_sym_typename] = ACTIONS(2705), + [anon_sym_template] = ACTIONS(2705), + [anon_sym_operator] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_delete] = ACTIONS(2705), + [anon_sym_throw] = ACTIONS(2705), + [anon_sym_namespace] = ACTIONS(2705), + [anon_sym_using] = ACTIONS(2705), + [anon_sym_static_assert] = ACTIONS(2705), + [anon_sym_concept] = ACTIONS(2705), + [anon_sym_co_return] = ACTIONS(2705), + [anon_sym_co_yield] = ACTIONS(2705), + [anon_sym_R_DQUOTE] = ACTIONS(2707), + [anon_sym_LR_DQUOTE] = ACTIONS(2707), + [anon_sym_uR_DQUOTE] = ACTIONS(2707), + [anon_sym_UR_DQUOTE] = ACTIONS(2707), + [anon_sym_u8R_DQUOTE] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_requires] = ACTIONS(2705), + [sym_this] = ACTIONS(2705), + [sym_nullptr] = ACTIONS(2705), + }, + [980] = { + [sym_identifier] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token2] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym___attribute__] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym___declspec] = ACTIONS(2709), + [anon_sym___based] = ACTIONS(2709), + [anon_sym___cdecl] = ACTIONS(2709), + [anon_sym___clrcall] = ACTIONS(2709), + [anon_sym___stdcall] = ACTIONS(2709), + [anon_sym___fastcall] = ACTIONS(2709), + [anon_sym___thiscall] = ACTIONS(2709), + [anon_sym___vectorcall] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_thread_local] = ACTIONS(2709), + [anon_sym_input] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [anon_sym_constinit] = ACTIONS(2709), + [anon_sym_consteval] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_compl] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_L_SQUOTE] = ACTIONS(2711), + [anon_sym_u_SQUOTE] = ACTIONS(2711), + [anon_sym_U_SQUOTE] = ACTIONS(2711), + [anon_sym_u8_SQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_L_DQUOTE] = ACTIONS(2711), + [anon_sym_u_DQUOTE] = ACTIONS(2711), + [anon_sym_U_DQUOTE] = ACTIONS(2711), + [anon_sym_u8_DQUOTE] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_null] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2709), + [anon_sym_decltype] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_operator] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_namespace] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_static_assert] = ACTIONS(2709), + [anon_sym_concept] = ACTIONS(2709), + [anon_sym_co_return] = ACTIONS(2709), + [anon_sym_co_yield] = ACTIONS(2709), + [anon_sym_R_DQUOTE] = ACTIONS(2711), + [anon_sym_LR_DQUOTE] = ACTIONS(2711), + [anon_sym_uR_DQUOTE] = ACTIONS(2711), + [anon_sym_UR_DQUOTE] = ACTIONS(2711), + [anon_sym_u8R_DQUOTE] = ACTIONS(2711), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_requires] = ACTIONS(2709), + [sym_this] = ACTIONS(2709), + [sym_nullptr] = ACTIONS(2709), + }, + [981] = { + [sym_identifier] = ACTIONS(2713), + [aux_sym_preproc_include_token1] = ACTIONS(2713), + [aux_sym_preproc_def_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token2] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), + [sym_preproc_directive] = ACTIONS(2713), + [anon_sym_LPAREN2] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym___attribute__] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), + [anon_sym___declspec] = ACTIONS(2713), + [anon_sym___based] = ACTIONS(2713), + [anon_sym___cdecl] = ACTIONS(2713), + [anon_sym___clrcall] = ACTIONS(2713), + [anon_sym___stdcall] = ACTIONS(2713), + [anon_sym___fastcall] = ACTIONS(2713), + [anon_sym___thiscall] = ACTIONS(2713), + [anon_sym___vectorcall] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_register] = ACTIONS(2713), + [anon_sym_inline] = ACTIONS(2713), + [anon_sym_thread_local] = ACTIONS(2713), + [anon_sym_input] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_volatile] = ACTIONS(2713), + [anon_sym_restrict] = ACTIONS(2713), + [anon_sym__Atomic] = ACTIONS(2713), + [anon_sym_mutable] = ACTIONS(2713), + [anon_sym_constexpr] = ACTIONS(2713), + [anon_sym_constinit] = ACTIONS(2713), + [anon_sym_consteval] = ACTIONS(2713), + [anon_sym_signed] = ACTIONS(2713), + [anon_sym_unsigned] = ACTIONS(2713), + [anon_sym_long] = ACTIONS(2713), + [anon_sym_short] = ACTIONS(2713), + [sym_primitive_type] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_case] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_goto] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2713), + [anon_sym_compl] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_sizeof] = ACTIONS(2713), + [sym_number_literal] = ACTIONS(2715), + [anon_sym_L_SQUOTE] = ACTIONS(2715), + [anon_sym_u_SQUOTE] = ACTIONS(2715), + [anon_sym_U_SQUOTE] = ACTIONS(2715), + [anon_sym_u8_SQUOTE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_L_DQUOTE] = ACTIONS(2715), + [anon_sym_u_DQUOTE] = ACTIONS(2715), + [anon_sym_U_DQUOTE] = ACTIONS(2715), + [anon_sym_u8_DQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [sym_true] = ACTIONS(2713), + [sym_false] = ACTIONS(2713), + [sym_null] = ACTIONS(2713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2713), + [anon_sym_decltype] = ACTIONS(2713), + [anon_sym_virtual] = ACTIONS(2713), + [anon_sym_explicit] = ACTIONS(2713), + [anon_sym_typename] = ACTIONS(2713), + [anon_sym_template] = ACTIONS(2713), + [anon_sym_operator] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_namespace] = ACTIONS(2713), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_static_assert] = ACTIONS(2713), + [anon_sym_concept] = ACTIONS(2713), + [anon_sym_co_return] = ACTIONS(2713), + [anon_sym_co_yield] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2715), + [anon_sym_LR_DQUOTE] = ACTIONS(2715), + [anon_sym_uR_DQUOTE] = ACTIONS(2715), + [anon_sym_UR_DQUOTE] = ACTIONS(2715), + [anon_sym_u8R_DQUOTE] = ACTIONS(2715), + [anon_sym_co_await] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2713), + [sym_nullptr] = ACTIONS(2713), + }, + [982] = { + [ts_builtin_sym_end] = ACTIONS(2741), + [sym_identifier] = ACTIONS(2739), + [aux_sym_preproc_include_token1] = ACTIONS(2739), + [aux_sym_preproc_def_token1] = ACTIONS(2739), + [aux_sym_preproc_if_token1] = ACTIONS(2739), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), + [sym_preproc_directive] = ACTIONS(2739), + [anon_sym_LPAREN2] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_PLUS] = ACTIONS(2739), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_AMP_AMP] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2739), + [anon_sym_SEMI] = ACTIONS(2741), + [anon_sym_typedef] = ACTIONS(2739), + [anon_sym_extern] = ACTIONS(2739), + [anon_sym___attribute__] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2741), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), + [anon_sym___declspec] = ACTIONS(2739), + [anon_sym___based] = ACTIONS(2739), + [anon_sym___cdecl] = ACTIONS(2739), + [anon_sym___clrcall] = ACTIONS(2739), + [anon_sym___stdcall] = ACTIONS(2739), + [anon_sym___fastcall] = ACTIONS(2739), + [anon_sym___thiscall] = ACTIONS(2739), + [anon_sym___vectorcall] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_static] = ACTIONS(2739), + [anon_sym_register] = ACTIONS(2739), + [anon_sym_inline] = ACTIONS(2739), + [anon_sym_thread_local] = ACTIONS(2739), + [anon_sym_input] = ACTIONS(2739), + [anon_sym_const] = ACTIONS(2739), + [anon_sym_volatile] = ACTIONS(2739), + [anon_sym_restrict] = ACTIONS(2739), + [anon_sym__Atomic] = ACTIONS(2739), + [anon_sym_mutable] = ACTIONS(2739), + [anon_sym_constexpr] = ACTIONS(2739), + [anon_sym_constinit] = ACTIONS(2739), + [anon_sym_consteval] = ACTIONS(2739), + [anon_sym_signed] = ACTIONS(2739), + [anon_sym_unsigned] = ACTIONS(2739), + [anon_sym_long] = ACTIONS(2739), + [anon_sym_short] = ACTIONS(2739), + [sym_primitive_type] = ACTIONS(2739), + [anon_sym_enum] = ACTIONS(2739), + [anon_sym_class] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2739), + [anon_sym_union] = ACTIONS(2739), + [anon_sym_if] = ACTIONS(2739), + [anon_sym_switch] = ACTIONS(2739), + [anon_sym_case] = ACTIONS(2739), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2739), + [anon_sym_do] = ACTIONS(2739), + [anon_sym_for] = ACTIONS(2739), + [anon_sym_return] = ACTIONS(2739), + [anon_sym_break] = ACTIONS(2739), + [anon_sym_continue] = ACTIONS(2739), + [anon_sym_goto] = ACTIONS(2739), + [anon_sym_not] = ACTIONS(2739), + [anon_sym_compl] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_sizeof] = ACTIONS(2739), + [sym_number_literal] = ACTIONS(2741), + [anon_sym_L_SQUOTE] = ACTIONS(2741), + [anon_sym_u_SQUOTE] = ACTIONS(2741), + [anon_sym_U_SQUOTE] = ACTIONS(2741), + [anon_sym_u8_SQUOTE] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_L_DQUOTE] = ACTIONS(2741), + [anon_sym_u_DQUOTE] = ACTIONS(2741), + [anon_sym_U_DQUOTE] = ACTIONS(2741), + [anon_sym_u8_DQUOTE] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2741), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2739), + [anon_sym_decltype] = ACTIONS(2739), + [anon_sym_virtual] = ACTIONS(2739), + [anon_sym_explicit] = ACTIONS(2739), + [anon_sym_typename] = ACTIONS(2739), + [anon_sym_template] = ACTIONS(2739), + [anon_sym_operator] = ACTIONS(2739), + [anon_sym_try] = ACTIONS(2739), + [anon_sym_delete] = ACTIONS(2739), + [anon_sym_throw] = ACTIONS(2739), + [anon_sym_namespace] = ACTIONS(2739), + [anon_sym_using] = ACTIONS(2739), + [anon_sym_static_assert] = ACTIONS(2739), + [anon_sym_concept] = ACTIONS(2739), + [anon_sym_co_return] = ACTIONS(2739), + [anon_sym_co_yield] = ACTIONS(2739), + [anon_sym_R_DQUOTE] = ACTIONS(2741), + [anon_sym_LR_DQUOTE] = ACTIONS(2741), + [anon_sym_uR_DQUOTE] = ACTIONS(2741), + [anon_sym_UR_DQUOTE] = ACTIONS(2741), + [anon_sym_u8R_DQUOTE] = ACTIONS(2741), + [anon_sym_co_await] = ACTIONS(2739), + [anon_sym_new] = ACTIONS(2739), + [anon_sym_requires] = ACTIONS(2739), + [sym_this] = ACTIONS(2739), + [sym_nullptr] = ACTIONS(2739), + }, + [983] = { + [ts_builtin_sym_end] = ACTIONS(2821), + [sym_identifier] = ACTIONS(2819), + [aux_sym_preproc_include_token1] = ACTIONS(2819), + [aux_sym_preproc_def_token1] = ACTIONS(2819), + [aux_sym_preproc_if_token1] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2819), + [sym_preproc_directive] = ACTIONS(2819), + [anon_sym_LPAREN2] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym_typedef] = ACTIONS(2819), + [anon_sym_extern] = ACTIONS(2819), + [anon_sym___attribute__] = ACTIONS(2819), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2821), + [anon_sym___declspec] = ACTIONS(2819), + [anon_sym___based] = ACTIONS(2819), + [anon_sym___cdecl] = ACTIONS(2819), + [anon_sym___clrcall] = ACTIONS(2819), + [anon_sym___stdcall] = ACTIONS(2819), + [anon_sym___fastcall] = ACTIONS(2819), + [anon_sym___thiscall] = ACTIONS(2819), + [anon_sym___vectorcall] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_static] = ACTIONS(2819), + [anon_sym_register] = ACTIONS(2819), + [anon_sym_inline] = ACTIONS(2819), + [anon_sym_thread_local] = ACTIONS(2819), + [anon_sym_input] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_volatile] = ACTIONS(2819), + [anon_sym_restrict] = ACTIONS(2819), + [anon_sym__Atomic] = ACTIONS(2819), + [anon_sym_mutable] = ACTIONS(2819), + [anon_sym_constexpr] = ACTIONS(2819), + [anon_sym_constinit] = ACTIONS(2819), + [anon_sym_consteval] = ACTIONS(2819), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [sym_primitive_type] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), + [anon_sym_class] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_union] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_switch] = ACTIONS(2819), + [anon_sym_case] = ACTIONS(2819), + [anon_sym_default] = ACTIONS(2819), + [anon_sym_while] = ACTIONS(2819), + [anon_sym_do] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_goto] = ACTIONS(2819), + [anon_sym_not] = ACTIONS(2819), + [anon_sym_compl] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_sizeof] = ACTIONS(2819), + [sym_number_literal] = ACTIONS(2821), + [anon_sym_L_SQUOTE] = ACTIONS(2821), + [anon_sym_u_SQUOTE] = ACTIONS(2821), + [anon_sym_U_SQUOTE] = ACTIONS(2821), + [anon_sym_u8_SQUOTE] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2821), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2819), + [sym_false] = ACTIONS(2819), + [sym_null] = ACTIONS(2819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2819), + [anon_sym_decltype] = ACTIONS(2819), + [anon_sym_virtual] = ACTIONS(2819), + [anon_sym_explicit] = ACTIONS(2819), + [anon_sym_typename] = ACTIONS(2819), + [anon_sym_template] = ACTIONS(2819), + [anon_sym_operator] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2819), + [anon_sym_delete] = ACTIONS(2819), + [anon_sym_throw] = ACTIONS(2819), + [anon_sym_namespace] = ACTIONS(2819), + [anon_sym_using] = ACTIONS(2819), + [anon_sym_static_assert] = ACTIONS(2819), + [anon_sym_concept] = ACTIONS(2819), + [anon_sym_co_return] = ACTIONS(2819), + [anon_sym_co_yield] = ACTIONS(2819), + [anon_sym_R_DQUOTE] = ACTIONS(2821), + [anon_sym_LR_DQUOTE] = ACTIONS(2821), + [anon_sym_uR_DQUOTE] = ACTIONS(2821), + [anon_sym_UR_DQUOTE] = ACTIONS(2821), + [anon_sym_u8R_DQUOTE] = ACTIONS(2821), + [anon_sym_co_await] = ACTIONS(2819), + [anon_sym_new] = ACTIONS(2819), + [anon_sym_requires] = ACTIONS(2819), + [sym_this] = ACTIONS(2819), + [sym_nullptr] = ACTIONS(2819), + }, + [984] = { + [sym_identifier] = ACTIONS(2787), + [aux_sym_preproc_include_token1] = ACTIONS(2787), + [aux_sym_preproc_def_token1] = ACTIONS(2787), + [aux_sym_preproc_if_token1] = ACTIONS(2787), + [aux_sym_preproc_if_token2] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2787), + [sym_preproc_directive] = ACTIONS(2787), + [anon_sym_LPAREN2] = ACTIONS(2789), + [anon_sym_BANG] = ACTIONS(2789), + [anon_sym_TILDE] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2787), + [anon_sym_PLUS] = ACTIONS(2787), + [anon_sym_STAR] = ACTIONS(2789), + [anon_sym_AMP_AMP] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(2787), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym_typedef] = ACTIONS(2787), + [anon_sym_extern] = ACTIONS(2787), + [anon_sym___attribute__] = ACTIONS(2787), + [anon_sym_COLON_COLON] = ACTIONS(2789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2789), + [anon_sym___declspec] = ACTIONS(2787), + [anon_sym___based] = ACTIONS(2787), + [anon_sym___cdecl] = ACTIONS(2787), + [anon_sym___clrcall] = ACTIONS(2787), + [anon_sym___stdcall] = ACTIONS(2787), + [anon_sym___fastcall] = ACTIONS(2787), + [anon_sym___thiscall] = ACTIONS(2787), + [anon_sym___vectorcall] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_static] = ACTIONS(2787), + [anon_sym_register] = ACTIONS(2787), + [anon_sym_inline] = ACTIONS(2787), + [anon_sym_thread_local] = ACTIONS(2787), + [anon_sym_input] = ACTIONS(2787), + [anon_sym_const] = ACTIONS(2787), + [anon_sym_volatile] = ACTIONS(2787), + [anon_sym_restrict] = ACTIONS(2787), + [anon_sym__Atomic] = ACTIONS(2787), + [anon_sym_mutable] = ACTIONS(2787), + [anon_sym_constexpr] = ACTIONS(2787), + [anon_sym_constinit] = ACTIONS(2787), + [anon_sym_consteval] = ACTIONS(2787), + [anon_sym_signed] = ACTIONS(2787), + [anon_sym_unsigned] = ACTIONS(2787), + [anon_sym_long] = ACTIONS(2787), + [anon_sym_short] = ACTIONS(2787), + [sym_primitive_type] = ACTIONS(2787), + [anon_sym_enum] = ACTIONS(2787), + [anon_sym_class] = ACTIONS(2787), + [anon_sym_struct] = ACTIONS(2787), + [anon_sym_union] = ACTIONS(2787), + [anon_sym_if] = ACTIONS(2787), + [anon_sym_switch] = ACTIONS(2787), + [anon_sym_case] = ACTIONS(2787), + [anon_sym_default] = ACTIONS(2787), + [anon_sym_while] = ACTIONS(2787), + [anon_sym_do] = ACTIONS(2787), + [anon_sym_for] = ACTIONS(2787), + [anon_sym_return] = ACTIONS(2787), + [anon_sym_break] = ACTIONS(2787), + [anon_sym_continue] = ACTIONS(2787), + [anon_sym_goto] = ACTIONS(2787), + [anon_sym_not] = ACTIONS(2787), + [anon_sym_compl] = ACTIONS(2787), + [anon_sym_DASH_DASH] = ACTIONS(2789), + [anon_sym_PLUS_PLUS] = ACTIONS(2789), + [anon_sym_sizeof] = ACTIONS(2787), + [sym_number_literal] = ACTIONS(2789), + [anon_sym_L_SQUOTE] = ACTIONS(2789), + [anon_sym_u_SQUOTE] = ACTIONS(2789), + [anon_sym_U_SQUOTE] = ACTIONS(2789), + [anon_sym_u8_SQUOTE] = ACTIONS(2789), + [anon_sym_SQUOTE] = ACTIONS(2789), + [anon_sym_L_DQUOTE] = ACTIONS(2789), + [anon_sym_u_DQUOTE] = ACTIONS(2789), + [anon_sym_U_DQUOTE] = ACTIONS(2789), + [anon_sym_u8_DQUOTE] = ACTIONS(2789), + [anon_sym_DQUOTE] = ACTIONS(2789), + [sym_true] = ACTIONS(2787), + [sym_false] = ACTIONS(2787), + [sym_null] = ACTIONS(2787), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2787), + [anon_sym_decltype] = ACTIONS(2787), + [anon_sym_virtual] = ACTIONS(2787), + [anon_sym_explicit] = ACTIONS(2787), + [anon_sym_typename] = ACTIONS(2787), + [anon_sym_template] = ACTIONS(2787), + [anon_sym_operator] = ACTIONS(2787), + [anon_sym_try] = ACTIONS(2787), + [anon_sym_delete] = ACTIONS(2787), + [anon_sym_throw] = ACTIONS(2787), + [anon_sym_namespace] = ACTIONS(2787), + [anon_sym_using] = ACTIONS(2787), + [anon_sym_static_assert] = ACTIONS(2787), + [anon_sym_concept] = ACTIONS(2787), + [anon_sym_co_return] = ACTIONS(2787), + [anon_sym_co_yield] = ACTIONS(2787), + [anon_sym_R_DQUOTE] = ACTIONS(2789), + [anon_sym_LR_DQUOTE] = ACTIONS(2789), + [anon_sym_uR_DQUOTE] = ACTIONS(2789), + [anon_sym_UR_DQUOTE] = ACTIONS(2789), + [anon_sym_u8R_DQUOTE] = ACTIONS(2789), + [anon_sym_co_await] = ACTIONS(2787), + [anon_sym_new] = ACTIONS(2787), + [anon_sym_requires] = ACTIONS(2787), + [sym_this] = ACTIONS(2787), + [sym_nullptr] = ACTIONS(2787), + }, + [985] = { + [sym_identifier] = ACTIONS(2725), + [aux_sym_preproc_include_token1] = ACTIONS(2725), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token2] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), + [sym_preproc_directive] = ACTIONS(2725), + [anon_sym_LPAREN2] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_typedef] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym___attribute__] = ACTIONS(2725), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), + [anon_sym___declspec] = ACTIONS(2725), + [anon_sym___based] = ACTIONS(2725), + [anon_sym___cdecl] = ACTIONS(2725), + [anon_sym___clrcall] = ACTIONS(2725), + [anon_sym___stdcall] = ACTIONS(2725), + [anon_sym___fastcall] = ACTIONS(2725), + [anon_sym___thiscall] = ACTIONS(2725), + [anon_sym___vectorcall] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_register] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym_thread_local] = ACTIONS(2725), + [anon_sym_input] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_volatile] = ACTIONS(2725), + [anon_sym_restrict] = ACTIONS(2725), + [anon_sym__Atomic] = ACTIONS(2725), + [anon_sym_mutable] = ACTIONS(2725), + [anon_sym_constexpr] = ACTIONS(2725), + [anon_sym_constinit] = ACTIONS(2725), + [anon_sym_consteval] = ACTIONS(2725), + [anon_sym_signed] = ACTIONS(2725), + [anon_sym_unsigned] = ACTIONS(2725), + [anon_sym_long] = ACTIONS(2725), + [anon_sym_short] = ACTIONS(2725), + [sym_primitive_type] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_case] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2725), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_compl] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2725), + [sym_number_literal] = ACTIONS(2727), + [anon_sym_L_SQUOTE] = ACTIONS(2727), + [anon_sym_u_SQUOTE] = ACTIONS(2727), + [anon_sym_U_SQUOTE] = ACTIONS(2727), + [anon_sym_u8_SQUOTE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_L_DQUOTE] = ACTIONS(2727), + [anon_sym_u_DQUOTE] = ACTIONS(2727), + [anon_sym_U_DQUOTE] = ACTIONS(2727), + [anon_sym_u8_DQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [sym_null] = ACTIONS(2725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2725), + [anon_sym_decltype] = ACTIONS(2725), + [anon_sym_virtual] = ACTIONS(2725), + [anon_sym_explicit] = ACTIONS(2725), + [anon_sym_typename] = ACTIONS(2725), + [anon_sym_template] = ACTIONS(2725), + [anon_sym_operator] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_namespace] = ACTIONS(2725), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2725), + [anon_sym_concept] = ACTIONS(2725), + [anon_sym_co_return] = ACTIONS(2725), + [anon_sym_co_yield] = ACTIONS(2725), + [anon_sym_R_DQUOTE] = ACTIONS(2727), + [anon_sym_LR_DQUOTE] = ACTIONS(2727), + [anon_sym_uR_DQUOTE] = ACTIONS(2727), + [anon_sym_UR_DQUOTE] = ACTIONS(2727), + [anon_sym_u8R_DQUOTE] = ACTIONS(2727), + [anon_sym_co_await] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_requires] = ACTIONS(2725), + [sym_this] = ACTIONS(2725), + [sym_nullptr] = ACTIONS(2725), + }, + [986] = { + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token2] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym_input] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [sym_null] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), + [sym_nullptr] = ACTIONS(2721), + }, + [987] = { + [ts_builtin_sym_end] = ACTIONS(2675), + [sym_identifier] = ACTIONS(2673), + [aux_sym_preproc_include_token1] = ACTIONS(2673), + [aux_sym_preproc_def_token1] = ACTIONS(2673), + [aux_sym_preproc_if_token1] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), + [sym_preproc_directive] = ACTIONS(2673), + [anon_sym_LPAREN2] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2673), + [anon_sym_PLUS] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_typedef] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2673), + [anon_sym___attribute__] = ACTIONS(2673), + [anon_sym_COLON_COLON] = ACTIONS(2675), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), + [anon_sym___declspec] = ACTIONS(2673), + [anon_sym___based] = ACTIONS(2673), + [anon_sym___cdecl] = ACTIONS(2673), + [anon_sym___clrcall] = ACTIONS(2673), + [anon_sym___stdcall] = ACTIONS(2673), + [anon_sym___fastcall] = ACTIONS(2673), + [anon_sym___thiscall] = ACTIONS(2673), + [anon_sym___vectorcall] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_static] = ACTIONS(2673), + [anon_sym_register] = ACTIONS(2673), + [anon_sym_inline] = ACTIONS(2673), + [anon_sym_thread_local] = ACTIONS(2673), + [anon_sym_input] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2673), + [anon_sym_volatile] = ACTIONS(2673), + [anon_sym_restrict] = ACTIONS(2673), + [anon_sym__Atomic] = ACTIONS(2673), + [anon_sym_mutable] = ACTIONS(2673), + [anon_sym_constexpr] = ACTIONS(2673), + [anon_sym_constinit] = ACTIONS(2673), + [anon_sym_consteval] = ACTIONS(2673), + [anon_sym_signed] = ACTIONS(2673), + [anon_sym_unsigned] = ACTIONS(2673), + [anon_sym_long] = ACTIONS(2673), + [anon_sym_short] = ACTIONS(2673), + [sym_primitive_type] = ACTIONS(2673), + [anon_sym_enum] = ACTIONS(2673), + [anon_sym_class] = ACTIONS(2673), + [anon_sym_struct] = ACTIONS(2673), + [anon_sym_union] = ACTIONS(2673), + [anon_sym_if] = ACTIONS(2673), + [anon_sym_switch] = ACTIONS(2673), + [anon_sym_case] = ACTIONS(2673), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2673), + [anon_sym_do] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2673), + [anon_sym_return] = ACTIONS(2673), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2673), + [anon_sym_goto] = ACTIONS(2673), + [anon_sym_not] = ACTIONS(2673), + [anon_sym_compl] = ACTIONS(2673), + [anon_sym_DASH_DASH] = ACTIONS(2675), + [anon_sym_PLUS_PLUS] = ACTIONS(2675), + [anon_sym_sizeof] = ACTIONS(2673), + [sym_number_literal] = ACTIONS(2675), + [anon_sym_L_SQUOTE] = ACTIONS(2675), + [anon_sym_u_SQUOTE] = ACTIONS(2675), + [anon_sym_U_SQUOTE] = ACTIONS(2675), + [anon_sym_u8_SQUOTE] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2675), + [anon_sym_L_DQUOTE] = ACTIONS(2675), + [anon_sym_u_DQUOTE] = ACTIONS(2675), + [anon_sym_U_DQUOTE] = ACTIONS(2675), + [anon_sym_u8_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [sym_true] = ACTIONS(2673), + [sym_false] = ACTIONS(2673), + [sym_null] = ACTIONS(2673), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2673), + [anon_sym_decltype] = ACTIONS(2673), + [anon_sym_virtual] = ACTIONS(2673), + [anon_sym_explicit] = ACTIONS(2673), + [anon_sym_typename] = ACTIONS(2673), + [anon_sym_template] = ACTIONS(2673), + [anon_sym_operator] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2673), + [anon_sym_delete] = ACTIONS(2673), + [anon_sym_throw] = ACTIONS(2673), + [anon_sym_namespace] = ACTIONS(2673), + [anon_sym_using] = ACTIONS(2673), + [anon_sym_static_assert] = ACTIONS(2673), + [anon_sym_concept] = ACTIONS(2673), + [anon_sym_co_return] = ACTIONS(2673), + [anon_sym_co_yield] = ACTIONS(2673), + [anon_sym_R_DQUOTE] = ACTIONS(2675), + [anon_sym_LR_DQUOTE] = ACTIONS(2675), + [anon_sym_uR_DQUOTE] = ACTIONS(2675), + [anon_sym_UR_DQUOTE] = ACTIONS(2675), + [anon_sym_u8R_DQUOTE] = ACTIONS(2675), + [anon_sym_co_await] = ACTIONS(2673), + [anon_sym_new] = ACTIONS(2673), + [anon_sym_requires] = ACTIONS(2673), + [sym_this] = ACTIONS(2673), + [sym_nullptr] = ACTIONS(2673), + }, + [988] = { + [sym_identifier] = ACTIONS(2717), + [aux_sym_preproc_include_token1] = ACTIONS(2717), + [aux_sym_preproc_def_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token2] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), + [sym_preproc_directive] = ACTIONS(2717), + [anon_sym_LPAREN2] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_typedef] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym___attribute__] = ACTIONS(2717), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), + [anon_sym___declspec] = ACTIONS(2717), + [anon_sym___based] = ACTIONS(2717), + [anon_sym___cdecl] = ACTIONS(2717), + [anon_sym___clrcall] = ACTIONS(2717), + [anon_sym___stdcall] = ACTIONS(2717), + [anon_sym___fastcall] = ACTIONS(2717), + [anon_sym___thiscall] = ACTIONS(2717), + [anon_sym___vectorcall] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_register] = ACTIONS(2717), + [anon_sym_inline] = ACTIONS(2717), + [anon_sym_thread_local] = ACTIONS(2717), + [anon_sym_input] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_volatile] = ACTIONS(2717), + [anon_sym_restrict] = ACTIONS(2717), + [anon_sym__Atomic] = ACTIONS(2717), + [anon_sym_mutable] = ACTIONS(2717), + [anon_sym_constexpr] = ACTIONS(2717), + [anon_sym_constinit] = ACTIONS(2717), + [anon_sym_consteval] = ACTIONS(2717), + [anon_sym_signed] = ACTIONS(2717), + [anon_sym_unsigned] = ACTIONS(2717), + [anon_sym_long] = ACTIONS(2717), + [anon_sym_short] = ACTIONS(2717), + [sym_primitive_type] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_case] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_goto] = ACTIONS(2717), + [anon_sym_not] = ACTIONS(2717), + [anon_sym_compl] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_sizeof] = ACTIONS(2717), + [sym_number_literal] = ACTIONS(2719), + [anon_sym_L_SQUOTE] = ACTIONS(2719), + [anon_sym_u_SQUOTE] = ACTIONS(2719), + [anon_sym_U_SQUOTE] = ACTIONS(2719), + [anon_sym_u8_SQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_L_DQUOTE] = ACTIONS(2719), + [anon_sym_u_DQUOTE] = ACTIONS(2719), + [anon_sym_U_DQUOTE] = ACTIONS(2719), + [anon_sym_u8_DQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [sym_true] = ACTIONS(2717), + [sym_false] = ACTIONS(2717), + [sym_null] = ACTIONS(2717), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2717), + [anon_sym_decltype] = ACTIONS(2717), + [anon_sym_virtual] = ACTIONS(2717), + [anon_sym_explicit] = ACTIONS(2717), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2717), + [anon_sym_operator] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_namespace] = ACTIONS(2717), + [anon_sym_using] = ACTIONS(2717), + [anon_sym_static_assert] = ACTIONS(2717), + [anon_sym_concept] = ACTIONS(2717), + [anon_sym_co_return] = ACTIONS(2717), + [anon_sym_co_yield] = ACTIONS(2717), + [anon_sym_R_DQUOTE] = ACTIONS(2719), + [anon_sym_LR_DQUOTE] = ACTIONS(2719), + [anon_sym_uR_DQUOTE] = ACTIONS(2719), + [anon_sym_UR_DQUOTE] = ACTIONS(2719), + [anon_sym_u8R_DQUOTE] = ACTIONS(2719), + [anon_sym_co_await] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_requires] = ACTIONS(2717), + [sym_this] = ACTIONS(2717), + [sym_nullptr] = ACTIONS(2717), + }, + [989] = { + [sym_identifier] = ACTIONS(2633), + [aux_sym_preproc_include_token1] = ACTIONS(2633), + [aux_sym_preproc_def_token1] = ACTIONS(2633), + [aux_sym_preproc_if_token1] = ACTIONS(2633), + [aux_sym_preproc_if_token2] = ACTIONS(2633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2633), + [sym_preproc_directive] = ACTIONS(2633), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_typedef] = ACTIONS(2633), + [anon_sym_extern] = ACTIONS(2633), + [anon_sym___attribute__] = ACTIONS(2633), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2635), + [anon_sym___declspec] = ACTIONS(2633), + [anon_sym___based] = ACTIONS(2633), + [anon_sym___cdecl] = ACTIONS(2633), + [anon_sym___clrcall] = ACTIONS(2633), + [anon_sym___stdcall] = ACTIONS(2633), + [anon_sym___fastcall] = ACTIONS(2633), + [anon_sym___thiscall] = ACTIONS(2633), + [anon_sym___vectorcall] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_static] = ACTIONS(2633), + [anon_sym_register] = ACTIONS(2633), + [anon_sym_inline] = ACTIONS(2633), + [anon_sym_thread_local] = ACTIONS(2633), + [anon_sym_input] = ACTIONS(2633), + [anon_sym_const] = ACTIONS(2633), + [anon_sym_volatile] = ACTIONS(2633), + [anon_sym_restrict] = ACTIONS(2633), + [anon_sym__Atomic] = ACTIONS(2633), + [anon_sym_mutable] = ACTIONS(2633), + [anon_sym_constexpr] = ACTIONS(2633), + [anon_sym_constinit] = ACTIONS(2633), + [anon_sym_consteval] = ACTIONS(2633), + [anon_sym_signed] = ACTIONS(2633), + [anon_sym_unsigned] = ACTIONS(2633), + [anon_sym_long] = ACTIONS(2633), + [anon_sym_short] = ACTIONS(2633), + [sym_primitive_type] = ACTIONS(2633), + [anon_sym_enum] = ACTIONS(2633), + [anon_sym_class] = ACTIONS(2633), + [anon_sym_struct] = ACTIONS(2633), + [anon_sym_union] = ACTIONS(2633), + [anon_sym_if] = ACTIONS(2633), + [anon_sym_switch] = ACTIONS(2633), + [anon_sym_case] = ACTIONS(2633), + [anon_sym_default] = ACTIONS(2633), + [anon_sym_while] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_for] = ACTIONS(2633), + [anon_sym_return] = ACTIONS(2633), + [anon_sym_break] = ACTIONS(2633), + [anon_sym_continue] = ACTIONS(2633), + [anon_sym_goto] = ACTIONS(2633), + [anon_sym_not] = ACTIONS(2633), + [anon_sym_compl] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_sizeof] = ACTIONS(2633), + [sym_number_literal] = ACTIONS(2635), + [anon_sym_L_SQUOTE] = ACTIONS(2635), + [anon_sym_u_SQUOTE] = ACTIONS(2635), + [anon_sym_U_SQUOTE] = ACTIONS(2635), + [anon_sym_u8_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_L_DQUOTE] = ACTIONS(2635), + [anon_sym_u_DQUOTE] = ACTIONS(2635), + [anon_sym_U_DQUOTE] = ACTIONS(2635), + [anon_sym_u8_DQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym_true] = ACTIONS(2633), + [sym_false] = ACTIONS(2633), + [sym_null] = ACTIONS(2633), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2633), + [anon_sym_decltype] = ACTIONS(2633), + [anon_sym_virtual] = ACTIONS(2633), + [anon_sym_explicit] = ACTIONS(2633), + [anon_sym_typename] = ACTIONS(2633), + [anon_sym_template] = ACTIONS(2633), + [anon_sym_operator] = ACTIONS(2633), + [anon_sym_try] = ACTIONS(2633), + [anon_sym_delete] = ACTIONS(2633), + [anon_sym_throw] = ACTIONS(2633), + [anon_sym_namespace] = ACTIONS(2633), + [anon_sym_using] = ACTIONS(2633), + [anon_sym_static_assert] = ACTIONS(2633), + [anon_sym_concept] = ACTIONS(2633), + [anon_sym_co_return] = ACTIONS(2633), + [anon_sym_co_yield] = ACTIONS(2633), + [anon_sym_R_DQUOTE] = ACTIONS(2635), + [anon_sym_LR_DQUOTE] = ACTIONS(2635), + [anon_sym_uR_DQUOTE] = ACTIONS(2635), + [anon_sym_UR_DQUOTE] = ACTIONS(2635), + [anon_sym_u8R_DQUOTE] = ACTIONS(2635), + [anon_sym_co_await] = ACTIONS(2633), + [anon_sym_new] = ACTIONS(2633), + [anon_sym_requires] = ACTIONS(2633), + [sym_this] = ACTIONS(2633), + [sym_nullptr] = ACTIONS(2633), + }, + [990] = { + [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_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_LBRACK] = ACTIONS(2735), + [anon_sym_static] = ACTIONS(2735), + [anon_sym_register] = ACTIONS(2735), + [anon_sym_inline] = ACTIONS(2735), + [anon_sym_thread_local] = ACTIONS(2735), + [anon_sym_input] = ACTIONS(2735), + [anon_sym_const] = ACTIONS(2735), + [anon_sym_volatile] = ACTIONS(2735), + [anon_sym_restrict] = ACTIONS(2735), + [anon_sym__Atomic] = ACTIONS(2735), + [anon_sym_mutable] = ACTIONS(2735), + [anon_sym_constexpr] = ACTIONS(2735), + [anon_sym_constinit] = ACTIONS(2735), + [anon_sym_consteval] = ACTIONS(2735), + [anon_sym_signed] = ACTIONS(2735), + [anon_sym_unsigned] = ACTIONS(2735), + [anon_sym_long] = ACTIONS(2735), + [anon_sym_short] = 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_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), + [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), + [sym_null] = ACTIONS(2735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2735), + [anon_sym_decltype] = ACTIONS(2735), + [anon_sym_virtual] = 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), + [sym_nullptr] = ACTIONS(2735), + }, + [991] = { + [ts_builtin_sym_end] = ACTIONS(2731), + [sym_identifier] = ACTIONS(2729), + [aux_sym_preproc_include_token1] = ACTIONS(2729), + [aux_sym_preproc_def_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), + [sym_preproc_directive] = ACTIONS(2729), + [anon_sym_LPAREN2] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym___attribute__] = ACTIONS(2729), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), + [anon_sym___declspec] = ACTIONS(2729), + [anon_sym___based] = ACTIONS(2729), + [anon_sym___cdecl] = ACTIONS(2729), + [anon_sym___clrcall] = ACTIONS(2729), + [anon_sym___stdcall] = ACTIONS(2729), + [anon_sym___fastcall] = ACTIONS(2729), + [anon_sym___thiscall] = ACTIONS(2729), + [anon_sym___vectorcall] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_register] = ACTIONS(2729), + [anon_sym_inline] = ACTIONS(2729), + [anon_sym_thread_local] = ACTIONS(2729), + [anon_sym_input] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_volatile] = ACTIONS(2729), + [anon_sym_restrict] = ACTIONS(2729), + [anon_sym__Atomic] = ACTIONS(2729), + [anon_sym_mutable] = ACTIONS(2729), + [anon_sym_constexpr] = ACTIONS(2729), + [anon_sym_constinit] = ACTIONS(2729), + [anon_sym_consteval] = ACTIONS(2729), + [anon_sym_signed] = ACTIONS(2729), + [anon_sym_unsigned] = ACTIONS(2729), + [anon_sym_long] = ACTIONS(2729), + [anon_sym_short] = ACTIONS(2729), + [sym_primitive_type] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_case] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_goto] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_compl] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(2731), + [anon_sym_L_SQUOTE] = ACTIONS(2731), + [anon_sym_u_SQUOTE] = ACTIONS(2731), + [anon_sym_U_SQUOTE] = ACTIONS(2731), + [anon_sym_u8_SQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_L_DQUOTE] = ACTIONS(2731), + [anon_sym_u_DQUOTE] = ACTIONS(2731), + [anon_sym_U_DQUOTE] = ACTIONS(2731), + [anon_sym_u8_DQUOTE] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_null] = ACTIONS(2729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2729), + [anon_sym_decltype] = ACTIONS(2729), + [anon_sym_virtual] = ACTIONS(2729), + [anon_sym_explicit] = ACTIONS(2729), + [anon_sym_typename] = ACTIONS(2729), + [anon_sym_template] = ACTIONS(2729), + [anon_sym_operator] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_delete] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_static_assert] = ACTIONS(2729), + [anon_sym_concept] = ACTIONS(2729), + [anon_sym_co_return] = ACTIONS(2729), + [anon_sym_co_yield] = ACTIONS(2729), + [anon_sym_R_DQUOTE] = ACTIONS(2731), + [anon_sym_LR_DQUOTE] = ACTIONS(2731), + [anon_sym_uR_DQUOTE] = ACTIONS(2731), + [anon_sym_UR_DQUOTE] = ACTIONS(2731), + [anon_sym_u8R_DQUOTE] = ACTIONS(2731), + [anon_sym_co_await] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_requires] = ACTIONS(2729), + [sym_this] = ACTIONS(2729), + [sym_nullptr] = ACTIONS(2729), + }, + [992] = { + [sym_identifier] = ACTIONS(2641), + [aux_sym_preproc_include_token1] = ACTIONS(2641), + [aux_sym_preproc_def_token1] = ACTIONS(2641), + [aux_sym_preproc_if_token1] = ACTIONS(2641), + [aux_sym_preproc_if_token2] = ACTIONS(2641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), + [sym_preproc_directive] = ACTIONS(2641), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_AMP_AMP] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_typedef] = ACTIONS(2641), + [anon_sym_extern] = ACTIONS(2641), + [anon_sym___attribute__] = ACTIONS(2641), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), + [anon_sym___declspec] = ACTIONS(2641), + [anon_sym___based] = ACTIONS(2641), + [anon_sym___cdecl] = ACTIONS(2641), + [anon_sym___clrcall] = ACTIONS(2641), + [anon_sym___stdcall] = ACTIONS(2641), + [anon_sym___fastcall] = ACTIONS(2641), + [anon_sym___thiscall] = ACTIONS(2641), + [anon_sym___vectorcall] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_static] = ACTIONS(2641), + [anon_sym_register] = ACTIONS(2641), + [anon_sym_inline] = ACTIONS(2641), + [anon_sym_thread_local] = ACTIONS(2641), + [anon_sym_input] = ACTIONS(2641), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_volatile] = ACTIONS(2641), + [anon_sym_restrict] = ACTIONS(2641), + [anon_sym__Atomic] = ACTIONS(2641), + [anon_sym_mutable] = ACTIONS(2641), + [anon_sym_constexpr] = ACTIONS(2641), + [anon_sym_constinit] = ACTIONS(2641), + [anon_sym_consteval] = ACTIONS(2641), + [anon_sym_signed] = ACTIONS(2641), + [anon_sym_unsigned] = ACTIONS(2641), + [anon_sym_long] = ACTIONS(2641), + [anon_sym_short] = ACTIONS(2641), + [sym_primitive_type] = ACTIONS(2641), + [anon_sym_enum] = ACTIONS(2641), + [anon_sym_class] = ACTIONS(2641), + [anon_sym_struct] = ACTIONS(2641), + [anon_sym_union] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2641), + [anon_sym_switch] = ACTIONS(2641), + [anon_sym_case] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2641), + [anon_sym_while] = ACTIONS(2641), + [anon_sym_do] = ACTIONS(2641), + [anon_sym_for] = ACTIONS(2641), + [anon_sym_return] = ACTIONS(2641), + [anon_sym_break] = ACTIONS(2641), + [anon_sym_continue] = ACTIONS(2641), + [anon_sym_goto] = ACTIONS(2641), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_compl] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_sizeof] = ACTIONS(2641), + [sym_number_literal] = ACTIONS(2643), + [anon_sym_L_SQUOTE] = ACTIONS(2643), + [anon_sym_u_SQUOTE] = ACTIONS(2643), + [anon_sym_U_SQUOTE] = ACTIONS(2643), + [anon_sym_u8_SQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_L_DQUOTE] = ACTIONS(2643), + [anon_sym_u_DQUOTE] = ACTIONS(2643), + [anon_sym_U_DQUOTE] = ACTIONS(2643), + [anon_sym_u8_DQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [sym_true] = ACTIONS(2641), + [sym_false] = ACTIONS(2641), + [sym_null] = ACTIONS(2641), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2641), + [anon_sym_decltype] = ACTIONS(2641), + [anon_sym_virtual] = ACTIONS(2641), + [anon_sym_explicit] = ACTIONS(2641), + [anon_sym_typename] = ACTIONS(2641), + [anon_sym_template] = ACTIONS(2641), + [anon_sym_operator] = ACTIONS(2641), + [anon_sym_try] = ACTIONS(2641), + [anon_sym_delete] = ACTIONS(2641), + [anon_sym_throw] = ACTIONS(2641), + [anon_sym_namespace] = ACTIONS(2641), + [anon_sym_using] = ACTIONS(2641), + [anon_sym_static_assert] = ACTIONS(2641), + [anon_sym_concept] = ACTIONS(2641), + [anon_sym_co_return] = ACTIONS(2641), + [anon_sym_co_yield] = ACTIONS(2641), + [anon_sym_R_DQUOTE] = ACTIONS(2643), + [anon_sym_LR_DQUOTE] = ACTIONS(2643), + [anon_sym_uR_DQUOTE] = ACTIONS(2643), + [anon_sym_UR_DQUOTE] = ACTIONS(2643), + [anon_sym_u8R_DQUOTE] = ACTIONS(2643), + [anon_sym_co_await] = ACTIONS(2641), + [anon_sym_new] = ACTIONS(2641), + [anon_sym_requires] = ACTIONS(2641), + [sym_this] = ACTIONS(2641), + [sym_nullptr] = ACTIONS(2641), + }, + [993] = { + [ts_builtin_sym_end] = ACTIONS(2813), + [sym_identifier] = ACTIONS(2811), + [aux_sym_preproc_include_token1] = ACTIONS(2811), + [aux_sym_preproc_def_token1] = ACTIONS(2811), + [aux_sym_preproc_if_token1] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2811), + [sym_preproc_directive] = ACTIONS(2811), + [anon_sym_LPAREN2] = ACTIONS(2813), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP_AMP] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym_typedef] = ACTIONS(2811), + [anon_sym_extern] = ACTIONS(2811), + [anon_sym___attribute__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2813), + [anon_sym___declspec] = ACTIONS(2811), + [anon_sym___based] = ACTIONS(2811), + [anon_sym___cdecl] = ACTIONS(2811), + [anon_sym___clrcall] = ACTIONS(2811), + [anon_sym___stdcall] = ACTIONS(2811), + [anon_sym___fastcall] = ACTIONS(2811), + [anon_sym___thiscall] = ACTIONS(2811), + [anon_sym___vectorcall] = ACTIONS(2811), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_register] = ACTIONS(2811), + [anon_sym_inline] = ACTIONS(2811), + [anon_sym_thread_local] = ACTIONS(2811), + [anon_sym_input] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_volatile] = ACTIONS(2811), + [anon_sym_restrict] = ACTIONS(2811), + [anon_sym__Atomic] = ACTIONS(2811), + [anon_sym_mutable] = ACTIONS(2811), + [anon_sym_constexpr] = ACTIONS(2811), + [anon_sym_constinit] = ACTIONS(2811), + [anon_sym_consteval] = ACTIONS(2811), + [anon_sym_signed] = ACTIONS(2811), + [anon_sym_unsigned] = ACTIONS(2811), + [anon_sym_long] = ACTIONS(2811), + [anon_sym_short] = ACTIONS(2811), + [sym_primitive_type] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2811), + [anon_sym_union] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_switch] = ACTIONS(2811), + [anon_sym_case] = ACTIONS(2811), + [anon_sym_default] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_do] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_goto] = ACTIONS(2811), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2813), + [anon_sym_PLUS_PLUS] = ACTIONS(2813), + [anon_sym_sizeof] = ACTIONS(2811), + [sym_number_literal] = ACTIONS(2813), + [anon_sym_L_SQUOTE] = ACTIONS(2813), + [anon_sym_u_SQUOTE] = ACTIONS(2813), + [anon_sym_U_SQUOTE] = ACTIONS(2813), + [anon_sym_u8_SQUOTE] = ACTIONS(2813), + [anon_sym_SQUOTE] = ACTIONS(2813), + [anon_sym_L_DQUOTE] = ACTIONS(2813), + [anon_sym_u_DQUOTE] = ACTIONS(2813), + [anon_sym_U_DQUOTE] = ACTIONS(2813), + [anon_sym_u8_DQUOTE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2813), + [sym_true] = ACTIONS(2811), + [sym_false] = ACTIONS(2811), + [sym_null] = ACTIONS(2811), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2811), + [anon_sym_decltype] = ACTIONS(2811), + [anon_sym_virtual] = ACTIONS(2811), + [anon_sym_explicit] = ACTIONS(2811), + [anon_sym_typename] = ACTIONS(2811), + [anon_sym_template] = ACTIONS(2811), + [anon_sym_operator] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_throw] = ACTIONS(2811), + [anon_sym_namespace] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2811), + [anon_sym_static_assert] = ACTIONS(2811), + [anon_sym_concept] = ACTIONS(2811), + [anon_sym_co_return] = ACTIONS(2811), + [anon_sym_co_yield] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2813), + [anon_sym_LR_DQUOTE] = ACTIONS(2813), + [anon_sym_uR_DQUOTE] = ACTIONS(2813), + [anon_sym_UR_DQUOTE] = ACTIONS(2813), + [anon_sym_u8R_DQUOTE] = ACTIONS(2813), + [anon_sym_co_await] = ACTIONS(2811), + [anon_sym_new] = ACTIONS(2811), + [anon_sym_requires] = ACTIONS(2811), + [sym_this] = ACTIONS(2811), + [sym_nullptr] = ACTIONS(2811), + }, + [994] = { + [sym_identifier] = ACTIONS(2747), + [aux_sym_preproc_include_token1] = ACTIONS(2747), + [aux_sym_preproc_def_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token2] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), + [sym_preproc_directive] = ACTIONS(2747), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_typedef] = ACTIONS(2747), + [anon_sym_extern] = ACTIONS(2747), + [anon_sym___attribute__] = ACTIONS(2747), + [anon_sym_COLON_COLON] = ACTIONS(2749), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), + [anon_sym___declspec] = ACTIONS(2747), + [anon_sym___based] = ACTIONS(2747), + [anon_sym___cdecl] = ACTIONS(2747), + [anon_sym___clrcall] = ACTIONS(2747), + [anon_sym___stdcall] = ACTIONS(2747), + [anon_sym___fastcall] = ACTIONS(2747), + [anon_sym___thiscall] = ACTIONS(2747), + [anon_sym___vectorcall] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_static] = ACTIONS(2747), + [anon_sym_register] = ACTIONS(2747), + [anon_sym_inline] = ACTIONS(2747), + [anon_sym_thread_local] = ACTIONS(2747), + [anon_sym_input] = ACTIONS(2747), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_volatile] = ACTIONS(2747), + [anon_sym_restrict] = ACTIONS(2747), + [anon_sym__Atomic] = ACTIONS(2747), + [anon_sym_mutable] = ACTIONS(2747), + [anon_sym_constexpr] = ACTIONS(2747), + [anon_sym_constinit] = ACTIONS(2747), + [anon_sym_consteval] = ACTIONS(2747), + [anon_sym_signed] = ACTIONS(2747), + [anon_sym_unsigned] = ACTIONS(2747), + [anon_sym_long] = ACTIONS(2747), + [anon_sym_short] = ACTIONS(2747), + [sym_primitive_type] = ACTIONS(2747), + [anon_sym_enum] = ACTIONS(2747), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2747), + [anon_sym_union] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2747), + [anon_sym_case] = ACTIONS(2747), + [anon_sym_default] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_do] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_goto] = ACTIONS(2747), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_compl] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_sizeof] = ACTIONS(2747), + [sym_number_literal] = ACTIONS(2749), + [anon_sym_L_SQUOTE] = ACTIONS(2749), + [anon_sym_u_SQUOTE] = ACTIONS(2749), + [anon_sym_U_SQUOTE] = ACTIONS(2749), + [anon_sym_u8_SQUOTE] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_L_DQUOTE] = ACTIONS(2749), + [anon_sym_u_DQUOTE] = ACTIONS(2749), + [anon_sym_U_DQUOTE] = ACTIONS(2749), + [anon_sym_u8_DQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [sym_null] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2747), + [anon_sym_decltype] = ACTIONS(2747), + [anon_sym_virtual] = ACTIONS(2747), + [anon_sym_explicit] = ACTIONS(2747), + [anon_sym_typename] = ACTIONS(2747), + [anon_sym_template] = ACTIONS(2747), + [anon_sym_operator] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_delete] = ACTIONS(2747), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_namespace] = ACTIONS(2747), + [anon_sym_using] = ACTIONS(2747), + [anon_sym_static_assert] = ACTIONS(2747), + [anon_sym_concept] = ACTIONS(2747), + [anon_sym_co_return] = ACTIONS(2747), + [anon_sym_co_yield] = ACTIONS(2747), + [anon_sym_R_DQUOTE] = ACTIONS(2749), + [anon_sym_LR_DQUOTE] = ACTIONS(2749), + [anon_sym_uR_DQUOTE] = ACTIONS(2749), + [anon_sym_UR_DQUOTE] = ACTIONS(2749), + [anon_sym_u8R_DQUOTE] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_requires] = ACTIONS(2747), + [sym_this] = ACTIONS(2747), + [sym_nullptr] = ACTIONS(2747), + }, + [995] = { + [sym_identifier] = ACTIONS(2645), + [aux_sym_preproc_include_token1] = ACTIONS(2645), + [aux_sym_preproc_def_token1] = ACTIONS(2645), + [aux_sym_preproc_if_token1] = ACTIONS(2645), + [aux_sym_preproc_if_token2] = ACTIONS(2645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2645), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2645), + [sym_preproc_directive] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_typedef] = ACTIONS(2645), + [anon_sym_extern] = ACTIONS(2645), + [anon_sym___attribute__] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2647), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2647), + [anon_sym___declspec] = ACTIONS(2645), + [anon_sym___based] = ACTIONS(2645), + [anon_sym___cdecl] = ACTIONS(2645), + [anon_sym___clrcall] = ACTIONS(2645), + [anon_sym___stdcall] = ACTIONS(2645), + [anon_sym___fastcall] = ACTIONS(2645), + [anon_sym___thiscall] = ACTIONS(2645), + [anon_sym___vectorcall] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_static] = ACTIONS(2645), + [anon_sym_register] = ACTIONS(2645), + [anon_sym_inline] = ACTIONS(2645), + [anon_sym_thread_local] = ACTIONS(2645), + [anon_sym_input] = ACTIONS(2645), + [anon_sym_const] = ACTIONS(2645), + [anon_sym_volatile] = ACTIONS(2645), + [anon_sym_restrict] = ACTIONS(2645), + [anon_sym__Atomic] = ACTIONS(2645), + [anon_sym_mutable] = ACTIONS(2645), + [anon_sym_constexpr] = ACTIONS(2645), + [anon_sym_constinit] = ACTIONS(2645), + [anon_sym_consteval] = ACTIONS(2645), + [anon_sym_signed] = ACTIONS(2645), + [anon_sym_unsigned] = ACTIONS(2645), + [anon_sym_long] = ACTIONS(2645), + [anon_sym_short] = ACTIONS(2645), + [sym_primitive_type] = ACTIONS(2645), + [anon_sym_enum] = ACTIONS(2645), + [anon_sym_class] = ACTIONS(2645), + [anon_sym_struct] = ACTIONS(2645), + [anon_sym_union] = ACTIONS(2645), + [anon_sym_if] = ACTIONS(2645), + [anon_sym_switch] = ACTIONS(2645), + [anon_sym_case] = ACTIONS(2645), + [anon_sym_default] = ACTIONS(2645), + [anon_sym_while] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_for] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2645), + [anon_sym_continue] = ACTIONS(2645), + [anon_sym_goto] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_compl] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_sizeof] = ACTIONS(2645), + [sym_number_literal] = ACTIONS(2647), + [anon_sym_L_SQUOTE] = ACTIONS(2647), + [anon_sym_u_SQUOTE] = ACTIONS(2647), + [anon_sym_U_SQUOTE] = ACTIONS(2647), + [anon_sym_u8_SQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_L_DQUOTE] = ACTIONS(2647), + [anon_sym_u_DQUOTE] = ACTIONS(2647), + [anon_sym_U_DQUOTE] = ACTIONS(2647), + [anon_sym_u8_DQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [sym_true] = ACTIONS(2645), + [sym_false] = ACTIONS(2645), + [sym_null] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2645), + [anon_sym_decltype] = ACTIONS(2645), + [anon_sym_virtual] = ACTIONS(2645), + [anon_sym_explicit] = ACTIONS(2645), + [anon_sym_typename] = ACTIONS(2645), + [anon_sym_template] = ACTIONS(2645), + [anon_sym_operator] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2645), + [anon_sym_delete] = ACTIONS(2645), + [anon_sym_throw] = ACTIONS(2645), + [anon_sym_namespace] = ACTIONS(2645), + [anon_sym_using] = ACTIONS(2645), + [anon_sym_static_assert] = ACTIONS(2645), + [anon_sym_concept] = ACTIONS(2645), + [anon_sym_co_return] = ACTIONS(2645), + [anon_sym_co_yield] = ACTIONS(2645), + [anon_sym_R_DQUOTE] = ACTIONS(2647), + [anon_sym_LR_DQUOTE] = ACTIONS(2647), + [anon_sym_uR_DQUOTE] = ACTIONS(2647), + [anon_sym_UR_DQUOTE] = ACTIONS(2647), + [anon_sym_u8R_DQUOTE] = ACTIONS(2647), + [anon_sym_co_await] = ACTIONS(2645), + [anon_sym_new] = ACTIONS(2645), + [anon_sym_requires] = ACTIONS(2645), + [sym_this] = ACTIONS(2645), + [sym_nullptr] = ACTIONS(2645), + }, + [996] = { + [sym_identifier] = ACTIONS(2701), + [aux_sym_preproc_include_token1] = ACTIONS(2701), + [aux_sym_preproc_def_token1] = ACTIONS(2701), + [aux_sym_preproc_if_token1] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2701), + [sym_preproc_directive] = ACTIONS(2701), + [anon_sym_LPAREN2] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym___attribute__] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2703), + [anon_sym___declspec] = ACTIONS(2701), + [anon_sym___based] = ACTIONS(2701), + [anon_sym___cdecl] = ACTIONS(2701), + [anon_sym___clrcall] = ACTIONS(2701), + [anon_sym___stdcall] = ACTIONS(2701), + [anon_sym___fastcall] = ACTIONS(2701), + [anon_sym___thiscall] = ACTIONS(2701), + [anon_sym___vectorcall] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_register] = ACTIONS(2701), + [anon_sym_inline] = ACTIONS(2701), + [anon_sym_thread_local] = ACTIONS(2701), + [anon_sym_input] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_volatile] = ACTIONS(2701), + [anon_sym_restrict] = ACTIONS(2701), + [anon_sym__Atomic] = ACTIONS(2701), + [anon_sym_mutable] = ACTIONS(2701), + [anon_sym_constexpr] = ACTIONS(2701), + [anon_sym_constinit] = ACTIONS(2701), + [anon_sym_consteval] = ACTIONS(2701), + [anon_sym_signed] = ACTIONS(2701), + [anon_sym_unsigned] = ACTIONS(2701), + [anon_sym_long] = ACTIONS(2701), + [anon_sym_short] = ACTIONS(2701), + [sym_primitive_type] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_goto] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(2701), + [anon_sym_compl] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_sizeof] = ACTIONS(2701), + [sym_number_literal] = ACTIONS(2703), + [anon_sym_L_SQUOTE] = ACTIONS(2703), + [anon_sym_u_SQUOTE] = ACTIONS(2703), + [anon_sym_U_SQUOTE] = ACTIONS(2703), + [anon_sym_u8_SQUOTE] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2703), + [anon_sym_L_DQUOTE] = ACTIONS(2703), + [anon_sym_u_DQUOTE] = ACTIONS(2703), + [anon_sym_U_DQUOTE] = ACTIONS(2703), + [anon_sym_u8_DQUOTE] = ACTIONS(2703), + [anon_sym_DQUOTE] = ACTIONS(2703), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_null] = ACTIONS(2701), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2701), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_virtual] = ACTIONS(2701), + [anon_sym_explicit] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2701), + [anon_sym_template] = ACTIONS(2701), + [anon_sym_operator] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_delete] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_namespace] = ACTIONS(2701), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_static_assert] = ACTIONS(2701), + [anon_sym_concept] = ACTIONS(2701), + [anon_sym_co_return] = ACTIONS(2701), + [anon_sym_co_yield] = ACTIONS(2701), + [anon_sym_R_DQUOTE] = ACTIONS(2703), + [anon_sym_LR_DQUOTE] = ACTIONS(2703), + [anon_sym_uR_DQUOTE] = ACTIONS(2703), + [anon_sym_UR_DQUOTE] = ACTIONS(2703), + [anon_sym_u8R_DQUOTE] = ACTIONS(2703), + [anon_sym_co_await] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_requires] = ACTIONS(2701), + [sym_this] = ACTIONS(2701), + [sym_nullptr] = ACTIONS(2701), + }, + [997] = { + [sym_identifier] = ACTIONS(2697), + [aux_sym_preproc_include_token1] = ACTIONS(2697), + [aux_sym_preproc_def_token1] = ACTIONS(2697), + [aux_sym_preproc_if_token1] = ACTIONS(2697), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2697), + [sym_preproc_directive] = ACTIONS(2697), + [anon_sym_LPAREN2] = ACTIONS(2699), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2697), + [anon_sym_extern] = ACTIONS(2697), + [anon_sym___attribute__] = ACTIONS(2697), + [anon_sym_COLON_COLON] = ACTIONS(2699), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2699), + [anon_sym___declspec] = ACTIONS(2697), + [anon_sym___based] = ACTIONS(2697), + [anon_sym___cdecl] = ACTIONS(2697), + [anon_sym___clrcall] = ACTIONS(2697), + [anon_sym___stdcall] = ACTIONS(2697), + [anon_sym___fastcall] = ACTIONS(2697), + [anon_sym___thiscall] = ACTIONS(2697), + [anon_sym___vectorcall] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_register] = ACTIONS(2697), + [anon_sym_inline] = ACTIONS(2697), + [anon_sym_thread_local] = ACTIONS(2697), + [anon_sym_input] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_volatile] = ACTIONS(2697), + [anon_sym_restrict] = ACTIONS(2697), + [anon_sym__Atomic] = ACTIONS(2697), + [anon_sym_mutable] = ACTIONS(2697), + [anon_sym_constexpr] = ACTIONS(2697), + [anon_sym_constinit] = ACTIONS(2697), + [anon_sym_consteval] = ACTIONS(2697), + [anon_sym_signed] = ACTIONS(2697), + [anon_sym_unsigned] = ACTIONS(2697), + [anon_sym_long] = ACTIONS(2697), + [anon_sym_short] = ACTIONS(2697), + [sym_primitive_type] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_class] = ACTIONS(2697), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_union] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_switch] = ACTIONS(2697), + [anon_sym_case] = ACTIONS(2697), + [anon_sym_default] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_goto] = ACTIONS(2697), + [anon_sym_not] = ACTIONS(2697), + [anon_sym_compl] = ACTIONS(2697), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_sizeof] = ACTIONS(2697), + [sym_number_literal] = ACTIONS(2699), + [anon_sym_L_SQUOTE] = ACTIONS(2699), + [anon_sym_u_SQUOTE] = ACTIONS(2699), + [anon_sym_U_SQUOTE] = ACTIONS(2699), + [anon_sym_u8_SQUOTE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2699), + [anon_sym_L_DQUOTE] = ACTIONS(2699), + [anon_sym_u_DQUOTE] = ACTIONS(2699), + [anon_sym_U_DQUOTE] = ACTIONS(2699), + [anon_sym_u8_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2697), + [anon_sym_decltype] = ACTIONS(2697), + [anon_sym_virtual] = ACTIONS(2697), + [anon_sym_explicit] = ACTIONS(2697), + [anon_sym_typename] = ACTIONS(2697), + [anon_sym_template] = ACTIONS(2697), + [anon_sym_operator] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [anon_sym_delete] = ACTIONS(2697), + [anon_sym_throw] = ACTIONS(2697), + [anon_sym_namespace] = ACTIONS(2697), + [anon_sym_using] = ACTIONS(2697), + [anon_sym_static_assert] = ACTIONS(2697), + [anon_sym_concept] = ACTIONS(2697), + [anon_sym_co_return] = ACTIONS(2697), + [anon_sym_co_yield] = ACTIONS(2697), + [anon_sym_R_DQUOTE] = ACTIONS(2699), + [anon_sym_LR_DQUOTE] = ACTIONS(2699), + [anon_sym_uR_DQUOTE] = ACTIONS(2699), + [anon_sym_UR_DQUOTE] = ACTIONS(2699), + [anon_sym_u8R_DQUOTE] = ACTIONS(2699), + [anon_sym_co_await] = ACTIONS(2697), + [anon_sym_new] = ACTIONS(2697), + [anon_sym_requires] = ACTIONS(2697), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + }, + [998] = { + [sym_identifier] = ACTIONS(2747), + [aux_sym_preproc_include_token1] = ACTIONS(2747), + [aux_sym_preproc_def_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token2] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), + [sym_preproc_directive] = ACTIONS(2747), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_typedef] = ACTIONS(2747), + [anon_sym_extern] = ACTIONS(2747), + [anon_sym___attribute__] = ACTIONS(2747), + [anon_sym_COLON_COLON] = ACTIONS(2749), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), + [anon_sym___declspec] = ACTIONS(2747), + [anon_sym___based] = ACTIONS(2747), + [anon_sym___cdecl] = ACTIONS(2747), + [anon_sym___clrcall] = ACTIONS(2747), + [anon_sym___stdcall] = ACTIONS(2747), + [anon_sym___fastcall] = ACTIONS(2747), + [anon_sym___thiscall] = ACTIONS(2747), + [anon_sym___vectorcall] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_static] = ACTIONS(2747), + [anon_sym_register] = ACTIONS(2747), + [anon_sym_inline] = ACTIONS(2747), + [anon_sym_thread_local] = ACTIONS(2747), + [anon_sym_input] = ACTIONS(2747), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_volatile] = ACTIONS(2747), + [anon_sym_restrict] = ACTIONS(2747), + [anon_sym__Atomic] = ACTIONS(2747), + [anon_sym_mutable] = ACTIONS(2747), + [anon_sym_constexpr] = ACTIONS(2747), + [anon_sym_constinit] = ACTIONS(2747), + [anon_sym_consteval] = ACTIONS(2747), + [anon_sym_signed] = ACTIONS(2747), + [anon_sym_unsigned] = ACTIONS(2747), + [anon_sym_long] = ACTIONS(2747), + [anon_sym_short] = ACTIONS(2747), + [sym_primitive_type] = ACTIONS(2747), + [anon_sym_enum] = ACTIONS(2747), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2747), + [anon_sym_union] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2747), + [anon_sym_case] = ACTIONS(2747), + [anon_sym_default] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_do] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_goto] = ACTIONS(2747), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_compl] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_sizeof] = ACTIONS(2747), + [sym_number_literal] = ACTIONS(2749), + [anon_sym_L_SQUOTE] = ACTIONS(2749), + [anon_sym_u_SQUOTE] = ACTIONS(2749), + [anon_sym_U_SQUOTE] = ACTIONS(2749), + [anon_sym_u8_SQUOTE] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_L_DQUOTE] = ACTIONS(2749), + [anon_sym_u_DQUOTE] = ACTIONS(2749), + [anon_sym_U_DQUOTE] = ACTIONS(2749), + [anon_sym_u8_DQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [sym_null] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2747), + [anon_sym_decltype] = ACTIONS(2747), + [anon_sym_virtual] = ACTIONS(2747), + [anon_sym_explicit] = ACTIONS(2747), + [anon_sym_typename] = ACTIONS(2747), + [anon_sym_template] = ACTIONS(2747), + [anon_sym_operator] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_delete] = ACTIONS(2747), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_namespace] = ACTIONS(2747), + [anon_sym_using] = ACTIONS(2747), + [anon_sym_static_assert] = ACTIONS(2747), + [anon_sym_concept] = ACTIONS(2747), + [anon_sym_co_return] = ACTIONS(2747), + [anon_sym_co_yield] = ACTIONS(2747), + [anon_sym_R_DQUOTE] = ACTIONS(2749), + [anon_sym_LR_DQUOTE] = ACTIONS(2749), + [anon_sym_uR_DQUOTE] = ACTIONS(2749), + [anon_sym_UR_DQUOTE] = ACTIONS(2749), + [anon_sym_u8R_DQUOTE] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_requires] = ACTIONS(2747), + [sym_this] = ACTIONS(2747), + [sym_nullptr] = ACTIONS(2747), + }, + [999] = { + [sym_identifier] = ACTIONS(2693), + [aux_sym_preproc_include_token1] = ACTIONS(2693), + [aux_sym_preproc_def_token1] = ACTIONS(2693), + [aux_sym_preproc_if_token1] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2693), + [sym_preproc_directive] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_typedef] = ACTIONS(2693), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym___attribute__] = ACTIONS(2693), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2695), + [anon_sym___declspec] = ACTIONS(2693), + [anon_sym___based] = ACTIONS(2693), + [anon_sym___cdecl] = ACTIONS(2693), + [anon_sym___clrcall] = ACTIONS(2693), + [anon_sym___stdcall] = ACTIONS(2693), + [anon_sym___fastcall] = ACTIONS(2693), + [anon_sym___thiscall] = ACTIONS(2693), + [anon_sym___vectorcall] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_RBRACE] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_register] = ACTIONS(2693), + [anon_sym_inline] = ACTIONS(2693), + [anon_sym_thread_local] = ACTIONS(2693), + [anon_sym_input] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_volatile] = ACTIONS(2693), + [anon_sym_restrict] = ACTIONS(2693), + [anon_sym__Atomic] = ACTIONS(2693), + [anon_sym_mutable] = ACTIONS(2693), + [anon_sym_constexpr] = ACTIONS(2693), + [anon_sym_constinit] = ACTIONS(2693), + [anon_sym_consteval] = ACTIONS(2693), + [anon_sym_signed] = ACTIONS(2693), + [anon_sym_unsigned] = ACTIONS(2693), + [anon_sym_long] = ACTIONS(2693), + [anon_sym_short] = ACTIONS(2693), + [sym_primitive_type] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_class] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2693), + [anon_sym_union] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_switch] = ACTIONS(2693), + [anon_sym_case] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_goto] = ACTIONS(2693), + [anon_sym_not] = ACTIONS(2693), + [anon_sym_compl] = ACTIONS(2693), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_sizeof] = ACTIONS(2693), + [sym_number_literal] = ACTIONS(2695), + [anon_sym_L_SQUOTE] = ACTIONS(2695), + [anon_sym_u_SQUOTE] = ACTIONS(2695), + [anon_sym_U_SQUOTE] = ACTIONS(2695), + [anon_sym_u8_SQUOTE] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2693), + [sym_false] = ACTIONS(2693), + [sym_null] = ACTIONS(2693), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2693), + [anon_sym_decltype] = ACTIONS(2693), + [anon_sym_virtual] = ACTIONS(2693), + [anon_sym_explicit] = ACTIONS(2693), + [anon_sym_typename] = ACTIONS(2693), + [anon_sym_template] = ACTIONS(2693), + [anon_sym_operator] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_delete] = ACTIONS(2693), + [anon_sym_throw] = ACTIONS(2693), + [anon_sym_namespace] = ACTIONS(2693), + [anon_sym_using] = ACTIONS(2693), + [anon_sym_static_assert] = ACTIONS(2693), + [anon_sym_concept] = ACTIONS(2693), + [anon_sym_co_return] = ACTIONS(2693), + [anon_sym_co_yield] = ACTIONS(2693), + [anon_sym_R_DQUOTE] = ACTIONS(2695), + [anon_sym_LR_DQUOTE] = ACTIONS(2695), + [anon_sym_uR_DQUOTE] = ACTIONS(2695), + [anon_sym_UR_DQUOTE] = ACTIONS(2695), + [anon_sym_u8R_DQUOTE] = ACTIONS(2695), + [anon_sym_co_await] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_requires] = ACTIONS(2693), + [sym_this] = ACTIONS(2693), + [sym_nullptr] = ACTIONS(2693), + }, + [1000] = { + [sym_identifier] = ACTIONS(2689), + [aux_sym_preproc_include_token1] = ACTIONS(2689), + [aux_sym_preproc_def_token1] = ACTIONS(2689), + [aux_sym_preproc_if_token1] = ACTIONS(2689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2689), + [sym_preproc_directive] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_typedef] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2689), + [anon_sym___attribute__] = ACTIONS(2689), + [anon_sym_COLON_COLON] = ACTIONS(2691), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2691), + [anon_sym___declspec] = ACTIONS(2689), + [anon_sym___based] = ACTIONS(2689), + [anon_sym___cdecl] = ACTIONS(2689), + [anon_sym___clrcall] = ACTIONS(2689), + [anon_sym___stdcall] = ACTIONS(2689), + [anon_sym___fastcall] = ACTIONS(2689), + [anon_sym___thiscall] = ACTIONS(2689), + [anon_sym___vectorcall] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_RBRACE] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_register] = ACTIONS(2689), + [anon_sym_inline] = ACTIONS(2689), + [anon_sym_thread_local] = ACTIONS(2689), + [anon_sym_input] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_volatile] = ACTIONS(2689), + [anon_sym_restrict] = ACTIONS(2689), + [anon_sym__Atomic] = ACTIONS(2689), + [anon_sym_mutable] = ACTIONS(2689), + [anon_sym_constexpr] = ACTIONS(2689), + [anon_sym_constinit] = ACTIONS(2689), + [anon_sym_consteval] = ACTIONS(2689), + [anon_sym_signed] = ACTIONS(2689), + [anon_sym_unsigned] = ACTIONS(2689), + [anon_sym_long] = ACTIONS(2689), + [anon_sym_short] = ACTIONS(2689), + [sym_primitive_type] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_class] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_switch] = ACTIONS(2689), + [anon_sym_case] = ACTIONS(2689), + [anon_sym_default] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_do] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_goto] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2689), + [anon_sym_compl] = ACTIONS(2689), + [anon_sym_DASH_DASH] = ACTIONS(2691), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2691), + [anon_sym_u_SQUOTE] = ACTIONS(2691), + [anon_sym_U_SQUOTE] = ACTIONS(2691), + [anon_sym_u8_SQUOTE] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2691), + [anon_sym_L_DQUOTE] = ACTIONS(2691), + [anon_sym_u_DQUOTE] = ACTIONS(2691), + [anon_sym_U_DQUOTE] = ACTIONS(2691), + [anon_sym_u8_DQUOTE] = ACTIONS(2691), + [anon_sym_DQUOTE] = ACTIONS(2691), + [sym_true] = ACTIONS(2689), + [sym_false] = ACTIONS(2689), + [sym_null] = ACTIONS(2689), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2689), + [anon_sym_decltype] = ACTIONS(2689), + [anon_sym_virtual] = ACTIONS(2689), + [anon_sym_explicit] = ACTIONS(2689), + [anon_sym_typename] = ACTIONS(2689), + [anon_sym_template] = ACTIONS(2689), + [anon_sym_operator] = ACTIONS(2689), + [anon_sym_try] = ACTIONS(2689), + [anon_sym_delete] = ACTIONS(2689), + [anon_sym_throw] = ACTIONS(2689), + [anon_sym_namespace] = ACTIONS(2689), + [anon_sym_using] = ACTIONS(2689), + [anon_sym_static_assert] = ACTIONS(2689), + [anon_sym_concept] = ACTIONS(2689), + [anon_sym_co_return] = ACTIONS(2689), + [anon_sym_co_yield] = ACTIONS(2689), + [anon_sym_R_DQUOTE] = ACTIONS(2691), + [anon_sym_LR_DQUOTE] = ACTIONS(2691), + [anon_sym_uR_DQUOTE] = ACTIONS(2691), + [anon_sym_UR_DQUOTE] = ACTIONS(2691), + [anon_sym_u8R_DQUOTE] = ACTIONS(2691), + [anon_sym_co_await] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(2689), + [anon_sym_requires] = ACTIONS(2689), + [sym_this] = ACTIONS(2689), + [sym_nullptr] = ACTIONS(2689), + }, + [1001] = { + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_input] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), + }, + [1002] = { + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_input] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), + }, + [1003] = { + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym_input] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [sym_null] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), + [sym_nullptr] = ACTIONS(2721), + }, + [1004] = { + [ts_builtin_sym_end] = ACTIONS(2719), + [sym_identifier] = ACTIONS(2717), + [aux_sym_preproc_include_token1] = ACTIONS(2717), + [aux_sym_preproc_def_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), + [sym_preproc_directive] = ACTIONS(2717), + [anon_sym_LPAREN2] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_typedef] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym___attribute__] = ACTIONS(2717), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), + [anon_sym___declspec] = ACTIONS(2717), + [anon_sym___based] = ACTIONS(2717), + [anon_sym___cdecl] = ACTIONS(2717), + [anon_sym___clrcall] = ACTIONS(2717), + [anon_sym___stdcall] = ACTIONS(2717), + [anon_sym___fastcall] = ACTIONS(2717), + [anon_sym___thiscall] = ACTIONS(2717), + [anon_sym___vectorcall] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_register] = ACTIONS(2717), + [anon_sym_inline] = ACTIONS(2717), + [anon_sym_thread_local] = ACTIONS(2717), + [anon_sym_input] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_volatile] = ACTIONS(2717), + [anon_sym_restrict] = ACTIONS(2717), + [anon_sym__Atomic] = ACTIONS(2717), + [anon_sym_mutable] = ACTIONS(2717), + [anon_sym_constexpr] = ACTIONS(2717), + [anon_sym_constinit] = ACTIONS(2717), + [anon_sym_consteval] = ACTIONS(2717), + [anon_sym_signed] = ACTIONS(2717), + [anon_sym_unsigned] = ACTIONS(2717), + [anon_sym_long] = ACTIONS(2717), + [anon_sym_short] = ACTIONS(2717), + [sym_primitive_type] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_case] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_goto] = ACTIONS(2717), + [anon_sym_not] = ACTIONS(2717), + [anon_sym_compl] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_sizeof] = ACTIONS(2717), + [sym_number_literal] = ACTIONS(2719), + [anon_sym_L_SQUOTE] = ACTIONS(2719), + [anon_sym_u_SQUOTE] = ACTIONS(2719), + [anon_sym_U_SQUOTE] = ACTIONS(2719), + [anon_sym_u8_SQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_L_DQUOTE] = ACTIONS(2719), + [anon_sym_u_DQUOTE] = ACTIONS(2719), + [anon_sym_U_DQUOTE] = ACTIONS(2719), + [anon_sym_u8_DQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [sym_true] = ACTIONS(2717), + [sym_false] = ACTIONS(2717), + [sym_null] = ACTIONS(2717), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2717), + [anon_sym_decltype] = ACTIONS(2717), + [anon_sym_virtual] = ACTIONS(2717), + [anon_sym_explicit] = ACTIONS(2717), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2717), + [anon_sym_operator] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_namespace] = ACTIONS(2717), + [anon_sym_using] = ACTIONS(2717), + [anon_sym_static_assert] = ACTIONS(2717), + [anon_sym_concept] = ACTIONS(2717), + [anon_sym_co_return] = ACTIONS(2717), + [anon_sym_co_yield] = ACTIONS(2717), + [anon_sym_R_DQUOTE] = ACTIONS(2719), + [anon_sym_LR_DQUOTE] = ACTIONS(2719), + [anon_sym_uR_DQUOTE] = ACTIONS(2719), + [anon_sym_UR_DQUOTE] = ACTIONS(2719), + [anon_sym_u8R_DQUOTE] = ACTIONS(2719), + [anon_sym_co_await] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_requires] = ACTIONS(2717), + [sym_this] = ACTIONS(2717), + [sym_nullptr] = ACTIONS(2717), + }, + [1005] = { + [sym_identifier] = ACTIONS(2681), + [aux_sym_preproc_include_token1] = ACTIONS(2681), + [aux_sym_preproc_def_token1] = ACTIONS(2681), + [aux_sym_preproc_if_token1] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), + [sym_preproc_directive] = ACTIONS(2681), + [anon_sym_LPAREN2] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_AMP_AMP] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2681), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym___attribute__] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), + [anon_sym___declspec] = ACTIONS(2681), + [anon_sym___based] = ACTIONS(2681), + [anon_sym___cdecl] = ACTIONS(2681), + [anon_sym___clrcall] = ACTIONS(2681), + [anon_sym___stdcall] = ACTIONS(2681), + [anon_sym___fastcall] = ACTIONS(2681), + [anon_sym___thiscall] = ACTIONS(2681), + [anon_sym___vectorcall] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_register] = ACTIONS(2681), + [anon_sym_inline] = ACTIONS(2681), + [anon_sym_thread_local] = ACTIONS(2681), + [anon_sym_input] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_volatile] = ACTIONS(2681), + [anon_sym_restrict] = ACTIONS(2681), + [anon_sym__Atomic] = ACTIONS(2681), + [anon_sym_mutable] = ACTIONS(2681), + [anon_sym_constexpr] = ACTIONS(2681), + [anon_sym_constinit] = ACTIONS(2681), + [anon_sym_consteval] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2681), + [anon_sym_unsigned] = ACTIONS(2681), + [anon_sym_long] = ACTIONS(2681), + [anon_sym_short] = ACTIONS(2681), + [sym_primitive_type] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2681), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2681), + [anon_sym_case] = ACTIONS(2681), + [anon_sym_default] = ACTIONS(2681), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_do] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [anon_sym_goto] = ACTIONS(2681), + [anon_sym_not] = ACTIONS(2681), + [anon_sym_compl] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_sizeof] = ACTIONS(2681), + [sym_number_literal] = ACTIONS(2683), + [anon_sym_L_SQUOTE] = ACTIONS(2683), + [anon_sym_u_SQUOTE] = ACTIONS(2683), + [anon_sym_U_SQUOTE] = ACTIONS(2683), + [anon_sym_u8_SQUOTE] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_L_DQUOTE] = ACTIONS(2683), + [anon_sym_u_DQUOTE] = ACTIONS(2683), + [anon_sym_U_DQUOTE] = ACTIONS(2683), + [anon_sym_u8_DQUOTE] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [sym_true] = ACTIONS(2681), + [sym_false] = ACTIONS(2681), + [sym_null] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2681), + [anon_sym_decltype] = ACTIONS(2681), + [anon_sym_virtual] = ACTIONS(2681), + [anon_sym_explicit] = ACTIONS(2681), + [anon_sym_typename] = ACTIONS(2681), + [anon_sym_template] = ACTIONS(2681), + [anon_sym_operator] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_delete] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2681), + [anon_sym_namespace] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2681), + [anon_sym_static_assert] = ACTIONS(2681), + [anon_sym_concept] = ACTIONS(2681), + [anon_sym_co_return] = ACTIONS(2681), + [anon_sym_co_yield] = ACTIONS(2681), + [anon_sym_R_DQUOTE] = ACTIONS(2683), + [anon_sym_LR_DQUOTE] = ACTIONS(2683), + [anon_sym_uR_DQUOTE] = ACTIONS(2683), + [anon_sym_UR_DQUOTE] = ACTIONS(2683), + [anon_sym_u8R_DQUOTE] = ACTIONS(2683), + [anon_sym_co_await] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2681), + [anon_sym_requires] = ACTIONS(2681), + [sym_this] = ACTIONS(2681), + [sym_nullptr] = ACTIONS(2681), + }, + [1006] = { + [sym_identifier] = ACTIONS(2677), + [aux_sym_preproc_include_token1] = ACTIONS(2677), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), + [sym_preproc_directive] = ACTIONS(2677), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym___attribute__] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), + [anon_sym___declspec] = ACTIONS(2677), + [anon_sym___based] = ACTIONS(2677), + [anon_sym___cdecl] = ACTIONS(2677), + [anon_sym___clrcall] = ACTIONS(2677), + [anon_sym___stdcall] = ACTIONS(2677), + [anon_sym___fastcall] = ACTIONS(2677), + [anon_sym___thiscall] = ACTIONS(2677), + [anon_sym___vectorcall] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_register] = ACTIONS(2677), + [anon_sym_inline] = ACTIONS(2677), + [anon_sym_thread_local] = ACTIONS(2677), + [anon_sym_input] = ACTIONS(2677), + [anon_sym_const] = ACTIONS(2677), + [anon_sym_volatile] = ACTIONS(2677), + [anon_sym_restrict] = ACTIONS(2677), + [anon_sym__Atomic] = ACTIONS(2677), + [anon_sym_mutable] = ACTIONS(2677), + [anon_sym_constexpr] = ACTIONS(2677), + [anon_sym_constinit] = ACTIONS(2677), + [anon_sym_consteval] = ACTIONS(2677), + [anon_sym_signed] = ACTIONS(2677), + [anon_sym_unsigned] = ACTIONS(2677), + [anon_sym_long] = ACTIONS(2677), + [anon_sym_short] = ACTIONS(2677), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(2677), + [anon_sym_union] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_case] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_goto] = ACTIONS(2677), + [anon_sym_not] = ACTIONS(2677), + [anon_sym_compl] = ACTIONS(2677), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_sizeof] = ACTIONS(2677), + [sym_number_literal] = ACTIONS(2679), + [anon_sym_L_SQUOTE] = ACTIONS(2679), + [anon_sym_u_SQUOTE] = ACTIONS(2679), + [anon_sym_U_SQUOTE] = ACTIONS(2679), + [anon_sym_u8_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_L_DQUOTE] = ACTIONS(2679), + [anon_sym_u_DQUOTE] = ACTIONS(2679), + [anon_sym_U_DQUOTE] = ACTIONS(2679), + [anon_sym_u8_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [sym_true] = ACTIONS(2677), + [sym_false] = ACTIONS(2677), + [sym_null] = ACTIONS(2677), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2677), + [anon_sym_decltype] = ACTIONS(2677), + [anon_sym_virtual] = ACTIONS(2677), + [anon_sym_explicit] = ACTIONS(2677), + [anon_sym_typename] = ACTIONS(2677), + [anon_sym_template] = ACTIONS(2677), + [anon_sym_operator] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_delete] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_namespace] = ACTIONS(2677), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_static_assert] = ACTIONS(2677), + [anon_sym_concept] = ACTIONS(2677), + [anon_sym_co_return] = ACTIONS(2677), + [anon_sym_co_yield] = ACTIONS(2677), + [anon_sym_R_DQUOTE] = ACTIONS(2679), + [anon_sym_LR_DQUOTE] = ACTIONS(2679), + [anon_sym_uR_DQUOTE] = ACTIONS(2679), + [anon_sym_UR_DQUOTE] = ACTIONS(2679), + [anon_sym_u8R_DQUOTE] = ACTIONS(2679), + [anon_sym_co_await] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_requires] = ACTIONS(2677), + [sym_this] = ACTIONS(2677), + [sym_nullptr] = ACTIONS(2677), + }, + [1007] = { + [ts_builtin_sym_end] = ACTIONS(2671), + [sym_identifier] = ACTIONS(2669), + [aux_sym_preproc_include_token1] = ACTIONS(2669), + [aux_sym_preproc_def_token1] = ACTIONS(2669), + [aux_sym_preproc_if_token1] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), + [sym_preproc_directive] = ACTIONS(2669), + [anon_sym_LPAREN2] = ACTIONS(2671), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_TILDE] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP_AMP] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2669), + [anon_sym_extern] = ACTIONS(2669), + [anon_sym___attribute__] = ACTIONS(2669), + [anon_sym_COLON_COLON] = ACTIONS(2671), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), + [anon_sym___declspec] = ACTIONS(2669), + [anon_sym___based] = ACTIONS(2669), + [anon_sym___cdecl] = ACTIONS(2669), + [anon_sym___clrcall] = ACTIONS(2669), + [anon_sym___stdcall] = ACTIONS(2669), + [anon_sym___fastcall] = ACTIONS(2669), + [anon_sym___thiscall] = ACTIONS(2669), + [anon_sym___vectorcall] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_register] = ACTIONS(2669), + [anon_sym_inline] = ACTIONS(2669), + [anon_sym_thread_local] = ACTIONS(2669), + [anon_sym_input] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_volatile] = ACTIONS(2669), + [anon_sym_restrict] = ACTIONS(2669), + [anon_sym__Atomic] = ACTIONS(2669), + [anon_sym_mutable] = ACTIONS(2669), + [anon_sym_constexpr] = ACTIONS(2669), + [anon_sym_constinit] = ACTIONS(2669), + [anon_sym_consteval] = ACTIONS(2669), + [anon_sym_signed] = ACTIONS(2669), + [anon_sym_unsigned] = ACTIONS(2669), + [anon_sym_long] = ACTIONS(2669), + [anon_sym_short] = ACTIONS(2669), + [sym_primitive_type] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_class] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2669), + [anon_sym_case] = ACTIONS(2669), + [anon_sym_default] = ACTIONS(2669), + [anon_sym_while] = ACTIONS(2669), + [anon_sym_do] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2671), + [anon_sym_sizeof] = ACTIONS(2669), + [sym_number_literal] = ACTIONS(2671), + [anon_sym_L_SQUOTE] = ACTIONS(2671), + [anon_sym_u_SQUOTE] = ACTIONS(2671), + [anon_sym_U_SQUOTE] = ACTIONS(2671), + [anon_sym_u8_SQUOTE] = ACTIONS(2671), + [anon_sym_SQUOTE] = ACTIONS(2671), + [anon_sym_L_DQUOTE] = ACTIONS(2671), + [anon_sym_u_DQUOTE] = ACTIONS(2671), + [anon_sym_U_DQUOTE] = ACTIONS(2671), + [anon_sym_u8_DQUOTE] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(2671), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_null] = ACTIONS(2669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2669), + [anon_sym_decltype] = ACTIONS(2669), + [anon_sym_virtual] = ACTIONS(2669), + [anon_sym_explicit] = ACTIONS(2669), + [anon_sym_typename] = ACTIONS(2669), + [anon_sym_template] = ACTIONS(2669), + [anon_sym_operator] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2669), + [anon_sym_delete] = ACTIONS(2669), + [anon_sym_throw] = ACTIONS(2669), + [anon_sym_namespace] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2669), + [anon_sym_static_assert] = ACTIONS(2669), + [anon_sym_concept] = ACTIONS(2669), + [anon_sym_co_return] = ACTIONS(2669), + [anon_sym_co_yield] = ACTIONS(2669), + [anon_sym_R_DQUOTE] = ACTIONS(2671), + [anon_sym_LR_DQUOTE] = ACTIONS(2671), + [anon_sym_uR_DQUOTE] = ACTIONS(2671), + [anon_sym_UR_DQUOTE] = ACTIONS(2671), + [anon_sym_u8R_DQUOTE] = ACTIONS(2671), + [anon_sym_co_await] = ACTIONS(2669), + [anon_sym_new] = ACTIONS(2669), + [anon_sym_requires] = ACTIONS(2669), + [sym_this] = ACTIONS(2669), + [sym_nullptr] = ACTIONS(2669), + }, + [1008] = { + [sym_identifier] = ACTIONS(2823), + [aux_sym_preproc_include_token1] = ACTIONS(2823), + [aux_sym_preproc_def_token1] = ACTIONS(2823), + [aux_sym_preproc_if_token1] = ACTIONS(2823), + [aux_sym_preproc_if_token2] = ACTIONS(2823), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2823), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2823), + [sym_preproc_directive] = ACTIONS(2823), + [anon_sym_LPAREN2] = ACTIONS(2825), + [anon_sym_BANG] = ACTIONS(2825), + [anon_sym_TILDE] = ACTIONS(2825), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(2823), + [anon_sym_STAR] = ACTIONS(2825), + [anon_sym_AMP_AMP] = ACTIONS(2825), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_SEMI] = ACTIONS(2825), + [anon_sym_typedef] = ACTIONS(2823), + [anon_sym_extern] = ACTIONS(2823), + [anon_sym___attribute__] = ACTIONS(2823), + [anon_sym_COLON_COLON] = ACTIONS(2825), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2825), + [anon_sym___declspec] = ACTIONS(2823), + [anon_sym___based] = ACTIONS(2823), + [anon_sym___cdecl] = ACTIONS(2823), + [anon_sym___clrcall] = ACTIONS(2823), + [anon_sym___stdcall] = ACTIONS(2823), + [anon_sym___fastcall] = ACTIONS(2823), + [anon_sym___thiscall] = ACTIONS(2823), + [anon_sym___vectorcall] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2823), + [anon_sym_static] = ACTIONS(2823), + [anon_sym_register] = ACTIONS(2823), + [anon_sym_inline] = ACTIONS(2823), + [anon_sym_thread_local] = ACTIONS(2823), + [anon_sym_input] = ACTIONS(2823), + [anon_sym_const] = ACTIONS(2823), + [anon_sym_volatile] = ACTIONS(2823), + [anon_sym_restrict] = ACTIONS(2823), + [anon_sym__Atomic] = ACTIONS(2823), + [anon_sym_mutable] = ACTIONS(2823), + [anon_sym_constexpr] = ACTIONS(2823), + [anon_sym_constinit] = ACTIONS(2823), + [anon_sym_consteval] = ACTIONS(2823), + [anon_sym_signed] = ACTIONS(2823), + [anon_sym_unsigned] = ACTIONS(2823), + [anon_sym_long] = ACTIONS(2823), + [anon_sym_short] = ACTIONS(2823), + [sym_primitive_type] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2823), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_union] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_switch] = ACTIONS(2823), + [anon_sym_case] = ACTIONS(2823), + [anon_sym_default] = ACTIONS(2823), + [anon_sym_while] = ACTIONS(2823), + [anon_sym_do] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_goto] = ACTIONS(2823), + [anon_sym_not] = ACTIONS(2823), + [anon_sym_compl] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2825), + [anon_sym_PLUS_PLUS] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2823), + [sym_number_literal] = ACTIONS(2825), + [anon_sym_L_SQUOTE] = ACTIONS(2825), + [anon_sym_u_SQUOTE] = ACTIONS(2825), + [anon_sym_U_SQUOTE] = ACTIONS(2825), + [anon_sym_u8_SQUOTE] = ACTIONS(2825), + [anon_sym_SQUOTE] = ACTIONS(2825), + [anon_sym_L_DQUOTE] = ACTIONS(2825), + [anon_sym_u_DQUOTE] = ACTIONS(2825), + [anon_sym_U_DQUOTE] = ACTIONS(2825), + [anon_sym_u8_DQUOTE] = ACTIONS(2825), + [anon_sym_DQUOTE] = ACTIONS(2825), + [sym_true] = ACTIONS(2823), + [sym_false] = ACTIONS(2823), + [sym_null] = ACTIONS(2823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2823), + [anon_sym_decltype] = ACTIONS(2823), + [anon_sym_virtual] = ACTIONS(2823), + [anon_sym_explicit] = ACTIONS(2823), + [anon_sym_typename] = ACTIONS(2823), + [anon_sym_template] = ACTIONS(2823), + [anon_sym_operator] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2823), + [anon_sym_delete] = ACTIONS(2823), + [anon_sym_throw] = ACTIONS(2823), + [anon_sym_namespace] = ACTIONS(2823), + [anon_sym_using] = ACTIONS(2823), + [anon_sym_static_assert] = ACTIONS(2823), + [anon_sym_concept] = ACTIONS(2823), + [anon_sym_co_return] = ACTIONS(2823), + [anon_sym_co_yield] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2823), + [anon_sym_new] = ACTIONS(2823), + [anon_sym_requires] = ACTIONS(2823), + [sym_this] = ACTIONS(2823), + [sym_nullptr] = ACTIONS(2823), + }, + [1009] = { + [sym_identifier] = ACTIONS(2673), + [aux_sym_preproc_include_token1] = ACTIONS(2673), + [aux_sym_preproc_def_token1] = ACTIONS(2673), + [aux_sym_preproc_if_token1] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), + [sym_preproc_directive] = ACTIONS(2673), + [anon_sym_LPAREN2] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2673), + [anon_sym_PLUS] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_typedef] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2673), + [anon_sym___attribute__] = ACTIONS(2673), + [anon_sym_COLON_COLON] = ACTIONS(2675), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), + [anon_sym___declspec] = ACTIONS(2673), + [anon_sym___based] = ACTIONS(2673), + [anon_sym___cdecl] = ACTIONS(2673), + [anon_sym___clrcall] = ACTIONS(2673), + [anon_sym___stdcall] = ACTIONS(2673), + [anon_sym___fastcall] = ACTIONS(2673), + [anon_sym___thiscall] = ACTIONS(2673), + [anon_sym___vectorcall] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_RBRACE] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_static] = ACTIONS(2673), + [anon_sym_register] = ACTIONS(2673), + [anon_sym_inline] = ACTIONS(2673), + [anon_sym_thread_local] = ACTIONS(2673), + [anon_sym_input] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2673), + [anon_sym_volatile] = ACTIONS(2673), + [anon_sym_restrict] = ACTIONS(2673), + [anon_sym__Atomic] = ACTIONS(2673), + [anon_sym_mutable] = ACTIONS(2673), + [anon_sym_constexpr] = ACTIONS(2673), + [anon_sym_constinit] = ACTIONS(2673), + [anon_sym_consteval] = ACTIONS(2673), + [anon_sym_signed] = ACTIONS(2673), + [anon_sym_unsigned] = ACTIONS(2673), + [anon_sym_long] = ACTIONS(2673), + [anon_sym_short] = ACTIONS(2673), + [sym_primitive_type] = ACTIONS(2673), + [anon_sym_enum] = ACTIONS(2673), + [anon_sym_class] = ACTIONS(2673), + [anon_sym_struct] = ACTIONS(2673), + [anon_sym_union] = ACTIONS(2673), + [anon_sym_if] = ACTIONS(2673), + [anon_sym_switch] = ACTIONS(2673), + [anon_sym_case] = ACTIONS(2673), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2673), + [anon_sym_do] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2673), + [anon_sym_return] = ACTIONS(2673), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2673), + [anon_sym_goto] = ACTIONS(2673), + [anon_sym_not] = ACTIONS(2673), + [anon_sym_compl] = ACTIONS(2673), + [anon_sym_DASH_DASH] = ACTIONS(2675), + [anon_sym_PLUS_PLUS] = ACTIONS(2675), + [anon_sym_sizeof] = ACTIONS(2673), + [sym_number_literal] = ACTIONS(2675), + [anon_sym_L_SQUOTE] = ACTIONS(2675), + [anon_sym_u_SQUOTE] = ACTIONS(2675), + [anon_sym_U_SQUOTE] = ACTIONS(2675), + [anon_sym_u8_SQUOTE] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2675), + [anon_sym_L_DQUOTE] = ACTIONS(2675), + [anon_sym_u_DQUOTE] = ACTIONS(2675), + [anon_sym_U_DQUOTE] = ACTIONS(2675), + [anon_sym_u8_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [sym_true] = ACTIONS(2673), + [sym_false] = ACTIONS(2673), + [sym_null] = ACTIONS(2673), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2673), + [anon_sym_decltype] = ACTIONS(2673), + [anon_sym_virtual] = ACTIONS(2673), + [anon_sym_explicit] = ACTIONS(2673), + [anon_sym_typename] = ACTIONS(2673), + [anon_sym_template] = ACTIONS(2673), + [anon_sym_operator] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2673), + [anon_sym_delete] = ACTIONS(2673), + [anon_sym_throw] = ACTIONS(2673), + [anon_sym_namespace] = ACTIONS(2673), + [anon_sym_using] = ACTIONS(2673), + [anon_sym_static_assert] = ACTIONS(2673), + [anon_sym_concept] = ACTIONS(2673), + [anon_sym_co_return] = ACTIONS(2673), + [anon_sym_co_yield] = ACTIONS(2673), + [anon_sym_R_DQUOTE] = ACTIONS(2675), + [anon_sym_LR_DQUOTE] = ACTIONS(2675), + [anon_sym_uR_DQUOTE] = ACTIONS(2675), + [anon_sym_UR_DQUOTE] = ACTIONS(2675), + [anon_sym_u8R_DQUOTE] = ACTIONS(2675), + [anon_sym_co_await] = ACTIONS(2673), + [anon_sym_new] = ACTIONS(2673), + [anon_sym_requires] = ACTIONS(2673), + [sym_this] = ACTIONS(2673), + [sym_nullptr] = ACTIONS(2673), + }, + [1010] = { + [ts_builtin_sym_end] = ACTIONS(2631), + [sym_identifier] = ACTIONS(2629), + [aux_sym_preproc_include_token1] = ACTIONS(2629), + [aux_sym_preproc_def_token1] = ACTIONS(2629), + [aux_sym_preproc_if_token1] = ACTIONS(2629), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2629), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2629), + [sym_preproc_directive] = ACTIONS(2629), + [anon_sym_LPAREN2] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_typedef] = ACTIONS(2629), + [anon_sym_extern] = ACTIONS(2629), + [anon_sym___attribute__] = ACTIONS(2629), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2631), + [anon_sym___declspec] = ACTIONS(2629), + [anon_sym___based] = ACTIONS(2629), + [anon_sym___cdecl] = ACTIONS(2629), + [anon_sym___clrcall] = ACTIONS(2629), + [anon_sym___stdcall] = ACTIONS(2629), + [anon_sym___fastcall] = ACTIONS(2629), + [anon_sym___thiscall] = ACTIONS(2629), + [anon_sym___vectorcall] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_static] = ACTIONS(2629), + [anon_sym_register] = ACTIONS(2629), + [anon_sym_inline] = ACTIONS(2629), + [anon_sym_thread_local] = ACTIONS(2629), + [anon_sym_input] = ACTIONS(2629), + [anon_sym_const] = ACTIONS(2629), + [anon_sym_volatile] = ACTIONS(2629), + [anon_sym_restrict] = ACTIONS(2629), + [anon_sym__Atomic] = ACTIONS(2629), + [anon_sym_mutable] = ACTIONS(2629), + [anon_sym_constexpr] = ACTIONS(2629), + [anon_sym_constinit] = ACTIONS(2629), + [anon_sym_consteval] = ACTIONS(2629), + [anon_sym_signed] = ACTIONS(2629), + [anon_sym_unsigned] = ACTIONS(2629), + [anon_sym_long] = ACTIONS(2629), + [anon_sym_short] = ACTIONS(2629), + [sym_primitive_type] = ACTIONS(2629), + [anon_sym_enum] = ACTIONS(2629), + [anon_sym_class] = ACTIONS(2629), + [anon_sym_struct] = ACTIONS(2629), + [anon_sym_union] = ACTIONS(2629), + [anon_sym_if] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2629), + [anon_sym_case] = ACTIONS(2629), + [anon_sym_default] = ACTIONS(2629), + [anon_sym_while] = ACTIONS(2629), + [anon_sym_do] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2629), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_break] = ACTIONS(2629), + [anon_sym_continue] = ACTIONS(2629), + [anon_sym_goto] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_compl] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_sizeof] = ACTIONS(2629), + [sym_number_literal] = ACTIONS(2631), + [anon_sym_L_SQUOTE] = ACTIONS(2631), + [anon_sym_u_SQUOTE] = ACTIONS(2631), + [anon_sym_U_SQUOTE] = ACTIONS(2631), + [anon_sym_u8_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_L_DQUOTE] = ACTIONS(2631), + [anon_sym_u_DQUOTE] = ACTIONS(2631), + [anon_sym_U_DQUOTE] = ACTIONS(2631), + [anon_sym_u8_DQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [sym_true] = ACTIONS(2629), + [sym_false] = ACTIONS(2629), + [sym_null] = ACTIONS(2629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2629), + [anon_sym_decltype] = ACTIONS(2629), + [anon_sym_virtual] = ACTIONS(2629), + [anon_sym_explicit] = ACTIONS(2629), + [anon_sym_typename] = ACTIONS(2629), + [anon_sym_template] = ACTIONS(2629), + [anon_sym_operator] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2629), + [anon_sym_delete] = ACTIONS(2629), + [anon_sym_throw] = ACTIONS(2629), + [anon_sym_namespace] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2629), + [anon_sym_static_assert] = ACTIONS(2629), + [anon_sym_concept] = ACTIONS(2629), + [anon_sym_co_return] = ACTIONS(2629), + [anon_sym_co_yield] = ACTIONS(2629), + [anon_sym_R_DQUOTE] = ACTIONS(2631), + [anon_sym_LR_DQUOTE] = ACTIONS(2631), + [anon_sym_uR_DQUOTE] = ACTIONS(2631), + [anon_sym_UR_DQUOTE] = ACTIONS(2631), + [anon_sym_u8R_DQUOTE] = ACTIONS(2631), + [anon_sym_co_await] = ACTIONS(2629), + [anon_sym_new] = ACTIONS(2629), + [anon_sym_requires] = ACTIONS(2629), + [sym_this] = ACTIONS(2629), + [sym_nullptr] = ACTIONS(2629), + }, + [1011] = { + [ts_builtin_sym_end] = ACTIONS(2635), + [sym_identifier] = ACTIONS(2633), + [aux_sym_preproc_include_token1] = ACTIONS(2633), + [aux_sym_preproc_def_token1] = ACTIONS(2633), + [aux_sym_preproc_if_token1] = ACTIONS(2633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2633), + [sym_preproc_directive] = ACTIONS(2633), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_typedef] = ACTIONS(2633), + [anon_sym_extern] = ACTIONS(2633), + [anon_sym___attribute__] = ACTIONS(2633), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2635), + [anon_sym___declspec] = ACTIONS(2633), + [anon_sym___based] = ACTIONS(2633), + [anon_sym___cdecl] = ACTIONS(2633), + [anon_sym___clrcall] = ACTIONS(2633), + [anon_sym___stdcall] = ACTIONS(2633), + [anon_sym___fastcall] = ACTIONS(2633), + [anon_sym___thiscall] = ACTIONS(2633), + [anon_sym___vectorcall] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_static] = ACTIONS(2633), + [anon_sym_register] = ACTIONS(2633), + [anon_sym_inline] = ACTIONS(2633), + [anon_sym_thread_local] = ACTIONS(2633), + [anon_sym_input] = ACTIONS(2633), + [anon_sym_const] = ACTIONS(2633), + [anon_sym_volatile] = ACTIONS(2633), + [anon_sym_restrict] = ACTIONS(2633), + [anon_sym__Atomic] = ACTIONS(2633), + [anon_sym_mutable] = ACTIONS(2633), + [anon_sym_constexpr] = ACTIONS(2633), + [anon_sym_constinit] = ACTIONS(2633), + [anon_sym_consteval] = ACTIONS(2633), + [anon_sym_signed] = ACTIONS(2633), + [anon_sym_unsigned] = ACTIONS(2633), + [anon_sym_long] = ACTIONS(2633), + [anon_sym_short] = ACTIONS(2633), + [sym_primitive_type] = ACTIONS(2633), + [anon_sym_enum] = ACTIONS(2633), + [anon_sym_class] = ACTIONS(2633), + [anon_sym_struct] = ACTIONS(2633), + [anon_sym_union] = ACTIONS(2633), + [anon_sym_if] = ACTIONS(2633), + [anon_sym_switch] = ACTIONS(2633), + [anon_sym_case] = ACTIONS(2633), + [anon_sym_default] = ACTIONS(2633), + [anon_sym_while] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_for] = ACTIONS(2633), + [anon_sym_return] = ACTIONS(2633), + [anon_sym_break] = ACTIONS(2633), + [anon_sym_continue] = ACTIONS(2633), + [anon_sym_goto] = ACTIONS(2633), + [anon_sym_not] = ACTIONS(2633), + [anon_sym_compl] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_sizeof] = ACTIONS(2633), + [sym_number_literal] = ACTIONS(2635), + [anon_sym_L_SQUOTE] = ACTIONS(2635), + [anon_sym_u_SQUOTE] = ACTIONS(2635), + [anon_sym_U_SQUOTE] = ACTIONS(2635), + [anon_sym_u8_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_L_DQUOTE] = ACTIONS(2635), + [anon_sym_u_DQUOTE] = ACTIONS(2635), + [anon_sym_U_DQUOTE] = ACTIONS(2635), + [anon_sym_u8_DQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym_true] = ACTIONS(2633), + [sym_false] = ACTIONS(2633), + [sym_null] = ACTIONS(2633), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2633), + [anon_sym_decltype] = ACTIONS(2633), + [anon_sym_virtual] = ACTIONS(2633), + [anon_sym_explicit] = ACTIONS(2633), + [anon_sym_typename] = ACTIONS(2633), + [anon_sym_template] = ACTIONS(2633), + [anon_sym_operator] = ACTIONS(2633), + [anon_sym_try] = ACTIONS(2633), + [anon_sym_delete] = ACTIONS(2633), + [anon_sym_throw] = ACTIONS(2633), + [anon_sym_namespace] = ACTIONS(2633), + [anon_sym_using] = ACTIONS(2633), + [anon_sym_static_assert] = ACTIONS(2633), + [anon_sym_concept] = ACTIONS(2633), + [anon_sym_co_return] = ACTIONS(2633), + [anon_sym_co_yield] = ACTIONS(2633), + [anon_sym_R_DQUOTE] = ACTIONS(2635), + [anon_sym_LR_DQUOTE] = ACTIONS(2635), + [anon_sym_uR_DQUOTE] = ACTIONS(2635), + [anon_sym_UR_DQUOTE] = ACTIONS(2635), + [anon_sym_u8R_DQUOTE] = ACTIONS(2635), + [anon_sym_co_await] = ACTIONS(2633), + [anon_sym_new] = ACTIONS(2633), + [anon_sym_requires] = ACTIONS(2633), + [sym_this] = ACTIONS(2633), + [sym_nullptr] = ACTIONS(2633), + }, + [1012] = { + [sym_identifier] = ACTIONS(2669), + [aux_sym_preproc_include_token1] = ACTIONS(2669), + [aux_sym_preproc_def_token1] = ACTIONS(2669), + [aux_sym_preproc_if_token1] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), + [sym_preproc_directive] = ACTIONS(2669), + [anon_sym_LPAREN2] = ACTIONS(2671), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_TILDE] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP_AMP] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2669), + [anon_sym_extern] = ACTIONS(2669), + [anon_sym___attribute__] = ACTIONS(2669), + [anon_sym_COLON_COLON] = ACTIONS(2671), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), + [anon_sym___declspec] = ACTIONS(2669), + [anon_sym___based] = ACTIONS(2669), + [anon_sym___cdecl] = ACTIONS(2669), + [anon_sym___clrcall] = ACTIONS(2669), + [anon_sym___stdcall] = ACTIONS(2669), + [anon_sym___fastcall] = ACTIONS(2669), + [anon_sym___thiscall] = ACTIONS(2669), + [anon_sym___vectorcall] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_RBRACE] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_register] = ACTIONS(2669), + [anon_sym_inline] = ACTIONS(2669), + [anon_sym_thread_local] = ACTIONS(2669), + [anon_sym_input] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_volatile] = ACTIONS(2669), + [anon_sym_restrict] = ACTIONS(2669), + [anon_sym__Atomic] = ACTIONS(2669), + [anon_sym_mutable] = ACTIONS(2669), + [anon_sym_constexpr] = ACTIONS(2669), + [anon_sym_constinit] = ACTIONS(2669), + [anon_sym_consteval] = ACTIONS(2669), + [anon_sym_signed] = ACTIONS(2669), + [anon_sym_unsigned] = ACTIONS(2669), + [anon_sym_long] = ACTIONS(2669), + [anon_sym_short] = ACTIONS(2669), + [sym_primitive_type] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_class] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2669), + [anon_sym_case] = ACTIONS(2669), + [anon_sym_default] = ACTIONS(2669), + [anon_sym_while] = ACTIONS(2669), + [anon_sym_do] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2671), + [anon_sym_sizeof] = ACTIONS(2669), + [sym_number_literal] = ACTIONS(2671), + [anon_sym_L_SQUOTE] = ACTIONS(2671), + [anon_sym_u_SQUOTE] = ACTIONS(2671), + [anon_sym_U_SQUOTE] = ACTIONS(2671), + [anon_sym_u8_SQUOTE] = ACTIONS(2671), + [anon_sym_SQUOTE] = ACTIONS(2671), + [anon_sym_L_DQUOTE] = ACTIONS(2671), + [anon_sym_u_DQUOTE] = ACTIONS(2671), + [anon_sym_U_DQUOTE] = ACTIONS(2671), + [anon_sym_u8_DQUOTE] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(2671), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_null] = ACTIONS(2669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2669), + [anon_sym_decltype] = ACTIONS(2669), + [anon_sym_virtual] = ACTIONS(2669), + [anon_sym_explicit] = ACTIONS(2669), + [anon_sym_typename] = ACTIONS(2669), + [anon_sym_template] = ACTIONS(2669), + [anon_sym_operator] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2669), + [anon_sym_delete] = ACTIONS(2669), + [anon_sym_throw] = ACTIONS(2669), + [anon_sym_namespace] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2669), + [anon_sym_static_assert] = ACTIONS(2669), + [anon_sym_concept] = ACTIONS(2669), + [anon_sym_co_return] = ACTIONS(2669), + [anon_sym_co_yield] = ACTIONS(2669), + [anon_sym_R_DQUOTE] = ACTIONS(2671), + [anon_sym_LR_DQUOTE] = ACTIONS(2671), + [anon_sym_uR_DQUOTE] = ACTIONS(2671), + [anon_sym_UR_DQUOTE] = ACTIONS(2671), + [anon_sym_u8R_DQUOTE] = ACTIONS(2671), + [anon_sym_co_await] = ACTIONS(2669), + [anon_sym_new] = ACTIONS(2669), + [anon_sym_requires] = ACTIONS(2669), + [sym_this] = ACTIONS(2669), + [sym_nullptr] = ACTIONS(2669), + }, + [1013] = { + [sym_identifier] = ACTIONS(2665), + [aux_sym_preproc_include_token1] = ACTIONS(2665), + [aux_sym_preproc_def_token1] = ACTIONS(2665), + [aux_sym_preproc_if_token1] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), + [sym_preproc_directive] = ACTIONS(2665), + [anon_sym_LPAREN2] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2665), + [anon_sym_extern] = ACTIONS(2665), + [anon_sym___attribute__] = ACTIONS(2665), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), + [anon_sym___declspec] = ACTIONS(2665), + [anon_sym___based] = ACTIONS(2665), + [anon_sym___cdecl] = ACTIONS(2665), + [anon_sym___clrcall] = ACTIONS(2665), + [anon_sym___stdcall] = ACTIONS(2665), + [anon_sym___fastcall] = ACTIONS(2665), + [anon_sym___thiscall] = ACTIONS(2665), + [anon_sym___vectorcall] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_static] = ACTIONS(2665), + [anon_sym_register] = ACTIONS(2665), + [anon_sym_inline] = ACTIONS(2665), + [anon_sym_thread_local] = ACTIONS(2665), + [anon_sym_input] = ACTIONS(2665), + [anon_sym_const] = ACTIONS(2665), + [anon_sym_volatile] = ACTIONS(2665), + [anon_sym_restrict] = ACTIONS(2665), + [anon_sym__Atomic] = ACTIONS(2665), + [anon_sym_mutable] = ACTIONS(2665), + [anon_sym_constexpr] = ACTIONS(2665), + [anon_sym_constinit] = ACTIONS(2665), + [anon_sym_consteval] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2665), + [anon_sym_unsigned] = ACTIONS(2665), + [anon_sym_long] = ACTIONS(2665), + [anon_sym_short] = ACTIONS(2665), + [sym_primitive_type] = ACTIONS(2665), + [anon_sym_enum] = ACTIONS(2665), + [anon_sym_class] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(2665), + [anon_sym_union] = ACTIONS(2665), + [anon_sym_if] = ACTIONS(2665), + [anon_sym_switch] = ACTIONS(2665), + [anon_sym_case] = ACTIONS(2665), + [anon_sym_default] = ACTIONS(2665), + [anon_sym_while] = ACTIONS(2665), + [anon_sym_do] = ACTIONS(2665), + [anon_sym_for] = ACTIONS(2665), + [anon_sym_return] = ACTIONS(2665), + [anon_sym_break] = ACTIONS(2665), + [anon_sym_continue] = ACTIONS(2665), + [anon_sym_goto] = ACTIONS(2665), + [anon_sym_not] = ACTIONS(2665), + [anon_sym_compl] = ACTIONS(2665), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_sizeof] = ACTIONS(2665), + [sym_number_literal] = ACTIONS(2667), + [anon_sym_L_SQUOTE] = ACTIONS(2667), + [anon_sym_u_SQUOTE] = ACTIONS(2667), + [anon_sym_U_SQUOTE] = ACTIONS(2667), + [anon_sym_u8_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_L_DQUOTE] = ACTIONS(2667), + [anon_sym_u_DQUOTE] = ACTIONS(2667), + [anon_sym_U_DQUOTE] = ACTIONS(2667), + [anon_sym_u8_DQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym_true] = ACTIONS(2665), + [sym_false] = ACTIONS(2665), + [sym_null] = ACTIONS(2665), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2665), + [anon_sym_decltype] = ACTIONS(2665), + [anon_sym_virtual] = ACTIONS(2665), + [anon_sym_explicit] = ACTIONS(2665), + [anon_sym_typename] = ACTIONS(2665), + [anon_sym_template] = ACTIONS(2665), + [anon_sym_operator] = ACTIONS(2665), + [anon_sym_try] = ACTIONS(2665), + [anon_sym_delete] = ACTIONS(2665), + [anon_sym_throw] = ACTIONS(2665), + [anon_sym_namespace] = ACTIONS(2665), + [anon_sym_using] = ACTIONS(2665), + [anon_sym_static_assert] = ACTIONS(2665), + [anon_sym_concept] = ACTIONS(2665), + [anon_sym_co_return] = ACTIONS(2665), + [anon_sym_co_yield] = ACTIONS(2665), + [anon_sym_R_DQUOTE] = ACTIONS(2667), + [anon_sym_LR_DQUOTE] = ACTIONS(2667), + [anon_sym_uR_DQUOTE] = ACTIONS(2667), + [anon_sym_UR_DQUOTE] = ACTIONS(2667), + [anon_sym_u8R_DQUOTE] = ACTIONS(2667), + [anon_sym_co_await] = ACTIONS(2665), + [anon_sym_new] = ACTIONS(2665), + [anon_sym_requires] = ACTIONS(2665), + [sym_this] = ACTIONS(2665), + [sym_nullptr] = ACTIONS(2665), + }, + [1014] = { + [sym_identifier] = ACTIONS(2661), + [aux_sym_preproc_include_token1] = ACTIONS(2661), + [aux_sym_preproc_def_token1] = ACTIONS(2661), + [aux_sym_preproc_if_token1] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2661), + [sym_preproc_directive] = ACTIONS(2661), + [anon_sym_LPAREN2] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_AMP_AMP] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym___attribute__] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2663), + [anon_sym___declspec] = ACTIONS(2661), + [anon_sym___based] = ACTIONS(2661), + [anon_sym___cdecl] = ACTIONS(2661), + [anon_sym___clrcall] = ACTIONS(2661), + [anon_sym___stdcall] = ACTIONS(2661), + [anon_sym___fastcall] = ACTIONS(2661), + [anon_sym___thiscall] = ACTIONS(2661), + [anon_sym___vectorcall] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_register] = ACTIONS(2661), + [anon_sym_inline] = ACTIONS(2661), + [anon_sym_thread_local] = ACTIONS(2661), + [anon_sym_input] = ACTIONS(2661), + [anon_sym_const] = ACTIONS(2661), + [anon_sym_volatile] = ACTIONS(2661), + [anon_sym_restrict] = ACTIONS(2661), + [anon_sym__Atomic] = ACTIONS(2661), + [anon_sym_mutable] = ACTIONS(2661), + [anon_sym_constexpr] = ACTIONS(2661), + [anon_sym_constinit] = ACTIONS(2661), + [anon_sym_consteval] = ACTIONS(2661), + [anon_sym_signed] = ACTIONS(2661), + [anon_sym_unsigned] = ACTIONS(2661), + [anon_sym_long] = ACTIONS(2661), + [anon_sym_short] = ACTIONS(2661), + [sym_primitive_type] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_class] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(2661), + [anon_sym_union] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_switch] = ACTIONS(2661), + [anon_sym_case] = ACTIONS(2661), + [anon_sym_default] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2661), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_goto] = ACTIONS(2661), + [anon_sym_not] = ACTIONS(2661), + [anon_sym_compl] = ACTIONS(2661), + [anon_sym_DASH_DASH] = ACTIONS(2663), + [anon_sym_PLUS_PLUS] = ACTIONS(2663), + [anon_sym_sizeof] = ACTIONS(2661), + [sym_number_literal] = ACTIONS(2663), + [anon_sym_L_SQUOTE] = ACTIONS(2663), + [anon_sym_u_SQUOTE] = ACTIONS(2663), + [anon_sym_U_SQUOTE] = ACTIONS(2663), + [anon_sym_u8_SQUOTE] = ACTIONS(2663), + [anon_sym_SQUOTE] = ACTIONS(2663), + [anon_sym_L_DQUOTE] = ACTIONS(2663), + [anon_sym_u_DQUOTE] = ACTIONS(2663), + [anon_sym_U_DQUOTE] = ACTIONS(2663), + [anon_sym_u8_DQUOTE] = ACTIONS(2663), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym_true] = ACTIONS(2661), + [sym_false] = ACTIONS(2661), + [sym_null] = ACTIONS(2661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2661), + [anon_sym_decltype] = ACTIONS(2661), + [anon_sym_virtual] = ACTIONS(2661), + [anon_sym_explicit] = ACTIONS(2661), + [anon_sym_typename] = ACTIONS(2661), + [anon_sym_template] = ACTIONS(2661), + [anon_sym_operator] = ACTIONS(2661), + [anon_sym_try] = ACTIONS(2661), + [anon_sym_delete] = ACTIONS(2661), + [anon_sym_throw] = ACTIONS(2661), + [anon_sym_namespace] = ACTIONS(2661), + [anon_sym_using] = ACTIONS(2661), + [anon_sym_static_assert] = ACTIONS(2661), + [anon_sym_concept] = ACTIONS(2661), + [anon_sym_co_return] = ACTIONS(2661), + [anon_sym_co_yield] = ACTIONS(2661), + [anon_sym_R_DQUOTE] = ACTIONS(2663), + [anon_sym_LR_DQUOTE] = ACTIONS(2663), + [anon_sym_uR_DQUOTE] = ACTIONS(2663), + [anon_sym_UR_DQUOTE] = ACTIONS(2663), + [anon_sym_u8R_DQUOTE] = ACTIONS(2663), + [anon_sym_co_await] = ACTIONS(2661), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_requires] = ACTIONS(2661), + [sym_this] = ACTIONS(2661), + [sym_nullptr] = ACTIONS(2661), + }, + [1015] = { + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2665), + [aux_sym_preproc_include_token1] = ACTIONS(2665), + [aux_sym_preproc_def_token1] = ACTIONS(2665), + [aux_sym_preproc_if_token1] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), + [sym_preproc_directive] = ACTIONS(2665), + [anon_sym_LPAREN2] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2665), + [anon_sym_extern] = ACTIONS(2665), + [anon_sym___attribute__] = ACTIONS(2665), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), + [anon_sym___declspec] = ACTIONS(2665), + [anon_sym___based] = ACTIONS(2665), + [anon_sym___cdecl] = ACTIONS(2665), + [anon_sym___clrcall] = ACTIONS(2665), + [anon_sym___stdcall] = ACTIONS(2665), + [anon_sym___fastcall] = ACTIONS(2665), + [anon_sym___thiscall] = ACTIONS(2665), + [anon_sym___vectorcall] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_static] = ACTIONS(2665), + [anon_sym_register] = ACTIONS(2665), + [anon_sym_inline] = ACTIONS(2665), + [anon_sym_thread_local] = ACTIONS(2665), + [anon_sym_input] = ACTIONS(2665), + [anon_sym_const] = ACTIONS(2665), + [anon_sym_volatile] = ACTIONS(2665), + [anon_sym_restrict] = ACTIONS(2665), + [anon_sym__Atomic] = ACTIONS(2665), + [anon_sym_mutable] = ACTIONS(2665), + [anon_sym_constexpr] = ACTIONS(2665), + [anon_sym_constinit] = ACTIONS(2665), + [anon_sym_consteval] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2665), + [anon_sym_unsigned] = ACTIONS(2665), + [anon_sym_long] = ACTIONS(2665), + [anon_sym_short] = ACTIONS(2665), + [sym_primitive_type] = ACTIONS(2665), + [anon_sym_enum] = ACTIONS(2665), + [anon_sym_class] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(2665), + [anon_sym_union] = ACTIONS(2665), + [anon_sym_if] = ACTIONS(2665), + [anon_sym_switch] = ACTIONS(2665), + [anon_sym_case] = ACTIONS(2665), + [anon_sym_default] = ACTIONS(2665), + [anon_sym_while] = ACTIONS(2665), + [anon_sym_do] = ACTIONS(2665), + [anon_sym_for] = ACTIONS(2665), + [anon_sym_return] = ACTIONS(2665), + [anon_sym_break] = ACTIONS(2665), + [anon_sym_continue] = ACTIONS(2665), + [anon_sym_goto] = ACTIONS(2665), + [anon_sym_not] = ACTIONS(2665), + [anon_sym_compl] = ACTIONS(2665), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_sizeof] = ACTIONS(2665), + [sym_number_literal] = ACTIONS(2667), + [anon_sym_L_SQUOTE] = ACTIONS(2667), + [anon_sym_u_SQUOTE] = ACTIONS(2667), + [anon_sym_U_SQUOTE] = ACTIONS(2667), + [anon_sym_u8_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_L_DQUOTE] = ACTIONS(2667), + [anon_sym_u_DQUOTE] = ACTIONS(2667), + [anon_sym_U_DQUOTE] = ACTIONS(2667), + [anon_sym_u8_DQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym_true] = ACTIONS(2665), + [sym_false] = ACTIONS(2665), + [sym_null] = ACTIONS(2665), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2665), + [anon_sym_decltype] = ACTIONS(2665), + [anon_sym_virtual] = ACTIONS(2665), + [anon_sym_explicit] = ACTIONS(2665), + [anon_sym_typename] = ACTIONS(2665), + [anon_sym_template] = ACTIONS(2665), + [anon_sym_operator] = ACTIONS(2665), + [anon_sym_try] = ACTIONS(2665), + [anon_sym_delete] = ACTIONS(2665), + [anon_sym_throw] = ACTIONS(2665), + [anon_sym_namespace] = ACTIONS(2665), + [anon_sym_using] = ACTIONS(2665), + [anon_sym_static_assert] = ACTIONS(2665), + [anon_sym_concept] = ACTIONS(2665), + [anon_sym_co_return] = ACTIONS(2665), + [anon_sym_co_yield] = ACTIONS(2665), + [anon_sym_R_DQUOTE] = ACTIONS(2667), + [anon_sym_LR_DQUOTE] = ACTIONS(2667), + [anon_sym_uR_DQUOTE] = ACTIONS(2667), + [anon_sym_UR_DQUOTE] = ACTIONS(2667), + [anon_sym_u8R_DQUOTE] = ACTIONS(2667), + [anon_sym_co_await] = ACTIONS(2665), + [anon_sym_new] = ACTIONS(2665), + [anon_sym_requires] = ACTIONS(2665), + [sym_this] = ACTIONS(2665), + [sym_nullptr] = ACTIONS(2665), + }, + [1016] = { + [ts_builtin_sym_end] = ACTIONS(2801), + [sym_identifier] = ACTIONS(2799), + [aux_sym_preproc_include_token1] = ACTIONS(2799), + [aux_sym_preproc_def_token1] = ACTIONS(2799), + [aux_sym_preproc_if_token1] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2799), + [sym_preproc_directive] = ACTIONS(2799), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym_typedef] = ACTIONS(2799), + [anon_sym_extern] = ACTIONS(2799), + [anon_sym___attribute__] = ACTIONS(2799), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2799), + [anon_sym___based] = ACTIONS(2799), + [anon_sym___cdecl] = ACTIONS(2799), + [anon_sym___clrcall] = ACTIONS(2799), + [anon_sym___stdcall] = ACTIONS(2799), + [anon_sym___fastcall] = ACTIONS(2799), + [anon_sym___thiscall] = ACTIONS(2799), + [anon_sym___vectorcall] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_static] = ACTIONS(2799), + [anon_sym_register] = ACTIONS(2799), + [anon_sym_inline] = ACTIONS(2799), + [anon_sym_thread_local] = ACTIONS(2799), + [anon_sym_input] = ACTIONS(2799), + [anon_sym_const] = ACTIONS(2799), + [anon_sym_volatile] = ACTIONS(2799), + [anon_sym_restrict] = ACTIONS(2799), + [anon_sym__Atomic] = ACTIONS(2799), + [anon_sym_mutable] = ACTIONS(2799), + [anon_sym_constexpr] = ACTIONS(2799), + [anon_sym_constinit] = ACTIONS(2799), + [anon_sym_consteval] = ACTIONS(2799), + [anon_sym_signed] = ACTIONS(2799), + [anon_sym_unsigned] = ACTIONS(2799), + [anon_sym_long] = ACTIONS(2799), + [anon_sym_short] = ACTIONS(2799), + [sym_primitive_type] = ACTIONS(2799), + [anon_sym_enum] = ACTIONS(2799), + [anon_sym_class] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_union] = ACTIONS(2799), + [anon_sym_if] = ACTIONS(2799), + [anon_sym_switch] = ACTIONS(2799), + [anon_sym_case] = ACTIONS(2799), + [anon_sym_default] = ACTIONS(2799), + [anon_sym_while] = ACTIONS(2799), + [anon_sym_do] = ACTIONS(2799), + [anon_sym_for] = ACTIONS(2799), + [anon_sym_return] = ACTIONS(2799), + [anon_sym_break] = ACTIONS(2799), + [anon_sym_continue] = ACTIONS(2799), + [anon_sym_goto] = ACTIONS(2799), + [anon_sym_not] = ACTIONS(2799), + [anon_sym_compl] = ACTIONS(2799), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2799), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [sym_null] = ACTIONS(2799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2799), + [anon_sym_decltype] = ACTIONS(2799), + [anon_sym_virtual] = ACTIONS(2799), + [anon_sym_explicit] = ACTIONS(2799), + [anon_sym_typename] = ACTIONS(2799), + [anon_sym_template] = ACTIONS(2799), + [anon_sym_operator] = ACTIONS(2799), + [anon_sym_try] = ACTIONS(2799), + [anon_sym_delete] = ACTIONS(2799), + [anon_sym_throw] = ACTIONS(2799), + [anon_sym_namespace] = ACTIONS(2799), + [anon_sym_using] = ACTIONS(2799), + [anon_sym_static_assert] = ACTIONS(2799), + [anon_sym_concept] = ACTIONS(2799), + [anon_sym_co_return] = ACTIONS(2799), + [anon_sym_co_yield] = ACTIONS(2799), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2799), + [anon_sym_new] = ACTIONS(2799), + [anon_sym_requires] = ACTIONS(2799), + [sym_this] = ACTIONS(2799), + [sym_nullptr] = ACTIONS(2799), + }, + [1017] = { + [ts_builtin_sym_end] = ACTIONS(2663), + [sym_identifier] = ACTIONS(2661), + [aux_sym_preproc_include_token1] = ACTIONS(2661), + [aux_sym_preproc_def_token1] = ACTIONS(2661), + [aux_sym_preproc_if_token1] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2661), + [sym_preproc_directive] = ACTIONS(2661), + [anon_sym_LPAREN2] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_AMP_AMP] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym___attribute__] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2663), + [anon_sym___declspec] = ACTIONS(2661), + [anon_sym___based] = ACTIONS(2661), + [anon_sym___cdecl] = ACTIONS(2661), + [anon_sym___clrcall] = ACTIONS(2661), + [anon_sym___stdcall] = ACTIONS(2661), + [anon_sym___fastcall] = ACTIONS(2661), + [anon_sym___thiscall] = ACTIONS(2661), + [anon_sym___vectorcall] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_register] = ACTIONS(2661), + [anon_sym_inline] = ACTIONS(2661), + [anon_sym_thread_local] = ACTIONS(2661), + [anon_sym_input] = ACTIONS(2661), + [anon_sym_const] = ACTIONS(2661), + [anon_sym_volatile] = ACTIONS(2661), + [anon_sym_restrict] = ACTIONS(2661), + [anon_sym__Atomic] = ACTIONS(2661), + [anon_sym_mutable] = ACTIONS(2661), + [anon_sym_constexpr] = ACTIONS(2661), + [anon_sym_constinit] = ACTIONS(2661), + [anon_sym_consteval] = ACTIONS(2661), + [anon_sym_signed] = ACTIONS(2661), + [anon_sym_unsigned] = ACTIONS(2661), + [anon_sym_long] = ACTIONS(2661), + [anon_sym_short] = ACTIONS(2661), + [sym_primitive_type] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_class] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(2661), + [anon_sym_union] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_switch] = ACTIONS(2661), + [anon_sym_case] = ACTIONS(2661), + [anon_sym_default] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2661), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_goto] = ACTIONS(2661), + [anon_sym_not] = ACTIONS(2661), + [anon_sym_compl] = ACTIONS(2661), + [anon_sym_DASH_DASH] = ACTIONS(2663), + [anon_sym_PLUS_PLUS] = ACTIONS(2663), + [anon_sym_sizeof] = ACTIONS(2661), + [sym_number_literal] = ACTIONS(2663), + [anon_sym_L_SQUOTE] = ACTIONS(2663), + [anon_sym_u_SQUOTE] = ACTIONS(2663), + [anon_sym_U_SQUOTE] = ACTIONS(2663), + [anon_sym_u8_SQUOTE] = ACTIONS(2663), + [anon_sym_SQUOTE] = ACTIONS(2663), + [anon_sym_L_DQUOTE] = ACTIONS(2663), + [anon_sym_u_DQUOTE] = ACTIONS(2663), + [anon_sym_U_DQUOTE] = ACTIONS(2663), + [anon_sym_u8_DQUOTE] = ACTIONS(2663), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym_true] = ACTIONS(2661), + [sym_false] = ACTIONS(2661), + [sym_null] = ACTIONS(2661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2661), + [anon_sym_decltype] = ACTIONS(2661), + [anon_sym_virtual] = ACTIONS(2661), + [anon_sym_explicit] = ACTIONS(2661), + [anon_sym_typename] = ACTIONS(2661), + [anon_sym_template] = ACTIONS(2661), + [anon_sym_operator] = ACTIONS(2661), + [anon_sym_try] = ACTIONS(2661), + [anon_sym_delete] = ACTIONS(2661), + [anon_sym_throw] = ACTIONS(2661), + [anon_sym_namespace] = ACTIONS(2661), + [anon_sym_using] = ACTIONS(2661), + [anon_sym_static_assert] = ACTIONS(2661), + [anon_sym_concept] = ACTIONS(2661), + [anon_sym_co_return] = ACTIONS(2661), + [anon_sym_co_yield] = ACTIONS(2661), + [anon_sym_R_DQUOTE] = ACTIONS(2663), + [anon_sym_LR_DQUOTE] = ACTIONS(2663), + [anon_sym_uR_DQUOTE] = ACTIONS(2663), + [anon_sym_UR_DQUOTE] = ACTIONS(2663), + [anon_sym_u8R_DQUOTE] = ACTIONS(2663), + [anon_sym_co_await] = ACTIONS(2661), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_requires] = ACTIONS(2661), + [sym_this] = ACTIONS(2661), + [sym_nullptr] = ACTIONS(2661), + }, + [1018] = { + [ts_builtin_sym_end] = ACTIONS(2659), + [sym_identifier] = ACTIONS(2657), + [aux_sym_preproc_include_token1] = ACTIONS(2657), + [aux_sym_preproc_def_token1] = ACTIONS(2657), + [aux_sym_preproc_if_token1] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2657), + [sym_preproc_directive] = ACTIONS(2657), + [anon_sym_LPAREN2] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2659), + [anon_sym_typedef] = ACTIONS(2657), + [anon_sym_extern] = ACTIONS(2657), + [anon_sym___attribute__] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2659), + [anon_sym___declspec] = ACTIONS(2657), + [anon_sym___based] = ACTIONS(2657), + [anon_sym___cdecl] = ACTIONS(2657), + [anon_sym___clrcall] = ACTIONS(2657), + [anon_sym___stdcall] = ACTIONS(2657), + [anon_sym___fastcall] = ACTIONS(2657), + [anon_sym___thiscall] = ACTIONS(2657), + [anon_sym___vectorcall] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_register] = ACTIONS(2657), + [anon_sym_inline] = ACTIONS(2657), + [anon_sym_thread_local] = ACTIONS(2657), + [anon_sym_input] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_volatile] = ACTIONS(2657), + [anon_sym_restrict] = ACTIONS(2657), + [anon_sym__Atomic] = ACTIONS(2657), + [anon_sym_mutable] = ACTIONS(2657), + [anon_sym_constexpr] = ACTIONS(2657), + [anon_sym_constinit] = ACTIONS(2657), + [anon_sym_consteval] = ACTIONS(2657), + [anon_sym_signed] = ACTIONS(2657), + [anon_sym_unsigned] = ACTIONS(2657), + [anon_sym_long] = ACTIONS(2657), + [anon_sym_short] = ACTIONS(2657), + [sym_primitive_type] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_class] = ACTIONS(2657), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_switch] = ACTIONS(2657), + [anon_sym_case] = ACTIONS(2657), + [anon_sym_default] = ACTIONS(2657), + [anon_sym_while] = ACTIONS(2657), + [anon_sym_do] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_goto] = ACTIONS(2657), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_compl] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_sizeof] = ACTIONS(2657), + [sym_number_literal] = ACTIONS(2659), + [anon_sym_L_SQUOTE] = ACTIONS(2659), + [anon_sym_u_SQUOTE] = ACTIONS(2659), + [anon_sym_U_SQUOTE] = ACTIONS(2659), + [anon_sym_u8_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_L_DQUOTE] = ACTIONS(2659), + [anon_sym_u_DQUOTE] = ACTIONS(2659), + [anon_sym_U_DQUOTE] = ACTIONS(2659), + [anon_sym_u8_DQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [sym_true] = ACTIONS(2657), + [sym_false] = ACTIONS(2657), + [sym_null] = ACTIONS(2657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2657), + [anon_sym_decltype] = ACTIONS(2657), + [anon_sym_virtual] = ACTIONS(2657), + [anon_sym_explicit] = ACTIONS(2657), + [anon_sym_typename] = ACTIONS(2657), + [anon_sym_template] = ACTIONS(2657), + [anon_sym_operator] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2657), + [anon_sym_delete] = ACTIONS(2657), + [anon_sym_throw] = ACTIONS(2657), + [anon_sym_namespace] = ACTIONS(2657), + [anon_sym_using] = ACTIONS(2657), + [anon_sym_static_assert] = ACTIONS(2657), + [anon_sym_concept] = ACTIONS(2657), + [anon_sym_co_return] = ACTIONS(2657), + [anon_sym_co_yield] = ACTIONS(2657), + [anon_sym_R_DQUOTE] = ACTIONS(2659), + [anon_sym_LR_DQUOTE] = ACTIONS(2659), + [anon_sym_uR_DQUOTE] = ACTIONS(2659), + [anon_sym_UR_DQUOTE] = ACTIONS(2659), + [anon_sym_u8R_DQUOTE] = ACTIONS(2659), + [anon_sym_co_await] = ACTIONS(2657), + [anon_sym_new] = ACTIONS(2657), + [anon_sym_requires] = ACTIONS(2657), + [sym_this] = ACTIONS(2657), + [sym_nullptr] = ACTIONS(2657), + }, + [1019] = { + [sym_identifier] = ACTIONS(2657), + [aux_sym_preproc_include_token1] = ACTIONS(2657), + [aux_sym_preproc_def_token1] = ACTIONS(2657), + [aux_sym_preproc_if_token1] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2657), + [sym_preproc_directive] = ACTIONS(2657), + [anon_sym_LPAREN2] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2659), + [anon_sym_typedef] = ACTIONS(2657), + [anon_sym_extern] = ACTIONS(2657), + [anon_sym___attribute__] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2659), + [anon_sym___declspec] = ACTIONS(2657), + [anon_sym___based] = ACTIONS(2657), + [anon_sym___cdecl] = ACTIONS(2657), + [anon_sym___clrcall] = ACTIONS(2657), + [anon_sym___stdcall] = ACTIONS(2657), + [anon_sym___fastcall] = ACTIONS(2657), + [anon_sym___thiscall] = ACTIONS(2657), + [anon_sym___vectorcall] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_RBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_register] = ACTIONS(2657), + [anon_sym_inline] = ACTIONS(2657), + [anon_sym_thread_local] = ACTIONS(2657), + [anon_sym_input] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_volatile] = ACTIONS(2657), + [anon_sym_restrict] = ACTIONS(2657), + [anon_sym__Atomic] = ACTIONS(2657), + [anon_sym_mutable] = ACTIONS(2657), + [anon_sym_constexpr] = ACTIONS(2657), + [anon_sym_constinit] = ACTIONS(2657), + [anon_sym_consteval] = ACTIONS(2657), + [anon_sym_signed] = ACTIONS(2657), + [anon_sym_unsigned] = ACTIONS(2657), + [anon_sym_long] = ACTIONS(2657), + [anon_sym_short] = ACTIONS(2657), + [sym_primitive_type] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_class] = ACTIONS(2657), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_switch] = ACTIONS(2657), + [anon_sym_case] = ACTIONS(2657), + [anon_sym_default] = ACTIONS(2657), + [anon_sym_while] = ACTIONS(2657), + [anon_sym_do] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_goto] = ACTIONS(2657), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_compl] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_sizeof] = ACTIONS(2657), + [sym_number_literal] = ACTIONS(2659), + [anon_sym_L_SQUOTE] = ACTIONS(2659), + [anon_sym_u_SQUOTE] = ACTIONS(2659), + [anon_sym_U_SQUOTE] = ACTIONS(2659), + [anon_sym_u8_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_L_DQUOTE] = ACTIONS(2659), + [anon_sym_u_DQUOTE] = ACTIONS(2659), + [anon_sym_U_DQUOTE] = ACTIONS(2659), + [anon_sym_u8_DQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [sym_true] = ACTIONS(2657), + [sym_false] = ACTIONS(2657), + [sym_null] = ACTIONS(2657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2657), + [anon_sym_decltype] = ACTIONS(2657), + [anon_sym_virtual] = ACTIONS(2657), + [anon_sym_explicit] = ACTIONS(2657), + [anon_sym_typename] = ACTIONS(2657), + [anon_sym_template] = ACTIONS(2657), + [anon_sym_operator] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2657), + [anon_sym_delete] = ACTIONS(2657), + [anon_sym_throw] = ACTIONS(2657), + [anon_sym_namespace] = ACTIONS(2657), + [anon_sym_using] = ACTIONS(2657), + [anon_sym_static_assert] = ACTIONS(2657), + [anon_sym_concept] = ACTIONS(2657), + [anon_sym_co_return] = ACTIONS(2657), + [anon_sym_co_yield] = ACTIONS(2657), + [anon_sym_R_DQUOTE] = ACTIONS(2659), + [anon_sym_LR_DQUOTE] = ACTIONS(2659), + [anon_sym_uR_DQUOTE] = ACTIONS(2659), + [anon_sym_UR_DQUOTE] = ACTIONS(2659), + [anon_sym_u8R_DQUOTE] = ACTIONS(2659), + [anon_sym_co_await] = ACTIONS(2657), + [anon_sym_new] = ACTIONS(2657), + [anon_sym_requires] = ACTIONS(2657), + [sym_this] = ACTIONS(2657), + [sym_nullptr] = ACTIONS(2657), + }, + [1020] = { + [sym_identifier] = ACTIONS(2653), + [aux_sym_preproc_include_token1] = ACTIONS(2653), + [aux_sym_preproc_def_token1] = ACTIONS(2653), + [aux_sym_preproc_if_token1] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2653), + [sym_preproc_directive] = ACTIONS(2653), + [anon_sym_LPAREN2] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_TILDE] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_AMP_AMP] = ACTIONS(2655), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_typedef] = ACTIONS(2653), + [anon_sym_extern] = ACTIONS(2653), + [anon_sym___attribute__] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2655), + [anon_sym___declspec] = ACTIONS(2653), + [anon_sym___based] = ACTIONS(2653), + [anon_sym___cdecl] = ACTIONS(2653), + [anon_sym___clrcall] = ACTIONS(2653), + [anon_sym___stdcall] = ACTIONS(2653), + [anon_sym___fastcall] = ACTIONS(2653), + [anon_sym___thiscall] = ACTIONS(2653), + [anon_sym___vectorcall] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_RBRACE] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_static] = ACTIONS(2653), + [anon_sym_register] = ACTIONS(2653), + [anon_sym_inline] = ACTIONS(2653), + [anon_sym_thread_local] = ACTIONS(2653), + [anon_sym_input] = ACTIONS(2653), + [anon_sym_const] = ACTIONS(2653), + [anon_sym_volatile] = ACTIONS(2653), + [anon_sym_restrict] = ACTIONS(2653), + [anon_sym__Atomic] = ACTIONS(2653), + [anon_sym_mutable] = ACTIONS(2653), + [anon_sym_constexpr] = ACTIONS(2653), + [anon_sym_constinit] = ACTIONS(2653), + [anon_sym_consteval] = ACTIONS(2653), + [anon_sym_signed] = ACTIONS(2653), + [anon_sym_unsigned] = ACTIONS(2653), + [anon_sym_long] = ACTIONS(2653), + [anon_sym_short] = ACTIONS(2653), + [sym_primitive_type] = ACTIONS(2653), + [anon_sym_enum] = ACTIONS(2653), + [anon_sym_class] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_switch] = ACTIONS(2653), + [anon_sym_case] = ACTIONS(2653), + [anon_sym_default] = ACTIONS(2653), + [anon_sym_while] = ACTIONS(2653), + [anon_sym_do] = ACTIONS(2653), + [anon_sym_for] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_break] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2653), + [anon_sym_goto] = ACTIONS(2653), + [anon_sym_not] = ACTIONS(2653), + [anon_sym_compl] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_PLUS_PLUS] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2653), + [sym_number_literal] = ACTIONS(2655), + [anon_sym_L_SQUOTE] = ACTIONS(2655), + [anon_sym_u_SQUOTE] = ACTIONS(2655), + [anon_sym_U_SQUOTE] = ACTIONS(2655), + [anon_sym_u8_SQUOTE] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_L_DQUOTE] = ACTIONS(2655), + [anon_sym_u_DQUOTE] = ACTIONS(2655), + [anon_sym_U_DQUOTE] = ACTIONS(2655), + [anon_sym_u8_DQUOTE] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym_true] = ACTIONS(2653), + [sym_false] = ACTIONS(2653), + [sym_null] = ACTIONS(2653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2653), + [anon_sym_decltype] = ACTIONS(2653), + [anon_sym_virtual] = ACTIONS(2653), + [anon_sym_explicit] = ACTIONS(2653), + [anon_sym_typename] = ACTIONS(2653), + [anon_sym_template] = ACTIONS(2653), + [anon_sym_operator] = ACTIONS(2653), + [anon_sym_try] = ACTIONS(2653), + [anon_sym_delete] = ACTIONS(2653), + [anon_sym_throw] = ACTIONS(2653), + [anon_sym_namespace] = ACTIONS(2653), + [anon_sym_using] = ACTIONS(2653), + [anon_sym_static_assert] = ACTIONS(2653), + [anon_sym_concept] = ACTIONS(2653), + [anon_sym_co_return] = ACTIONS(2653), + [anon_sym_co_yield] = ACTIONS(2653), + [anon_sym_R_DQUOTE] = ACTIONS(2655), + [anon_sym_LR_DQUOTE] = ACTIONS(2655), + [anon_sym_uR_DQUOTE] = ACTIONS(2655), + [anon_sym_UR_DQUOTE] = ACTIONS(2655), + [anon_sym_u8R_DQUOTE] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2653), + [anon_sym_new] = ACTIONS(2653), + [anon_sym_requires] = ACTIONS(2653), + [sym_this] = ACTIONS(2653), + [sym_nullptr] = ACTIONS(2653), + }, + [1021] = { + [ts_builtin_sym_end] = ACTIONS(2655), + [sym_identifier] = ACTIONS(2653), + [aux_sym_preproc_include_token1] = ACTIONS(2653), + [aux_sym_preproc_def_token1] = ACTIONS(2653), + [aux_sym_preproc_if_token1] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2653), + [sym_preproc_directive] = ACTIONS(2653), + [anon_sym_LPAREN2] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_TILDE] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_AMP_AMP] = ACTIONS(2655), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_typedef] = ACTIONS(2653), + [anon_sym_extern] = ACTIONS(2653), + [anon_sym___attribute__] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2655), + [anon_sym___declspec] = ACTIONS(2653), + [anon_sym___based] = ACTIONS(2653), + [anon_sym___cdecl] = ACTIONS(2653), + [anon_sym___clrcall] = ACTIONS(2653), + [anon_sym___stdcall] = ACTIONS(2653), + [anon_sym___fastcall] = ACTIONS(2653), + [anon_sym___thiscall] = ACTIONS(2653), + [anon_sym___vectorcall] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_static] = ACTIONS(2653), + [anon_sym_register] = ACTIONS(2653), + [anon_sym_inline] = ACTIONS(2653), + [anon_sym_thread_local] = ACTIONS(2653), + [anon_sym_input] = ACTIONS(2653), + [anon_sym_const] = ACTIONS(2653), + [anon_sym_volatile] = ACTIONS(2653), + [anon_sym_restrict] = ACTIONS(2653), + [anon_sym__Atomic] = ACTIONS(2653), + [anon_sym_mutable] = ACTIONS(2653), + [anon_sym_constexpr] = ACTIONS(2653), + [anon_sym_constinit] = ACTIONS(2653), + [anon_sym_consteval] = ACTIONS(2653), + [anon_sym_signed] = ACTIONS(2653), + [anon_sym_unsigned] = ACTIONS(2653), + [anon_sym_long] = ACTIONS(2653), + [anon_sym_short] = ACTIONS(2653), + [sym_primitive_type] = ACTIONS(2653), + [anon_sym_enum] = ACTIONS(2653), + [anon_sym_class] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_switch] = ACTIONS(2653), + [anon_sym_case] = ACTIONS(2653), + [anon_sym_default] = ACTIONS(2653), + [anon_sym_while] = ACTIONS(2653), + [anon_sym_do] = ACTIONS(2653), + [anon_sym_for] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_break] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2653), + [anon_sym_goto] = ACTIONS(2653), + [anon_sym_not] = ACTIONS(2653), + [anon_sym_compl] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_PLUS_PLUS] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2653), + [sym_number_literal] = ACTIONS(2655), + [anon_sym_L_SQUOTE] = ACTIONS(2655), + [anon_sym_u_SQUOTE] = ACTIONS(2655), + [anon_sym_U_SQUOTE] = ACTIONS(2655), + [anon_sym_u8_SQUOTE] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_L_DQUOTE] = ACTIONS(2655), + [anon_sym_u_DQUOTE] = ACTIONS(2655), + [anon_sym_U_DQUOTE] = ACTIONS(2655), + [anon_sym_u8_DQUOTE] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym_true] = ACTIONS(2653), + [sym_false] = ACTIONS(2653), + [sym_null] = ACTIONS(2653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2653), + [anon_sym_decltype] = ACTIONS(2653), + [anon_sym_virtual] = ACTIONS(2653), + [anon_sym_explicit] = ACTIONS(2653), + [anon_sym_typename] = ACTIONS(2653), + [anon_sym_template] = ACTIONS(2653), + [anon_sym_operator] = ACTIONS(2653), + [anon_sym_try] = ACTIONS(2653), + [anon_sym_delete] = ACTIONS(2653), + [anon_sym_throw] = ACTIONS(2653), + [anon_sym_namespace] = ACTIONS(2653), + [anon_sym_using] = ACTIONS(2653), + [anon_sym_static_assert] = ACTIONS(2653), + [anon_sym_concept] = ACTIONS(2653), + [anon_sym_co_return] = ACTIONS(2653), + [anon_sym_co_yield] = ACTIONS(2653), + [anon_sym_R_DQUOTE] = ACTIONS(2655), + [anon_sym_LR_DQUOTE] = ACTIONS(2655), + [anon_sym_uR_DQUOTE] = ACTIONS(2655), + [anon_sym_UR_DQUOTE] = ACTIONS(2655), + [anon_sym_u8R_DQUOTE] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2653), + [anon_sym_new] = ACTIONS(2653), + [anon_sym_requires] = ACTIONS(2653), + [sym_this] = ACTIONS(2653), + [sym_nullptr] = ACTIONS(2653), + }, + [1022] = { + [ts_builtin_sym_end] = ACTIONS(2805), + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2805), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym_input] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2805), + [anon_sym_sizeof] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2805), + [anon_sym_L_SQUOTE] = ACTIONS(2805), + [anon_sym_u_SQUOTE] = ACTIONS(2805), + [anon_sym_U_SQUOTE] = ACTIONS(2805), + [anon_sym_u8_SQUOTE] = ACTIONS(2805), + [anon_sym_SQUOTE] = ACTIONS(2805), + [anon_sym_L_DQUOTE] = ACTIONS(2805), + [anon_sym_u_DQUOTE] = ACTIONS(2805), + [anon_sym_U_DQUOTE] = ACTIONS(2805), + [anon_sym_u8_DQUOTE] = ACTIONS(2805), + [anon_sym_DQUOTE] = ACTIONS(2805), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [sym_null] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2805), + [anon_sym_LR_DQUOTE] = ACTIONS(2805), + [anon_sym_uR_DQUOTE] = ACTIONS(2805), + [anon_sym_UR_DQUOTE] = ACTIONS(2805), + [anon_sym_u8R_DQUOTE] = ACTIONS(2805), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [sym_this] = ACTIONS(2803), + [sym_nullptr] = ACTIONS(2803), + }, + [1023] = { + [ts_builtin_sym_end] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2713), + [aux_sym_preproc_include_token1] = ACTIONS(2713), + [aux_sym_preproc_def_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), + [sym_preproc_directive] = ACTIONS(2713), + [anon_sym_LPAREN2] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym___attribute__] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), + [anon_sym___declspec] = ACTIONS(2713), + [anon_sym___based] = ACTIONS(2713), + [anon_sym___cdecl] = ACTIONS(2713), + [anon_sym___clrcall] = ACTIONS(2713), + [anon_sym___stdcall] = ACTIONS(2713), + [anon_sym___fastcall] = ACTIONS(2713), + [anon_sym___thiscall] = ACTIONS(2713), + [anon_sym___vectorcall] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_register] = ACTIONS(2713), + [anon_sym_inline] = ACTIONS(2713), + [anon_sym_thread_local] = ACTIONS(2713), + [anon_sym_input] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_volatile] = ACTIONS(2713), + [anon_sym_restrict] = ACTIONS(2713), + [anon_sym__Atomic] = ACTIONS(2713), + [anon_sym_mutable] = ACTIONS(2713), + [anon_sym_constexpr] = ACTIONS(2713), + [anon_sym_constinit] = ACTIONS(2713), + [anon_sym_consteval] = ACTIONS(2713), + [anon_sym_signed] = ACTIONS(2713), + [anon_sym_unsigned] = ACTIONS(2713), + [anon_sym_long] = ACTIONS(2713), + [anon_sym_short] = ACTIONS(2713), + [sym_primitive_type] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_case] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_goto] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2713), + [anon_sym_compl] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_sizeof] = ACTIONS(2713), + [sym_number_literal] = ACTIONS(2715), + [anon_sym_L_SQUOTE] = ACTIONS(2715), + [anon_sym_u_SQUOTE] = ACTIONS(2715), + [anon_sym_U_SQUOTE] = ACTIONS(2715), + [anon_sym_u8_SQUOTE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_L_DQUOTE] = ACTIONS(2715), + [anon_sym_u_DQUOTE] = ACTIONS(2715), + [anon_sym_U_DQUOTE] = ACTIONS(2715), + [anon_sym_u8_DQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [sym_true] = ACTIONS(2713), + [sym_false] = ACTIONS(2713), + [sym_null] = ACTIONS(2713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2713), + [anon_sym_decltype] = ACTIONS(2713), + [anon_sym_virtual] = ACTIONS(2713), + [anon_sym_explicit] = ACTIONS(2713), + [anon_sym_typename] = ACTIONS(2713), + [anon_sym_template] = ACTIONS(2713), + [anon_sym_operator] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_namespace] = ACTIONS(2713), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_static_assert] = ACTIONS(2713), + [anon_sym_concept] = ACTIONS(2713), + [anon_sym_co_return] = ACTIONS(2713), + [anon_sym_co_yield] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2715), + [anon_sym_LR_DQUOTE] = ACTIONS(2715), + [anon_sym_uR_DQUOTE] = ACTIONS(2715), + [anon_sym_UR_DQUOTE] = ACTIONS(2715), + [anon_sym_u8R_DQUOTE] = ACTIONS(2715), + [anon_sym_co_await] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2713), + [sym_nullptr] = ACTIONS(2713), + }, + [1024] = { + [ts_builtin_sym_end] = ACTIONS(2773), + [sym_identifier] = ACTIONS(2771), + [aux_sym_preproc_include_token1] = ACTIONS(2771), + [aux_sym_preproc_def_token1] = ACTIONS(2771), + [aux_sym_preproc_if_token1] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2771), + [sym_preproc_directive] = ACTIONS(2771), + [anon_sym_LPAREN2] = ACTIONS(2773), + [anon_sym_BANG] = ACTIONS(2773), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym_typedef] = ACTIONS(2771), + [anon_sym_extern] = ACTIONS(2771), + [anon_sym___attribute__] = ACTIONS(2771), + [anon_sym_COLON_COLON] = ACTIONS(2773), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2773), + [anon_sym___declspec] = ACTIONS(2771), + [anon_sym___based] = ACTIONS(2771), + [anon_sym___cdecl] = ACTIONS(2771), + [anon_sym___clrcall] = ACTIONS(2771), + [anon_sym___stdcall] = ACTIONS(2771), + [anon_sym___fastcall] = ACTIONS(2771), + [anon_sym___thiscall] = ACTIONS(2771), + [anon_sym___vectorcall] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_static] = ACTIONS(2771), + [anon_sym_register] = ACTIONS(2771), + [anon_sym_inline] = ACTIONS(2771), + [anon_sym_thread_local] = ACTIONS(2771), + [anon_sym_input] = ACTIONS(2771), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_volatile] = ACTIONS(2771), + [anon_sym_restrict] = ACTIONS(2771), + [anon_sym__Atomic] = ACTIONS(2771), + [anon_sym_mutable] = ACTIONS(2771), + [anon_sym_constexpr] = ACTIONS(2771), + [anon_sym_constinit] = ACTIONS(2771), + [anon_sym_consteval] = ACTIONS(2771), + [anon_sym_signed] = ACTIONS(2771), + [anon_sym_unsigned] = ACTIONS(2771), + [anon_sym_long] = ACTIONS(2771), + [anon_sym_short] = ACTIONS(2771), + [sym_primitive_type] = ACTIONS(2771), + [anon_sym_enum] = ACTIONS(2771), + [anon_sym_class] = ACTIONS(2771), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(2771), + [anon_sym_switch] = ACTIONS(2771), + [anon_sym_case] = ACTIONS(2771), + [anon_sym_default] = ACTIONS(2771), + [anon_sym_while] = ACTIONS(2771), + [anon_sym_do] = ACTIONS(2771), + [anon_sym_for] = ACTIONS(2771), + [anon_sym_return] = ACTIONS(2771), + [anon_sym_break] = ACTIONS(2771), + [anon_sym_continue] = ACTIONS(2771), + [anon_sym_goto] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2771), + [anon_sym_compl] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(2773), + [anon_sym_sizeof] = ACTIONS(2771), + [sym_number_literal] = ACTIONS(2773), + [anon_sym_L_SQUOTE] = ACTIONS(2773), + [anon_sym_u_SQUOTE] = ACTIONS(2773), + [anon_sym_U_SQUOTE] = ACTIONS(2773), + [anon_sym_u8_SQUOTE] = ACTIONS(2773), + [anon_sym_SQUOTE] = ACTIONS(2773), + [anon_sym_L_DQUOTE] = ACTIONS(2773), + [anon_sym_u_DQUOTE] = ACTIONS(2773), + [anon_sym_U_DQUOTE] = ACTIONS(2773), + [anon_sym_u8_DQUOTE] = ACTIONS(2773), + [anon_sym_DQUOTE] = ACTIONS(2773), + [sym_true] = ACTIONS(2771), + [sym_false] = ACTIONS(2771), + [sym_null] = ACTIONS(2771), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2771), + [anon_sym_decltype] = ACTIONS(2771), + [anon_sym_virtual] = ACTIONS(2771), + [anon_sym_explicit] = ACTIONS(2771), + [anon_sym_typename] = ACTIONS(2771), + [anon_sym_template] = ACTIONS(2771), + [anon_sym_operator] = ACTIONS(2771), + [anon_sym_try] = ACTIONS(2771), + [anon_sym_delete] = ACTIONS(2771), + [anon_sym_throw] = ACTIONS(2771), + [anon_sym_namespace] = ACTIONS(2771), + [anon_sym_using] = ACTIONS(2771), + [anon_sym_static_assert] = ACTIONS(2771), + [anon_sym_concept] = ACTIONS(2771), + [anon_sym_co_return] = ACTIONS(2771), + [anon_sym_co_yield] = ACTIONS(2771), + [anon_sym_R_DQUOTE] = ACTIONS(2773), + [anon_sym_LR_DQUOTE] = ACTIONS(2773), + [anon_sym_uR_DQUOTE] = ACTIONS(2773), + [anon_sym_UR_DQUOTE] = ACTIONS(2773), + [anon_sym_u8R_DQUOTE] = ACTIONS(2773), + [anon_sym_co_await] = ACTIONS(2771), + [anon_sym_new] = ACTIONS(2771), + [anon_sym_requires] = ACTIONS(2771), + [sym_this] = ACTIONS(2771), + [sym_nullptr] = ACTIONS(2771), + }, + [1025] = { + [ts_builtin_sym_end] = ACTIONS(2817), + [sym_identifier] = ACTIONS(2815), + [aux_sym_preproc_include_token1] = ACTIONS(2815), + [aux_sym_preproc_def_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), + [sym_preproc_directive] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym_typedef] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym___attribute__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), + [anon_sym___declspec] = ACTIONS(2815), + [anon_sym___based] = ACTIONS(2815), + [anon_sym___cdecl] = ACTIONS(2815), + [anon_sym___clrcall] = ACTIONS(2815), + [anon_sym___stdcall] = ACTIONS(2815), + [anon_sym___fastcall] = ACTIONS(2815), + [anon_sym___thiscall] = ACTIONS(2815), + [anon_sym___vectorcall] = ACTIONS(2815), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_register] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym_thread_local] = ACTIONS(2815), + [anon_sym_input] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_volatile] = ACTIONS(2815), + [anon_sym_restrict] = ACTIONS(2815), + [anon_sym__Atomic] = ACTIONS(2815), + [anon_sym_mutable] = ACTIONS(2815), + [anon_sym_constexpr] = ACTIONS(2815), + [anon_sym_constinit] = ACTIONS(2815), + [anon_sym_consteval] = ACTIONS(2815), + [anon_sym_signed] = ACTIONS(2815), + [anon_sym_unsigned] = ACTIONS(2815), + [anon_sym_long] = ACTIONS(2815), + [anon_sym_short] = ACTIONS(2815), + [sym_primitive_type] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_switch] = ACTIONS(2815), + [anon_sym_case] = ACTIONS(2815), + [anon_sym_default] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_goto] = ACTIONS(2815), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_compl] = ACTIONS(2815), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_sizeof] = ACTIONS(2815), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2817), + [anon_sym_u_SQUOTE] = ACTIONS(2817), + [anon_sym_U_SQUOTE] = ACTIONS(2817), + [anon_sym_u8_SQUOTE] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [anon_sym_L_DQUOTE] = ACTIONS(2817), + [anon_sym_u_DQUOTE] = ACTIONS(2817), + [anon_sym_U_DQUOTE] = ACTIONS(2817), + [anon_sym_u8_DQUOTE] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_null] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_virtual] = ACTIONS(2815), + [anon_sym_explicit] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_template] = ACTIONS(2815), + [anon_sym_operator] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [anon_sym_delete] = ACTIONS(2815), + [anon_sym_throw] = ACTIONS(2815), + [anon_sym_namespace] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_static_assert] = ACTIONS(2815), + [anon_sym_concept] = ACTIONS(2815), + [anon_sym_co_return] = ACTIONS(2815), + [anon_sym_co_yield] = ACTIONS(2815), + [anon_sym_R_DQUOTE] = ACTIONS(2817), + [anon_sym_LR_DQUOTE] = ACTIONS(2817), + [anon_sym_uR_DQUOTE] = ACTIONS(2817), + [anon_sym_UR_DQUOTE] = ACTIONS(2817), + [anon_sym_u8R_DQUOTE] = ACTIONS(2817), + [anon_sym_co_await] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(2815), + [anon_sym_requires] = ACTIONS(2815), + [sym_this] = ACTIONS(2815), + [sym_nullptr] = ACTIONS(2815), + }, + [1026] = { + [sym_identifier] = ACTIONS(2763), + [aux_sym_preproc_include_token1] = ACTIONS(2763), + [aux_sym_preproc_def_token1] = ACTIONS(2763), + [aux_sym_preproc_if_token1] = ACTIONS(2763), + [aux_sym_preproc_if_token2] = ACTIONS(2763), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2763), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2763), + [sym_preproc_directive] = ACTIONS(2763), + [anon_sym_LPAREN2] = ACTIONS(2765), + [anon_sym_BANG] = ACTIONS(2765), + [anon_sym_TILDE] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_PLUS] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_AMP_AMP] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_SEMI] = ACTIONS(2765), + [anon_sym_typedef] = ACTIONS(2763), + [anon_sym_extern] = ACTIONS(2763), + [anon_sym___attribute__] = ACTIONS(2763), + [anon_sym_COLON_COLON] = ACTIONS(2765), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2765), + [anon_sym___declspec] = ACTIONS(2763), + [anon_sym___based] = ACTIONS(2763), + [anon_sym___cdecl] = ACTIONS(2763), + [anon_sym___clrcall] = ACTIONS(2763), + [anon_sym___stdcall] = ACTIONS(2763), + [anon_sym___fastcall] = ACTIONS(2763), + [anon_sym___thiscall] = ACTIONS(2763), + [anon_sym___vectorcall] = ACTIONS(2763), + [anon_sym_LBRACE] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_static] = ACTIONS(2763), + [anon_sym_register] = ACTIONS(2763), + [anon_sym_inline] = ACTIONS(2763), + [anon_sym_thread_local] = ACTIONS(2763), + [anon_sym_input] = ACTIONS(2763), + [anon_sym_const] = ACTIONS(2763), + [anon_sym_volatile] = ACTIONS(2763), + [anon_sym_restrict] = ACTIONS(2763), + [anon_sym__Atomic] = ACTIONS(2763), + [anon_sym_mutable] = ACTIONS(2763), + [anon_sym_constexpr] = ACTIONS(2763), + [anon_sym_constinit] = ACTIONS(2763), + [anon_sym_consteval] = ACTIONS(2763), + [anon_sym_signed] = ACTIONS(2763), + [anon_sym_unsigned] = ACTIONS(2763), + [anon_sym_long] = ACTIONS(2763), + [anon_sym_short] = ACTIONS(2763), + [sym_primitive_type] = ACTIONS(2763), + [anon_sym_enum] = ACTIONS(2763), + [anon_sym_class] = ACTIONS(2763), + [anon_sym_struct] = ACTIONS(2763), + [anon_sym_union] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_switch] = ACTIONS(2763), + [anon_sym_case] = ACTIONS(2763), + [anon_sym_default] = ACTIONS(2763), + [anon_sym_while] = ACTIONS(2763), + [anon_sym_do] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2763), + [anon_sym_return] = ACTIONS(2763), + [anon_sym_break] = ACTIONS(2763), + [anon_sym_continue] = ACTIONS(2763), + [anon_sym_goto] = ACTIONS(2763), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_compl] = ACTIONS(2763), + [anon_sym_DASH_DASH] = ACTIONS(2765), + [anon_sym_PLUS_PLUS] = ACTIONS(2765), + [anon_sym_sizeof] = ACTIONS(2763), + [sym_number_literal] = ACTIONS(2765), + [anon_sym_L_SQUOTE] = ACTIONS(2765), + [anon_sym_u_SQUOTE] = ACTIONS(2765), + [anon_sym_U_SQUOTE] = ACTIONS(2765), + [anon_sym_u8_SQUOTE] = ACTIONS(2765), + [anon_sym_SQUOTE] = ACTIONS(2765), + [anon_sym_L_DQUOTE] = ACTIONS(2765), + [anon_sym_u_DQUOTE] = ACTIONS(2765), + [anon_sym_U_DQUOTE] = ACTIONS(2765), + [anon_sym_u8_DQUOTE] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2765), + [sym_true] = ACTIONS(2763), + [sym_false] = ACTIONS(2763), + [sym_null] = ACTIONS(2763), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2763), + [anon_sym_decltype] = ACTIONS(2763), + [anon_sym_virtual] = ACTIONS(2763), + [anon_sym_explicit] = ACTIONS(2763), + [anon_sym_typename] = ACTIONS(2763), + [anon_sym_template] = ACTIONS(2763), + [anon_sym_operator] = ACTIONS(2763), + [anon_sym_try] = ACTIONS(2763), + [anon_sym_delete] = ACTIONS(2763), + [anon_sym_throw] = ACTIONS(2763), + [anon_sym_namespace] = ACTIONS(2763), + [anon_sym_using] = ACTIONS(2763), + [anon_sym_static_assert] = ACTIONS(2763), + [anon_sym_concept] = ACTIONS(2763), + [anon_sym_co_return] = ACTIONS(2763), + [anon_sym_co_yield] = ACTIONS(2763), + [anon_sym_R_DQUOTE] = ACTIONS(2765), + [anon_sym_LR_DQUOTE] = ACTIONS(2765), + [anon_sym_uR_DQUOTE] = ACTIONS(2765), + [anon_sym_UR_DQUOTE] = ACTIONS(2765), + [anon_sym_u8R_DQUOTE] = ACTIONS(2765), + [anon_sym_co_await] = ACTIONS(2763), + [anon_sym_new] = ACTIONS(2763), + [anon_sym_requires] = ACTIONS(2763), + [sym_this] = ACTIONS(2763), + [sym_nullptr] = ACTIONS(2763), + }, + [1027] = { + [sym_identifier] = ACTIONS(2755), + [aux_sym_preproc_include_token1] = ACTIONS(2755), + [aux_sym_preproc_def_token1] = ACTIONS(2755), + [aux_sym_preproc_if_token1] = ACTIONS(2755), + [aux_sym_preproc_if_token2] = ACTIONS(2755), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2755), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2755), + [sym_preproc_directive] = ACTIONS(2755), + [anon_sym_LPAREN2] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_TILDE] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_AMP_AMP] = ACTIONS(2757), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_SEMI] = ACTIONS(2757), + [anon_sym_typedef] = ACTIONS(2755), + [anon_sym_extern] = ACTIONS(2755), + [anon_sym___attribute__] = ACTIONS(2755), + [anon_sym_COLON_COLON] = ACTIONS(2757), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2757), + [anon_sym___declspec] = ACTIONS(2755), + [anon_sym___based] = ACTIONS(2755), + [anon_sym___cdecl] = ACTIONS(2755), + [anon_sym___clrcall] = ACTIONS(2755), + [anon_sym___stdcall] = ACTIONS(2755), + [anon_sym___fastcall] = ACTIONS(2755), + [anon_sym___thiscall] = ACTIONS(2755), + [anon_sym___vectorcall] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_static] = ACTIONS(2755), + [anon_sym_register] = ACTIONS(2755), + [anon_sym_inline] = ACTIONS(2755), + [anon_sym_thread_local] = ACTIONS(2755), + [anon_sym_input] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_volatile] = ACTIONS(2755), + [anon_sym_restrict] = ACTIONS(2755), + [anon_sym__Atomic] = ACTIONS(2755), + [anon_sym_mutable] = ACTIONS(2755), + [anon_sym_constexpr] = ACTIONS(2755), + [anon_sym_constinit] = ACTIONS(2755), + [anon_sym_consteval] = ACTIONS(2755), + [anon_sym_signed] = ACTIONS(2755), + [anon_sym_unsigned] = ACTIONS(2755), + [anon_sym_long] = ACTIONS(2755), + [anon_sym_short] = ACTIONS(2755), + [sym_primitive_type] = ACTIONS(2755), + [anon_sym_enum] = ACTIONS(2755), + [anon_sym_class] = ACTIONS(2755), + [anon_sym_struct] = ACTIONS(2755), + [anon_sym_union] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_switch] = ACTIONS(2755), + [anon_sym_case] = ACTIONS(2755), + [anon_sym_default] = ACTIONS(2755), + [anon_sym_while] = ACTIONS(2755), + [anon_sym_do] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_goto] = ACTIONS(2755), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_compl] = ACTIONS(2755), + [anon_sym_DASH_DASH] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2757), + [anon_sym_sizeof] = ACTIONS(2755), + [sym_number_literal] = ACTIONS(2757), + [anon_sym_L_SQUOTE] = ACTIONS(2757), + [anon_sym_u_SQUOTE] = ACTIONS(2757), + [anon_sym_U_SQUOTE] = ACTIONS(2757), + [anon_sym_u8_SQUOTE] = ACTIONS(2757), + [anon_sym_SQUOTE] = ACTIONS(2757), + [anon_sym_L_DQUOTE] = ACTIONS(2757), + [anon_sym_u_DQUOTE] = ACTIONS(2757), + [anon_sym_U_DQUOTE] = ACTIONS(2757), + [anon_sym_u8_DQUOTE] = ACTIONS(2757), + [anon_sym_DQUOTE] = ACTIONS(2757), + [sym_true] = ACTIONS(2755), + [sym_false] = ACTIONS(2755), + [sym_null] = ACTIONS(2755), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2755), + [anon_sym_decltype] = ACTIONS(2755), + [anon_sym_virtual] = ACTIONS(2755), + [anon_sym_explicit] = ACTIONS(2755), + [anon_sym_typename] = ACTIONS(2755), + [anon_sym_template] = ACTIONS(2755), + [anon_sym_operator] = ACTIONS(2755), + [anon_sym_try] = ACTIONS(2755), + [anon_sym_delete] = ACTIONS(2755), + [anon_sym_throw] = ACTIONS(2755), + [anon_sym_namespace] = ACTIONS(2755), + [anon_sym_using] = ACTIONS(2755), + [anon_sym_static_assert] = ACTIONS(2755), + [anon_sym_concept] = ACTIONS(2755), + [anon_sym_co_return] = ACTIONS(2755), + [anon_sym_co_yield] = ACTIONS(2755), + [anon_sym_R_DQUOTE] = ACTIONS(2757), + [anon_sym_LR_DQUOTE] = ACTIONS(2757), + [anon_sym_uR_DQUOTE] = ACTIONS(2757), + [anon_sym_UR_DQUOTE] = ACTIONS(2757), + [anon_sym_u8R_DQUOTE] = ACTIONS(2757), + [anon_sym_co_await] = ACTIONS(2755), + [anon_sym_new] = ACTIONS(2755), + [anon_sym_requires] = ACTIONS(2755), + [sym_this] = ACTIONS(2755), + [sym_nullptr] = ACTIONS(2755), + }, + [1028] = { + [ts_builtin_sym_end] = ACTIONS(2825), + [sym_identifier] = ACTIONS(2823), + [aux_sym_preproc_include_token1] = ACTIONS(2823), + [aux_sym_preproc_def_token1] = ACTIONS(2823), + [aux_sym_preproc_if_token1] = ACTIONS(2823), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2823), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2823), + [sym_preproc_directive] = ACTIONS(2823), + [anon_sym_LPAREN2] = ACTIONS(2825), + [anon_sym_BANG] = ACTIONS(2825), + [anon_sym_TILDE] = ACTIONS(2825), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(2823), + [anon_sym_STAR] = ACTIONS(2825), + [anon_sym_AMP_AMP] = ACTIONS(2825), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_SEMI] = ACTIONS(2825), + [anon_sym_typedef] = ACTIONS(2823), + [anon_sym_extern] = ACTIONS(2823), + [anon_sym___attribute__] = ACTIONS(2823), + [anon_sym_COLON_COLON] = ACTIONS(2825), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2825), + [anon_sym___declspec] = ACTIONS(2823), + [anon_sym___based] = ACTIONS(2823), + [anon_sym___cdecl] = ACTIONS(2823), + [anon_sym___clrcall] = ACTIONS(2823), + [anon_sym___stdcall] = ACTIONS(2823), + [anon_sym___fastcall] = ACTIONS(2823), + [anon_sym___thiscall] = ACTIONS(2823), + [anon_sym___vectorcall] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2823), + [anon_sym_static] = ACTIONS(2823), + [anon_sym_register] = ACTIONS(2823), + [anon_sym_inline] = ACTIONS(2823), + [anon_sym_thread_local] = ACTIONS(2823), + [anon_sym_input] = ACTIONS(2823), + [anon_sym_const] = ACTIONS(2823), + [anon_sym_volatile] = ACTIONS(2823), + [anon_sym_restrict] = ACTIONS(2823), + [anon_sym__Atomic] = ACTIONS(2823), + [anon_sym_mutable] = ACTIONS(2823), + [anon_sym_constexpr] = ACTIONS(2823), + [anon_sym_constinit] = ACTIONS(2823), + [anon_sym_consteval] = ACTIONS(2823), + [anon_sym_signed] = ACTIONS(2823), + [anon_sym_unsigned] = ACTIONS(2823), + [anon_sym_long] = ACTIONS(2823), + [anon_sym_short] = ACTIONS(2823), + [sym_primitive_type] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2823), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_union] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_switch] = ACTIONS(2823), + [anon_sym_case] = ACTIONS(2823), + [anon_sym_default] = ACTIONS(2823), + [anon_sym_while] = ACTIONS(2823), + [anon_sym_do] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_goto] = ACTIONS(2823), + [anon_sym_not] = ACTIONS(2823), + [anon_sym_compl] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2825), + [anon_sym_PLUS_PLUS] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2823), + [sym_number_literal] = ACTIONS(2825), + [anon_sym_L_SQUOTE] = ACTIONS(2825), + [anon_sym_u_SQUOTE] = ACTIONS(2825), + [anon_sym_U_SQUOTE] = ACTIONS(2825), + [anon_sym_u8_SQUOTE] = ACTIONS(2825), + [anon_sym_SQUOTE] = ACTIONS(2825), + [anon_sym_L_DQUOTE] = ACTIONS(2825), + [anon_sym_u_DQUOTE] = ACTIONS(2825), + [anon_sym_U_DQUOTE] = ACTIONS(2825), + [anon_sym_u8_DQUOTE] = ACTIONS(2825), + [anon_sym_DQUOTE] = ACTIONS(2825), + [sym_true] = ACTIONS(2823), + [sym_false] = ACTIONS(2823), + [sym_null] = ACTIONS(2823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2823), + [anon_sym_decltype] = ACTIONS(2823), + [anon_sym_virtual] = ACTIONS(2823), + [anon_sym_explicit] = ACTIONS(2823), + [anon_sym_typename] = ACTIONS(2823), + [anon_sym_template] = ACTIONS(2823), + [anon_sym_operator] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2823), + [anon_sym_delete] = ACTIONS(2823), + [anon_sym_throw] = ACTIONS(2823), + [anon_sym_namespace] = ACTIONS(2823), + [anon_sym_using] = ACTIONS(2823), + [anon_sym_static_assert] = ACTIONS(2823), + [anon_sym_concept] = ACTIONS(2823), + [anon_sym_co_return] = ACTIONS(2823), + [anon_sym_co_yield] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2823), + [anon_sym_new] = ACTIONS(2823), + [anon_sym_requires] = ACTIONS(2823), + [sym_this] = ACTIONS(2823), + [sym_nullptr] = ACTIONS(2823), + }, + [1029] = { + [sym_identifier] = ACTIONS(2759), + [aux_sym_preproc_include_token1] = ACTIONS(2759), + [aux_sym_preproc_def_token1] = ACTIONS(2759), + [aux_sym_preproc_if_token1] = ACTIONS(2759), + [aux_sym_preproc_if_token2] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), + [sym_preproc_directive] = ACTIONS(2759), + [anon_sym_LPAREN2] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2759), + [anon_sym_PLUS] = ACTIONS(2759), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_SEMI] = ACTIONS(2761), + [anon_sym_typedef] = ACTIONS(2759), + [anon_sym_extern] = ACTIONS(2759), + [anon_sym___attribute__] = ACTIONS(2759), + [anon_sym_COLON_COLON] = ACTIONS(2761), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), + [anon_sym___declspec] = ACTIONS(2759), + [anon_sym___based] = ACTIONS(2759), + [anon_sym___cdecl] = ACTIONS(2759), + [anon_sym___clrcall] = ACTIONS(2759), + [anon_sym___stdcall] = ACTIONS(2759), + [anon_sym___fastcall] = ACTIONS(2759), + [anon_sym___thiscall] = ACTIONS(2759), + [anon_sym___vectorcall] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_static] = ACTIONS(2759), + [anon_sym_register] = ACTIONS(2759), + [anon_sym_inline] = ACTIONS(2759), + [anon_sym_thread_local] = ACTIONS(2759), + [anon_sym_input] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2759), + [anon_sym_volatile] = ACTIONS(2759), + [anon_sym_restrict] = ACTIONS(2759), + [anon_sym__Atomic] = ACTIONS(2759), + [anon_sym_mutable] = ACTIONS(2759), + [anon_sym_constexpr] = ACTIONS(2759), + [anon_sym_constinit] = ACTIONS(2759), + [anon_sym_consteval] = ACTIONS(2759), + [anon_sym_signed] = ACTIONS(2759), + [anon_sym_unsigned] = ACTIONS(2759), + [anon_sym_long] = ACTIONS(2759), + [anon_sym_short] = ACTIONS(2759), + [sym_primitive_type] = ACTIONS(2759), + [anon_sym_enum] = ACTIONS(2759), + [anon_sym_class] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2759), + [anon_sym_union] = ACTIONS(2759), + [anon_sym_if] = ACTIONS(2759), + [anon_sym_switch] = ACTIONS(2759), + [anon_sym_case] = ACTIONS(2759), + [anon_sym_default] = ACTIONS(2759), + [anon_sym_while] = ACTIONS(2759), + [anon_sym_do] = ACTIONS(2759), + [anon_sym_for] = ACTIONS(2759), + [anon_sym_return] = ACTIONS(2759), + [anon_sym_break] = ACTIONS(2759), + [anon_sym_continue] = ACTIONS(2759), + [anon_sym_goto] = ACTIONS(2759), + [anon_sym_not] = ACTIONS(2759), + [anon_sym_compl] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2761), + [anon_sym_sizeof] = ACTIONS(2759), + [sym_number_literal] = ACTIONS(2761), + [anon_sym_L_SQUOTE] = ACTIONS(2761), + [anon_sym_u_SQUOTE] = ACTIONS(2761), + [anon_sym_U_SQUOTE] = ACTIONS(2761), + [anon_sym_u8_SQUOTE] = ACTIONS(2761), + [anon_sym_SQUOTE] = ACTIONS(2761), + [anon_sym_L_DQUOTE] = ACTIONS(2761), + [anon_sym_u_DQUOTE] = ACTIONS(2761), + [anon_sym_U_DQUOTE] = ACTIONS(2761), + [anon_sym_u8_DQUOTE] = ACTIONS(2761), + [anon_sym_DQUOTE] = ACTIONS(2761), + [sym_true] = ACTIONS(2759), + [sym_false] = ACTIONS(2759), + [sym_null] = ACTIONS(2759), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2759), + [anon_sym_decltype] = ACTIONS(2759), + [anon_sym_virtual] = ACTIONS(2759), + [anon_sym_explicit] = ACTIONS(2759), + [anon_sym_typename] = ACTIONS(2759), + [anon_sym_template] = ACTIONS(2759), + [anon_sym_operator] = ACTIONS(2759), + [anon_sym_try] = ACTIONS(2759), + [anon_sym_delete] = ACTIONS(2759), + [anon_sym_throw] = ACTIONS(2759), + [anon_sym_namespace] = ACTIONS(2759), + [anon_sym_using] = ACTIONS(2759), + [anon_sym_static_assert] = ACTIONS(2759), + [anon_sym_concept] = ACTIONS(2759), + [anon_sym_co_return] = ACTIONS(2759), + [anon_sym_co_yield] = ACTIONS(2759), + [anon_sym_R_DQUOTE] = ACTIONS(2761), + [anon_sym_LR_DQUOTE] = ACTIONS(2761), + [anon_sym_uR_DQUOTE] = ACTIONS(2761), + [anon_sym_UR_DQUOTE] = ACTIONS(2761), + [anon_sym_u8R_DQUOTE] = ACTIONS(2761), + [anon_sym_co_await] = ACTIONS(2759), + [anon_sym_new] = ACTIONS(2759), + [anon_sym_requires] = ACTIONS(2759), + [sym_this] = ACTIONS(2759), + [sym_nullptr] = ACTIONS(2759), + }, + [1030] = { + [ts_builtin_sym_end] = ACTIONS(2785), + [sym_identifier] = ACTIONS(2783), + [aux_sym_preproc_include_token1] = ACTIONS(2783), + [aux_sym_preproc_def_token1] = ACTIONS(2783), + [aux_sym_preproc_if_token1] = ACTIONS(2783), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), + [sym_preproc_directive] = ACTIONS(2783), + [anon_sym_LPAREN2] = ACTIONS(2785), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_AMP_AMP] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_SEMI] = ACTIONS(2785), + [anon_sym_typedef] = ACTIONS(2783), + [anon_sym_extern] = ACTIONS(2783), + [anon_sym___attribute__] = ACTIONS(2783), + [anon_sym_COLON_COLON] = ACTIONS(2785), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2785), + [anon_sym___declspec] = ACTIONS(2783), + [anon_sym___based] = ACTIONS(2783), + [anon_sym___cdecl] = ACTIONS(2783), + [anon_sym___clrcall] = ACTIONS(2783), + [anon_sym___stdcall] = ACTIONS(2783), + [anon_sym___fastcall] = ACTIONS(2783), + [anon_sym___thiscall] = ACTIONS(2783), + [anon_sym___vectorcall] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2785), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_static] = ACTIONS(2783), + [anon_sym_register] = ACTIONS(2783), + [anon_sym_inline] = ACTIONS(2783), + [anon_sym_thread_local] = ACTIONS(2783), + [anon_sym_input] = ACTIONS(2783), + [anon_sym_const] = ACTIONS(2783), + [anon_sym_volatile] = ACTIONS(2783), + [anon_sym_restrict] = ACTIONS(2783), + [anon_sym__Atomic] = ACTIONS(2783), + [anon_sym_mutable] = ACTIONS(2783), + [anon_sym_constexpr] = ACTIONS(2783), + [anon_sym_constinit] = ACTIONS(2783), + [anon_sym_consteval] = ACTIONS(2783), + [anon_sym_signed] = ACTIONS(2783), + [anon_sym_unsigned] = ACTIONS(2783), + [anon_sym_long] = ACTIONS(2783), + [anon_sym_short] = ACTIONS(2783), + [sym_primitive_type] = ACTIONS(2783), + [anon_sym_enum] = ACTIONS(2783), + [anon_sym_class] = ACTIONS(2783), + [anon_sym_struct] = ACTIONS(2783), + [anon_sym_union] = ACTIONS(2783), + [anon_sym_if] = ACTIONS(2783), + [anon_sym_switch] = ACTIONS(2783), + [anon_sym_case] = ACTIONS(2783), + [anon_sym_default] = ACTIONS(2783), + [anon_sym_while] = ACTIONS(2783), + [anon_sym_do] = ACTIONS(2783), + [anon_sym_for] = ACTIONS(2783), + [anon_sym_return] = ACTIONS(2783), + [anon_sym_break] = ACTIONS(2783), + [anon_sym_continue] = ACTIONS(2783), + [anon_sym_goto] = ACTIONS(2783), + [anon_sym_not] = ACTIONS(2783), + [anon_sym_compl] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2785), + [anon_sym_PLUS_PLUS] = ACTIONS(2785), + [anon_sym_sizeof] = ACTIONS(2783), + [sym_number_literal] = ACTIONS(2785), + [anon_sym_L_SQUOTE] = ACTIONS(2785), + [anon_sym_u_SQUOTE] = ACTIONS(2785), + [anon_sym_U_SQUOTE] = ACTIONS(2785), + [anon_sym_u8_SQUOTE] = ACTIONS(2785), + [anon_sym_SQUOTE] = ACTIONS(2785), + [anon_sym_L_DQUOTE] = ACTIONS(2785), + [anon_sym_u_DQUOTE] = ACTIONS(2785), + [anon_sym_U_DQUOTE] = ACTIONS(2785), + [anon_sym_u8_DQUOTE] = ACTIONS(2785), + [anon_sym_DQUOTE] = ACTIONS(2785), + [sym_true] = ACTIONS(2783), + [sym_false] = ACTIONS(2783), + [sym_null] = ACTIONS(2783), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2783), + [anon_sym_decltype] = ACTIONS(2783), + [anon_sym_virtual] = ACTIONS(2783), + [anon_sym_explicit] = ACTIONS(2783), + [anon_sym_typename] = ACTIONS(2783), + [anon_sym_template] = ACTIONS(2783), + [anon_sym_operator] = ACTIONS(2783), + [anon_sym_try] = ACTIONS(2783), + [anon_sym_delete] = ACTIONS(2783), + [anon_sym_throw] = ACTIONS(2783), + [anon_sym_namespace] = ACTIONS(2783), + [anon_sym_using] = ACTIONS(2783), + [anon_sym_static_assert] = ACTIONS(2783), + [anon_sym_concept] = ACTIONS(2783), + [anon_sym_co_return] = ACTIONS(2783), + [anon_sym_co_yield] = ACTIONS(2783), + [anon_sym_R_DQUOTE] = ACTIONS(2785), + [anon_sym_LR_DQUOTE] = ACTIONS(2785), + [anon_sym_uR_DQUOTE] = ACTIONS(2785), + [anon_sym_UR_DQUOTE] = ACTIONS(2785), + [anon_sym_u8R_DQUOTE] = ACTIONS(2785), + [anon_sym_co_await] = ACTIONS(2783), + [anon_sym_new] = ACTIONS(2783), + [anon_sym_requires] = ACTIONS(2783), + [sym_this] = ACTIONS(2783), + [sym_nullptr] = ACTIONS(2783), + }, + [1031] = { + [sym_identifier] = ACTIONS(2767), + [aux_sym_preproc_include_token1] = ACTIONS(2767), + [aux_sym_preproc_def_token1] = ACTIONS(2767), + [aux_sym_preproc_if_token1] = ACTIONS(2767), + [aux_sym_preproc_if_token2] = ACTIONS(2767), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), + [sym_preproc_directive] = ACTIONS(2767), + [anon_sym_LPAREN2] = ACTIONS(2769), + [anon_sym_BANG] = ACTIONS(2769), + [anon_sym_TILDE] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_AMP_AMP] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_SEMI] = ACTIONS(2769), + [anon_sym_typedef] = ACTIONS(2767), + [anon_sym_extern] = ACTIONS(2767), + [anon_sym___attribute__] = ACTIONS(2767), + [anon_sym_COLON_COLON] = ACTIONS(2769), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), + [anon_sym___declspec] = ACTIONS(2767), + [anon_sym___based] = ACTIONS(2767), + [anon_sym___cdecl] = ACTIONS(2767), + [anon_sym___clrcall] = ACTIONS(2767), + [anon_sym___stdcall] = ACTIONS(2767), + [anon_sym___fastcall] = ACTIONS(2767), + [anon_sym___thiscall] = ACTIONS(2767), + [anon_sym___vectorcall] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_static] = ACTIONS(2767), + [anon_sym_register] = ACTIONS(2767), + [anon_sym_inline] = ACTIONS(2767), + [anon_sym_thread_local] = ACTIONS(2767), + [anon_sym_input] = ACTIONS(2767), + [anon_sym_const] = ACTIONS(2767), + [anon_sym_volatile] = ACTIONS(2767), + [anon_sym_restrict] = ACTIONS(2767), + [anon_sym__Atomic] = ACTIONS(2767), + [anon_sym_mutable] = ACTIONS(2767), + [anon_sym_constexpr] = ACTIONS(2767), + [anon_sym_constinit] = ACTIONS(2767), + [anon_sym_consteval] = ACTIONS(2767), + [anon_sym_signed] = ACTIONS(2767), + [anon_sym_unsigned] = ACTIONS(2767), + [anon_sym_long] = ACTIONS(2767), + [anon_sym_short] = ACTIONS(2767), + [sym_primitive_type] = ACTIONS(2767), + [anon_sym_enum] = ACTIONS(2767), + [anon_sym_class] = ACTIONS(2767), + [anon_sym_struct] = ACTIONS(2767), + [anon_sym_union] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2767), + [anon_sym_switch] = ACTIONS(2767), + [anon_sym_case] = ACTIONS(2767), + [anon_sym_default] = ACTIONS(2767), + [anon_sym_while] = ACTIONS(2767), + [anon_sym_do] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2767), + [anon_sym_return] = ACTIONS(2767), + [anon_sym_break] = ACTIONS(2767), + [anon_sym_continue] = ACTIONS(2767), + [anon_sym_goto] = ACTIONS(2767), + [anon_sym_not] = ACTIONS(2767), + [anon_sym_compl] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2769), + [anon_sym_PLUS_PLUS] = ACTIONS(2769), + [anon_sym_sizeof] = ACTIONS(2767), + [sym_number_literal] = ACTIONS(2769), + [anon_sym_L_SQUOTE] = ACTIONS(2769), + [anon_sym_u_SQUOTE] = ACTIONS(2769), + [anon_sym_U_SQUOTE] = ACTIONS(2769), + [anon_sym_u8_SQUOTE] = ACTIONS(2769), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_L_DQUOTE] = ACTIONS(2769), + [anon_sym_u_DQUOTE] = ACTIONS(2769), + [anon_sym_U_DQUOTE] = ACTIONS(2769), + [anon_sym_u8_DQUOTE] = ACTIONS(2769), + [anon_sym_DQUOTE] = ACTIONS(2769), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_null] = ACTIONS(2767), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2767), + [anon_sym_decltype] = ACTIONS(2767), + [anon_sym_virtual] = ACTIONS(2767), + [anon_sym_explicit] = ACTIONS(2767), + [anon_sym_typename] = ACTIONS(2767), + [anon_sym_template] = ACTIONS(2767), + [anon_sym_operator] = ACTIONS(2767), + [anon_sym_try] = ACTIONS(2767), + [anon_sym_delete] = ACTIONS(2767), + [anon_sym_throw] = ACTIONS(2767), + [anon_sym_namespace] = ACTIONS(2767), + [anon_sym_using] = ACTIONS(2767), + [anon_sym_static_assert] = ACTIONS(2767), + [anon_sym_concept] = ACTIONS(2767), + [anon_sym_co_return] = ACTIONS(2767), + [anon_sym_co_yield] = ACTIONS(2767), + [anon_sym_R_DQUOTE] = ACTIONS(2769), + [anon_sym_LR_DQUOTE] = ACTIONS(2769), + [anon_sym_uR_DQUOTE] = ACTIONS(2769), + [anon_sym_UR_DQUOTE] = ACTIONS(2769), + [anon_sym_u8R_DQUOTE] = ACTIONS(2769), + [anon_sym_co_await] = ACTIONS(2767), + [anon_sym_new] = ACTIONS(2767), + [anon_sym_requires] = ACTIONS(2767), + [sym_this] = ACTIONS(2767), + [sym_nullptr] = ACTIONS(2767), + }, + [1032] = { + [ts_builtin_sym_end] = ACTIONS(2711), + [sym_identifier] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym___attribute__] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym___declspec] = ACTIONS(2709), + [anon_sym___based] = ACTIONS(2709), + [anon_sym___cdecl] = ACTIONS(2709), + [anon_sym___clrcall] = ACTIONS(2709), + [anon_sym___stdcall] = ACTIONS(2709), + [anon_sym___fastcall] = ACTIONS(2709), + [anon_sym___thiscall] = ACTIONS(2709), + [anon_sym___vectorcall] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_thread_local] = ACTIONS(2709), + [anon_sym_input] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [anon_sym_constinit] = ACTIONS(2709), + [anon_sym_consteval] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_compl] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_L_SQUOTE] = ACTIONS(2711), + [anon_sym_u_SQUOTE] = ACTIONS(2711), + [anon_sym_U_SQUOTE] = ACTIONS(2711), + [anon_sym_u8_SQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_L_DQUOTE] = ACTIONS(2711), + [anon_sym_u_DQUOTE] = ACTIONS(2711), + [anon_sym_U_DQUOTE] = ACTIONS(2711), + [anon_sym_u8_DQUOTE] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_null] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2709), + [anon_sym_decltype] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_operator] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_namespace] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_static_assert] = ACTIONS(2709), + [anon_sym_concept] = ACTIONS(2709), + [anon_sym_co_return] = ACTIONS(2709), + [anon_sym_co_yield] = ACTIONS(2709), + [anon_sym_R_DQUOTE] = ACTIONS(2711), + [anon_sym_LR_DQUOTE] = ACTIONS(2711), + [anon_sym_uR_DQUOTE] = ACTIONS(2711), + [anon_sym_UR_DQUOTE] = ACTIONS(2711), + [anon_sym_u8R_DQUOTE] = ACTIONS(2711), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_requires] = ACTIONS(2709), + [sym_this] = ACTIONS(2709), + [sym_nullptr] = ACTIONS(2709), + }, + [1033] = { + [ts_builtin_sym_end] = ACTIONS(2639), + [sym_identifier] = ACTIONS(2637), + [aux_sym_preproc_include_token1] = ACTIONS(2637), + [aux_sym_preproc_def_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token1] = ACTIONS(2637), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), + [sym_preproc_directive] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_typedef] = ACTIONS(2637), + [anon_sym_extern] = ACTIONS(2637), + [anon_sym___attribute__] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2639), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), + [anon_sym___declspec] = ACTIONS(2637), + [anon_sym___based] = ACTIONS(2637), + [anon_sym___cdecl] = ACTIONS(2637), + [anon_sym___clrcall] = ACTIONS(2637), + [anon_sym___stdcall] = ACTIONS(2637), + [anon_sym___fastcall] = ACTIONS(2637), + [anon_sym___thiscall] = ACTIONS(2637), + [anon_sym___vectorcall] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_static] = ACTIONS(2637), + [anon_sym_register] = ACTIONS(2637), + [anon_sym_inline] = ACTIONS(2637), + [anon_sym_thread_local] = ACTIONS(2637), + [anon_sym_input] = ACTIONS(2637), + [anon_sym_const] = ACTIONS(2637), + [anon_sym_volatile] = ACTIONS(2637), + [anon_sym_restrict] = ACTIONS(2637), + [anon_sym__Atomic] = ACTIONS(2637), + [anon_sym_mutable] = ACTIONS(2637), + [anon_sym_constexpr] = ACTIONS(2637), + [anon_sym_constinit] = ACTIONS(2637), + [anon_sym_consteval] = ACTIONS(2637), + [anon_sym_signed] = ACTIONS(2637), + [anon_sym_unsigned] = ACTIONS(2637), + [anon_sym_long] = ACTIONS(2637), + [anon_sym_short] = ACTIONS(2637), + [sym_primitive_type] = ACTIONS(2637), + [anon_sym_enum] = ACTIONS(2637), + [anon_sym_class] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2637), + [anon_sym_union] = ACTIONS(2637), + [anon_sym_if] = ACTIONS(2637), + [anon_sym_switch] = ACTIONS(2637), + [anon_sym_case] = ACTIONS(2637), + [anon_sym_default] = ACTIONS(2637), + [anon_sym_while] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_for] = ACTIONS(2637), + [anon_sym_return] = ACTIONS(2637), + [anon_sym_break] = ACTIONS(2637), + [anon_sym_continue] = ACTIONS(2637), + [anon_sym_goto] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_compl] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2637), + [sym_number_literal] = ACTIONS(2639), + [anon_sym_L_SQUOTE] = ACTIONS(2639), + [anon_sym_u_SQUOTE] = ACTIONS(2639), + [anon_sym_U_SQUOTE] = ACTIONS(2639), + [anon_sym_u8_SQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_L_DQUOTE] = ACTIONS(2639), + [anon_sym_u_DQUOTE] = ACTIONS(2639), + [anon_sym_U_DQUOTE] = ACTIONS(2639), + [anon_sym_u8_DQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [sym_true] = ACTIONS(2637), + [sym_false] = ACTIONS(2637), + [sym_null] = ACTIONS(2637), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2637), + [anon_sym_decltype] = ACTIONS(2637), + [anon_sym_virtual] = ACTIONS(2637), + [anon_sym_explicit] = ACTIONS(2637), + [anon_sym_typename] = ACTIONS(2637), + [anon_sym_template] = ACTIONS(2637), + [anon_sym_operator] = ACTIONS(2637), + [anon_sym_try] = ACTIONS(2637), + [anon_sym_delete] = ACTIONS(2637), + [anon_sym_throw] = ACTIONS(2637), + [anon_sym_namespace] = ACTIONS(2637), + [anon_sym_using] = ACTIONS(2637), + [anon_sym_static_assert] = ACTIONS(2637), + [anon_sym_concept] = ACTIONS(2637), + [anon_sym_co_return] = ACTIONS(2637), + [anon_sym_co_yield] = ACTIONS(2637), + [anon_sym_R_DQUOTE] = ACTIONS(2639), + [anon_sym_LR_DQUOTE] = ACTIONS(2639), + [anon_sym_uR_DQUOTE] = ACTIONS(2639), + [anon_sym_UR_DQUOTE] = ACTIONS(2639), + [anon_sym_u8R_DQUOTE] = ACTIONS(2639), + [anon_sym_co_await] = ACTIONS(2637), + [anon_sym_new] = ACTIONS(2637), + [anon_sym_requires] = ACTIONS(2637), + [sym_this] = ACTIONS(2637), + [sym_nullptr] = ACTIONS(2637), + }, + [1034] = { + [ts_builtin_sym_end] = ACTIONS(2643), + [sym_identifier] = ACTIONS(2641), + [aux_sym_preproc_include_token1] = ACTIONS(2641), + [aux_sym_preproc_def_token1] = ACTIONS(2641), + [aux_sym_preproc_if_token1] = ACTIONS(2641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), + [sym_preproc_directive] = ACTIONS(2641), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_AMP_AMP] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_typedef] = ACTIONS(2641), + [anon_sym_extern] = ACTIONS(2641), + [anon_sym___attribute__] = ACTIONS(2641), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), + [anon_sym___declspec] = ACTIONS(2641), + [anon_sym___based] = ACTIONS(2641), + [anon_sym___cdecl] = ACTIONS(2641), + [anon_sym___clrcall] = ACTIONS(2641), + [anon_sym___stdcall] = ACTIONS(2641), + [anon_sym___fastcall] = ACTIONS(2641), + [anon_sym___thiscall] = ACTIONS(2641), + [anon_sym___vectorcall] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_static] = ACTIONS(2641), + [anon_sym_register] = ACTIONS(2641), + [anon_sym_inline] = ACTIONS(2641), + [anon_sym_thread_local] = ACTIONS(2641), + [anon_sym_input] = ACTIONS(2641), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_volatile] = ACTIONS(2641), + [anon_sym_restrict] = ACTIONS(2641), + [anon_sym__Atomic] = ACTIONS(2641), + [anon_sym_mutable] = ACTIONS(2641), + [anon_sym_constexpr] = ACTIONS(2641), + [anon_sym_constinit] = ACTIONS(2641), + [anon_sym_consteval] = ACTIONS(2641), + [anon_sym_signed] = ACTIONS(2641), + [anon_sym_unsigned] = ACTIONS(2641), + [anon_sym_long] = ACTIONS(2641), + [anon_sym_short] = ACTIONS(2641), + [sym_primitive_type] = ACTIONS(2641), + [anon_sym_enum] = ACTIONS(2641), + [anon_sym_class] = ACTIONS(2641), + [anon_sym_struct] = ACTIONS(2641), + [anon_sym_union] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2641), + [anon_sym_switch] = ACTIONS(2641), + [anon_sym_case] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2641), + [anon_sym_while] = ACTIONS(2641), + [anon_sym_do] = ACTIONS(2641), + [anon_sym_for] = ACTIONS(2641), + [anon_sym_return] = ACTIONS(2641), + [anon_sym_break] = ACTIONS(2641), + [anon_sym_continue] = ACTIONS(2641), + [anon_sym_goto] = ACTIONS(2641), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_compl] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_sizeof] = ACTIONS(2641), + [sym_number_literal] = ACTIONS(2643), + [anon_sym_L_SQUOTE] = ACTIONS(2643), + [anon_sym_u_SQUOTE] = ACTIONS(2643), + [anon_sym_U_SQUOTE] = ACTIONS(2643), + [anon_sym_u8_SQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_L_DQUOTE] = ACTIONS(2643), + [anon_sym_u_DQUOTE] = ACTIONS(2643), + [anon_sym_U_DQUOTE] = ACTIONS(2643), + [anon_sym_u8_DQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [sym_true] = ACTIONS(2641), + [sym_false] = ACTIONS(2641), + [sym_null] = ACTIONS(2641), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2641), + [anon_sym_decltype] = ACTIONS(2641), + [anon_sym_virtual] = ACTIONS(2641), + [anon_sym_explicit] = ACTIONS(2641), + [anon_sym_typename] = ACTIONS(2641), + [anon_sym_template] = ACTIONS(2641), + [anon_sym_operator] = ACTIONS(2641), + [anon_sym_try] = ACTIONS(2641), + [anon_sym_delete] = ACTIONS(2641), + [anon_sym_throw] = ACTIONS(2641), + [anon_sym_namespace] = ACTIONS(2641), + [anon_sym_using] = ACTIONS(2641), + [anon_sym_static_assert] = ACTIONS(2641), + [anon_sym_concept] = ACTIONS(2641), + [anon_sym_co_return] = ACTIONS(2641), + [anon_sym_co_yield] = ACTIONS(2641), + [anon_sym_R_DQUOTE] = ACTIONS(2643), + [anon_sym_LR_DQUOTE] = ACTIONS(2643), + [anon_sym_uR_DQUOTE] = ACTIONS(2643), + [anon_sym_UR_DQUOTE] = ACTIONS(2643), + [anon_sym_u8R_DQUOTE] = ACTIONS(2643), + [anon_sym_co_await] = ACTIONS(2641), + [anon_sym_new] = ACTIONS(2641), + [anon_sym_requires] = ACTIONS(2641), + [sym_this] = ACTIONS(2641), + [sym_nullptr] = ACTIONS(2641), + }, + [1035] = { + [ts_builtin_sym_end] = ACTIONS(2707), + [sym_identifier] = ACTIONS(2705), + [aux_sym_preproc_include_token1] = ACTIONS(2705), + [aux_sym_preproc_def_token1] = ACTIONS(2705), + [aux_sym_preproc_if_token1] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), + [sym_preproc_directive] = ACTIONS(2705), + [anon_sym_LPAREN2] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_AMP_AMP] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_typedef] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym___attribute__] = ACTIONS(2705), + [anon_sym_COLON_COLON] = ACTIONS(2707), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), + [anon_sym___declspec] = ACTIONS(2705), + [anon_sym___based] = ACTIONS(2705), + [anon_sym___cdecl] = ACTIONS(2705), + [anon_sym___clrcall] = ACTIONS(2705), + [anon_sym___stdcall] = ACTIONS(2705), + [anon_sym___fastcall] = ACTIONS(2705), + [anon_sym___thiscall] = ACTIONS(2705), + [anon_sym___vectorcall] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_register] = ACTIONS(2705), + [anon_sym_inline] = ACTIONS(2705), + [anon_sym_thread_local] = ACTIONS(2705), + [anon_sym_input] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_volatile] = ACTIONS(2705), + [anon_sym_restrict] = ACTIONS(2705), + [anon_sym__Atomic] = ACTIONS(2705), + [anon_sym_mutable] = ACTIONS(2705), + [anon_sym_constexpr] = ACTIONS(2705), + [anon_sym_constinit] = ACTIONS(2705), + [anon_sym_consteval] = ACTIONS(2705), + [anon_sym_signed] = ACTIONS(2705), + [anon_sym_unsigned] = ACTIONS(2705), + [anon_sym_long] = ACTIONS(2705), + [anon_sym_short] = ACTIONS(2705), + [sym_primitive_type] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_switch] = ACTIONS(2705), + [anon_sym_case] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_do] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_goto] = ACTIONS(2705), + [anon_sym_not] = ACTIONS(2705), + [anon_sym_compl] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_sizeof] = ACTIONS(2705), + [sym_number_literal] = ACTIONS(2707), + [anon_sym_L_SQUOTE] = ACTIONS(2707), + [anon_sym_u_SQUOTE] = ACTIONS(2707), + [anon_sym_U_SQUOTE] = ACTIONS(2707), + [anon_sym_u8_SQUOTE] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_L_DQUOTE] = ACTIONS(2707), + [anon_sym_u_DQUOTE] = ACTIONS(2707), + [anon_sym_U_DQUOTE] = ACTIONS(2707), + [anon_sym_u8_DQUOTE] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2707), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_null] = ACTIONS(2705), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2705), + [anon_sym_decltype] = ACTIONS(2705), + [anon_sym_virtual] = ACTIONS(2705), + [anon_sym_explicit] = ACTIONS(2705), + [anon_sym_typename] = ACTIONS(2705), + [anon_sym_template] = ACTIONS(2705), + [anon_sym_operator] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_delete] = ACTIONS(2705), + [anon_sym_throw] = ACTIONS(2705), + [anon_sym_namespace] = ACTIONS(2705), + [anon_sym_using] = ACTIONS(2705), + [anon_sym_static_assert] = ACTIONS(2705), + [anon_sym_concept] = ACTIONS(2705), + [anon_sym_co_return] = ACTIONS(2705), + [anon_sym_co_yield] = ACTIONS(2705), + [anon_sym_R_DQUOTE] = ACTIONS(2707), + [anon_sym_LR_DQUOTE] = ACTIONS(2707), + [anon_sym_uR_DQUOTE] = ACTIONS(2707), + [anon_sym_UR_DQUOTE] = ACTIONS(2707), + [anon_sym_u8R_DQUOTE] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_requires] = ACTIONS(2705), + [sym_this] = ACTIONS(2705), + [sym_nullptr] = ACTIONS(2705), + }, + [1036] = { + [sym_identifier] = ACTIONS(2665), + [aux_sym_preproc_include_token1] = ACTIONS(2665), + [aux_sym_preproc_def_token1] = ACTIONS(2665), + [aux_sym_preproc_if_token1] = ACTIONS(2665), + [aux_sym_preproc_if_token2] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), + [sym_preproc_directive] = ACTIONS(2665), + [anon_sym_LPAREN2] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2665), + [anon_sym_extern] = ACTIONS(2665), + [anon_sym___attribute__] = ACTIONS(2665), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), + [anon_sym___declspec] = ACTIONS(2665), + [anon_sym___based] = ACTIONS(2665), + [anon_sym___cdecl] = ACTIONS(2665), + [anon_sym___clrcall] = ACTIONS(2665), + [anon_sym___stdcall] = ACTIONS(2665), + [anon_sym___fastcall] = ACTIONS(2665), + [anon_sym___thiscall] = ACTIONS(2665), + [anon_sym___vectorcall] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_static] = ACTIONS(2665), + [anon_sym_register] = ACTIONS(2665), + [anon_sym_inline] = ACTIONS(2665), + [anon_sym_thread_local] = ACTIONS(2665), + [anon_sym_input] = ACTIONS(2665), + [anon_sym_const] = ACTIONS(2665), + [anon_sym_volatile] = ACTIONS(2665), + [anon_sym_restrict] = ACTIONS(2665), + [anon_sym__Atomic] = ACTIONS(2665), + [anon_sym_mutable] = ACTIONS(2665), + [anon_sym_constexpr] = ACTIONS(2665), + [anon_sym_constinit] = ACTIONS(2665), + [anon_sym_consteval] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2665), + [anon_sym_unsigned] = ACTIONS(2665), + [anon_sym_long] = ACTIONS(2665), + [anon_sym_short] = ACTIONS(2665), + [sym_primitive_type] = ACTIONS(2665), + [anon_sym_enum] = ACTIONS(2665), + [anon_sym_class] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(2665), + [anon_sym_union] = ACTIONS(2665), + [anon_sym_if] = ACTIONS(2665), + [anon_sym_switch] = ACTIONS(2665), + [anon_sym_case] = ACTIONS(2665), + [anon_sym_default] = ACTIONS(2665), + [anon_sym_while] = ACTIONS(2665), + [anon_sym_do] = ACTIONS(2665), + [anon_sym_for] = ACTIONS(2665), + [anon_sym_return] = ACTIONS(2665), + [anon_sym_break] = ACTIONS(2665), + [anon_sym_continue] = ACTIONS(2665), + [anon_sym_goto] = ACTIONS(2665), + [anon_sym_not] = ACTIONS(2665), + [anon_sym_compl] = ACTIONS(2665), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_sizeof] = ACTIONS(2665), + [sym_number_literal] = ACTIONS(2667), + [anon_sym_L_SQUOTE] = ACTIONS(2667), + [anon_sym_u_SQUOTE] = ACTIONS(2667), + [anon_sym_U_SQUOTE] = ACTIONS(2667), + [anon_sym_u8_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_L_DQUOTE] = ACTIONS(2667), + [anon_sym_u_DQUOTE] = ACTIONS(2667), + [anon_sym_U_DQUOTE] = ACTIONS(2667), + [anon_sym_u8_DQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym_true] = ACTIONS(2665), + [sym_false] = ACTIONS(2665), + [sym_null] = ACTIONS(2665), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2665), + [anon_sym_decltype] = ACTIONS(2665), + [anon_sym_virtual] = ACTIONS(2665), + [anon_sym_explicit] = ACTIONS(2665), + [anon_sym_typename] = ACTIONS(2665), + [anon_sym_template] = ACTIONS(2665), + [anon_sym_operator] = ACTIONS(2665), + [anon_sym_try] = ACTIONS(2665), + [anon_sym_delete] = ACTIONS(2665), + [anon_sym_throw] = ACTIONS(2665), + [anon_sym_namespace] = ACTIONS(2665), + [anon_sym_using] = ACTIONS(2665), + [anon_sym_static_assert] = ACTIONS(2665), + [anon_sym_concept] = ACTIONS(2665), + [anon_sym_co_return] = ACTIONS(2665), + [anon_sym_co_yield] = ACTIONS(2665), + [anon_sym_R_DQUOTE] = ACTIONS(2667), + [anon_sym_LR_DQUOTE] = ACTIONS(2667), + [anon_sym_uR_DQUOTE] = ACTIONS(2667), + [anon_sym_UR_DQUOTE] = ACTIONS(2667), + [anon_sym_u8R_DQUOTE] = ACTIONS(2667), + [anon_sym_co_await] = ACTIONS(2665), + [anon_sym_new] = ACTIONS(2665), + [anon_sym_requires] = ACTIONS(2665), + [sym_this] = ACTIONS(2665), + [sym_nullptr] = ACTIONS(2665), + }, + [1037] = { + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2645), + [aux_sym_preproc_include_token1] = ACTIONS(2645), + [aux_sym_preproc_def_token1] = ACTIONS(2645), + [aux_sym_preproc_if_token1] = ACTIONS(2645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2645), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2645), + [sym_preproc_directive] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_typedef] = ACTIONS(2645), + [anon_sym_extern] = ACTIONS(2645), + [anon_sym___attribute__] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2647), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2647), + [anon_sym___declspec] = ACTIONS(2645), + [anon_sym___based] = ACTIONS(2645), + [anon_sym___cdecl] = ACTIONS(2645), + [anon_sym___clrcall] = ACTIONS(2645), + [anon_sym___stdcall] = ACTIONS(2645), + [anon_sym___fastcall] = ACTIONS(2645), + [anon_sym___thiscall] = ACTIONS(2645), + [anon_sym___vectorcall] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_static] = ACTIONS(2645), + [anon_sym_register] = ACTIONS(2645), + [anon_sym_inline] = ACTIONS(2645), + [anon_sym_thread_local] = ACTIONS(2645), + [anon_sym_input] = ACTIONS(2645), + [anon_sym_const] = ACTIONS(2645), + [anon_sym_volatile] = ACTIONS(2645), + [anon_sym_restrict] = ACTIONS(2645), + [anon_sym__Atomic] = ACTIONS(2645), + [anon_sym_mutable] = ACTIONS(2645), + [anon_sym_constexpr] = ACTIONS(2645), + [anon_sym_constinit] = ACTIONS(2645), + [anon_sym_consteval] = ACTIONS(2645), + [anon_sym_signed] = ACTIONS(2645), + [anon_sym_unsigned] = ACTIONS(2645), + [anon_sym_long] = ACTIONS(2645), + [anon_sym_short] = ACTIONS(2645), + [sym_primitive_type] = ACTIONS(2645), + [anon_sym_enum] = ACTIONS(2645), + [anon_sym_class] = ACTIONS(2645), + [anon_sym_struct] = ACTIONS(2645), + [anon_sym_union] = ACTIONS(2645), + [anon_sym_if] = ACTIONS(2645), + [anon_sym_switch] = ACTIONS(2645), + [anon_sym_case] = ACTIONS(2645), + [anon_sym_default] = ACTIONS(2645), + [anon_sym_while] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_for] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2645), + [anon_sym_continue] = ACTIONS(2645), + [anon_sym_goto] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_compl] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_sizeof] = ACTIONS(2645), + [sym_number_literal] = ACTIONS(2647), + [anon_sym_L_SQUOTE] = ACTIONS(2647), + [anon_sym_u_SQUOTE] = ACTIONS(2647), + [anon_sym_U_SQUOTE] = ACTIONS(2647), + [anon_sym_u8_SQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_L_DQUOTE] = ACTIONS(2647), + [anon_sym_u_DQUOTE] = ACTIONS(2647), + [anon_sym_U_DQUOTE] = ACTIONS(2647), + [anon_sym_u8_DQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [sym_true] = ACTIONS(2645), + [sym_false] = ACTIONS(2645), + [sym_null] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2645), + [anon_sym_decltype] = ACTIONS(2645), + [anon_sym_virtual] = ACTIONS(2645), + [anon_sym_explicit] = ACTIONS(2645), + [anon_sym_typename] = ACTIONS(2645), + [anon_sym_template] = ACTIONS(2645), + [anon_sym_operator] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2645), + [anon_sym_delete] = ACTIONS(2645), + [anon_sym_throw] = ACTIONS(2645), + [anon_sym_namespace] = ACTIONS(2645), + [anon_sym_using] = ACTIONS(2645), + [anon_sym_static_assert] = ACTIONS(2645), + [anon_sym_concept] = ACTIONS(2645), + [anon_sym_co_return] = ACTIONS(2645), + [anon_sym_co_yield] = ACTIONS(2645), + [anon_sym_R_DQUOTE] = ACTIONS(2647), + [anon_sym_LR_DQUOTE] = ACTIONS(2647), + [anon_sym_uR_DQUOTE] = ACTIONS(2647), + [anon_sym_UR_DQUOTE] = ACTIONS(2647), + [anon_sym_u8R_DQUOTE] = ACTIONS(2647), + [anon_sym_co_await] = ACTIONS(2645), + [anon_sym_new] = ACTIONS(2645), + [anon_sym_requires] = ACTIONS(2645), + [sym_this] = ACTIONS(2645), + [sym_nullptr] = ACTIONS(2645), + }, + [1038] = { + [sym_identifier] = ACTIONS(2669), + [aux_sym_preproc_include_token1] = ACTIONS(2669), + [aux_sym_preproc_def_token1] = ACTIONS(2669), + [aux_sym_preproc_if_token1] = ACTIONS(2669), + [aux_sym_preproc_if_token2] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), + [sym_preproc_directive] = ACTIONS(2669), + [anon_sym_LPAREN2] = ACTIONS(2671), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_TILDE] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP_AMP] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2669), + [anon_sym_extern] = ACTIONS(2669), + [anon_sym___attribute__] = ACTIONS(2669), + [anon_sym_COLON_COLON] = ACTIONS(2671), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), + [anon_sym___declspec] = ACTIONS(2669), + [anon_sym___based] = ACTIONS(2669), + [anon_sym___cdecl] = ACTIONS(2669), + [anon_sym___clrcall] = ACTIONS(2669), + [anon_sym___stdcall] = ACTIONS(2669), + [anon_sym___fastcall] = ACTIONS(2669), + [anon_sym___thiscall] = ACTIONS(2669), + [anon_sym___vectorcall] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_register] = ACTIONS(2669), + [anon_sym_inline] = ACTIONS(2669), + [anon_sym_thread_local] = ACTIONS(2669), + [anon_sym_input] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_volatile] = ACTIONS(2669), + [anon_sym_restrict] = ACTIONS(2669), + [anon_sym__Atomic] = ACTIONS(2669), + [anon_sym_mutable] = ACTIONS(2669), + [anon_sym_constexpr] = ACTIONS(2669), + [anon_sym_constinit] = ACTIONS(2669), + [anon_sym_consteval] = ACTIONS(2669), + [anon_sym_signed] = ACTIONS(2669), + [anon_sym_unsigned] = ACTIONS(2669), + [anon_sym_long] = ACTIONS(2669), + [anon_sym_short] = ACTIONS(2669), + [sym_primitive_type] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_class] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2669), + [anon_sym_case] = ACTIONS(2669), + [anon_sym_default] = ACTIONS(2669), + [anon_sym_while] = ACTIONS(2669), + [anon_sym_do] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2671), + [anon_sym_sizeof] = ACTIONS(2669), + [sym_number_literal] = ACTIONS(2671), + [anon_sym_L_SQUOTE] = ACTIONS(2671), + [anon_sym_u_SQUOTE] = ACTIONS(2671), + [anon_sym_U_SQUOTE] = ACTIONS(2671), + [anon_sym_u8_SQUOTE] = ACTIONS(2671), + [anon_sym_SQUOTE] = ACTIONS(2671), + [anon_sym_L_DQUOTE] = ACTIONS(2671), + [anon_sym_u_DQUOTE] = ACTIONS(2671), + [anon_sym_U_DQUOTE] = ACTIONS(2671), + [anon_sym_u8_DQUOTE] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(2671), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_null] = ACTIONS(2669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2669), + [anon_sym_decltype] = ACTIONS(2669), + [anon_sym_virtual] = ACTIONS(2669), + [anon_sym_explicit] = ACTIONS(2669), + [anon_sym_typename] = ACTIONS(2669), + [anon_sym_template] = ACTIONS(2669), + [anon_sym_operator] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2669), + [anon_sym_delete] = ACTIONS(2669), + [anon_sym_throw] = ACTIONS(2669), + [anon_sym_namespace] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2669), + [anon_sym_static_assert] = ACTIONS(2669), + [anon_sym_concept] = ACTIONS(2669), + [anon_sym_co_return] = ACTIONS(2669), + [anon_sym_co_yield] = ACTIONS(2669), + [anon_sym_R_DQUOTE] = ACTIONS(2671), + [anon_sym_LR_DQUOTE] = ACTIONS(2671), + [anon_sym_uR_DQUOTE] = ACTIONS(2671), + [anon_sym_UR_DQUOTE] = ACTIONS(2671), + [anon_sym_u8R_DQUOTE] = ACTIONS(2671), + [anon_sym_co_await] = ACTIONS(2669), + [anon_sym_new] = ACTIONS(2669), + [anon_sym_requires] = ACTIONS(2669), + [sym_this] = ACTIONS(2669), + [sym_nullptr] = ACTIONS(2669), + }, + [1039] = { + [ts_builtin_sym_end] = ACTIONS(2651), + [sym_identifier] = ACTIONS(2649), + [aux_sym_preproc_include_token1] = ACTIONS(2649), + [aux_sym_preproc_def_token1] = ACTIONS(2649), + [aux_sym_preproc_if_token1] = ACTIONS(2649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), + [sym_preproc_directive] = ACTIONS(2649), + [anon_sym_LPAREN2] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_typedef] = ACTIONS(2649), + [anon_sym_extern] = ACTIONS(2649), + [anon_sym___attribute__] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), + [anon_sym___declspec] = ACTIONS(2649), + [anon_sym___based] = ACTIONS(2649), + [anon_sym___cdecl] = ACTIONS(2649), + [anon_sym___clrcall] = ACTIONS(2649), + [anon_sym___stdcall] = ACTIONS(2649), + [anon_sym___fastcall] = ACTIONS(2649), + [anon_sym___thiscall] = ACTIONS(2649), + [anon_sym___vectorcall] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_static] = ACTIONS(2649), + [anon_sym_register] = ACTIONS(2649), + [anon_sym_inline] = ACTIONS(2649), + [anon_sym_thread_local] = ACTIONS(2649), + [anon_sym_input] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_volatile] = ACTIONS(2649), + [anon_sym_restrict] = ACTIONS(2649), + [anon_sym__Atomic] = ACTIONS(2649), + [anon_sym_mutable] = ACTIONS(2649), + [anon_sym_constexpr] = ACTIONS(2649), + [anon_sym_constinit] = ACTIONS(2649), + [anon_sym_consteval] = ACTIONS(2649), + [anon_sym_signed] = ACTIONS(2649), + [anon_sym_unsigned] = ACTIONS(2649), + [anon_sym_long] = ACTIONS(2649), + [anon_sym_short] = ACTIONS(2649), + [sym_primitive_type] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_class] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_switch] = ACTIONS(2649), + [anon_sym_case] = ACTIONS(2649), + [anon_sym_default] = ACTIONS(2649), + [anon_sym_while] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_compl] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_sizeof] = ACTIONS(2649), + [sym_number_literal] = ACTIONS(2651), + [anon_sym_L_SQUOTE] = ACTIONS(2651), + [anon_sym_u_SQUOTE] = ACTIONS(2651), + [anon_sym_U_SQUOTE] = ACTIONS(2651), + [anon_sym_u8_SQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_L_DQUOTE] = ACTIONS(2651), + [anon_sym_u_DQUOTE] = ACTIONS(2651), + [anon_sym_U_DQUOTE] = ACTIONS(2651), + [anon_sym_u8_DQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_null] = ACTIONS(2649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2649), + [anon_sym_decltype] = ACTIONS(2649), + [anon_sym_virtual] = ACTIONS(2649), + [anon_sym_explicit] = ACTIONS(2649), + [anon_sym_typename] = ACTIONS(2649), + [anon_sym_template] = ACTIONS(2649), + [anon_sym_operator] = ACTIONS(2649), + [anon_sym_try] = ACTIONS(2649), + [anon_sym_delete] = ACTIONS(2649), + [anon_sym_throw] = ACTIONS(2649), + [anon_sym_namespace] = ACTIONS(2649), + [anon_sym_using] = ACTIONS(2649), + [anon_sym_static_assert] = ACTIONS(2649), + [anon_sym_concept] = ACTIONS(2649), + [anon_sym_co_return] = ACTIONS(2649), + [anon_sym_co_yield] = ACTIONS(2649), + [anon_sym_R_DQUOTE] = ACTIONS(2651), + [anon_sym_LR_DQUOTE] = ACTIONS(2651), + [anon_sym_uR_DQUOTE] = ACTIONS(2651), + [anon_sym_UR_DQUOTE] = ACTIONS(2651), + [anon_sym_u8R_DQUOTE] = ACTIONS(2651), + [anon_sym_co_await] = ACTIONS(2649), + [anon_sym_new] = ACTIONS(2649), + [anon_sym_requires] = ACTIONS(2649), + [sym_this] = ACTIONS(2649), + [sym_nullptr] = ACTIONS(2649), + }, + [1040] = { + [ts_builtin_sym_end] = ACTIONS(2789), + [sym_identifier] = ACTIONS(2787), + [aux_sym_preproc_include_token1] = ACTIONS(2787), + [aux_sym_preproc_def_token1] = ACTIONS(2787), + [aux_sym_preproc_if_token1] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2787), + [sym_preproc_directive] = ACTIONS(2787), + [anon_sym_LPAREN2] = ACTIONS(2789), + [anon_sym_BANG] = ACTIONS(2789), + [anon_sym_TILDE] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2787), + [anon_sym_PLUS] = ACTIONS(2787), + [anon_sym_STAR] = ACTIONS(2789), + [anon_sym_AMP_AMP] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(2787), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym_typedef] = ACTIONS(2787), + [anon_sym_extern] = ACTIONS(2787), + [anon_sym___attribute__] = ACTIONS(2787), + [anon_sym_COLON_COLON] = ACTIONS(2789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2789), + [anon_sym___declspec] = ACTIONS(2787), + [anon_sym___based] = ACTIONS(2787), + [anon_sym___cdecl] = ACTIONS(2787), + [anon_sym___clrcall] = ACTIONS(2787), + [anon_sym___stdcall] = ACTIONS(2787), + [anon_sym___fastcall] = ACTIONS(2787), + [anon_sym___thiscall] = ACTIONS(2787), + [anon_sym___vectorcall] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_static] = ACTIONS(2787), + [anon_sym_register] = ACTIONS(2787), + [anon_sym_inline] = ACTIONS(2787), + [anon_sym_thread_local] = ACTIONS(2787), + [anon_sym_input] = ACTIONS(2787), + [anon_sym_const] = ACTIONS(2787), + [anon_sym_volatile] = ACTIONS(2787), + [anon_sym_restrict] = ACTIONS(2787), + [anon_sym__Atomic] = ACTIONS(2787), + [anon_sym_mutable] = ACTIONS(2787), + [anon_sym_constexpr] = ACTIONS(2787), + [anon_sym_constinit] = ACTIONS(2787), + [anon_sym_consteval] = ACTIONS(2787), + [anon_sym_signed] = ACTIONS(2787), + [anon_sym_unsigned] = ACTIONS(2787), + [anon_sym_long] = ACTIONS(2787), + [anon_sym_short] = ACTIONS(2787), + [sym_primitive_type] = ACTIONS(2787), + [anon_sym_enum] = ACTIONS(2787), + [anon_sym_class] = ACTIONS(2787), + [anon_sym_struct] = ACTIONS(2787), + [anon_sym_union] = ACTIONS(2787), + [anon_sym_if] = ACTIONS(2787), + [anon_sym_switch] = ACTIONS(2787), + [anon_sym_case] = ACTIONS(2787), + [anon_sym_default] = ACTIONS(2787), + [anon_sym_while] = ACTIONS(2787), + [anon_sym_do] = ACTIONS(2787), + [anon_sym_for] = ACTIONS(2787), + [anon_sym_return] = ACTIONS(2787), + [anon_sym_break] = ACTIONS(2787), + [anon_sym_continue] = ACTIONS(2787), + [anon_sym_goto] = ACTIONS(2787), + [anon_sym_not] = ACTIONS(2787), + [anon_sym_compl] = ACTIONS(2787), + [anon_sym_DASH_DASH] = ACTIONS(2789), + [anon_sym_PLUS_PLUS] = ACTIONS(2789), + [anon_sym_sizeof] = ACTIONS(2787), + [sym_number_literal] = ACTIONS(2789), + [anon_sym_L_SQUOTE] = ACTIONS(2789), + [anon_sym_u_SQUOTE] = ACTIONS(2789), + [anon_sym_U_SQUOTE] = ACTIONS(2789), + [anon_sym_u8_SQUOTE] = ACTIONS(2789), + [anon_sym_SQUOTE] = ACTIONS(2789), + [anon_sym_L_DQUOTE] = ACTIONS(2789), + [anon_sym_u_DQUOTE] = ACTIONS(2789), + [anon_sym_U_DQUOTE] = ACTIONS(2789), + [anon_sym_u8_DQUOTE] = ACTIONS(2789), + [anon_sym_DQUOTE] = ACTIONS(2789), + [sym_true] = ACTIONS(2787), + [sym_false] = ACTIONS(2787), + [sym_null] = ACTIONS(2787), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2787), + [anon_sym_decltype] = ACTIONS(2787), + [anon_sym_virtual] = ACTIONS(2787), + [anon_sym_explicit] = ACTIONS(2787), + [anon_sym_typename] = ACTIONS(2787), + [anon_sym_template] = ACTIONS(2787), + [anon_sym_operator] = ACTIONS(2787), + [anon_sym_try] = ACTIONS(2787), + [anon_sym_delete] = ACTIONS(2787), + [anon_sym_throw] = ACTIONS(2787), + [anon_sym_namespace] = ACTIONS(2787), + [anon_sym_using] = ACTIONS(2787), + [anon_sym_static_assert] = ACTIONS(2787), + [anon_sym_concept] = ACTIONS(2787), + [anon_sym_co_return] = ACTIONS(2787), + [anon_sym_co_yield] = ACTIONS(2787), + [anon_sym_R_DQUOTE] = ACTIONS(2789), + [anon_sym_LR_DQUOTE] = ACTIONS(2789), + [anon_sym_uR_DQUOTE] = ACTIONS(2789), + [anon_sym_UR_DQUOTE] = ACTIONS(2789), + [anon_sym_u8R_DQUOTE] = ACTIONS(2789), + [anon_sym_co_await] = ACTIONS(2787), + [anon_sym_new] = ACTIONS(2787), + [anon_sym_requires] = ACTIONS(2787), + [sym_this] = ACTIONS(2787), + [sym_nullptr] = ACTIONS(2787), + }, + [1041] = { + [sym_identifier] = ACTIONS(2649), + [aux_sym_preproc_include_token1] = ACTIONS(2649), + [aux_sym_preproc_def_token1] = ACTIONS(2649), + [aux_sym_preproc_if_token1] = ACTIONS(2649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), + [sym_preproc_directive] = ACTIONS(2649), + [anon_sym_LPAREN2] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_typedef] = ACTIONS(2649), + [anon_sym_extern] = ACTIONS(2649), + [anon_sym___attribute__] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), + [anon_sym___declspec] = ACTIONS(2649), + [anon_sym___based] = ACTIONS(2649), + [anon_sym___cdecl] = ACTIONS(2649), + [anon_sym___clrcall] = ACTIONS(2649), + [anon_sym___stdcall] = ACTIONS(2649), + [anon_sym___fastcall] = ACTIONS(2649), + [anon_sym___thiscall] = ACTIONS(2649), + [anon_sym___vectorcall] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_RBRACE] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_static] = ACTIONS(2649), + [anon_sym_register] = ACTIONS(2649), + [anon_sym_inline] = ACTIONS(2649), + [anon_sym_thread_local] = ACTIONS(2649), + [anon_sym_input] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_volatile] = ACTIONS(2649), + [anon_sym_restrict] = ACTIONS(2649), + [anon_sym__Atomic] = ACTIONS(2649), + [anon_sym_mutable] = ACTIONS(2649), + [anon_sym_constexpr] = ACTIONS(2649), + [anon_sym_constinit] = ACTIONS(2649), + [anon_sym_consteval] = ACTIONS(2649), + [anon_sym_signed] = ACTIONS(2649), + [anon_sym_unsigned] = ACTIONS(2649), + [anon_sym_long] = ACTIONS(2649), + [anon_sym_short] = ACTIONS(2649), + [sym_primitive_type] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_class] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_switch] = ACTIONS(2649), + [anon_sym_case] = ACTIONS(2649), + [anon_sym_default] = ACTIONS(2649), + [anon_sym_while] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_compl] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_sizeof] = ACTIONS(2649), + [sym_number_literal] = ACTIONS(2651), + [anon_sym_L_SQUOTE] = ACTIONS(2651), + [anon_sym_u_SQUOTE] = ACTIONS(2651), + [anon_sym_U_SQUOTE] = ACTIONS(2651), + [anon_sym_u8_SQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_L_DQUOTE] = ACTIONS(2651), + [anon_sym_u_DQUOTE] = ACTIONS(2651), + [anon_sym_U_DQUOTE] = ACTIONS(2651), + [anon_sym_u8_DQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_null] = ACTIONS(2649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2649), + [anon_sym_decltype] = ACTIONS(2649), + [anon_sym_virtual] = ACTIONS(2649), + [anon_sym_explicit] = ACTIONS(2649), + [anon_sym_typename] = ACTIONS(2649), + [anon_sym_template] = ACTIONS(2649), + [anon_sym_operator] = ACTIONS(2649), + [anon_sym_try] = ACTIONS(2649), + [anon_sym_delete] = ACTIONS(2649), + [anon_sym_throw] = ACTIONS(2649), + [anon_sym_namespace] = ACTIONS(2649), + [anon_sym_using] = ACTIONS(2649), + [anon_sym_static_assert] = ACTIONS(2649), + [anon_sym_concept] = ACTIONS(2649), + [anon_sym_co_return] = ACTIONS(2649), + [anon_sym_co_yield] = ACTIONS(2649), + [anon_sym_R_DQUOTE] = ACTIONS(2651), + [anon_sym_LR_DQUOTE] = ACTIONS(2651), + [anon_sym_uR_DQUOTE] = ACTIONS(2651), + [anon_sym_UR_DQUOTE] = ACTIONS(2651), + [anon_sym_u8R_DQUOTE] = ACTIONS(2651), + [anon_sym_co_await] = ACTIONS(2649), + [anon_sym_new] = ACTIONS(2649), + [anon_sym_requires] = ACTIONS(2649), + [sym_this] = ACTIONS(2649), + [sym_nullptr] = ACTIONS(2649), + }, + [1042] = { + [sym_identifier] = ACTIONS(2673), + [aux_sym_preproc_include_token1] = ACTIONS(2673), + [aux_sym_preproc_def_token1] = ACTIONS(2673), + [aux_sym_preproc_if_token1] = ACTIONS(2673), + [aux_sym_preproc_if_token2] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), + [sym_preproc_directive] = ACTIONS(2673), + [anon_sym_LPAREN2] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2673), + [anon_sym_PLUS] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_typedef] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2673), + [anon_sym___attribute__] = ACTIONS(2673), + [anon_sym_COLON_COLON] = ACTIONS(2675), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), + [anon_sym___declspec] = ACTIONS(2673), + [anon_sym___based] = ACTIONS(2673), + [anon_sym___cdecl] = ACTIONS(2673), + [anon_sym___clrcall] = ACTIONS(2673), + [anon_sym___stdcall] = ACTIONS(2673), + [anon_sym___fastcall] = ACTIONS(2673), + [anon_sym___thiscall] = ACTIONS(2673), + [anon_sym___vectorcall] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_static] = ACTIONS(2673), + [anon_sym_register] = ACTIONS(2673), + [anon_sym_inline] = ACTIONS(2673), + [anon_sym_thread_local] = ACTIONS(2673), + [anon_sym_input] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2673), + [anon_sym_volatile] = ACTIONS(2673), + [anon_sym_restrict] = ACTIONS(2673), + [anon_sym__Atomic] = ACTIONS(2673), + [anon_sym_mutable] = ACTIONS(2673), + [anon_sym_constexpr] = ACTIONS(2673), + [anon_sym_constinit] = ACTIONS(2673), + [anon_sym_consteval] = ACTIONS(2673), + [anon_sym_signed] = ACTIONS(2673), + [anon_sym_unsigned] = ACTIONS(2673), + [anon_sym_long] = ACTIONS(2673), + [anon_sym_short] = ACTIONS(2673), + [sym_primitive_type] = ACTIONS(2673), + [anon_sym_enum] = ACTIONS(2673), + [anon_sym_class] = ACTIONS(2673), + [anon_sym_struct] = ACTIONS(2673), + [anon_sym_union] = ACTIONS(2673), + [anon_sym_if] = ACTIONS(2673), + [anon_sym_switch] = ACTIONS(2673), + [anon_sym_case] = ACTIONS(2673), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2673), + [anon_sym_do] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2673), + [anon_sym_return] = ACTIONS(2673), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2673), + [anon_sym_goto] = ACTIONS(2673), + [anon_sym_not] = ACTIONS(2673), + [anon_sym_compl] = ACTIONS(2673), + [anon_sym_DASH_DASH] = ACTIONS(2675), + [anon_sym_PLUS_PLUS] = ACTIONS(2675), + [anon_sym_sizeof] = ACTIONS(2673), + [sym_number_literal] = ACTIONS(2675), + [anon_sym_L_SQUOTE] = ACTIONS(2675), + [anon_sym_u_SQUOTE] = ACTIONS(2675), + [anon_sym_U_SQUOTE] = ACTIONS(2675), + [anon_sym_u8_SQUOTE] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2675), + [anon_sym_L_DQUOTE] = ACTIONS(2675), + [anon_sym_u_DQUOTE] = ACTIONS(2675), + [anon_sym_U_DQUOTE] = ACTIONS(2675), + [anon_sym_u8_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [sym_true] = ACTIONS(2673), + [sym_false] = ACTIONS(2673), + [sym_null] = ACTIONS(2673), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2673), + [anon_sym_decltype] = ACTIONS(2673), + [anon_sym_virtual] = ACTIONS(2673), + [anon_sym_explicit] = ACTIONS(2673), + [anon_sym_typename] = ACTIONS(2673), + [anon_sym_template] = ACTIONS(2673), + [anon_sym_operator] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2673), + [anon_sym_delete] = ACTIONS(2673), + [anon_sym_throw] = ACTIONS(2673), + [anon_sym_namespace] = ACTIONS(2673), + [anon_sym_using] = ACTIONS(2673), + [anon_sym_static_assert] = ACTIONS(2673), + [anon_sym_concept] = ACTIONS(2673), + [anon_sym_co_return] = ACTIONS(2673), + [anon_sym_co_yield] = ACTIONS(2673), + [anon_sym_R_DQUOTE] = ACTIONS(2675), + [anon_sym_LR_DQUOTE] = ACTIONS(2675), + [anon_sym_uR_DQUOTE] = ACTIONS(2675), + [anon_sym_UR_DQUOTE] = ACTIONS(2675), + [anon_sym_u8R_DQUOTE] = ACTIONS(2675), + [anon_sym_co_await] = ACTIONS(2673), + [anon_sym_new] = ACTIONS(2673), + [anon_sym_requires] = ACTIONS(2673), + [sym_this] = ACTIONS(2673), + [sym_nullptr] = ACTIONS(2673), + }, + [1043] = { + [sym_identifier] = ACTIONS(2645), + [aux_sym_preproc_include_token1] = ACTIONS(2645), + [aux_sym_preproc_def_token1] = ACTIONS(2645), + [aux_sym_preproc_if_token1] = ACTIONS(2645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2645), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2645), + [sym_preproc_directive] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_typedef] = ACTIONS(2645), + [anon_sym_extern] = ACTIONS(2645), + [anon_sym___attribute__] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2647), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2647), + [anon_sym___declspec] = ACTIONS(2645), + [anon_sym___based] = ACTIONS(2645), + [anon_sym___cdecl] = ACTIONS(2645), + [anon_sym___clrcall] = ACTIONS(2645), + [anon_sym___stdcall] = ACTIONS(2645), + [anon_sym___fastcall] = ACTIONS(2645), + [anon_sym___thiscall] = ACTIONS(2645), + [anon_sym___vectorcall] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_RBRACE] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_static] = ACTIONS(2645), + [anon_sym_register] = ACTIONS(2645), + [anon_sym_inline] = ACTIONS(2645), + [anon_sym_thread_local] = ACTIONS(2645), + [anon_sym_input] = ACTIONS(2645), + [anon_sym_const] = ACTIONS(2645), + [anon_sym_volatile] = ACTIONS(2645), + [anon_sym_restrict] = ACTIONS(2645), + [anon_sym__Atomic] = ACTIONS(2645), + [anon_sym_mutable] = ACTIONS(2645), + [anon_sym_constexpr] = ACTIONS(2645), + [anon_sym_constinit] = ACTIONS(2645), + [anon_sym_consteval] = ACTIONS(2645), + [anon_sym_signed] = ACTIONS(2645), + [anon_sym_unsigned] = ACTIONS(2645), + [anon_sym_long] = ACTIONS(2645), + [anon_sym_short] = ACTIONS(2645), + [sym_primitive_type] = ACTIONS(2645), + [anon_sym_enum] = ACTIONS(2645), + [anon_sym_class] = ACTIONS(2645), + [anon_sym_struct] = ACTIONS(2645), + [anon_sym_union] = ACTIONS(2645), + [anon_sym_if] = ACTIONS(2645), + [anon_sym_switch] = ACTIONS(2645), + [anon_sym_case] = ACTIONS(2645), + [anon_sym_default] = ACTIONS(2645), + [anon_sym_while] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_for] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2645), + [anon_sym_continue] = ACTIONS(2645), + [anon_sym_goto] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_compl] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_sizeof] = ACTIONS(2645), + [sym_number_literal] = ACTIONS(2647), + [anon_sym_L_SQUOTE] = ACTIONS(2647), + [anon_sym_u_SQUOTE] = ACTIONS(2647), + [anon_sym_U_SQUOTE] = ACTIONS(2647), + [anon_sym_u8_SQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_L_DQUOTE] = ACTIONS(2647), + [anon_sym_u_DQUOTE] = ACTIONS(2647), + [anon_sym_U_DQUOTE] = ACTIONS(2647), + [anon_sym_u8_DQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [sym_true] = ACTIONS(2645), + [sym_false] = ACTIONS(2645), + [sym_null] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2645), + [anon_sym_decltype] = ACTIONS(2645), + [anon_sym_virtual] = ACTIONS(2645), + [anon_sym_explicit] = ACTIONS(2645), + [anon_sym_typename] = ACTIONS(2645), + [anon_sym_template] = ACTIONS(2645), + [anon_sym_operator] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2645), + [anon_sym_delete] = ACTIONS(2645), + [anon_sym_throw] = ACTIONS(2645), + [anon_sym_namespace] = ACTIONS(2645), + [anon_sym_using] = ACTIONS(2645), + [anon_sym_static_assert] = ACTIONS(2645), + [anon_sym_concept] = ACTIONS(2645), + [anon_sym_co_return] = ACTIONS(2645), + [anon_sym_co_yield] = ACTIONS(2645), + [anon_sym_R_DQUOTE] = ACTIONS(2647), + [anon_sym_LR_DQUOTE] = ACTIONS(2647), + [anon_sym_uR_DQUOTE] = ACTIONS(2647), + [anon_sym_UR_DQUOTE] = ACTIONS(2647), + [anon_sym_u8R_DQUOTE] = ACTIONS(2647), + [anon_sym_co_await] = ACTIONS(2645), + [anon_sym_new] = ACTIONS(2645), + [anon_sym_requires] = ACTIONS(2645), + [sym_this] = ACTIONS(2645), + [sym_nullptr] = ACTIONS(2645), + }, + [1044] = { + [sym_identifier] = ACTIONS(2641), + [aux_sym_preproc_include_token1] = ACTIONS(2641), + [aux_sym_preproc_def_token1] = ACTIONS(2641), + [aux_sym_preproc_if_token1] = ACTIONS(2641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), + [sym_preproc_directive] = ACTIONS(2641), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_AMP_AMP] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_typedef] = ACTIONS(2641), + [anon_sym_extern] = ACTIONS(2641), + [anon_sym___attribute__] = ACTIONS(2641), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), + [anon_sym___declspec] = ACTIONS(2641), + [anon_sym___based] = ACTIONS(2641), + [anon_sym___cdecl] = ACTIONS(2641), + [anon_sym___clrcall] = ACTIONS(2641), + [anon_sym___stdcall] = ACTIONS(2641), + [anon_sym___fastcall] = ACTIONS(2641), + [anon_sym___thiscall] = ACTIONS(2641), + [anon_sym___vectorcall] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_RBRACE] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_static] = ACTIONS(2641), + [anon_sym_register] = ACTIONS(2641), + [anon_sym_inline] = ACTIONS(2641), + [anon_sym_thread_local] = ACTIONS(2641), + [anon_sym_input] = ACTIONS(2641), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_volatile] = ACTIONS(2641), + [anon_sym_restrict] = ACTIONS(2641), + [anon_sym__Atomic] = ACTIONS(2641), + [anon_sym_mutable] = ACTIONS(2641), + [anon_sym_constexpr] = ACTIONS(2641), + [anon_sym_constinit] = ACTIONS(2641), + [anon_sym_consteval] = ACTIONS(2641), + [anon_sym_signed] = ACTIONS(2641), + [anon_sym_unsigned] = ACTIONS(2641), + [anon_sym_long] = ACTIONS(2641), + [anon_sym_short] = ACTIONS(2641), + [sym_primitive_type] = ACTIONS(2641), + [anon_sym_enum] = ACTIONS(2641), + [anon_sym_class] = ACTIONS(2641), + [anon_sym_struct] = ACTIONS(2641), + [anon_sym_union] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2641), + [anon_sym_switch] = ACTIONS(2641), + [anon_sym_case] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2641), + [anon_sym_while] = ACTIONS(2641), + [anon_sym_do] = ACTIONS(2641), + [anon_sym_for] = ACTIONS(2641), + [anon_sym_return] = ACTIONS(2641), + [anon_sym_break] = ACTIONS(2641), + [anon_sym_continue] = ACTIONS(2641), + [anon_sym_goto] = ACTIONS(2641), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_compl] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_sizeof] = ACTIONS(2641), + [sym_number_literal] = ACTIONS(2643), + [anon_sym_L_SQUOTE] = ACTIONS(2643), + [anon_sym_u_SQUOTE] = ACTIONS(2643), + [anon_sym_U_SQUOTE] = ACTIONS(2643), + [anon_sym_u8_SQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_L_DQUOTE] = ACTIONS(2643), + [anon_sym_u_DQUOTE] = ACTIONS(2643), + [anon_sym_U_DQUOTE] = ACTIONS(2643), + [anon_sym_u8_DQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [sym_true] = ACTIONS(2641), + [sym_false] = ACTIONS(2641), + [sym_null] = ACTIONS(2641), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2641), + [anon_sym_decltype] = ACTIONS(2641), + [anon_sym_virtual] = ACTIONS(2641), + [anon_sym_explicit] = ACTIONS(2641), + [anon_sym_typename] = ACTIONS(2641), + [anon_sym_template] = ACTIONS(2641), + [anon_sym_operator] = ACTIONS(2641), + [anon_sym_try] = ACTIONS(2641), + [anon_sym_delete] = ACTIONS(2641), + [anon_sym_throw] = ACTIONS(2641), + [anon_sym_namespace] = ACTIONS(2641), + [anon_sym_using] = ACTIONS(2641), + [anon_sym_static_assert] = ACTIONS(2641), + [anon_sym_concept] = ACTIONS(2641), + [anon_sym_co_return] = ACTIONS(2641), + [anon_sym_co_yield] = ACTIONS(2641), + [anon_sym_R_DQUOTE] = ACTIONS(2643), + [anon_sym_LR_DQUOTE] = ACTIONS(2643), + [anon_sym_uR_DQUOTE] = ACTIONS(2643), + [anon_sym_UR_DQUOTE] = ACTIONS(2643), + [anon_sym_u8R_DQUOTE] = ACTIONS(2643), + [anon_sym_co_await] = ACTIONS(2641), + [anon_sym_new] = ACTIONS(2641), + [anon_sym_requires] = ACTIONS(2641), + [sym_this] = ACTIONS(2641), + [sym_nullptr] = ACTIONS(2641), + }, + [1045] = { + [sym_identifier] = ACTIONS(2637), + [aux_sym_preproc_include_token1] = ACTIONS(2637), + [aux_sym_preproc_def_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token1] = ACTIONS(2637), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), + [sym_preproc_directive] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_typedef] = ACTIONS(2637), + [anon_sym_extern] = ACTIONS(2637), + [anon_sym___attribute__] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2639), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), + [anon_sym___declspec] = ACTIONS(2637), + [anon_sym___based] = ACTIONS(2637), + [anon_sym___cdecl] = ACTIONS(2637), + [anon_sym___clrcall] = ACTIONS(2637), + [anon_sym___stdcall] = ACTIONS(2637), + [anon_sym___fastcall] = ACTIONS(2637), + [anon_sym___thiscall] = ACTIONS(2637), + [anon_sym___vectorcall] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_static] = ACTIONS(2637), + [anon_sym_register] = ACTIONS(2637), + [anon_sym_inline] = ACTIONS(2637), + [anon_sym_thread_local] = ACTIONS(2637), + [anon_sym_input] = ACTIONS(2637), + [anon_sym_const] = ACTIONS(2637), + [anon_sym_volatile] = ACTIONS(2637), + [anon_sym_restrict] = ACTIONS(2637), + [anon_sym__Atomic] = ACTIONS(2637), + [anon_sym_mutable] = ACTIONS(2637), + [anon_sym_constexpr] = ACTIONS(2637), + [anon_sym_constinit] = ACTIONS(2637), + [anon_sym_consteval] = ACTIONS(2637), + [anon_sym_signed] = ACTIONS(2637), + [anon_sym_unsigned] = ACTIONS(2637), + [anon_sym_long] = ACTIONS(2637), + [anon_sym_short] = ACTIONS(2637), + [sym_primitive_type] = ACTIONS(2637), + [anon_sym_enum] = ACTIONS(2637), + [anon_sym_class] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2637), + [anon_sym_union] = ACTIONS(2637), + [anon_sym_if] = ACTIONS(2637), + [anon_sym_switch] = ACTIONS(2637), + [anon_sym_case] = ACTIONS(2637), + [anon_sym_default] = ACTIONS(2637), + [anon_sym_while] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_for] = ACTIONS(2637), + [anon_sym_return] = ACTIONS(2637), + [anon_sym_break] = ACTIONS(2637), + [anon_sym_continue] = ACTIONS(2637), + [anon_sym_goto] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_compl] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2637), + [sym_number_literal] = ACTIONS(2639), + [anon_sym_L_SQUOTE] = ACTIONS(2639), + [anon_sym_u_SQUOTE] = ACTIONS(2639), + [anon_sym_U_SQUOTE] = ACTIONS(2639), + [anon_sym_u8_SQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_L_DQUOTE] = ACTIONS(2639), + [anon_sym_u_DQUOTE] = ACTIONS(2639), + [anon_sym_U_DQUOTE] = ACTIONS(2639), + [anon_sym_u8_DQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [sym_true] = ACTIONS(2637), + [sym_false] = ACTIONS(2637), + [sym_null] = ACTIONS(2637), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2637), + [anon_sym_decltype] = ACTIONS(2637), + [anon_sym_virtual] = ACTIONS(2637), + [anon_sym_explicit] = ACTIONS(2637), + [anon_sym_typename] = ACTIONS(2637), + [anon_sym_template] = ACTIONS(2637), + [anon_sym_operator] = ACTIONS(2637), + [anon_sym_try] = ACTIONS(2637), + [anon_sym_delete] = ACTIONS(2637), + [anon_sym_throw] = ACTIONS(2637), + [anon_sym_namespace] = ACTIONS(2637), + [anon_sym_using] = ACTIONS(2637), + [anon_sym_static_assert] = ACTIONS(2637), + [anon_sym_concept] = ACTIONS(2637), + [anon_sym_co_return] = ACTIONS(2637), + [anon_sym_co_yield] = ACTIONS(2637), + [anon_sym_R_DQUOTE] = ACTIONS(2639), + [anon_sym_LR_DQUOTE] = ACTIONS(2639), + [anon_sym_uR_DQUOTE] = ACTIONS(2639), + [anon_sym_UR_DQUOTE] = ACTIONS(2639), + [anon_sym_u8R_DQUOTE] = ACTIONS(2639), + [anon_sym_co_await] = ACTIONS(2637), + [anon_sym_new] = ACTIONS(2637), + [anon_sym_requires] = ACTIONS(2637), + [sym_this] = ACTIONS(2637), + [sym_nullptr] = ACTIONS(2637), + }, + [1046] = { + [sym_identifier] = ACTIONS(2819), + [aux_sym_preproc_include_token1] = ACTIONS(2819), + [aux_sym_preproc_def_token1] = ACTIONS(2819), + [aux_sym_preproc_if_token1] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2819), + [sym_preproc_directive] = ACTIONS(2819), + [anon_sym_LPAREN2] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym_typedef] = ACTIONS(2819), + [anon_sym_extern] = ACTIONS(2819), + [anon_sym___attribute__] = ACTIONS(2819), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2821), + [anon_sym___declspec] = ACTIONS(2819), + [anon_sym___based] = ACTIONS(2819), + [anon_sym___cdecl] = ACTIONS(2819), + [anon_sym___clrcall] = ACTIONS(2819), + [anon_sym___stdcall] = ACTIONS(2819), + [anon_sym___fastcall] = ACTIONS(2819), + [anon_sym___thiscall] = ACTIONS(2819), + [anon_sym___vectorcall] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_static] = ACTIONS(2819), + [anon_sym_register] = ACTIONS(2819), + [anon_sym_inline] = ACTIONS(2819), + [anon_sym_thread_local] = ACTIONS(2819), + [anon_sym_input] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_volatile] = ACTIONS(2819), + [anon_sym_restrict] = ACTIONS(2819), + [anon_sym__Atomic] = ACTIONS(2819), + [anon_sym_mutable] = ACTIONS(2819), + [anon_sym_constexpr] = ACTIONS(2819), + [anon_sym_constinit] = ACTIONS(2819), + [anon_sym_consteval] = ACTIONS(2819), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [sym_primitive_type] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), + [anon_sym_class] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_union] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_switch] = ACTIONS(2819), + [anon_sym_case] = ACTIONS(2819), + [anon_sym_default] = ACTIONS(2819), + [anon_sym_while] = ACTIONS(2819), + [anon_sym_do] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_goto] = ACTIONS(2819), + [anon_sym_not] = ACTIONS(2819), + [anon_sym_compl] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_sizeof] = ACTIONS(2819), + [sym_number_literal] = ACTIONS(2821), + [anon_sym_L_SQUOTE] = ACTIONS(2821), + [anon_sym_u_SQUOTE] = ACTIONS(2821), + [anon_sym_U_SQUOTE] = ACTIONS(2821), + [anon_sym_u8_SQUOTE] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2821), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2819), + [sym_false] = ACTIONS(2819), + [sym_null] = ACTIONS(2819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2819), + [anon_sym_decltype] = ACTIONS(2819), + [anon_sym_virtual] = ACTIONS(2819), + [anon_sym_explicit] = ACTIONS(2819), + [anon_sym_typename] = ACTIONS(2819), + [anon_sym_template] = ACTIONS(2819), + [anon_sym_operator] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2819), + [anon_sym_delete] = ACTIONS(2819), + [anon_sym_throw] = ACTIONS(2819), + [anon_sym_namespace] = ACTIONS(2819), + [anon_sym_using] = ACTIONS(2819), + [anon_sym_static_assert] = ACTIONS(2819), + [anon_sym_concept] = ACTIONS(2819), + [anon_sym_co_return] = ACTIONS(2819), + [anon_sym_co_yield] = ACTIONS(2819), + [anon_sym_R_DQUOTE] = ACTIONS(2821), + [anon_sym_LR_DQUOTE] = ACTIONS(2821), + [anon_sym_uR_DQUOTE] = ACTIONS(2821), + [anon_sym_UR_DQUOTE] = ACTIONS(2821), + [anon_sym_u8R_DQUOTE] = ACTIONS(2821), + [anon_sym_co_await] = ACTIONS(2819), + [anon_sym_new] = ACTIONS(2819), + [anon_sym_requires] = ACTIONS(2819), + [sym_this] = ACTIONS(2819), + [sym_nullptr] = ACTIONS(2819), + }, + [1047] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2805), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2805), + [anon_sym_RBRACE] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym_input] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2805), + [anon_sym_sizeof] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2805), + [anon_sym_L_SQUOTE] = ACTIONS(2805), + [anon_sym_u_SQUOTE] = ACTIONS(2805), + [anon_sym_U_SQUOTE] = ACTIONS(2805), + [anon_sym_u8_SQUOTE] = ACTIONS(2805), + [anon_sym_SQUOTE] = ACTIONS(2805), + [anon_sym_L_DQUOTE] = ACTIONS(2805), + [anon_sym_u_DQUOTE] = ACTIONS(2805), + [anon_sym_U_DQUOTE] = ACTIONS(2805), + [anon_sym_u8_DQUOTE] = ACTIONS(2805), + [anon_sym_DQUOTE] = ACTIONS(2805), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [sym_null] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2805), + [anon_sym_LR_DQUOTE] = ACTIONS(2805), + [anon_sym_uR_DQUOTE] = ACTIONS(2805), + [anon_sym_UR_DQUOTE] = ACTIONS(2805), + [anon_sym_u8R_DQUOTE] = ACTIONS(2805), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [sym_this] = ACTIONS(2803), + [sym_nullptr] = ACTIONS(2803), + }, + [1048] = { + [ts_builtin_sym_end] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2725), + [aux_sym_preproc_include_token1] = ACTIONS(2725), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), + [sym_preproc_directive] = ACTIONS(2725), + [anon_sym_LPAREN2] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_typedef] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym___attribute__] = ACTIONS(2725), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), + [anon_sym___declspec] = ACTIONS(2725), + [anon_sym___based] = ACTIONS(2725), + [anon_sym___cdecl] = ACTIONS(2725), + [anon_sym___clrcall] = ACTIONS(2725), + [anon_sym___stdcall] = ACTIONS(2725), + [anon_sym___fastcall] = ACTIONS(2725), + [anon_sym___thiscall] = ACTIONS(2725), + [anon_sym___vectorcall] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_register] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym_thread_local] = ACTIONS(2725), + [anon_sym_input] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_volatile] = ACTIONS(2725), + [anon_sym_restrict] = ACTIONS(2725), + [anon_sym__Atomic] = ACTIONS(2725), + [anon_sym_mutable] = ACTIONS(2725), + [anon_sym_constexpr] = ACTIONS(2725), + [anon_sym_constinit] = ACTIONS(2725), + [anon_sym_consteval] = ACTIONS(2725), + [anon_sym_signed] = ACTIONS(2725), + [anon_sym_unsigned] = ACTIONS(2725), + [anon_sym_long] = ACTIONS(2725), + [anon_sym_short] = ACTIONS(2725), + [sym_primitive_type] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_case] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2725), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_compl] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2725), + [sym_number_literal] = ACTIONS(2727), + [anon_sym_L_SQUOTE] = ACTIONS(2727), + [anon_sym_u_SQUOTE] = ACTIONS(2727), + [anon_sym_U_SQUOTE] = ACTIONS(2727), + [anon_sym_u8_SQUOTE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_L_DQUOTE] = ACTIONS(2727), + [anon_sym_u_DQUOTE] = ACTIONS(2727), + [anon_sym_U_DQUOTE] = ACTIONS(2727), + [anon_sym_u8_DQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [sym_null] = ACTIONS(2725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2725), + [anon_sym_decltype] = ACTIONS(2725), + [anon_sym_virtual] = ACTIONS(2725), + [anon_sym_explicit] = ACTIONS(2725), + [anon_sym_typename] = ACTIONS(2725), + [anon_sym_template] = ACTIONS(2725), + [anon_sym_operator] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_namespace] = ACTIONS(2725), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2725), + [anon_sym_concept] = ACTIONS(2725), + [anon_sym_co_return] = ACTIONS(2725), + [anon_sym_co_yield] = ACTIONS(2725), + [anon_sym_R_DQUOTE] = ACTIONS(2727), + [anon_sym_LR_DQUOTE] = ACTIONS(2727), + [anon_sym_uR_DQUOTE] = ACTIONS(2727), + [anon_sym_UR_DQUOTE] = ACTIONS(2727), + [anon_sym_u8R_DQUOTE] = ACTIONS(2727), + [anon_sym_co_await] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_requires] = ACTIONS(2725), + [sym_this] = ACTIONS(2725), + [sym_nullptr] = ACTIONS(2725), + }, + [1049] = { + [sym_identifier] = ACTIONS(2629), + [aux_sym_preproc_include_token1] = ACTIONS(2629), + [aux_sym_preproc_def_token1] = ACTIONS(2629), + [aux_sym_preproc_if_token1] = ACTIONS(2629), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2629), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2629), + [sym_preproc_directive] = ACTIONS(2629), + [anon_sym_LPAREN2] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_typedef] = ACTIONS(2629), + [anon_sym_extern] = ACTIONS(2629), + [anon_sym___attribute__] = ACTIONS(2629), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2631), + [anon_sym___declspec] = ACTIONS(2629), + [anon_sym___based] = ACTIONS(2629), + [anon_sym___cdecl] = ACTIONS(2629), + [anon_sym___clrcall] = ACTIONS(2629), + [anon_sym___stdcall] = ACTIONS(2629), + [anon_sym___fastcall] = ACTIONS(2629), + [anon_sym___thiscall] = ACTIONS(2629), + [anon_sym___vectorcall] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_static] = ACTIONS(2629), + [anon_sym_register] = ACTIONS(2629), + [anon_sym_inline] = ACTIONS(2629), + [anon_sym_thread_local] = ACTIONS(2629), + [anon_sym_input] = ACTIONS(2629), + [anon_sym_const] = ACTIONS(2629), + [anon_sym_volatile] = ACTIONS(2629), + [anon_sym_restrict] = ACTIONS(2629), + [anon_sym__Atomic] = ACTIONS(2629), + [anon_sym_mutable] = ACTIONS(2629), + [anon_sym_constexpr] = ACTIONS(2629), + [anon_sym_constinit] = ACTIONS(2629), + [anon_sym_consteval] = ACTIONS(2629), + [anon_sym_signed] = ACTIONS(2629), + [anon_sym_unsigned] = ACTIONS(2629), + [anon_sym_long] = ACTIONS(2629), + [anon_sym_short] = ACTIONS(2629), + [sym_primitive_type] = ACTIONS(2629), + [anon_sym_enum] = ACTIONS(2629), + [anon_sym_class] = ACTIONS(2629), + [anon_sym_struct] = ACTIONS(2629), + [anon_sym_union] = ACTIONS(2629), + [anon_sym_if] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2629), + [anon_sym_case] = ACTIONS(2629), + [anon_sym_default] = ACTIONS(2629), + [anon_sym_while] = ACTIONS(2629), + [anon_sym_do] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2629), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_break] = ACTIONS(2629), + [anon_sym_continue] = ACTIONS(2629), + [anon_sym_goto] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_compl] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_sizeof] = ACTIONS(2629), + [sym_number_literal] = ACTIONS(2631), + [anon_sym_L_SQUOTE] = ACTIONS(2631), + [anon_sym_u_SQUOTE] = ACTIONS(2631), + [anon_sym_U_SQUOTE] = ACTIONS(2631), + [anon_sym_u8_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_L_DQUOTE] = ACTIONS(2631), + [anon_sym_u_DQUOTE] = ACTIONS(2631), + [anon_sym_U_DQUOTE] = ACTIONS(2631), + [anon_sym_u8_DQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [sym_true] = ACTIONS(2629), + [sym_false] = ACTIONS(2629), + [sym_null] = ACTIONS(2629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2629), + [anon_sym_decltype] = ACTIONS(2629), + [anon_sym_virtual] = ACTIONS(2629), + [anon_sym_explicit] = ACTIONS(2629), + [anon_sym_typename] = ACTIONS(2629), + [anon_sym_template] = ACTIONS(2629), + [anon_sym_operator] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2629), + [anon_sym_delete] = ACTIONS(2629), + [anon_sym_throw] = ACTIONS(2629), + [anon_sym_namespace] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2629), + [anon_sym_static_assert] = ACTIONS(2629), + [anon_sym_concept] = ACTIONS(2629), + [anon_sym_co_return] = ACTIONS(2629), + [anon_sym_co_yield] = ACTIONS(2629), + [anon_sym_R_DQUOTE] = ACTIONS(2631), + [anon_sym_LR_DQUOTE] = ACTIONS(2631), + [anon_sym_uR_DQUOTE] = ACTIONS(2631), + [anon_sym_UR_DQUOTE] = ACTIONS(2631), + [anon_sym_u8R_DQUOTE] = ACTIONS(2631), + [anon_sym_co_await] = ACTIONS(2629), + [anon_sym_new] = ACTIONS(2629), + [anon_sym_requires] = ACTIONS(2629), + [sym_this] = ACTIONS(2629), + [sym_nullptr] = ACTIONS(2629), + }, + [1050] = { + [sym_identifier] = ACTIONS(2677), + [aux_sym_preproc_include_token1] = ACTIONS(2677), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token2] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), + [sym_preproc_directive] = ACTIONS(2677), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym___attribute__] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), + [anon_sym___declspec] = ACTIONS(2677), + [anon_sym___based] = ACTIONS(2677), + [anon_sym___cdecl] = ACTIONS(2677), + [anon_sym___clrcall] = ACTIONS(2677), + [anon_sym___stdcall] = ACTIONS(2677), + [anon_sym___fastcall] = ACTIONS(2677), + [anon_sym___thiscall] = ACTIONS(2677), + [anon_sym___vectorcall] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_register] = ACTIONS(2677), + [anon_sym_inline] = ACTIONS(2677), + [anon_sym_thread_local] = ACTIONS(2677), + [anon_sym_input] = ACTIONS(2677), + [anon_sym_const] = ACTIONS(2677), + [anon_sym_volatile] = ACTIONS(2677), + [anon_sym_restrict] = ACTIONS(2677), + [anon_sym__Atomic] = ACTIONS(2677), + [anon_sym_mutable] = ACTIONS(2677), + [anon_sym_constexpr] = ACTIONS(2677), + [anon_sym_constinit] = ACTIONS(2677), + [anon_sym_consteval] = ACTIONS(2677), + [anon_sym_signed] = ACTIONS(2677), + [anon_sym_unsigned] = ACTIONS(2677), + [anon_sym_long] = ACTIONS(2677), + [anon_sym_short] = ACTIONS(2677), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(2677), + [anon_sym_union] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_case] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_goto] = ACTIONS(2677), + [anon_sym_not] = ACTIONS(2677), + [anon_sym_compl] = ACTIONS(2677), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_sizeof] = ACTIONS(2677), + [sym_number_literal] = ACTIONS(2679), + [anon_sym_L_SQUOTE] = ACTIONS(2679), + [anon_sym_u_SQUOTE] = ACTIONS(2679), + [anon_sym_U_SQUOTE] = ACTIONS(2679), + [anon_sym_u8_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_L_DQUOTE] = ACTIONS(2679), + [anon_sym_u_DQUOTE] = ACTIONS(2679), + [anon_sym_U_DQUOTE] = ACTIONS(2679), + [anon_sym_u8_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [sym_true] = ACTIONS(2677), + [sym_false] = ACTIONS(2677), + [sym_null] = ACTIONS(2677), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2677), + [anon_sym_decltype] = ACTIONS(2677), + [anon_sym_virtual] = ACTIONS(2677), + [anon_sym_explicit] = ACTIONS(2677), + [anon_sym_typename] = ACTIONS(2677), + [anon_sym_template] = ACTIONS(2677), + [anon_sym_operator] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_delete] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_namespace] = ACTIONS(2677), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_static_assert] = ACTIONS(2677), + [anon_sym_concept] = ACTIONS(2677), + [anon_sym_co_return] = ACTIONS(2677), + [anon_sym_co_yield] = ACTIONS(2677), + [anon_sym_R_DQUOTE] = ACTIONS(2679), + [anon_sym_LR_DQUOTE] = ACTIONS(2679), + [anon_sym_uR_DQUOTE] = ACTIONS(2679), + [anon_sym_UR_DQUOTE] = ACTIONS(2679), + [anon_sym_u8R_DQUOTE] = ACTIONS(2679), + [anon_sym_co_await] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_requires] = ACTIONS(2677), + [sym_this] = ACTIONS(2677), + [sym_nullptr] = ACTIONS(2677), + }, + [1051] = { + [sym_identifier] = ACTIONS(2799), + [aux_sym_preproc_include_token1] = ACTIONS(2799), + [aux_sym_preproc_def_token1] = ACTIONS(2799), + [aux_sym_preproc_if_token1] = ACTIONS(2799), + [aux_sym_preproc_if_token2] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2799), + [sym_preproc_directive] = ACTIONS(2799), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym_typedef] = ACTIONS(2799), + [anon_sym_extern] = ACTIONS(2799), + [anon_sym___attribute__] = ACTIONS(2799), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2799), + [anon_sym___based] = ACTIONS(2799), + [anon_sym___cdecl] = ACTIONS(2799), + [anon_sym___clrcall] = ACTIONS(2799), + [anon_sym___stdcall] = ACTIONS(2799), + [anon_sym___fastcall] = ACTIONS(2799), + [anon_sym___thiscall] = ACTIONS(2799), + [anon_sym___vectorcall] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_static] = ACTIONS(2799), + [anon_sym_register] = ACTIONS(2799), + [anon_sym_inline] = ACTIONS(2799), + [anon_sym_thread_local] = ACTIONS(2799), + [anon_sym_input] = ACTIONS(2799), + [anon_sym_const] = ACTIONS(2799), + [anon_sym_volatile] = ACTIONS(2799), + [anon_sym_restrict] = ACTIONS(2799), + [anon_sym__Atomic] = ACTIONS(2799), + [anon_sym_mutable] = ACTIONS(2799), + [anon_sym_constexpr] = ACTIONS(2799), + [anon_sym_constinit] = ACTIONS(2799), + [anon_sym_consteval] = ACTIONS(2799), + [anon_sym_signed] = ACTIONS(2799), + [anon_sym_unsigned] = ACTIONS(2799), + [anon_sym_long] = ACTIONS(2799), + [anon_sym_short] = ACTIONS(2799), + [sym_primitive_type] = ACTIONS(2799), + [anon_sym_enum] = ACTIONS(2799), + [anon_sym_class] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_union] = ACTIONS(2799), + [anon_sym_if] = ACTIONS(2799), + [anon_sym_switch] = ACTIONS(2799), + [anon_sym_case] = ACTIONS(2799), + [anon_sym_default] = ACTIONS(2799), + [anon_sym_while] = ACTIONS(2799), + [anon_sym_do] = ACTIONS(2799), + [anon_sym_for] = ACTIONS(2799), + [anon_sym_return] = ACTIONS(2799), + [anon_sym_break] = ACTIONS(2799), + [anon_sym_continue] = ACTIONS(2799), + [anon_sym_goto] = ACTIONS(2799), + [anon_sym_not] = ACTIONS(2799), + [anon_sym_compl] = ACTIONS(2799), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2799), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [sym_null] = ACTIONS(2799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2799), + [anon_sym_decltype] = ACTIONS(2799), + [anon_sym_virtual] = ACTIONS(2799), + [anon_sym_explicit] = ACTIONS(2799), + [anon_sym_typename] = ACTIONS(2799), + [anon_sym_template] = ACTIONS(2799), + [anon_sym_operator] = ACTIONS(2799), + [anon_sym_try] = ACTIONS(2799), + [anon_sym_delete] = ACTIONS(2799), + [anon_sym_throw] = ACTIONS(2799), + [anon_sym_namespace] = ACTIONS(2799), + [anon_sym_using] = ACTIONS(2799), + [anon_sym_static_assert] = ACTIONS(2799), + [anon_sym_concept] = ACTIONS(2799), + [anon_sym_co_return] = ACTIONS(2799), + [anon_sym_co_yield] = ACTIONS(2799), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2799), + [anon_sym_new] = ACTIONS(2799), + [anon_sym_requires] = ACTIONS(2799), + [sym_this] = ACTIONS(2799), + [sym_nullptr] = ACTIONS(2799), + }, + [1052] = { + [sym_identifier] = ACTIONS(2823), + [aux_sym_preproc_include_token1] = ACTIONS(2823), + [aux_sym_preproc_def_token1] = ACTIONS(2823), + [aux_sym_preproc_if_token1] = ACTIONS(2823), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2823), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2823), + [sym_preproc_directive] = ACTIONS(2823), + [anon_sym_LPAREN2] = ACTIONS(2825), + [anon_sym_BANG] = ACTIONS(2825), + [anon_sym_TILDE] = ACTIONS(2825), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(2823), + [anon_sym_STAR] = ACTIONS(2825), + [anon_sym_AMP_AMP] = ACTIONS(2825), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_SEMI] = ACTIONS(2825), + [anon_sym_typedef] = ACTIONS(2823), + [anon_sym_extern] = ACTIONS(2823), + [anon_sym___attribute__] = ACTIONS(2823), + [anon_sym_COLON_COLON] = ACTIONS(2825), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2825), + [anon_sym___declspec] = ACTIONS(2823), + [anon_sym___based] = ACTIONS(2823), + [anon_sym___cdecl] = ACTIONS(2823), + [anon_sym___clrcall] = ACTIONS(2823), + [anon_sym___stdcall] = ACTIONS(2823), + [anon_sym___fastcall] = ACTIONS(2823), + [anon_sym___thiscall] = ACTIONS(2823), + [anon_sym___vectorcall] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(2825), + [anon_sym_RBRACE] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2823), + [anon_sym_static] = ACTIONS(2823), + [anon_sym_register] = ACTIONS(2823), + [anon_sym_inline] = ACTIONS(2823), + [anon_sym_thread_local] = ACTIONS(2823), + [anon_sym_input] = ACTIONS(2823), + [anon_sym_const] = ACTIONS(2823), + [anon_sym_volatile] = ACTIONS(2823), + [anon_sym_restrict] = ACTIONS(2823), + [anon_sym__Atomic] = ACTIONS(2823), + [anon_sym_mutable] = ACTIONS(2823), + [anon_sym_constexpr] = ACTIONS(2823), + [anon_sym_constinit] = ACTIONS(2823), + [anon_sym_consteval] = ACTIONS(2823), + [anon_sym_signed] = ACTIONS(2823), + [anon_sym_unsigned] = ACTIONS(2823), + [anon_sym_long] = ACTIONS(2823), + [anon_sym_short] = ACTIONS(2823), + [sym_primitive_type] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2823), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_union] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_switch] = ACTIONS(2823), + [anon_sym_case] = ACTIONS(2823), + [anon_sym_default] = ACTIONS(2823), + [anon_sym_while] = ACTIONS(2823), + [anon_sym_do] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_goto] = ACTIONS(2823), + [anon_sym_not] = ACTIONS(2823), + [anon_sym_compl] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2825), + [anon_sym_PLUS_PLUS] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2823), + [sym_number_literal] = ACTIONS(2825), + [anon_sym_L_SQUOTE] = ACTIONS(2825), + [anon_sym_u_SQUOTE] = ACTIONS(2825), + [anon_sym_U_SQUOTE] = ACTIONS(2825), + [anon_sym_u8_SQUOTE] = ACTIONS(2825), + [anon_sym_SQUOTE] = ACTIONS(2825), + [anon_sym_L_DQUOTE] = ACTIONS(2825), + [anon_sym_u_DQUOTE] = ACTIONS(2825), + [anon_sym_U_DQUOTE] = ACTIONS(2825), + [anon_sym_u8_DQUOTE] = ACTIONS(2825), + [anon_sym_DQUOTE] = ACTIONS(2825), + [sym_true] = ACTIONS(2823), + [sym_false] = ACTIONS(2823), + [sym_null] = ACTIONS(2823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2823), + [anon_sym_decltype] = ACTIONS(2823), + [anon_sym_virtual] = ACTIONS(2823), + [anon_sym_explicit] = ACTIONS(2823), + [anon_sym_typename] = ACTIONS(2823), + [anon_sym_template] = ACTIONS(2823), + [anon_sym_operator] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2823), + [anon_sym_delete] = ACTIONS(2823), + [anon_sym_throw] = ACTIONS(2823), + [anon_sym_namespace] = ACTIONS(2823), + [anon_sym_using] = ACTIONS(2823), + [anon_sym_static_assert] = ACTIONS(2823), + [anon_sym_concept] = ACTIONS(2823), + [anon_sym_co_return] = ACTIONS(2823), + [anon_sym_co_yield] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2823), + [anon_sym_new] = ACTIONS(2823), + [anon_sym_requires] = ACTIONS(2823), + [sym_this] = ACTIONS(2823), + [sym_nullptr] = ACTIONS(2823), + }, + [1053] = { + [sym_identifier] = ACTIONS(2681), + [aux_sym_preproc_include_token1] = ACTIONS(2681), + [aux_sym_preproc_def_token1] = ACTIONS(2681), + [aux_sym_preproc_if_token1] = ACTIONS(2681), + [aux_sym_preproc_if_token2] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), + [sym_preproc_directive] = ACTIONS(2681), + [anon_sym_LPAREN2] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_AMP_AMP] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2681), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym___attribute__] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), + [anon_sym___declspec] = ACTIONS(2681), + [anon_sym___based] = ACTIONS(2681), + [anon_sym___cdecl] = ACTIONS(2681), + [anon_sym___clrcall] = ACTIONS(2681), + [anon_sym___stdcall] = ACTIONS(2681), + [anon_sym___fastcall] = ACTIONS(2681), + [anon_sym___thiscall] = ACTIONS(2681), + [anon_sym___vectorcall] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_register] = ACTIONS(2681), + [anon_sym_inline] = ACTIONS(2681), + [anon_sym_thread_local] = ACTIONS(2681), + [anon_sym_input] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_volatile] = ACTIONS(2681), + [anon_sym_restrict] = ACTIONS(2681), + [anon_sym__Atomic] = ACTIONS(2681), + [anon_sym_mutable] = ACTIONS(2681), + [anon_sym_constexpr] = ACTIONS(2681), + [anon_sym_constinit] = ACTIONS(2681), + [anon_sym_consteval] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2681), + [anon_sym_unsigned] = ACTIONS(2681), + [anon_sym_long] = ACTIONS(2681), + [anon_sym_short] = ACTIONS(2681), + [sym_primitive_type] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2681), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2681), + [anon_sym_case] = ACTIONS(2681), + [anon_sym_default] = ACTIONS(2681), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_do] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [anon_sym_goto] = ACTIONS(2681), + [anon_sym_not] = ACTIONS(2681), + [anon_sym_compl] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_sizeof] = ACTIONS(2681), + [sym_number_literal] = ACTIONS(2683), + [anon_sym_L_SQUOTE] = ACTIONS(2683), + [anon_sym_u_SQUOTE] = ACTIONS(2683), + [anon_sym_U_SQUOTE] = ACTIONS(2683), + [anon_sym_u8_SQUOTE] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_L_DQUOTE] = ACTIONS(2683), + [anon_sym_u_DQUOTE] = ACTIONS(2683), + [anon_sym_U_DQUOTE] = ACTIONS(2683), + [anon_sym_u8_DQUOTE] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [sym_true] = ACTIONS(2681), + [sym_false] = ACTIONS(2681), + [sym_null] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2681), + [anon_sym_decltype] = ACTIONS(2681), + [anon_sym_virtual] = ACTIONS(2681), + [anon_sym_explicit] = ACTIONS(2681), + [anon_sym_typename] = ACTIONS(2681), + [anon_sym_template] = ACTIONS(2681), + [anon_sym_operator] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_delete] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2681), + [anon_sym_namespace] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2681), + [anon_sym_static_assert] = ACTIONS(2681), + [anon_sym_concept] = ACTIONS(2681), + [anon_sym_co_return] = ACTIONS(2681), + [anon_sym_co_yield] = ACTIONS(2681), + [anon_sym_R_DQUOTE] = ACTIONS(2683), + [anon_sym_LR_DQUOTE] = ACTIONS(2683), + [anon_sym_uR_DQUOTE] = ACTIONS(2683), + [anon_sym_UR_DQUOTE] = ACTIONS(2683), + [anon_sym_u8R_DQUOTE] = ACTIONS(2683), + [anon_sym_co_await] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2681), + [anon_sym_requires] = ACTIONS(2681), + [sym_this] = ACTIONS(2681), + [sym_nullptr] = ACTIONS(2681), + }, + [1054] = { + [sym_identifier] = ACTIONS(2689), + [aux_sym_preproc_include_token1] = ACTIONS(2689), + [aux_sym_preproc_def_token1] = ACTIONS(2689), + [aux_sym_preproc_if_token1] = ACTIONS(2689), + [aux_sym_preproc_if_token2] = ACTIONS(2689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2689), + [sym_preproc_directive] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_typedef] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2689), + [anon_sym___attribute__] = ACTIONS(2689), + [anon_sym_COLON_COLON] = ACTIONS(2691), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2691), + [anon_sym___declspec] = ACTIONS(2689), + [anon_sym___based] = ACTIONS(2689), + [anon_sym___cdecl] = ACTIONS(2689), + [anon_sym___clrcall] = ACTIONS(2689), + [anon_sym___stdcall] = ACTIONS(2689), + [anon_sym___fastcall] = ACTIONS(2689), + [anon_sym___thiscall] = ACTIONS(2689), + [anon_sym___vectorcall] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_register] = ACTIONS(2689), + [anon_sym_inline] = ACTIONS(2689), + [anon_sym_thread_local] = ACTIONS(2689), + [anon_sym_input] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_volatile] = ACTIONS(2689), + [anon_sym_restrict] = ACTIONS(2689), + [anon_sym__Atomic] = ACTIONS(2689), + [anon_sym_mutable] = ACTIONS(2689), + [anon_sym_constexpr] = ACTIONS(2689), + [anon_sym_constinit] = ACTIONS(2689), + [anon_sym_consteval] = ACTIONS(2689), + [anon_sym_signed] = ACTIONS(2689), + [anon_sym_unsigned] = ACTIONS(2689), + [anon_sym_long] = ACTIONS(2689), + [anon_sym_short] = ACTIONS(2689), + [sym_primitive_type] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_class] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_switch] = ACTIONS(2689), + [anon_sym_case] = ACTIONS(2689), + [anon_sym_default] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_do] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_goto] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2689), + [anon_sym_compl] = ACTIONS(2689), + [anon_sym_DASH_DASH] = ACTIONS(2691), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2691), + [anon_sym_u_SQUOTE] = ACTIONS(2691), + [anon_sym_U_SQUOTE] = ACTIONS(2691), + [anon_sym_u8_SQUOTE] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2691), + [anon_sym_L_DQUOTE] = ACTIONS(2691), + [anon_sym_u_DQUOTE] = ACTIONS(2691), + [anon_sym_U_DQUOTE] = ACTIONS(2691), + [anon_sym_u8_DQUOTE] = ACTIONS(2691), + [anon_sym_DQUOTE] = ACTIONS(2691), + [sym_true] = ACTIONS(2689), + [sym_false] = ACTIONS(2689), + [sym_null] = ACTIONS(2689), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2689), + [anon_sym_decltype] = ACTIONS(2689), + [anon_sym_virtual] = ACTIONS(2689), + [anon_sym_explicit] = ACTIONS(2689), + [anon_sym_typename] = ACTIONS(2689), + [anon_sym_template] = ACTIONS(2689), + [anon_sym_operator] = ACTIONS(2689), + [anon_sym_try] = ACTIONS(2689), + [anon_sym_delete] = ACTIONS(2689), + [anon_sym_throw] = ACTIONS(2689), + [anon_sym_namespace] = ACTIONS(2689), + [anon_sym_using] = ACTIONS(2689), + [anon_sym_static_assert] = ACTIONS(2689), + [anon_sym_concept] = ACTIONS(2689), + [anon_sym_co_return] = ACTIONS(2689), + [anon_sym_co_yield] = ACTIONS(2689), + [anon_sym_R_DQUOTE] = ACTIONS(2691), + [anon_sym_LR_DQUOTE] = ACTIONS(2691), + [anon_sym_uR_DQUOTE] = ACTIONS(2691), + [anon_sym_UR_DQUOTE] = ACTIONS(2691), + [anon_sym_u8R_DQUOTE] = ACTIONS(2691), + [anon_sym_co_await] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(2689), + [anon_sym_requires] = ACTIONS(2689), + [sym_this] = ACTIONS(2689), + [sym_nullptr] = ACTIONS(2689), + }, + [1055] = { + [sym_identifier] = ACTIONS(2811), + [aux_sym_preproc_include_token1] = ACTIONS(2811), + [aux_sym_preproc_def_token1] = ACTIONS(2811), + [aux_sym_preproc_if_token1] = ACTIONS(2811), + [aux_sym_preproc_if_token2] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2811), + [sym_preproc_directive] = ACTIONS(2811), + [anon_sym_LPAREN2] = ACTIONS(2813), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP_AMP] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym_typedef] = ACTIONS(2811), + [anon_sym_extern] = ACTIONS(2811), + [anon_sym___attribute__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2813), + [anon_sym___declspec] = ACTIONS(2811), + [anon_sym___based] = ACTIONS(2811), + [anon_sym___cdecl] = ACTIONS(2811), + [anon_sym___clrcall] = ACTIONS(2811), + [anon_sym___stdcall] = ACTIONS(2811), + [anon_sym___fastcall] = ACTIONS(2811), + [anon_sym___thiscall] = ACTIONS(2811), + [anon_sym___vectorcall] = ACTIONS(2811), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_register] = ACTIONS(2811), + [anon_sym_inline] = ACTIONS(2811), + [anon_sym_thread_local] = ACTIONS(2811), + [anon_sym_input] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_volatile] = ACTIONS(2811), + [anon_sym_restrict] = ACTIONS(2811), + [anon_sym__Atomic] = ACTIONS(2811), + [anon_sym_mutable] = ACTIONS(2811), + [anon_sym_constexpr] = ACTIONS(2811), + [anon_sym_constinit] = ACTIONS(2811), + [anon_sym_consteval] = ACTIONS(2811), + [anon_sym_signed] = ACTIONS(2811), + [anon_sym_unsigned] = ACTIONS(2811), + [anon_sym_long] = ACTIONS(2811), + [anon_sym_short] = ACTIONS(2811), + [sym_primitive_type] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2811), + [anon_sym_union] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_switch] = ACTIONS(2811), + [anon_sym_case] = ACTIONS(2811), + [anon_sym_default] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_do] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_goto] = ACTIONS(2811), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2813), + [anon_sym_PLUS_PLUS] = ACTIONS(2813), + [anon_sym_sizeof] = ACTIONS(2811), + [sym_number_literal] = ACTIONS(2813), + [anon_sym_L_SQUOTE] = ACTIONS(2813), + [anon_sym_u_SQUOTE] = ACTIONS(2813), + [anon_sym_U_SQUOTE] = ACTIONS(2813), + [anon_sym_u8_SQUOTE] = ACTIONS(2813), + [anon_sym_SQUOTE] = ACTIONS(2813), + [anon_sym_L_DQUOTE] = ACTIONS(2813), + [anon_sym_u_DQUOTE] = ACTIONS(2813), + [anon_sym_U_DQUOTE] = ACTIONS(2813), + [anon_sym_u8_DQUOTE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2813), + [sym_true] = ACTIONS(2811), + [sym_false] = ACTIONS(2811), + [sym_null] = ACTIONS(2811), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2811), + [anon_sym_decltype] = ACTIONS(2811), + [anon_sym_virtual] = ACTIONS(2811), + [anon_sym_explicit] = ACTIONS(2811), + [anon_sym_typename] = ACTIONS(2811), + [anon_sym_template] = ACTIONS(2811), + [anon_sym_operator] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_throw] = ACTIONS(2811), + [anon_sym_namespace] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2811), + [anon_sym_static_assert] = ACTIONS(2811), + [anon_sym_concept] = ACTIONS(2811), + [anon_sym_co_return] = ACTIONS(2811), + [anon_sym_co_yield] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2813), + [anon_sym_LR_DQUOTE] = ACTIONS(2813), + [anon_sym_uR_DQUOTE] = ACTIONS(2813), + [anon_sym_UR_DQUOTE] = ACTIONS(2813), + [anon_sym_u8R_DQUOTE] = ACTIONS(2813), + [anon_sym_co_await] = ACTIONS(2811), + [anon_sym_new] = ACTIONS(2811), + [anon_sym_requires] = ACTIONS(2811), + [sym_this] = ACTIONS(2811), + [sym_nullptr] = ACTIONS(2811), + }, + [1056] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token2] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2805), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym_input] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2805), + [anon_sym_sizeof] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2805), + [anon_sym_L_SQUOTE] = ACTIONS(2805), + [anon_sym_u_SQUOTE] = ACTIONS(2805), + [anon_sym_U_SQUOTE] = ACTIONS(2805), + [anon_sym_u8_SQUOTE] = ACTIONS(2805), + [anon_sym_SQUOTE] = ACTIONS(2805), + [anon_sym_L_DQUOTE] = ACTIONS(2805), + [anon_sym_u_DQUOTE] = ACTIONS(2805), + [anon_sym_U_DQUOTE] = ACTIONS(2805), + [anon_sym_u8_DQUOTE] = ACTIONS(2805), + [anon_sym_DQUOTE] = ACTIONS(2805), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [sym_null] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2805), + [anon_sym_LR_DQUOTE] = ACTIONS(2805), + [anon_sym_uR_DQUOTE] = ACTIONS(2805), + [anon_sym_UR_DQUOTE] = ACTIONS(2805), + [anon_sym_u8R_DQUOTE] = ACTIONS(2805), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [sym_this] = ACTIONS(2803), + [sym_nullptr] = ACTIONS(2803), + }, + [1057] = { + [sym_identifier] = ACTIONS(2623), + [aux_sym_preproc_include_token1] = ACTIONS(2623), + [aux_sym_preproc_def_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), + [sym_preproc_directive] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym___attribute__] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), + [anon_sym___declspec] = ACTIONS(2623), + [anon_sym___based] = ACTIONS(2623), + [anon_sym___cdecl] = ACTIONS(2623), + [anon_sym___clrcall] = ACTIONS(2623), + [anon_sym___stdcall] = ACTIONS(2623), + [anon_sym___fastcall] = ACTIONS(2623), + [anon_sym___thiscall] = ACTIONS(2623), + [anon_sym___vectorcall] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_RBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_thread_local] = ACTIONS(2623), + [anon_sym_input] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_mutable] = ACTIONS(2623), + [anon_sym_constexpr] = ACTIONS(2623), + [anon_sym_constinit] = ACTIONS(2623), + [anon_sym_consteval] = ACTIONS(2623), + [anon_sym_signed] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_compl] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_L_SQUOTE] = ACTIONS(2625), + [anon_sym_u_SQUOTE] = ACTIONS(2625), + [anon_sym_U_SQUOTE] = ACTIONS(2625), + [anon_sym_u8_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_L_DQUOTE] = ACTIONS(2625), + [anon_sym_u_DQUOTE] = ACTIONS(2625), + [anon_sym_U_DQUOTE] = ACTIONS(2625), + [anon_sym_u8_DQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2623), + [anon_sym_decltype] = ACTIONS(2623), + [anon_sym_virtual] = ACTIONS(2623), + [anon_sym_explicit] = ACTIONS(2623), + [anon_sym_typename] = ACTIONS(2623), + [anon_sym_template] = ACTIONS(2623), + [anon_sym_operator] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_namespace] = ACTIONS(2623), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_static_assert] = ACTIONS(2623), + [anon_sym_concept] = ACTIONS(2623), + [anon_sym_co_return] = ACTIONS(2623), + [anon_sym_co_yield] = ACTIONS(2623), + [anon_sym_R_DQUOTE] = ACTIONS(2625), + [anon_sym_LR_DQUOTE] = ACTIONS(2625), + [anon_sym_uR_DQUOTE] = ACTIONS(2625), + [anon_sym_UR_DQUOTE] = ACTIONS(2625), + [anon_sym_u8R_DQUOTE] = ACTIONS(2625), + [anon_sym_co_await] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_requires] = ACTIONS(2623), + [sym_this] = ACTIONS(2623), + [sym_nullptr] = ACTIONS(2623), + }, + [1058] = { [sym_ms_based_modifier] = STATE(6985), - [sym_ms_unaligned_ptr_modifier] = STATE(4390), - [sym_ms_pointer_modifier] = STATE(3249), + [sym_ms_unaligned_ptr_modifier] = STATE(4383), + [sym_ms_pointer_modifier] = STATE(3271), [sym__declarator] = STATE(5321), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), @@ -142605,51 +158496,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(5152), [sym_array_declarator] = STATE(5152), [sym_type_qualifier] = STATE(3624), - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2774), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2767), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4904), - [sym_qualified_identifier] = STATE(2777), + [sym_qualified_identifier] = STATE(2775), [sym_qualified_type_identifier] = STATE(6210), [sym_operator_name] = STATE(5152), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [aux_sym_type_definition_repeat1] = STATE(3624), - [aux_sym_pointer_declarator_repeat1] = STATE(3249), - [sym_identifier] = ACTIONS(2907), - [anon_sym_LPAREN2] = ACTIONS(2909), + [aux_sym_pointer_declarator_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2899), [anon_sym_DASH] = ACTIONS(1509), [anon_sym_PLUS] = ACTIONS(1509), [anon_sym_STAR] = ACTIONS(27), @@ -142706,15149 +158597,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, - [925] = { - [sym_identifier] = ACTIONS(2833), - [aux_sym_preproc_include_token1] = ACTIONS(2833), - [aux_sym_preproc_def_token1] = ACTIONS(2833), - [aux_sym_preproc_if_token1] = ACTIONS(2833), - [aux_sym_preproc_if_token2] = ACTIONS(2833), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2833), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2833), - [sym_preproc_directive] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(2835), - [anon_sym_BANG] = ACTIONS(2835), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2833), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2833), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_typedef] = ACTIONS(2833), - [anon_sym_extern] = ACTIONS(2833), - [anon_sym___attribute__] = ACTIONS(2833), - [anon_sym_COLON_COLON] = ACTIONS(2835), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2835), - [anon_sym___declspec] = ACTIONS(2833), - [anon_sym___based] = ACTIONS(2833), - [anon_sym___cdecl] = ACTIONS(2833), - [anon_sym___clrcall] = ACTIONS(2833), - [anon_sym___stdcall] = ACTIONS(2833), - [anon_sym___fastcall] = ACTIONS(2833), - [anon_sym___thiscall] = ACTIONS(2833), - [anon_sym___vectorcall] = ACTIONS(2833), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2833), - [anon_sym_static] = ACTIONS(2833), - [anon_sym_register] = ACTIONS(2833), - [anon_sym_inline] = ACTIONS(2833), - [anon_sym_thread_local] = ACTIONS(2833), - [anon_sym_const] = ACTIONS(2833), - [anon_sym_volatile] = ACTIONS(2833), - [anon_sym_restrict] = ACTIONS(2833), - [anon_sym__Atomic] = ACTIONS(2833), - [anon_sym_mutable] = ACTIONS(2833), - [anon_sym_constexpr] = ACTIONS(2833), - [anon_sym_constinit] = ACTIONS(2833), - [anon_sym_consteval] = ACTIONS(2833), - [anon_sym_signed] = ACTIONS(2833), - [anon_sym_unsigned] = ACTIONS(2833), - [anon_sym_long] = ACTIONS(2833), - [anon_sym_short] = ACTIONS(2833), - [sym_primitive_type] = ACTIONS(2833), - [anon_sym_enum] = ACTIONS(2833), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2833), - [anon_sym_union] = ACTIONS(2833), - [anon_sym_if] = ACTIONS(2833), - [anon_sym_switch] = ACTIONS(2833), - [anon_sym_case] = ACTIONS(2833), - [anon_sym_default] = ACTIONS(2833), - [anon_sym_while] = ACTIONS(2833), - [anon_sym_do] = ACTIONS(2833), - [anon_sym_for] = ACTIONS(2833), - [anon_sym_return] = ACTIONS(2833), - [anon_sym_break] = ACTIONS(2833), - [anon_sym_continue] = ACTIONS(2833), - [anon_sym_goto] = ACTIONS(2833), - [anon_sym_not] = ACTIONS(2833), - [anon_sym_compl] = ACTIONS(2833), - [anon_sym_DASH_DASH] = ACTIONS(2835), - [anon_sym_PLUS_PLUS] = ACTIONS(2835), - [anon_sym_sizeof] = ACTIONS(2833), - [sym_number_literal] = ACTIONS(2835), - [anon_sym_L_SQUOTE] = ACTIONS(2835), - [anon_sym_u_SQUOTE] = ACTIONS(2835), - [anon_sym_U_SQUOTE] = ACTIONS(2835), - [anon_sym_u8_SQUOTE] = ACTIONS(2835), - [anon_sym_SQUOTE] = ACTIONS(2835), - [anon_sym_L_DQUOTE] = ACTIONS(2835), - [anon_sym_u_DQUOTE] = ACTIONS(2835), - [anon_sym_U_DQUOTE] = ACTIONS(2835), - [anon_sym_u8_DQUOTE] = ACTIONS(2835), - [anon_sym_DQUOTE] = ACTIONS(2835), - [sym_true] = ACTIONS(2833), - [sym_false] = ACTIONS(2833), - [sym_null] = ACTIONS(2833), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2833), - [anon_sym_decltype] = ACTIONS(2833), - [anon_sym_virtual] = ACTIONS(2833), - [anon_sym_explicit] = ACTIONS(2833), - [anon_sym_typename] = ACTIONS(2833), - [anon_sym_template] = ACTIONS(2833), - [anon_sym_operator] = ACTIONS(2833), - [anon_sym_try] = ACTIONS(2833), - [anon_sym_delete] = ACTIONS(2833), - [anon_sym_throw] = ACTIONS(2833), - [anon_sym_namespace] = ACTIONS(2833), - [anon_sym_using] = ACTIONS(2833), - [anon_sym_static_assert] = ACTIONS(2833), - [anon_sym_concept] = ACTIONS(2833), - [anon_sym_co_return] = ACTIONS(2833), - [anon_sym_co_yield] = ACTIONS(2833), - [anon_sym_R_DQUOTE] = ACTIONS(2835), - [anon_sym_LR_DQUOTE] = ACTIONS(2835), - [anon_sym_uR_DQUOTE] = ACTIONS(2835), - [anon_sym_UR_DQUOTE] = ACTIONS(2835), - [anon_sym_u8R_DQUOTE] = ACTIONS(2835), - [anon_sym_co_await] = ACTIONS(2833), - [anon_sym_new] = ACTIONS(2833), - [anon_sym_requires] = ACTIONS(2833), - [sym_this] = ACTIONS(2833), - [sym_nullptr] = ACTIONS(2833), - }, - [926] = { - [ts_builtin_sym_end] = ACTIONS(2723), - [sym_identifier] = ACTIONS(2721), - [aux_sym_preproc_include_token1] = ACTIONS(2721), - [aux_sym_preproc_def_token1] = ACTIONS(2721), - [aux_sym_preproc_if_token1] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), - [sym_preproc_directive] = ACTIONS(2721), - [anon_sym_LPAREN2] = ACTIONS(2723), - [anon_sym_BANG] = ACTIONS(2723), - [anon_sym_TILDE] = ACTIONS(2723), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_PLUS] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_AMP_AMP] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_SEMI] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2721), - [anon_sym_extern] = ACTIONS(2721), - [anon_sym___attribute__] = ACTIONS(2721), - [anon_sym_COLON_COLON] = ACTIONS(2723), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), - [anon_sym___declspec] = ACTIONS(2721), - [anon_sym___based] = ACTIONS(2721), - [anon_sym___cdecl] = ACTIONS(2721), - [anon_sym___clrcall] = ACTIONS(2721), - [anon_sym___stdcall] = ACTIONS(2721), - [anon_sym___fastcall] = ACTIONS(2721), - [anon_sym___thiscall] = ACTIONS(2721), - [anon_sym___vectorcall] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2721), - [anon_sym_static] = ACTIONS(2721), - [anon_sym_register] = ACTIONS(2721), - [anon_sym_inline] = ACTIONS(2721), - [anon_sym_thread_local] = ACTIONS(2721), - [anon_sym_const] = ACTIONS(2721), - [anon_sym_volatile] = ACTIONS(2721), - [anon_sym_restrict] = ACTIONS(2721), - [anon_sym__Atomic] = ACTIONS(2721), - [anon_sym_mutable] = ACTIONS(2721), - [anon_sym_constexpr] = ACTIONS(2721), - [anon_sym_constinit] = ACTIONS(2721), - [anon_sym_consteval] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2721), - [anon_sym_unsigned] = ACTIONS(2721), - [anon_sym_long] = ACTIONS(2721), - [anon_sym_short] = ACTIONS(2721), - [sym_primitive_type] = ACTIONS(2721), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2721), - [anon_sym_struct] = ACTIONS(2721), - [anon_sym_union] = ACTIONS(2721), - [anon_sym_if] = ACTIONS(2721), - [anon_sym_switch] = ACTIONS(2721), - [anon_sym_case] = ACTIONS(2721), - [anon_sym_default] = ACTIONS(2721), - [anon_sym_while] = ACTIONS(2721), - [anon_sym_do] = ACTIONS(2721), - [anon_sym_for] = ACTIONS(2721), - [anon_sym_return] = ACTIONS(2721), - [anon_sym_break] = ACTIONS(2721), - [anon_sym_continue] = ACTIONS(2721), - [anon_sym_goto] = ACTIONS(2721), - [anon_sym_not] = ACTIONS(2721), - [anon_sym_compl] = ACTIONS(2721), - [anon_sym_DASH_DASH] = ACTIONS(2723), - [anon_sym_PLUS_PLUS] = ACTIONS(2723), - [anon_sym_sizeof] = ACTIONS(2721), - [sym_number_literal] = ACTIONS(2723), - [anon_sym_L_SQUOTE] = ACTIONS(2723), - [anon_sym_u_SQUOTE] = ACTIONS(2723), - [anon_sym_U_SQUOTE] = ACTIONS(2723), - [anon_sym_u8_SQUOTE] = ACTIONS(2723), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_L_DQUOTE] = ACTIONS(2723), - [anon_sym_u_DQUOTE] = ACTIONS(2723), - [anon_sym_U_DQUOTE] = ACTIONS(2723), - [anon_sym_u8_DQUOTE] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2723), - [sym_true] = ACTIONS(2721), - [sym_false] = ACTIONS(2721), - [sym_null] = ACTIONS(2721), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2721), - [anon_sym_decltype] = ACTIONS(2721), - [anon_sym_virtual] = ACTIONS(2721), - [anon_sym_explicit] = ACTIONS(2721), - [anon_sym_typename] = ACTIONS(2721), - [anon_sym_template] = ACTIONS(2721), - [anon_sym_operator] = ACTIONS(2721), - [anon_sym_try] = ACTIONS(2721), - [anon_sym_delete] = ACTIONS(2721), - [anon_sym_throw] = ACTIONS(2721), - [anon_sym_namespace] = ACTIONS(2721), - [anon_sym_using] = ACTIONS(2721), - [anon_sym_static_assert] = ACTIONS(2721), - [anon_sym_concept] = ACTIONS(2721), - [anon_sym_co_return] = ACTIONS(2721), - [anon_sym_co_yield] = ACTIONS(2721), - [anon_sym_R_DQUOTE] = ACTIONS(2723), - [anon_sym_LR_DQUOTE] = ACTIONS(2723), - [anon_sym_uR_DQUOTE] = ACTIONS(2723), - [anon_sym_UR_DQUOTE] = ACTIONS(2723), - [anon_sym_u8R_DQUOTE] = ACTIONS(2723), - [anon_sym_co_await] = ACTIONS(2721), - [anon_sym_new] = ACTIONS(2721), - [anon_sym_requires] = ACTIONS(2721), - [sym_this] = ACTIONS(2721), - [sym_nullptr] = ACTIONS(2721), - }, - [927] = { - [sym_identifier] = ACTIONS(2821), - [aux_sym_preproc_include_token1] = ACTIONS(2821), - [aux_sym_preproc_def_token1] = ACTIONS(2821), - [aux_sym_preproc_if_token1] = ACTIONS(2821), - [aux_sym_preproc_if_token2] = ACTIONS(2821), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2821), - [sym_preproc_directive] = ACTIONS(2821), - [anon_sym_LPAREN2] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2821), - [anon_sym_PLUS] = ACTIONS(2821), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2821), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym_typedef] = ACTIONS(2821), - [anon_sym_extern] = ACTIONS(2821), - [anon_sym___attribute__] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2821), - [anon_sym___based] = ACTIONS(2821), - [anon_sym___cdecl] = ACTIONS(2821), - [anon_sym___clrcall] = ACTIONS(2821), - [anon_sym___stdcall] = ACTIONS(2821), - [anon_sym___fastcall] = ACTIONS(2821), - [anon_sym___thiscall] = ACTIONS(2821), - [anon_sym___vectorcall] = ACTIONS(2821), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2821), - [anon_sym_static] = ACTIONS(2821), - [anon_sym_register] = ACTIONS(2821), - [anon_sym_inline] = ACTIONS(2821), - [anon_sym_thread_local] = ACTIONS(2821), - [anon_sym_const] = ACTIONS(2821), - [anon_sym_volatile] = ACTIONS(2821), - [anon_sym_restrict] = ACTIONS(2821), - [anon_sym__Atomic] = ACTIONS(2821), - [anon_sym_mutable] = ACTIONS(2821), - [anon_sym_constexpr] = ACTIONS(2821), - [anon_sym_constinit] = ACTIONS(2821), - [anon_sym_consteval] = ACTIONS(2821), - [anon_sym_signed] = ACTIONS(2821), - [anon_sym_unsigned] = ACTIONS(2821), - [anon_sym_long] = ACTIONS(2821), - [anon_sym_short] = ACTIONS(2821), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2821), - [anon_sym_class] = ACTIONS(2821), - [anon_sym_struct] = ACTIONS(2821), - [anon_sym_union] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2821), - [anon_sym_switch] = ACTIONS(2821), - [anon_sym_case] = ACTIONS(2821), - [anon_sym_default] = ACTIONS(2821), - [anon_sym_while] = ACTIONS(2821), - [anon_sym_do] = ACTIONS(2821), - [anon_sym_for] = ACTIONS(2821), - [anon_sym_return] = ACTIONS(2821), - [anon_sym_break] = ACTIONS(2821), - [anon_sym_continue] = ACTIONS(2821), - [anon_sym_goto] = ACTIONS(2821), - [anon_sym_not] = ACTIONS(2821), - [anon_sym_compl] = ACTIONS(2821), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2821), - [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(2821), - [sym_false] = ACTIONS(2821), - [sym_null] = ACTIONS(2821), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2821), - [anon_sym_decltype] = ACTIONS(2821), - [anon_sym_virtual] = ACTIONS(2821), - [anon_sym_explicit] = ACTIONS(2821), - [anon_sym_typename] = ACTIONS(2821), - [anon_sym_template] = ACTIONS(2821), - [anon_sym_operator] = ACTIONS(2821), - [anon_sym_try] = ACTIONS(2821), - [anon_sym_delete] = ACTIONS(2821), - [anon_sym_throw] = ACTIONS(2821), - [anon_sym_namespace] = ACTIONS(2821), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_static_assert] = ACTIONS(2821), - [anon_sym_concept] = ACTIONS(2821), - [anon_sym_co_return] = ACTIONS(2821), - [anon_sym_co_yield] = ACTIONS(2821), - [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(2821), - [anon_sym_new] = ACTIONS(2821), - [anon_sym_requires] = ACTIONS(2821), - [sym_this] = ACTIONS(2821), - [sym_nullptr] = ACTIONS(2821), - }, - [928] = { - [sym_identifier] = ACTIONS(2761), - [aux_sym_preproc_include_token1] = ACTIONS(2761), - [aux_sym_preproc_def_token1] = ACTIONS(2761), - [aux_sym_preproc_if_token1] = ACTIONS(2761), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2761), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2761), - [sym_preproc_directive] = ACTIONS(2761), - [anon_sym_LPAREN2] = ACTIONS(2763), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_TILDE] = ACTIONS(2763), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2763), - [anon_sym_AMP_AMP] = ACTIONS(2763), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(2761), - [anon_sym_extern] = ACTIONS(2761), - [anon_sym___attribute__] = ACTIONS(2761), - [anon_sym_COLON_COLON] = ACTIONS(2763), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2763), - [anon_sym___declspec] = ACTIONS(2761), - [anon_sym___based] = ACTIONS(2761), - [anon_sym___cdecl] = ACTIONS(2761), - [anon_sym___clrcall] = ACTIONS(2761), - [anon_sym___stdcall] = ACTIONS(2761), - [anon_sym___fastcall] = ACTIONS(2761), - [anon_sym___thiscall] = ACTIONS(2761), - [anon_sym___vectorcall] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2763), - [anon_sym_RBRACE] = ACTIONS(2763), - [anon_sym_LBRACK] = ACTIONS(2761), - [anon_sym_static] = ACTIONS(2761), - [anon_sym_register] = ACTIONS(2761), - [anon_sym_inline] = ACTIONS(2761), - [anon_sym_thread_local] = ACTIONS(2761), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_volatile] = ACTIONS(2761), - [anon_sym_restrict] = ACTIONS(2761), - [anon_sym__Atomic] = ACTIONS(2761), - [anon_sym_mutable] = ACTIONS(2761), - [anon_sym_constexpr] = ACTIONS(2761), - [anon_sym_constinit] = ACTIONS(2761), - [anon_sym_consteval] = ACTIONS(2761), - [anon_sym_signed] = ACTIONS(2761), - [anon_sym_unsigned] = ACTIONS(2761), - [anon_sym_long] = ACTIONS(2761), - [anon_sym_short] = ACTIONS(2761), - [sym_primitive_type] = ACTIONS(2761), - [anon_sym_enum] = ACTIONS(2761), - [anon_sym_class] = ACTIONS(2761), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_union] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_switch] = ACTIONS(2761), - [anon_sym_case] = ACTIONS(2761), - [anon_sym_default] = ACTIONS(2761), - [anon_sym_while] = ACTIONS(2761), - [anon_sym_do] = ACTIONS(2761), - [anon_sym_for] = ACTIONS(2761), - [anon_sym_return] = ACTIONS(2761), - [anon_sym_break] = ACTIONS(2761), - [anon_sym_continue] = ACTIONS(2761), - [anon_sym_goto] = ACTIONS(2761), - [anon_sym_not] = ACTIONS(2761), - [anon_sym_compl] = ACTIONS(2761), - [anon_sym_DASH_DASH] = ACTIONS(2763), - [anon_sym_PLUS_PLUS] = ACTIONS(2763), - [anon_sym_sizeof] = ACTIONS(2761), - [sym_number_literal] = ACTIONS(2763), - [anon_sym_L_SQUOTE] = ACTIONS(2763), - [anon_sym_u_SQUOTE] = ACTIONS(2763), - [anon_sym_U_SQUOTE] = ACTIONS(2763), - [anon_sym_u8_SQUOTE] = ACTIONS(2763), - [anon_sym_SQUOTE] = ACTIONS(2763), - [anon_sym_L_DQUOTE] = ACTIONS(2763), - [anon_sym_u_DQUOTE] = ACTIONS(2763), - [anon_sym_U_DQUOTE] = ACTIONS(2763), - [anon_sym_u8_DQUOTE] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2763), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_null] = ACTIONS(2761), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2761), - [anon_sym_decltype] = ACTIONS(2761), - [anon_sym_virtual] = ACTIONS(2761), - [anon_sym_explicit] = ACTIONS(2761), - [anon_sym_typename] = ACTIONS(2761), - [anon_sym_template] = ACTIONS(2761), - [anon_sym_operator] = ACTIONS(2761), - [anon_sym_try] = ACTIONS(2761), - [anon_sym_delete] = ACTIONS(2761), - [anon_sym_throw] = ACTIONS(2761), - [anon_sym_namespace] = ACTIONS(2761), - [anon_sym_using] = ACTIONS(2761), - [anon_sym_static_assert] = ACTIONS(2761), - [anon_sym_concept] = ACTIONS(2761), - [anon_sym_co_return] = ACTIONS(2761), - [anon_sym_co_yield] = ACTIONS(2761), - [anon_sym_R_DQUOTE] = ACTIONS(2763), - [anon_sym_LR_DQUOTE] = ACTIONS(2763), - [anon_sym_uR_DQUOTE] = ACTIONS(2763), - [anon_sym_UR_DQUOTE] = ACTIONS(2763), - [anon_sym_u8R_DQUOTE] = ACTIONS(2763), - [anon_sym_co_await] = ACTIONS(2761), - [anon_sym_new] = ACTIONS(2761), - [anon_sym_requires] = ACTIONS(2761), - [sym_this] = ACTIONS(2761), - [sym_nullptr] = ACTIONS(2761), - }, - [929] = { - [sym_identifier] = ACTIONS(2781), - [aux_sym_preproc_include_token1] = ACTIONS(2781), - [aux_sym_preproc_def_token1] = ACTIONS(2781), - [aux_sym_preproc_if_token1] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), - [sym_preproc_directive] = ACTIONS(2781), - [anon_sym_LPAREN2] = ACTIONS(2783), - [anon_sym_BANG] = ACTIONS(2783), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2783), - [anon_sym_AMP_AMP] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2781), - [anon_sym_SEMI] = ACTIONS(2783), - [anon_sym_typedef] = ACTIONS(2781), - [anon_sym_extern] = ACTIONS(2781), - [anon_sym___attribute__] = ACTIONS(2781), - [anon_sym_COLON_COLON] = ACTIONS(2783), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), - [anon_sym___declspec] = ACTIONS(2781), - [anon_sym___based] = ACTIONS(2781), - [anon_sym___cdecl] = ACTIONS(2781), - [anon_sym___clrcall] = ACTIONS(2781), - [anon_sym___stdcall] = ACTIONS(2781), - [anon_sym___fastcall] = ACTIONS(2781), - [anon_sym___thiscall] = ACTIONS(2781), - [anon_sym___vectorcall] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2783), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_LBRACK] = ACTIONS(2781), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_register] = ACTIONS(2781), - [anon_sym_inline] = ACTIONS(2781), - [anon_sym_thread_local] = ACTIONS(2781), - [anon_sym_const] = ACTIONS(2781), - [anon_sym_volatile] = ACTIONS(2781), - [anon_sym_restrict] = ACTIONS(2781), - [anon_sym__Atomic] = ACTIONS(2781), - [anon_sym_mutable] = ACTIONS(2781), - [anon_sym_constexpr] = ACTIONS(2781), - [anon_sym_constinit] = ACTIONS(2781), - [anon_sym_consteval] = ACTIONS(2781), - [anon_sym_signed] = ACTIONS(2781), - [anon_sym_unsigned] = ACTIONS(2781), - [anon_sym_long] = ACTIONS(2781), - [anon_sym_short] = ACTIONS(2781), - [sym_primitive_type] = ACTIONS(2781), - [anon_sym_enum] = ACTIONS(2781), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_struct] = ACTIONS(2781), - [anon_sym_union] = ACTIONS(2781), - [anon_sym_if] = ACTIONS(2781), - [anon_sym_switch] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_default] = ACTIONS(2781), - [anon_sym_while] = ACTIONS(2781), - [anon_sym_do] = ACTIONS(2781), - [anon_sym_for] = ACTIONS(2781), - [anon_sym_return] = ACTIONS(2781), - [anon_sym_break] = ACTIONS(2781), - [anon_sym_continue] = ACTIONS(2781), - [anon_sym_goto] = ACTIONS(2781), - [anon_sym_not] = ACTIONS(2781), - [anon_sym_compl] = ACTIONS(2781), - [anon_sym_DASH_DASH] = ACTIONS(2783), - [anon_sym_PLUS_PLUS] = ACTIONS(2783), - [anon_sym_sizeof] = ACTIONS(2781), - [sym_number_literal] = ACTIONS(2783), - [anon_sym_L_SQUOTE] = ACTIONS(2783), - [anon_sym_u_SQUOTE] = ACTIONS(2783), - [anon_sym_U_SQUOTE] = ACTIONS(2783), - [anon_sym_u8_SQUOTE] = ACTIONS(2783), - [anon_sym_SQUOTE] = ACTIONS(2783), - [anon_sym_L_DQUOTE] = ACTIONS(2783), - [anon_sym_u_DQUOTE] = ACTIONS(2783), - [anon_sym_U_DQUOTE] = ACTIONS(2783), - [anon_sym_u8_DQUOTE] = ACTIONS(2783), - [anon_sym_DQUOTE] = ACTIONS(2783), - [sym_true] = ACTIONS(2781), - [sym_false] = ACTIONS(2781), - [sym_null] = ACTIONS(2781), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2781), - [anon_sym_decltype] = ACTIONS(2781), - [anon_sym_virtual] = ACTIONS(2781), - [anon_sym_explicit] = ACTIONS(2781), - [anon_sym_typename] = ACTIONS(2781), - [anon_sym_template] = ACTIONS(2781), - [anon_sym_operator] = ACTIONS(2781), - [anon_sym_try] = ACTIONS(2781), - [anon_sym_delete] = ACTIONS(2781), - [anon_sym_throw] = ACTIONS(2781), - [anon_sym_namespace] = ACTIONS(2781), - [anon_sym_using] = ACTIONS(2781), - [anon_sym_static_assert] = ACTIONS(2781), - [anon_sym_concept] = ACTIONS(2781), - [anon_sym_co_return] = ACTIONS(2781), - [anon_sym_co_yield] = ACTIONS(2781), - [anon_sym_R_DQUOTE] = ACTIONS(2783), - [anon_sym_LR_DQUOTE] = ACTIONS(2783), - [anon_sym_uR_DQUOTE] = ACTIONS(2783), - [anon_sym_UR_DQUOTE] = ACTIONS(2783), - [anon_sym_u8R_DQUOTE] = ACTIONS(2783), - [anon_sym_co_await] = ACTIONS(2781), - [anon_sym_new] = ACTIONS(2781), - [anon_sym_requires] = ACTIONS(2781), - [sym_this] = ACTIONS(2781), - [sym_nullptr] = ACTIONS(2781), - }, - [930] = { - [ts_builtin_sym_end] = ACTIONS(2739), - [sym_identifier] = ACTIONS(2737), - [aux_sym_preproc_include_token1] = ACTIONS(2737), - [aux_sym_preproc_def_token1] = ACTIONS(2737), - [aux_sym_preproc_if_token1] = ACTIONS(2737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2737), - [sym_preproc_directive] = ACTIONS(2737), - [anon_sym_LPAREN2] = ACTIONS(2739), - [anon_sym_BANG] = ACTIONS(2739), - [anon_sym_TILDE] = ACTIONS(2739), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_PLUS] = ACTIONS(2737), - [anon_sym_STAR] = ACTIONS(2739), - [anon_sym_AMP_AMP] = ACTIONS(2739), - [anon_sym_AMP] = ACTIONS(2737), - [anon_sym_SEMI] = ACTIONS(2739), - [anon_sym_typedef] = ACTIONS(2737), - [anon_sym_extern] = ACTIONS(2737), - [anon_sym___attribute__] = ACTIONS(2737), - [anon_sym_COLON_COLON] = ACTIONS(2739), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2739), - [anon_sym___declspec] = ACTIONS(2737), - [anon_sym___based] = ACTIONS(2737), - [anon_sym___cdecl] = ACTIONS(2737), - [anon_sym___clrcall] = ACTIONS(2737), - [anon_sym___stdcall] = ACTIONS(2737), - [anon_sym___fastcall] = ACTIONS(2737), - [anon_sym___thiscall] = ACTIONS(2737), - [anon_sym___vectorcall] = ACTIONS(2737), - [anon_sym_LBRACE] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2737), - [anon_sym_static] = ACTIONS(2737), - [anon_sym_register] = ACTIONS(2737), - [anon_sym_inline] = ACTIONS(2737), - [anon_sym_thread_local] = ACTIONS(2737), - [anon_sym_const] = ACTIONS(2737), - [anon_sym_volatile] = ACTIONS(2737), - [anon_sym_restrict] = ACTIONS(2737), - [anon_sym__Atomic] = ACTIONS(2737), - [anon_sym_mutable] = ACTIONS(2737), - [anon_sym_constexpr] = ACTIONS(2737), - [anon_sym_constinit] = ACTIONS(2737), - [anon_sym_consteval] = ACTIONS(2737), - [anon_sym_signed] = ACTIONS(2737), - [anon_sym_unsigned] = ACTIONS(2737), - [anon_sym_long] = ACTIONS(2737), - [anon_sym_short] = ACTIONS(2737), - [sym_primitive_type] = ACTIONS(2737), - [anon_sym_enum] = ACTIONS(2737), - [anon_sym_class] = ACTIONS(2737), - [anon_sym_struct] = ACTIONS(2737), - [anon_sym_union] = ACTIONS(2737), - [anon_sym_if] = ACTIONS(2737), - [anon_sym_switch] = ACTIONS(2737), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2737), - [anon_sym_while] = ACTIONS(2737), - [anon_sym_do] = ACTIONS(2737), - [anon_sym_for] = ACTIONS(2737), - [anon_sym_return] = ACTIONS(2737), - [anon_sym_break] = ACTIONS(2737), - [anon_sym_continue] = ACTIONS(2737), - [anon_sym_goto] = ACTIONS(2737), - [anon_sym_not] = ACTIONS(2737), - [anon_sym_compl] = ACTIONS(2737), - [anon_sym_DASH_DASH] = ACTIONS(2739), - [anon_sym_PLUS_PLUS] = ACTIONS(2739), - [anon_sym_sizeof] = ACTIONS(2737), - [sym_number_literal] = ACTIONS(2739), - [anon_sym_L_SQUOTE] = ACTIONS(2739), - [anon_sym_u_SQUOTE] = ACTIONS(2739), - [anon_sym_U_SQUOTE] = ACTIONS(2739), - [anon_sym_u8_SQUOTE] = ACTIONS(2739), - [anon_sym_SQUOTE] = ACTIONS(2739), - [anon_sym_L_DQUOTE] = ACTIONS(2739), - [anon_sym_u_DQUOTE] = ACTIONS(2739), - [anon_sym_U_DQUOTE] = ACTIONS(2739), - [anon_sym_u8_DQUOTE] = ACTIONS(2739), - [anon_sym_DQUOTE] = ACTIONS(2739), - [sym_true] = ACTIONS(2737), - [sym_false] = ACTIONS(2737), - [sym_null] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2737), - [anon_sym_decltype] = ACTIONS(2737), - [anon_sym_virtual] = ACTIONS(2737), - [anon_sym_explicit] = ACTIONS(2737), - [anon_sym_typename] = ACTIONS(2737), - [anon_sym_template] = ACTIONS(2737), - [anon_sym_operator] = ACTIONS(2737), - [anon_sym_try] = ACTIONS(2737), - [anon_sym_delete] = ACTIONS(2737), - [anon_sym_throw] = ACTIONS(2737), - [anon_sym_namespace] = ACTIONS(2737), - [anon_sym_using] = ACTIONS(2737), - [anon_sym_static_assert] = ACTIONS(2737), - [anon_sym_concept] = ACTIONS(2737), - [anon_sym_co_return] = ACTIONS(2737), - [anon_sym_co_yield] = ACTIONS(2737), - [anon_sym_R_DQUOTE] = ACTIONS(2739), - [anon_sym_LR_DQUOTE] = ACTIONS(2739), - [anon_sym_uR_DQUOTE] = ACTIONS(2739), - [anon_sym_UR_DQUOTE] = ACTIONS(2739), - [anon_sym_u8R_DQUOTE] = ACTIONS(2739), - [anon_sym_co_await] = ACTIONS(2737), - [anon_sym_new] = ACTIONS(2737), - [anon_sym_requires] = ACTIONS(2737), - [sym_this] = ACTIONS(2737), - [sym_nullptr] = ACTIONS(2737), - }, - [931] = { - [ts_builtin_sym_end] = ACTIONS(2735), - [sym_identifier] = ACTIONS(2733), - [aux_sym_preproc_include_token1] = ACTIONS(2733), - [aux_sym_preproc_def_token1] = ACTIONS(2733), - [aux_sym_preproc_if_token1] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), - [sym_preproc_directive] = ACTIONS(2733), - [anon_sym_LPAREN2] = ACTIONS(2735), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_TILDE] = ACTIONS(2735), - [anon_sym_DASH] = ACTIONS(2733), - [anon_sym_PLUS] = ACTIONS(2733), - [anon_sym_STAR] = ACTIONS(2735), - [anon_sym_AMP_AMP] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2733), - [anon_sym_SEMI] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2733), - [anon_sym_extern] = ACTIONS(2733), - [anon_sym___attribute__] = ACTIONS(2733), - [anon_sym_COLON_COLON] = ACTIONS(2735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), - [anon_sym___declspec] = ACTIONS(2733), - [anon_sym___based] = ACTIONS(2733), - [anon_sym___cdecl] = ACTIONS(2733), - [anon_sym___clrcall] = ACTIONS(2733), - [anon_sym___stdcall] = ACTIONS(2733), - [anon_sym___fastcall] = ACTIONS(2733), - [anon_sym___thiscall] = ACTIONS(2733), - [anon_sym___vectorcall] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2733), - [anon_sym_static] = ACTIONS(2733), - [anon_sym_register] = ACTIONS(2733), - [anon_sym_inline] = ACTIONS(2733), - [anon_sym_thread_local] = ACTIONS(2733), - [anon_sym_const] = ACTIONS(2733), - [anon_sym_volatile] = ACTIONS(2733), - [anon_sym_restrict] = ACTIONS(2733), - [anon_sym__Atomic] = ACTIONS(2733), - [anon_sym_mutable] = ACTIONS(2733), - [anon_sym_constexpr] = ACTIONS(2733), - [anon_sym_constinit] = ACTIONS(2733), - [anon_sym_consteval] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2733), - [anon_sym_unsigned] = ACTIONS(2733), - [anon_sym_long] = ACTIONS(2733), - [anon_sym_short] = ACTIONS(2733), - [sym_primitive_type] = ACTIONS(2733), - [anon_sym_enum] = ACTIONS(2733), - [anon_sym_class] = ACTIONS(2733), - [anon_sym_struct] = ACTIONS(2733), - [anon_sym_union] = ACTIONS(2733), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2733), - [anon_sym_case] = ACTIONS(2733), - [anon_sym_default] = ACTIONS(2733), - [anon_sym_while] = ACTIONS(2733), - [anon_sym_do] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_break] = ACTIONS(2733), - [anon_sym_continue] = ACTIONS(2733), - [anon_sym_goto] = ACTIONS(2733), - [anon_sym_not] = ACTIONS(2733), - [anon_sym_compl] = ACTIONS(2733), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_sizeof] = ACTIONS(2733), - [sym_number_literal] = ACTIONS(2735), - [anon_sym_L_SQUOTE] = ACTIONS(2735), - [anon_sym_u_SQUOTE] = ACTIONS(2735), - [anon_sym_U_SQUOTE] = ACTIONS(2735), - [anon_sym_u8_SQUOTE] = ACTIONS(2735), - [anon_sym_SQUOTE] = ACTIONS(2735), - [anon_sym_L_DQUOTE] = ACTIONS(2735), - [anon_sym_u_DQUOTE] = ACTIONS(2735), - [anon_sym_U_DQUOTE] = ACTIONS(2735), - [anon_sym_u8_DQUOTE] = ACTIONS(2735), - [anon_sym_DQUOTE] = ACTIONS(2735), - [sym_true] = ACTIONS(2733), - [sym_false] = ACTIONS(2733), - [sym_null] = ACTIONS(2733), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2733), - [anon_sym_decltype] = ACTIONS(2733), - [anon_sym_virtual] = ACTIONS(2733), - [anon_sym_explicit] = ACTIONS(2733), - [anon_sym_typename] = ACTIONS(2733), - [anon_sym_template] = ACTIONS(2733), - [anon_sym_operator] = ACTIONS(2733), - [anon_sym_try] = ACTIONS(2733), - [anon_sym_delete] = ACTIONS(2733), - [anon_sym_throw] = ACTIONS(2733), - [anon_sym_namespace] = ACTIONS(2733), - [anon_sym_using] = ACTIONS(2733), - [anon_sym_static_assert] = ACTIONS(2733), - [anon_sym_concept] = ACTIONS(2733), - [anon_sym_co_return] = ACTIONS(2733), - [anon_sym_co_yield] = ACTIONS(2733), - [anon_sym_R_DQUOTE] = ACTIONS(2735), - [anon_sym_LR_DQUOTE] = ACTIONS(2735), - [anon_sym_uR_DQUOTE] = ACTIONS(2735), - [anon_sym_UR_DQUOTE] = ACTIONS(2735), - [anon_sym_u8R_DQUOTE] = ACTIONS(2735), - [anon_sym_co_await] = ACTIONS(2733), - [anon_sym_new] = ACTIONS(2733), - [anon_sym_requires] = ACTIONS(2733), - [sym_this] = ACTIONS(2733), - [sym_nullptr] = ACTIONS(2733), - }, - [932] = { - [sym_identifier] = ACTIONS(2721), - [aux_sym_preproc_include_token1] = ACTIONS(2721), - [aux_sym_preproc_def_token1] = ACTIONS(2721), - [aux_sym_preproc_if_token1] = ACTIONS(2721), - [aux_sym_preproc_if_token2] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), - [sym_preproc_directive] = ACTIONS(2721), - [anon_sym_LPAREN2] = ACTIONS(2723), - [anon_sym_BANG] = ACTIONS(2723), - [anon_sym_TILDE] = ACTIONS(2723), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_PLUS] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_AMP_AMP] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_SEMI] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2721), - [anon_sym_extern] = ACTIONS(2721), - [anon_sym___attribute__] = ACTIONS(2721), - [anon_sym_COLON_COLON] = ACTIONS(2723), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), - [anon_sym___declspec] = ACTIONS(2721), - [anon_sym___based] = ACTIONS(2721), - [anon_sym___cdecl] = ACTIONS(2721), - [anon_sym___clrcall] = ACTIONS(2721), - [anon_sym___stdcall] = ACTIONS(2721), - [anon_sym___fastcall] = ACTIONS(2721), - [anon_sym___thiscall] = ACTIONS(2721), - [anon_sym___vectorcall] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2721), - [anon_sym_static] = ACTIONS(2721), - [anon_sym_register] = ACTIONS(2721), - [anon_sym_inline] = ACTIONS(2721), - [anon_sym_thread_local] = ACTIONS(2721), - [anon_sym_const] = ACTIONS(2721), - [anon_sym_volatile] = ACTIONS(2721), - [anon_sym_restrict] = ACTIONS(2721), - [anon_sym__Atomic] = ACTIONS(2721), - [anon_sym_mutable] = ACTIONS(2721), - [anon_sym_constexpr] = ACTIONS(2721), - [anon_sym_constinit] = ACTIONS(2721), - [anon_sym_consteval] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2721), - [anon_sym_unsigned] = ACTIONS(2721), - [anon_sym_long] = ACTIONS(2721), - [anon_sym_short] = ACTIONS(2721), - [sym_primitive_type] = ACTIONS(2721), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2721), - [anon_sym_struct] = ACTIONS(2721), - [anon_sym_union] = ACTIONS(2721), - [anon_sym_if] = ACTIONS(2721), - [anon_sym_switch] = ACTIONS(2721), - [anon_sym_case] = ACTIONS(2721), - [anon_sym_default] = ACTIONS(2721), - [anon_sym_while] = ACTIONS(2721), - [anon_sym_do] = ACTIONS(2721), - [anon_sym_for] = ACTIONS(2721), - [anon_sym_return] = ACTIONS(2721), - [anon_sym_break] = ACTIONS(2721), - [anon_sym_continue] = ACTIONS(2721), - [anon_sym_goto] = ACTIONS(2721), - [anon_sym_not] = ACTIONS(2721), - [anon_sym_compl] = ACTIONS(2721), - [anon_sym_DASH_DASH] = ACTIONS(2723), - [anon_sym_PLUS_PLUS] = ACTIONS(2723), - [anon_sym_sizeof] = ACTIONS(2721), - [sym_number_literal] = ACTIONS(2723), - [anon_sym_L_SQUOTE] = ACTIONS(2723), - [anon_sym_u_SQUOTE] = ACTIONS(2723), - [anon_sym_U_SQUOTE] = ACTIONS(2723), - [anon_sym_u8_SQUOTE] = ACTIONS(2723), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_L_DQUOTE] = ACTIONS(2723), - [anon_sym_u_DQUOTE] = ACTIONS(2723), - [anon_sym_U_DQUOTE] = ACTIONS(2723), - [anon_sym_u8_DQUOTE] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2723), - [sym_true] = ACTIONS(2721), - [sym_false] = ACTIONS(2721), - [sym_null] = ACTIONS(2721), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2721), - [anon_sym_decltype] = ACTIONS(2721), - [anon_sym_virtual] = ACTIONS(2721), - [anon_sym_explicit] = ACTIONS(2721), - [anon_sym_typename] = ACTIONS(2721), - [anon_sym_template] = ACTIONS(2721), - [anon_sym_operator] = ACTIONS(2721), - [anon_sym_try] = ACTIONS(2721), - [anon_sym_delete] = ACTIONS(2721), - [anon_sym_throw] = ACTIONS(2721), - [anon_sym_namespace] = ACTIONS(2721), - [anon_sym_using] = ACTIONS(2721), - [anon_sym_static_assert] = ACTIONS(2721), - [anon_sym_concept] = ACTIONS(2721), - [anon_sym_co_return] = ACTIONS(2721), - [anon_sym_co_yield] = ACTIONS(2721), - [anon_sym_R_DQUOTE] = ACTIONS(2723), - [anon_sym_LR_DQUOTE] = ACTIONS(2723), - [anon_sym_uR_DQUOTE] = ACTIONS(2723), - [anon_sym_UR_DQUOTE] = ACTIONS(2723), - [anon_sym_u8R_DQUOTE] = ACTIONS(2723), - [anon_sym_co_await] = ACTIONS(2721), - [anon_sym_new] = ACTIONS(2721), - [anon_sym_requires] = ACTIONS(2721), - [sym_this] = ACTIONS(2721), - [sym_nullptr] = ACTIONS(2721), - }, - [933] = { - [sym_identifier] = ACTIONS(2769), - [aux_sym_preproc_include_token1] = ACTIONS(2769), - [aux_sym_preproc_def_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token2] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), - [sym_preproc_directive] = ACTIONS(2769), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym___attribute__] = ACTIONS(2769), - [anon_sym_COLON_COLON] = ACTIONS(2771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), - [anon_sym___declspec] = ACTIONS(2769), - [anon_sym___based] = ACTIONS(2769), - [anon_sym___cdecl] = ACTIONS(2769), - [anon_sym___clrcall] = ACTIONS(2769), - [anon_sym___stdcall] = ACTIONS(2769), - [anon_sym___fastcall] = ACTIONS(2769), - [anon_sym___thiscall] = ACTIONS(2769), - [anon_sym___vectorcall] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym_thread_local] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym_mutable] = ACTIONS(2769), - [anon_sym_constexpr] = ACTIONS(2769), - [anon_sym_constinit] = ACTIONS(2769), - [anon_sym_consteval] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym_not] = ACTIONS(2769), - [anon_sym_compl] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_L_SQUOTE] = ACTIONS(2771), - [anon_sym_u_SQUOTE] = ACTIONS(2771), - [anon_sym_U_SQUOTE] = ACTIONS(2771), - [anon_sym_u8_SQUOTE] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_L_DQUOTE] = ACTIONS(2771), - [anon_sym_u_DQUOTE] = ACTIONS(2771), - [anon_sym_U_DQUOTE] = ACTIONS(2771), - [anon_sym_u8_DQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [sym_null] = ACTIONS(2769), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2769), - [anon_sym_decltype] = ACTIONS(2769), - [anon_sym_virtual] = ACTIONS(2769), - [anon_sym_explicit] = ACTIONS(2769), - [anon_sym_typename] = ACTIONS(2769), - [anon_sym_template] = ACTIONS(2769), - [anon_sym_operator] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_delete] = ACTIONS(2769), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_namespace] = ACTIONS(2769), - [anon_sym_using] = ACTIONS(2769), - [anon_sym_static_assert] = ACTIONS(2769), - [anon_sym_concept] = ACTIONS(2769), - [anon_sym_co_return] = ACTIONS(2769), - [anon_sym_co_yield] = ACTIONS(2769), - [anon_sym_R_DQUOTE] = ACTIONS(2771), - [anon_sym_LR_DQUOTE] = ACTIONS(2771), - [anon_sym_uR_DQUOTE] = ACTIONS(2771), - [anon_sym_UR_DQUOTE] = ACTIONS(2771), - [anon_sym_u8R_DQUOTE] = ACTIONS(2771), - [anon_sym_co_await] = ACTIONS(2769), - [anon_sym_new] = ACTIONS(2769), - [anon_sym_requires] = ACTIONS(2769), - [sym_this] = ACTIONS(2769), - [sym_nullptr] = ACTIONS(2769), - }, - [934] = { - [sym_identifier] = ACTIONS(2717), - [aux_sym_preproc_include_token1] = ACTIONS(2717), - [aux_sym_preproc_def_token1] = ACTIONS(2717), - [aux_sym_preproc_if_token1] = ACTIONS(2717), - [aux_sym_preproc_if_token2] = ACTIONS(2717), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), - [sym_preproc_directive] = ACTIONS(2717), - [anon_sym_LPAREN2] = ACTIONS(2719), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_TILDE] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_STAR] = ACTIONS(2719), - [anon_sym_AMP_AMP] = ACTIONS(2719), - [anon_sym_AMP] = ACTIONS(2717), - [anon_sym_SEMI] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2717), - [anon_sym_extern] = ACTIONS(2717), - [anon_sym___attribute__] = ACTIONS(2717), - [anon_sym_COLON_COLON] = ACTIONS(2719), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), - [anon_sym___declspec] = ACTIONS(2717), - [anon_sym___based] = ACTIONS(2717), - [anon_sym___cdecl] = ACTIONS(2717), - [anon_sym___clrcall] = ACTIONS(2717), - [anon_sym___stdcall] = ACTIONS(2717), - [anon_sym___fastcall] = ACTIONS(2717), - [anon_sym___thiscall] = ACTIONS(2717), - [anon_sym___vectorcall] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(2717), - [anon_sym_register] = ACTIONS(2717), - [anon_sym_inline] = ACTIONS(2717), - [anon_sym_thread_local] = ACTIONS(2717), - [anon_sym_const] = ACTIONS(2717), - [anon_sym_volatile] = ACTIONS(2717), - [anon_sym_restrict] = ACTIONS(2717), - [anon_sym__Atomic] = ACTIONS(2717), - [anon_sym_mutable] = ACTIONS(2717), - [anon_sym_constexpr] = ACTIONS(2717), - [anon_sym_constinit] = ACTIONS(2717), - [anon_sym_consteval] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2717), - [anon_sym_unsigned] = ACTIONS(2717), - [anon_sym_long] = ACTIONS(2717), - [anon_sym_short] = ACTIONS(2717), - [sym_primitive_type] = ACTIONS(2717), - [anon_sym_enum] = ACTIONS(2717), - [anon_sym_class] = ACTIONS(2717), - [anon_sym_struct] = ACTIONS(2717), - [anon_sym_union] = ACTIONS(2717), - [anon_sym_if] = ACTIONS(2717), - [anon_sym_switch] = ACTIONS(2717), - [anon_sym_case] = ACTIONS(2717), - [anon_sym_default] = ACTIONS(2717), - [anon_sym_while] = ACTIONS(2717), - [anon_sym_do] = ACTIONS(2717), - [anon_sym_for] = ACTIONS(2717), - [anon_sym_return] = ACTIONS(2717), - [anon_sym_break] = ACTIONS(2717), - [anon_sym_continue] = ACTIONS(2717), - [anon_sym_goto] = ACTIONS(2717), - [anon_sym_not] = ACTIONS(2717), - [anon_sym_compl] = ACTIONS(2717), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_sizeof] = ACTIONS(2717), - [sym_number_literal] = ACTIONS(2719), - [anon_sym_L_SQUOTE] = ACTIONS(2719), - [anon_sym_u_SQUOTE] = ACTIONS(2719), - [anon_sym_U_SQUOTE] = ACTIONS(2719), - [anon_sym_u8_SQUOTE] = ACTIONS(2719), - [anon_sym_SQUOTE] = ACTIONS(2719), - [anon_sym_L_DQUOTE] = ACTIONS(2719), - [anon_sym_u_DQUOTE] = ACTIONS(2719), - [anon_sym_U_DQUOTE] = ACTIONS(2719), - [anon_sym_u8_DQUOTE] = ACTIONS(2719), - [anon_sym_DQUOTE] = ACTIONS(2719), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2717), - [anon_sym_decltype] = ACTIONS(2717), - [anon_sym_virtual] = ACTIONS(2717), - [anon_sym_explicit] = ACTIONS(2717), - [anon_sym_typename] = ACTIONS(2717), - [anon_sym_template] = ACTIONS(2717), - [anon_sym_operator] = ACTIONS(2717), - [anon_sym_try] = ACTIONS(2717), - [anon_sym_delete] = ACTIONS(2717), - [anon_sym_throw] = ACTIONS(2717), - [anon_sym_namespace] = ACTIONS(2717), - [anon_sym_using] = ACTIONS(2717), - [anon_sym_static_assert] = ACTIONS(2717), - [anon_sym_concept] = ACTIONS(2717), - [anon_sym_co_return] = ACTIONS(2717), - [anon_sym_co_yield] = ACTIONS(2717), - [anon_sym_R_DQUOTE] = ACTIONS(2719), - [anon_sym_LR_DQUOTE] = ACTIONS(2719), - [anon_sym_uR_DQUOTE] = ACTIONS(2719), - [anon_sym_UR_DQUOTE] = ACTIONS(2719), - [anon_sym_u8R_DQUOTE] = ACTIONS(2719), - [anon_sym_co_await] = ACTIONS(2717), - [anon_sym_new] = ACTIONS(2717), - [anon_sym_requires] = ACTIONS(2717), - [sym_this] = ACTIONS(2717), - [sym_nullptr] = ACTIONS(2717), - }, - [935] = { - [ts_builtin_sym_end] = ACTIONS(2727), - [sym_identifier] = ACTIONS(2725), - [aux_sym_preproc_include_token1] = ACTIONS(2725), - [aux_sym_preproc_def_token1] = ACTIONS(2725), - [aux_sym_preproc_if_token1] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), - [sym_preproc_directive] = ACTIONS(2725), - [anon_sym_LPAREN2] = ACTIONS(2727), - [anon_sym_BANG] = ACTIONS(2727), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_AMP_AMP] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2725), - [anon_sym_extern] = ACTIONS(2725), - [anon_sym___attribute__] = ACTIONS(2725), - [anon_sym_COLON_COLON] = ACTIONS(2727), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), - [anon_sym___declspec] = ACTIONS(2725), - [anon_sym___based] = ACTIONS(2725), - [anon_sym___cdecl] = ACTIONS(2725), - [anon_sym___clrcall] = ACTIONS(2725), - [anon_sym___stdcall] = ACTIONS(2725), - [anon_sym___fastcall] = ACTIONS(2725), - [anon_sym___thiscall] = ACTIONS(2725), - [anon_sym___vectorcall] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_register] = ACTIONS(2725), - [anon_sym_inline] = ACTIONS(2725), - [anon_sym_thread_local] = ACTIONS(2725), - [anon_sym_const] = ACTIONS(2725), - [anon_sym_volatile] = ACTIONS(2725), - [anon_sym_restrict] = ACTIONS(2725), - [anon_sym__Atomic] = ACTIONS(2725), - [anon_sym_mutable] = ACTIONS(2725), - [anon_sym_constexpr] = ACTIONS(2725), - [anon_sym_constinit] = ACTIONS(2725), - [anon_sym_consteval] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2725), - [anon_sym_unsigned] = ACTIONS(2725), - [anon_sym_long] = ACTIONS(2725), - [anon_sym_short] = ACTIONS(2725), - [sym_primitive_type] = ACTIONS(2725), - [anon_sym_enum] = ACTIONS(2725), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2725), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_switch] = ACTIONS(2725), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_default] = ACTIONS(2725), - [anon_sym_while] = ACTIONS(2725), - [anon_sym_do] = ACTIONS(2725), - [anon_sym_for] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2725), - [anon_sym_break] = ACTIONS(2725), - [anon_sym_continue] = ACTIONS(2725), - [anon_sym_goto] = ACTIONS(2725), - [anon_sym_not] = ACTIONS(2725), - [anon_sym_compl] = ACTIONS(2725), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_sizeof] = ACTIONS(2725), - [sym_number_literal] = ACTIONS(2727), - [anon_sym_L_SQUOTE] = ACTIONS(2727), - [anon_sym_u_SQUOTE] = ACTIONS(2727), - [anon_sym_U_SQUOTE] = ACTIONS(2727), - [anon_sym_u8_SQUOTE] = ACTIONS(2727), - [anon_sym_SQUOTE] = ACTIONS(2727), - [anon_sym_L_DQUOTE] = ACTIONS(2727), - [anon_sym_u_DQUOTE] = ACTIONS(2727), - [anon_sym_U_DQUOTE] = ACTIONS(2727), - [anon_sym_u8_DQUOTE] = ACTIONS(2727), - [anon_sym_DQUOTE] = ACTIONS(2727), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_null] = ACTIONS(2725), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2725), - [anon_sym_decltype] = ACTIONS(2725), - [anon_sym_virtual] = ACTIONS(2725), - [anon_sym_explicit] = ACTIONS(2725), - [anon_sym_typename] = ACTIONS(2725), - [anon_sym_template] = ACTIONS(2725), - [anon_sym_operator] = ACTIONS(2725), - [anon_sym_try] = ACTIONS(2725), - [anon_sym_delete] = ACTIONS(2725), - [anon_sym_throw] = ACTIONS(2725), - [anon_sym_namespace] = ACTIONS(2725), - [anon_sym_using] = ACTIONS(2725), - [anon_sym_static_assert] = ACTIONS(2725), - [anon_sym_concept] = ACTIONS(2725), - [anon_sym_co_return] = ACTIONS(2725), - [anon_sym_co_yield] = ACTIONS(2725), - [anon_sym_R_DQUOTE] = ACTIONS(2727), - [anon_sym_LR_DQUOTE] = ACTIONS(2727), - [anon_sym_uR_DQUOTE] = ACTIONS(2727), - [anon_sym_UR_DQUOTE] = ACTIONS(2727), - [anon_sym_u8R_DQUOTE] = ACTIONS(2727), - [anon_sym_co_await] = ACTIONS(2725), - [anon_sym_new] = ACTIONS(2725), - [anon_sym_requires] = ACTIONS(2725), - [sym_this] = ACTIONS(2725), - [sym_nullptr] = ACTIONS(2725), - }, - [936] = { - [ts_builtin_sym_end] = ACTIONS(2715), - [sym_identifier] = ACTIONS(2713), - [aux_sym_preproc_include_token1] = ACTIONS(2713), - [aux_sym_preproc_def_token1] = ACTIONS(2713), - [aux_sym_preproc_if_token1] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), - [sym_preproc_directive] = ACTIONS(2713), - [anon_sym_LPAREN2] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_PLUS] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_AMP_AMP] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2713), - [anon_sym_SEMI] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(2713), - [anon_sym___attribute__] = ACTIONS(2713), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), - [anon_sym___declspec] = ACTIONS(2713), - [anon_sym___based] = ACTIONS(2713), - [anon_sym___cdecl] = ACTIONS(2713), - [anon_sym___clrcall] = ACTIONS(2713), - [anon_sym___stdcall] = ACTIONS(2713), - [anon_sym___fastcall] = ACTIONS(2713), - [anon_sym___thiscall] = ACTIONS(2713), - [anon_sym___vectorcall] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_static] = ACTIONS(2713), - [anon_sym_register] = ACTIONS(2713), - [anon_sym_inline] = ACTIONS(2713), - [anon_sym_thread_local] = ACTIONS(2713), - [anon_sym_const] = ACTIONS(2713), - [anon_sym_volatile] = ACTIONS(2713), - [anon_sym_restrict] = ACTIONS(2713), - [anon_sym__Atomic] = ACTIONS(2713), - [anon_sym_mutable] = ACTIONS(2713), - [anon_sym_constexpr] = ACTIONS(2713), - [anon_sym_constinit] = ACTIONS(2713), - [anon_sym_consteval] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2713), - [anon_sym_unsigned] = ACTIONS(2713), - [anon_sym_long] = ACTIONS(2713), - [anon_sym_short] = ACTIONS(2713), - [sym_primitive_type] = ACTIONS(2713), - [anon_sym_enum] = ACTIONS(2713), - [anon_sym_class] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2713), - [anon_sym_union] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2713), - [anon_sym_switch] = ACTIONS(2713), - [anon_sym_case] = ACTIONS(2713), - [anon_sym_default] = ACTIONS(2713), - [anon_sym_while] = ACTIONS(2713), - [anon_sym_do] = ACTIONS(2713), - [anon_sym_for] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2713), - [anon_sym_break] = ACTIONS(2713), - [anon_sym_continue] = ACTIONS(2713), - [anon_sym_goto] = ACTIONS(2713), - [anon_sym_not] = ACTIONS(2713), - [anon_sym_compl] = ACTIONS(2713), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_sizeof] = ACTIONS(2713), - [sym_number_literal] = ACTIONS(2715), - [anon_sym_L_SQUOTE] = ACTIONS(2715), - [anon_sym_u_SQUOTE] = ACTIONS(2715), - [anon_sym_U_SQUOTE] = ACTIONS(2715), - [anon_sym_u8_SQUOTE] = ACTIONS(2715), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_L_DQUOTE] = ACTIONS(2715), - [anon_sym_u_DQUOTE] = ACTIONS(2715), - [anon_sym_U_DQUOTE] = ACTIONS(2715), - [anon_sym_u8_DQUOTE] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [sym_true] = ACTIONS(2713), - [sym_false] = ACTIONS(2713), - [sym_null] = ACTIONS(2713), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2713), - [anon_sym_decltype] = ACTIONS(2713), - [anon_sym_virtual] = ACTIONS(2713), - [anon_sym_explicit] = ACTIONS(2713), - [anon_sym_typename] = ACTIONS(2713), - [anon_sym_template] = ACTIONS(2713), - [anon_sym_operator] = ACTIONS(2713), - [anon_sym_try] = ACTIONS(2713), - [anon_sym_delete] = ACTIONS(2713), - [anon_sym_throw] = ACTIONS(2713), - [anon_sym_namespace] = ACTIONS(2713), - [anon_sym_using] = ACTIONS(2713), - [anon_sym_static_assert] = ACTIONS(2713), - [anon_sym_concept] = ACTIONS(2713), - [anon_sym_co_return] = ACTIONS(2713), - [anon_sym_co_yield] = ACTIONS(2713), - [anon_sym_R_DQUOTE] = ACTIONS(2715), - [anon_sym_LR_DQUOTE] = ACTIONS(2715), - [anon_sym_uR_DQUOTE] = ACTIONS(2715), - [anon_sym_UR_DQUOTE] = ACTIONS(2715), - [anon_sym_u8R_DQUOTE] = ACTIONS(2715), - [anon_sym_co_await] = ACTIONS(2713), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_requires] = ACTIONS(2713), - [sym_this] = ACTIONS(2713), - [sym_nullptr] = ACTIONS(2713), - }, - [937] = { - [sym_identifier] = ACTIONS(2653), - [aux_sym_preproc_include_token1] = ACTIONS(2653), - [aux_sym_preproc_def_token1] = ACTIONS(2653), - [aux_sym_preproc_if_token1] = ACTIONS(2653), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2653), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2653), - [sym_preproc_directive] = ACTIONS(2653), - [anon_sym_LPAREN2] = ACTIONS(2655), - [anon_sym_BANG] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2655), - [anon_sym_AMP_AMP] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_SEMI] = ACTIONS(2655), - [anon_sym_typedef] = ACTIONS(2653), - [anon_sym_extern] = ACTIONS(2653), - [anon_sym___attribute__] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2655), - [anon_sym___declspec] = ACTIONS(2653), - [anon_sym___based] = ACTIONS(2653), - [anon_sym___cdecl] = ACTIONS(2653), - [anon_sym___clrcall] = ACTIONS(2653), - [anon_sym___stdcall] = ACTIONS(2653), - [anon_sym___fastcall] = ACTIONS(2653), - [anon_sym___thiscall] = ACTIONS(2653), - [anon_sym___vectorcall] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_static] = ACTIONS(2653), - [anon_sym_register] = ACTIONS(2653), - [anon_sym_inline] = ACTIONS(2653), - [anon_sym_thread_local] = ACTIONS(2653), - [anon_sym_const] = ACTIONS(2653), - [anon_sym_volatile] = ACTIONS(2653), - [anon_sym_restrict] = ACTIONS(2653), - [anon_sym__Atomic] = ACTIONS(2653), - [anon_sym_mutable] = ACTIONS(2653), - [anon_sym_constexpr] = ACTIONS(2653), - [anon_sym_constinit] = ACTIONS(2653), - [anon_sym_consteval] = ACTIONS(2653), - [anon_sym_signed] = ACTIONS(2653), - [anon_sym_unsigned] = ACTIONS(2653), - [anon_sym_long] = ACTIONS(2653), - [anon_sym_short] = ACTIONS(2653), - [sym_primitive_type] = ACTIONS(2653), - [anon_sym_enum] = ACTIONS(2653), - [anon_sym_class] = ACTIONS(2653), - [anon_sym_struct] = ACTIONS(2653), - [anon_sym_union] = ACTIONS(2653), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [anon_sym_case] = ACTIONS(2653), - [anon_sym_default] = ACTIONS(2653), - [anon_sym_while] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2653), - [anon_sym_return] = ACTIONS(2653), - [anon_sym_break] = ACTIONS(2653), - [anon_sym_continue] = ACTIONS(2653), - [anon_sym_goto] = ACTIONS(2653), - [anon_sym_not] = ACTIONS(2653), - [anon_sym_compl] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2653), - [sym_number_literal] = ACTIONS(2655), - [anon_sym_L_SQUOTE] = ACTIONS(2655), - [anon_sym_u_SQUOTE] = ACTIONS(2655), - [anon_sym_U_SQUOTE] = ACTIONS(2655), - [anon_sym_u8_SQUOTE] = ACTIONS(2655), - [anon_sym_SQUOTE] = ACTIONS(2655), - [anon_sym_L_DQUOTE] = ACTIONS(2655), - [anon_sym_u_DQUOTE] = ACTIONS(2655), - [anon_sym_U_DQUOTE] = ACTIONS(2655), - [anon_sym_u8_DQUOTE] = ACTIONS(2655), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym_true] = ACTIONS(2653), - [sym_false] = ACTIONS(2653), - [sym_null] = ACTIONS(2653), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2653), - [anon_sym_decltype] = ACTIONS(2653), - [anon_sym_virtual] = ACTIONS(2653), - [anon_sym_explicit] = ACTIONS(2653), - [anon_sym_typename] = ACTIONS(2653), - [anon_sym_template] = ACTIONS(2653), - [anon_sym_operator] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_delete] = ACTIONS(2653), - [anon_sym_throw] = ACTIONS(2653), - [anon_sym_namespace] = ACTIONS(2653), - [anon_sym_using] = ACTIONS(2653), - [anon_sym_static_assert] = ACTIONS(2653), - [anon_sym_concept] = ACTIONS(2653), - [anon_sym_co_return] = ACTIONS(2653), - [anon_sym_co_yield] = ACTIONS(2653), - [anon_sym_R_DQUOTE] = ACTIONS(2655), - [anon_sym_LR_DQUOTE] = ACTIONS(2655), - [anon_sym_uR_DQUOTE] = ACTIONS(2655), - [anon_sym_UR_DQUOTE] = ACTIONS(2655), - [anon_sym_u8R_DQUOTE] = ACTIONS(2655), - [anon_sym_co_await] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2653), - [anon_sym_requires] = ACTIONS(2653), - [sym_this] = ACTIONS(2653), - [sym_nullptr] = ACTIONS(2653), - }, - [938] = { - [sym_identifier] = ACTIONS(2781), - [aux_sym_preproc_include_token1] = ACTIONS(2781), - [aux_sym_preproc_def_token1] = ACTIONS(2781), - [aux_sym_preproc_if_token1] = ACTIONS(2781), - [aux_sym_preproc_if_token2] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), - [sym_preproc_directive] = ACTIONS(2781), - [anon_sym_LPAREN2] = ACTIONS(2783), - [anon_sym_BANG] = ACTIONS(2783), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2783), - [anon_sym_AMP_AMP] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2781), - [anon_sym_SEMI] = ACTIONS(2783), - [anon_sym_typedef] = ACTIONS(2781), - [anon_sym_extern] = ACTIONS(2781), - [anon_sym___attribute__] = ACTIONS(2781), - [anon_sym_COLON_COLON] = ACTIONS(2783), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), - [anon_sym___declspec] = ACTIONS(2781), - [anon_sym___based] = ACTIONS(2781), - [anon_sym___cdecl] = ACTIONS(2781), - [anon_sym___clrcall] = ACTIONS(2781), - [anon_sym___stdcall] = ACTIONS(2781), - [anon_sym___fastcall] = ACTIONS(2781), - [anon_sym___thiscall] = ACTIONS(2781), - [anon_sym___vectorcall] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2783), - [anon_sym_LBRACK] = ACTIONS(2781), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_register] = ACTIONS(2781), - [anon_sym_inline] = ACTIONS(2781), - [anon_sym_thread_local] = ACTIONS(2781), - [anon_sym_const] = ACTIONS(2781), - [anon_sym_volatile] = ACTIONS(2781), - [anon_sym_restrict] = ACTIONS(2781), - [anon_sym__Atomic] = ACTIONS(2781), - [anon_sym_mutable] = ACTIONS(2781), - [anon_sym_constexpr] = ACTIONS(2781), - [anon_sym_constinit] = ACTIONS(2781), - [anon_sym_consteval] = ACTIONS(2781), - [anon_sym_signed] = ACTIONS(2781), - [anon_sym_unsigned] = ACTIONS(2781), - [anon_sym_long] = ACTIONS(2781), - [anon_sym_short] = ACTIONS(2781), - [sym_primitive_type] = ACTIONS(2781), - [anon_sym_enum] = ACTIONS(2781), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_struct] = ACTIONS(2781), - [anon_sym_union] = ACTIONS(2781), - [anon_sym_if] = ACTIONS(2781), - [anon_sym_switch] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_default] = ACTIONS(2781), - [anon_sym_while] = ACTIONS(2781), - [anon_sym_do] = ACTIONS(2781), - [anon_sym_for] = ACTIONS(2781), - [anon_sym_return] = ACTIONS(2781), - [anon_sym_break] = ACTIONS(2781), - [anon_sym_continue] = ACTIONS(2781), - [anon_sym_goto] = ACTIONS(2781), - [anon_sym_not] = ACTIONS(2781), - [anon_sym_compl] = ACTIONS(2781), - [anon_sym_DASH_DASH] = ACTIONS(2783), - [anon_sym_PLUS_PLUS] = ACTIONS(2783), - [anon_sym_sizeof] = ACTIONS(2781), - [sym_number_literal] = ACTIONS(2783), - [anon_sym_L_SQUOTE] = ACTIONS(2783), - [anon_sym_u_SQUOTE] = ACTIONS(2783), - [anon_sym_U_SQUOTE] = ACTIONS(2783), - [anon_sym_u8_SQUOTE] = ACTIONS(2783), - [anon_sym_SQUOTE] = ACTIONS(2783), - [anon_sym_L_DQUOTE] = ACTIONS(2783), - [anon_sym_u_DQUOTE] = ACTIONS(2783), - [anon_sym_U_DQUOTE] = ACTIONS(2783), - [anon_sym_u8_DQUOTE] = ACTIONS(2783), - [anon_sym_DQUOTE] = ACTIONS(2783), - [sym_true] = ACTIONS(2781), - [sym_false] = ACTIONS(2781), - [sym_null] = ACTIONS(2781), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2781), - [anon_sym_decltype] = ACTIONS(2781), - [anon_sym_virtual] = ACTIONS(2781), - [anon_sym_explicit] = ACTIONS(2781), - [anon_sym_typename] = ACTIONS(2781), - [anon_sym_template] = ACTIONS(2781), - [anon_sym_operator] = ACTIONS(2781), - [anon_sym_try] = ACTIONS(2781), - [anon_sym_delete] = ACTIONS(2781), - [anon_sym_throw] = ACTIONS(2781), - [anon_sym_namespace] = ACTIONS(2781), - [anon_sym_using] = ACTIONS(2781), - [anon_sym_static_assert] = ACTIONS(2781), - [anon_sym_concept] = ACTIONS(2781), - [anon_sym_co_return] = ACTIONS(2781), - [anon_sym_co_yield] = ACTIONS(2781), - [anon_sym_R_DQUOTE] = ACTIONS(2783), - [anon_sym_LR_DQUOTE] = ACTIONS(2783), - [anon_sym_uR_DQUOTE] = ACTIONS(2783), - [anon_sym_UR_DQUOTE] = ACTIONS(2783), - [anon_sym_u8R_DQUOTE] = ACTIONS(2783), - [anon_sym_co_await] = ACTIONS(2781), - [anon_sym_new] = ACTIONS(2781), - [anon_sym_requires] = ACTIONS(2781), - [sym_this] = ACTIONS(2781), - [sym_nullptr] = ACTIONS(2781), - }, - [939] = { - [ts_builtin_sym_end] = ACTIONS(2663), - [sym_identifier] = ACTIONS(2661), - [aux_sym_preproc_include_token1] = ACTIONS(2661), - [aux_sym_preproc_def_token1] = ACTIONS(2661), - [aux_sym_preproc_if_token1] = ACTIONS(2661), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2661), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2661), - [sym_preproc_directive] = ACTIONS(2661), - [anon_sym_LPAREN2] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_PLUS] = ACTIONS(2661), - [anon_sym_STAR] = ACTIONS(2663), - [anon_sym_AMP_AMP] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2661), - [anon_sym_SEMI] = ACTIONS(2663), - [anon_sym_typedef] = ACTIONS(2661), - [anon_sym_extern] = ACTIONS(2661), - [anon_sym___attribute__] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2663), - [anon_sym___declspec] = ACTIONS(2661), - [anon_sym___based] = ACTIONS(2661), - [anon_sym___cdecl] = ACTIONS(2661), - [anon_sym___clrcall] = ACTIONS(2661), - [anon_sym___stdcall] = ACTIONS(2661), - [anon_sym___fastcall] = ACTIONS(2661), - [anon_sym___thiscall] = ACTIONS(2661), - [anon_sym___vectorcall] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_static] = ACTIONS(2661), - [anon_sym_register] = ACTIONS(2661), - [anon_sym_inline] = ACTIONS(2661), - [anon_sym_thread_local] = ACTIONS(2661), - [anon_sym_const] = ACTIONS(2661), - [anon_sym_volatile] = ACTIONS(2661), - [anon_sym_restrict] = ACTIONS(2661), - [anon_sym__Atomic] = ACTIONS(2661), - [anon_sym_mutable] = ACTIONS(2661), - [anon_sym_constexpr] = ACTIONS(2661), - [anon_sym_constinit] = ACTIONS(2661), - [anon_sym_consteval] = ACTIONS(2661), - [anon_sym_signed] = ACTIONS(2661), - [anon_sym_unsigned] = ACTIONS(2661), - [anon_sym_long] = ACTIONS(2661), - [anon_sym_short] = ACTIONS(2661), - [sym_primitive_type] = ACTIONS(2661), - [anon_sym_enum] = ACTIONS(2661), - [anon_sym_class] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2661), - [anon_sym_union] = ACTIONS(2661), - [anon_sym_if] = ACTIONS(2661), - [anon_sym_switch] = ACTIONS(2661), - [anon_sym_case] = ACTIONS(2661), - [anon_sym_default] = ACTIONS(2661), - [anon_sym_while] = ACTIONS(2661), - [anon_sym_do] = ACTIONS(2661), - [anon_sym_for] = ACTIONS(2661), - [anon_sym_return] = ACTIONS(2661), - [anon_sym_break] = ACTIONS(2661), - [anon_sym_continue] = ACTIONS(2661), - [anon_sym_goto] = ACTIONS(2661), - [anon_sym_not] = ACTIONS(2661), - [anon_sym_compl] = ACTIONS(2661), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_sizeof] = ACTIONS(2661), - [sym_number_literal] = ACTIONS(2663), - [anon_sym_L_SQUOTE] = ACTIONS(2663), - [anon_sym_u_SQUOTE] = ACTIONS(2663), - [anon_sym_U_SQUOTE] = ACTIONS(2663), - [anon_sym_u8_SQUOTE] = ACTIONS(2663), - [anon_sym_SQUOTE] = ACTIONS(2663), - [anon_sym_L_DQUOTE] = ACTIONS(2663), - [anon_sym_u_DQUOTE] = ACTIONS(2663), - [anon_sym_U_DQUOTE] = ACTIONS(2663), - [anon_sym_u8_DQUOTE] = ACTIONS(2663), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym_true] = ACTIONS(2661), - [sym_false] = ACTIONS(2661), - [sym_null] = ACTIONS(2661), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2661), - [anon_sym_decltype] = ACTIONS(2661), - [anon_sym_virtual] = ACTIONS(2661), - [anon_sym_explicit] = ACTIONS(2661), - [anon_sym_typename] = ACTIONS(2661), - [anon_sym_template] = ACTIONS(2661), - [anon_sym_operator] = ACTIONS(2661), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_delete] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2661), - [anon_sym_namespace] = ACTIONS(2661), - [anon_sym_using] = ACTIONS(2661), - [anon_sym_static_assert] = ACTIONS(2661), - [anon_sym_concept] = ACTIONS(2661), - [anon_sym_co_return] = ACTIONS(2661), - [anon_sym_co_yield] = ACTIONS(2661), - [anon_sym_R_DQUOTE] = ACTIONS(2663), - [anon_sym_LR_DQUOTE] = ACTIONS(2663), - [anon_sym_uR_DQUOTE] = ACTIONS(2663), - [anon_sym_UR_DQUOTE] = ACTIONS(2663), - [anon_sym_u8R_DQUOTE] = ACTIONS(2663), - [anon_sym_co_await] = ACTIONS(2661), - [anon_sym_new] = ACTIONS(2661), - [anon_sym_requires] = ACTIONS(2661), - [sym_this] = ACTIONS(2661), - [sym_nullptr] = ACTIONS(2661), - }, - [940] = { - [ts_builtin_sym_end] = ACTIONS(2707), - [sym_identifier] = ACTIONS(2705), - [aux_sym_preproc_include_token1] = ACTIONS(2705), - [aux_sym_preproc_def_token1] = ACTIONS(2705), - [aux_sym_preproc_if_token1] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), - [sym_preproc_directive] = ACTIONS(2705), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2705), - [anon_sym_extern] = ACTIONS(2705), - [anon_sym___attribute__] = ACTIONS(2705), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), - [anon_sym___declspec] = ACTIONS(2705), - [anon_sym___based] = ACTIONS(2705), - [anon_sym___cdecl] = ACTIONS(2705), - [anon_sym___clrcall] = ACTIONS(2705), - [anon_sym___stdcall] = ACTIONS(2705), - [anon_sym___fastcall] = ACTIONS(2705), - [anon_sym___thiscall] = ACTIONS(2705), - [anon_sym___vectorcall] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_static] = ACTIONS(2705), - [anon_sym_register] = ACTIONS(2705), - [anon_sym_inline] = ACTIONS(2705), - [anon_sym_thread_local] = ACTIONS(2705), - [anon_sym_const] = ACTIONS(2705), - [anon_sym_volatile] = ACTIONS(2705), - [anon_sym_restrict] = ACTIONS(2705), - [anon_sym__Atomic] = ACTIONS(2705), - [anon_sym_mutable] = ACTIONS(2705), - [anon_sym_constexpr] = ACTIONS(2705), - [anon_sym_constinit] = ACTIONS(2705), - [anon_sym_consteval] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2705), - [anon_sym_unsigned] = ACTIONS(2705), - [anon_sym_long] = ACTIONS(2705), - [anon_sym_short] = ACTIONS(2705), - [sym_primitive_type] = ACTIONS(2705), - [anon_sym_enum] = ACTIONS(2705), - [anon_sym_class] = ACTIONS(2705), - [anon_sym_struct] = ACTIONS(2705), - [anon_sym_union] = ACTIONS(2705), - [anon_sym_if] = ACTIONS(2705), - [anon_sym_switch] = ACTIONS(2705), - [anon_sym_case] = ACTIONS(2705), - [anon_sym_default] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2705), - [anon_sym_do] = ACTIONS(2705), - [anon_sym_for] = ACTIONS(2705), - [anon_sym_return] = ACTIONS(2705), - [anon_sym_break] = ACTIONS(2705), - [anon_sym_continue] = ACTIONS(2705), - [anon_sym_goto] = ACTIONS(2705), - [anon_sym_not] = ACTIONS(2705), - [anon_sym_compl] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2707), - [anon_sym_sizeof] = ACTIONS(2705), - [sym_number_literal] = ACTIONS(2707), - [anon_sym_L_SQUOTE] = ACTIONS(2707), - [anon_sym_u_SQUOTE] = ACTIONS(2707), - [anon_sym_U_SQUOTE] = ACTIONS(2707), - [anon_sym_u8_SQUOTE] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_L_DQUOTE] = ACTIONS(2707), - [anon_sym_u_DQUOTE] = ACTIONS(2707), - [anon_sym_U_DQUOTE] = ACTIONS(2707), - [anon_sym_u8_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2707), - [sym_true] = ACTIONS(2705), - [sym_false] = ACTIONS(2705), - [sym_null] = ACTIONS(2705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2705), - [anon_sym_decltype] = ACTIONS(2705), - [anon_sym_virtual] = ACTIONS(2705), - [anon_sym_explicit] = ACTIONS(2705), - [anon_sym_typename] = ACTIONS(2705), - [anon_sym_template] = ACTIONS(2705), - [anon_sym_operator] = ACTIONS(2705), - [anon_sym_try] = ACTIONS(2705), - [anon_sym_delete] = ACTIONS(2705), - [anon_sym_throw] = ACTIONS(2705), - [anon_sym_namespace] = ACTIONS(2705), - [anon_sym_using] = ACTIONS(2705), - [anon_sym_static_assert] = ACTIONS(2705), - [anon_sym_concept] = ACTIONS(2705), - [anon_sym_co_return] = ACTIONS(2705), - [anon_sym_co_yield] = ACTIONS(2705), - [anon_sym_R_DQUOTE] = ACTIONS(2707), - [anon_sym_LR_DQUOTE] = ACTIONS(2707), - [anon_sym_uR_DQUOTE] = ACTIONS(2707), - [anon_sym_UR_DQUOTE] = ACTIONS(2707), - [anon_sym_u8R_DQUOTE] = ACTIONS(2707), - [anon_sym_co_await] = ACTIONS(2705), - [anon_sym_new] = ACTIONS(2705), - [anon_sym_requires] = ACTIONS(2705), - [sym_this] = ACTIONS(2705), - [sym_nullptr] = ACTIONS(2705), - }, - [941] = { - [sym_identifier] = ACTIONS(2721), - [aux_sym_preproc_include_token1] = ACTIONS(2721), - [aux_sym_preproc_def_token1] = ACTIONS(2721), - [aux_sym_preproc_if_token1] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), - [sym_preproc_directive] = ACTIONS(2721), - [anon_sym_LPAREN2] = ACTIONS(2723), - [anon_sym_BANG] = ACTIONS(2723), - [anon_sym_TILDE] = ACTIONS(2723), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_PLUS] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_AMP_AMP] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_SEMI] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2721), - [anon_sym_extern] = ACTIONS(2721), - [anon_sym___attribute__] = ACTIONS(2721), - [anon_sym_COLON_COLON] = ACTIONS(2723), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), - [anon_sym___declspec] = ACTIONS(2721), - [anon_sym___based] = ACTIONS(2721), - [anon_sym___cdecl] = ACTIONS(2721), - [anon_sym___clrcall] = ACTIONS(2721), - [anon_sym___stdcall] = ACTIONS(2721), - [anon_sym___fastcall] = ACTIONS(2721), - [anon_sym___thiscall] = ACTIONS(2721), - [anon_sym___vectorcall] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2723), - [anon_sym_RBRACE] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2721), - [anon_sym_static] = ACTIONS(2721), - [anon_sym_register] = ACTIONS(2721), - [anon_sym_inline] = ACTIONS(2721), - [anon_sym_thread_local] = ACTIONS(2721), - [anon_sym_const] = ACTIONS(2721), - [anon_sym_volatile] = ACTIONS(2721), - [anon_sym_restrict] = ACTIONS(2721), - [anon_sym__Atomic] = ACTIONS(2721), - [anon_sym_mutable] = ACTIONS(2721), - [anon_sym_constexpr] = ACTIONS(2721), - [anon_sym_constinit] = ACTIONS(2721), - [anon_sym_consteval] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2721), - [anon_sym_unsigned] = ACTIONS(2721), - [anon_sym_long] = ACTIONS(2721), - [anon_sym_short] = ACTIONS(2721), - [sym_primitive_type] = ACTIONS(2721), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2721), - [anon_sym_struct] = ACTIONS(2721), - [anon_sym_union] = ACTIONS(2721), - [anon_sym_if] = ACTIONS(2721), - [anon_sym_switch] = ACTIONS(2721), - [anon_sym_case] = ACTIONS(2721), - [anon_sym_default] = ACTIONS(2721), - [anon_sym_while] = ACTIONS(2721), - [anon_sym_do] = ACTIONS(2721), - [anon_sym_for] = ACTIONS(2721), - [anon_sym_return] = ACTIONS(2721), - [anon_sym_break] = ACTIONS(2721), - [anon_sym_continue] = ACTIONS(2721), - [anon_sym_goto] = ACTIONS(2721), - [anon_sym_not] = ACTIONS(2721), - [anon_sym_compl] = ACTIONS(2721), - [anon_sym_DASH_DASH] = ACTIONS(2723), - [anon_sym_PLUS_PLUS] = ACTIONS(2723), - [anon_sym_sizeof] = ACTIONS(2721), - [sym_number_literal] = ACTIONS(2723), - [anon_sym_L_SQUOTE] = ACTIONS(2723), - [anon_sym_u_SQUOTE] = ACTIONS(2723), - [anon_sym_U_SQUOTE] = ACTIONS(2723), - [anon_sym_u8_SQUOTE] = ACTIONS(2723), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_L_DQUOTE] = ACTIONS(2723), - [anon_sym_u_DQUOTE] = ACTIONS(2723), - [anon_sym_U_DQUOTE] = ACTIONS(2723), - [anon_sym_u8_DQUOTE] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2723), - [sym_true] = ACTIONS(2721), - [sym_false] = ACTIONS(2721), - [sym_null] = ACTIONS(2721), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2721), - [anon_sym_decltype] = ACTIONS(2721), - [anon_sym_virtual] = ACTIONS(2721), - [anon_sym_explicit] = ACTIONS(2721), - [anon_sym_typename] = ACTIONS(2721), - [anon_sym_template] = ACTIONS(2721), - [anon_sym_operator] = ACTIONS(2721), - [anon_sym_try] = ACTIONS(2721), - [anon_sym_delete] = ACTIONS(2721), - [anon_sym_throw] = ACTIONS(2721), - [anon_sym_namespace] = ACTIONS(2721), - [anon_sym_using] = ACTIONS(2721), - [anon_sym_static_assert] = ACTIONS(2721), - [anon_sym_concept] = ACTIONS(2721), - [anon_sym_co_return] = ACTIONS(2721), - [anon_sym_co_yield] = ACTIONS(2721), - [anon_sym_R_DQUOTE] = ACTIONS(2723), - [anon_sym_LR_DQUOTE] = ACTIONS(2723), - [anon_sym_uR_DQUOTE] = ACTIONS(2723), - [anon_sym_UR_DQUOTE] = ACTIONS(2723), - [anon_sym_u8R_DQUOTE] = ACTIONS(2723), - [anon_sym_co_await] = ACTIONS(2721), - [anon_sym_new] = ACTIONS(2721), - [anon_sym_requires] = ACTIONS(2721), - [sym_this] = ACTIONS(2721), - [sym_nullptr] = ACTIONS(2721), - }, - [942] = { - [sym_identifier] = ACTIONS(2717), - [aux_sym_preproc_include_token1] = ACTIONS(2717), - [aux_sym_preproc_def_token1] = ACTIONS(2717), - [aux_sym_preproc_if_token1] = ACTIONS(2717), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), - [sym_preproc_directive] = ACTIONS(2717), - [anon_sym_LPAREN2] = ACTIONS(2719), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_TILDE] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_STAR] = ACTIONS(2719), - [anon_sym_AMP_AMP] = ACTIONS(2719), - [anon_sym_AMP] = ACTIONS(2717), - [anon_sym_SEMI] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2717), - [anon_sym_extern] = ACTIONS(2717), - [anon_sym___attribute__] = ACTIONS(2717), - [anon_sym_COLON_COLON] = ACTIONS(2719), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), - [anon_sym___declspec] = ACTIONS(2717), - [anon_sym___based] = ACTIONS(2717), - [anon_sym___cdecl] = ACTIONS(2717), - [anon_sym___clrcall] = ACTIONS(2717), - [anon_sym___stdcall] = ACTIONS(2717), - [anon_sym___fastcall] = ACTIONS(2717), - [anon_sym___thiscall] = ACTIONS(2717), - [anon_sym___vectorcall] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2719), - [anon_sym_RBRACE] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(2717), - [anon_sym_register] = ACTIONS(2717), - [anon_sym_inline] = ACTIONS(2717), - [anon_sym_thread_local] = ACTIONS(2717), - [anon_sym_const] = ACTIONS(2717), - [anon_sym_volatile] = ACTIONS(2717), - [anon_sym_restrict] = ACTIONS(2717), - [anon_sym__Atomic] = ACTIONS(2717), - [anon_sym_mutable] = ACTIONS(2717), - [anon_sym_constexpr] = ACTIONS(2717), - [anon_sym_constinit] = ACTIONS(2717), - [anon_sym_consteval] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2717), - [anon_sym_unsigned] = ACTIONS(2717), - [anon_sym_long] = ACTIONS(2717), - [anon_sym_short] = ACTIONS(2717), - [sym_primitive_type] = ACTIONS(2717), - [anon_sym_enum] = ACTIONS(2717), - [anon_sym_class] = ACTIONS(2717), - [anon_sym_struct] = ACTIONS(2717), - [anon_sym_union] = ACTIONS(2717), - [anon_sym_if] = ACTIONS(2717), - [anon_sym_switch] = ACTIONS(2717), - [anon_sym_case] = ACTIONS(2717), - [anon_sym_default] = ACTIONS(2717), - [anon_sym_while] = ACTIONS(2717), - [anon_sym_do] = ACTIONS(2717), - [anon_sym_for] = ACTIONS(2717), - [anon_sym_return] = ACTIONS(2717), - [anon_sym_break] = ACTIONS(2717), - [anon_sym_continue] = ACTIONS(2717), - [anon_sym_goto] = ACTIONS(2717), - [anon_sym_not] = ACTIONS(2717), - [anon_sym_compl] = ACTIONS(2717), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_sizeof] = ACTIONS(2717), - [sym_number_literal] = ACTIONS(2719), - [anon_sym_L_SQUOTE] = ACTIONS(2719), - [anon_sym_u_SQUOTE] = ACTIONS(2719), - [anon_sym_U_SQUOTE] = ACTIONS(2719), - [anon_sym_u8_SQUOTE] = ACTIONS(2719), - [anon_sym_SQUOTE] = ACTIONS(2719), - [anon_sym_L_DQUOTE] = ACTIONS(2719), - [anon_sym_u_DQUOTE] = ACTIONS(2719), - [anon_sym_U_DQUOTE] = ACTIONS(2719), - [anon_sym_u8_DQUOTE] = ACTIONS(2719), - [anon_sym_DQUOTE] = ACTIONS(2719), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2717), - [anon_sym_decltype] = ACTIONS(2717), - [anon_sym_virtual] = ACTIONS(2717), - [anon_sym_explicit] = ACTIONS(2717), - [anon_sym_typename] = ACTIONS(2717), - [anon_sym_template] = ACTIONS(2717), - [anon_sym_operator] = ACTIONS(2717), - [anon_sym_try] = ACTIONS(2717), - [anon_sym_delete] = ACTIONS(2717), - [anon_sym_throw] = ACTIONS(2717), - [anon_sym_namespace] = ACTIONS(2717), - [anon_sym_using] = ACTIONS(2717), - [anon_sym_static_assert] = ACTIONS(2717), - [anon_sym_concept] = ACTIONS(2717), - [anon_sym_co_return] = ACTIONS(2717), - [anon_sym_co_yield] = ACTIONS(2717), - [anon_sym_R_DQUOTE] = ACTIONS(2719), - [anon_sym_LR_DQUOTE] = ACTIONS(2719), - [anon_sym_uR_DQUOTE] = ACTIONS(2719), - [anon_sym_UR_DQUOTE] = ACTIONS(2719), - [anon_sym_u8R_DQUOTE] = ACTIONS(2719), - [anon_sym_co_await] = ACTIONS(2717), - [anon_sym_new] = ACTIONS(2717), - [anon_sym_requires] = ACTIONS(2717), - [sym_this] = ACTIONS(2717), - [sym_nullptr] = ACTIONS(2717), - }, - [943] = { - [sym_identifier] = ACTIONS(2709), - [aux_sym_preproc_include_token1] = ACTIONS(2709), - [aux_sym_preproc_def_token1] = ACTIONS(2709), - [aux_sym_preproc_if_token1] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), - [sym_preproc_directive] = ACTIONS(2709), - [anon_sym_LPAREN2] = ACTIONS(2711), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_TILDE] = ACTIONS(2711), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2711), - [anon_sym_AMP_AMP] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2709), - [anon_sym_extern] = ACTIONS(2709), - [anon_sym___attribute__] = ACTIONS(2709), - [anon_sym_COLON_COLON] = ACTIONS(2711), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), - [anon_sym___declspec] = ACTIONS(2709), - [anon_sym___based] = ACTIONS(2709), - [anon_sym___cdecl] = ACTIONS(2709), - [anon_sym___clrcall] = ACTIONS(2709), - [anon_sym___stdcall] = ACTIONS(2709), - [anon_sym___fastcall] = ACTIONS(2709), - [anon_sym___thiscall] = ACTIONS(2709), - [anon_sym___vectorcall] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2711), - [anon_sym_RBRACE] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_static] = ACTIONS(2709), - [anon_sym_register] = ACTIONS(2709), - [anon_sym_inline] = ACTIONS(2709), - [anon_sym_thread_local] = ACTIONS(2709), - [anon_sym_const] = ACTIONS(2709), - [anon_sym_volatile] = ACTIONS(2709), - [anon_sym_restrict] = ACTIONS(2709), - [anon_sym__Atomic] = ACTIONS(2709), - [anon_sym_mutable] = ACTIONS(2709), - [anon_sym_constexpr] = ACTIONS(2709), - [anon_sym_constinit] = ACTIONS(2709), - [anon_sym_consteval] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2709), - [anon_sym_unsigned] = ACTIONS(2709), - [anon_sym_long] = ACTIONS(2709), - [anon_sym_short] = ACTIONS(2709), - [sym_primitive_type] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_union] = ACTIONS(2709), - [anon_sym_if] = ACTIONS(2709), - [anon_sym_switch] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2709), - [anon_sym_default] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2709), - [anon_sym_do] = ACTIONS(2709), - [anon_sym_for] = ACTIONS(2709), - [anon_sym_return] = ACTIONS(2709), - [anon_sym_break] = ACTIONS(2709), - [anon_sym_continue] = ACTIONS(2709), - [anon_sym_goto] = ACTIONS(2709), - [anon_sym_not] = ACTIONS(2709), - [anon_sym_compl] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2711), - [anon_sym_PLUS_PLUS] = ACTIONS(2711), - [anon_sym_sizeof] = ACTIONS(2709), - [sym_number_literal] = ACTIONS(2711), - [anon_sym_L_SQUOTE] = ACTIONS(2711), - [anon_sym_u_SQUOTE] = ACTIONS(2711), - [anon_sym_U_SQUOTE] = ACTIONS(2711), - [anon_sym_u8_SQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_L_DQUOTE] = ACTIONS(2711), - [anon_sym_u_DQUOTE] = ACTIONS(2711), - [anon_sym_U_DQUOTE] = ACTIONS(2711), - [anon_sym_u8_DQUOTE] = ACTIONS(2711), - [anon_sym_DQUOTE] = ACTIONS(2711), - [sym_true] = ACTIONS(2709), - [sym_false] = ACTIONS(2709), - [sym_null] = ACTIONS(2709), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2709), - [anon_sym_decltype] = ACTIONS(2709), - [anon_sym_virtual] = ACTIONS(2709), - [anon_sym_explicit] = ACTIONS(2709), - [anon_sym_typename] = ACTIONS(2709), - [anon_sym_template] = ACTIONS(2709), - [anon_sym_operator] = ACTIONS(2709), - [anon_sym_try] = ACTIONS(2709), - [anon_sym_delete] = ACTIONS(2709), - [anon_sym_throw] = ACTIONS(2709), - [anon_sym_namespace] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2709), - [anon_sym_static_assert] = ACTIONS(2709), - [anon_sym_concept] = ACTIONS(2709), - [anon_sym_co_return] = ACTIONS(2709), - [anon_sym_co_yield] = ACTIONS(2709), - [anon_sym_R_DQUOTE] = ACTIONS(2711), - [anon_sym_LR_DQUOTE] = ACTIONS(2711), - [anon_sym_uR_DQUOTE] = ACTIONS(2711), - [anon_sym_UR_DQUOTE] = ACTIONS(2711), - [anon_sym_u8R_DQUOTE] = ACTIONS(2711), - [anon_sym_co_await] = ACTIONS(2709), - [anon_sym_new] = ACTIONS(2709), - [anon_sym_requires] = ACTIONS(2709), - [sym_this] = ACTIONS(2709), - [sym_nullptr] = ACTIONS(2709), - }, - [944] = { - [ts_builtin_sym_end] = ACTIONS(2703), - [sym_identifier] = ACTIONS(2701), - [aux_sym_preproc_include_token1] = ACTIONS(2701), - [aux_sym_preproc_def_token1] = ACTIONS(2701), - [aux_sym_preproc_if_token1] = ACTIONS(2701), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2701), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2701), - [sym_preproc_directive] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_BANG] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2703), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_AMP_AMP] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_SEMI] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2701), - [anon_sym_extern] = ACTIONS(2701), - [anon_sym___attribute__] = ACTIONS(2701), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2703), - [anon_sym___declspec] = ACTIONS(2701), - [anon_sym___based] = ACTIONS(2701), - [anon_sym___cdecl] = ACTIONS(2701), - [anon_sym___clrcall] = ACTIONS(2701), - [anon_sym___stdcall] = ACTIONS(2701), - [anon_sym___fastcall] = ACTIONS(2701), - [anon_sym___thiscall] = ACTIONS(2701), - [anon_sym___vectorcall] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_static] = ACTIONS(2701), - [anon_sym_register] = ACTIONS(2701), - [anon_sym_inline] = ACTIONS(2701), - [anon_sym_thread_local] = ACTIONS(2701), - [anon_sym_const] = ACTIONS(2701), - [anon_sym_volatile] = ACTIONS(2701), - [anon_sym_restrict] = ACTIONS(2701), - [anon_sym__Atomic] = ACTIONS(2701), - [anon_sym_mutable] = ACTIONS(2701), - [anon_sym_constexpr] = ACTIONS(2701), - [anon_sym_constinit] = ACTIONS(2701), - [anon_sym_consteval] = ACTIONS(2701), - [anon_sym_signed] = ACTIONS(2701), - [anon_sym_unsigned] = ACTIONS(2701), - [anon_sym_long] = ACTIONS(2701), - [anon_sym_short] = ACTIONS(2701), - [sym_primitive_type] = ACTIONS(2701), - [anon_sym_enum] = ACTIONS(2701), - [anon_sym_class] = ACTIONS(2701), - [anon_sym_struct] = ACTIONS(2701), - [anon_sym_union] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_switch] = ACTIONS(2701), - [anon_sym_case] = ACTIONS(2701), - [anon_sym_default] = ACTIONS(2701), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_break] = ACTIONS(2701), - [anon_sym_continue] = ACTIONS(2701), - [anon_sym_goto] = ACTIONS(2701), - [anon_sym_not] = ACTIONS(2701), - [anon_sym_compl] = ACTIONS(2701), - [anon_sym_DASH_DASH] = ACTIONS(2703), - [anon_sym_PLUS_PLUS] = ACTIONS(2703), - [anon_sym_sizeof] = ACTIONS(2701), - [sym_number_literal] = ACTIONS(2703), - [anon_sym_L_SQUOTE] = ACTIONS(2703), - [anon_sym_u_SQUOTE] = ACTIONS(2703), - [anon_sym_U_SQUOTE] = ACTIONS(2703), - [anon_sym_u8_SQUOTE] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_L_DQUOTE] = ACTIONS(2703), - [anon_sym_u_DQUOTE] = ACTIONS(2703), - [anon_sym_U_DQUOTE] = ACTIONS(2703), - [anon_sym_u8_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE] = ACTIONS(2703), - [sym_true] = ACTIONS(2701), - [sym_false] = ACTIONS(2701), - [sym_null] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2701), - [anon_sym_decltype] = ACTIONS(2701), - [anon_sym_virtual] = ACTIONS(2701), - [anon_sym_explicit] = ACTIONS(2701), - [anon_sym_typename] = ACTIONS(2701), - [anon_sym_template] = ACTIONS(2701), - [anon_sym_operator] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_delete] = ACTIONS(2701), - [anon_sym_throw] = ACTIONS(2701), - [anon_sym_namespace] = ACTIONS(2701), - [anon_sym_using] = ACTIONS(2701), - [anon_sym_static_assert] = ACTIONS(2701), - [anon_sym_concept] = ACTIONS(2701), - [anon_sym_co_return] = ACTIONS(2701), - [anon_sym_co_yield] = ACTIONS(2701), - [anon_sym_R_DQUOTE] = ACTIONS(2703), - [anon_sym_LR_DQUOTE] = ACTIONS(2703), - [anon_sym_uR_DQUOTE] = ACTIONS(2703), - [anon_sym_UR_DQUOTE] = ACTIONS(2703), - [anon_sym_u8R_DQUOTE] = ACTIONS(2703), - [anon_sym_co_await] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_requires] = ACTIONS(2701), - [sym_this] = ACTIONS(2701), - [sym_nullptr] = ACTIONS(2701), - }, - [945] = { - [sym_identifier] = ACTIONS(2653), - [aux_sym_preproc_include_token1] = ACTIONS(2653), - [aux_sym_preproc_def_token1] = ACTIONS(2653), - [aux_sym_preproc_if_token1] = ACTIONS(2653), - [aux_sym_preproc_if_token2] = ACTIONS(2653), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2653), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2653), - [sym_preproc_directive] = ACTIONS(2653), - [anon_sym_LPAREN2] = ACTIONS(2655), - [anon_sym_BANG] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2655), - [anon_sym_AMP_AMP] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_SEMI] = ACTIONS(2655), - [anon_sym_typedef] = ACTIONS(2653), - [anon_sym_extern] = ACTIONS(2653), - [anon_sym___attribute__] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2655), - [anon_sym___declspec] = ACTIONS(2653), - [anon_sym___based] = ACTIONS(2653), - [anon_sym___cdecl] = ACTIONS(2653), - [anon_sym___clrcall] = ACTIONS(2653), - [anon_sym___stdcall] = ACTIONS(2653), - [anon_sym___fastcall] = ACTIONS(2653), - [anon_sym___thiscall] = ACTIONS(2653), - [anon_sym___vectorcall] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_static] = ACTIONS(2653), - [anon_sym_register] = ACTIONS(2653), - [anon_sym_inline] = ACTIONS(2653), - [anon_sym_thread_local] = ACTIONS(2653), - [anon_sym_const] = ACTIONS(2653), - [anon_sym_volatile] = ACTIONS(2653), - [anon_sym_restrict] = ACTIONS(2653), - [anon_sym__Atomic] = ACTIONS(2653), - [anon_sym_mutable] = ACTIONS(2653), - [anon_sym_constexpr] = ACTIONS(2653), - [anon_sym_constinit] = ACTIONS(2653), - [anon_sym_consteval] = ACTIONS(2653), - [anon_sym_signed] = ACTIONS(2653), - [anon_sym_unsigned] = ACTIONS(2653), - [anon_sym_long] = ACTIONS(2653), - [anon_sym_short] = ACTIONS(2653), - [sym_primitive_type] = ACTIONS(2653), - [anon_sym_enum] = ACTIONS(2653), - [anon_sym_class] = ACTIONS(2653), - [anon_sym_struct] = ACTIONS(2653), - [anon_sym_union] = ACTIONS(2653), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [anon_sym_case] = ACTIONS(2653), - [anon_sym_default] = ACTIONS(2653), - [anon_sym_while] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2653), - [anon_sym_return] = ACTIONS(2653), - [anon_sym_break] = ACTIONS(2653), - [anon_sym_continue] = ACTIONS(2653), - [anon_sym_goto] = ACTIONS(2653), - [anon_sym_not] = ACTIONS(2653), - [anon_sym_compl] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2653), - [sym_number_literal] = ACTIONS(2655), - [anon_sym_L_SQUOTE] = ACTIONS(2655), - [anon_sym_u_SQUOTE] = ACTIONS(2655), - [anon_sym_U_SQUOTE] = ACTIONS(2655), - [anon_sym_u8_SQUOTE] = ACTIONS(2655), - [anon_sym_SQUOTE] = ACTIONS(2655), - [anon_sym_L_DQUOTE] = ACTIONS(2655), - [anon_sym_u_DQUOTE] = ACTIONS(2655), - [anon_sym_U_DQUOTE] = ACTIONS(2655), - [anon_sym_u8_DQUOTE] = ACTIONS(2655), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym_true] = ACTIONS(2653), - [sym_false] = ACTIONS(2653), - [sym_null] = ACTIONS(2653), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2653), - [anon_sym_decltype] = ACTIONS(2653), - [anon_sym_virtual] = ACTIONS(2653), - [anon_sym_explicit] = ACTIONS(2653), - [anon_sym_typename] = ACTIONS(2653), - [anon_sym_template] = ACTIONS(2653), - [anon_sym_operator] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_delete] = ACTIONS(2653), - [anon_sym_throw] = ACTIONS(2653), - [anon_sym_namespace] = ACTIONS(2653), - [anon_sym_using] = ACTIONS(2653), - [anon_sym_static_assert] = ACTIONS(2653), - [anon_sym_concept] = ACTIONS(2653), - [anon_sym_co_return] = ACTIONS(2653), - [anon_sym_co_yield] = ACTIONS(2653), - [anon_sym_R_DQUOTE] = ACTIONS(2655), - [anon_sym_LR_DQUOTE] = ACTIONS(2655), - [anon_sym_uR_DQUOTE] = ACTIONS(2655), - [anon_sym_UR_DQUOTE] = ACTIONS(2655), - [anon_sym_u8R_DQUOTE] = ACTIONS(2655), - [anon_sym_co_await] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2653), - [anon_sym_requires] = ACTIONS(2653), - [sym_this] = ACTIONS(2653), - [sym_nullptr] = ACTIONS(2653), - }, - [946] = { - [sym_identifier] = ACTIONS(2785), - [aux_sym_preproc_include_token1] = ACTIONS(2785), - [aux_sym_preproc_def_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token2] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), - [sym_preproc_directive] = ACTIONS(2785), - [anon_sym_LPAREN2] = ACTIONS(2787), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_TILDE] = ACTIONS(2787), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_SEMI] = ACTIONS(2787), - [anon_sym_typedef] = ACTIONS(2785), - [anon_sym_extern] = ACTIONS(2785), - [anon_sym___attribute__] = ACTIONS(2785), - [anon_sym_COLON_COLON] = ACTIONS(2787), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), - [anon_sym___declspec] = ACTIONS(2785), - [anon_sym___based] = ACTIONS(2785), - [anon_sym___cdecl] = ACTIONS(2785), - [anon_sym___clrcall] = ACTIONS(2785), - [anon_sym___stdcall] = ACTIONS(2785), - [anon_sym___fastcall] = ACTIONS(2785), - [anon_sym___thiscall] = ACTIONS(2785), - [anon_sym___vectorcall] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_register] = ACTIONS(2785), - [anon_sym_inline] = ACTIONS(2785), - [anon_sym_thread_local] = ACTIONS(2785), - [anon_sym_const] = ACTIONS(2785), - [anon_sym_volatile] = ACTIONS(2785), - [anon_sym_restrict] = ACTIONS(2785), - [anon_sym__Atomic] = ACTIONS(2785), - [anon_sym_mutable] = ACTIONS(2785), - [anon_sym_constexpr] = ACTIONS(2785), - [anon_sym_constinit] = ACTIONS(2785), - [anon_sym_consteval] = ACTIONS(2785), - [anon_sym_signed] = ACTIONS(2785), - [anon_sym_unsigned] = ACTIONS(2785), - [anon_sym_long] = ACTIONS(2785), - [anon_sym_short] = ACTIONS(2785), - [sym_primitive_type] = ACTIONS(2785), - [anon_sym_enum] = ACTIONS(2785), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(2785), - [anon_sym_union] = ACTIONS(2785), - [anon_sym_if] = ACTIONS(2785), - [anon_sym_switch] = ACTIONS(2785), - [anon_sym_case] = ACTIONS(2785), - [anon_sym_default] = ACTIONS(2785), - [anon_sym_while] = ACTIONS(2785), - [anon_sym_do] = ACTIONS(2785), - [anon_sym_for] = ACTIONS(2785), - [anon_sym_return] = ACTIONS(2785), - [anon_sym_break] = ACTIONS(2785), - [anon_sym_continue] = ACTIONS(2785), - [anon_sym_goto] = ACTIONS(2785), - [anon_sym_not] = ACTIONS(2785), - [anon_sym_compl] = ACTIONS(2785), - [anon_sym_DASH_DASH] = ACTIONS(2787), - [anon_sym_PLUS_PLUS] = ACTIONS(2787), - [anon_sym_sizeof] = ACTIONS(2785), - [sym_number_literal] = ACTIONS(2787), - [anon_sym_L_SQUOTE] = ACTIONS(2787), - [anon_sym_u_SQUOTE] = ACTIONS(2787), - [anon_sym_U_SQUOTE] = ACTIONS(2787), - [anon_sym_u8_SQUOTE] = ACTIONS(2787), - [anon_sym_SQUOTE] = ACTIONS(2787), - [anon_sym_L_DQUOTE] = ACTIONS(2787), - [anon_sym_u_DQUOTE] = ACTIONS(2787), - [anon_sym_U_DQUOTE] = ACTIONS(2787), - [anon_sym_u8_DQUOTE] = ACTIONS(2787), - [anon_sym_DQUOTE] = ACTIONS(2787), - [sym_true] = ACTIONS(2785), - [sym_false] = ACTIONS(2785), - [sym_null] = ACTIONS(2785), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2785), - [anon_sym_decltype] = ACTIONS(2785), - [anon_sym_virtual] = ACTIONS(2785), - [anon_sym_explicit] = ACTIONS(2785), - [anon_sym_typename] = ACTIONS(2785), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_operator] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2785), - [anon_sym_delete] = ACTIONS(2785), - [anon_sym_throw] = ACTIONS(2785), - [anon_sym_namespace] = ACTIONS(2785), - [anon_sym_using] = ACTIONS(2785), - [anon_sym_static_assert] = ACTIONS(2785), - [anon_sym_concept] = ACTIONS(2785), - [anon_sym_co_return] = ACTIONS(2785), - [anon_sym_co_yield] = ACTIONS(2785), - [anon_sym_R_DQUOTE] = ACTIONS(2787), - [anon_sym_LR_DQUOTE] = ACTIONS(2787), - [anon_sym_uR_DQUOTE] = ACTIONS(2787), - [anon_sym_UR_DQUOTE] = ACTIONS(2787), - [anon_sym_u8R_DQUOTE] = ACTIONS(2787), - [anon_sym_co_await] = ACTIONS(2785), - [anon_sym_new] = ACTIONS(2785), - [anon_sym_requires] = ACTIONS(2785), - [sym_this] = ACTIONS(2785), - [sym_nullptr] = ACTIONS(2785), - }, - [947] = { - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_include_token1] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2789), - [aux_sym_preproc_if_token1] = ACTIONS(2789), - [aux_sym_preproc_if_token2] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), - [sym_preproc_directive] = ACTIONS(2789), - [anon_sym_LPAREN2] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_TILDE] = ACTIONS(2791), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_AMP_AMP] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2789), - [anon_sym_extern] = ACTIONS(2789), - [anon_sym___attribute__] = ACTIONS(2789), - [anon_sym_COLON_COLON] = ACTIONS(2791), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), - [anon_sym___declspec] = ACTIONS(2789), - [anon_sym___based] = ACTIONS(2789), - [anon_sym___cdecl] = ACTIONS(2789), - [anon_sym___clrcall] = ACTIONS(2789), - [anon_sym___stdcall] = ACTIONS(2789), - [anon_sym___fastcall] = ACTIONS(2789), - [anon_sym___thiscall] = ACTIONS(2789), - [anon_sym___vectorcall] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2789), - [anon_sym_static] = ACTIONS(2789), - [anon_sym_register] = ACTIONS(2789), - [anon_sym_inline] = ACTIONS(2789), - [anon_sym_thread_local] = ACTIONS(2789), - [anon_sym_const] = ACTIONS(2789), - [anon_sym_volatile] = ACTIONS(2789), - [anon_sym_restrict] = ACTIONS(2789), - [anon_sym__Atomic] = ACTIONS(2789), - [anon_sym_mutable] = ACTIONS(2789), - [anon_sym_constexpr] = ACTIONS(2789), - [anon_sym_constinit] = ACTIONS(2789), - [anon_sym_consteval] = ACTIONS(2789), - [anon_sym_signed] = ACTIONS(2789), - [anon_sym_unsigned] = ACTIONS(2789), - [anon_sym_long] = ACTIONS(2789), - [anon_sym_short] = ACTIONS(2789), - [sym_primitive_type] = ACTIONS(2789), - [anon_sym_enum] = ACTIONS(2789), - [anon_sym_class] = ACTIONS(2789), - [anon_sym_struct] = ACTIONS(2789), - [anon_sym_union] = ACTIONS(2789), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_switch] = ACTIONS(2789), - [anon_sym_case] = ACTIONS(2789), - [anon_sym_default] = ACTIONS(2789), - [anon_sym_while] = ACTIONS(2789), - [anon_sym_do] = ACTIONS(2789), - [anon_sym_for] = ACTIONS(2789), - [anon_sym_return] = ACTIONS(2789), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2789), - [anon_sym_goto] = ACTIONS(2789), - [anon_sym_not] = ACTIONS(2789), - [anon_sym_compl] = ACTIONS(2789), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_sizeof] = ACTIONS(2789), - [sym_number_literal] = ACTIONS(2791), - [anon_sym_L_SQUOTE] = ACTIONS(2791), - [anon_sym_u_SQUOTE] = ACTIONS(2791), - [anon_sym_U_SQUOTE] = ACTIONS(2791), - [anon_sym_u8_SQUOTE] = ACTIONS(2791), - [anon_sym_SQUOTE] = ACTIONS(2791), - [anon_sym_L_DQUOTE] = ACTIONS(2791), - [anon_sym_u_DQUOTE] = ACTIONS(2791), - [anon_sym_U_DQUOTE] = ACTIONS(2791), - [anon_sym_u8_DQUOTE] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2791), - [sym_true] = ACTIONS(2789), - [sym_false] = ACTIONS(2789), - [sym_null] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2789), - [anon_sym_decltype] = ACTIONS(2789), - [anon_sym_virtual] = ACTIONS(2789), - [anon_sym_explicit] = ACTIONS(2789), - [anon_sym_typename] = ACTIONS(2789), - [anon_sym_template] = ACTIONS(2789), - [anon_sym_operator] = ACTIONS(2789), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_delete] = ACTIONS(2789), - [anon_sym_throw] = ACTIONS(2789), - [anon_sym_namespace] = ACTIONS(2789), - [anon_sym_using] = ACTIONS(2789), - [anon_sym_static_assert] = ACTIONS(2789), - [anon_sym_concept] = ACTIONS(2789), - [anon_sym_co_return] = ACTIONS(2789), - [anon_sym_co_yield] = ACTIONS(2789), - [anon_sym_R_DQUOTE] = ACTIONS(2791), - [anon_sym_LR_DQUOTE] = ACTIONS(2791), - [anon_sym_uR_DQUOTE] = ACTIONS(2791), - [anon_sym_UR_DQUOTE] = ACTIONS(2791), - [anon_sym_u8R_DQUOTE] = ACTIONS(2791), - [anon_sym_co_await] = ACTIONS(2789), - [anon_sym_new] = ACTIONS(2789), - [anon_sym_requires] = ACTIONS(2789), - [sym_this] = ACTIONS(2789), - [sym_nullptr] = ACTIONS(2789), - }, - [948] = { - [sym_identifier] = ACTIONS(2709), - [aux_sym_preproc_include_token1] = ACTIONS(2709), - [aux_sym_preproc_def_token1] = ACTIONS(2709), - [aux_sym_preproc_if_token1] = ACTIONS(2709), - [aux_sym_preproc_if_token2] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), - [sym_preproc_directive] = ACTIONS(2709), - [anon_sym_LPAREN2] = ACTIONS(2711), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_TILDE] = ACTIONS(2711), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2711), - [anon_sym_AMP_AMP] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2709), - [anon_sym_extern] = ACTIONS(2709), - [anon_sym___attribute__] = ACTIONS(2709), - [anon_sym_COLON_COLON] = ACTIONS(2711), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), - [anon_sym___declspec] = ACTIONS(2709), - [anon_sym___based] = ACTIONS(2709), - [anon_sym___cdecl] = ACTIONS(2709), - [anon_sym___clrcall] = ACTIONS(2709), - [anon_sym___stdcall] = ACTIONS(2709), - [anon_sym___fastcall] = ACTIONS(2709), - [anon_sym___thiscall] = ACTIONS(2709), - [anon_sym___vectorcall] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_static] = ACTIONS(2709), - [anon_sym_register] = ACTIONS(2709), - [anon_sym_inline] = ACTIONS(2709), - [anon_sym_thread_local] = ACTIONS(2709), - [anon_sym_const] = ACTIONS(2709), - [anon_sym_volatile] = ACTIONS(2709), - [anon_sym_restrict] = ACTIONS(2709), - [anon_sym__Atomic] = ACTIONS(2709), - [anon_sym_mutable] = ACTIONS(2709), - [anon_sym_constexpr] = ACTIONS(2709), - [anon_sym_constinit] = ACTIONS(2709), - [anon_sym_consteval] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2709), - [anon_sym_unsigned] = ACTIONS(2709), - [anon_sym_long] = ACTIONS(2709), - [anon_sym_short] = ACTIONS(2709), - [sym_primitive_type] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_union] = ACTIONS(2709), - [anon_sym_if] = ACTIONS(2709), - [anon_sym_switch] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2709), - [anon_sym_default] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2709), - [anon_sym_do] = ACTIONS(2709), - [anon_sym_for] = ACTIONS(2709), - [anon_sym_return] = ACTIONS(2709), - [anon_sym_break] = ACTIONS(2709), - [anon_sym_continue] = ACTIONS(2709), - [anon_sym_goto] = ACTIONS(2709), - [anon_sym_not] = ACTIONS(2709), - [anon_sym_compl] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2711), - [anon_sym_PLUS_PLUS] = ACTIONS(2711), - [anon_sym_sizeof] = ACTIONS(2709), - [sym_number_literal] = ACTIONS(2711), - [anon_sym_L_SQUOTE] = ACTIONS(2711), - [anon_sym_u_SQUOTE] = ACTIONS(2711), - [anon_sym_U_SQUOTE] = ACTIONS(2711), - [anon_sym_u8_SQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_L_DQUOTE] = ACTIONS(2711), - [anon_sym_u_DQUOTE] = ACTIONS(2711), - [anon_sym_U_DQUOTE] = ACTIONS(2711), - [anon_sym_u8_DQUOTE] = ACTIONS(2711), - [anon_sym_DQUOTE] = ACTIONS(2711), - [sym_true] = ACTIONS(2709), - [sym_false] = ACTIONS(2709), - [sym_null] = ACTIONS(2709), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2709), - [anon_sym_decltype] = ACTIONS(2709), - [anon_sym_virtual] = ACTIONS(2709), - [anon_sym_explicit] = ACTIONS(2709), - [anon_sym_typename] = ACTIONS(2709), - [anon_sym_template] = ACTIONS(2709), - [anon_sym_operator] = ACTIONS(2709), - [anon_sym_try] = ACTIONS(2709), - [anon_sym_delete] = ACTIONS(2709), - [anon_sym_throw] = ACTIONS(2709), - [anon_sym_namespace] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2709), - [anon_sym_static_assert] = ACTIONS(2709), - [anon_sym_concept] = ACTIONS(2709), - [anon_sym_co_return] = ACTIONS(2709), - [anon_sym_co_yield] = ACTIONS(2709), - [anon_sym_R_DQUOTE] = ACTIONS(2711), - [anon_sym_LR_DQUOTE] = ACTIONS(2711), - [anon_sym_uR_DQUOTE] = ACTIONS(2711), - [anon_sym_UR_DQUOTE] = ACTIONS(2711), - [anon_sym_u8R_DQUOTE] = ACTIONS(2711), - [anon_sym_co_await] = ACTIONS(2709), - [anon_sym_new] = ACTIONS(2709), - [anon_sym_requires] = ACTIONS(2709), - [sym_this] = ACTIONS(2709), - [sym_nullptr] = ACTIONS(2709), - }, - [949] = { - [sym_identifier] = ACTIONS(2797), - [aux_sym_preproc_include_token1] = ACTIONS(2797), - [aux_sym_preproc_def_token1] = ACTIONS(2797), - [aux_sym_preproc_if_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [sym_preproc_directive] = ACTIONS(2797), - [anon_sym_LPAREN2] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_AMP_AMP] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2797), - [anon_sym_extern] = ACTIONS(2797), - [anon_sym___attribute__] = ACTIONS(2797), - [anon_sym_COLON_COLON] = ACTIONS(2799), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), - [anon_sym___declspec] = ACTIONS(2797), - [anon_sym___based] = ACTIONS(2797), - [anon_sym___cdecl] = ACTIONS(2797), - [anon_sym___clrcall] = ACTIONS(2797), - [anon_sym___stdcall] = ACTIONS(2797), - [anon_sym___fastcall] = ACTIONS(2797), - [anon_sym___thiscall] = ACTIONS(2797), - [anon_sym___vectorcall] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2797), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_register] = ACTIONS(2797), - [anon_sym_inline] = ACTIONS(2797), - [anon_sym_thread_local] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_volatile] = ACTIONS(2797), - [anon_sym_restrict] = ACTIONS(2797), - [anon_sym__Atomic] = ACTIONS(2797), - [anon_sym_mutable] = ACTIONS(2797), - [anon_sym_constexpr] = ACTIONS(2797), - [anon_sym_constinit] = ACTIONS(2797), - [anon_sym_consteval] = ACTIONS(2797), - [anon_sym_signed] = ACTIONS(2797), - [anon_sym_unsigned] = ACTIONS(2797), - [anon_sym_long] = ACTIONS(2797), - [anon_sym_short] = ACTIONS(2797), - [sym_primitive_type] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), - [anon_sym_class] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_union] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_switch] = ACTIONS(2797), - [anon_sym_case] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_do] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_goto] = ACTIONS(2797), - [anon_sym_not] = ACTIONS(2797), - [anon_sym_compl] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_sizeof] = ACTIONS(2797), - [sym_number_literal] = ACTIONS(2799), - [anon_sym_L_SQUOTE] = ACTIONS(2799), - [anon_sym_u_SQUOTE] = ACTIONS(2799), - [anon_sym_U_SQUOTE] = ACTIONS(2799), - [anon_sym_u8_SQUOTE] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2799), - [anon_sym_L_DQUOTE] = ACTIONS(2799), - [anon_sym_u_DQUOTE] = ACTIONS(2799), - [anon_sym_U_DQUOTE] = ACTIONS(2799), - [anon_sym_u8_DQUOTE] = ACTIONS(2799), - [anon_sym_DQUOTE] = ACTIONS(2799), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [sym_null] = ACTIONS(2797), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2797), - [anon_sym_decltype] = ACTIONS(2797), - [anon_sym_virtual] = ACTIONS(2797), - [anon_sym_explicit] = ACTIONS(2797), - [anon_sym_typename] = ACTIONS(2797), - [anon_sym_template] = ACTIONS(2797), - [anon_sym_operator] = ACTIONS(2797), - [anon_sym_try] = ACTIONS(2797), - [anon_sym_delete] = ACTIONS(2797), - [anon_sym_throw] = ACTIONS(2797), - [anon_sym_namespace] = ACTIONS(2797), - [anon_sym_using] = ACTIONS(2797), - [anon_sym_static_assert] = ACTIONS(2797), - [anon_sym_concept] = ACTIONS(2797), - [anon_sym_co_return] = ACTIONS(2797), - [anon_sym_co_yield] = ACTIONS(2797), - [anon_sym_R_DQUOTE] = ACTIONS(2799), - [anon_sym_LR_DQUOTE] = ACTIONS(2799), - [anon_sym_uR_DQUOTE] = ACTIONS(2799), - [anon_sym_UR_DQUOTE] = ACTIONS(2799), - [anon_sym_u8R_DQUOTE] = ACTIONS(2799), - [anon_sym_co_await] = ACTIONS(2797), - [anon_sym_new] = ACTIONS(2797), - [anon_sym_requires] = ACTIONS(2797), - [sym_this] = ACTIONS(2797), - [sym_nullptr] = ACTIONS(2797), - }, - [950] = { - [sym_identifier] = ACTIONS(2697), - [aux_sym_preproc_include_token1] = ACTIONS(2697), - [aux_sym_preproc_def_token1] = ACTIONS(2697), - [aux_sym_preproc_if_token1] = ACTIONS(2697), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2697), - [sym_preproc_directive] = ACTIONS(2697), - [anon_sym_LPAREN2] = ACTIONS(2699), - [anon_sym_BANG] = ACTIONS(2699), - [anon_sym_TILDE] = ACTIONS(2699), - [anon_sym_DASH] = ACTIONS(2697), - [anon_sym_PLUS] = ACTIONS(2697), - [anon_sym_STAR] = ACTIONS(2699), - [anon_sym_AMP_AMP] = ACTIONS(2699), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_SEMI] = ACTIONS(2699), - [anon_sym_typedef] = ACTIONS(2697), - [anon_sym_extern] = ACTIONS(2697), - [anon_sym___attribute__] = ACTIONS(2697), - [anon_sym_COLON_COLON] = ACTIONS(2699), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2699), - [anon_sym___declspec] = ACTIONS(2697), - [anon_sym___based] = ACTIONS(2697), - [anon_sym___cdecl] = ACTIONS(2697), - [anon_sym___clrcall] = ACTIONS(2697), - [anon_sym___stdcall] = ACTIONS(2697), - [anon_sym___fastcall] = ACTIONS(2697), - [anon_sym___thiscall] = ACTIONS(2697), - [anon_sym___vectorcall] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(2699), - [anon_sym_RBRACE] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2697), - [anon_sym_static] = ACTIONS(2697), - [anon_sym_register] = ACTIONS(2697), - [anon_sym_inline] = ACTIONS(2697), - [anon_sym_thread_local] = ACTIONS(2697), - [anon_sym_const] = ACTIONS(2697), - [anon_sym_volatile] = ACTIONS(2697), - [anon_sym_restrict] = ACTIONS(2697), - [anon_sym__Atomic] = ACTIONS(2697), - [anon_sym_mutable] = ACTIONS(2697), - [anon_sym_constexpr] = ACTIONS(2697), - [anon_sym_constinit] = ACTIONS(2697), - [anon_sym_consteval] = ACTIONS(2697), - [anon_sym_signed] = ACTIONS(2697), - [anon_sym_unsigned] = ACTIONS(2697), - [anon_sym_long] = ACTIONS(2697), - [anon_sym_short] = ACTIONS(2697), - [sym_primitive_type] = ACTIONS(2697), - [anon_sym_enum] = ACTIONS(2697), - [anon_sym_class] = ACTIONS(2697), - [anon_sym_struct] = ACTIONS(2697), - [anon_sym_union] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_switch] = ACTIONS(2697), - [anon_sym_case] = ACTIONS(2697), - [anon_sym_default] = ACTIONS(2697), - [anon_sym_while] = ACTIONS(2697), - [anon_sym_do] = ACTIONS(2697), - [anon_sym_for] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_break] = ACTIONS(2697), - [anon_sym_continue] = ACTIONS(2697), - [anon_sym_goto] = ACTIONS(2697), - [anon_sym_not] = ACTIONS(2697), - [anon_sym_compl] = ACTIONS(2697), - [anon_sym_DASH_DASH] = ACTIONS(2699), - [anon_sym_PLUS_PLUS] = ACTIONS(2699), - [anon_sym_sizeof] = ACTIONS(2697), - [sym_number_literal] = ACTIONS(2699), - [anon_sym_L_SQUOTE] = ACTIONS(2699), - [anon_sym_u_SQUOTE] = ACTIONS(2699), - [anon_sym_U_SQUOTE] = ACTIONS(2699), - [anon_sym_u8_SQUOTE] = ACTIONS(2699), - [anon_sym_SQUOTE] = ACTIONS(2699), - [anon_sym_L_DQUOTE] = ACTIONS(2699), - [anon_sym_u_DQUOTE] = ACTIONS(2699), - [anon_sym_U_DQUOTE] = ACTIONS(2699), - [anon_sym_u8_DQUOTE] = ACTIONS(2699), - [anon_sym_DQUOTE] = ACTIONS(2699), - [sym_true] = ACTIONS(2697), - [sym_false] = ACTIONS(2697), - [sym_null] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2697), - [anon_sym_decltype] = ACTIONS(2697), - [anon_sym_virtual] = ACTIONS(2697), - [anon_sym_explicit] = ACTIONS(2697), - [anon_sym_typename] = ACTIONS(2697), - [anon_sym_template] = ACTIONS(2697), - [anon_sym_operator] = ACTIONS(2697), - [anon_sym_try] = ACTIONS(2697), - [anon_sym_delete] = ACTIONS(2697), - [anon_sym_throw] = ACTIONS(2697), - [anon_sym_namespace] = ACTIONS(2697), - [anon_sym_using] = ACTIONS(2697), - [anon_sym_static_assert] = ACTIONS(2697), - [anon_sym_concept] = ACTIONS(2697), - [anon_sym_co_return] = ACTIONS(2697), - [anon_sym_co_yield] = ACTIONS(2697), - [anon_sym_R_DQUOTE] = ACTIONS(2699), - [anon_sym_LR_DQUOTE] = ACTIONS(2699), - [anon_sym_uR_DQUOTE] = ACTIONS(2699), - [anon_sym_UR_DQUOTE] = ACTIONS(2699), - [anon_sym_u8R_DQUOTE] = ACTIONS(2699), - [anon_sym_co_await] = ACTIONS(2697), - [anon_sym_new] = ACTIONS(2697), - [anon_sym_requires] = ACTIONS(2697), - [sym_this] = ACTIONS(2697), - [sym_nullptr] = ACTIONS(2697), - }, - [951] = { - [sym_identifier] = ACTIONS(2793), - [aux_sym_preproc_include_token1] = ACTIONS(2793), - [aux_sym_preproc_def_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), - [sym_preproc_directive] = ACTIONS(2793), - [anon_sym_LPAREN2] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_AMP_AMP] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(2793), - [anon_sym___attribute__] = ACTIONS(2793), - [anon_sym_COLON_COLON] = ACTIONS(2795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), - [anon_sym___declspec] = ACTIONS(2793), - [anon_sym___based] = ACTIONS(2793), - [anon_sym___cdecl] = ACTIONS(2793), - [anon_sym___clrcall] = ACTIONS(2793), - [anon_sym___stdcall] = ACTIONS(2793), - [anon_sym___fastcall] = ACTIONS(2793), - [anon_sym___thiscall] = ACTIONS(2793), - [anon_sym___vectorcall] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2793), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_register] = ACTIONS(2793), - [anon_sym_inline] = ACTIONS(2793), - [anon_sym_thread_local] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_volatile] = ACTIONS(2793), - [anon_sym_restrict] = ACTIONS(2793), - [anon_sym__Atomic] = ACTIONS(2793), - [anon_sym_mutable] = ACTIONS(2793), - [anon_sym_constexpr] = ACTIONS(2793), - [anon_sym_constinit] = ACTIONS(2793), - [anon_sym_consteval] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2793), - [anon_sym_unsigned] = ACTIONS(2793), - [anon_sym_long] = ACTIONS(2793), - [anon_sym_short] = ACTIONS(2793), - [sym_primitive_type] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_class] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_union] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_switch] = ACTIONS(2793), - [anon_sym_case] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_do] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_goto] = ACTIONS(2793), - [anon_sym_not] = ACTIONS(2793), - [anon_sym_compl] = ACTIONS(2793), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_sizeof] = ACTIONS(2793), - [sym_number_literal] = ACTIONS(2795), - [anon_sym_L_SQUOTE] = ACTIONS(2795), - [anon_sym_u_SQUOTE] = ACTIONS(2795), - [anon_sym_U_SQUOTE] = ACTIONS(2795), - [anon_sym_u8_SQUOTE] = ACTIONS(2795), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_L_DQUOTE] = ACTIONS(2795), - [anon_sym_u_DQUOTE] = ACTIONS(2795), - [anon_sym_U_DQUOTE] = ACTIONS(2795), - [anon_sym_u8_DQUOTE] = ACTIONS(2795), - [anon_sym_DQUOTE] = ACTIONS(2795), - [sym_true] = ACTIONS(2793), - [sym_false] = ACTIONS(2793), - [sym_null] = ACTIONS(2793), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2793), - [anon_sym_decltype] = ACTIONS(2793), - [anon_sym_virtual] = ACTIONS(2793), - [anon_sym_explicit] = ACTIONS(2793), - [anon_sym_typename] = ACTIONS(2793), - [anon_sym_template] = ACTIONS(2793), - [anon_sym_operator] = ACTIONS(2793), - [anon_sym_try] = ACTIONS(2793), - [anon_sym_delete] = ACTIONS(2793), - [anon_sym_throw] = ACTIONS(2793), - [anon_sym_namespace] = ACTIONS(2793), - [anon_sym_using] = ACTIONS(2793), - [anon_sym_static_assert] = ACTIONS(2793), - [anon_sym_concept] = ACTIONS(2793), - [anon_sym_co_return] = ACTIONS(2793), - [anon_sym_co_yield] = ACTIONS(2793), - [anon_sym_R_DQUOTE] = ACTIONS(2795), - [anon_sym_LR_DQUOTE] = ACTIONS(2795), - [anon_sym_uR_DQUOTE] = ACTIONS(2795), - [anon_sym_UR_DQUOTE] = ACTIONS(2795), - [anon_sym_u8R_DQUOTE] = ACTIONS(2795), - [anon_sym_co_await] = ACTIONS(2793), - [anon_sym_new] = ACTIONS(2793), - [anon_sym_requires] = ACTIONS(2793), - [sym_this] = ACTIONS(2793), - [sym_nullptr] = ACTIONS(2793), - }, - [952] = { - [ts_builtin_sym_end] = ACTIONS(2775), - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym_not] = ACTIONS(2773), - [anon_sym_compl] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_R_DQUOTE] = ACTIONS(2775), - [anon_sym_LR_DQUOTE] = ACTIONS(2775), - [anon_sym_uR_DQUOTE] = ACTIONS(2775), - [anon_sym_UR_DQUOTE] = ACTIONS(2775), - [anon_sym_u8R_DQUOTE] = ACTIONS(2775), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), - [sym_nullptr] = ACTIONS(2773), - }, - [953] = { - [ts_builtin_sym_end] = ACTIONS(2775), - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym_not] = ACTIONS(2773), - [anon_sym_compl] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_R_DQUOTE] = ACTIONS(2775), - [anon_sym_LR_DQUOTE] = ACTIONS(2775), - [anon_sym_uR_DQUOTE] = ACTIONS(2775), - [anon_sym_UR_DQUOTE] = ACTIONS(2775), - [anon_sym_u8R_DQUOTE] = ACTIONS(2775), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), - [sym_nullptr] = ACTIONS(2773), - }, - [954] = { - [sym_identifier] = ACTIONS(2693), - [aux_sym_preproc_include_token1] = ACTIONS(2693), - [aux_sym_preproc_def_token1] = ACTIONS(2693), - [aux_sym_preproc_if_token1] = ACTIONS(2693), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2693), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2693), - [sym_preproc_directive] = ACTIONS(2693), - [anon_sym_LPAREN2] = ACTIONS(2695), - [anon_sym_BANG] = ACTIONS(2695), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2695), - [anon_sym_AMP_AMP] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_SEMI] = ACTIONS(2695), - [anon_sym_typedef] = ACTIONS(2693), - [anon_sym_extern] = ACTIONS(2693), - [anon_sym___attribute__] = ACTIONS(2693), - [anon_sym_COLON_COLON] = ACTIONS(2695), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2695), - [anon_sym___declspec] = ACTIONS(2693), - [anon_sym___based] = ACTIONS(2693), - [anon_sym___cdecl] = ACTIONS(2693), - [anon_sym___clrcall] = ACTIONS(2693), - [anon_sym___stdcall] = ACTIONS(2693), - [anon_sym___fastcall] = ACTIONS(2693), - [anon_sym___thiscall] = ACTIONS(2693), - [anon_sym___vectorcall] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_static] = ACTIONS(2693), - [anon_sym_register] = ACTIONS(2693), - [anon_sym_inline] = ACTIONS(2693), - [anon_sym_thread_local] = ACTIONS(2693), - [anon_sym_const] = ACTIONS(2693), - [anon_sym_volatile] = ACTIONS(2693), - [anon_sym_restrict] = ACTIONS(2693), - [anon_sym__Atomic] = ACTIONS(2693), - [anon_sym_mutable] = ACTIONS(2693), - [anon_sym_constexpr] = ACTIONS(2693), - [anon_sym_constinit] = ACTIONS(2693), - [anon_sym_consteval] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2693), - [anon_sym_unsigned] = ACTIONS(2693), - [anon_sym_long] = ACTIONS(2693), - [anon_sym_short] = ACTIONS(2693), - [sym_primitive_type] = ACTIONS(2693), - [anon_sym_enum] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_struct] = ACTIONS(2693), - [anon_sym_union] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2693), - [anon_sym_default] = ACTIONS(2693), - [anon_sym_while] = ACTIONS(2693), - [anon_sym_do] = ACTIONS(2693), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2693), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2693), - [anon_sym_goto] = ACTIONS(2693), - [anon_sym_not] = ACTIONS(2693), - [anon_sym_compl] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_sizeof] = ACTIONS(2693), - [sym_number_literal] = ACTIONS(2695), - [anon_sym_L_SQUOTE] = ACTIONS(2695), - [anon_sym_u_SQUOTE] = ACTIONS(2695), - [anon_sym_U_SQUOTE] = ACTIONS(2695), - [anon_sym_u8_SQUOTE] = ACTIONS(2695), - [anon_sym_SQUOTE] = ACTIONS(2695), - [anon_sym_L_DQUOTE] = ACTIONS(2695), - [anon_sym_u_DQUOTE] = ACTIONS(2695), - [anon_sym_U_DQUOTE] = ACTIONS(2695), - [anon_sym_u8_DQUOTE] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(2695), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_null] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2693), - [anon_sym_decltype] = ACTIONS(2693), - [anon_sym_virtual] = ACTIONS(2693), - [anon_sym_explicit] = ACTIONS(2693), - [anon_sym_typename] = ACTIONS(2693), - [anon_sym_template] = ACTIONS(2693), - [anon_sym_operator] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_delete] = ACTIONS(2693), - [anon_sym_throw] = ACTIONS(2693), - [anon_sym_namespace] = ACTIONS(2693), - [anon_sym_using] = ACTIONS(2693), - [anon_sym_static_assert] = ACTIONS(2693), - [anon_sym_concept] = ACTIONS(2693), - [anon_sym_co_return] = ACTIONS(2693), - [anon_sym_co_yield] = ACTIONS(2693), - [anon_sym_R_DQUOTE] = ACTIONS(2695), - [anon_sym_LR_DQUOTE] = ACTIONS(2695), - [anon_sym_uR_DQUOTE] = ACTIONS(2695), - [anon_sym_UR_DQUOTE] = ACTIONS(2695), - [anon_sym_u8R_DQUOTE] = ACTIONS(2695), - [anon_sym_co_await] = ACTIONS(2693), - [anon_sym_new] = ACTIONS(2693), - [anon_sym_requires] = ACTIONS(2693), - [sym_this] = ACTIONS(2693), - [sym_nullptr] = ACTIONS(2693), - }, - [955] = { - [sym_identifier] = ACTIONS(2817), - [aux_sym_preproc_include_token1] = ACTIONS(2817), - [aux_sym_preproc_def_token1] = ACTIONS(2817), - [aux_sym_preproc_if_token1] = ACTIONS(2817), - [aux_sym_preproc_if_token2] = ACTIONS(2817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2817), - [sym_preproc_directive] = ACTIONS(2817), - [anon_sym_LPAREN2] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_TILDE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2817), - [anon_sym_PLUS] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(2819), - [anon_sym_AMP_AMP] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_typedef] = ACTIONS(2817), - [anon_sym_extern] = ACTIONS(2817), - [anon_sym___attribute__] = ACTIONS(2817), - [anon_sym_COLON_COLON] = ACTIONS(2819), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2819), - [anon_sym___declspec] = ACTIONS(2817), - [anon_sym___based] = ACTIONS(2817), - [anon_sym___cdecl] = ACTIONS(2817), - [anon_sym___clrcall] = ACTIONS(2817), - [anon_sym___stdcall] = ACTIONS(2817), - [anon_sym___fastcall] = ACTIONS(2817), - [anon_sym___thiscall] = ACTIONS(2817), - [anon_sym___vectorcall] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2817), - [anon_sym_static] = ACTIONS(2817), - [anon_sym_register] = ACTIONS(2817), - [anon_sym_inline] = ACTIONS(2817), - [anon_sym_thread_local] = ACTIONS(2817), - [anon_sym_const] = ACTIONS(2817), - [anon_sym_volatile] = ACTIONS(2817), - [anon_sym_restrict] = ACTIONS(2817), - [anon_sym__Atomic] = ACTIONS(2817), - [anon_sym_mutable] = ACTIONS(2817), - [anon_sym_constexpr] = ACTIONS(2817), - [anon_sym_constinit] = ACTIONS(2817), - [anon_sym_consteval] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2817), - [anon_sym_unsigned] = ACTIONS(2817), - [anon_sym_long] = ACTIONS(2817), - [anon_sym_short] = ACTIONS(2817), - [sym_primitive_type] = ACTIONS(2817), - [anon_sym_enum] = ACTIONS(2817), - [anon_sym_class] = ACTIONS(2817), - [anon_sym_struct] = ACTIONS(2817), - [anon_sym_union] = ACTIONS(2817), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_switch] = ACTIONS(2817), - [anon_sym_case] = ACTIONS(2817), - [anon_sym_default] = ACTIONS(2817), - [anon_sym_while] = ACTIONS(2817), - [anon_sym_do] = ACTIONS(2817), - [anon_sym_for] = ACTIONS(2817), - [anon_sym_return] = ACTIONS(2817), - [anon_sym_break] = ACTIONS(2817), - [anon_sym_continue] = ACTIONS(2817), - [anon_sym_goto] = ACTIONS(2817), - [anon_sym_not] = ACTIONS(2817), - [anon_sym_compl] = ACTIONS(2817), - [anon_sym_DASH_DASH] = ACTIONS(2819), - [anon_sym_PLUS_PLUS] = ACTIONS(2819), - [anon_sym_sizeof] = ACTIONS(2817), - [sym_number_literal] = ACTIONS(2819), - [anon_sym_L_SQUOTE] = ACTIONS(2819), - [anon_sym_u_SQUOTE] = ACTIONS(2819), - [anon_sym_U_SQUOTE] = ACTIONS(2819), - [anon_sym_u8_SQUOTE] = ACTIONS(2819), - [anon_sym_SQUOTE] = ACTIONS(2819), - [anon_sym_L_DQUOTE] = ACTIONS(2819), - [anon_sym_u_DQUOTE] = ACTIONS(2819), - [anon_sym_U_DQUOTE] = ACTIONS(2819), - [anon_sym_u8_DQUOTE] = ACTIONS(2819), - [anon_sym_DQUOTE] = ACTIONS(2819), - [sym_true] = ACTIONS(2817), - [sym_false] = ACTIONS(2817), - [sym_null] = ACTIONS(2817), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2817), - [anon_sym_decltype] = ACTIONS(2817), - [anon_sym_virtual] = ACTIONS(2817), - [anon_sym_explicit] = ACTIONS(2817), - [anon_sym_typename] = ACTIONS(2817), - [anon_sym_template] = ACTIONS(2817), - [anon_sym_operator] = ACTIONS(2817), - [anon_sym_try] = ACTIONS(2817), - [anon_sym_delete] = ACTIONS(2817), - [anon_sym_throw] = ACTIONS(2817), - [anon_sym_namespace] = ACTIONS(2817), - [anon_sym_using] = ACTIONS(2817), - [anon_sym_static_assert] = ACTIONS(2817), - [anon_sym_concept] = ACTIONS(2817), - [anon_sym_co_return] = ACTIONS(2817), - [anon_sym_co_yield] = ACTIONS(2817), - [anon_sym_R_DQUOTE] = ACTIONS(2819), - [anon_sym_LR_DQUOTE] = ACTIONS(2819), - [anon_sym_uR_DQUOTE] = ACTIONS(2819), - [anon_sym_UR_DQUOTE] = ACTIONS(2819), - [anon_sym_u8R_DQUOTE] = ACTIONS(2819), - [anon_sym_co_await] = ACTIONS(2817), - [anon_sym_new] = ACTIONS(2817), - [anon_sym_requires] = ACTIONS(2817), - [sym_this] = ACTIONS(2817), - [sym_nullptr] = ACTIONS(2817), - }, - [956] = { - [sym_identifier] = ACTIONS(2801), - [aux_sym_preproc_include_token1] = ACTIONS(2801), - [aux_sym_preproc_def_token1] = ACTIONS(2801), - [aux_sym_preproc_if_token1] = ACTIONS(2801), - [aux_sym_preproc_if_token2] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), - [sym_preproc_directive] = ACTIONS(2801), - [anon_sym_LPAREN2] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_AMP_AMP] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2801), - [anon_sym_extern] = ACTIONS(2801), - [anon_sym___attribute__] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), - [anon_sym___declspec] = ACTIONS(2801), - [anon_sym___based] = ACTIONS(2801), - [anon_sym___cdecl] = ACTIONS(2801), - [anon_sym___clrcall] = ACTIONS(2801), - [anon_sym___stdcall] = ACTIONS(2801), - [anon_sym___fastcall] = ACTIONS(2801), - [anon_sym___thiscall] = ACTIONS(2801), - [anon_sym___vectorcall] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_register] = ACTIONS(2801), - [anon_sym_inline] = ACTIONS(2801), - [anon_sym_thread_local] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_volatile] = ACTIONS(2801), - [anon_sym_restrict] = ACTIONS(2801), - [anon_sym__Atomic] = ACTIONS(2801), - [anon_sym_mutable] = ACTIONS(2801), - [anon_sym_constexpr] = ACTIONS(2801), - [anon_sym_constinit] = ACTIONS(2801), - [anon_sym_consteval] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2801), - [anon_sym_unsigned] = ACTIONS(2801), - [anon_sym_long] = ACTIONS(2801), - [anon_sym_short] = ACTIONS(2801), - [sym_primitive_type] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_switch] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_do] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_goto] = ACTIONS(2801), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2803), - [anon_sym_PLUS_PLUS] = ACTIONS(2803), - [anon_sym_sizeof] = ACTIONS(2801), - [sym_number_literal] = ACTIONS(2803), - [anon_sym_L_SQUOTE] = ACTIONS(2803), - [anon_sym_u_SQUOTE] = ACTIONS(2803), - [anon_sym_U_SQUOTE] = ACTIONS(2803), - [anon_sym_u8_SQUOTE] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_L_DQUOTE] = ACTIONS(2803), - [anon_sym_u_DQUOTE] = ACTIONS(2803), - [anon_sym_U_DQUOTE] = ACTIONS(2803), - [anon_sym_u8_DQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_null] = ACTIONS(2801), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2801), - [anon_sym_decltype] = ACTIONS(2801), - [anon_sym_virtual] = ACTIONS(2801), - [anon_sym_explicit] = ACTIONS(2801), - [anon_sym_typename] = ACTIONS(2801), - [anon_sym_template] = ACTIONS(2801), - [anon_sym_operator] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [anon_sym_delete] = ACTIONS(2801), - [anon_sym_throw] = ACTIONS(2801), - [anon_sym_namespace] = ACTIONS(2801), - [anon_sym_using] = ACTIONS(2801), - [anon_sym_static_assert] = ACTIONS(2801), - [anon_sym_concept] = ACTIONS(2801), - [anon_sym_co_return] = ACTIONS(2801), - [anon_sym_co_yield] = ACTIONS(2801), - [anon_sym_R_DQUOTE] = ACTIONS(2803), - [anon_sym_LR_DQUOTE] = ACTIONS(2803), - [anon_sym_uR_DQUOTE] = ACTIONS(2803), - [anon_sym_UR_DQUOTE] = ACTIONS(2803), - [anon_sym_u8R_DQUOTE] = ACTIONS(2803), - [anon_sym_co_await] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_requires] = ACTIONS(2801), - [sym_this] = ACTIONS(2801), - [sym_nullptr] = ACTIONS(2801), - }, - [957] = { - [sym_identifier] = ACTIONS(2813), - [aux_sym_preproc_include_token1] = ACTIONS(2813), - [aux_sym_preproc_def_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token2] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), - [sym_preproc_directive] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_typedef] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym___attribute__] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), - [anon_sym___declspec] = ACTIONS(2813), - [anon_sym___based] = ACTIONS(2813), - [anon_sym___cdecl] = ACTIONS(2813), - [anon_sym___clrcall] = ACTIONS(2813), - [anon_sym___stdcall] = ACTIONS(2813), - [anon_sym___fastcall] = ACTIONS(2813), - [anon_sym___thiscall] = ACTIONS(2813), - [anon_sym___vectorcall] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_register] = ACTIONS(2813), - [anon_sym_inline] = ACTIONS(2813), - [anon_sym_thread_local] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_volatile] = ACTIONS(2813), - [anon_sym_restrict] = ACTIONS(2813), - [anon_sym__Atomic] = ACTIONS(2813), - [anon_sym_mutable] = ACTIONS(2813), - [anon_sym_constexpr] = ACTIONS(2813), - [anon_sym_constinit] = ACTIONS(2813), - [anon_sym_consteval] = ACTIONS(2813), - [anon_sym_signed] = ACTIONS(2813), - [anon_sym_unsigned] = ACTIONS(2813), - [anon_sym_long] = ACTIONS(2813), - [anon_sym_short] = ACTIONS(2813), - [sym_primitive_type] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_switch] = ACTIONS(2813), - [anon_sym_case] = ACTIONS(2813), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_do] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_goto] = ACTIONS(2813), - [anon_sym_not] = ACTIONS(2813), - [anon_sym_compl] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_sizeof] = ACTIONS(2813), - [sym_number_literal] = ACTIONS(2815), - [anon_sym_L_SQUOTE] = ACTIONS(2815), - [anon_sym_u_SQUOTE] = ACTIONS(2815), - [anon_sym_U_SQUOTE] = ACTIONS(2815), - [anon_sym_u8_SQUOTE] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_L_DQUOTE] = ACTIONS(2815), - [anon_sym_u_DQUOTE] = ACTIONS(2815), - [anon_sym_U_DQUOTE] = ACTIONS(2815), - [anon_sym_u8_DQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [sym_null] = ACTIONS(2813), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2813), - [anon_sym_decltype] = ACTIONS(2813), - [anon_sym_virtual] = ACTIONS(2813), - [anon_sym_explicit] = ACTIONS(2813), - [anon_sym_typename] = ACTIONS(2813), - [anon_sym_template] = ACTIONS(2813), - [anon_sym_operator] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [anon_sym_delete] = ACTIONS(2813), - [anon_sym_throw] = ACTIONS(2813), - [anon_sym_namespace] = ACTIONS(2813), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_static_assert] = ACTIONS(2813), - [anon_sym_concept] = ACTIONS(2813), - [anon_sym_co_return] = ACTIONS(2813), - [anon_sym_co_yield] = ACTIONS(2813), - [anon_sym_R_DQUOTE] = ACTIONS(2815), - [anon_sym_LR_DQUOTE] = ACTIONS(2815), - [anon_sym_uR_DQUOTE] = ACTIONS(2815), - [anon_sym_UR_DQUOTE] = ACTIONS(2815), - [anon_sym_u8R_DQUOTE] = ACTIONS(2815), - [anon_sym_co_await] = ACTIONS(2813), - [anon_sym_new] = ACTIONS(2813), - [anon_sym_requires] = ACTIONS(2813), - [sym_this] = ACTIONS(2813), - [sym_nullptr] = ACTIONS(2813), - }, - [958] = { - [sym_identifier] = ACTIONS(2805), - [aux_sym_preproc_include_token1] = ACTIONS(2805), - [aux_sym_preproc_def_token1] = ACTIONS(2805), - [aux_sym_preproc_if_token1] = ACTIONS(2805), - [aux_sym_preproc_if_token2] = ACTIONS(2805), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_AMP_AMP] = ACTIONS(2807), - [anon_sym_AMP] = ACTIONS(2805), - [anon_sym_SEMI] = ACTIONS(2807), - [anon_sym_typedef] = ACTIONS(2805), - [anon_sym_extern] = ACTIONS(2805), - [anon_sym___attribute__] = ACTIONS(2805), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), - [anon_sym___declspec] = ACTIONS(2805), - [anon_sym___based] = ACTIONS(2805), - [anon_sym___cdecl] = ACTIONS(2805), - [anon_sym___clrcall] = ACTIONS(2805), - [anon_sym___stdcall] = ACTIONS(2805), - [anon_sym___fastcall] = ACTIONS(2805), - [anon_sym___thiscall] = ACTIONS(2805), - [anon_sym___vectorcall] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2805), - [anon_sym_static] = ACTIONS(2805), - [anon_sym_register] = ACTIONS(2805), - [anon_sym_inline] = ACTIONS(2805), - [anon_sym_thread_local] = ACTIONS(2805), - [anon_sym_const] = ACTIONS(2805), - [anon_sym_volatile] = ACTIONS(2805), - [anon_sym_restrict] = ACTIONS(2805), - [anon_sym__Atomic] = ACTIONS(2805), - [anon_sym_mutable] = ACTIONS(2805), - [anon_sym_constexpr] = ACTIONS(2805), - [anon_sym_constinit] = ACTIONS(2805), - [anon_sym_consteval] = ACTIONS(2805), - [anon_sym_signed] = ACTIONS(2805), - [anon_sym_unsigned] = ACTIONS(2805), - [anon_sym_long] = ACTIONS(2805), - [anon_sym_short] = ACTIONS(2805), - [sym_primitive_type] = ACTIONS(2805), - [anon_sym_enum] = ACTIONS(2805), - [anon_sym_class] = ACTIONS(2805), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_union] = ACTIONS(2805), - [anon_sym_if] = ACTIONS(2805), - [anon_sym_switch] = ACTIONS(2805), - [anon_sym_case] = ACTIONS(2805), - [anon_sym_default] = ACTIONS(2805), - [anon_sym_while] = ACTIONS(2805), - [anon_sym_do] = ACTIONS(2805), - [anon_sym_for] = ACTIONS(2805), - [anon_sym_return] = ACTIONS(2805), - [anon_sym_break] = ACTIONS(2805), - [anon_sym_continue] = ACTIONS(2805), - [anon_sym_goto] = ACTIONS(2805), - [anon_sym_not] = ACTIONS(2805), - [anon_sym_compl] = ACTIONS(2805), - [anon_sym_DASH_DASH] = ACTIONS(2807), - [anon_sym_PLUS_PLUS] = ACTIONS(2807), - [anon_sym_sizeof] = ACTIONS(2805), - [sym_number_literal] = ACTIONS(2807), - [anon_sym_L_SQUOTE] = ACTIONS(2807), - [anon_sym_u_SQUOTE] = ACTIONS(2807), - [anon_sym_U_SQUOTE] = ACTIONS(2807), - [anon_sym_u8_SQUOTE] = ACTIONS(2807), - [anon_sym_SQUOTE] = ACTIONS(2807), - [anon_sym_L_DQUOTE] = ACTIONS(2807), - [anon_sym_u_DQUOTE] = ACTIONS(2807), - [anon_sym_U_DQUOTE] = ACTIONS(2807), - [anon_sym_u8_DQUOTE] = ACTIONS(2807), - [anon_sym_DQUOTE] = ACTIONS(2807), - [sym_true] = ACTIONS(2805), - [sym_false] = ACTIONS(2805), - [sym_null] = ACTIONS(2805), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2805), - [anon_sym_decltype] = ACTIONS(2805), - [anon_sym_virtual] = ACTIONS(2805), - [anon_sym_explicit] = ACTIONS(2805), - [anon_sym_typename] = ACTIONS(2805), - [anon_sym_template] = ACTIONS(2805), - [anon_sym_operator] = ACTIONS(2805), - [anon_sym_try] = ACTIONS(2805), - [anon_sym_delete] = ACTIONS(2805), - [anon_sym_throw] = ACTIONS(2805), - [anon_sym_namespace] = ACTIONS(2805), - [anon_sym_using] = ACTIONS(2805), - [anon_sym_static_assert] = ACTIONS(2805), - [anon_sym_concept] = ACTIONS(2805), - [anon_sym_co_return] = ACTIONS(2805), - [anon_sym_co_yield] = ACTIONS(2805), - [anon_sym_R_DQUOTE] = ACTIONS(2807), - [anon_sym_LR_DQUOTE] = ACTIONS(2807), - [anon_sym_uR_DQUOTE] = ACTIONS(2807), - [anon_sym_UR_DQUOTE] = ACTIONS(2807), - [anon_sym_u8R_DQUOTE] = ACTIONS(2807), - [anon_sym_co_await] = ACTIONS(2805), - [anon_sym_new] = ACTIONS(2805), - [anon_sym_requires] = ACTIONS(2805), - [sym_this] = ACTIONS(2805), - [sym_nullptr] = ACTIONS(2805), - }, - [959] = { - [sym_identifier] = ACTIONS(2809), - [aux_sym_preproc_include_token1] = ACTIONS(2809), - [aux_sym_preproc_def_token1] = ACTIONS(2809), - [aux_sym_preproc_if_token1] = ACTIONS(2809), - [aux_sym_preproc_if_token2] = ACTIONS(2809), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2809), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2809), - [sym_preproc_directive] = ACTIONS(2809), - [anon_sym_LPAREN2] = ACTIONS(2811), - [anon_sym_BANG] = ACTIONS(2811), - [anon_sym_TILDE] = ACTIONS(2811), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_PLUS] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(2811), - [anon_sym_AMP] = ACTIONS(2809), - [anon_sym_SEMI] = ACTIONS(2811), - [anon_sym_typedef] = ACTIONS(2809), - [anon_sym_extern] = ACTIONS(2809), - [anon_sym___attribute__] = ACTIONS(2809), - [anon_sym_COLON_COLON] = ACTIONS(2811), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2811), - [anon_sym___declspec] = ACTIONS(2809), - [anon_sym___based] = ACTIONS(2809), - [anon_sym___cdecl] = ACTIONS(2809), - [anon_sym___clrcall] = ACTIONS(2809), - [anon_sym___stdcall] = ACTIONS(2809), - [anon_sym___fastcall] = ACTIONS(2809), - [anon_sym___thiscall] = ACTIONS(2809), - [anon_sym___vectorcall] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2809), - [anon_sym_static] = ACTIONS(2809), - [anon_sym_register] = ACTIONS(2809), - [anon_sym_inline] = ACTIONS(2809), - [anon_sym_thread_local] = ACTIONS(2809), - [anon_sym_const] = ACTIONS(2809), - [anon_sym_volatile] = ACTIONS(2809), - [anon_sym_restrict] = ACTIONS(2809), - [anon_sym__Atomic] = ACTIONS(2809), - [anon_sym_mutable] = ACTIONS(2809), - [anon_sym_constexpr] = ACTIONS(2809), - [anon_sym_constinit] = ACTIONS(2809), - [anon_sym_consteval] = ACTIONS(2809), - [anon_sym_signed] = ACTIONS(2809), - [anon_sym_unsigned] = ACTIONS(2809), - [anon_sym_long] = ACTIONS(2809), - [anon_sym_short] = ACTIONS(2809), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(2809), - [anon_sym_class] = ACTIONS(2809), - [anon_sym_struct] = ACTIONS(2809), - [anon_sym_union] = ACTIONS(2809), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_switch] = ACTIONS(2809), - [anon_sym_case] = ACTIONS(2809), - [anon_sym_default] = ACTIONS(2809), - [anon_sym_while] = ACTIONS(2809), - [anon_sym_do] = ACTIONS(2809), - [anon_sym_for] = ACTIONS(2809), - [anon_sym_return] = ACTIONS(2809), - [anon_sym_break] = ACTIONS(2809), - [anon_sym_continue] = ACTIONS(2809), - [anon_sym_goto] = ACTIONS(2809), - [anon_sym_not] = ACTIONS(2809), - [anon_sym_compl] = ACTIONS(2809), - [anon_sym_DASH_DASH] = ACTIONS(2811), - [anon_sym_PLUS_PLUS] = ACTIONS(2811), - [anon_sym_sizeof] = ACTIONS(2809), - [sym_number_literal] = ACTIONS(2811), - [anon_sym_L_SQUOTE] = ACTIONS(2811), - [anon_sym_u_SQUOTE] = ACTIONS(2811), - [anon_sym_U_SQUOTE] = ACTIONS(2811), - [anon_sym_u8_SQUOTE] = ACTIONS(2811), - [anon_sym_SQUOTE] = ACTIONS(2811), - [anon_sym_L_DQUOTE] = ACTIONS(2811), - [anon_sym_u_DQUOTE] = ACTIONS(2811), - [anon_sym_U_DQUOTE] = ACTIONS(2811), - [anon_sym_u8_DQUOTE] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym_true] = ACTIONS(2809), - [sym_false] = ACTIONS(2809), - [sym_null] = ACTIONS(2809), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2809), - [anon_sym_decltype] = ACTIONS(2809), - [anon_sym_virtual] = ACTIONS(2809), - [anon_sym_explicit] = ACTIONS(2809), - [anon_sym_typename] = ACTIONS(2809), - [anon_sym_template] = ACTIONS(2809), - [anon_sym_operator] = ACTIONS(2809), - [anon_sym_try] = ACTIONS(2809), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_throw] = ACTIONS(2809), - [anon_sym_namespace] = ACTIONS(2809), - [anon_sym_using] = ACTIONS(2809), - [anon_sym_static_assert] = ACTIONS(2809), - [anon_sym_concept] = ACTIONS(2809), - [anon_sym_co_return] = ACTIONS(2809), - [anon_sym_co_yield] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2811), - [anon_sym_LR_DQUOTE] = ACTIONS(2811), - [anon_sym_uR_DQUOTE] = ACTIONS(2811), - [anon_sym_UR_DQUOTE] = ACTIONS(2811), - [anon_sym_u8R_DQUOTE] = ACTIONS(2811), - [anon_sym_co_await] = ACTIONS(2809), - [anon_sym_new] = ACTIONS(2809), - [anon_sym_requires] = ACTIONS(2809), - [sym_this] = ACTIONS(2809), - [sym_nullptr] = ACTIONS(2809), - }, - [960] = { - [ts_builtin_sym_end] = ACTIONS(2843), - [sym_identifier] = ACTIONS(2841), - [aux_sym_preproc_include_token1] = ACTIONS(2841), - [aux_sym_preproc_def_token1] = ACTIONS(2841), - [aux_sym_preproc_if_token1] = ACTIONS(2841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2841), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2841), - [sym_preproc_directive] = ACTIONS(2841), - [anon_sym_LPAREN2] = ACTIONS(2843), - [anon_sym_BANG] = ACTIONS(2843), - [anon_sym_TILDE] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_STAR] = ACTIONS(2843), - [anon_sym_AMP_AMP] = ACTIONS(2843), - [anon_sym_AMP] = ACTIONS(2841), - [anon_sym_SEMI] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2841), - [anon_sym_extern] = ACTIONS(2841), - [anon_sym___attribute__] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(2843), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2843), - [anon_sym___declspec] = ACTIONS(2841), - [anon_sym___based] = ACTIONS(2841), - [anon_sym___cdecl] = ACTIONS(2841), - [anon_sym___clrcall] = ACTIONS(2841), - [anon_sym___stdcall] = ACTIONS(2841), - [anon_sym___fastcall] = ACTIONS(2841), - [anon_sym___thiscall] = ACTIONS(2841), - [anon_sym___vectorcall] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_static] = ACTIONS(2841), - [anon_sym_register] = ACTIONS(2841), - [anon_sym_inline] = ACTIONS(2841), - [anon_sym_thread_local] = ACTIONS(2841), - [anon_sym_const] = ACTIONS(2841), - [anon_sym_volatile] = ACTIONS(2841), - [anon_sym_restrict] = ACTIONS(2841), - [anon_sym__Atomic] = ACTIONS(2841), - [anon_sym_mutable] = ACTIONS(2841), - [anon_sym_constexpr] = ACTIONS(2841), - [anon_sym_constinit] = ACTIONS(2841), - [anon_sym_consteval] = ACTIONS(2841), - [anon_sym_signed] = ACTIONS(2841), - [anon_sym_unsigned] = ACTIONS(2841), - [anon_sym_long] = ACTIONS(2841), - [anon_sym_short] = ACTIONS(2841), - [sym_primitive_type] = ACTIONS(2841), - [anon_sym_enum] = ACTIONS(2841), - [anon_sym_class] = ACTIONS(2841), - [anon_sym_struct] = ACTIONS(2841), - [anon_sym_union] = ACTIONS(2841), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_switch] = ACTIONS(2841), - [anon_sym_case] = ACTIONS(2841), - [anon_sym_default] = ACTIONS(2841), - [anon_sym_while] = ACTIONS(2841), - [anon_sym_do] = ACTIONS(2841), - [anon_sym_for] = ACTIONS(2841), - [anon_sym_return] = ACTIONS(2841), - [anon_sym_break] = ACTIONS(2841), - [anon_sym_continue] = ACTIONS(2841), - [anon_sym_goto] = ACTIONS(2841), - [anon_sym_not] = ACTIONS(2841), - [anon_sym_compl] = ACTIONS(2841), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_PLUS_PLUS] = ACTIONS(2843), - [anon_sym_sizeof] = ACTIONS(2841), - [sym_number_literal] = ACTIONS(2843), - [anon_sym_L_SQUOTE] = ACTIONS(2843), - [anon_sym_u_SQUOTE] = ACTIONS(2843), - [anon_sym_U_SQUOTE] = ACTIONS(2843), - [anon_sym_u8_SQUOTE] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_L_DQUOTE] = ACTIONS(2843), - [anon_sym_u_DQUOTE] = ACTIONS(2843), - [anon_sym_U_DQUOTE] = ACTIONS(2843), - [anon_sym_u8_DQUOTE] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym_true] = ACTIONS(2841), - [sym_false] = ACTIONS(2841), - [sym_null] = ACTIONS(2841), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2841), - [anon_sym_decltype] = ACTIONS(2841), - [anon_sym_virtual] = ACTIONS(2841), - [anon_sym_explicit] = ACTIONS(2841), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2841), - [anon_sym_operator] = ACTIONS(2841), - [anon_sym_try] = ACTIONS(2841), - [anon_sym_delete] = ACTIONS(2841), - [anon_sym_throw] = ACTIONS(2841), - [anon_sym_namespace] = ACTIONS(2841), - [anon_sym_using] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2841), - [anon_sym_concept] = ACTIONS(2841), - [anon_sym_co_return] = ACTIONS(2841), - [anon_sym_co_yield] = ACTIONS(2841), - [anon_sym_R_DQUOTE] = ACTIONS(2843), - [anon_sym_LR_DQUOTE] = ACTIONS(2843), - [anon_sym_uR_DQUOTE] = ACTIONS(2843), - [anon_sym_UR_DQUOTE] = ACTIONS(2843), - [anon_sym_u8R_DQUOTE] = ACTIONS(2843), - [anon_sym_co_await] = ACTIONS(2841), - [anon_sym_new] = ACTIONS(2841), - [anon_sym_requires] = ACTIONS(2841), - [sym_this] = ACTIONS(2841), - [sym_nullptr] = ACTIONS(2841), - }, - [961] = { - [sym_identifier] = ACTIONS(2677), - [aux_sym_preproc_include_token1] = ACTIONS(2677), - [aux_sym_preproc_def_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), - [sym_preproc_directive] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2677), - [anon_sym_extern] = ACTIONS(2677), - [anon_sym___attribute__] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), - [anon_sym___declspec] = ACTIONS(2677), - [anon_sym___based] = ACTIONS(2677), - [anon_sym___cdecl] = ACTIONS(2677), - [anon_sym___clrcall] = ACTIONS(2677), - [anon_sym___stdcall] = ACTIONS(2677), - [anon_sym___fastcall] = ACTIONS(2677), - [anon_sym___thiscall] = ACTIONS(2677), - [anon_sym___vectorcall] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_register] = ACTIONS(2677), - [anon_sym_inline] = ACTIONS(2677), - [anon_sym_thread_local] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_volatile] = ACTIONS(2677), - [anon_sym_restrict] = ACTIONS(2677), - [anon_sym__Atomic] = ACTIONS(2677), - [anon_sym_mutable] = ACTIONS(2677), - [anon_sym_constexpr] = ACTIONS(2677), - [anon_sym_constinit] = ACTIONS(2677), - [anon_sym_consteval] = ACTIONS(2677), - [anon_sym_signed] = ACTIONS(2677), - [anon_sym_unsigned] = ACTIONS(2677), - [anon_sym_long] = ACTIONS(2677), - [anon_sym_short] = ACTIONS(2677), - [sym_primitive_type] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2677), - [anon_sym_default] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_goto] = ACTIONS(2677), - [anon_sym_not] = ACTIONS(2677), - [anon_sym_compl] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_sizeof] = ACTIONS(2677), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_L_SQUOTE] = ACTIONS(2679), - [anon_sym_u_SQUOTE] = ACTIONS(2679), - [anon_sym_U_SQUOTE] = ACTIONS(2679), - [anon_sym_u8_SQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_L_DQUOTE] = ACTIONS(2679), - [anon_sym_u_DQUOTE] = ACTIONS(2679), - [anon_sym_U_DQUOTE] = ACTIONS(2679), - [anon_sym_u8_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_null] = ACTIONS(2677), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2677), - [anon_sym_decltype] = ACTIONS(2677), - [anon_sym_virtual] = ACTIONS(2677), - [anon_sym_explicit] = ACTIONS(2677), - [anon_sym_typename] = ACTIONS(2677), - [anon_sym_template] = ACTIONS(2677), - [anon_sym_operator] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_using] = ACTIONS(2677), - [anon_sym_static_assert] = ACTIONS(2677), - [anon_sym_concept] = ACTIONS(2677), - [anon_sym_co_return] = ACTIONS(2677), - [anon_sym_co_yield] = ACTIONS(2677), - [anon_sym_R_DQUOTE] = ACTIONS(2679), - [anon_sym_LR_DQUOTE] = ACTIONS(2679), - [anon_sym_uR_DQUOTE] = ACTIONS(2679), - [anon_sym_UR_DQUOTE] = ACTIONS(2679), - [anon_sym_u8R_DQUOTE] = ACTIONS(2679), - [anon_sym_co_await] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_requires] = ACTIONS(2677), - [sym_this] = ACTIONS(2677), - [sym_nullptr] = ACTIONS(2677), - }, - [962] = { - [sym_identifier] = ACTIONS(2673), - [aux_sym_preproc_include_token1] = ACTIONS(2673), - [aux_sym_preproc_def_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), - [sym_preproc_directive] = ACTIONS(2673), - [anon_sym_LPAREN2] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_AMP_AMP] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_typedef] = ACTIONS(2673), - [anon_sym_extern] = ACTIONS(2673), - [anon_sym___attribute__] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), - [anon_sym___declspec] = ACTIONS(2673), - [anon_sym___based] = ACTIONS(2673), - [anon_sym___cdecl] = ACTIONS(2673), - [anon_sym___clrcall] = ACTIONS(2673), - [anon_sym___stdcall] = ACTIONS(2673), - [anon_sym___fastcall] = ACTIONS(2673), - [anon_sym___thiscall] = ACTIONS(2673), - [anon_sym___vectorcall] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_RBRACE] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_register] = ACTIONS(2673), - [anon_sym_inline] = ACTIONS(2673), - [anon_sym_thread_local] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_volatile] = ACTIONS(2673), - [anon_sym_restrict] = ACTIONS(2673), - [anon_sym__Atomic] = ACTIONS(2673), - [anon_sym_mutable] = ACTIONS(2673), - [anon_sym_constexpr] = ACTIONS(2673), - [anon_sym_constinit] = ACTIONS(2673), - [anon_sym_consteval] = ACTIONS(2673), - [anon_sym_signed] = ACTIONS(2673), - [anon_sym_unsigned] = ACTIONS(2673), - [anon_sym_long] = ACTIONS(2673), - [anon_sym_short] = ACTIONS(2673), - [sym_primitive_type] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_union] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_goto] = ACTIONS(2673), - [anon_sym_not] = ACTIONS(2673), - [anon_sym_compl] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_sizeof] = ACTIONS(2673), - [sym_number_literal] = ACTIONS(2675), - [anon_sym_L_SQUOTE] = ACTIONS(2675), - [anon_sym_u_SQUOTE] = ACTIONS(2675), - [anon_sym_U_SQUOTE] = ACTIONS(2675), - [anon_sym_u8_SQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_L_DQUOTE] = ACTIONS(2675), - [anon_sym_u_DQUOTE] = ACTIONS(2675), - [anon_sym_U_DQUOTE] = ACTIONS(2675), - [anon_sym_u8_DQUOTE] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2673), - [anon_sym_decltype] = ACTIONS(2673), - [anon_sym_virtual] = ACTIONS(2673), - [anon_sym_explicit] = ACTIONS(2673), - [anon_sym_typename] = ACTIONS(2673), - [anon_sym_template] = ACTIONS(2673), - [anon_sym_operator] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_static_assert] = ACTIONS(2673), - [anon_sym_concept] = ACTIONS(2673), - [anon_sym_co_return] = ACTIONS(2673), - [anon_sym_co_yield] = ACTIONS(2673), - [anon_sym_R_DQUOTE] = ACTIONS(2675), - [anon_sym_LR_DQUOTE] = ACTIONS(2675), - [anon_sym_uR_DQUOTE] = ACTIONS(2675), - [anon_sym_UR_DQUOTE] = ACTIONS(2675), - [anon_sym_u8R_DQUOTE] = ACTIONS(2675), - [anon_sym_co_await] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_requires] = ACTIONS(2673), - [sym_this] = ACTIONS(2673), - [sym_nullptr] = ACTIONS(2673), - }, - [963] = { - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token2] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym_not] = ACTIONS(2773), - [anon_sym_compl] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_R_DQUOTE] = ACTIONS(2775), - [anon_sym_LR_DQUOTE] = ACTIONS(2775), - [anon_sym_uR_DQUOTE] = ACTIONS(2775), - [anon_sym_UR_DQUOTE] = ACTIONS(2775), - [anon_sym_u8R_DQUOTE] = ACTIONS(2775), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), - [sym_nullptr] = ACTIONS(2773), - }, - [964] = { - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token2] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym_not] = ACTIONS(2773), - [anon_sym_compl] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_R_DQUOTE] = ACTIONS(2775), - [anon_sym_LR_DQUOTE] = ACTIONS(2775), - [anon_sym_uR_DQUOTE] = ACTIONS(2775), - [anon_sym_UR_DQUOTE] = ACTIONS(2775), - [anon_sym_u8R_DQUOTE] = ACTIONS(2775), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), - [sym_nullptr] = ACTIONS(2773), - }, - [965] = { - [sym_identifier] = ACTIONS(2669), - [aux_sym_preproc_include_token1] = ACTIONS(2669), - [aux_sym_preproc_def_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), - [sym_preproc_directive] = ACTIONS(2669), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_typedef] = ACTIONS(2669), - [anon_sym_extern] = ACTIONS(2669), - [anon_sym___attribute__] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), - [anon_sym___declspec] = ACTIONS(2669), - [anon_sym___based] = ACTIONS(2669), - [anon_sym___cdecl] = ACTIONS(2669), - [anon_sym___clrcall] = ACTIONS(2669), - [anon_sym___stdcall] = ACTIONS(2669), - [anon_sym___fastcall] = ACTIONS(2669), - [anon_sym___thiscall] = ACTIONS(2669), - [anon_sym___vectorcall] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_register] = ACTIONS(2669), - [anon_sym_inline] = ACTIONS(2669), - [anon_sym_thread_local] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_volatile] = ACTIONS(2669), - [anon_sym_restrict] = ACTIONS(2669), - [anon_sym__Atomic] = ACTIONS(2669), - [anon_sym_mutable] = ACTIONS(2669), - [anon_sym_constexpr] = ACTIONS(2669), - [anon_sym_constinit] = ACTIONS(2669), - [anon_sym_consteval] = ACTIONS(2669), - [anon_sym_signed] = ACTIONS(2669), - [anon_sym_unsigned] = ACTIONS(2669), - [anon_sym_long] = ACTIONS(2669), - [anon_sym_short] = ACTIONS(2669), - [sym_primitive_type] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_default] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym_not] = ACTIONS(2669), - [anon_sym_compl] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_sizeof] = ACTIONS(2669), - [sym_number_literal] = ACTIONS(2671), - [anon_sym_L_SQUOTE] = ACTIONS(2671), - [anon_sym_u_SQUOTE] = ACTIONS(2671), - [anon_sym_U_SQUOTE] = ACTIONS(2671), - [anon_sym_u8_SQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_L_DQUOTE] = ACTIONS(2671), - [anon_sym_u_DQUOTE] = ACTIONS(2671), - [anon_sym_U_DQUOTE] = ACTIONS(2671), - [anon_sym_u8_DQUOTE] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_null] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2669), - [anon_sym_decltype] = ACTIONS(2669), - [anon_sym_virtual] = ACTIONS(2669), - [anon_sym_explicit] = ACTIONS(2669), - [anon_sym_typename] = ACTIONS(2669), - [anon_sym_template] = ACTIONS(2669), - [anon_sym_operator] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_namespace] = ACTIONS(2669), - [anon_sym_using] = ACTIONS(2669), - [anon_sym_static_assert] = ACTIONS(2669), - [anon_sym_concept] = ACTIONS(2669), - [anon_sym_co_return] = ACTIONS(2669), - [anon_sym_co_yield] = ACTIONS(2669), - [anon_sym_R_DQUOTE] = ACTIONS(2671), - [anon_sym_LR_DQUOTE] = ACTIONS(2671), - [anon_sym_uR_DQUOTE] = ACTIONS(2671), - [anon_sym_UR_DQUOTE] = ACTIONS(2671), - [anon_sym_u8R_DQUOTE] = ACTIONS(2671), - [anon_sym_co_await] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_requires] = ACTIONS(2669), - [sym_this] = ACTIONS(2669), - [sym_nullptr] = ACTIONS(2669), - }, - [966] = { - [ts_builtin_sym_end] = ACTIONS(2839), - [sym_identifier] = ACTIONS(2837), - [aux_sym_preproc_include_token1] = ACTIONS(2837), - [aux_sym_preproc_def_token1] = ACTIONS(2837), - [aux_sym_preproc_if_token1] = ACTIONS(2837), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2837), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2837), - [sym_preproc_directive] = ACTIONS(2837), - [anon_sym_LPAREN2] = ACTIONS(2839), - [anon_sym_BANG] = ACTIONS(2839), - [anon_sym_TILDE] = ACTIONS(2839), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2839), - [anon_sym_AMP_AMP] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_typedef] = ACTIONS(2837), - [anon_sym_extern] = ACTIONS(2837), - [anon_sym___attribute__] = ACTIONS(2837), - [anon_sym_COLON_COLON] = ACTIONS(2839), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2839), - [anon_sym___declspec] = ACTIONS(2837), - [anon_sym___based] = ACTIONS(2837), - [anon_sym___cdecl] = ACTIONS(2837), - [anon_sym___clrcall] = ACTIONS(2837), - [anon_sym___stdcall] = ACTIONS(2837), - [anon_sym___fastcall] = ACTIONS(2837), - [anon_sym___thiscall] = ACTIONS(2837), - [anon_sym___vectorcall] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_LBRACK] = ACTIONS(2837), - [anon_sym_static] = ACTIONS(2837), - [anon_sym_register] = ACTIONS(2837), - [anon_sym_inline] = ACTIONS(2837), - [anon_sym_thread_local] = ACTIONS(2837), - [anon_sym_const] = ACTIONS(2837), - [anon_sym_volatile] = ACTIONS(2837), - [anon_sym_restrict] = ACTIONS(2837), - [anon_sym__Atomic] = ACTIONS(2837), - [anon_sym_mutable] = ACTIONS(2837), - [anon_sym_constexpr] = ACTIONS(2837), - [anon_sym_constinit] = ACTIONS(2837), - [anon_sym_consteval] = ACTIONS(2837), - [anon_sym_signed] = ACTIONS(2837), - [anon_sym_unsigned] = ACTIONS(2837), - [anon_sym_long] = ACTIONS(2837), - [anon_sym_short] = ACTIONS(2837), - [sym_primitive_type] = ACTIONS(2837), - [anon_sym_enum] = ACTIONS(2837), - [anon_sym_class] = ACTIONS(2837), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_union] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_switch] = ACTIONS(2837), - [anon_sym_case] = ACTIONS(2837), - [anon_sym_default] = ACTIONS(2837), - [anon_sym_while] = ACTIONS(2837), - [anon_sym_do] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_break] = ACTIONS(2837), - [anon_sym_continue] = ACTIONS(2837), - [anon_sym_goto] = ACTIONS(2837), - [anon_sym_not] = ACTIONS(2837), - [anon_sym_compl] = ACTIONS(2837), - [anon_sym_DASH_DASH] = ACTIONS(2839), - [anon_sym_PLUS_PLUS] = ACTIONS(2839), - [anon_sym_sizeof] = ACTIONS(2837), - [sym_number_literal] = ACTIONS(2839), - [anon_sym_L_SQUOTE] = ACTIONS(2839), - [anon_sym_u_SQUOTE] = ACTIONS(2839), - [anon_sym_U_SQUOTE] = ACTIONS(2839), - [anon_sym_u8_SQUOTE] = ACTIONS(2839), - [anon_sym_SQUOTE] = ACTIONS(2839), - [anon_sym_L_DQUOTE] = ACTIONS(2839), - [anon_sym_u_DQUOTE] = ACTIONS(2839), - [anon_sym_U_DQUOTE] = ACTIONS(2839), - [anon_sym_u8_DQUOTE] = ACTIONS(2839), - [anon_sym_DQUOTE] = ACTIONS(2839), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_null] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2837), - [anon_sym_decltype] = ACTIONS(2837), - [anon_sym_virtual] = ACTIONS(2837), - [anon_sym_explicit] = ACTIONS(2837), - [anon_sym_typename] = ACTIONS(2837), - [anon_sym_template] = ACTIONS(2837), - [anon_sym_operator] = ACTIONS(2837), - [anon_sym_try] = ACTIONS(2837), - [anon_sym_delete] = ACTIONS(2837), - [anon_sym_throw] = ACTIONS(2837), - [anon_sym_namespace] = ACTIONS(2837), - [anon_sym_using] = ACTIONS(2837), - [anon_sym_static_assert] = ACTIONS(2837), - [anon_sym_concept] = ACTIONS(2837), - [anon_sym_co_return] = ACTIONS(2837), - [anon_sym_co_yield] = ACTIONS(2837), - [anon_sym_R_DQUOTE] = ACTIONS(2839), - [anon_sym_LR_DQUOTE] = ACTIONS(2839), - [anon_sym_uR_DQUOTE] = ACTIONS(2839), - [anon_sym_UR_DQUOTE] = ACTIONS(2839), - [anon_sym_u8R_DQUOTE] = ACTIONS(2839), - [anon_sym_co_await] = ACTIONS(2837), - [anon_sym_new] = ACTIONS(2837), - [anon_sym_requires] = ACTIONS(2837), - [sym_this] = ACTIONS(2837), - [sym_nullptr] = ACTIONS(2837), - }, - [967] = { - [sym_identifier] = ACTIONS(2753), - [aux_sym_preproc_include_token1] = ACTIONS(2753), - [aux_sym_preproc_def_token1] = ACTIONS(2753), - [aux_sym_preproc_if_token1] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), - [sym_preproc_directive] = ACTIONS(2753), - [anon_sym_LPAREN2] = ACTIONS(2755), - [anon_sym_BANG] = ACTIONS(2755), - [anon_sym_TILDE] = ACTIONS(2755), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_SEMI] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2753), - [anon_sym_extern] = ACTIONS(2753), - [anon_sym___attribute__] = ACTIONS(2753), - [anon_sym_COLON_COLON] = ACTIONS(2755), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), - [anon_sym___declspec] = ACTIONS(2753), - [anon_sym___based] = ACTIONS(2753), - [anon_sym___cdecl] = ACTIONS(2753), - [anon_sym___clrcall] = ACTIONS(2753), - [anon_sym___stdcall] = ACTIONS(2753), - [anon_sym___fastcall] = ACTIONS(2753), - [anon_sym___thiscall] = ACTIONS(2753), - [anon_sym___vectorcall] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_RBRACE] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2753), - [anon_sym_static] = ACTIONS(2753), - [anon_sym_register] = ACTIONS(2753), - [anon_sym_inline] = ACTIONS(2753), - [anon_sym_thread_local] = ACTIONS(2753), - [anon_sym_const] = ACTIONS(2753), - [anon_sym_volatile] = ACTIONS(2753), - [anon_sym_restrict] = ACTIONS(2753), - [anon_sym__Atomic] = ACTIONS(2753), - [anon_sym_mutable] = ACTIONS(2753), - [anon_sym_constexpr] = ACTIONS(2753), - [anon_sym_constinit] = ACTIONS(2753), - [anon_sym_consteval] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2753), - [anon_sym_unsigned] = ACTIONS(2753), - [anon_sym_long] = ACTIONS(2753), - [anon_sym_short] = ACTIONS(2753), - [sym_primitive_type] = ACTIONS(2753), - [anon_sym_enum] = ACTIONS(2753), - [anon_sym_class] = ACTIONS(2753), - [anon_sym_struct] = ACTIONS(2753), - [anon_sym_union] = ACTIONS(2753), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_switch] = ACTIONS(2753), - [anon_sym_case] = ACTIONS(2753), - [anon_sym_default] = ACTIONS(2753), - [anon_sym_while] = ACTIONS(2753), - [anon_sym_do] = ACTIONS(2753), - [anon_sym_for] = ACTIONS(2753), - [anon_sym_return] = ACTIONS(2753), - [anon_sym_break] = ACTIONS(2753), - [anon_sym_continue] = ACTIONS(2753), - [anon_sym_goto] = ACTIONS(2753), - [anon_sym_not] = ACTIONS(2753), - [anon_sym_compl] = ACTIONS(2753), - [anon_sym_DASH_DASH] = ACTIONS(2755), - [anon_sym_PLUS_PLUS] = ACTIONS(2755), - [anon_sym_sizeof] = ACTIONS(2753), - [sym_number_literal] = ACTIONS(2755), - [anon_sym_L_SQUOTE] = ACTIONS(2755), - [anon_sym_u_SQUOTE] = ACTIONS(2755), - [anon_sym_U_SQUOTE] = ACTIONS(2755), - [anon_sym_u8_SQUOTE] = ACTIONS(2755), - [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_L_DQUOTE] = ACTIONS(2755), - [anon_sym_u_DQUOTE] = ACTIONS(2755), - [anon_sym_U_DQUOTE] = ACTIONS(2755), - [anon_sym_u8_DQUOTE] = ACTIONS(2755), - [anon_sym_DQUOTE] = ACTIONS(2755), - [sym_true] = ACTIONS(2753), - [sym_false] = ACTIONS(2753), - [sym_null] = ACTIONS(2753), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2753), - [anon_sym_decltype] = ACTIONS(2753), - [anon_sym_virtual] = ACTIONS(2753), - [anon_sym_explicit] = ACTIONS(2753), - [anon_sym_typename] = ACTIONS(2753), - [anon_sym_template] = ACTIONS(2753), - [anon_sym_operator] = ACTIONS(2753), - [anon_sym_try] = ACTIONS(2753), - [anon_sym_delete] = ACTIONS(2753), - [anon_sym_throw] = ACTIONS(2753), - [anon_sym_namespace] = ACTIONS(2753), - [anon_sym_using] = ACTIONS(2753), - [anon_sym_static_assert] = ACTIONS(2753), - [anon_sym_concept] = ACTIONS(2753), - [anon_sym_co_return] = ACTIONS(2753), - [anon_sym_co_yield] = ACTIONS(2753), - [anon_sym_R_DQUOTE] = ACTIONS(2755), - [anon_sym_LR_DQUOTE] = ACTIONS(2755), - [anon_sym_uR_DQUOTE] = ACTIONS(2755), - [anon_sym_UR_DQUOTE] = ACTIONS(2755), - [anon_sym_u8R_DQUOTE] = ACTIONS(2755), - [anon_sym_co_await] = ACTIONS(2753), - [anon_sym_new] = ACTIONS(2753), - [anon_sym_requires] = ACTIONS(2753), - [sym_this] = ACTIONS(2753), - [sym_nullptr] = ACTIONS(2753), - }, - [968] = { - [sym_identifier] = ACTIONS(2661), - [aux_sym_preproc_include_token1] = ACTIONS(2661), - [aux_sym_preproc_def_token1] = ACTIONS(2661), - [aux_sym_preproc_if_token1] = ACTIONS(2661), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2661), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2661), - [sym_preproc_directive] = ACTIONS(2661), - [anon_sym_LPAREN2] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_PLUS] = ACTIONS(2661), - [anon_sym_STAR] = ACTIONS(2663), - [anon_sym_AMP_AMP] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2661), - [anon_sym_SEMI] = ACTIONS(2663), - [anon_sym_typedef] = ACTIONS(2661), - [anon_sym_extern] = ACTIONS(2661), - [anon_sym___attribute__] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2663), - [anon_sym___declspec] = ACTIONS(2661), - [anon_sym___based] = ACTIONS(2661), - [anon_sym___cdecl] = ACTIONS(2661), - [anon_sym___clrcall] = ACTIONS(2661), - [anon_sym___stdcall] = ACTIONS(2661), - [anon_sym___fastcall] = ACTIONS(2661), - [anon_sym___thiscall] = ACTIONS(2661), - [anon_sym___vectorcall] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_RBRACE] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_static] = ACTIONS(2661), - [anon_sym_register] = ACTIONS(2661), - [anon_sym_inline] = ACTIONS(2661), - [anon_sym_thread_local] = ACTIONS(2661), - [anon_sym_const] = ACTIONS(2661), - [anon_sym_volatile] = ACTIONS(2661), - [anon_sym_restrict] = ACTIONS(2661), - [anon_sym__Atomic] = ACTIONS(2661), - [anon_sym_mutable] = ACTIONS(2661), - [anon_sym_constexpr] = ACTIONS(2661), - [anon_sym_constinit] = ACTIONS(2661), - [anon_sym_consteval] = ACTIONS(2661), - [anon_sym_signed] = ACTIONS(2661), - [anon_sym_unsigned] = ACTIONS(2661), - [anon_sym_long] = ACTIONS(2661), - [anon_sym_short] = ACTIONS(2661), - [sym_primitive_type] = ACTIONS(2661), - [anon_sym_enum] = ACTIONS(2661), - [anon_sym_class] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2661), - [anon_sym_union] = ACTIONS(2661), - [anon_sym_if] = ACTIONS(2661), - [anon_sym_switch] = ACTIONS(2661), - [anon_sym_case] = ACTIONS(2661), - [anon_sym_default] = ACTIONS(2661), - [anon_sym_while] = ACTIONS(2661), - [anon_sym_do] = ACTIONS(2661), - [anon_sym_for] = ACTIONS(2661), - [anon_sym_return] = ACTIONS(2661), - [anon_sym_break] = ACTIONS(2661), - [anon_sym_continue] = ACTIONS(2661), - [anon_sym_goto] = ACTIONS(2661), - [anon_sym_not] = ACTIONS(2661), - [anon_sym_compl] = ACTIONS(2661), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_sizeof] = ACTIONS(2661), - [sym_number_literal] = ACTIONS(2663), - [anon_sym_L_SQUOTE] = ACTIONS(2663), - [anon_sym_u_SQUOTE] = ACTIONS(2663), - [anon_sym_U_SQUOTE] = ACTIONS(2663), - [anon_sym_u8_SQUOTE] = ACTIONS(2663), - [anon_sym_SQUOTE] = ACTIONS(2663), - [anon_sym_L_DQUOTE] = ACTIONS(2663), - [anon_sym_u_DQUOTE] = ACTIONS(2663), - [anon_sym_U_DQUOTE] = ACTIONS(2663), - [anon_sym_u8_DQUOTE] = ACTIONS(2663), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym_true] = ACTIONS(2661), - [sym_false] = ACTIONS(2661), - [sym_null] = ACTIONS(2661), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2661), - [anon_sym_decltype] = ACTIONS(2661), - [anon_sym_virtual] = ACTIONS(2661), - [anon_sym_explicit] = ACTIONS(2661), - [anon_sym_typename] = ACTIONS(2661), - [anon_sym_template] = ACTIONS(2661), - [anon_sym_operator] = ACTIONS(2661), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_delete] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2661), - [anon_sym_namespace] = ACTIONS(2661), - [anon_sym_using] = ACTIONS(2661), - [anon_sym_static_assert] = ACTIONS(2661), - [anon_sym_concept] = ACTIONS(2661), - [anon_sym_co_return] = ACTIONS(2661), - [anon_sym_co_yield] = ACTIONS(2661), - [anon_sym_R_DQUOTE] = ACTIONS(2663), - [anon_sym_LR_DQUOTE] = ACTIONS(2663), - [anon_sym_uR_DQUOTE] = ACTIONS(2663), - [anon_sym_UR_DQUOTE] = ACTIONS(2663), - [anon_sym_u8R_DQUOTE] = ACTIONS(2663), - [anon_sym_co_await] = ACTIONS(2661), - [anon_sym_new] = ACTIONS(2661), - [anon_sym_requires] = ACTIONS(2661), - [sym_this] = ACTIONS(2661), - [sym_nullptr] = ACTIONS(2661), - }, - [969] = { - [ts_builtin_sym_end] = ACTIONS(2787), - [sym_identifier] = ACTIONS(2785), - [aux_sym_preproc_include_token1] = ACTIONS(2785), - [aux_sym_preproc_def_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), - [sym_preproc_directive] = ACTIONS(2785), - [anon_sym_LPAREN2] = ACTIONS(2787), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_TILDE] = ACTIONS(2787), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_SEMI] = ACTIONS(2787), - [anon_sym_typedef] = ACTIONS(2785), - [anon_sym_extern] = ACTIONS(2785), - [anon_sym___attribute__] = ACTIONS(2785), - [anon_sym_COLON_COLON] = ACTIONS(2787), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), - [anon_sym___declspec] = ACTIONS(2785), - [anon_sym___based] = ACTIONS(2785), - [anon_sym___cdecl] = ACTIONS(2785), - [anon_sym___clrcall] = ACTIONS(2785), - [anon_sym___stdcall] = ACTIONS(2785), - [anon_sym___fastcall] = ACTIONS(2785), - [anon_sym___thiscall] = ACTIONS(2785), - [anon_sym___vectorcall] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_register] = ACTIONS(2785), - [anon_sym_inline] = ACTIONS(2785), - [anon_sym_thread_local] = ACTIONS(2785), - [anon_sym_const] = ACTIONS(2785), - [anon_sym_volatile] = ACTIONS(2785), - [anon_sym_restrict] = ACTIONS(2785), - [anon_sym__Atomic] = ACTIONS(2785), - [anon_sym_mutable] = ACTIONS(2785), - [anon_sym_constexpr] = ACTIONS(2785), - [anon_sym_constinit] = ACTIONS(2785), - [anon_sym_consteval] = ACTIONS(2785), - [anon_sym_signed] = ACTIONS(2785), - [anon_sym_unsigned] = ACTIONS(2785), - [anon_sym_long] = ACTIONS(2785), - [anon_sym_short] = ACTIONS(2785), - [sym_primitive_type] = ACTIONS(2785), - [anon_sym_enum] = ACTIONS(2785), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(2785), - [anon_sym_union] = ACTIONS(2785), - [anon_sym_if] = ACTIONS(2785), - [anon_sym_switch] = ACTIONS(2785), - [anon_sym_case] = ACTIONS(2785), - [anon_sym_default] = ACTIONS(2785), - [anon_sym_while] = ACTIONS(2785), - [anon_sym_do] = ACTIONS(2785), - [anon_sym_for] = ACTIONS(2785), - [anon_sym_return] = ACTIONS(2785), - [anon_sym_break] = ACTIONS(2785), - [anon_sym_continue] = ACTIONS(2785), - [anon_sym_goto] = ACTIONS(2785), - [anon_sym_not] = ACTIONS(2785), - [anon_sym_compl] = ACTIONS(2785), - [anon_sym_DASH_DASH] = ACTIONS(2787), - [anon_sym_PLUS_PLUS] = ACTIONS(2787), - [anon_sym_sizeof] = ACTIONS(2785), - [sym_number_literal] = ACTIONS(2787), - [anon_sym_L_SQUOTE] = ACTIONS(2787), - [anon_sym_u_SQUOTE] = ACTIONS(2787), - [anon_sym_U_SQUOTE] = ACTIONS(2787), - [anon_sym_u8_SQUOTE] = ACTIONS(2787), - [anon_sym_SQUOTE] = ACTIONS(2787), - [anon_sym_L_DQUOTE] = ACTIONS(2787), - [anon_sym_u_DQUOTE] = ACTIONS(2787), - [anon_sym_U_DQUOTE] = ACTIONS(2787), - [anon_sym_u8_DQUOTE] = ACTIONS(2787), - [anon_sym_DQUOTE] = ACTIONS(2787), - [sym_true] = ACTIONS(2785), - [sym_false] = ACTIONS(2785), - [sym_null] = ACTIONS(2785), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2785), - [anon_sym_decltype] = ACTIONS(2785), - [anon_sym_virtual] = ACTIONS(2785), - [anon_sym_explicit] = ACTIONS(2785), - [anon_sym_typename] = ACTIONS(2785), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_operator] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2785), - [anon_sym_delete] = ACTIONS(2785), - [anon_sym_throw] = ACTIONS(2785), - [anon_sym_namespace] = ACTIONS(2785), - [anon_sym_using] = ACTIONS(2785), - [anon_sym_static_assert] = ACTIONS(2785), - [anon_sym_concept] = ACTIONS(2785), - [anon_sym_co_return] = ACTIONS(2785), - [anon_sym_co_yield] = ACTIONS(2785), - [anon_sym_R_DQUOTE] = ACTIONS(2787), - [anon_sym_LR_DQUOTE] = ACTIONS(2787), - [anon_sym_uR_DQUOTE] = ACTIONS(2787), - [anon_sym_UR_DQUOTE] = ACTIONS(2787), - [anon_sym_u8R_DQUOTE] = ACTIONS(2787), - [anon_sym_co_await] = ACTIONS(2785), - [anon_sym_new] = ACTIONS(2785), - [anon_sym_requires] = ACTIONS(2785), - [sym_this] = ACTIONS(2785), - [sym_nullptr] = ACTIONS(2785), - }, - [970] = { - [ts_builtin_sym_end] = ACTIONS(2791), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_include_token1] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2789), - [aux_sym_preproc_if_token1] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), - [sym_preproc_directive] = ACTIONS(2789), - [anon_sym_LPAREN2] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_TILDE] = ACTIONS(2791), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_AMP_AMP] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2789), - [anon_sym_extern] = ACTIONS(2789), - [anon_sym___attribute__] = ACTIONS(2789), - [anon_sym_COLON_COLON] = ACTIONS(2791), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), - [anon_sym___declspec] = ACTIONS(2789), - [anon_sym___based] = ACTIONS(2789), - [anon_sym___cdecl] = ACTIONS(2789), - [anon_sym___clrcall] = ACTIONS(2789), - [anon_sym___stdcall] = ACTIONS(2789), - [anon_sym___fastcall] = ACTIONS(2789), - [anon_sym___thiscall] = ACTIONS(2789), - [anon_sym___vectorcall] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2789), - [anon_sym_static] = ACTIONS(2789), - [anon_sym_register] = ACTIONS(2789), - [anon_sym_inline] = ACTIONS(2789), - [anon_sym_thread_local] = ACTIONS(2789), - [anon_sym_const] = ACTIONS(2789), - [anon_sym_volatile] = ACTIONS(2789), - [anon_sym_restrict] = ACTIONS(2789), - [anon_sym__Atomic] = ACTIONS(2789), - [anon_sym_mutable] = ACTIONS(2789), - [anon_sym_constexpr] = ACTIONS(2789), - [anon_sym_constinit] = ACTIONS(2789), - [anon_sym_consteval] = ACTIONS(2789), - [anon_sym_signed] = ACTIONS(2789), - [anon_sym_unsigned] = ACTIONS(2789), - [anon_sym_long] = ACTIONS(2789), - [anon_sym_short] = ACTIONS(2789), - [sym_primitive_type] = ACTIONS(2789), - [anon_sym_enum] = ACTIONS(2789), - [anon_sym_class] = ACTIONS(2789), - [anon_sym_struct] = ACTIONS(2789), - [anon_sym_union] = ACTIONS(2789), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_switch] = ACTIONS(2789), - [anon_sym_case] = ACTIONS(2789), - [anon_sym_default] = ACTIONS(2789), - [anon_sym_while] = ACTIONS(2789), - [anon_sym_do] = ACTIONS(2789), - [anon_sym_for] = ACTIONS(2789), - [anon_sym_return] = ACTIONS(2789), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2789), - [anon_sym_goto] = ACTIONS(2789), - [anon_sym_not] = ACTIONS(2789), - [anon_sym_compl] = ACTIONS(2789), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_sizeof] = ACTIONS(2789), - [sym_number_literal] = ACTIONS(2791), - [anon_sym_L_SQUOTE] = ACTIONS(2791), - [anon_sym_u_SQUOTE] = ACTIONS(2791), - [anon_sym_U_SQUOTE] = ACTIONS(2791), - [anon_sym_u8_SQUOTE] = ACTIONS(2791), - [anon_sym_SQUOTE] = ACTIONS(2791), - [anon_sym_L_DQUOTE] = ACTIONS(2791), - [anon_sym_u_DQUOTE] = ACTIONS(2791), - [anon_sym_U_DQUOTE] = ACTIONS(2791), - [anon_sym_u8_DQUOTE] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2791), - [sym_true] = ACTIONS(2789), - [sym_false] = ACTIONS(2789), - [sym_null] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2789), - [anon_sym_decltype] = ACTIONS(2789), - [anon_sym_virtual] = ACTIONS(2789), - [anon_sym_explicit] = ACTIONS(2789), - [anon_sym_typename] = ACTIONS(2789), - [anon_sym_template] = ACTIONS(2789), - [anon_sym_operator] = ACTIONS(2789), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_delete] = ACTIONS(2789), - [anon_sym_throw] = ACTIONS(2789), - [anon_sym_namespace] = ACTIONS(2789), - [anon_sym_using] = ACTIONS(2789), - [anon_sym_static_assert] = ACTIONS(2789), - [anon_sym_concept] = ACTIONS(2789), - [anon_sym_co_return] = ACTIONS(2789), - [anon_sym_co_yield] = ACTIONS(2789), - [anon_sym_R_DQUOTE] = ACTIONS(2791), - [anon_sym_LR_DQUOTE] = ACTIONS(2791), - [anon_sym_uR_DQUOTE] = ACTIONS(2791), - [anon_sym_UR_DQUOTE] = ACTIONS(2791), - [anon_sym_u8R_DQUOTE] = ACTIONS(2791), - [anon_sym_co_await] = ACTIONS(2789), - [anon_sym_new] = ACTIONS(2789), - [anon_sym_requires] = ACTIONS(2789), - [sym_this] = ACTIONS(2789), - [sym_nullptr] = ACTIONS(2789), - }, - [971] = { - [sym_identifier] = ACTIONS(2765), - [aux_sym_preproc_include_token1] = ACTIONS(2765), - [aux_sym_preproc_def_token1] = ACTIONS(2765), - [aux_sym_preproc_if_token1] = ACTIONS(2765), - [aux_sym_preproc_if_token2] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), - [sym_preproc_directive] = ACTIONS(2765), - [anon_sym_LPAREN2] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2767), - [anon_sym_AMP_AMP] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2765), - [anon_sym_extern] = ACTIONS(2765), - [anon_sym___attribute__] = ACTIONS(2765), - [anon_sym_COLON_COLON] = ACTIONS(2767), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), - [anon_sym___declspec] = ACTIONS(2765), - [anon_sym___based] = ACTIONS(2765), - [anon_sym___cdecl] = ACTIONS(2765), - [anon_sym___clrcall] = ACTIONS(2765), - [anon_sym___stdcall] = ACTIONS(2765), - [anon_sym___fastcall] = ACTIONS(2765), - [anon_sym___thiscall] = ACTIONS(2765), - [anon_sym___vectorcall] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_register] = ACTIONS(2765), - [anon_sym_inline] = ACTIONS(2765), - [anon_sym_thread_local] = ACTIONS(2765), - [anon_sym_const] = ACTIONS(2765), - [anon_sym_volatile] = ACTIONS(2765), - [anon_sym_restrict] = ACTIONS(2765), - [anon_sym__Atomic] = ACTIONS(2765), - [anon_sym_mutable] = ACTIONS(2765), - [anon_sym_constexpr] = ACTIONS(2765), - [anon_sym_constinit] = ACTIONS(2765), - [anon_sym_consteval] = ACTIONS(2765), - [anon_sym_signed] = ACTIONS(2765), - [anon_sym_unsigned] = ACTIONS(2765), - [anon_sym_long] = ACTIONS(2765), - [anon_sym_short] = ACTIONS(2765), - [sym_primitive_type] = ACTIONS(2765), - [anon_sym_enum] = ACTIONS(2765), - [anon_sym_class] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2765), - [anon_sym_union] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_switch] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_default] = ACTIONS(2765), - [anon_sym_while] = ACTIONS(2765), - [anon_sym_do] = ACTIONS(2765), - [anon_sym_for] = ACTIONS(2765), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2765), - [anon_sym_continue] = ACTIONS(2765), - [anon_sym_goto] = ACTIONS(2765), - [anon_sym_not] = ACTIONS(2765), - [anon_sym_compl] = ACTIONS(2765), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2765), - [sym_number_literal] = ACTIONS(2767), - [anon_sym_L_SQUOTE] = ACTIONS(2767), - [anon_sym_u_SQUOTE] = ACTIONS(2767), - [anon_sym_U_SQUOTE] = ACTIONS(2767), - [anon_sym_u8_SQUOTE] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_L_DQUOTE] = ACTIONS(2767), - [anon_sym_u_DQUOTE] = ACTIONS(2767), - [anon_sym_U_DQUOTE] = ACTIONS(2767), - [anon_sym_u8_DQUOTE] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [sym_true] = ACTIONS(2765), - [sym_false] = ACTIONS(2765), - [sym_null] = ACTIONS(2765), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2765), - [anon_sym_decltype] = ACTIONS(2765), - [anon_sym_virtual] = ACTIONS(2765), - [anon_sym_explicit] = ACTIONS(2765), - [anon_sym_typename] = ACTIONS(2765), - [anon_sym_template] = ACTIONS(2765), - [anon_sym_operator] = ACTIONS(2765), - [anon_sym_try] = ACTIONS(2765), - [anon_sym_delete] = ACTIONS(2765), - [anon_sym_throw] = ACTIONS(2765), - [anon_sym_namespace] = ACTIONS(2765), - [anon_sym_using] = ACTIONS(2765), - [anon_sym_static_assert] = ACTIONS(2765), - [anon_sym_concept] = ACTIONS(2765), - [anon_sym_co_return] = ACTIONS(2765), - [anon_sym_co_yield] = ACTIONS(2765), - [anon_sym_R_DQUOTE] = ACTIONS(2767), - [anon_sym_LR_DQUOTE] = ACTIONS(2767), - [anon_sym_uR_DQUOTE] = ACTIONS(2767), - [anon_sym_UR_DQUOTE] = ACTIONS(2767), - [anon_sym_u8R_DQUOTE] = ACTIONS(2767), - [anon_sym_co_await] = ACTIONS(2765), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_requires] = ACTIONS(2765), - [sym_this] = ACTIONS(2765), - [sym_nullptr] = ACTIONS(2765), - }, - [972] = { - [sym_identifier] = ACTIONS(2729), - [aux_sym_preproc_include_token1] = ACTIONS(2729), - [aux_sym_preproc_def_token1] = ACTIONS(2729), - [aux_sym_preproc_if_token1] = ACTIONS(2729), - [aux_sym_preproc_if_token2] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), - [sym_preproc_directive] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_TILDE] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_AMP_AMP] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_SEMI] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2729), - [anon_sym_extern] = ACTIONS(2729), - [anon_sym___attribute__] = ACTIONS(2729), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), - [anon_sym___declspec] = ACTIONS(2729), - [anon_sym___based] = ACTIONS(2729), - [anon_sym___cdecl] = ACTIONS(2729), - [anon_sym___clrcall] = ACTIONS(2729), - [anon_sym___stdcall] = ACTIONS(2729), - [anon_sym___fastcall] = ACTIONS(2729), - [anon_sym___thiscall] = ACTIONS(2729), - [anon_sym___vectorcall] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_register] = ACTIONS(2729), - [anon_sym_inline] = ACTIONS(2729), - [anon_sym_thread_local] = ACTIONS(2729), - [anon_sym_const] = ACTIONS(2729), - [anon_sym_volatile] = ACTIONS(2729), - [anon_sym_restrict] = ACTIONS(2729), - [anon_sym__Atomic] = ACTIONS(2729), - [anon_sym_mutable] = ACTIONS(2729), - [anon_sym_constexpr] = ACTIONS(2729), - [anon_sym_constinit] = ACTIONS(2729), - [anon_sym_consteval] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2729), - [anon_sym_unsigned] = ACTIONS(2729), - [anon_sym_long] = ACTIONS(2729), - [anon_sym_short] = ACTIONS(2729), - [sym_primitive_type] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_union] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_switch] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_default] = ACTIONS(2729), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_break] = ACTIONS(2729), - [anon_sym_continue] = ACTIONS(2729), - [anon_sym_goto] = ACTIONS(2729), - [anon_sym_not] = ACTIONS(2729), - [anon_sym_compl] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_sizeof] = ACTIONS(2729), - [sym_number_literal] = ACTIONS(2731), - [anon_sym_L_SQUOTE] = ACTIONS(2731), - [anon_sym_u_SQUOTE] = ACTIONS(2731), - [anon_sym_U_SQUOTE] = ACTIONS(2731), - [anon_sym_u8_SQUOTE] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_L_DQUOTE] = ACTIONS(2731), - [anon_sym_u_DQUOTE] = ACTIONS(2731), - [anon_sym_U_DQUOTE] = ACTIONS(2731), - [anon_sym_u8_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2731), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_null] = ACTIONS(2729), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2729), - [anon_sym_decltype] = ACTIONS(2729), - [anon_sym_virtual] = ACTIONS(2729), - [anon_sym_explicit] = ACTIONS(2729), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2729), - [anon_sym_operator] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_delete] = ACTIONS(2729), - [anon_sym_throw] = ACTIONS(2729), - [anon_sym_namespace] = ACTIONS(2729), - [anon_sym_using] = ACTIONS(2729), - [anon_sym_static_assert] = ACTIONS(2729), - [anon_sym_concept] = ACTIONS(2729), - [anon_sym_co_return] = ACTIONS(2729), - [anon_sym_co_yield] = ACTIONS(2729), - [anon_sym_R_DQUOTE] = ACTIONS(2731), - [anon_sym_LR_DQUOTE] = ACTIONS(2731), - [anon_sym_uR_DQUOTE] = ACTIONS(2731), - [anon_sym_UR_DQUOTE] = ACTIONS(2731), - [anon_sym_u8R_DQUOTE] = ACTIONS(2731), - [anon_sym_co_await] = ACTIONS(2729), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_requires] = ACTIONS(2729), - [sym_this] = ACTIONS(2729), - [sym_nullptr] = ACTIONS(2729), - }, - [973] = { - [sym_identifier] = ACTIONS(2701), - [aux_sym_preproc_include_token1] = ACTIONS(2701), - [aux_sym_preproc_def_token1] = ACTIONS(2701), - [aux_sym_preproc_if_token1] = ACTIONS(2701), - [aux_sym_preproc_if_token2] = ACTIONS(2701), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2701), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2701), - [sym_preproc_directive] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_BANG] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2703), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_AMP_AMP] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_SEMI] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2701), - [anon_sym_extern] = ACTIONS(2701), - [anon_sym___attribute__] = ACTIONS(2701), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2703), - [anon_sym___declspec] = ACTIONS(2701), - [anon_sym___based] = ACTIONS(2701), - [anon_sym___cdecl] = ACTIONS(2701), - [anon_sym___clrcall] = ACTIONS(2701), - [anon_sym___stdcall] = ACTIONS(2701), - [anon_sym___fastcall] = ACTIONS(2701), - [anon_sym___thiscall] = ACTIONS(2701), - [anon_sym___vectorcall] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_static] = ACTIONS(2701), - [anon_sym_register] = ACTIONS(2701), - [anon_sym_inline] = ACTIONS(2701), - [anon_sym_thread_local] = ACTIONS(2701), - [anon_sym_const] = ACTIONS(2701), - [anon_sym_volatile] = ACTIONS(2701), - [anon_sym_restrict] = ACTIONS(2701), - [anon_sym__Atomic] = ACTIONS(2701), - [anon_sym_mutable] = ACTIONS(2701), - [anon_sym_constexpr] = ACTIONS(2701), - [anon_sym_constinit] = ACTIONS(2701), - [anon_sym_consteval] = ACTIONS(2701), - [anon_sym_signed] = ACTIONS(2701), - [anon_sym_unsigned] = ACTIONS(2701), - [anon_sym_long] = ACTIONS(2701), - [anon_sym_short] = ACTIONS(2701), - [sym_primitive_type] = ACTIONS(2701), - [anon_sym_enum] = ACTIONS(2701), - [anon_sym_class] = ACTIONS(2701), - [anon_sym_struct] = ACTIONS(2701), - [anon_sym_union] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_switch] = ACTIONS(2701), - [anon_sym_case] = ACTIONS(2701), - [anon_sym_default] = ACTIONS(2701), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_break] = ACTIONS(2701), - [anon_sym_continue] = ACTIONS(2701), - [anon_sym_goto] = ACTIONS(2701), - [anon_sym_not] = ACTIONS(2701), - [anon_sym_compl] = ACTIONS(2701), - [anon_sym_DASH_DASH] = ACTIONS(2703), - [anon_sym_PLUS_PLUS] = ACTIONS(2703), - [anon_sym_sizeof] = ACTIONS(2701), - [sym_number_literal] = ACTIONS(2703), - [anon_sym_L_SQUOTE] = ACTIONS(2703), - [anon_sym_u_SQUOTE] = ACTIONS(2703), - [anon_sym_U_SQUOTE] = ACTIONS(2703), - [anon_sym_u8_SQUOTE] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_L_DQUOTE] = ACTIONS(2703), - [anon_sym_u_DQUOTE] = ACTIONS(2703), - [anon_sym_U_DQUOTE] = ACTIONS(2703), - [anon_sym_u8_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE] = ACTIONS(2703), - [sym_true] = ACTIONS(2701), - [sym_false] = ACTIONS(2701), - [sym_null] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2701), - [anon_sym_decltype] = ACTIONS(2701), - [anon_sym_virtual] = ACTIONS(2701), - [anon_sym_explicit] = ACTIONS(2701), - [anon_sym_typename] = ACTIONS(2701), - [anon_sym_template] = ACTIONS(2701), - [anon_sym_operator] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_delete] = ACTIONS(2701), - [anon_sym_throw] = ACTIONS(2701), - [anon_sym_namespace] = ACTIONS(2701), - [anon_sym_using] = ACTIONS(2701), - [anon_sym_static_assert] = ACTIONS(2701), - [anon_sym_concept] = ACTIONS(2701), - [anon_sym_co_return] = ACTIONS(2701), - [anon_sym_co_yield] = ACTIONS(2701), - [anon_sym_R_DQUOTE] = ACTIONS(2703), - [anon_sym_LR_DQUOTE] = ACTIONS(2703), - [anon_sym_uR_DQUOTE] = ACTIONS(2703), - [anon_sym_UR_DQUOTE] = ACTIONS(2703), - [anon_sym_u8R_DQUOTE] = ACTIONS(2703), - [anon_sym_co_await] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_requires] = ACTIONS(2701), - [sym_this] = ACTIONS(2701), - [sym_nullptr] = ACTIONS(2701), - }, - [974] = { - [sym_identifier] = ACTIONS(2829), - [aux_sym_preproc_include_token1] = ACTIONS(2829), - [aux_sym_preproc_def_token1] = ACTIONS(2829), - [aux_sym_preproc_if_token1] = ACTIONS(2829), - [aux_sym_preproc_if_token2] = ACTIONS(2829), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2829), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2829), - [sym_preproc_directive] = ACTIONS(2829), - [anon_sym_LPAREN2] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2829), - [anon_sym_PLUS] = ACTIONS(2829), - [anon_sym_STAR] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2829), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_typedef] = ACTIONS(2829), - [anon_sym_extern] = ACTIONS(2829), - [anon_sym___attribute__] = ACTIONS(2829), - [anon_sym_COLON_COLON] = ACTIONS(2831), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2831), - [anon_sym___declspec] = ACTIONS(2829), - [anon_sym___based] = ACTIONS(2829), - [anon_sym___cdecl] = ACTIONS(2829), - [anon_sym___clrcall] = ACTIONS(2829), - [anon_sym___stdcall] = ACTIONS(2829), - [anon_sym___fastcall] = ACTIONS(2829), - [anon_sym___thiscall] = ACTIONS(2829), - [anon_sym___vectorcall] = ACTIONS(2829), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_static] = ACTIONS(2829), - [anon_sym_register] = ACTIONS(2829), - [anon_sym_inline] = ACTIONS(2829), - [anon_sym_thread_local] = ACTIONS(2829), - [anon_sym_const] = ACTIONS(2829), - [anon_sym_volatile] = ACTIONS(2829), - [anon_sym_restrict] = ACTIONS(2829), - [anon_sym__Atomic] = ACTIONS(2829), - [anon_sym_mutable] = ACTIONS(2829), - [anon_sym_constexpr] = ACTIONS(2829), - [anon_sym_constinit] = ACTIONS(2829), - [anon_sym_consteval] = ACTIONS(2829), - [anon_sym_signed] = ACTIONS(2829), - [anon_sym_unsigned] = ACTIONS(2829), - [anon_sym_long] = ACTIONS(2829), - [anon_sym_short] = ACTIONS(2829), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2829), - [anon_sym_class] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2829), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_if] = ACTIONS(2829), - [anon_sym_switch] = ACTIONS(2829), - [anon_sym_case] = ACTIONS(2829), - [anon_sym_default] = ACTIONS(2829), - [anon_sym_while] = ACTIONS(2829), - [anon_sym_do] = ACTIONS(2829), - [anon_sym_for] = ACTIONS(2829), - [anon_sym_return] = ACTIONS(2829), - [anon_sym_break] = ACTIONS(2829), - [anon_sym_continue] = ACTIONS(2829), - [anon_sym_goto] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2829), - [anon_sym_compl] = ACTIONS(2829), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2829), - [sym_number_literal] = ACTIONS(2831), - [anon_sym_L_SQUOTE] = ACTIONS(2831), - [anon_sym_u_SQUOTE] = ACTIONS(2831), - [anon_sym_U_SQUOTE] = ACTIONS(2831), - [anon_sym_u8_SQUOTE] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2831), - [anon_sym_L_DQUOTE] = ACTIONS(2831), - [anon_sym_u_DQUOTE] = ACTIONS(2831), - [anon_sym_U_DQUOTE] = ACTIONS(2831), - [anon_sym_u8_DQUOTE] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2831), - [sym_true] = ACTIONS(2829), - [sym_false] = ACTIONS(2829), - [sym_null] = ACTIONS(2829), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2829), - [anon_sym_decltype] = ACTIONS(2829), - [anon_sym_virtual] = ACTIONS(2829), - [anon_sym_explicit] = ACTIONS(2829), - [anon_sym_typename] = ACTIONS(2829), - [anon_sym_template] = ACTIONS(2829), - [anon_sym_operator] = ACTIONS(2829), - [anon_sym_try] = ACTIONS(2829), - [anon_sym_delete] = ACTIONS(2829), - [anon_sym_throw] = ACTIONS(2829), - [anon_sym_namespace] = ACTIONS(2829), - [anon_sym_using] = ACTIONS(2829), - [anon_sym_static_assert] = ACTIONS(2829), - [anon_sym_concept] = ACTIONS(2829), - [anon_sym_co_return] = ACTIONS(2829), - [anon_sym_co_yield] = ACTIONS(2829), - [anon_sym_R_DQUOTE] = ACTIONS(2831), - [anon_sym_LR_DQUOTE] = ACTIONS(2831), - [anon_sym_uR_DQUOTE] = ACTIONS(2831), - [anon_sym_UR_DQUOTE] = ACTIONS(2831), - [anon_sym_u8R_DQUOTE] = ACTIONS(2831), - [anon_sym_co_await] = ACTIONS(2829), - [anon_sym_new] = ACTIONS(2829), - [anon_sym_requires] = ACTIONS(2829), - [sym_this] = ACTIONS(2829), - [sym_nullptr] = ACTIONS(2829), - }, - [975] = { - [ts_builtin_sym_end] = ACTIONS(2763), - [sym_identifier] = ACTIONS(2761), - [aux_sym_preproc_include_token1] = ACTIONS(2761), - [aux_sym_preproc_def_token1] = ACTIONS(2761), - [aux_sym_preproc_if_token1] = ACTIONS(2761), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2761), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2761), - [sym_preproc_directive] = ACTIONS(2761), - [anon_sym_LPAREN2] = ACTIONS(2763), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_TILDE] = ACTIONS(2763), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2763), - [anon_sym_AMP_AMP] = ACTIONS(2763), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(2761), - [anon_sym_extern] = ACTIONS(2761), - [anon_sym___attribute__] = ACTIONS(2761), - [anon_sym_COLON_COLON] = ACTIONS(2763), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2763), - [anon_sym___declspec] = ACTIONS(2761), - [anon_sym___based] = ACTIONS(2761), - [anon_sym___cdecl] = ACTIONS(2761), - [anon_sym___clrcall] = ACTIONS(2761), - [anon_sym___stdcall] = ACTIONS(2761), - [anon_sym___fastcall] = ACTIONS(2761), - [anon_sym___thiscall] = ACTIONS(2761), - [anon_sym___vectorcall] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2763), - [anon_sym_LBRACK] = ACTIONS(2761), - [anon_sym_static] = ACTIONS(2761), - [anon_sym_register] = ACTIONS(2761), - [anon_sym_inline] = ACTIONS(2761), - [anon_sym_thread_local] = ACTIONS(2761), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_volatile] = ACTIONS(2761), - [anon_sym_restrict] = ACTIONS(2761), - [anon_sym__Atomic] = ACTIONS(2761), - [anon_sym_mutable] = ACTIONS(2761), - [anon_sym_constexpr] = ACTIONS(2761), - [anon_sym_constinit] = ACTIONS(2761), - [anon_sym_consteval] = ACTIONS(2761), - [anon_sym_signed] = ACTIONS(2761), - [anon_sym_unsigned] = ACTIONS(2761), - [anon_sym_long] = ACTIONS(2761), - [anon_sym_short] = ACTIONS(2761), - [sym_primitive_type] = ACTIONS(2761), - [anon_sym_enum] = ACTIONS(2761), - [anon_sym_class] = ACTIONS(2761), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_union] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_switch] = ACTIONS(2761), - [anon_sym_case] = ACTIONS(2761), - [anon_sym_default] = ACTIONS(2761), - [anon_sym_while] = ACTIONS(2761), - [anon_sym_do] = ACTIONS(2761), - [anon_sym_for] = ACTIONS(2761), - [anon_sym_return] = ACTIONS(2761), - [anon_sym_break] = ACTIONS(2761), - [anon_sym_continue] = ACTIONS(2761), - [anon_sym_goto] = ACTIONS(2761), - [anon_sym_not] = ACTIONS(2761), - [anon_sym_compl] = ACTIONS(2761), - [anon_sym_DASH_DASH] = ACTIONS(2763), - [anon_sym_PLUS_PLUS] = ACTIONS(2763), - [anon_sym_sizeof] = ACTIONS(2761), - [sym_number_literal] = ACTIONS(2763), - [anon_sym_L_SQUOTE] = ACTIONS(2763), - [anon_sym_u_SQUOTE] = ACTIONS(2763), - [anon_sym_U_SQUOTE] = ACTIONS(2763), - [anon_sym_u8_SQUOTE] = ACTIONS(2763), - [anon_sym_SQUOTE] = ACTIONS(2763), - [anon_sym_L_DQUOTE] = ACTIONS(2763), - [anon_sym_u_DQUOTE] = ACTIONS(2763), - [anon_sym_U_DQUOTE] = ACTIONS(2763), - [anon_sym_u8_DQUOTE] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2763), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_null] = ACTIONS(2761), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2761), - [anon_sym_decltype] = ACTIONS(2761), - [anon_sym_virtual] = ACTIONS(2761), - [anon_sym_explicit] = ACTIONS(2761), - [anon_sym_typename] = ACTIONS(2761), - [anon_sym_template] = ACTIONS(2761), - [anon_sym_operator] = ACTIONS(2761), - [anon_sym_try] = ACTIONS(2761), - [anon_sym_delete] = ACTIONS(2761), - [anon_sym_throw] = ACTIONS(2761), - [anon_sym_namespace] = ACTIONS(2761), - [anon_sym_using] = ACTIONS(2761), - [anon_sym_static_assert] = ACTIONS(2761), - [anon_sym_concept] = ACTIONS(2761), - [anon_sym_co_return] = ACTIONS(2761), - [anon_sym_co_yield] = ACTIONS(2761), - [anon_sym_R_DQUOTE] = ACTIONS(2763), - [anon_sym_LR_DQUOTE] = ACTIONS(2763), - [anon_sym_uR_DQUOTE] = ACTIONS(2763), - [anon_sym_UR_DQUOTE] = ACTIONS(2763), - [anon_sym_u8R_DQUOTE] = ACTIONS(2763), - [anon_sym_co_await] = ACTIONS(2761), - [anon_sym_new] = ACTIONS(2761), - [anon_sym_requires] = ACTIONS(2761), - [sym_this] = ACTIONS(2761), - [sym_nullptr] = ACTIONS(2761), - }, - [976] = { - [sym_identifier] = ACTIONS(2777), - [aux_sym_preproc_include_token1] = ACTIONS(2777), - [aux_sym_preproc_def_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), - [sym_preproc_directive] = ACTIONS(2777), - [anon_sym_LPAREN2] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_AMP_AMP] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_typedef] = ACTIONS(2777), - [anon_sym_extern] = ACTIONS(2777), - [anon_sym___attribute__] = ACTIONS(2777), - [anon_sym_COLON_COLON] = ACTIONS(2779), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), - [anon_sym___declspec] = ACTIONS(2777), - [anon_sym___based] = ACTIONS(2777), - [anon_sym___cdecl] = ACTIONS(2777), - [anon_sym___clrcall] = ACTIONS(2777), - [anon_sym___stdcall] = ACTIONS(2777), - [anon_sym___fastcall] = ACTIONS(2777), - [anon_sym___thiscall] = ACTIONS(2777), - [anon_sym___vectorcall] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_register] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym_thread_local] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_volatile] = ACTIONS(2777), - [anon_sym_restrict] = ACTIONS(2777), - [anon_sym__Atomic] = ACTIONS(2777), - [anon_sym_mutable] = ACTIONS(2777), - [anon_sym_constexpr] = ACTIONS(2777), - [anon_sym_constinit] = ACTIONS(2777), - [anon_sym_consteval] = ACTIONS(2777), - [anon_sym_signed] = ACTIONS(2777), - [anon_sym_unsigned] = ACTIONS(2777), - [anon_sym_long] = ACTIONS(2777), - [anon_sym_short] = ACTIONS(2777), - [sym_primitive_type] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_union] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_switch] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_default] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_goto] = ACTIONS(2777), - [anon_sym_not] = ACTIONS(2777), - [anon_sym_compl] = ACTIONS(2777), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_sizeof] = ACTIONS(2777), - [sym_number_literal] = ACTIONS(2779), - [anon_sym_L_SQUOTE] = ACTIONS(2779), - [anon_sym_u_SQUOTE] = ACTIONS(2779), - [anon_sym_U_SQUOTE] = ACTIONS(2779), - [anon_sym_u8_SQUOTE] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_L_DQUOTE] = ACTIONS(2779), - [anon_sym_u_DQUOTE] = ACTIONS(2779), - [anon_sym_U_DQUOTE] = ACTIONS(2779), - [anon_sym_u8_DQUOTE] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [sym_null] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2777), - [anon_sym_decltype] = ACTIONS(2777), - [anon_sym_virtual] = ACTIONS(2777), - [anon_sym_explicit] = ACTIONS(2777), - [anon_sym_typename] = ACTIONS(2777), - [anon_sym_template] = ACTIONS(2777), - [anon_sym_operator] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_delete] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_namespace] = ACTIONS(2777), - [anon_sym_using] = ACTIONS(2777), - [anon_sym_static_assert] = ACTIONS(2777), - [anon_sym_concept] = ACTIONS(2777), - [anon_sym_co_return] = ACTIONS(2777), - [anon_sym_co_yield] = ACTIONS(2777), - [anon_sym_R_DQUOTE] = ACTIONS(2779), - [anon_sym_LR_DQUOTE] = ACTIONS(2779), - [anon_sym_uR_DQUOTE] = ACTIONS(2779), - [anon_sym_UR_DQUOTE] = ACTIONS(2779), - [anon_sym_u8R_DQUOTE] = ACTIONS(2779), - [anon_sym_co_await] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_requires] = ACTIONS(2777), - [sym_this] = ACTIONS(2777), - [sym_nullptr] = ACTIONS(2777), - }, - [977] = { - [sym_identifier] = ACTIONS(2837), - [aux_sym_preproc_include_token1] = ACTIONS(2837), - [aux_sym_preproc_def_token1] = ACTIONS(2837), - [aux_sym_preproc_if_token1] = ACTIONS(2837), - [aux_sym_preproc_if_token2] = ACTIONS(2837), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2837), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2837), - [sym_preproc_directive] = ACTIONS(2837), - [anon_sym_LPAREN2] = ACTIONS(2839), - [anon_sym_BANG] = ACTIONS(2839), - [anon_sym_TILDE] = ACTIONS(2839), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2839), - [anon_sym_AMP_AMP] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_typedef] = ACTIONS(2837), - [anon_sym_extern] = ACTIONS(2837), - [anon_sym___attribute__] = ACTIONS(2837), - [anon_sym_COLON_COLON] = ACTIONS(2839), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2839), - [anon_sym___declspec] = ACTIONS(2837), - [anon_sym___based] = ACTIONS(2837), - [anon_sym___cdecl] = ACTIONS(2837), - [anon_sym___clrcall] = ACTIONS(2837), - [anon_sym___stdcall] = ACTIONS(2837), - [anon_sym___fastcall] = ACTIONS(2837), - [anon_sym___thiscall] = ACTIONS(2837), - [anon_sym___vectorcall] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_LBRACK] = ACTIONS(2837), - [anon_sym_static] = ACTIONS(2837), - [anon_sym_register] = ACTIONS(2837), - [anon_sym_inline] = ACTIONS(2837), - [anon_sym_thread_local] = ACTIONS(2837), - [anon_sym_const] = ACTIONS(2837), - [anon_sym_volatile] = ACTIONS(2837), - [anon_sym_restrict] = ACTIONS(2837), - [anon_sym__Atomic] = ACTIONS(2837), - [anon_sym_mutable] = ACTIONS(2837), - [anon_sym_constexpr] = ACTIONS(2837), - [anon_sym_constinit] = ACTIONS(2837), - [anon_sym_consteval] = ACTIONS(2837), - [anon_sym_signed] = ACTIONS(2837), - [anon_sym_unsigned] = ACTIONS(2837), - [anon_sym_long] = ACTIONS(2837), - [anon_sym_short] = ACTIONS(2837), - [sym_primitive_type] = ACTIONS(2837), - [anon_sym_enum] = ACTIONS(2837), - [anon_sym_class] = ACTIONS(2837), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_union] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_switch] = ACTIONS(2837), - [anon_sym_case] = ACTIONS(2837), - [anon_sym_default] = ACTIONS(2837), - [anon_sym_while] = ACTIONS(2837), - [anon_sym_do] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_break] = ACTIONS(2837), - [anon_sym_continue] = ACTIONS(2837), - [anon_sym_goto] = ACTIONS(2837), - [anon_sym_not] = ACTIONS(2837), - [anon_sym_compl] = ACTIONS(2837), - [anon_sym_DASH_DASH] = ACTIONS(2839), - [anon_sym_PLUS_PLUS] = ACTIONS(2839), - [anon_sym_sizeof] = ACTIONS(2837), - [sym_number_literal] = ACTIONS(2839), - [anon_sym_L_SQUOTE] = ACTIONS(2839), - [anon_sym_u_SQUOTE] = ACTIONS(2839), - [anon_sym_U_SQUOTE] = ACTIONS(2839), - [anon_sym_u8_SQUOTE] = ACTIONS(2839), - [anon_sym_SQUOTE] = ACTIONS(2839), - [anon_sym_L_DQUOTE] = ACTIONS(2839), - [anon_sym_u_DQUOTE] = ACTIONS(2839), - [anon_sym_U_DQUOTE] = ACTIONS(2839), - [anon_sym_u8_DQUOTE] = ACTIONS(2839), - [anon_sym_DQUOTE] = ACTIONS(2839), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_null] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2837), - [anon_sym_decltype] = ACTIONS(2837), - [anon_sym_virtual] = ACTIONS(2837), - [anon_sym_explicit] = ACTIONS(2837), - [anon_sym_typename] = ACTIONS(2837), - [anon_sym_template] = ACTIONS(2837), - [anon_sym_operator] = ACTIONS(2837), - [anon_sym_try] = ACTIONS(2837), - [anon_sym_delete] = ACTIONS(2837), - [anon_sym_throw] = ACTIONS(2837), - [anon_sym_namespace] = ACTIONS(2837), - [anon_sym_using] = ACTIONS(2837), - [anon_sym_static_assert] = ACTIONS(2837), - [anon_sym_concept] = ACTIONS(2837), - [anon_sym_co_return] = ACTIONS(2837), - [anon_sym_co_yield] = ACTIONS(2837), - [anon_sym_R_DQUOTE] = ACTIONS(2839), - [anon_sym_LR_DQUOTE] = ACTIONS(2839), - [anon_sym_uR_DQUOTE] = ACTIONS(2839), - [anon_sym_UR_DQUOTE] = ACTIONS(2839), - [anon_sym_u8R_DQUOTE] = ACTIONS(2839), - [anon_sym_co_await] = ACTIONS(2837), - [anon_sym_new] = ACTIONS(2837), - [anon_sym_requires] = ACTIONS(2837), - [sym_this] = ACTIONS(2837), - [sym_nullptr] = ACTIONS(2837), - }, - [978] = { - [sym_identifier] = ACTIONS(2757), - [aux_sym_preproc_include_token1] = ACTIONS(2757), - [aux_sym_preproc_def_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), - [sym_preproc_directive] = ACTIONS(2757), - [anon_sym_LPAREN2] = ACTIONS(2759), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2757), - [anon_sym_extern] = ACTIONS(2757), - [anon_sym___attribute__] = ACTIONS(2757), - [anon_sym_COLON_COLON] = ACTIONS(2759), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), - [anon_sym___declspec] = ACTIONS(2757), - [anon_sym___based] = ACTIONS(2757), - [anon_sym___cdecl] = ACTIONS(2757), - [anon_sym___clrcall] = ACTIONS(2757), - [anon_sym___stdcall] = ACTIONS(2757), - [anon_sym___fastcall] = ACTIONS(2757), - [anon_sym___thiscall] = ACTIONS(2757), - [anon_sym___vectorcall] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_RBRACE] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2757), - [anon_sym_static] = ACTIONS(2757), - [anon_sym_register] = ACTIONS(2757), - [anon_sym_inline] = ACTIONS(2757), - [anon_sym_thread_local] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_volatile] = ACTIONS(2757), - [anon_sym_restrict] = ACTIONS(2757), - [anon_sym__Atomic] = ACTIONS(2757), - [anon_sym_mutable] = ACTIONS(2757), - [anon_sym_constexpr] = ACTIONS(2757), - [anon_sym_constinit] = ACTIONS(2757), - [anon_sym_consteval] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2757), - [anon_sym_unsigned] = ACTIONS(2757), - [anon_sym_long] = ACTIONS(2757), - [anon_sym_short] = ACTIONS(2757), - [sym_primitive_type] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_class] = ACTIONS(2757), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_switch] = ACTIONS(2757), - [anon_sym_case] = ACTIONS(2757), - [anon_sym_default] = ACTIONS(2757), - [anon_sym_while] = ACTIONS(2757), - [anon_sym_do] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_not] = ACTIONS(2757), - [anon_sym_compl] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_sizeof] = ACTIONS(2757), - [sym_number_literal] = ACTIONS(2759), - [anon_sym_L_SQUOTE] = ACTIONS(2759), - [anon_sym_u_SQUOTE] = ACTIONS(2759), - [anon_sym_U_SQUOTE] = ACTIONS(2759), - [anon_sym_u8_SQUOTE] = ACTIONS(2759), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_L_DQUOTE] = ACTIONS(2759), - [anon_sym_u_DQUOTE] = ACTIONS(2759), - [anon_sym_U_DQUOTE] = ACTIONS(2759), - [anon_sym_u8_DQUOTE] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_null] = ACTIONS(2757), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2757), - [anon_sym_decltype] = ACTIONS(2757), - [anon_sym_virtual] = ACTIONS(2757), - [anon_sym_explicit] = ACTIONS(2757), - [anon_sym_typename] = ACTIONS(2757), - [anon_sym_template] = ACTIONS(2757), - [anon_sym_operator] = ACTIONS(2757), - [anon_sym_try] = ACTIONS(2757), - [anon_sym_delete] = ACTIONS(2757), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_namespace] = ACTIONS(2757), - [anon_sym_using] = ACTIONS(2757), - [anon_sym_static_assert] = ACTIONS(2757), - [anon_sym_concept] = ACTIONS(2757), - [anon_sym_co_return] = ACTIONS(2757), - [anon_sym_co_yield] = ACTIONS(2757), - [anon_sym_R_DQUOTE] = ACTIONS(2759), - [anon_sym_LR_DQUOTE] = ACTIONS(2759), - [anon_sym_uR_DQUOTE] = ACTIONS(2759), - [anon_sym_UR_DQUOTE] = ACTIONS(2759), - [anon_sym_u8R_DQUOTE] = ACTIONS(2759), - [anon_sym_co_await] = ACTIONS(2757), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_requires] = ACTIONS(2757), - [sym_this] = ACTIONS(2757), - [sym_nullptr] = ACTIONS(2757), - }, - [979] = { - [sym_identifier] = ACTIONS(2657), - [aux_sym_preproc_include_token1] = ACTIONS(2657), - [aux_sym_preproc_def_token1] = ACTIONS(2657), - [aux_sym_preproc_if_token1] = ACTIONS(2657), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2657), - [sym_preproc_directive] = ACTIONS(2657), - [anon_sym_LPAREN2] = ACTIONS(2659), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2659), - [anon_sym_AMP_AMP] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_SEMI] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2657), - [anon_sym_extern] = ACTIONS(2657), - [anon_sym___attribute__] = ACTIONS(2657), - [anon_sym_COLON_COLON] = ACTIONS(2659), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2659), - [anon_sym___declspec] = ACTIONS(2657), - [anon_sym___based] = ACTIONS(2657), - [anon_sym___cdecl] = ACTIONS(2657), - [anon_sym___clrcall] = ACTIONS(2657), - [anon_sym___stdcall] = ACTIONS(2657), - [anon_sym___fastcall] = ACTIONS(2657), - [anon_sym___thiscall] = ACTIONS(2657), - [anon_sym___vectorcall] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_static] = ACTIONS(2657), - [anon_sym_register] = ACTIONS(2657), - [anon_sym_inline] = ACTIONS(2657), - [anon_sym_thread_local] = ACTIONS(2657), - [anon_sym_const] = ACTIONS(2657), - [anon_sym_volatile] = ACTIONS(2657), - [anon_sym_restrict] = ACTIONS(2657), - [anon_sym__Atomic] = ACTIONS(2657), - [anon_sym_mutable] = ACTIONS(2657), - [anon_sym_constexpr] = ACTIONS(2657), - [anon_sym_constinit] = ACTIONS(2657), - [anon_sym_consteval] = ACTIONS(2657), - [anon_sym_signed] = ACTIONS(2657), - [anon_sym_unsigned] = ACTIONS(2657), - [anon_sym_long] = ACTIONS(2657), - [anon_sym_short] = ACTIONS(2657), - [sym_primitive_type] = ACTIONS(2657), - [anon_sym_enum] = ACTIONS(2657), - [anon_sym_class] = ACTIONS(2657), - [anon_sym_struct] = ACTIONS(2657), - [anon_sym_union] = ACTIONS(2657), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [anon_sym_case] = ACTIONS(2657), - [anon_sym_default] = ACTIONS(2657), - [anon_sym_while] = ACTIONS(2657), - [anon_sym_do] = ACTIONS(2657), - [anon_sym_for] = ACTIONS(2657), - [anon_sym_return] = ACTIONS(2657), - [anon_sym_break] = ACTIONS(2657), - [anon_sym_continue] = ACTIONS(2657), - [anon_sym_goto] = ACTIONS(2657), - [anon_sym_not] = ACTIONS(2657), - [anon_sym_compl] = ACTIONS(2657), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_sizeof] = ACTIONS(2657), - [sym_number_literal] = ACTIONS(2659), - [anon_sym_L_SQUOTE] = ACTIONS(2659), - [anon_sym_u_SQUOTE] = ACTIONS(2659), - [anon_sym_U_SQUOTE] = ACTIONS(2659), - [anon_sym_u8_SQUOTE] = ACTIONS(2659), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_L_DQUOTE] = ACTIONS(2659), - [anon_sym_u_DQUOTE] = ACTIONS(2659), - [anon_sym_U_DQUOTE] = ACTIONS(2659), - [anon_sym_u8_DQUOTE] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2659), - [sym_true] = ACTIONS(2657), - [sym_false] = ACTIONS(2657), - [sym_null] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2657), - [anon_sym_decltype] = ACTIONS(2657), - [anon_sym_virtual] = ACTIONS(2657), - [anon_sym_explicit] = ACTIONS(2657), - [anon_sym_typename] = ACTIONS(2657), - [anon_sym_template] = ACTIONS(2657), - [anon_sym_operator] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_delete] = ACTIONS(2657), - [anon_sym_throw] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2657), - [anon_sym_using] = ACTIONS(2657), - [anon_sym_static_assert] = ACTIONS(2657), - [anon_sym_concept] = ACTIONS(2657), - [anon_sym_co_return] = ACTIONS(2657), - [anon_sym_co_yield] = ACTIONS(2657), - [anon_sym_R_DQUOTE] = ACTIONS(2659), - [anon_sym_LR_DQUOTE] = ACTIONS(2659), - [anon_sym_uR_DQUOTE] = ACTIONS(2659), - [anon_sym_UR_DQUOTE] = ACTIONS(2659), - [anon_sym_u8R_DQUOTE] = ACTIONS(2659), - [anon_sym_co_await] = ACTIONS(2657), - [anon_sym_new] = ACTIONS(2657), - [anon_sym_requires] = ACTIONS(2657), - [sym_this] = ACTIONS(2657), - [sym_nullptr] = ACTIONS(2657), - }, - [980] = { - [sym_identifier] = ACTIONS(2665), - [aux_sym_preproc_include_token1] = ACTIONS(2665), - [aux_sym_preproc_def_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), - [sym_preproc_directive] = ACTIONS(2665), - [anon_sym_LPAREN2] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym_typedef] = ACTIONS(2665), - [anon_sym_extern] = ACTIONS(2665), - [anon_sym___attribute__] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2667), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), - [anon_sym___declspec] = ACTIONS(2665), - [anon_sym___based] = ACTIONS(2665), - [anon_sym___cdecl] = ACTIONS(2665), - [anon_sym___clrcall] = ACTIONS(2665), - [anon_sym___stdcall] = ACTIONS(2665), - [anon_sym___fastcall] = ACTIONS(2665), - [anon_sym___thiscall] = ACTIONS(2665), - [anon_sym___vectorcall] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_register] = ACTIONS(2665), - [anon_sym_inline] = ACTIONS(2665), - [anon_sym_thread_local] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_volatile] = ACTIONS(2665), - [anon_sym_restrict] = ACTIONS(2665), - [anon_sym__Atomic] = ACTIONS(2665), - [anon_sym_mutable] = ACTIONS(2665), - [anon_sym_constexpr] = ACTIONS(2665), - [anon_sym_constinit] = ACTIONS(2665), - [anon_sym_consteval] = ACTIONS(2665), - [anon_sym_signed] = ACTIONS(2665), - [anon_sym_unsigned] = ACTIONS(2665), - [anon_sym_long] = ACTIONS(2665), - [anon_sym_short] = ACTIONS(2665), - [sym_primitive_type] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_union] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_default] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_do] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_goto] = ACTIONS(2665), - [anon_sym_not] = ACTIONS(2665), - [anon_sym_compl] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_sizeof] = ACTIONS(2665), - [sym_number_literal] = ACTIONS(2667), - [anon_sym_L_SQUOTE] = ACTIONS(2667), - [anon_sym_u_SQUOTE] = ACTIONS(2667), - [anon_sym_U_SQUOTE] = ACTIONS(2667), - [anon_sym_u8_SQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_L_DQUOTE] = ACTIONS(2667), - [anon_sym_u_DQUOTE] = ACTIONS(2667), - [anon_sym_U_DQUOTE] = ACTIONS(2667), - [anon_sym_u8_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [sym_null] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2665), - [anon_sym_decltype] = ACTIONS(2665), - [anon_sym_virtual] = ACTIONS(2665), - [anon_sym_explicit] = ACTIONS(2665), - [anon_sym_typename] = ACTIONS(2665), - [anon_sym_template] = ACTIONS(2665), - [anon_sym_operator] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_delete] = ACTIONS(2665), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_namespace] = ACTIONS(2665), - [anon_sym_using] = ACTIONS(2665), - [anon_sym_static_assert] = ACTIONS(2665), - [anon_sym_concept] = ACTIONS(2665), - [anon_sym_co_return] = ACTIONS(2665), - [anon_sym_co_yield] = ACTIONS(2665), - [anon_sym_R_DQUOTE] = ACTIONS(2667), - [anon_sym_LR_DQUOTE] = ACTIONS(2667), - [anon_sym_uR_DQUOTE] = ACTIONS(2667), - [anon_sym_UR_DQUOTE] = ACTIONS(2667), - [anon_sym_u8R_DQUOTE] = ACTIONS(2667), - [anon_sym_co_await] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(2665), - [anon_sym_requires] = ACTIONS(2665), - [sym_this] = ACTIONS(2665), - [sym_nullptr] = ACTIONS(2665), - }, - [981] = { - [sym_identifier] = ACTIONS(2757), - [aux_sym_preproc_include_token1] = ACTIONS(2757), - [aux_sym_preproc_def_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token2] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), - [sym_preproc_directive] = ACTIONS(2757), - [anon_sym_LPAREN2] = ACTIONS(2759), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2757), - [anon_sym_extern] = ACTIONS(2757), - [anon_sym___attribute__] = ACTIONS(2757), - [anon_sym_COLON_COLON] = ACTIONS(2759), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), - [anon_sym___declspec] = ACTIONS(2757), - [anon_sym___based] = ACTIONS(2757), - [anon_sym___cdecl] = ACTIONS(2757), - [anon_sym___clrcall] = ACTIONS(2757), - [anon_sym___stdcall] = ACTIONS(2757), - [anon_sym___fastcall] = ACTIONS(2757), - [anon_sym___thiscall] = ACTIONS(2757), - [anon_sym___vectorcall] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2757), - [anon_sym_static] = ACTIONS(2757), - [anon_sym_register] = ACTIONS(2757), - [anon_sym_inline] = ACTIONS(2757), - [anon_sym_thread_local] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_volatile] = ACTIONS(2757), - [anon_sym_restrict] = ACTIONS(2757), - [anon_sym__Atomic] = ACTIONS(2757), - [anon_sym_mutable] = ACTIONS(2757), - [anon_sym_constexpr] = ACTIONS(2757), - [anon_sym_constinit] = ACTIONS(2757), - [anon_sym_consteval] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2757), - [anon_sym_unsigned] = ACTIONS(2757), - [anon_sym_long] = ACTIONS(2757), - [anon_sym_short] = ACTIONS(2757), - [sym_primitive_type] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_class] = ACTIONS(2757), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_switch] = ACTIONS(2757), - [anon_sym_case] = ACTIONS(2757), - [anon_sym_default] = ACTIONS(2757), - [anon_sym_while] = ACTIONS(2757), - [anon_sym_do] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_not] = ACTIONS(2757), - [anon_sym_compl] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_sizeof] = ACTIONS(2757), - [sym_number_literal] = ACTIONS(2759), - [anon_sym_L_SQUOTE] = ACTIONS(2759), - [anon_sym_u_SQUOTE] = ACTIONS(2759), - [anon_sym_U_SQUOTE] = ACTIONS(2759), - [anon_sym_u8_SQUOTE] = ACTIONS(2759), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_L_DQUOTE] = ACTIONS(2759), - [anon_sym_u_DQUOTE] = ACTIONS(2759), - [anon_sym_U_DQUOTE] = ACTIONS(2759), - [anon_sym_u8_DQUOTE] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_null] = ACTIONS(2757), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2757), - [anon_sym_decltype] = ACTIONS(2757), - [anon_sym_virtual] = ACTIONS(2757), - [anon_sym_explicit] = ACTIONS(2757), - [anon_sym_typename] = ACTIONS(2757), - [anon_sym_template] = ACTIONS(2757), - [anon_sym_operator] = ACTIONS(2757), - [anon_sym_try] = ACTIONS(2757), - [anon_sym_delete] = ACTIONS(2757), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_namespace] = ACTIONS(2757), - [anon_sym_using] = ACTIONS(2757), - [anon_sym_static_assert] = ACTIONS(2757), - [anon_sym_concept] = ACTIONS(2757), - [anon_sym_co_return] = ACTIONS(2757), - [anon_sym_co_yield] = ACTIONS(2757), - [anon_sym_R_DQUOTE] = ACTIONS(2759), - [anon_sym_LR_DQUOTE] = ACTIONS(2759), - [anon_sym_uR_DQUOTE] = ACTIONS(2759), - [anon_sym_UR_DQUOTE] = ACTIONS(2759), - [anon_sym_u8R_DQUOTE] = ACTIONS(2759), - [anon_sym_co_await] = ACTIONS(2757), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_requires] = ACTIONS(2757), - [sym_this] = ACTIONS(2757), - [sym_nullptr] = ACTIONS(2757), - }, - [982] = { - [sym_identifier] = ACTIONS(2681), - [aux_sym_preproc_include_token1] = ACTIONS(2681), - [aux_sym_preproc_def_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), - [sym_preproc_directive] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_AMP_AMP] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2681), - [anon_sym___attribute__] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), - [anon_sym___declspec] = ACTIONS(2681), - [anon_sym___based] = ACTIONS(2681), - [anon_sym___cdecl] = ACTIONS(2681), - [anon_sym___clrcall] = ACTIONS(2681), - [anon_sym___stdcall] = ACTIONS(2681), - [anon_sym___fastcall] = ACTIONS(2681), - [anon_sym___thiscall] = ACTIONS(2681), - [anon_sym___vectorcall] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_RBRACE] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_register] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2681), - [anon_sym_thread_local] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_volatile] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2681), - [anon_sym__Atomic] = ACTIONS(2681), - [anon_sym_mutable] = ACTIONS(2681), - [anon_sym_constexpr] = ACTIONS(2681), - [anon_sym_constinit] = ACTIONS(2681), - [anon_sym_consteval] = ACTIONS(2681), - [anon_sym_signed] = ACTIONS(2681), - [anon_sym_unsigned] = ACTIONS(2681), - [anon_sym_long] = ACTIONS(2681), - [anon_sym_short] = ACTIONS(2681), - [sym_primitive_type] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_switch] = ACTIONS(2681), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_goto] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_compl] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_sizeof] = ACTIONS(2681), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_L_SQUOTE] = ACTIONS(2683), - [anon_sym_u_SQUOTE] = ACTIONS(2683), - [anon_sym_U_SQUOTE] = ACTIONS(2683), - [anon_sym_u8_SQUOTE] = ACTIONS(2683), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_L_DQUOTE] = ACTIONS(2683), - [anon_sym_u_DQUOTE] = ACTIONS(2683), - [anon_sym_U_DQUOTE] = ACTIONS(2683), - [anon_sym_u8_DQUOTE] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_null] = ACTIONS(2681), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2681), - [anon_sym_decltype] = ACTIONS(2681), - [anon_sym_virtual] = ACTIONS(2681), - [anon_sym_explicit] = ACTIONS(2681), - [anon_sym_typename] = ACTIONS(2681), - [anon_sym_template] = ACTIONS(2681), - [anon_sym_operator] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_delete] = ACTIONS(2681), - [anon_sym_throw] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2681), - [anon_sym_static_assert] = ACTIONS(2681), - [anon_sym_concept] = ACTIONS(2681), - [anon_sym_co_return] = ACTIONS(2681), - [anon_sym_co_yield] = ACTIONS(2681), - [anon_sym_R_DQUOTE] = ACTIONS(2683), - [anon_sym_LR_DQUOTE] = ACTIONS(2683), - [anon_sym_uR_DQUOTE] = ACTIONS(2683), - [anon_sym_UR_DQUOTE] = ACTIONS(2683), - [anon_sym_u8R_DQUOTE] = ACTIONS(2683), - [anon_sym_co_await] = ACTIONS(2681), - [anon_sym_new] = ACTIONS(2681), - [anon_sym_requires] = ACTIONS(2681), - [sym_this] = ACTIONS(2681), - [sym_nullptr] = ACTIONS(2681), - }, - [983] = { - [sym_identifier] = ACTIONS(2677), - [aux_sym_preproc_include_token1] = ACTIONS(2677), - [aux_sym_preproc_def_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token2] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), - [sym_preproc_directive] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2677), - [anon_sym_extern] = ACTIONS(2677), - [anon_sym___attribute__] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), - [anon_sym___declspec] = ACTIONS(2677), - [anon_sym___based] = ACTIONS(2677), - [anon_sym___cdecl] = ACTIONS(2677), - [anon_sym___clrcall] = ACTIONS(2677), - [anon_sym___stdcall] = ACTIONS(2677), - [anon_sym___fastcall] = ACTIONS(2677), - [anon_sym___thiscall] = ACTIONS(2677), - [anon_sym___vectorcall] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_register] = ACTIONS(2677), - [anon_sym_inline] = ACTIONS(2677), - [anon_sym_thread_local] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_volatile] = ACTIONS(2677), - [anon_sym_restrict] = ACTIONS(2677), - [anon_sym__Atomic] = ACTIONS(2677), - [anon_sym_mutable] = ACTIONS(2677), - [anon_sym_constexpr] = ACTIONS(2677), - [anon_sym_constinit] = ACTIONS(2677), - [anon_sym_consteval] = ACTIONS(2677), - [anon_sym_signed] = ACTIONS(2677), - [anon_sym_unsigned] = ACTIONS(2677), - [anon_sym_long] = ACTIONS(2677), - [anon_sym_short] = ACTIONS(2677), - [sym_primitive_type] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2677), - [anon_sym_default] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_goto] = ACTIONS(2677), - [anon_sym_not] = ACTIONS(2677), - [anon_sym_compl] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_sizeof] = ACTIONS(2677), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_L_SQUOTE] = ACTIONS(2679), - [anon_sym_u_SQUOTE] = ACTIONS(2679), - [anon_sym_U_SQUOTE] = ACTIONS(2679), - [anon_sym_u8_SQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_L_DQUOTE] = ACTIONS(2679), - [anon_sym_u_DQUOTE] = ACTIONS(2679), - [anon_sym_U_DQUOTE] = ACTIONS(2679), - [anon_sym_u8_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_null] = ACTIONS(2677), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2677), - [anon_sym_decltype] = ACTIONS(2677), - [anon_sym_virtual] = ACTIONS(2677), - [anon_sym_explicit] = ACTIONS(2677), - [anon_sym_typename] = ACTIONS(2677), - [anon_sym_template] = ACTIONS(2677), - [anon_sym_operator] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_using] = ACTIONS(2677), - [anon_sym_static_assert] = ACTIONS(2677), - [anon_sym_concept] = ACTIONS(2677), - [anon_sym_co_return] = ACTIONS(2677), - [anon_sym_co_yield] = ACTIONS(2677), - [anon_sym_R_DQUOTE] = ACTIONS(2679), - [anon_sym_LR_DQUOTE] = ACTIONS(2679), - [anon_sym_uR_DQUOTE] = ACTIONS(2679), - [anon_sym_UR_DQUOTE] = ACTIONS(2679), - [anon_sym_u8R_DQUOTE] = ACTIONS(2679), - [anon_sym_co_await] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_requires] = ACTIONS(2677), - [sym_this] = ACTIONS(2677), - [sym_nullptr] = ACTIONS(2677), - }, - [984] = { - [sym_identifier] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym___attribute__] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2687), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), - [anon_sym___declspec] = ACTIONS(2685), - [anon_sym___based] = ACTIONS(2685), - [anon_sym___cdecl] = ACTIONS(2685), - [anon_sym___clrcall] = ACTIONS(2685), - [anon_sym___stdcall] = ACTIONS(2685), - [anon_sym___fastcall] = ACTIONS(2685), - [anon_sym___thiscall] = ACTIONS(2685), - [anon_sym___vectorcall] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_thread_local] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [anon_sym_mutable] = ACTIONS(2685), - [anon_sym_constexpr] = ACTIONS(2685), - [anon_sym_constinit] = ACTIONS(2685), - [anon_sym_consteval] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_not] = ACTIONS(2685), - [anon_sym_compl] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_L_SQUOTE] = ACTIONS(2687), - [anon_sym_u_SQUOTE] = ACTIONS(2687), - [anon_sym_U_SQUOTE] = ACTIONS(2687), - [anon_sym_u8_SQUOTE] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_L_DQUOTE] = ACTIONS(2687), - [anon_sym_u_DQUOTE] = ACTIONS(2687), - [anon_sym_U_DQUOTE] = ACTIONS(2687), - [anon_sym_u8_DQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2685), - [anon_sym_decltype] = ACTIONS(2685), - [anon_sym_virtual] = ACTIONS(2685), - [anon_sym_explicit] = ACTIONS(2685), - [anon_sym_typename] = ACTIONS(2685), - [anon_sym_template] = ACTIONS(2685), - [anon_sym_operator] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_throw] = ACTIONS(2685), - [anon_sym_namespace] = ACTIONS(2685), - [anon_sym_using] = ACTIONS(2685), - [anon_sym_static_assert] = ACTIONS(2685), - [anon_sym_concept] = ACTIONS(2685), - [anon_sym_co_return] = ACTIONS(2685), - [anon_sym_co_yield] = ACTIONS(2685), - [anon_sym_R_DQUOTE] = ACTIONS(2687), - [anon_sym_LR_DQUOTE] = ACTIONS(2687), - [anon_sym_uR_DQUOTE] = ACTIONS(2687), - [anon_sym_UR_DQUOTE] = ACTIONS(2687), - [anon_sym_u8R_DQUOTE] = ACTIONS(2687), - [anon_sym_co_await] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_requires] = ACTIONS(2685), - [sym_this] = ACTIONS(2685), - [sym_nullptr] = ACTIONS(2685), - }, - [985] = { - [sym_identifier] = ACTIONS(2669), - [aux_sym_preproc_include_token1] = ACTIONS(2669), - [aux_sym_preproc_def_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token2] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), - [sym_preproc_directive] = ACTIONS(2669), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_typedef] = ACTIONS(2669), - [anon_sym_extern] = ACTIONS(2669), - [anon_sym___attribute__] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), - [anon_sym___declspec] = ACTIONS(2669), - [anon_sym___based] = ACTIONS(2669), - [anon_sym___cdecl] = ACTIONS(2669), - [anon_sym___clrcall] = ACTIONS(2669), - [anon_sym___stdcall] = ACTIONS(2669), - [anon_sym___fastcall] = ACTIONS(2669), - [anon_sym___thiscall] = ACTIONS(2669), - [anon_sym___vectorcall] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_register] = ACTIONS(2669), - [anon_sym_inline] = ACTIONS(2669), - [anon_sym_thread_local] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_volatile] = ACTIONS(2669), - [anon_sym_restrict] = ACTIONS(2669), - [anon_sym__Atomic] = ACTIONS(2669), - [anon_sym_mutable] = ACTIONS(2669), - [anon_sym_constexpr] = ACTIONS(2669), - [anon_sym_constinit] = ACTIONS(2669), - [anon_sym_consteval] = ACTIONS(2669), - [anon_sym_signed] = ACTIONS(2669), - [anon_sym_unsigned] = ACTIONS(2669), - [anon_sym_long] = ACTIONS(2669), - [anon_sym_short] = ACTIONS(2669), - [sym_primitive_type] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_default] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym_not] = ACTIONS(2669), - [anon_sym_compl] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_sizeof] = ACTIONS(2669), - [sym_number_literal] = ACTIONS(2671), - [anon_sym_L_SQUOTE] = ACTIONS(2671), - [anon_sym_u_SQUOTE] = ACTIONS(2671), - [anon_sym_U_SQUOTE] = ACTIONS(2671), - [anon_sym_u8_SQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_L_DQUOTE] = ACTIONS(2671), - [anon_sym_u_DQUOTE] = ACTIONS(2671), - [anon_sym_U_DQUOTE] = ACTIONS(2671), - [anon_sym_u8_DQUOTE] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_null] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2669), - [anon_sym_decltype] = ACTIONS(2669), - [anon_sym_virtual] = ACTIONS(2669), - [anon_sym_explicit] = ACTIONS(2669), - [anon_sym_typename] = ACTIONS(2669), - [anon_sym_template] = ACTIONS(2669), - [anon_sym_operator] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_namespace] = ACTIONS(2669), - [anon_sym_using] = ACTIONS(2669), - [anon_sym_static_assert] = ACTIONS(2669), - [anon_sym_concept] = ACTIONS(2669), - [anon_sym_co_return] = ACTIONS(2669), - [anon_sym_co_yield] = ACTIONS(2669), - [anon_sym_R_DQUOTE] = ACTIONS(2671), - [anon_sym_LR_DQUOTE] = ACTIONS(2671), - [anon_sym_uR_DQUOTE] = ACTIONS(2671), - [anon_sym_UR_DQUOTE] = ACTIONS(2671), - [anon_sym_u8R_DQUOTE] = ACTIONS(2671), - [anon_sym_co_await] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_requires] = ACTIONS(2669), - [sym_this] = ACTIONS(2669), - [sym_nullptr] = ACTIONS(2669), - }, - [986] = { - [sym_identifier] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym___attribute__] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2687), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), - [anon_sym___declspec] = ACTIONS(2685), - [anon_sym___based] = ACTIONS(2685), - [anon_sym___cdecl] = ACTIONS(2685), - [anon_sym___clrcall] = ACTIONS(2685), - [anon_sym___stdcall] = ACTIONS(2685), - [anon_sym___fastcall] = ACTIONS(2685), - [anon_sym___thiscall] = ACTIONS(2685), - [anon_sym___vectorcall] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_thread_local] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [anon_sym_mutable] = ACTIONS(2685), - [anon_sym_constexpr] = ACTIONS(2685), - [anon_sym_constinit] = ACTIONS(2685), - [anon_sym_consteval] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_not] = ACTIONS(2685), - [anon_sym_compl] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_L_SQUOTE] = ACTIONS(2687), - [anon_sym_u_SQUOTE] = ACTIONS(2687), - [anon_sym_U_SQUOTE] = ACTIONS(2687), - [anon_sym_u8_SQUOTE] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_L_DQUOTE] = ACTIONS(2687), - [anon_sym_u_DQUOTE] = ACTIONS(2687), - [anon_sym_U_DQUOTE] = ACTIONS(2687), - [anon_sym_u8_DQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2685), - [anon_sym_decltype] = ACTIONS(2685), - [anon_sym_virtual] = ACTIONS(2685), - [anon_sym_explicit] = ACTIONS(2685), - [anon_sym_typename] = ACTIONS(2685), - [anon_sym_template] = ACTIONS(2685), - [anon_sym_operator] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_throw] = ACTIONS(2685), - [anon_sym_namespace] = ACTIONS(2685), - [anon_sym_using] = ACTIONS(2685), - [anon_sym_static_assert] = ACTIONS(2685), - [anon_sym_concept] = ACTIONS(2685), - [anon_sym_co_return] = ACTIONS(2685), - [anon_sym_co_yield] = ACTIONS(2685), - [anon_sym_R_DQUOTE] = ACTIONS(2687), - [anon_sym_LR_DQUOTE] = ACTIONS(2687), - [anon_sym_uR_DQUOTE] = ACTIONS(2687), - [anon_sym_UR_DQUOTE] = ACTIONS(2687), - [anon_sym_u8R_DQUOTE] = ACTIONS(2687), - [anon_sym_co_await] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_requires] = ACTIONS(2685), - [sym_this] = ACTIONS(2685), - [sym_nullptr] = ACTIONS(2685), - }, - [987] = { - [sym_identifier] = ACTIONS(2689), - [aux_sym_preproc_include_token1] = ACTIONS(2689), - [aux_sym_preproc_def_token1] = ACTIONS(2689), - [aux_sym_preproc_if_token1] = ACTIONS(2689), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2689), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2689), - [sym_preproc_directive] = ACTIONS(2689), - [anon_sym_LPAREN2] = ACTIONS(2691), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2689), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_SEMI] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2689), - [anon_sym_extern] = ACTIONS(2689), - [anon_sym___attribute__] = ACTIONS(2689), - [anon_sym_COLON_COLON] = ACTIONS(2691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2691), - [anon_sym___declspec] = ACTIONS(2689), - [anon_sym___based] = ACTIONS(2689), - [anon_sym___cdecl] = ACTIONS(2689), - [anon_sym___clrcall] = ACTIONS(2689), - [anon_sym___stdcall] = ACTIONS(2689), - [anon_sym___fastcall] = ACTIONS(2689), - [anon_sym___thiscall] = ACTIONS(2689), - [anon_sym___vectorcall] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_RBRACE] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_static] = ACTIONS(2689), - [anon_sym_register] = ACTIONS(2689), - [anon_sym_inline] = ACTIONS(2689), - [anon_sym_thread_local] = ACTIONS(2689), - [anon_sym_const] = ACTIONS(2689), - [anon_sym_volatile] = ACTIONS(2689), - [anon_sym_restrict] = ACTIONS(2689), - [anon_sym__Atomic] = ACTIONS(2689), - [anon_sym_mutable] = ACTIONS(2689), - [anon_sym_constexpr] = ACTIONS(2689), - [anon_sym_constinit] = ACTIONS(2689), - [anon_sym_consteval] = ACTIONS(2689), - [anon_sym_signed] = ACTIONS(2689), - [anon_sym_unsigned] = ACTIONS(2689), - [anon_sym_long] = ACTIONS(2689), - [anon_sym_short] = ACTIONS(2689), - [sym_primitive_type] = ACTIONS(2689), - [anon_sym_enum] = ACTIONS(2689), - [anon_sym_class] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(2689), - [anon_sym_union] = ACTIONS(2689), - [anon_sym_if] = ACTIONS(2689), - [anon_sym_switch] = ACTIONS(2689), - [anon_sym_case] = ACTIONS(2689), - [anon_sym_default] = ACTIONS(2689), - [anon_sym_while] = ACTIONS(2689), - [anon_sym_do] = ACTIONS(2689), - [anon_sym_for] = ACTIONS(2689), - [anon_sym_return] = ACTIONS(2689), - [anon_sym_break] = ACTIONS(2689), - [anon_sym_continue] = ACTIONS(2689), - [anon_sym_goto] = ACTIONS(2689), - [anon_sym_not] = ACTIONS(2689), - [anon_sym_compl] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2691), - [anon_sym_sizeof] = ACTIONS(2689), - [sym_number_literal] = ACTIONS(2691), - [anon_sym_L_SQUOTE] = ACTIONS(2691), - [anon_sym_u_SQUOTE] = ACTIONS(2691), - [anon_sym_U_SQUOTE] = ACTIONS(2691), - [anon_sym_u8_SQUOTE] = ACTIONS(2691), - [anon_sym_SQUOTE] = ACTIONS(2691), - [anon_sym_L_DQUOTE] = ACTIONS(2691), - [anon_sym_u_DQUOTE] = ACTIONS(2691), - [anon_sym_U_DQUOTE] = ACTIONS(2691), - [anon_sym_u8_DQUOTE] = ACTIONS(2691), - [anon_sym_DQUOTE] = ACTIONS(2691), - [sym_true] = ACTIONS(2689), - [sym_false] = ACTIONS(2689), - [sym_null] = ACTIONS(2689), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2689), - [anon_sym_decltype] = ACTIONS(2689), - [anon_sym_virtual] = ACTIONS(2689), - [anon_sym_explicit] = ACTIONS(2689), - [anon_sym_typename] = ACTIONS(2689), - [anon_sym_template] = ACTIONS(2689), - [anon_sym_operator] = ACTIONS(2689), - [anon_sym_try] = ACTIONS(2689), - [anon_sym_delete] = ACTIONS(2689), - [anon_sym_throw] = ACTIONS(2689), - [anon_sym_namespace] = ACTIONS(2689), - [anon_sym_using] = ACTIONS(2689), - [anon_sym_static_assert] = ACTIONS(2689), - [anon_sym_concept] = ACTIONS(2689), - [anon_sym_co_return] = ACTIONS(2689), - [anon_sym_co_yield] = ACTIONS(2689), - [anon_sym_R_DQUOTE] = ACTIONS(2691), - [anon_sym_LR_DQUOTE] = ACTIONS(2691), - [anon_sym_uR_DQUOTE] = ACTIONS(2691), - [anon_sym_UR_DQUOTE] = ACTIONS(2691), - [anon_sym_u8R_DQUOTE] = ACTIONS(2691), - [anon_sym_co_await] = ACTIONS(2689), - [anon_sym_new] = ACTIONS(2689), - [anon_sym_requires] = ACTIONS(2689), - [sym_this] = ACTIONS(2689), - [sym_nullptr] = ACTIONS(2689), - }, - [988] = { - [ts_builtin_sym_end] = ACTIONS(2795), - [sym_identifier] = ACTIONS(2793), - [aux_sym_preproc_include_token1] = ACTIONS(2793), - [aux_sym_preproc_def_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), - [sym_preproc_directive] = ACTIONS(2793), - [anon_sym_LPAREN2] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_AMP_AMP] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(2793), - [anon_sym___attribute__] = ACTIONS(2793), - [anon_sym_COLON_COLON] = ACTIONS(2795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), - [anon_sym___declspec] = ACTIONS(2793), - [anon_sym___based] = ACTIONS(2793), - [anon_sym___cdecl] = ACTIONS(2793), - [anon_sym___clrcall] = ACTIONS(2793), - [anon_sym___stdcall] = ACTIONS(2793), - [anon_sym___fastcall] = ACTIONS(2793), - [anon_sym___thiscall] = ACTIONS(2793), - [anon_sym___vectorcall] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2793), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_register] = ACTIONS(2793), - [anon_sym_inline] = ACTIONS(2793), - [anon_sym_thread_local] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_volatile] = ACTIONS(2793), - [anon_sym_restrict] = ACTIONS(2793), - [anon_sym__Atomic] = ACTIONS(2793), - [anon_sym_mutable] = ACTIONS(2793), - [anon_sym_constexpr] = ACTIONS(2793), - [anon_sym_constinit] = ACTIONS(2793), - [anon_sym_consteval] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2793), - [anon_sym_unsigned] = ACTIONS(2793), - [anon_sym_long] = ACTIONS(2793), - [anon_sym_short] = ACTIONS(2793), - [sym_primitive_type] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_class] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_union] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_switch] = ACTIONS(2793), - [anon_sym_case] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_do] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_goto] = ACTIONS(2793), - [anon_sym_not] = ACTIONS(2793), - [anon_sym_compl] = ACTIONS(2793), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_sizeof] = ACTIONS(2793), - [sym_number_literal] = ACTIONS(2795), - [anon_sym_L_SQUOTE] = ACTIONS(2795), - [anon_sym_u_SQUOTE] = ACTIONS(2795), - [anon_sym_U_SQUOTE] = ACTIONS(2795), - [anon_sym_u8_SQUOTE] = ACTIONS(2795), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_L_DQUOTE] = ACTIONS(2795), - [anon_sym_u_DQUOTE] = ACTIONS(2795), - [anon_sym_U_DQUOTE] = ACTIONS(2795), - [anon_sym_u8_DQUOTE] = ACTIONS(2795), - [anon_sym_DQUOTE] = ACTIONS(2795), - [sym_true] = ACTIONS(2793), - [sym_false] = ACTIONS(2793), - [sym_null] = ACTIONS(2793), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2793), - [anon_sym_decltype] = ACTIONS(2793), - [anon_sym_virtual] = ACTIONS(2793), - [anon_sym_explicit] = ACTIONS(2793), - [anon_sym_typename] = ACTIONS(2793), - [anon_sym_template] = ACTIONS(2793), - [anon_sym_operator] = ACTIONS(2793), - [anon_sym_try] = ACTIONS(2793), - [anon_sym_delete] = ACTIONS(2793), - [anon_sym_throw] = ACTIONS(2793), - [anon_sym_namespace] = ACTIONS(2793), - [anon_sym_using] = ACTIONS(2793), - [anon_sym_static_assert] = ACTIONS(2793), - [anon_sym_concept] = ACTIONS(2793), - [anon_sym_co_return] = ACTIONS(2793), - [anon_sym_co_yield] = ACTIONS(2793), - [anon_sym_R_DQUOTE] = ACTIONS(2795), - [anon_sym_LR_DQUOTE] = ACTIONS(2795), - [anon_sym_uR_DQUOTE] = ACTIONS(2795), - [anon_sym_UR_DQUOTE] = ACTIONS(2795), - [anon_sym_u8R_DQUOTE] = ACTIONS(2795), - [anon_sym_co_await] = ACTIONS(2793), - [anon_sym_new] = ACTIONS(2793), - [anon_sym_requires] = ACTIONS(2793), - [sym_this] = ACTIONS(2793), - [sym_nullptr] = ACTIONS(2793), - }, - [989] = { - [sym_identifier] = ACTIONS(2705), - [aux_sym_preproc_include_token1] = ACTIONS(2705), - [aux_sym_preproc_def_token1] = ACTIONS(2705), - [aux_sym_preproc_if_token1] = ACTIONS(2705), - [aux_sym_preproc_if_token2] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), - [sym_preproc_directive] = ACTIONS(2705), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2705), - [anon_sym_extern] = ACTIONS(2705), - [anon_sym___attribute__] = ACTIONS(2705), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), - [anon_sym___declspec] = ACTIONS(2705), - [anon_sym___based] = ACTIONS(2705), - [anon_sym___cdecl] = ACTIONS(2705), - [anon_sym___clrcall] = ACTIONS(2705), - [anon_sym___stdcall] = ACTIONS(2705), - [anon_sym___fastcall] = ACTIONS(2705), - [anon_sym___thiscall] = ACTIONS(2705), - [anon_sym___vectorcall] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_static] = ACTIONS(2705), - [anon_sym_register] = ACTIONS(2705), - [anon_sym_inline] = ACTIONS(2705), - [anon_sym_thread_local] = ACTIONS(2705), - [anon_sym_const] = ACTIONS(2705), - [anon_sym_volatile] = ACTIONS(2705), - [anon_sym_restrict] = ACTIONS(2705), - [anon_sym__Atomic] = ACTIONS(2705), - [anon_sym_mutable] = ACTIONS(2705), - [anon_sym_constexpr] = ACTIONS(2705), - [anon_sym_constinit] = ACTIONS(2705), - [anon_sym_consteval] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2705), - [anon_sym_unsigned] = ACTIONS(2705), - [anon_sym_long] = ACTIONS(2705), - [anon_sym_short] = ACTIONS(2705), - [sym_primitive_type] = ACTIONS(2705), - [anon_sym_enum] = ACTIONS(2705), - [anon_sym_class] = ACTIONS(2705), - [anon_sym_struct] = ACTIONS(2705), - [anon_sym_union] = ACTIONS(2705), - [anon_sym_if] = ACTIONS(2705), - [anon_sym_switch] = ACTIONS(2705), - [anon_sym_case] = ACTIONS(2705), - [anon_sym_default] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2705), - [anon_sym_do] = ACTIONS(2705), - [anon_sym_for] = ACTIONS(2705), - [anon_sym_return] = ACTIONS(2705), - [anon_sym_break] = ACTIONS(2705), - [anon_sym_continue] = ACTIONS(2705), - [anon_sym_goto] = ACTIONS(2705), - [anon_sym_not] = ACTIONS(2705), - [anon_sym_compl] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2707), - [anon_sym_sizeof] = ACTIONS(2705), - [sym_number_literal] = ACTIONS(2707), - [anon_sym_L_SQUOTE] = ACTIONS(2707), - [anon_sym_u_SQUOTE] = ACTIONS(2707), - [anon_sym_U_SQUOTE] = ACTIONS(2707), - [anon_sym_u8_SQUOTE] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_L_DQUOTE] = ACTIONS(2707), - [anon_sym_u_DQUOTE] = ACTIONS(2707), - [anon_sym_U_DQUOTE] = ACTIONS(2707), - [anon_sym_u8_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2707), - [sym_true] = ACTIONS(2705), - [sym_false] = ACTIONS(2705), - [sym_null] = ACTIONS(2705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2705), - [anon_sym_decltype] = ACTIONS(2705), - [anon_sym_virtual] = ACTIONS(2705), - [anon_sym_explicit] = ACTIONS(2705), - [anon_sym_typename] = ACTIONS(2705), - [anon_sym_template] = ACTIONS(2705), - [anon_sym_operator] = ACTIONS(2705), - [anon_sym_try] = ACTIONS(2705), - [anon_sym_delete] = ACTIONS(2705), - [anon_sym_throw] = ACTIONS(2705), - [anon_sym_namespace] = ACTIONS(2705), - [anon_sym_using] = ACTIONS(2705), - [anon_sym_static_assert] = ACTIONS(2705), - [anon_sym_concept] = ACTIONS(2705), - [anon_sym_co_return] = ACTIONS(2705), - [anon_sym_co_yield] = ACTIONS(2705), - [anon_sym_R_DQUOTE] = ACTIONS(2707), - [anon_sym_LR_DQUOTE] = ACTIONS(2707), - [anon_sym_uR_DQUOTE] = ACTIONS(2707), - [anon_sym_UR_DQUOTE] = ACTIONS(2707), - [anon_sym_u8R_DQUOTE] = ACTIONS(2707), - [anon_sym_co_await] = ACTIONS(2705), - [anon_sym_new] = ACTIONS(2705), - [anon_sym_requires] = ACTIONS(2705), - [sym_this] = ACTIONS(2705), - [sym_nullptr] = ACTIONS(2705), - }, - [990] = { - [sym_identifier] = ACTIONS(2713), - [aux_sym_preproc_include_token1] = ACTIONS(2713), - [aux_sym_preproc_def_token1] = ACTIONS(2713), - [aux_sym_preproc_if_token1] = ACTIONS(2713), - [aux_sym_preproc_if_token2] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), - [sym_preproc_directive] = ACTIONS(2713), - [anon_sym_LPAREN2] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_PLUS] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_AMP_AMP] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2713), - [anon_sym_SEMI] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(2713), - [anon_sym___attribute__] = ACTIONS(2713), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), - [anon_sym___declspec] = ACTIONS(2713), - [anon_sym___based] = ACTIONS(2713), - [anon_sym___cdecl] = ACTIONS(2713), - [anon_sym___clrcall] = ACTIONS(2713), - [anon_sym___stdcall] = ACTIONS(2713), - [anon_sym___fastcall] = ACTIONS(2713), - [anon_sym___thiscall] = ACTIONS(2713), - [anon_sym___vectorcall] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_static] = ACTIONS(2713), - [anon_sym_register] = ACTIONS(2713), - [anon_sym_inline] = ACTIONS(2713), - [anon_sym_thread_local] = ACTIONS(2713), - [anon_sym_const] = ACTIONS(2713), - [anon_sym_volatile] = ACTIONS(2713), - [anon_sym_restrict] = ACTIONS(2713), - [anon_sym__Atomic] = ACTIONS(2713), - [anon_sym_mutable] = ACTIONS(2713), - [anon_sym_constexpr] = ACTIONS(2713), - [anon_sym_constinit] = ACTIONS(2713), - [anon_sym_consteval] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2713), - [anon_sym_unsigned] = ACTIONS(2713), - [anon_sym_long] = ACTIONS(2713), - [anon_sym_short] = ACTIONS(2713), - [sym_primitive_type] = ACTIONS(2713), - [anon_sym_enum] = ACTIONS(2713), - [anon_sym_class] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2713), - [anon_sym_union] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2713), - [anon_sym_switch] = ACTIONS(2713), - [anon_sym_case] = ACTIONS(2713), - [anon_sym_default] = ACTIONS(2713), - [anon_sym_while] = ACTIONS(2713), - [anon_sym_do] = ACTIONS(2713), - [anon_sym_for] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2713), - [anon_sym_break] = ACTIONS(2713), - [anon_sym_continue] = ACTIONS(2713), - [anon_sym_goto] = ACTIONS(2713), - [anon_sym_not] = ACTIONS(2713), - [anon_sym_compl] = ACTIONS(2713), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_sizeof] = ACTIONS(2713), - [sym_number_literal] = ACTIONS(2715), - [anon_sym_L_SQUOTE] = ACTIONS(2715), - [anon_sym_u_SQUOTE] = ACTIONS(2715), - [anon_sym_U_SQUOTE] = ACTIONS(2715), - [anon_sym_u8_SQUOTE] = ACTIONS(2715), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_L_DQUOTE] = ACTIONS(2715), - [anon_sym_u_DQUOTE] = ACTIONS(2715), - [anon_sym_U_DQUOTE] = ACTIONS(2715), - [anon_sym_u8_DQUOTE] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [sym_true] = ACTIONS(2713), - [sym_false] = ACTIONS(2713), - [sym_null] = ACTIONS(2713), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2713), - [anon_sym_decltype] = ACTIONS(2713), - [anon_sym_virtual] = ACTIONS(2713), - [anon_sym_explicit] = ACTIONS(2713), - [anon_sym_typename] = ACTIONS(2713), - [anon_sym_template] = ACTIONS(2713), - [anon_sym_operator] = ACTIONS(2713), - [anon_sym_try] = ACTIONS(2713), - [anon_sym_delete] = ACTIONS(2713), - [anon_sym_throw] = ACTIONS(2713), - [anon_sym_namespace] = ACTIONS(2713), - [anon_sym_using] = ACTIONS(2713), - [anon_sym_static_assert] = ACTIONS(2713), - [anon_sym_concept] = ACTIONS(2713), - [anon_sym_co_return] = ACTIONS(2713), - [anon_sym_co_yield] = ACTIONS(2713), - [anon_sym_R_DQUOTE] = ACTIONS(2715), - [anon_sym_LR_DQUOTE] = ACTIONS(2715), - [anon_sym_uR_DQUOTE] = ACTIONS(2715), - [anon_sym_UR_DQUOTE] = ACTIONS(2715), - [anon_sym_u8R_DQUOTE] = ACTIONS(2715), - [anon_sym_co_await] = ACTIONS(2713), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_requires] = ACTIONS(2713), - [sym_this] = ACTIONS(2713), - [sym_nullptr] = ACTIONS(2713), - }, - [991] = { - [sym_identifier] = ACTIONS(2701), - [aux_sym_preproc_include_token1] = ACTIONS(2701), - [aux_sym_preproc_def_token1] = ACTIONS(2701), - [aux_sym_preproc_if_token1] = ACTIONS(2701), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2701), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2701), - [sym_preproc_directive] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_BANG] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2703), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_AMP_AMP] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_SEMI] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2701), - [anon_sym_extern] = ACTIONS(2701), - [anon_sym___attribute__] = ACTIONS(2701), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2703), - [anon_sym___declspec] = ACTIONS(2701), - [anon_sym___based] = ACTIONS(2701), - [anon_sym___cdecl] = ACTIONS(2701), - [anon_sym___clrcall] = ACTIONS(2701), - [anon_sym___stdcall] = ACTIONS(2701), - [anon_sym___fastcall] = ACTIONS(2701), - [anon_sym___thiscall] = ACTIONS(2701), - [anon_sym___vectorcall] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_RBRACE] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_static] = ACTIONS(2701), - [anon_sym_register] = ACTIONS(2701), - [anon_sym_inline] = ACTIONS(2701), - [anon_sym_thread_local] = ACTIONS(2701), - [anon_sym_const] = ACTIONS(2701), - [anon_sym_volatile] = ACTIONS(2701), - [anon_sym_restrict] = ACTIONS(2701), - [anon_sym__Atomic] = ACTIONS(2701), - [anon_sym_mutable] = ACTIONS(2701), - [anon_sym_constexpr] = ACTIONS(2701), - [anon_sym_constinit] = ACTIONS(2701), - [anon_sym_consteval] = ACTIONS(2701), - [anon_sym_signed] = ACTIONS(2701), - [anon_sym_unsigned] = ACTIONS(2701), - [anon_sym_long] = ACTIONS(2701), - [anon_sym_short] = ACTIONS(2701), - [sym_primitive_type] = ACTIONS(2701), - [anon_sym_enum] = ACTIONS(2701), - [anon_sym_class] = ACTIONS(2701), - [anon_sym_struct] = ACTIONS(2701), - [anon_sym_union] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_switch] = ACTIONS(2701), - [anon_sym_case] = ACTIONS(2701), - [anon_sym_default] = ACTIONS(2701), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_break] = ACTIONS(2701), - [anon_sym_continue] = ACTIONS(2701), - [anon_sym_goto] = ACTIONS(2701), - [anon_sym_not] = ACTIONS(2701), - [anon_sym_compl] = ACTIONS(2701), - [anon_sym_DASH_DASH] = ACTIONS(2703), - [anon_sym_PLUS_PLUS] = ACTIONS(2703), - [anon_sym_sizeof] = ACTIONS(2701), - [sym_number_literal] = ACTIONS(2703), - [anon_sym_L_SQUOTE] = ACTIONS(2703), - [anon_sym_u_SQUOTE] = ACTIONS(2703), - [anon_sym_U_SQUOTE] = ACTIONS(2703), - [anon_sym_u8_SQUOTE] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_L_DQUOTE] = ACTIONS(2703), - [anon_sym_u_DQUOTE] = ACTIONS(2703), - [anon_sym_U_DQUOTE] = ACTIONS(2703), - [anon_sym_u8_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE] = ACTIONS(2703), - [sym_true] = ACTIONS(2701), - [sym_false] = ACTIONS(2701), - [sym_null] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2701), - [anon_sym_decltype] = ACTIONS(2701), - [anon_sym_virtual] = ACTIONS(2701), - [anon_sym_explicit] = ACTIONS(2701), - [anon_sym_typename] = ACTIONS(2701), - [anon_sym_template] = ACTIONS(2701), - [anon_sym_operator] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_delete] = ACTIONS(2701), - [anon_sym_throw] = ACTIONS(2701), - [anon_sym_namespace] = ACTIONS(2701), - [anon_sym_using] = ACTIONS(2701), - [anon_sym_static_assert] = ACTIONS(2701), - [anon_sym_concept] = ACTIONS(2701), - [anon_sym_co_return] = ACTIONS(2701), - [anon_sym_co_yield] = ACTIONS(2701), - [anon_sym_R_DQUOTE] = ACTIONS(2703), - [anon_sym_LR_DQUOTE] = ACTIONS(2703), - [anon_sym_uR_DQUOTE] = ACTIONS(2703), - [anon_sym_UR_DQUOTE] = ACTIONS(2703), - [anon_sym_u8R_DQUOTE] = ACTIONS(2703), - [anon_sym_co_await] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_requires] = ACTIONS(2701), - [sym_this] = ACTIONS(2701), - [sym_nullptr] = ACTIONS(2701), - }, - [992] = { - [sym_identifier] = ACTIONS(2705), - [aux_sym_preproc_include_token1] = ACTIONS(2705), - [aux_sym_preproc_def_token1] = ACTIONS(2705), - [aux_sym_preproc_if_token1] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), - [sym_preproc_directive] = ACTIONS(2705), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2705), - [anon_sym_extern] = ACTIONS(2705), - [anon_sym___attribute__] = ACTIONS(2705), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), - [anon_sym___declspec] = ACTIONS(2705), - [anon_sym___based] = ACTIONS(2705), - [anon_sym___cdecl] = ACTIONS(2705), - [anon_sym___clrcall] = ACTIONS(2705), - [anon_sym___stdcall] = ACTIONS(2705), - [anon_sym___fastcall] = ACTIONS(2705), - [anon_sym___thiscall] = ACTIONS(2705), - [anon_sym___vectorcall] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_static] = ACTIONS(2705), - [anon_sym_register] = ACTIONS(2705), - [anon_sym_inline] = ACTIONS(2705), - [anon_sym_thread_local] = ACTIONS(2705), - [anon_sym_const] = ACTIONS(2705), - [anon_sym_volatile] = ACTIONS(2705), - [anon_sym_restrict] = ACTIONS(2705), - [anon_sym__Atomic] = ACTIONS(2705), - [anon_sym_mutable] = ACTIONS(2705), - [anon_sym_constexpr] = ACTIONS(2705), - [anon_sym_constinit] = ACTIONS(2705), - [anon_sym_consteval] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2705), - [anon_sym_unsigned] = ACTIONS(2705), - [anon_sym_long] = ACTIONS(2705), - [anon_sym_short] = ACTIONS(2705), - [sym_primitive_type] = ACTIONS(2705), - [anon_sym_enum] = ACTIONS(2705), - [anon_sym_class] = ACTIONS(2705), - [anon_sym_struct] = ACTIONS(2705), - [anon_sym_union] = ACTIONS(2705), - [anon_sym_if] = ACTIONS(2705), - [anon_sym_switch] = ACTIONS(2705), - [anon_sym_case] = ACTIONS(2705), - [anon_sym_default] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2705), - [anon_sym_do] = ACTIONS(2705), - [anon_sym_for] = ACTIONS(2705), - [anon_sym_return] = ACTIONS(2705), - [anon_sym_break] = ACTIONS(2705), - [anon_sym_continue] = ACTIONS(2705), - [anon_sym_goto] = ACTIONS(2705), - [anon_sym_not] = ACTIONS(2705), - [anon_sym_compl] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2707), - [anon_sym_sizeof] = ACTIONS(2705), - [sym_number_literal] = ACTIONS(2707), - [anon_sym_L_SQUOTE] = ACTIONS(2707), - [anon_sym_u_SQUOTE] = ACTIONS(2707), - [anon_sym_U_SQUOTE] = ACTIONS(2707), - [anon_sym_u8_SQUOTE] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_L_DQUOTE] = ACTIONS(2707), - [anon_sym_u_DQUOTE] = ACTIONS(2707), - [anon_sym_U_DQUOTE] = ACTIONS(2707), - [anon_sym_u8_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2707), - [sym_true] = ACTIONS(2705), - [sym_false] = ACTIONS(2705), - [sym_null] = ACTIONS(2705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2705), - [anon_sym_decltype] = ACTIONS(2705), - [anon_sym_virtual] = ACTIONS(2705), - [anon_sym_explicit] = ACTIONS(2705), - [anon_sym_typename] = ACTIONS(2705), - [anon_sym_template] = ACTIONS(2705), - [anon_sym_operator] = ACTIONS(2705), - [anon_sym_try] = ACTIONS(2705), - [anon_sym_delete] = ACTIONS(2705), - [anon_sym_throw] = ACTIONS(2705), - [anon_sym_namespace] = ACTIONS(2705), - [anon_sym_using] = ACTIONS(2705), - [anon_sym_static_assert] = ACTIONS(2705), - [anon_sym_concept] = ACTIONS(2705), - [anon_sym_co_return] = ACTIONS(2705), - [anon_sym_co_yield] = ACTIONS(2705), - [anon_sym_R_DQUOTE] = ACTIONS(2707), - [anon_sym_LR_DQUOTE] = ACTIONS(2707), - [anon_sym_uR_DQUOTE] = ACTIONS(2707), - [anon_sym_UR_DQUOTE] = ACTIONS(2707), - [anon_sym_u8R_DQUOTE] = ACTIONS(2707), - [anon_sym_co_await] = ACTIONS(2705), - [anon_sym_new] = ACTIONS(2705), - [anon_sym_requires] = ACTIONS(2705), - [sym_this] = ACTIONS(2705), - [sym_nullptr] = ACTIONS(2705), - }, - [993] = { - [sym_identifier] = ACTIONS(2713), - [aux_sym_preproc_include_token1] = ACTIONS(2713), - [aux_sym_preproc_def_token1] = ACTIONS(2713), - [aux_sym_preproc_if_token1] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), - [sym_preproc_directive] = ACTIONS(2713), - [anon_sym_LPAREN2] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_PLUS] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_AMP_AMP] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2713), - [anon_sym_SEMI] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(2713), - [anon_sym___attribute__] = ACTIONS(2713), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), - [anon_sym___declspec] = ACTIONS(2713), - [anon_sym___based] = ACTIONS(2713), - [anon_sym___cdecl] = ACTIONS(2713), - [anon_sym___clrcall] = ACTIONS(2713), - [anon_sym___stdcall] = ACTIONS(2713), - [anon_sym___fastcall] = ACTIONS(2713), - [anon_sym___thiscall] = ACTIONS(2713), - [anon_sym___vectorcall] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_RBRACE] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_static] = ACTIONS(2713), - [anon_sym_register] = ACTIONS(2713), - [anon_sym_inline] = ACTIONS(2713), - [anon_sym_thread_local] = ACTIONS(2713), - [anon_sym_const] = ACTIONS(2713), - [anon_sym_volatile] = ACTIONS(2713), - [anon_sym_restrict] = ACTIONS(2713), - [anon_sym__Atomic] = ACTIONS(2713), - [anon_sym_mutable] = ACTIONS(2713), - [anon_sym_constexpr] = ACTIONS(2713), - [anon_sym_constinit] = ACTIONS(2713), - [anon_sym_consteval] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2713), - [anon_sym_unsigned] = ACTIONS(2713), - [anon_sym_long] = ACTIONS(2713), - [anon_sym_short] = ACTIONS(2713), - [sym_primitive_type] = ACTIONS(2713), - [anon_sym_enum] = ACTIONS(2713), - [anon_sym_class] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2713), - [anon_sym_union] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2713), - [anon_sym_switch] = ACTIONS(2713), - [anon_sym_case] = ACTIONS(2713), - [anon_sym_default] = ACTIONS(2713), - [anon_sym_while] = ACTIONS(2713), - [anon_sym_do] = ACTIONS(2713), - [anon_sym_for] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2713), - [anon_sym_break] = ACTIONS(2713), - [anon_sym_continue] = ACTIONS(2713), - [anon_sym_goto] = ACTIONS(2713), - [anon_sym_not] = ACTIONS(2713), - [anon_sym_compl] = ACTIONS(2713), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_sizeof] = ACTIONS(2713), - [sym_number_literal] = ACTIONS(2715), - [anon_sym_L_SQUOTE] = ACTIONS(2715), - [anon_sym_u_SQUOTE] = ACTIONS(2715), - [anon_sym_U_SQUOTE] = ACTIONS(2715), - [anon_sym_u8_SQUOTE] = ACTIONS(2715), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_L_DQUOTE] = ACTIONS(2715), - [anon_sym_u_DQUOTE] = ACTIONS(2715), - [anon_sym_U_DQUOTE] = ACTIONS(2715), - [anon_sym_u8_DQUOTE] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [sym_true] = ACTIONS(2713), - [sym_false] = ACTIONS(2713), - [sym_null] = ACTIONS(2713), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2713), - [anon_sym_decltype] = ACTIONS(2713), - [anon_sym_virtual] = ACTIONS(2713), - [anon_sym_explicit] = ACTIONS(2713), - [anon_sym_typename] = ACTIONS(2713), - [anon_sym_template] = ACTIONS(2713), - [anon_sym_operator] = ACTIONS(2713), - [anon_sym_try] = ACTIONS(2713), - [anon_sym_delete] = ACTIONS(2713), - [anon_sym_throw] = ACTIONS(2713), - [anon_sym_namespace] = ACTIONS(2713), - [anon_sym_using] = ACTIONS(2713), - [anon_sym_static_assert] = ACTIONS(2713), - [anon_sym_concept] = ACTIONS(2713), - [anon_sym_co_return] = ACTIONS(2713), - [anon_sym_co_yield] = ACTIONS(2713), - [anon_sym_R_DQUOTE] = ACTIONS(2715), - [anon_sym_LR_DQUOTE] = ACTIONS(2715), - [anon_sym_uR_DQUOTE] = ACTIONS(2715), - [anon_sym_UR_DQUOTE] = ACTIONS(2715), - [anon_sym_u8R_DQUOTE] = ACTIONS(2715), - [anon_sym_co_await] = ACTIONS(2713), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_requires] = ACTIONS(2713), - [sym_this] = ACTIONS(2713), - [sym_nullptr] = ACTIONS(2713), - }, - [994] = { - [sym_identifier] = ACTIONS(2725), - [aux_sym_preproc_include_token1] = ACTIONS(2725), - [aux_sym_preproc_def_token1] = ACTIONS(2725), - [aux_sym_preproc_if_token1] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), - [sym_preproc_directive] = ACTIONS(2725), - [anon_sym_LPAREN2] = ACTIONS(2727), - [anon_sym_BANG] = ACTIONS(2727), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_AMP_AMP] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2725), - [anon_sym_extern] = ACTIONS(2725), - [anon_sym___attribute__] = ACTIONS(2725), - [anon_sym_COLON_COLON] = ACTIONS(2727), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), - [anon_sym___declspec] = ACTIONS(2725), - [anon_sym___based] = ACTIONS(2725), - [anon_sym___cdecl] = ACTIONS(2725), - [anon_sym___clrcall] = ACTIONS(2725), - [anon_sym___stdcall] = ACTIONS(2725), - [anon_sym___fastcall] = ACTIONS(2725), - [anon_sym___thiscall] = ACTIONS(2725), - [anon_sym___vectorcall] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_register] = ACTIONS(2725), - [anon_sym_inline] = ACTIONS(2725), - [anon_sym_thread_local] = ACTIONS(2725), - [anon_sym_const] = ACTIONS(2725), - [anon_sym_volatile] = ACTIONS(2725), - [anon_sym_restrict] = ACTIONS(2725), - [anon_sym__Atomic] = ACTIONS(2725), - [anon_sym_mutable] = ACTIONS(2725), - [anon_sym_constexpr] = ACTIONS(2725), - [anon_sym_constinit] = ACTIONS(2725), - [anon_sym_consteval] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2725), - [anon_sym_unsigned] = ACTIONS(2725), - [anon_sym_long] = ACTIONS(2725), - [anon_sym_short] = ACTIONS(2725), - [sym_primitive_type] = ACTIONS(2725), - [anon_sym_enum] = ACTIONS(2725), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2725), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_switch] = ACTIONS(2725), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_default] = ACTIONS(2725), - [anon_sym_while] = ACTIONS(2725), - [anon_sym_do] = ACTIONS(2725), - [anon_sym_for] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2725), - [anon_sym_break] = ACTIONS(2725), - [anon_sym_continue] = ACTIONS(2725), - [anon_sym_goto] = ACTIONS(2725), - [anon_sym_not] = ACTIONS(2725), - [anon_sym_compl] = ACTIONS(2725), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_sizeof] = ACTIONS(2725), - [sym_number_literal] = ACTIONS(2727), - [anon_sym_L_SQUOTE] = ACTIONS(2727), - [anon_sym_u_SQUOTE] = ACTIONS(2727), - [anon_sym_U_SQUOTE] = ACTIONS(2727), - [anon_sym_u8_SQUOTE] = ACTIONS(2727), - [anon_sym_SQUOTE] = ACTIONS(2727), - [anon_sym_L_DQUOTE] = ACTIONS(2727), - [anon_sym_u_DQUOTE] = ACTIONS(2727), - [anon_sym_U_DQUOTE] = ACTIONS(2727), - [anon_sym_u8_DQUOTE] = ACTIONS(2727), - [anon_sym_DQUOTE] = ACTIONS(2727), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_null] = ACTIONS(2725), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2725), - [anon_sym_decltype] = ACTIONS(2725), - [anon_sym_virtual] = ACTIONS(2725), - [anon_sym_explicit] = ACTIONS(2725), - [anon_sym_typename] = ACTIONS(2725), - [anon_sym_template] = ACTIONS(2725), - [anon_sym_operator] = ACTIONS(2725), - [anon_sym_try] = ACTIONS(2725), - [anon_sym_delete] = ACTIONS(2725), - [anon_sym_throw] = ACTIONS(2725), - [anon_sym_namespace] = ACTIONS(2725), - [anon_sym_using] = ACTIONS(2725), - [anon_sym_static_assert] = ACTIONS(2725), - [anon_sym_concept] = ACTIONS(2725), - [anon_sym_co_return] = ACTIONS(2725), - [anon_sym_co_yield] = ACTIONS(2725), - [anon_sym_R_DQUOTE] = ACTIONS(2727), - [anon_sym_LR_DQUOTE] = ACTIONS(2727), - [anon_sym_uR_DQUOTE] = ACTIONS(2727), - [anon_sym_UR_DQUOTE] = ACTIONS(2727), - [anon_sym_u8R_DQUOTE] = ACTIONS(2727), - [anon_sym_co_await] = ACTIONS(2725), - [anon_sym_new] = ACTIONS(2725), - [anon_sym_requires] = ACTIONS(2725), - [sym_this] = ACTIONS(2725), - [sym_nullptr] = ACTIONS(2725), - }, - [995] = { - [sym_identifier] = ACTIONS(2733), - [aux_sym_preproc_include_token1] = ACTIONS(2733), - [aux_sym_preproc_def_token1] = ACTIONS(2733), - [aux_sym_preproc_if_token1] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), - [sym_preproc_directive] = ACTIONS(2733), - [anon_sym_LPAREN2] = ACTIONS(2735), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_TILDE] = ACTIONS(2735), - [anon_sym_DASH] = ACTIONS(2733), - [anon_sym_PLUS] = ACTIONS(2733), - [anon_sym_STAR] = ACTIONS(2735), - [anon_sym_AMP_AMP] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2733), - [anon_sym_SEMI] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2733), - [anon_sym_extern] = ACTIONS(2733), - [anon_sym___attribute__] = ACTIONS(2733), - [anon_sym_COLON_COLON] = ACTIONS(2735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), - [anon_sym___declspec] = ACTIONS(2733), - [anon_sym___based] = ACTIONS(2733), - [anon_sym___cdecl] = ACTIONS(2733), - [anon_sym___clrcall] = ACTIONS(2733), - [anon_sym___stdcall] = ACTIONS(2733), - [anon_sym___fastcall] = ACTIONS(2733), - [anon_sym___thiscall] = ACTIONS(2733), - [anon_sym___vectorcall] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(2735), - [anon_sym_RBRACE] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2733), - [anon_sym_static] = ACTIONS(2733), - [anon_sym_register] = ACTIONS(2733), - [anon_sym_inline] = ACTIONS(2733), - [anon_sym_thread_local] = ACTIONS(2733), - [anon_sym_const] = ACTIONS(2733), - [anon_sym_volatile] = ACTIONS(2733), - [anon_sym_restrict] = ACTIONS(2733), - [anon_sym__Atomic] = ACTIONS(2733), - [anon_sym_mutable] = ACTIONS(2733), - [anon_sym_constexpr] = ACTIONS(2733), - [anon_sym_constinit] = ACTIONS(2733), - [anon_sym_consteval] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2733), - [anon_sym_unsigned] = ACTIONS(2733), - [anon_sym_long] = ACTIONS(2733), - [anon_sym_short] = ACTIONS(2733), - [sym_primitive_type] = ACTIONS(2733), - [anon_sym_enum] = ACTIONS(2733), - [anon_sym_class] = ACTIONS(2733), - [anon_sym_struct] = ACTIONS(2733), - [anon_sym_union] = ACTIONS(2733), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2733), - [anon_sym_case] = ACTIONS(2733), - [anon_sym_default] = ACTIONS(2733), - [anon_sym_while] = ACTIONS(2733), - [anon_sym_do] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_break] = ACTIONS(2733), - [anon_sym_continue] = ACTIONS(2733), - [anon_sym_goto] = ACTIONS(2733), - [anon_sym_not] = ACTIONS(2733), - [anon_sym_compl] = ACTIONS(2733), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_sizeof] = ACTIONS(2733), - [sym_number_literal] = ACTIONS(2735), - [anon_sym_L_SQUOTE] = ACTIONS(2735), - [anon_sym_u_SQUOTE] = ACTIONS(2735), - [anon_sym_U_SQUOTE] = ACTIONS(2735), - [anon_sym_u8_SQUOTE] = ACTIONS(2735), - [anon_sym_SQUOTE] = ACTIONS(2735), - [anon_sym_L_DQUOTE] = ACTIONS(2735), - [anon_sym_u_DQUOTE] = ACTIONS(2735), - [anon_sym_U_DQUOTE] = ACTIONS(2735), - [anon_sym_u8_DQUOTE] = ACTIONS(2735), - [anon_sym_DQUOTE] = ACTIONS(2735), - [sym_true] = ACTIONS(2733), - [sym_false] = ACTIONS(2733), - [sym_null] = ACTIONS(2733), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2733), - [anon_sym_decltype] = ACTIONS(2733), - [anon_sym_virtual] = ACTIONS(2733), - [anon_sym_explicit] = ACTIONS(2733), - [anon_sym_typename] = ACTIONS(2733), - [anon_sym_template] = ACTIONS(2733), - [anon_sym_operator] = ACTIONS(2733), - [anon_sym_try] = ACTIONS(2733), - [anon_sym_delete] = ACTIONS(2733), - [anon_sym_throw] = ACTIONS(2733), - [anon_sym_namespace] = ACTIONS(2733), - [anon_sym_using] = ACTIONS(2733), - [anon_sym_static_assert] = ACTIONS(2733), - [anon_sym_concept] = ACTIONS(2733), - [anon_sym_co_return] = ACTIONS(2733), - [anon_sym_co_yield] = ACTIONS(2733), - [anon_sym_R_DQUOTE] = ACTIONS(2735), - [anon_sym_LR_DQUOTE] = ACTIONS(2735), - [anon_sym_uR_DQUOTE] = ACTIONS(2735), - [anon_sym_UR_DQUOTE] = ACTIONS(2735), - [anon_sym_u8R_DQUOTE] = ACTIONS(2735), - [anon_sym_co_await] = ACTIONS(2733), - [anon_sym_new] = ACTIONS(2733), - [anon_sym_requires] = ACTIONS(2733), - [sym_this] = ACTIONS(2733), - [sym_nullptr] = ACTIONS(2733), - }, - [996] = { - [sym_identifier] = ACTIONS(2825), - [aux_sym_preproc_include_token1] = ACTIONS(2825), - [aux_sym_preproc_def_token1] = ACTIONS(2825), - [aux_sym_preproc_if_token1] = ACTIONS(2825), - [aux_sym_preproc_if_token2] = ACTIONS(2825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2825), - [sym_preproc_directive] = ACTIONS(2825), - [anon_sym_LPAREN2] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2825), - [anon_sym_PLUS] = ACTIONS(2825), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_AMP_AMP] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2825), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_typedef] = ACTIONS(2825), - [anon_sym_extern] = ACTIONS(2825), - [anon_sym___attribute__] = ACTIONS(2825), - [anon_sym_COLON_COLON] = ACTIONS(2827), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2827), - [anon_sym___declspec] = ACTIONS(2825), - [anon_sym___based] = ACTIONS(2825), - [anon_sym___cdecl] = ACTIONS(2825), - [anon_sym___clrcall] = ACTIONS(2825), - [anon_sym___stdcall] = ACTIONS(2825), - [anon_sym___fastcall] = ACTIONS(2825), - [anon_sym___thiscall] = ACTIONS(2825), - [anon_sym___vectorcall] = ACTIONS(2825), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(2825), - [anon_sym_register] = ACTIONS(2825), - [anon_sym_inline] = ACTIONS(2825), - [anon_sym_thread_local] = ACTIONS(2825), - [anon_sym_const] = ACTIONS(2825), - [anon_sym_volatile] = ACTIONS(2825), - [anon_sym_restrict] = ACTIONS(2825), - [anon_sym__Atomic] = ACTIONS(2825), - [anon_sym_mutable] = ACTIONS(2825), - [anon_sym_constexpr] = ACTIONS(2825), - [anon_sym_constinit] = ACTIONS(2825), - [anon_sym_consteval] = ACTIONS(2825), - [anon_sym_signed] = ACTIONS(2825), - [anon_sym_unsigned] = ACTIONS(2825), - [anon_sym_long] = ACTIONS(2825), - [anon_sym_short] = ACTIONS(2825), - [sym_primitive_type] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2825), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2825), - [anon_sym_union] = ACTIONS(2825), - [anon_sym_if] = ACTIONS(2825), - [anon_sym_switch] = ACTIONS(2825), - [anon_sym_case] = ACTIONS(2825), - [anon_sym_default] = ACTIONS(2825), - [anon_sym_while] = ACTIONS(2825), - [anon_sym_do] = ACTIONS(2825), - [anon_sym_for] = ACTIONS(2825), - [anon_sym_return] = ACTIONS(2825), - [anon_sym_break] = ACTIONS(2825), - [anon_sym_continue] = ACTIONS(2825), - [anon_sym_goto] = ACTIONS(2825), - [anon_sym_not] = ACTIONS(2825), - [anon_sym_compl] = ACTIONS(2825), - [anon_sym_DASH_DASH] = ACTIONS(2827), - [anon_sym_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_sizeof] = ACTIONS(2825), - [sym_number_literal] = ACTIONS(2827), - [anon_sym_L_SQUOTE] = ACTIONS(2827), - [anon_sym_u_SQUOTE] = ACTIONS(2827), - [anon_sym_U_SQUOTE] = ACTIONS(2827), - [anon_sym_u8_SQUOTE] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2827), - [anon_sym_L_DQUOTE] = ACTIONS(2827), - [anon_sym_u_DQUOTE] = ACTIONS(2827), - [anon_sym_U_DQUOTE] = ACTIONS(2827), - [anon_sym_u8_DQUOTE] = ACTIONS(2827), - [anon_sym_DQUOTE] = ACTIONS(2827), - [sym_true] = ACTIONS(2825), - [sym_false] = ACTIONS(2825), - [sym_null] = ACTIONS(2825), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2825), - [anon_sym_decltype] = ACTIONS(2825), - [anon_sym_virtual] = ACTIONS(2825), - [anon_sym_explicit] = ACTIONS(2825), - [anon_sym_typename] = ACTIONS(2825), - [anon_sym_template] = ACTIONS(2825), - [anon_sym_operator] = ACTIONS(2825), - [anon_sym_try] = ACTIONS(2825), - [anon_sym_delete] = ACTIONS(2825), - [anon_sym_throw] = ACTIONS(2825), - [anon_sym_namespace] = ACTIONS(2825), - [anon_sym_using] = ACTIONS(2825), - [anon_sym_static_assert] = ACTIONS(2825), - [anon_sym_concept] = ACTIONS(2825), - [anon_sym_co_return] = ACTIONS(2825), - [anon_sym_co_yield] = ACTIONS(2825), - [anon_sym_R_DQUOTE] = ACTIONS(2827), - [anon_sym_LR_DQUOTE] = ACTIONS(2827), - [anon_sym_uR_DQUOTE] = ACTIONS(2827), - [anon_sym_UR_DQUOTE] = ACTIONS(2827), - [anon_sym_u8R_DQUOTE] = ACTIONS(2827), - [anon_sym_co_await] = ACTIONS(2825), - [anon_sym_new] = ACTIONS(2825), - [anon_sym_requires] = ACTIONS(2825), - [sym_this] = ACTIONS(2825), - [sym_nullptr] = ACTIONS(2825), - }, - [997] = { - [sym_identifier] = ACTIONS(2737), - [aux_sym_preproc_include_token1] = ACTIONS(2737), - [aux_sym_preproc_def_token1] = ACTIONS(2737), - [aux_sym_preproc_if_token1] = ACTIONS(2737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2737), - [sym_preproc_directive] = ACTIONS(2737), - [anon_sym_LPAREN2] = ACTIONS(2739), - [anon_sym_BANG] = ACTIONS(2739), - [anon_sym_TILDE] = ACTIONS(2739), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_PLUS] = ACTIONS(2737), - [anon_sym_STAR] = ACTIONS(2739), - [anon_sym_AMP_AMP] = ACTIONS(2739), - [anon_sym_AMP] = ACTIONS(2737), - [anon_sym_SEMI] = ACTIONS(2739), - [anon_sym_typedef] = ACTIONS(2737), - [anon_sym_extern] = ACTIONS(2737), - [anon_sym___attribute__] = ACTIONS(2737), - [anon_sym_COLON_COLON] = ACTIONS(2739), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2739), - [anon_sym___declspec] = ACTIONS(2737), - [anon_sym___based] = ACTIONS(2737), - [anon_sym___cdecl] = ACTIONS(2737), - [anon_sym___clrcall] = ACTIONS(2737), - [anon_sym___stdcall] = ACTIONS(2737), - [anon_sym___fastcall] = ACTIONS(2737), - [anon_sym___thiscall] = ACTIONS(2737), - [anon_sym___vectorcall] = ACTIONS(2737), - [anon_sym_LBRACE] = ACTIONS(2739), - [anon_sym_RBRACE] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2737), - [anon_sym_static] = ACTIONS(2737), - [anon_sym_register] = ACTIONS(2737), - [anon_sym_inline] = ACTIONS(2737), - [anon_sym_thread_local] = ACTIONS(2737), - [anon_sym_const] = ACTIONS(2737), - [anon_sym_volatile] = ACTIONS(2737), - [anon_sym_restrict] = ACTIONS(2737), - [anon_sym__Atomic] = ACTIONS(2737), - [anon_sym_mutable] = ACTIONS(2737), - [anon_sym_constexpr] = ACTIONS(2737), - [anon_sym_constinit] = ACTIONS(2737), - [anon_sym_consteval] = ACTIONS(2737), - [anon_sym_signed] = ACTIONS(2737), - [anon_sym_unsigned] = ACTIONS(2737), - [anon_sym_long] = ACTIONS(2737), - [anon_sym_short] = ACTIONS(2737), - [sym_primitive_type] = ACTIONS(2737), - [anon_sym_enum] = ACTIONS(2737), - [anon_sym_class] = ACTIONS(2737), - [anon_sym_struct] = ACTIONS(2737), - [anon_sym_union] = ACTIONS(2737), - [anon_sym_if] = ACTIONS(2737), - [anon_sym_switch] = ACTIONS(2737), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2737), - [anon_sym_while] = ACTIONS(2737), - [anon_sym_do] = ACTIONS(2737), - [anon_sym_for] = ACTIONS(2737), - [anon_sym_return] = ACTIONS(2737), - [anon_sym_break] = ACTIONS(2737), - [anon_sym_continue] = ACTIONS(2737), - [anon_sym_goto] = ACTIONS(2737), - [anon_sym_not] = ACTIONS(2737), - [anon_sym_compl] = ACTIONS(2737), - [anon_sym_DASH_DASH] = ACTIONS(2739), - [anon_sym_PLUS_PLUS] = ACTIONS(2739), - [anon_sym_sizeof] = ACTIONS(2737), - [sym_number_literal] = ACTIONS(2739), - [anon_sym_L_SQUOTE] = ACTIONS(2739), - [anon_sym_u_SQUOTE] = ACTIONS(2739), - [anon_sym_U_SQUOTE] = ACTIONS(2739), - [anon_sym_u8_SQUOTE] = ACTIONS(2739), - [anon_sym_SQUOTE] = ACTIONS(2739), - [anon_sym_L_DQUOTE] = ACTIONS(2739), - [anon_sym_u_DQUOTE] = ACTIONS(2739), - [anon_sym_U_DQUOTE] = ACTIONS(2739), - [anon_sym_u8_DQUOTE] = ACTIONS(2739), - [anon_sym_DQUOTE] = ACTIONS(2739), - [sym_true] = ACTIONS(2737), - [sym_false] = ACTIONS(2737), - [sym_null] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2737), - [anon_sym_decltype] = ACTIONS(2737), - [anon_sym_virtual] = ACTIONS(2737), - [anon_sym_explicit] = ACTIONS(2737), - [anon_sym_typename] = ACTIONS(2737), - [anon_sym_template] = ACTIONS(2737), - [anon_sym_operator] = ACTIONS(2737), - [anon_sym_try] = ACTIONS(2737), - [anon_sym_delete] = ACTIONS(2737), - [anon_sym_throw] = ACTIONS(2737), - [anon_sym_namespace] = ACTIONS(2737), - [anon_sym_using] = ACTIONS(2737), - [anon_sym_static_assert] = ACTIONS(2737), - [anon_sym_concept] = ACTIONS(2737), - [anon_sym_co_return] = ACTIONS(2737), - [anon_sym_co_yield] = ACTIONS(2737), - [anon_sym_R_DQUOTE] = ACTIONS(2739), - [anon_sym_LR_DQUOTE] = ACTIONS(2739), - [anon_sym_uR_DQUOTE] = ACTIONS(2739), - [anon_sym_UR_DQUOTE] = ACTIONS(2739), - [anon_sym_u8R_DQUOTE] = ACTIONS(2739), - [anon_sym_co_await] = ACTIONS(2737), - [anon_sym_new] = ACTIONS(2737), - [anon_sym_requires] = ACTIONS(2737), - [sym_this] = ACTIONS(2737), - [sym_nullptr] = ACTIONS(2737), - }, - [998] = { - [sym_identifier] = ACTIONS(2749), - [aux_sym_preproc_include_token1] = ACTIONS(2749), - [aux_sym_preproc_def_token1] = ACTIONS(2749), - [aux_sym_preproc_if_token1] = ACTIONS(2749), - [aux_sym_preproc_if_token2] = ACTIONS(2749), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2749), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2749), - [sym_preproc_directive] = ACTIONS(2749), - [anon_sym_LPAREN2] = ACTIONS(2751), - [anon_sym_BANG] = ACTIONS(2751), - [anon_sym_TILDE] = ACTIONS(2751), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_PLUS] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2751), - [anon_sym_AMP_AMP] = ACTIONS(2751), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_SEMI] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2749), - [anon_sym_extern] = ACTIONS(2749), - [anon_sym___attribute__] = ACTIONS(2749), - [anon_sym_COLON_COLON] = ACTIONS(2751), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2751), - [anon_sym___declspec] = ACTIONS(2749), - [anon_sym___based] = ACTIONS(2749), - [anon_sym___cdecl] = ACTIONS(2749), - [anon_sym___clrcall] = ACTIONS(2749), - [anon_sym___stdcall] = ACTIONS(2749), - [anon_sym___fastcall] = ACTIONS(2749), - [anon_sym___thiscall] = ACTIONS(2749), - [anon_sym___vectorcall] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2749), - [anon_sym_static] = ACTIONS(2749), - [anon_sym_register] = ACTIONS(2749), - [anon_sym_inline] = ACTIONS(2749), - [anon_sym_thread_local] = ACTIONS(2749), - [anon_sym_const] = ACTIONS(2749), - [anon_sym_volatile] = ACTIONS(2749), - [anon_sym_restrict] = ACTIONS(2749), - [anon_sym__Atomic] = ACTIONS(2749), - [anon_sym_mutable] = ACTIONS(2749), - [anon_sym_constexpr] = ACTIONS(2749), - [anon_sym_constinit] = ACTIONS(2749), - [anon_sym_consteval] = ACTIONS(2749), - [anon_sym_signed] = ACTIONS(2749), - [anon_sym_unsigned] = ACTIONS(2749), - [anon_sym_long] = ACTIONS(2749), - [anon_sym_short] = ACTIONS(2749), - [sym_primitive_type] = ACTIONS(2749), - [anon_sym_enum] = ACTIONS(2749), - [anon_sym_class] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2749), - [anon_sym_union] = ACTIONS(2749), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_switch] = ACTIONS(2749), - [anon_sym_case] = ACTIONS(2749), - [anon_sym_default] = ACTIONS(2749), - [anon_sym_while] = ACTIONS(2749), - [anon_sym_do] = ACTIONS(2749), - [anon_sym_for] = ACTIONS(2749), - [anon_sym_return] = ACTIONS(2749), - [anon_sym_break] = ACTIONS(2749), - [anon_sym_continue] = ACTIONS(2749), - [anon_sym_goto] = ACTIONS(2749), - [anon_sym_not] = ACTIONS(2749), - [anon_sym_compl] = ACTIONS(2749), - [anon_sym_DASH_DASH] = ACTIONS(2751), - [anon_sym_PLUS_PLUS] = ACTIONS(2751), - [anon_sym_sizeof] = ACTIONS(2749), - [sym_number_literal] = ACTIONS(2751), - [anon_sym_L_SQUOTE] = ACTIONS(2751), - [anon_sym_u_SQUOTE] = ACTIONS(2751), - [anon_sym_U_SQUOTE] = ACTIONS(2751), - [anon_sym_u8_SQUOTE] = ACTIONS(2751), - [anon_sym_SQUOTE] = ACTIONS(2751), - [anon_sym_L_DQUOTE] = ACTIONS(2751), - [anon_sym_u_DQUOTE] = ACTIONS(2751), - [anon_sym_U_DQUOTE] = ACTIONS(2751), - [anon_sym_u8_DQUOTE] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(2751), - [sym_true] = ACTIONS(2749), - [sym_false] = ACTIONS(2749), - [sym_null] = ACTIONS(2749), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2749), - [anon_sym_decltype] = ACTIONS(2749), - [anon_sym_virtual] = ACTIONS(2749), - [anon_sym_explicit] = ACTIONS(2749), - [anon_sym_typename] = ACTIONS(2749), - [anon_sym_template] = ACTIONS(2749), - [anon_sym_operator] = ACTIONS(2749), - [anon_sym_try] = ACTIONS(2749), - [anon_sym_delete] = ACTIONS(2749), - [anon_sym_throw] = ACTIONS(2749), - [anon_sym_namespace] = ACTIONS(2749), - [anon_sym_using] = ACTIONS(2749), - [anon_sym_static_assert] = ACTIONS(2749), - [anon_sym_concept] = ACTIONS(2749), - [anon_sym_co_return] = ACTIONS(2749), - [anon_sym_co_yield] = ACTIONS(2749), - [anon_sym_R_DQUOTE] = ACTIONS(2751), - [anon_sym_LR_DQUOTE] = ACTIONS(2751), - [anon_sym_uR_DQUOTE] = ACTIONS(2751), - [anon_sym_UR_DQUOTE] = ACTIONS(2751), - [anon_sym_u8R_DQUOTE] = ACTIONS(2751), - [anon_sym_co_await] = ACTIONS(2749), - [anon_sym_new] = ACTIONS(2749), - [anon_sym_requires] = ACTIONS(2749), - [sym_this] = ACTIONS(2749), - [sym_nullptr] = ACTIONS(2749), - }, - [999] = { - [sym_identifier] = ACTIONS(2661), - [aux_sym_preproc_include_token1] = ACTIONS(2661), - [aux_sym_preproc_def_token1] = ACTIONS(2661), - [aux_sym_preproc_if_token1] = ACTIONS(2661), - [aux_sym_preproc_if_token2] = ACTIONS(2661), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2661), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2661), - [sym_preproc_directive] = ACTIONS(2661), - [anon_sym_LPAREN2] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_PLUS] = ACTIONS(2661), - [anon_sym_STAR] = ACTIONS(2663), - [anon_sym_AMP_AMP] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2661), - [anon_sym_SEMI] = ACTIONS(2663), - [anon_sym_typedef] = ACTIONS(2661), - [anon_sym_extern] = ACTIONS(2661), - [anon_sym___attribute__] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2663), - [anon_sym___declspec] = ACTIONS(2661), - [anon_sym___based] = ACTIONS(2661), - [anon_sym___cdecl] = ACTIONS(2661), - [anon_sym___clrcall] = ACTIONS(2661), - [anon_sym___stdcall] = ACTIONS(2661), - [anon_sym___fastcall] = ACTIONS(2661), - [anon_sym___thiscall] = ACTIONS(2661), - [anon_sym___vectorcall] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_static] = ACTIONS(2661), - [anon_sym_register] = ACTIONS(2661), - [anon_sym_inline] = ACTIONS(2661), - [anon_sym_thread_local] = ACTIONS(2661), - [anon_sym_const] = ACTIONS(2661), - [anon_sym_volatile] = ACTIONS(2661), - [anon_sym_restrict] = ACTIONS(2661), - [anon_sym__Atomic] = ACTIONS(2661), - [anon_sym_mutable] = ACTIONS(2661), - [anon_sym_constexpr] = ACTIONS(2661), - [anon_sym_constinit] = ACTIONS(2661), - [anon_sym_consteval] = ACTIONS(2661), - [anon_sym_signed] = ACTIONS(2661), - [anon_sym_unsigned] = ACTIONS(2661), - [anon_sym_long] = ACTIONS(2661), - [anon_sym_short] = ACTIONS(2661), - [sym_primitive_type] = ACTIONS(2661), - [anon_sym_enum] = ACTIONS(2661), - [anon_sym_class] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2661), - [anon_sym_union] = ACTIONS(2661), - [anon_sym_if] = ACTIONS(2661), - [anon_sym_switch] = ACTIONS(2661), - [anon_sym_case] = ACTIONS(2661), - [anon_sym_default] = ACTIONS(2661), - [anon_sym_while] = ACTIONS(2661), - [anon_sym_do] = ACTIONS(2661), - [anon_sym_for] = ACTIONS(2661), - [anon_sym_return] = ACTIONS(2661), - [anon_sym_break] = ACTIONS(2661), - [anon_sym_continue] = ACTIONS(2661), - [anon_sym_goto] = ACTIONS(2661), - [anon_sym_not] = ACTIONS(2661), - [anon_sym_compl] = ACTIONS(2661), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_sizeof] = ACTIONS(2661), - [sym_number_literal] = ACTIONS(2663), - [anon_sym_L_SQUOTE] = ACTIONS(2663), - [anon_sym_u_SQUOTE] = ACTIONS(2663), - [anon_sym_U_SQUOTE] = ACTIONS(2663), - [anon_sym_u8_SQUOTE] = ACTIONS(2663), - [anon_sym_SQUOTE] = ACTIONS(2663), - [anon_sym_L_DQUOTE] = ACTIONS(2663), - [anon_sym_u_DQUOTE] = ACTIONS(2663), - [anon_sym_U_DQUOTE] = ACTIONS(2663), - [anon_sym_u8_DQUOTE] = ACTIONS(2663), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym_true] = ACTIONS(2661), - [sym_false] = ACTIONS(2661), - [sym_null] = ACTIONS(2661), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2661), - [anon_sym_decltype] = ACTIONS(2661), - [anon_sym_virtual] = ACTIONS(2661), - [anon_sym_explicit] = ACTIONS(2661), - [anon_sym_typename] = ACTIONS(2661), - [anon_sym_template] = ACTIONS(2661), - [anon_sym_operator] = ACTIONS(2661), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_delete] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2661), - [anon_sym_namespace] = ACTIONS(2661), - [anon_sym_using] = ACTIONS(2661), - [anon_sym_static_assert] = ACTIONS(2661), - [anon_sym_concept] = ACTIONS(2661), - [anon_sym_co_return] = ACTIONS(2661), - [anon_sym_co_yield] = ACTIONS(2661), - [anon_sym_R_DQUOTE] = ACTIONS(2663), - [anon_sym_LR_DQUOTE] = ACTIONS(2663), - [anon_sym_uR_DQUOTE] = ACTIONS(2663), - [anon_sym_UR_DQUOTE] = ACTIONS(2663), - [anon_sym_u8R_DQUOTE] = ACTIONS(2663), - [anon_sym_co_await] = ACTIONS(2661), - [anon_sym_new] = ACTIONS(2661), - [anon_sym_requires] = ACTIONS(2661), - [sym_this] = ACTIONS(2661), - [sym_nullptr] = ACTIONS(2661), - }, - [1000] = { - [sym_identifier] = ACTIONS(2845), - [aux_sym_preproc_include_token1] = ACTIONS(2845), - [aux_sym_preproc_def_token1] = ACTIONS(2845), - [aux_sym_preproc_if_token1] = ACTIONS(2845), - [aux_sym_preproc_if_token2] = ACTIONS(2845), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2845), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2845), - [sym_preproc_directive] = ACTIONS(2845), - [anon_sym_LPAREN2] = ACTIONS(2847), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_TILDE] = ACTIONS(2847), - [anon_sym_DASH] = ACTIONS(2845), - [anon_sym_PLUS] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_AMP_AMP] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_SEMI] = ACTIONS(2847), - [anon_sym_typedef] = ACTIONS(2845), - [anon_sym_extern] = ACTIONS(2845), - [anon_sym___attribute__] = ACTIONS(2845), - [anon_sym_COLON_COLON] = ACTIONS(2847), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2847), - [anon_sym___declspec] = ACTIONS(2845), - [anon_sym___based] = ACTIONS(2845), - [anon_sym___cdecl] = ACTIONS(2845), - [anon_sym___clrcall] = ACTIONS(2845), - [anon_sym___stdcall] = ACTIONS(2845), - [anon_sym___fastcall] = ACTIONS(2845), - [anon_sym___thiscall] = ACTIONS(2845), - [anon_sym___vectorcall] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_static] = ACTIONS(2845), - [anon_sym_register] = ACTIONS(2845), - [anon_sym_inline] = ACTIONS(2845), - [anon_sym_thread_local] = ACTIONS(2845), - [anon_sym_const] = ACTIONS(2845), - [anon_sym_volatile] = ACTIONS(2845), - [anon_sym_restrict] = ACTIONS(2845), - [anon_sym__Atomic] = ACTIONS(2845), - [anon_sym_mutable] = ACTIONS(2845), - [anon_sym_constexpr] = ACTIONS(2845), - [anon_sym_constinit] = ACTIONS(2845), - [anon_sym_consteval] = ACTIONS(2845), - [anon_sym_signed] = ACTIONS(2845), - [anon_sym_unsigned] = ACTIONS(2845), - [anon_sym_long] = ACTIONS(2845), - [anon_sym_short] = ACTIONS(2845), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_enum] = ACTIONS(2845), - [anon_sym_class] = ACTIONS(2845), - [anon_sym_struct] = ACTIONS(2845), - [anon_sym_union] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(2845), - [anon_sym_switch] = ACTIONS(2845), - [anon_sym_case] = ACTIONS(2845), - [anon_sym_default] = ACTIONS(2845), - [anon_sym_while] = ACTIONS(2845), - [anon_sym_do] = ACTIONS(2845), - [anon_sym_for] = ACTIONS(2845), - [anon_sym_return] = ACTIONS(2845), - [anon_sym_break] = ACTIONS(2845), - [anon_sym_continue] = ACTIONS(2845), - [anon_sym_goto] = ACTIONS(2845), - [anon_sym_not] = ACTIONS(2845), - [anon_sym_compl] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2845), - [sym_number_literal] = ACTIONS(2847), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2847), - [anon_sym_u_DQUOTE] = ACTIONS(2847), - [anon_sym_U_DQUOTE] = ACTIONS(2847), - [anon_sym_u8_DQUOTE] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2847), - [sym_true] = ACTIONS(2845), - [sym_false] = ACTIONS(2845), - [sym_null] = ACTIONS(2845), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2845), - [anon_sym_decltype] = ACTIONS(2845), - [anon_sym_virtual] = ACTIONS(2845), - [anon_sym_explicit] = ACTIONS(2845), - [anon_sym_typename] = ACTIONS(2845), - [anon_sym_template] = ACTIONS(2845), - [anon_sym_operator] = ACTIONS(2845), - [anon_sym_try] = ACTIONS(2845), - [anon_sym_delete] = ACTIONS(2845), - [anon_sym_throw] = ACTIONS(2845), - [anon_sym_namespace] = ACTIONS(2845), - [anon_sym_using] = ACTIONS(2845), - [anon_sym_static_assert] = ACTIONS(2845), - [anon_sym_concept] = ACTIONS(2845), - [anon_sym_co_return] = ACTIONS(2845), - [anon_sym_co_yield] = ACTIONS(2845), - [anon_sym_R_DQUOTE] = ACTIONS(2847), - [anon_sym_LR_DQUOTE] = ACTIONS(2847), - [anon_sym_uR_DQUOTE] = ACTIONS(2847), - [anon_sym_UR_DQUOTE] = ACTIONS(2847), - [anon_sym_u8R_DQUOTE] = ACTIONS(2847), - [anon_sym_co_await] = ACTIONS(2845), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_requires] = ACTIONS(2845), - [sym_this] = ACTIONS(2845), - [sym_nullptr] = ACTIONS(2845), - }, - [1001] = { - [sym_identifier] = ACTIONS(2745), - [aux_sym_preproc_include_token1] = ACTIONS(2745), - [aux_sym_preproc_def_token1] = ACTIONS(2745), - [aux_sym_preproc_if_token1] = ACTIONS(2745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2745), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2745), - [sym_preproc_directive] = ACTIONS(2745), - [anon_sym_LPAREN2] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_AMP_AMP] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2745), - [anon_sym_extern] = ACTIONS(2745), - [anon_sym___attribute__] = ACTIONS(2745), - [anon_sym_COLON_COLON] = ACTIONS(2747), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2747), - [anon_sym___declspec] = ACTIONS(2745), - [anon_sym___based] = ACTIONS(2745), - [anon_sym___cdecl] = ACTIONS(2745), - [anon_sym___clrcall] = ACTIONS(2745), - [anon_sym___stdcall] = ACTIONS(2745), - [anon_sym___fastcall] = ACTIONS(2745), - [anon_sym___thiscall] = ACTIONS(2745), - [anon_sym___vectorcall] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_RBRACE] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_static] = ACTIONS(2745), - [anon_sym_register] = ACTIONS(2745), - [anon_sym_inline] = ACTIONS(2745), - [anon_sym_thread_local] = ACTIONS(2745), - [anon_sym_const] = ACTIONS(2745), - [anon_sym_volatile] = ACTIONS(2745), - [anon_sym_restrict] = ACTIONS(2745), - [anon_sym__Atomic] = ACTIONS(2745), - [anon_sym_mutable] = ACTIONS(2745), - [anon_sym_constexpr] = ACTIONS(2745), - [anon_sym_constinit] = ACTIONS(2745), - [anon_sym_consteval] = ACTIONS(2745), - [anon_sym_signed] = ACTIONS(2745), - [anon_sym_unsigned] = ACTIONS(2745), - [anon_sym_long] = ACTIONS(2745), - [anon_sym_short] = ACTIONS(2745), - [sym_primitive_type] = ACTIONS(2745), - [anon_sym_enum] = ACTIONS(2745), - [anon_sym_class] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2745), - [anon_sym_union] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_switch] = ACTIONS(2745), - [anon_sym_case] = ACTIONS(2745), - [anon_sym_default] = ACTIONS(2745), - [anon_sym_while] = ACTIONS(2745), - [anon_sym_do] = ACTIONS(2745), - [anon_sym_for] = ACTIONS(2745), - [anon_sym_return] = ACTIONS(2745), - [anon_sym_break] = ACTIONS(2745), - [anon_sym_continue] = ACTIONS(2745), - [anon_sym_goto] = ACTIONS(2745), - [anon_sym_not] = ACTIONS(2745), - [anon_sym_compl] = ACTIONS(2745), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_sizeof] = ACTIONS(2745), - [sym_number_literal] = ACTIONS(2747), - [anon_sym_L_SQUOTE] = ACTIONS(2747), - [anon_sym_u_SQUOTE] = ACTIONS(2747), - [anon_sym_U_SQUOTE] = ACTIONS(2747), - [anon_sym_u8_SQUOTE] = ACTIONS(2747), - [anon_sym_SQUOTE] = ACTIONS(2747), - [anon_sym_L_DQUOTE] = ACTIONS(2747), - [anon_sym_u_DQUOTE] = ACTIONS(2747), - [anon_sym_U_DQUOTE] = ACTIONS(2747), - [anon_sym_u8_DQUOTE] = ACTIONS(2747), - [anon_sym_DQUOTE] = ACTIONS(2747), - [sym_true] = ACTIONS(2745), - [sym_false] = ACTIONS(2745), - [sym_null] = ACTIONS(2745), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2745), - [anon_sym_decltype] = ACTIONS(2745), - [anon_sym_virtual] = ACTIONS(2745), - [anon_sym_explicit] = ACTIONS(2745), - [anon_sym_typename] = ACTIONS(2745), - [anon_sym_template] = ACTIONS(2745), - [anon_sym_operator] = ACTIONS(2745), - [anon_sym_try] = ACTIONS(2745), - [anon_sym_delete] = ACTIONS(2745), - [anon_sym_throw] = ACTIONS(2745), - [anon_sym_namespace] = ACTIONS(2745), - [anon_sym_using] = ACTIONS(2745), - [anon_sym_static_assert] = ACTIONS(2745), - [anon_sym_concept] = ACTIONS(2745), - [anon_sym_co_return] = ACTIONS(2745), - [anon_sym_co_yield] = ACTIONS(2745), - [anon_sym_R_DQUOTE] = ACTIONS(2747), - [anon_sym_LR_DQUOTE] = ACTIONS(2747), - [anon_sym_uR_DQUOTE] = ACTIONS(2747), - [anon_sym_UR_DQUOTE] = ACTIONS(2747), - [anon_sym_u8R_DQUOTE] = ACTIONS(2747), - [anon_sym_co_await] = ACTIONS(2745), - [anon_sym_new] = ACTIONS(2745), - [anon_sym_requires] = ACTIONS(2745), - [sym_this] = ACTIONS(2745), - [sym_nullptr] = ACTIONS(2745), - }, - [1002] = { - [ts_builtin_sym_end] = ACTIONS(2835), - [sym_identifier] = ACTIONS(2833), - [aux_sym_preproc_include_token1] = ACTIONS(2833), - [aux_sym_preproc_def_token1] = ACTIONS(2833), - [aux_sym_preproc_if_token1] = ACTIONS(2833), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2833), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2833), - [sym_preproc_directive] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(2835), - [anon_sym_BANG] = ACTIONS(2835), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2833), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2833), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_typedef] = ACTIONS(2833), - [anon_sym_extern] = ACTIONS(2833), - [anon_sym___attribute__] = ACTIONS(2833), - [anon_sym_COLON_COLON] = ACTIONS(2835), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2835), - [anon_sym___declspec] = ACTIONS(2833), - [anon_sym___based] = ACTIONS(2833), - [anon_sym___cdecl] = ACTIONS(2833), - [anon_sym___clrcall] = ACTIONS(2833), - [anon_sym___stdcall] = ACTIONS(2833), - [anon_sym___fastcall] = ACTIONS(2833), - [anon_sym___thiscall] = ACTIONS(2833), - [anon_sym___vectorcall] = ACTIONS(2833), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2833), - [anon_sym_static] = ACTIONS(2833), - [anon_sym_register] = ACTIONS(2833), - [anon_sym_inline] = ACTIONS(2833), - [anon_sym_thread_local] = ACTIONS(2833), - [anon_sym_const] = ACTIONS(2833), - [anon_sym_volatile] = ACTIONS(2833), - [anon_sym_restrict] = ACTIONS(2833), - [anon_sym__Atomic] = ACTIONS(2833), - [anon_sym_mutable] = ACTIONS(2833), - [anon_sym_constexpr] = ACTIONS(2833), - [anon_sym_constinit] = ACTIONS(2833), - [anon_sym_consteval] = ACTIONS(2833), - [anon_sym_signed] = ACTIONS(2833), - [anon_sym_unsigned] = ACTIONS(2833), - [anon_sym_long] = ACTIONS(2833), - [anon_sym_short] = ACTIONS(2833), - [sym_primitive_type] = ACTIONS(2833), - [anon_sym_enum] = ACTIONS(2833), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2833), - [anon_sym_union] = ACTIONS(2833), - [anon_sym_if] = ACTIONS(2833), - [anon_sym_switch] = ACTIONS(2833), - [anon_sym_case] = ACTIONS(2833), - [anon_sym_default] = ACTIONS(2833), - [anon_sym_while] = ACTIONS(2833), - [anon_sym_do] = ACTIONS(2833), - [anon_sym_for] = ACTIONS(2833), - [anon_sym_return] = ACTIONS(2833), - [anon_sym_break] = ACTIONS(2833), - [anon_sym_continue] = ACTIONS(2833), - [anon_sym_goto] = ACTIONS(2833), - [anon_sym_not] = ACTIONS(2833), - [anon_sym_compl] = ACTIONS(2833), - [anon_sym_DASH_DASH] = ACTIONS(2835), - [anon_sym_PLUS_PLUS] = ACTIONS(2835), - [anon_sym_sizeof] = ACTIONS(2833), - [sym_number_literal] = ACTIONS(2835), - [anon_sym_L_SQUOTE] = ACTIONS(2835), - [anon_sym_u_SQUOTE] = ACTIONS(2835), - [anon_sym_U_SQUOTE] = ACTIONS(2835), - [anon_sym_u8_SQUOTE] = ACTIONS(2835), - [anon_sym_SQUOTE] = ACTIONS(2835), - [anon_sym_L_DQUOTE] = ACTIONS(2835), - [anon_sym_u_DQUOTE] = ACTIONS(2835), - [anon_sym_U_DQUOTE] = ACTIONS(2835), - [anon_sym_u8_DQUOTE] = ACTIONS(2835), - [anon_sym_DQUOTE] = ACTIONS(2835), - [sym_true] = ACTIONS(2833), - [sym_false] = ACTIONS(2833), - [sym_null] = ACTIONS(2833), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2833), - [anon_sym_decltype] = ACTIONS(2833), - [anon_sym_virtual] = ACTIONS(2833), - [anon_sym_explicit] = ACTIONS(2833), - [anon_sym_typename] = ACTIONS(2833), - [anon_sym_template] = ACTIONS(2833), - [anon_sym_operator] = ACTIONS(2833), - [anon_sym_try] = ACTIONS(2833), - [anon_sym_delete] = ACTIONS(2833), - [anon_sym_throw] = ACTIONS(2833), - [anon_sym_namespace] = ACTIONS(2833), - [anon_sym_using] = ACTIONS(2833), - [anon_sym_static_assert] = ACTIONS(2833), - [anon_sym_concept] = ACTIONS(2833), - [anon_sym_co_return] = ACTIONS(2833), - [anon_sym_co_yield] = ACTIONS(2833), - [anon_sym_R_DQUOTE] = ACTIONS(2835), - [anon_sym_LR_DQUOTE] = ACTIONS(2835), - [anon_sym_uR_DQUOTE] = ACTIONS(2835), - [anon_sym_UR_DQUOTE] = ACTIONS(2835), - [anon_sym_u8R_DQUOTE] = ACTIONS(2835), - [anon_sym_co_await] = ACTIONS(2833), - [anon_sym_new] = ACTIONS(2833), - [anon_sym_requires] = ACTIONS(2833), - [sym_this] = ACTIONS(2833), - [sym_nullptr] = ACTIONS(2833), - }, - [1003] = { - [ts_builtin_sym_end] = ACTIONS(2831), - [sym_identifier] = ACTIONS(2829), - [aux_sym_preproc_include_token1] = ACTIONS(2829), - [aux_sym_preproc_def_token1] = ACTIONS(2829), - [aux_sym_preproc_if_token1] = ACTIONS(2829), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2829), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2829), - [sym_preproc_directive] = ACTIONS(2829), - [anon_sym_LPAREN2] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2829), - [anon_sym_PLUS] = ACTIONS(2829), - [anon_sym_STAR] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2829), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_typedef] = ACTIONS(2829), - [anon_sym_extern] = ACTIONS(2829), - [anon_sym___attribute__] = ACTIONS(2829), - [anon_sym_COLON_COLON] = ACTIONS(2831), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2831), - [anon_sym___declspec] = ACTIONS(2829), - [anon_sym___based] = ACTIONS(2829), - [anon_sym___cdecl] = ACTIONS(2829), - [anon_sym___clrcall] = ACTIONS(2829), - [anon_sym___stdcall] = ACTIONS(2829), - [anon_sym___fastcall] = ACTIONS(2829), - [anon_sym___thiscall] = ACTIONS(2829), - [anon_sym___vectorcall] = ACTIONS(2829), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_static] = ACTIONS(2829), - [anon_sym_register] = ACTIONS(2829), - [anon_sym_inline] = ACTIONS(2829), - [anon_sym_thread_local] = ACTIONS(2829), - [anon_sym_const] = ACTIONS(2829), - [anon_sym_volatile] = ACTIONS(2829), - [anon_sym_restrict] = ACTIONS(2829), - [anon_sym__Atomic] = ACTIONS(2829), - [anon_sym_mutable] = ACTIONS(2829), - [anon_sym_constexpr] = ACTIONS(2829), - [anon_sym_constinit] = ACTIONS(2829), - [anon_sym_consteval] = ACTIONS(2829), - [anon_sym_signed] = ACTIONS(2829), - [anon_sym_unsigned] = ACTIONS(2829), - [anon_sym_long] = ACTIONS(2829), - [anon_sym_short] = ACTIONS(2829), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2829), - [anon_sym_class] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2829), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_if] = ACTIONS(2829), - [anon_sym_switch] = ACTIONS(2829), - [anon_sym_case] = ACTIONS(2829), - [anon_sym_default] = ACTIONS(2829), - [anon_sym_while] = ACTIONS(2829), - [anon_sym_do] = ACTIONS(2829), - [anon_sym_for] = ACTIONS(2829), - [anon_sym_return] = ACTIONS(2829), - [anon_sym_break] = ACTIONS(2829), - [anon_sym_continue] = ACTIONS(2829), - [anon_sym_goto] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2829), - [anon_sym_compl] = ACTIONS(2829), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2829), - [sym_number_literal] = ACTIONS(2831), - [anon_sym_L_SQUOTE] = ACTIONS(2831), - [anon_sym_u_SQUOTE] = ACTIONS(2831), - [anon_sym_U_SQUOTE] = ACTIONS(2831), - [anon_sym_u8_SQUOTE] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2831), - [anon_sym_L_DQUOTE] = ACTIONS(2831), - [anon_sym_u_DQUOTE] = ACTIONS(2831), - [anon_sym_U_DQUOTE] = ACTIONS(2831), - [anon_sym_u8_DQUOTE] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2831), - [sym_true] = ACTIONS(2829), - [sym_false] = ACTIONS(2829), - [sym_null] = ACTIONS(2829), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2829), - [anon_sym_decltype] = ACTIONS(2829), - [anon_sym_virtual] = ACTIONS(2829), - [anon_sym_explicit] = ACTIONS(2829), - [anon_sym_typename] = ACTIONS(2829), - [anon_sym_template] = ACTIONS(2829), - [anon_sym_operator] = ACTIONS(2829), - [anon_sym_try] = ACTIONS(2829), - [anon_sym_delete] = ACTIONS(2829), - [anon_sym_throw] = ACTIONS(2829), - [anon_sym_namespace] = ACTIONS(2829), - [anon_sym_using] = ACTIONS(2829), - [anon_sym_static_assert] = ACTIONS(2829), - [anon_sym_concept] = ACTIONS(2829), - [anon_sym_co_return] = ACTIONS(2829), - [anon_sym_co_yield] = ACTIONS(2829), - [anon_sym_R_DQUOTE] = ACTIONS(2831), - [anon_sym_LR_DQUOTE] = ACTIONS(2831), - [anon_sym_uR_DQUOTE] = ACTIONS(2831), - [anon_sym_UR_DQUOTE] = ACTIONS(2831), - [anon_sym_u8R_DQUOTE] = ACTIONS(2831), - [anon_sym_co_await] = ACTIONS(2829), - [anon_sym_new] = ACTIONS(2829), - [anon_sym_requires] = ACTIONS(2829), - [sym_this] = ACTIONS(2829), - [sym_nullptr] = ACTIONS(2829), - }, - [1004] = { - [sym_identifier] = ACTIONS(2749), - [aux_sym_preproc_include_token1] = ACTIONS(2749), - [aux_sym_preproc_def_token1] = ACTIONS(2749), - [aux_sym_preproc_if_token1] = ACTIONS(2749), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2749), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2749), - [sym_preproc_directive] = ACTIONS(2749), - [anon_sym_LPAREN2] = ACTIONS(2751), - [anon_sym_BANG] = ACTIONS(2751), - [anon_sym_TILDE] = ACTIONS(2751), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_PLUS] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2751), - [anon_sym_AMP_AMP] = ACTIONS(2751), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_SEMI] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2749), - [anon_sym_extern] = ACTIONS(2749), - [anon_sym___attribute__] = ACTIONS(2749), - [anon_sym_COLON_COLON] = ACTIONS(2751), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2751), - [anon_sym___declspec] = ACTIONS(2749), - [anon_sym___based] = ACTIONS(2749), - [anon_sym___cdecl] = ACTIONS(2749), - [anon_sym___clrcall] = ACTIONS(2749), - [anon_sym___stdcall] = ACTIONS(2749), - [anon_sym___fastcall] = ACTIONS(2749), - [anon_sym___thiscall] = ACTIONS(2749), - [anon_sym___vectorcall] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2751), - [anon_sym_RBRACE] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2749), - [anon_sym_static] = ACTIONS(2749), - [anon_sym_register] = ACTIONS(2749), - [anon_sym_inline] = ACTIONS(2749), - [anon_sym_thread_local] = ACTIONS(2749), - [anon_sym_const] = ACTIONS(2749), - [anon_sym_volatile] = ACTIONS(2749), - [anon_sym_restrict] = ACTIONS(2749), - [anon_sym__Atomic] = ACTIONS(2749), - [anon_sym_mutable] = ACTIONS(2749), - [anon_sym_constexpr] = ACTIONS(2749), - [anon_sym_constinit] = ACTIONS(2749), - [anon_sym_consteval] = ACTIONS(2749), - [anon_sym_signed] = ACTIONS(2749), - [anon_sym_unsigned] = ACTIONS(2749), - [anon_sym_long] = ACTIONS(2749), - [anon_sym_short] = ACTIONS(2749), - [sym_primitive_type] = ACTIONS(2749), - [anon_sym_enum] = ACTIONS(2749), - [anon_sym_class] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2749), - [anon_sym_union] = ACTIONS(2749), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_switch] = ACTIONS(2749), - [anon_sym_case] = ACTIONS(2749), - [anon_sym_default] = ACTIONS(2749), - [anon_sym_while] = ACTIONS(2749), - [anon_sym_do] = ACTIONS(2749), - [anon_sym_for] = ACTIONS(2749), - [anon_sym_return] = ACTIONS(2749), - [anon_sym_break] = ACTIONS(2749), - [anon_sym_continue] = ACTIONS(2749), - [anon_sym_goto] = ACTIONS(2749), - [anon_sym_not] = ACTIONS(2749), - [anon_sym_compl] = ACTIONS(2749), - [anon_sym_DASH_DASH] = ACTIONS(2751), - [anon_sym_PLUS_PLUS] = ACTIONS(2751), - [anon_sym_sizeof] = ACTIONS(2749), - [sym_number_literal] = ACTIONS(2751), - [anon_sym_L_SQUOTE] = ACTIONS(2751), - [anon_sym_u_SQUOTE] = ACTIONS(2751), - [anon_sym_U_SQUOTE] = ACTIONS(2751), - [anon_sym_u8_SQUOTE] = ACTIONS(2751), - [anon_sym_SQUOTE] = ACTIONS(2751), - [anon_sym_L_DQUOTE] = ACTIONS(2751), - [anon_sym_u_DQUOTE] = ACTIONS(2751), - [anon_sym_U_DQUOTE] = ACTIONS(2751), - [anon_sym_u8_DQUOTE] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(2751), - [sym_true] = ACTIONS(2749), - [sym_false] = ACTIONS(2749), - [sym_null] = ACTIONS(2749), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2749), - [anon_sym_decltype] = ACTIONS(2749), - [anon_sym_virtual] = ACTIONS(2749), - [anon_sym_explicit] = ACTIONS(2749), - [anon_sym_typename] = ACTIONS(2749), - [anon_sym_template] = ACTIONS(2749), - [anon_sym_operator] = ACTIONS(2749), - [anon_sym_try] = ACTIONS(2749), - [anon_sym_delete] = ACTIONS(2749), - [anon_sym_throw] = ACTIONS(2749), - [anon_sym_namespace] = ACTIONS(2749), - [anon_sym_using] = ACTIONS(2749), - [anon_sym_static_assert] = ACTIONS(2749), - [anon_sym_concept] = ACTIONS(2749), - [anon_sym_co_return] = ACTIONS(2749), - [anon_sym_co_yield] = ACTIONS(2749), - [anon_sym_R_DQUOTE] = ACTIONS(2751), - [anon_sym_LR_DQUOTE] = ACTIONS(2751), - [anon_sym_uR_DQUOTE] = ACTIONS(2751), - [anon_sym_UR_DQUOTE] = ACTIONS(2751), - [anon_sym_u8R_DQUOTE] = ACTIONS(2751), - [anon_sym_co_await] = ACTIONS(2749), - [anon_sym_new] = ACTIONS(2749), - [anon_sym_requires] = ACTIONS(2749), - [sym_this] = ACTIONS(2749), - [sym_nullptr] = ACTIONS(2749), - }, - [1005] = { - [ts_builtin_sym_end] = ACTIONS(2827), - [sym_identifier] = ACTIONS(2825), - [aux_sym_preproc_include_token1] = ACTIONS(2825), - [aux_sym_preproc_def_token1] = ACTIONS(2825), - [aux_sym_preproc_if_token1] = ACTIONS(2825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2825), - [sym_preproc_directive] = ACTIONS(2825), - [anon_sym_LPAREN2] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2825), - [anon_sym_PLUS] = ACTIONS(2825), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_AMP_AMP] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2825), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_typedef] = ACTIONS(2825), - [anon_sym_extern] = ACTIONS(2825), - [anon_sym___attribute__] = ACTIONS(2825), - [anon_sym_COLON_COLON] = ACTIONS(2827), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2827), - [anon_sym___declspec] = ACTIONS(2825), - [anon_sym___based] = ACTIONS(2825), - [anon_sym___cdecl] = ACTIONS(2825), - [anon_sym___clrcall] = ACTIONS(2825), - [anon_sym___stdcall] = ACTIONS(2825), - [anon_sym___fastcall] = ACTIONS(2825), - [anon_sym___thiscall] = ACTIONS(2825), - [anon_sym___vectorcall] = ACTIONS(2825), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(2825), - [anon_sym_register] = ACTIONS(2825), - [anon_sym_inline] = ACTIONS(2825), - [anon_sym_thread_local] = ACTIONS(2825), - [anon_sym_const] = ACTIONS(2825), - [anon_sym_volatile] = ACTIONS(2825), - [anon_sym_restrict] = ACTIONS(2825), - [anon_sym__Atomic] = ACTIONS(2825), - [anon_sym_mutable] = ACTIONS(2825), - [anon_sym_constexpr] = ACTIONS(2825), - [anon_sym_constinit] = ACTIONS(2825), - [anon_sym_consteval] = ACTIONS(2825), - [anon_sym_signed] = ACTIONS(2825), - [anon_sym_unsigned] = ACTIONS(2825), - [anon_sym_long] = ACTIONS(2825), - [anon_sym_short] = ACTIONS(2825), - [sym_primitive_type] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2825), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2825), - [anon_sym_union] = ACTIONS(2825), - [anon_sym_if] = ACTIONS(2825), - [anon_sym_switch] = ACTIONS(2825), - [anon_sym_case] = ACTIONS(2825), - [anon_sym_default] = ACTIONS(2825), - [anon_sym_while] = ACTIONS(2825), - [anon_sym_do] = ACTIONS(2825), - [anon_sym_for] = ACTIONS(2825), - [anon_sym_return] = ACTIONS(2825), - [anon_sym_break] = ACTIONS(2825), - [anon_sym_continue] = ACTIONS(2825), - [anon_sym_goto] = ACTIONS(2825), - [anon_sym_not] = ACTIONS(2825), - [anon_sym_compl] = ACTIONS(2825), - [anon_sym_DASH_DASH] = ACTIONS(2827), - [anon_sym_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_sizeof] = ACTIONS(2825), - [sym_number_literal] = ACTIONS(2827), - [anon_sym_L_SQUOTE] = ACTIONS(2827), - [anon_sym_u_SQUOTE] = ACTIONS(2827), - [anon_sym_U_SQUOTE] = ACTIONS(2827), - [anon_sym_u8_SQUOTE] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2827), - [anon_sym_L_DQUOTE] = ACTIONS(2827), - [anon_sym_u_DQUOTE] = ACTIONS(2827), - [anon_sym_U_DQUOTE] = ACTIONS(2827), - [anon_sym_u8_DQUOTE] = ACTIONS(2827), - [anon_sym_DQUOTE] = ACTIONS(2827), - [sym_true] = ACTIONS(2825), - [sym_false] = ACTIONS(2825), - [sym_null] = ACTIONS(2825), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2825), - [anon_sym_decltype] = ACTIONS(2825), - [anon_sym_virtual] = ACTIONS(2825), - [anon_sym_explicit] = ACTIONS(2825), - [anon_sym_typename] = ACTIONS(2825), - [anon_sym_template] = ACTIONS(2825), - [anon_sym_operator] = ACTIONS(2825), - [anon_sym_try] = ACTIONS(2825), - [anon_sym_delete] = ACTIONS(2825), - [anon_sym_throw] = ACTIONS(2825), - [anon_sym_namespace] = ACTIONS(2825), - [anon_sym_using] = ACTIONS(2825), - [anon_sym_static_assert] = ACTIONS(2825), - [anon_sym_concept] = ACTIONS(2825), - [anon_sym_co_return] = ACTIONS(2825), - [anon_sym_co_yield] = ACTIONS(2825), - [anon_sym_R_DQUOTE] = ACTIONS(2827), - [anon_sym_LR_DQUOTE] = ACTIONS(2827), - [anon_sym_uR_DQUOTE] = ACTIONS(2827), - [anon_sym_UR_DQUOTE] = ACTIONS(2827), - [anon_sym_u8R_DQUOTE] = ACTIONS(2827), - [anon_sym_co_await] = ACTIONS(2825), - [anon_sym_new] = ACTIONS(2825), - [anon_sym_requires] = ACTIONS(2825), - [sym_this] = ACTIONS(2825), - [sym_nullptr] = ACTIONS(2825), - }, - [1006] = { - [ts_builtin_sym_end] = ACTIONS(2823), - [sym_identifier] = ACTIONS(2821), - [aux_sym_preproc_include_token1] = ACTIONS(2821), - [aux_sym_preproc_def_token1] = ACTIONS(2821), - [aux_sym_preproc_if_token1] = ACTIONS(2821), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2821), - [sym_preproc_directive] = ACTIONS(2821), - [anon_sym_LPAREN2] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2821), - [anon_sym_PLUS] = ACTIONS(2821), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2821), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym_typedef] = ACTIONS(2821), - [anon_sym_extern] = ACTIONS(2821), - [anon_sym___attribute__] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2821), - [anon_sym___based] = ACTIONS(2821), - [anon_sym___cdecl] = ACTIONS(2821), - [anon_sym___clrcall] = ACTIONS(2821), - [anon_sym___stdcall] = ACTIONS(2821), - [anon_sym___fastcall] = ACTIONS(2821), - [anon_sym___thiscall] = ACTIONS(2821), - [anon_sym___vectorcall] = ACTIONS(2821), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2821), - [anon_sym_static] = ACTIONS(2821), - [anon_sym_register] = ACTIONS(2821), - [anon_sym_inline] = ACTIONS(2821), - [anon_sym_thread_local] = ACTIONS(2821), - [anon_sym_const] = ACTIONS(2821), - [anon_sym_volatile] = ACTIONS(2821), - [anon_sym_restrict] = ACTIONS(2821), - [anon_sym__Atomic] = ACTIONS(2821), - [anon_sym_mutable] = ACTIONS(2821), - [anon_sym_constexpr] = ACTIONS(2821), - [anon_sym_constinit] = ACTIONS(2821), - [anon_sym_consteval] = ACTIONS(2821), - [anon_sym_signed] = ACTIONS(2821), - [anon_sym_unsigned] = ACTIONS(2821), - [anon_sym_long] = ACTIONS(2821), - [anon_sym_short] = ACTIONS(2821), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2821), - [anon_sym_class] = ACTIONS(2821), - [anon_sym_struct] = ACTIONS(2821), - [anon_sym_union] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2821), - [anon_sym_switch] = ACTIONS(2821), - [anon_sym_case] = ACTIONS(2821), - [anon_sym_default] = ACTIONS(2821), - [anon_sym_while] = ACTIONS(2821), - [anon_sym_do] = ACTIONS(2821), - [anon_sym_for] = ACTIONS(2821), - [anon_sym_return] = ACTIONS(2821), - [anon_sym_break] = ACTIONS(2821), - [anon_sym_continue] = ACTIONS(2821), - [anon_sym_goto] = ACTIONS(2821), - [anon_sym_not] = ACTIONS(2821), - [anon_sym_compl] = ACTIONS(2821), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2821), - [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(2821), - [sym_false] = ACTIONS(2821), - [sym_null] = ACTIONS(2821), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2821), - [anon_sym_decltype] = ACTIONS(2821), - [anon_sym_virtual] = ACTIONS(2821), - [anon_sym_explicit] = ACTIONS(2821), - [anon_sym_typename] = ACTIONS(2821), - [anon_sym_template] = ACTIONS(2821), - [anon_sym_operator] = ACTIONS(2821), - [anon_sym_try] = ACTIONS(2821), - [anon_sym_delete] = ACTIONS(2821), - [anon_sym_throw] = ACTIONS(2821), - [anon_sym_namespace] = ACTIONS(2821), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_static_assert] = ACTIONS(2821), - [anon_sym_concept] = ACTIONS(2821), - [anon_sym_co_return] = ACTIONS(2821), - [anon_sym_co_yield] = ACTIONS(2821), - [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(2821), - [anon_sym_new] = ACTIONS(2821), - [anon_sym_requires] = ACTIONS(2821), - [sym_this] = ACTIONS(2821), - [sym_nullptr] = ACTIONS(2821), - }, - [1007] = { - [sym_identifier] = ACTIONS(2745), - [aux_sym_preproc_include_token1] = ACTIONS(2745), - [aux_sym_preproc_def_token1] = ACTIONS(2745), - [aux_sym_preproc_if_token1] = ACTIONS(2745), - [aux_sym_preproc_if_token2] = ACTIONS(2745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2745), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2745), - [sym_preproc_directive] = ACTIONS(2745), - [anon_sym_LPAREN2] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_AMP_AMP] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2745), - [anon_sym_extern] = ACTIONS(2745), - [anon_sym___attribute__] = ACTIONS(2745), - [anon_sym_COLON_COLON] = ACTIONS(2747), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2747), - [anon_sym___declspec] = ACTIONS(2745), - [anon_sym___based] = ACTIONS(2745), - [anon_sym___cdecl] = ACTIONS(2745), - [anon_sym___clrcall] = ACTIONS(2745), - [anon_sym___stdcall] = ACTIONS(2745), - [anon_sym___fastcall] = ACTIONS(2745), - [anon_sym___thiscall] = ACTIONS(2745), - [anon_sym___vectorcall] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_static] = ACTIONS(2745), - [anon_sym_register] = ACTIONS(2745), - [anon_sym_inline] = ACTIONS(2745), - [anon_sym_thread_local] = ACTIONS(2745), - [anon_sym_const] = ACTIONS(2745), - [anon_sym_volatile] = ACTIONS(2745), - [anon_sym_restrict] = ACTIONS(2745), - [anon_sym__Atomic] = ACTIONS(2745), - [anon_sym_mutable] = ACTIONS(2745), - [anon_sym_constexpr] = ACTIONS(2745), - [anon_sym_constinit] = ACTIONS(2745), - [anon_sym_consteval] = ACTIONS(2745), - [anon_sym_signed] = ACTIONS(2745), - [anon_sym_unsigned] = ACTIONS(2745), - [anon_sym_long] = ACTIONS(2745), - [anon_sym_short] = ACTIONS(2745), - [sym_primitive_type] = ACTIONS(2745), - [anon_sym_enum] = ACTIONS(2745), - [anon_sym_class] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2745), - [anon_sym_union] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_switch] = ACTIONS(2745), - [anon_sym_case] = ACTIONS(2745), - [anon_sym_default] = ACTIONS(2745), - [anon_sym_while] = ACTIONS(2745), - [anon_sym_do] = ACTIONS(2745), - [anon_sym_for] = ACTIONS(2745), - [anon_sym_return] = ACTIONS(2745), - [anon_sym_break] = ACTIONS(2745), - [anon_sym_continue] = ACTIONS(2745), - [anon_sym_goto] = ACTIONS(2745), - [anon_sym_not] = ACTIONS(2745), - [anon_sym_compl] = ACTIONS(2745), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_sizeof] = ACTIONS(2745), - [sym_number_literal] = ACTIONS(2747), - [anon_sym_L_SQUOTE] = ACTIONS(2747), - [anon_sym_u_SQUOTE] = ACTIONS(2747), - [anon_sym_U_SQUOTE] = ACTIONS(2747), - [anon_sym_u8_SQUOTE] = ACTIONS(2747), - [anon_sym_SQUOTE] = ACTIONS(2747), - [anon_sym_L_DQUOTE] = ACTIONS(2747), - [anon_sym_u_DQUOTE] = ACTIONS(2747), - [anon_sym_U_DQUOTE] = ACTIONS(2747), - [anon_sym_u8_DQUOTE] = ACTIONS(2747), - [anon_sym_DQUOTE] = ACTIONS(2747), - [sym_true] = ACTIONS(2745), - [sym_false] = ACTIONS(2745), - [sym_null] = ACTIONS(2745), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2745), - [anon_sym_decltype] = ACTIONS(2745), - [anon_sym_virtual] = ACTIONS(2745), - [anon_sym_explicit] = ACTIONS(2745), - [anon_sym_typename] = ACTIONS(2745), - [anon_sym_template] = ACTIONS(2745), - [anon_sym_operator] = ACTIONS(2745), - [anon_sym_try] = ACTIONS(2745), - [anon_sym_delete] = ACTIONS(2745), - [anon_sym_throw] = ACTIONS(2745), - [anon_sym_namespace] = ACTIONS(2745), - [anon_sym_using] = ACTIONS(2745), - [anon_sym_static_assert] = ACTIONS(2745), - [anon_sym_concept] = ACTIONS(2745), - [anon_sym_co_return] = ACTIONS(2745), - [anon_sym_co_yield] = ACTIONS(2745), - [anon_sym_R_DQUOTE] = ACTIONS(2747), - [anon_sym_LR_DQUOTE] = ACTIONS(2747), - [anon_sym_uR_DQUOTE] = ACTIONS(2747), - [anon_sym_UR_DQUOTE] = ACTIONS(2747), - [anon_sym_u8R_DQUOTE] = ACTIONS(2747), - [anon_sym_co_await] = ACTIONS(2745), - [anon_sym_new] = ACTIONS(2745), - [anon_sym_requires] = ACTIONS(2745), - [sym_this] = ACTIONS(2745), - [sym_nullptr] = ACTIONS(2745), - }, - [1008] = { - [ts_builtin_sym_end] = ACTIONS(2803), - [sym_identifier] = ACTIONS(2801), - [aux_sym_preproc_include_token1] = ACTIONS(2801), - [aux_sym_preproc_def_token1] = ACTIONS(2801), - [aux_sym_preproc_if_token1] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), - [sym_preproc_directive] = ACTIONS(2801), - [anon_sym_LPAREN2] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_AMP_AMP] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2801), - [anon_sym_extern] = ACTIONS(2801), - [anon_sym___attribute__] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), - [anon_sym___declspec] = ACTIONS(2801), - [anon_sym___based] = ACTIONS(2801), - [anon_sym___cdecl] = ACTIONS(2801), - [anon_sym___clrcall] = ACTIONS(2801), - [anon_sym___stdcall] = ACTIONS(2801), - [anon_sym___fastcall] = ACTIONS(2801), - [anon_sym___thiscall] = ACTIONS(2801), - [anon_sym___vectorcall] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_register] = ACTIONS(2801), - [anon_sym_inline] = ACTIONS(2801), - [anon_sym_thread_local] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_volatile] = ACTIONS(2801), - [anon_sym_restrict] = ACTIONS(2801), - [anon_sym__Atomic] = ACTIONS(2801), - [anon_sym_mutable] = ACTIONS(2801), - [anon_sym_constexpr] = ACTIONS(2801), - [anon_sym_constinit] = ACTIONS(2801), - [anon_sym_consteval] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2801), - [anon_sym_unsigned] = ACTIONS(2801), - [anon_sym_long] = ACTIONS(2801), - [anon_sym_short] = ACTIONS(2801), - [sym_primitive_type] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_switch] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_do] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_goto] = ACTIONS(2801), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2803), - [anon_sym_PLUS_PLUS] = ACTIONS(2803), - [anon_sym_sizeof] = ACTIONS(2801), - [sym_number_literal] = ACTIONS(2803), - [anon_sym_L_SQUOTE] = ACTIONS(2803), - [anon_sym_u_SQUOTE] = ACTIONS(2803), - [anon_sym_U_SQUOTE] = ACTIONS(2803), - [anon_sym_u8_SQUOTE] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_L_DQUOTE] = ACTIONS(2803), - [anon_sym_u_DQUOTE] = ACTIONS(2803), - [anon_sym_U_DQUOTE] = ACTIONS(2803), - [anon_sym_u8_DQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_null] = ACTIONS(2801), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2801), - [anon_sym_decltype] = ACTIONS(2801), - [anon_sym_virtual] = ACTIONS(2801), - [anon_sym_explicit] = ACTIONS(2801), - [anon_sym_typename] = ACTIONS(2801), - [anon_sym_template] = ACTIONS(2801), - [anon_sym_operator] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [anon_sym_delete] = ACTIONS(2801), - [anon_sym_throw] = ACTIONS(2801), - [anon_sym_namespace] = ACTIONS(2801), - [anon_sym_using] = ACTIONS(2801), - [anon_sym_static_assert] = ACTIONS(2801), - [anon_sym_concept] = ACTIONS(2801), - [anon_sym_co_return] = ACTIONS(2801), - [anon_sym_co_yield] = ACTIONS(2801), - [anon_sym_R_DQUOTE] = ACTIONS(2803), - [anon_sym_LR_DQUOTE] = ACTIONS(2803), - [anon_sym_uR_DQUOTE] = ACTIONS(2803), - [anon_sym_UR_DQUOTE] = ACTIONS(2803), - [anon_sym_u8R_DQUOTE] = ACTIONS(2803), - [anon_sym_co_await] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_requires] = ACTIONS(2801), - [sym_this] = ACTIONS(2801), - [sym_nullptr] = ACTIONS(2801), - }, - [1009] = { - [ts_builtin_sym_end] = ACTIONS(2655), - [sym_identifier] = ACTIONS(2653), - [aux_sym_preproc_include_token1] = ACTIONS(2653), - [aux_sym_preproc_def_token1] = ACTIONS(2653), - [aux_sym_preproc_if_token1] = ACTIONS(2653), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2653), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2653), - [sym_preproc_directive] = ACTIONS(2653), - [anon_sym_LPAREN2] = ACTIONS(2655), - [anon_sym_BANG] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2655), - [anon_sym_AMP_AMP] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_SEMI] = ACTIONS(2655), - [anon_sym_typedef] = ACTIONS(2653), - [anon_sym_extern] = ACTIONS(2653), - [anon_sym___attribute__] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2655), - [anon_sym___declspec] = ACTIONS(2653), - [anon_sym___based] = ACTIONS(2653), - [anon_sym___cdecl] = ACTIONS(2653), - [anon_sym___clrcall] = ACTIONS(2653), - [anon_sym___stdcall] = ACTIONS(2653), - [anon_sym___fastcall] = ACTIONS(2653), - [anon_sym___thiscall] = ACTIONS(2653), - [anon_sym___vectorcall] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_static] = ACTIONS(2653), - [anon_sym_register] = ACTIONS(2653), - [anon_sym_inline] = ACTIONS(2653), - [anon_sym_thread_local] = ACTIONS(2653), - [anon_sym_const] = ACTIONS(2653), - [anon_sym_volatile] = ACTIONS(2653), - [anon_sym_restrict] = ACTIONS(2653), - [anon_sym__Atomic] = ACTIONS(2653), - [anon_sym_mutable] = ACTIONS(2653), - [anon_sym_constexpr] = ACTIONS(2653), - [anon_sym_constinit] = ACTIONS(2653), - [anon_sym_consteval] = ACTIONS(2653), - [anon_sym_signed] = ACTIONS(2653), - [anon_sym_unsigned] = ACTIONS(2653), - [anon_sym_long] = ACTIONS(2653), - [anon_sym_short] = ACTIONS(2653), - [sym_primitive_type] = ACTIONS(2653), - [anon_sym_enum] = ACTIONS(2653), - [anon_sym_class] = ACTIONS(2653), - [anon_sym_struct] = ACTIONS(2653), - [anon_sym_union] = ACTIONS(2653), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [anon_sym_case] = ACTIONS(2653), - [anon_sym_default] = ACTIONS(2653), - [anon_sym_while] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2653), - [anon_sym_return] = ACTIONS(2653), - [anon_sym_break] = ACTIONS(2653), - [anon_sym_continue] = ACTIONS(2653), - [anon_sym_goto] = ACTIONS(2653), - [anon_sym_not] = ACTIONS(2653), - [anon_sym_compl] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2653), - [sym_number_literal] = ACTIONS(2655), - [anon_sym_L_SQUOTE] = ACTIONS(2655), - [anon_sym_u_SQUOTE] = ACTIONS(2655), - [anon_sym_U_SQUOTE] = ACTIONS(2655), - [anon_sym_u8_SQUOTE] = ACTIONS(2655), - [anon_sym_SQUOTE] = ACTIONS(2655), - [anon_sym_L_DQUOTE] = ACTIONS(2655), - [anon_sym_u_DQUOTE] = ACTIONS(2655), - [anon_sym_U_DQUOTE] = ACTIONS(2655), - [anon_sym_u8_DQUOTE] = ACTIONS(2655), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym_true] = ACTIONS(2653), - [sym_false] = ACTIONS(2653), - [sym_null] = ACTIONS(2653), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2653), - [anon_sym_decltype] = ACTIONS(2653), - [anon_sym_virtual] = ACTIONS(2653), - [anon_sym_explicit] = ACTIONS(2653), - [anon_sym_typename] = ACTIONS(2653), - [anon_sym_template] = ACTIONS(2653), - [anon_sym_operator] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_delete] = ACTIONS(2653), - [anon_sym_throw] = ACTIONS(2653), - [anon_sym_namespace] = ACTIONS(2653), - [anon_sym_using] = ACTIONS(2653), - [anon_sym_static_assert] = ACTIONS(2653), - [anon_sym_concept] = ACTIONS(2653), - [anon_sym_co_return] = ACTIONS(2653), - [anon_sym_co_yield] = ACTIONS(2653), - [anon_sym_R_DQUOTE] = ACTIONS(2655), - [anon_sym_LR_DQUOTE] = ACTIONS(2655), - [anon_sym_uR_DQUOTE] = ACTIONS(2655), - [anon_sym_UR_DQUOTE] = ACTIONS(2655), - [anon_sym_u8R_DQUOTE] = ACTIONS(2655), - [anon_sym_co_await] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2653), - [anon_sym_requires] = ACTIONS(2653), - [sym_this] = ACTIONS(2653), - [sym_nullptr] = ACTIONS(2653), - }, - [1010] = { - [sym_identifier] = ACTIONS(2741), - [aux_sym_preproc_include_token1] = ACTIONS(2741), - [aux_sym_preproc_def_token1] = ACTIONS(2741), - [aux_sym_preproc_if_token1] = ACTIONS(2741), - [aux_sym_preproc_if_token2] = ACTIONS(2741), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2741), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2741), - [sym_preproc_directive] = ACTIONS(2741), - [anon_sym_LPAREN2] = ACTIONS(2743), - [anon_sym_BANG] = ACTIONS(2743), - [anon_sym_TILDE] = ACTIONS(2743), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_AMP_AMP] = ACTIONS(2743), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_SEMI] = ACTIONS(2743), - [anon_sym_typedef] = ACTIONS(2741), - [anon_sym_extern] = ACTIONS(2741), - [anon_sym___attribute__] = ACTIONS(2741), - [anon_sym_COLON_COLON] = ACTIONS(2743), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2743), - [anon_sym___declspec] = ACTIONS(2741), - [anon_sym___based] = ACTIONS(2741), - [anon_sym___cdecl] = ACTIONS(2741), - [anon_sym___clrcall] = ACTIONS(2741), - [anon_sym___stdcall] = ACTIONS(2741), - [anon_sym___fastcall] = ACTIONS(2741), - [anon_sym___thiscall] = ACTIONS(2741), - [anon_sym___vectorcall] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2741), - [anon_sym_static] = ACTIONS(2741), - [anon_sym_register] = ACTIONS(2741), - [anon_sym_inline] = ACTIONS(2741), - [anon_sym_thread_local] = ACTIONS(2741), - [anon_sym_const] = ACTIONS(2741), - [anon_sym_volatile] = ACTIONS(2741), - [anon_sym_restrict] = ACTIONS(2741), - [anon_sym__Atomic] = ACTIONS(2741), - [anon_sym_mutable] = ACTIONS(2741), - [anon_sym_constexpr] = ACTIONS(2741), - [anon_sym_constinit] = ACTIONS(2741), - [anon_sym_consteval] = ACTIONS(2741), - [anon_sym_signed] = ACTIONS(2741), - [anon_sym_unsigned] = ACTIONS(2741), - [anon_sym_long] = ACTIONS(2741), - [anon_sym_short] = ACTIONS(2741), - [sym_primitive_type] = ACTIONS(2741), - [anon_sym_enum] = ACTIONS(2741), - [anon_sym_class] = ACTIONS(2741), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_union] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_switch] = ACTIONS(2741), - [anon_sym_case] = ACTIONS(2741), - [anon_sym_default] = ACTIONS(2741), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_return] = ACTIONS(2741), - [anon_sym_break] = ACTIONS(2741), - [anon_sym_continue] = ACTIONS(2741), - [anon_sym_goto] = ACTIONS(2741), - [anon_sym_not] = ACTIONS(2741), - [anon_sym_compl] = ACTIONS(2741), - [anon_sym_DASH_DASH] = ACTIONS(2743), - [anon_sym_PLUS_PLUS] = ACTIONS(2743), - [anon_sym_sizeof] = ACTIONS(2741), - [sym_number_literal] = ACTIONS(2743), - [anon_sym_L_SQUOTE] = ACTIONS(2743), - [anon_sym_u_SQUOTE] = ACTIONS(2743), - [anon_sym_U_SQUOTE] = ACTIONS(2743), - [anon_sym_u8_SQUOTE] = ACTIONS(2743), - [anon_sym_SQUOTE] = ACTIONS(2743), - [anon_sym_L_DQUOTE] = ACTIONS(2743), - [anon_sym_u_DQUOTE] = ACTIONS(2743), - [anon_sym_U_DQUOTE] = ACTIONS(2743), - [anon_sym_u8_DQUOTE] = ACTIONS(2743), - [anon_sym_DQUOTE] = ACTIONS(2743), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_null] = ACTIONS(2741), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2741), - [anon_sym_decltype] = ACTIONS(2741), - [anon_sym_virtual] = ACTIONS(2741), - [anon_sym_explicit] = ACTIONS(2741), - [anon_sym_typename] = ACTIONS(2741), - [anon_sym_template] = ACTIONS(2741), - [anon_sym_operator] = ACTIONS(2741), - [anon_sym_try] = ACTIONS(2741), - [anon_sym_delete] = ACTIONS(2741), - [anon_sym_throw] = ACTIONS(2741), - [anon_sym_namespace] = ACTIONS(2741), - [anon_sym_using] = ACTIONS(2741), - [anon_sym_static_assert] = ACTIONS(2741), - [anon_sym_concept] = ACTIONS(2741), - [anon_sym_co_return] = ACTIONS(2741), - [anon_sym_co_yield] = ACTIONS(2741), - [anon_sym_R_DQUOTE] = ACTIONS(2743), - [anon_sym_LR_DQUOTE] = ACTIONS(2743), - [anon_sym_uR_DQUOTE] = ACTIONS(2743), - [anon_sym_UR_DQUOTE] = ACTIONS(2743), - [anon_sym_u8R_DQUOTE] = ACTIONS(2743), - [anon_sym_co_await] = ACTIONS(2741), - [anon_sym_new] = ACTIONS(2741), - [anon_sym_requires] = ACTIONS(2741), - [sym_this] = ACTIONS(2741), - [sym_nullptr] = ACTIONS(2741), - }, - [1011] = { - [ts_builtin_sym_end] = ACTIONS(2799), - [sym_identifier] = ACTIONS(2797), - [aux_sym_preproc_include_token1] = ACTIONS(2797), - [aux_sym_preproc_def_token1] = ACTIONS(2797), - [aux_sym_preproc_if_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [sym_preproc_directive] = ACTIONS(2797), - [anon_sym_LPAREN2] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_AMP_AMP] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2797), - [anon_sym_extern] = ACTIONS(2797), - [anon_sym___attribute__] = ACTIONS(2797), - [anon_sym_COLON_COLON] = ACTIONS(2799), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), - [anon_sym___declspec] = ACTIONS(2797), - [anon_sym___based] = ACTIONS(2797), - [anon_sym___cdecl] = ACTIONS(2797), - [anon_sym___clrcall] = ACTIONS(2797), - [anon_sym___stdcall] = ACTIONS(2797), - [anon_sym___fastcall] = ACTIONS(2797), - [anon_sym___thiscall] = ACTIONS(2797), - [anon_sym___vectorcall] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2797), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_register] = ACTIONS(2797), - [anon_sym_inline] = ACTIONS(2797), - [anon_sym_thread_local] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_volatile] = ACTIONS(2797), - [anon_sym_restrict] = ACTIONS(2797), - [anon_sym__Atomic] = ACTIONS(2797), - [anon_sym_mutable] = ACTIONS(2797), - [anon_sym_constexpr] = ACTIONS(2797), - [anon_sym_constinit] = ACTIONS(2797), - [anon_sym_consteval] = ACTIONS(2797), - [anon_sym_signed] = ACTIONS(2797), - [anon_sym_unsigned] = ACTIONS(2797), - [anon_sym_long] = ACTIONS(2797), - [anon_sym_short] = ACTIONS(2797), - [sym_primitive_type] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), - [anon_sym_class] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_union] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_switch] = ACTIONS(2797), - [anon_sym_case] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_do] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_goto] = ACTIONS(2797), - [anon_sym_not] = ACTIONS(2797), - [anon_sym_compl] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_sizeof] = ACTIONS(2797), - [sym_number_literal] = ACTIONS(2799), - [anon_sym_L_SQUOTE] = ACTIONS(2799), - [anon_sym_u_SQUOTE] = ACTIONS(2799), - [anon_sym_U_SQUOTE] = ACTIONS(2799), - [anon_sym_u8_SQUOTE] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2799), - [anon_sym_L_DQUOTE] = ACTIONS(2799), - [anon_sym_u_DQUOTE] = ACTIONS(2799), - [anon_sym_U_DQUOTE] = ACTIONS(2799), - [anon_sym_u8_DQUOTE] = ACTIONS(2799), - [anon_sym_DQUOTE] = ACTIONS(2799), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [sym_null] = ACTIONS(2797), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2797), - [anon_sym_decltype] = ACTIONS(2797), - [anon_sym_virtual] = ACTIONS(2797), - [anon_sym_explicit] = ACTIONS(2797), - [anon_sym_typename] = ACTIONS(2797), - [anon_sym_template] = ACTIONS(2797), - [anon_sym_operator] = ACTIONS(2797), - [anon_sym_try] = ACTIONS(2797), - [anon_sym_delete] = ACTIONS(2797), - [anon_sym_throw] = ACTIONS(2797), - [anon_sym_namespace] = ACTIONS(2797), - [anon_sym_using] = ACTIONS(2797), - [anon_sym_static_assert] = ACTIONS(2797), - [anon_sym_concept] = ACTIONS(2797), - [anon_sym_co_return] = ACTIONS(2797), - [anon_sym_co_yield] = ACTIONS(2797), - [anon_sym_R_DQUOTE] = ACTIONS(2799), - [anon_sym_LR_DQUOTE] = ACTIONS(2799), - [anon_sym_uR_DQUOTE] = ACTIONS(2799), - [anon_sym_UR_DQUOTE] = ACTIONS(2799), - [anon_sym_u8R_DQUOTE] = ACTIONS(2799), - [anon_sym_co_await] = ACTIONS(2797), - [anon_sym_new] = ACTIONS(2797), - [anon_sym_requires] = ACTIONS(2797), - [sym_this] = ACTIONS(2797), - [sym_nullptr] = ACTIONS(2797), - }, - [1012] = { - [sym_identifier] = ACTIONS(2725), - [aux_sym_preproc_include_token1] = ACTIONS(2725), - [aux_sym_preproc_def_token1] = ACTIONS(2725), - [aux_sym_preproc_if_token1] = ACTIONS(2725), - [aux_sym_preproc_if_token2] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), - [sym_preproc_directive] = ACTIONS(2725), - [anon_sym_LPAREN2] = ACTIONS(2727), - [anon_sym_BANG] = ACTIONS(2727), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_AMP_AMP] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2725), - [anon_sym_extern] = ACTIONS(2725), - [anon_sym___attribute__] = ACTIONS(2725), - [anon_sym_COLON_COLON] = ACTIONS(2727), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), - [anon_sym___declspec] = ACTIONS(2725), - [anon_sym___based] = ACTIONS(2725), - [anon_sym___cdecl] = ACTIONS(2725), - [anon_sym___clrcall] = ACTIONS(2725), - [anon_sym___stdcall] = ACTIONS(2725), - [anon_sym___fastcall] = ACTIONS(2725), - [anon_sym___thiscall] = ACTIONS(2725), - [anon_sym___vectorcall] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_register] = ACTIONS(2725), - [anon_sym_inline] = ACTIONS(2725), - [anon_sym_thread_local] = ACTIONS(2725), - [anon_sym_const] = ACTIONS(2725), - [anon_sym_volatile] = ACTIONS(2725), - [anon_sym_restrict] = ACTIONS(2725), - [anon_sym__Atomic] = ACTIONS(2725), - [anon_sym_mutable] = ACTIONS(2725), - [anon_sym_constexpr] = ACTIONS(2725), - [anon_sym_constinit] = ACTIONS(2725), - [anon_sym_consteval] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2725), - [anon_sym_unsigned] = ACTIONS(2725), - [anon_sym_long] = ACTIONS(2725), - [anon_sym_short] = ACTIONS(2725), - [sym_primitive_type] = ACTIONS(2725), - [anon_sym_enum] = ACTIONS(2725), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2725), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_switch] = ACTIONS(2725), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_default] = ACTIONS(2725), - [anon_sym_while] = ACTIONS(2725), - [anon_sym_do] = ACTIONS(2725), - [anon_sym_for] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2725), - [anon_sym_break] = ACTIONS(2725), - [anon_sym_continue] = ACTIONS(2725), - [anon_sym_goto] = ACTIONS(2725), - [anon_sym_not] = ACTIONS(2725), - [anon_sym_compl] = ACTIONS(2725), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_sizeof] = ACTIONS(2725), - [sym_number_literal] = ACTIONS(2727), - [anon_sym_L_SQUOTE] = ACTIONS(2727), - [anon_sym_u_SQUOTE] = ACTIONS(2727), - [anon_sym_U_SQUOTE] = ACTIONS(2727), - [anon_sym_u8_SQUOTE] = ACTIONS(2727), - [anon_sym_SQUOTE] = ACTIONS(2727), - [anon_sym_L_DQUOTE] = ACTIONS(2727), - [anon_sym_u_DQUOTE] = ACTIONS(2727), - [anon_sym_U_DQUOTE] = ACTIONS(2727), - [anon_sym_u8_DQUOTE] = ACTIONS(2727), - [anon_sym_DQUOTE] = ACTIONS(2727), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_null] = ACTIONS(2725), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2725), - [anon_sym_decltype] = ACTIONS(2725), - [anon_sym_virtual] = ACTIONS(2725), - [anon_sym_explicit] = ACTIONS(2725), - [anon_sym_typename] = ACTIONS(2725), - [anon_sym_template] = ACTIONS(2725), - [anon_sym_operator] = ACTIONS(2725), - [anon_sym_try] = ACTIONS(2725), - [anon_sym_delete] = ACTIONS(2725), - [anon_sym_throw] = ACTIONS(2725), - [anon_sym_namespace] = ACTIONS(2725), - [anon_sym_using] = ACTIONS(2725), - [anon_sym_static_assert] = ACTIONS(2725), - [anon_sym_concept] = ACTIONS(2725), - [anon_sym_co_return] = ACTIONS(2725), - [anon_sym_co_yield] = ACTIONS(2725), - [anon_sym_R_DQUOTE] = ACTIONS(2727), - [anon_sym_LR_DQUOTE] = ACTIONS(2727), - [anon_sym_uR_DQUOTE] = ACTIONS(2727), - [anon_sym_UR_DQUOTE] = ACTIONS(2727), - [anon_sym_u8R_DQUOTE] = ACTIONS(2727), - [anon_sym_co_await] = ACTIONS(2725), - [anon_sym_new] = ACTIONS(2725), - [anon_sym_requires] = ACTIONS(2725), - [sym_this] = ACTIONS(2725), - [sym_nullptr] = ACTIONS(2725), - }, - [1013] = { - [sym_identifier] = ACTIONS(2733), - [aux_sym_preproc_include_token1] = ACTIONS(2733), - [aux_sym_preproc_def_token1] = ACTIONS(2733), - [aux_sym_preproc_if_token1] = ACTIONS(2733), - [aux_sym_preproc_if_token2] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), - [sym_preproc_directive] = ACTIONS(2733), - [anon_sym_LPAREN2] = ACTIONS(2735), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_TILDE] = ACTIONS(2735), - [anon_sym_DASH] = ACTIONS(2733), - [anon_sym_PLUS] = ACTIONS(2733), - [anon_sym_STAR] = ACTIONS(2735), - [anon_sym_AMP_AMP] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2733), - [anon_sym_SEMI] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2733), - [anon_sym_extern] = ACTIONS(2733), - [anon_sym___attribute__] = ACTIONS(2733), - [anon_sym_COLON_COLON] = ACTIONS(2735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), - [anon_sym___declspec] = ACTIONS(2733), - [anon_sym___based] = ACTIONS(2733), - [anon_sym___cdecl] = ACTIONS(2733), - [anon_sym___clrcall] = ACTIONS(2733), - [anon_sym___stdcall] = ACTIONS(2733), - [anon_sym___fastcall] = ACTIONS(2733), - [anon_sym___thiscall] = ACTIONS(2733), - [anon_sym___vectorcall] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2733), - [anon_sym_static] = ACTIONS(2733), - [anon_sym_register] = ACTIONS(2733), - [anon_sym_inline] = ACTIONS(2733), - [anon_sym_thread_local] = ACTIONS(2733), - [anon_sym_const] = ACTIONS(2733), - [anon_sym_volatile] = ACTIONS(2733), - [anon_sym_restrict] = ACTIONS(2733), - [anon_sym__Atomic] = ACTIONS(2733), - [anon_sym_mutable] = ACTIONS(2733), - [anon_sym_constexpr] = ACTIONS(2733), - [anon_sym_constinit] = ACTIONS(2733), - [anon_sym_consteval] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2733), - [anon_sym_unsigned] = ACTIONS(2733), - [anon_sym_long] = ACTIONS(2733), - [anon_sym_short] = ACTIONS(2733), - [sym_primitive_type] = ACTIONS(2733), - [anon_sym_enum] = ACTIONS(2733), - [anon_sym_class] = ACTIONS(2733), - [anon_sym_struct] = ACTIONS(2733), - [anon_sym_union] = ACTIONS(2733), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2733), - [anon_sym_case] = ACTIONS(2733), - [anon_sym_default] = ACTIONS(2733), - [anon_sym_while] = ACTIONS(2733), - [anon_sym_do] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_break] = ACTIONS(2733), - [anon_sym_continue] = ACTIONS(2733), - [anon_sym_goto] = ACTIONS(2733), - [anon_sym_not] = ACTIONS(2733), - [anon_sym_compl] = ACTIONS(2733), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_sizeof] = ACTIONS(2733), - [sym_number_literal] = ACTIONS(2735), - [anon_sym_L_SQUOTE] = ACTIONS(2735), - [anon_sym_u_SQUOTE] = ACTIONS(2735), - [anon_sym_U_SQUOTE] = ACTIONS(2735), - [anon_sym_u8_SQUOTE] = ACTIONS(2735), - [anon_sym_SQUOTE] = ACTIONS(2735), - [anon_sym_L_DQUOTE] = ACTIONS(2735), - [anon_sym_u_DQUOTE] = ACTIONS(2735), - [anon_sym_U_DQUOTE] = ACTIONS(2735), - [anon_sym_u8_DQUOTE] = ACTIONS(2735), - [anon_sym_DQUOTE] = ACTIONS(2735), - [sym_true] = ACTIONS(2733), - [sym_false] = ACTIONS(2733), - [sym_null] = ACTIONS(2733), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2733), - [anon_sym_decltype] = ACTIONS(2733), - [anon_sym_virtual] = ACTIONS(2733), - [anon_sym_explicit] = ACTIONS(2733), - [anon_sym_typename] = ACTIONS(2733), - [anon_sym_template] = ACTIONS(2733), - [anon_sym_operator] = ACTIONS(2733), - [anon_sym_try] = ACTIONS(2733), - [anon_sym_delete] = ACTIONS(2733), - [anon_sym_throw] = ACTIONS(2733), - [anon_sym_namespace] = ACTIONS(2733), - [anon_sym_using] = ACTIONS(2733), - [anon_sym_static_assert] = ACTIONS(2733), - [anon_sym_concept] = ACTIONS(2733), - [anon_sym_co_return] = ACTIONS(2733), - [anon_sym_co_yield] = ACTIONS(2733), - [anon_sym_R_DQUOTE] = ACTIONS(2735), - [anon_sym_LR_DQUOTE] = ACTIONS(2735), - [anon_sym_uR_DQUOTE] = ACTIONS(2735), - [anon_sym_UR_DQUOTE] = ACTIONS(2735), - [anon_sym_u8R_DQUOTE] = ACTIONS(2735), - [anon_sym_co_await] = ACTIONS(2733), - [anon_sym_new] = ACTIONS(2733), - [anon_sym_requires] = ACTIONS(2733), - [sym_this] = ACTIONS(2733), - [sym_nullptr] = ACTIONS(2733), - }, - [1014] = { - [sym_identifier] = ACTIONS(2681), - [aux_sym_preproc_include_token1] = ACTIONS(2681), - [aux_sym_preproc_def_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token2] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), - [sym_preproc_directive] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_AMP_AMP] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2681), - [anon_sym___attribute__] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), - [anon_sym___declspec] = ACTIONS(2681), - [anon_sym___based] = ACTIONS(2681), - [anon_sym___cdecl] = ACTIONS(2681), - [anon_sym___clrcall] = ACTIONS(2681), - [anon_sym___stdcall] = ACTIONS(2681), - [anon_sym___fastcall] = ACTIONS(2681), - [anon_sym___thiscall] = ACTIONS(2681), - [anon_sym___vectorcall] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_register] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2681), - [anon_sym_thread_local] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_volatile] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2681), - [anon_sym__Atomic] = ACTIONS(2681), - [anon_sym_mutable] = ACTIONS(2681), - [anon_sym_constexpr] = ACTIONS(2681), - [anon_sym_constinit] = ACTIONS(2681), - [anon_sym_consteval] = ACTIONS(2681), - [anon_sym_signed] = ACTIONS(2681), - [anon_sym_unsigned] = ACTIONS(2681), - [anon_sym_long] = ACTIONS(2681), - [anon_sym_short] = ACTIONS(2681), - [sym_primitive_type] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_switch] = ACTIONS(2681), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_goto] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_compl] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_sizeof] = ACTIONS(2681), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_L_SQUOTE] = ACTIONS(2683), - [anon_sym_u_SQUOTE] = ACTIONS(2683), - [anon_sym_U_SQUOTE] = ACTIONS(2683), - [anon_sym_u8_SQUOTE] = ACTIONS(2683), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_L_DQUOTE] = ACTIONS(2683), - [anon_sym_u_DQUOTE] = ACTIONS(2683), - [anon_sym_U_DQUOTE] = ACTIONS(2683), - [anon_sym_u8_DQUOTE] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_null] = ACTIONS(2681), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2681), - [anon_sym_decltype] = ACTIONS(2681), - [anon_sym_virtual] = ACTIONS(2681), - [anon_sym_explicit] = ACTIONS(2681), - [anon_sym_typename] = ACTIONS(2681), - [anon_sym_template] = ACTIONS(2681), - [anon_sym_operator] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_delete] = ACTIONS(2681), - [anon_sym_throw] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2681), - [anon_sym_static_assert] = ACTIONS(2681), - [anon_sym_concept] = ACTIONS(2681), - [anon_sym_co_return] = ACTIONS(2681), - [anon_sym_co_yield] = ACTIONS(2681), - [anon_sym_R_DQUOTE] = ACTIONS(2683), - [anon_sym_LR_DQUOTE] = ACTIONS(2683), - [anon_sym_uR_DQUOTE] = ACTIONS(2683), - [anon_sym_UR_DQUOTE] = ACTIONS(2683), - [anon_sym_u8R_DQUOTE] = ACTIONS(2683), - [anon_sym_co_await] = ACTIONS(2681), - [anon_sym_new] = ACTIONS(2681), - [anon_sym_requires] = ACTIONS(2681), - [sym_this] = ACTIONS(2681), - [sym_nullptr] = ACTIONS(2681), - }, - [1015] = { - [sym_identifier] = ACTIONS(2737), - [aux_sym_preproc_include_token1] = ACTIONS(2737), - [aux_sym_preproc_def_token1] = ACTIONS(2737), - [aux_sym_preproc_if_token1] = ACTIONS(2737), - [aux_sym_preproc_if_token2] = ACTIONS(2737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2737), - [sym_preproc_directive] = ACTIONS(2737), - [anon_sym_LPAREN2] = ACTIONS(2739), - [anon_sym_BANG] = ACTIONS(2739), - [anon_sym_TILDE] = ACTIONS(2739), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_PLUS] = ACTIONS(2737), - [anon_sym_STAR] = ACTIONS(2739), - [anon_sym_AMP_AMP] = ACTIONS(2739), - [anon_sym_AMP] = ACTIONS(2737), - [anon_sym_SEMI] = ACTIONS(2739), - [anon_sym_typedef] = ACTIONS(2737), - [anon_sym_extern] = ACTIONS(2737), - [anon_sym___attribute__] = ACTIONS(2737), - [anon_sym_COLON_COLON] = ACTIONS(2739), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2739), - [anon_sym___declspec] = ACTIONS(2737), - [anon_sym___based] = ACTIONS(2737), - [anon_sym___cdecl] = ACTIONS(2737), - [anon_sym___clrcall] = ACTIONS(2737), - [anon_sym___stdcall] = ACTIONS(2737), - [anon_sym___fastcall] = ACTIONS(2737), - [anon_sym___thiscall] = ACTIONS(2737), - [anon_sym___vectorcall] = ACTIONS(2737), - [anon_sym_LBRACE] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2737), - [anon_sym_static] = ACTIONS(2737), - [anon_sym_register] = ACTIONS(2737), - [anon_sym_inline] = ACTIONS(2737), - [anon_sym_thread_local] = ACTIONS(2737), - [anon_sym_const] = ACTIONS(2737), - [anon_sym_volatile] = ACTIONS(2737), - [anon_sym_restrict] = ACTIONS(2737), - [anon_sym__Atomic] = ACTIONS(2737), - [anon_sym_mutable] = ACTIONS(2737), - [anon_sym_constexpr] = ACTIONS(2737), - [anon_sym_constinit] = ACTIONS(2737), - [anon_sym_consteval] = ACTIONS(2737), - [anon_sym_signed] = ACTIONS(2737), - [anon_sym_unsigned] = ACTIONS(2737), - [anon_sym_long] = ACTIONS(2737), - [anon_sym_short] = ACTIONS(2737), - [sym_primitive_type] = ACTIONS(2737), - [anon_sym_enum] = ACTIONS(2737), - [anon_sym_class] = ACTIONS(2737), - [anon_sym_struct] = ACTIONS(2737), - [anon_sym_union] = ACTIONS(2737), - [anon_sym_if] = ACTIONS(2737), - [anon_sym_switch] = ACTIONS(2737), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2737), - [anon_sym_while] = ACTIONS(2737), - [anon_sym_do] = ACTIONS(2737), - [anon_sym_for] = ACTIONS(2737), - [anon_sym_return] = ACTIONS(2737), - [anon_sym_break] = ACTIONS(2737), - [anon_sym_continue] = ACTIONS(2737), - [anon_sym_goto] = ACTIONS(2737), - [anon_sym_not] = ACTIONS(2737), - [anon_sym_compl] = ACTIONS(2737), - [anon_sym_DASH_DASH] = ACTIONS(2739), - [anon_sym_PLUS_PLUS] = ACTIONS(2739), - [anon_sym_sizeof] = ACTIONS(2737), - [sym_number_literal] = ACTIONS(2739), - [anon_sym_L_SQUOTE] = ACTIONS(2739), - [anon_sym_u_SQUOTE] = ACTIONS(2739), - [anon_sym_U_SQUOTE] = ACTIONS(2739), - [anon_sym_u8_SQUOTE] = ACTIONS(2739), - [anon_sym_SQUOTE] = ACTIONS(2739), - [anon_sym_L_DQUOTE] = ACTIONS(2739), - [anon_sym_u_DQUOTE] = ACTIONS(2739), - [anon_sym_U_DQUOTE] = ACTIONS(2739), - [anon_sym_u8_DQUOTE] = ACTIONS(2739), - [anon_sym_DQUOTE] = ACTIONS(2739), - [sym_true] = ACTIONS(2737), - [sym_false] = ACTIONS(2737), - [sym_null] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2737), - [anon_sym_decltype] = ACTIONS(2737), - [anon_sym_virtual] = ACTIONS(2737), - [anon_sym_explicit] = ACTIONS(2737), - [anon_sym_typename] = ACTIONS(2737), - [anon_sym_template] = ACTIONS(2737), - [anon_sym_operator] = ACTIONS(2737), - [anon_sym_try] = ACTIONS(2737), - [anon_sym_delete] = ACTIONS(2737), - [anon_sym_throw] = ACTIONS(2737), - [anon_sym_namespace] = ACTIONS(2737), - [anon_sym_using] = ACTIONS(2737), - [anon_sym_static_assert] = ACTIONS(2737), - [anon_sym_concept] = ACTIONS(2737), - [anon_sym_co_return] = ACTIONS(2737), - [anon_sym_co_yield] = ACTIONS(2737), - [anon_sym_R_DQUOTE] = ACTIONS(2739), - [anon_sym_LR_DQUOTE] = ACTIONS(2739), - [anon_sym_uR_DQUOTE] = ACTIONS(2739), - [anon_sym_UR_DQUOTE] = ACTIONS(2739), - [anon_sym_u8R_DQUOTE] = ACTIONS(2739), - [anon_sym_co_await] = ACTIONS(2737), - [anon_sym_new] = ACTIONS(2737), - [anon_sym_requires] = ACTIONS(2737), - [sym_this] = ACTIONS(2737), - [sym_nullptr] = ACTIONS(2737), - }, - [1016] = { - [ts_builtin_sym_end] = ACTIONS(2807), - [sym_identifier] = ACTIONS(2805), - [aux_sym_preproc_include_token1] = ACTIONS(2805), - [aux_sym_preproc_def_token1] = ACTIONS(2805), - [aux_sym_preproc_if_token1] = ACTIONS(2805), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_AMP_AMP] = ACTIONS(2807), - [anon_sym_AMP] = ACTIONS(2805), - [anon_sym_SEMI] = ACTIONS(2807), - [anon_sym_typedef] = ACTIONS(2805), - [anon_sym_extern] = ACTIONS(2805), - [anon_sym___attribute__] = ACTIONS(2805), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), - [anon_sym___declspec] = ACTIONS(2805), - [anon_sym___based] = ACTIONS(2805), - [anon_sym___cdecl] = ACTIONS(2805), - [anon_sym___clrcall] = ACTIONS(2805), - [anon_sym___stdcall] = ACTIONS(2805), - [anon_sym___fastcall] = ACTIONS(2805), - [anon_sym___thiscall] = ACTIONS(2805), - [anon_sym___vectorcall] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2805), - [anon_sym_static] = ACTIONS(2805), - [anon_sym_register] = ACTIONS(2805), - [anon_sym_inline] = ACTIONS(2805), - [anon_sym_thread_local] = ACTIONS(2805), - [anon_sym_const] = ACTIONS(2805), - [anon_sym_volatile] = ACTIONS(2805), - [anon_sym_restrict] = ACTIONS(2805), - [anon_sym__Atomic] = ACTIONS(2805), - [anon_sym_mutable] = ACTIONS(2805), - [anon_sym_constexpr] = ACTIONS(2805), - [anon_sym_constinit] = ACTIONS(2805), - [anon_sym_consteval] = ACTIONS(2805), - [anon_sym_signed] = ACTIONS(2805), - [anon_sym_unsigned] = ACTIONS(2805), - [anon_sym_long] = ACTIONS(2805), - [anon_sym_short] = ACTIONS(2805), - [sym_primitive_type] = ACTIONS(2805), - [anon_sym_enum] = ACTIONS(2805), - [anon_sym_class] = ACTIONS(2805), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_union] = ACTIONS(2805), - [anon_sym_if] = ACTIONS(2805), - [anon_sym_switch] = ACTIONS(2805), - [anon_sym_case] = ACTIONS(2805), - [anon_sym_default] = ACTIONS(2805), - [anon_sym_while] = ACTIONS(2805), - [anon_sym_do] = ACTIONS(2805), - [anon_sym_for] = ACTIONS(2805), - [anon_sym_return] = ACTIONS(2805), - [anon_sym_break] = ACTIONS(2805), - [anon_sym_continue] = ACTIONS(2805), - [anon_sym_goto] = ACTIONS(2805), - [anon_sym_not] = ACTIONS(2805), - [anon_sym_compl] = ACTIONS(2805), - [anon_sym_DASH_DASH] = ACTIONS(2807), - [anon_sym_PLUS_PLUS] = ACTIONS(2807), - [anon_sym_sizeof] = ACTIONS(2805), - [sym_number_literal] = ACTIONS(2807), - [anon_sym_L_SQUOTE] = ACTIONS(2807), - [anon_sym_u_SQUOTE] = ACTIONS(2807), - [anon_sym_U_SQUOTE] = ACTIONS(2807), - [anon_sym_u8_SQUOTE] = ACTIONS(2807), - [anon_sym_SQUOTE] = ACTIONS(2807), - [anon_sym_L_DQUOTE] = ACTIONS(2807), - [anon_sym_u_DQUOTE] = ACTIONS(2807), - [anon_sym_U_DQUOTE] = ACTIONS(2807), - [anon_sym_u8_DQUOTE] = ACTIONS(2807), - [anon_sym_DQUOTE] = ACTIONS(2807), - [sym_true] = ACTIONS(2805), - [sym_false] = ACTIONS(2805), - [sym_null] = ACTIONS(2805), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2805), - [anon_sym_decltype] = ACTIONS(2805), - [anon_sym_virtual] = ACTIONS(2805), - [anon_sym_explicit] = ACTIONS(2805), - [anon_sym_typename] = ACTIONS(2805), - [anon_sym_template] = ACTIONS(2805), - [anon_sym_operator] = ACTIONS(2805), - [anon_sym_try] = ACTIONS(2805), - [anon_sym_delete] = ACTIONS(2805), - [anon_sym_throw] = ACTIONS(2805), - [anon_sym_namespace] = ACTIONS(2805), - [anon_sym_using] = ACTIONS(2805), - [anon_sym_static_assert] = ACTIONS(2805), - [anon_sym_concept] = ACTIONS(2805), - [anon_sym_co_return] = ACTIONS(2805), - [anon_sym_co_yield] = ACTIONS(2805), - [anon_sym_R_DQUOTE] = ACTIONS(2807), - [anon_sym_LR_DQUOTE] = ACTIONS(2807), - [anon_sym_uR_DQUOTE] = ACTIONS(2807), - [anon_sym_UR_DQUOTE] = ACTIONS(2807), - [anon_sym_u8R_DQUOTE] = ACTIONS(2807), - [anon_sym_co_await] = ACTIONS(2805), - [anon_sym_new] = ACTIONS(2805), - [anon_sym_requires] = ACTIONS(2805), - [sym_this] = ACTIONS(2805), - [sym_nullptr] = ACTIONS(2805), - }, - [1017] = { - [sym_identifier] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token2] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym___attribute__] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2687), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), - [anon_sym___declspec] = ACTIONS(2685), - [anon_sym___based] = ACTIONS(2685), - [anon_sym___cdecl] = ACTIONS(2685), - [anon_sym___clrcall] = ACTIONS(2685), - [anon_sym___stdcall] = ACTIONS(2685), - [anon_sym___fastcall] = ACTIONS(2685), - [anon_sym___thiscall] = ACTIONS(2685), - [anon_sym___vectorcall] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_thread_local] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [anon_sym_mutable] = ACTIONS(2685), - [anon_sym_constexpr] = ACTIONS(2685), - [anon_sym_constinit] = ACTIONS(2685), - [anon_sym_consteval] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_not] = ACTIONS(2685), - [anon_sym_compl] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_L_SQUOTE] = ACTIONS(2687), - [anon_sym_u_SQUOTE] = ACTIONS(2687), - [anon_sym_U_SQUOTE] = ACTIONS(2687), - [anon_sym_u8_SQUOTE] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_L_DQUOTE] = ACTIONS(2687), - [anon_sym_u_DQUOTE] = ACTIONS(2687), - [anon_sym_U_DQUOTE] = ACTIONS(2687), - [anon_sym_u8_DQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2685), - [anon_sym_decltype] = ACTIONS(2685), - [anon_sym_virtual] = ACTIONS(2685), - [anon_sym_explicit] = ACTIONS(2685), - [anon_sym_typename] = ACTIONS(2685), - [anon_sym_template] = ACTIONS(2685), - [anon_sym_operator] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_throw] = ACTIONS(2685), - [anon_sym_namespace] = ACTIONS(2685), - [anon_sym_using] = ACTIONS(2685), - [anon_sym_static_assert] = ACTIONS(2685), - [anon_sym_concept] = ACTIONS(2685), - [anon_sym_co_return] = ACTIONS(2685), - [anon_sym_co_yield] = ACTIONS(2685), - [anon_sym_R_DQUOTE] = ACTIONS(2687), - [anon_sym_LR_DQUOTE] = ACTIONS(2687), - [anon_sym_uR_DQUOTE] = ACTIONS(2687), - [anon_sym_UR_DQUOTE] = ACTIONS(2687), - [anon_sym_u8R_DQUOTE] = ACTIONS(2687), - [anon_sym_co_await] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_requires] = ACTIONS(2685), - [sym_this] = ACTIONS(2685), - [sym_nullptr] = ACTIONS(2685), - }, - [1018] = { - [ts_builtin_sym_end] = ACTIONS(2811), - [sym_identifier] = ACTIONS(2809), - [aux_sym_preproc_include_token1] = ACTIONS(2809), - [aux_sym_preproc_def_token1] = ACTIONS(2809), - [aux_sym_preproc_if_token1] = ACTIONS(2809), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2809), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2809), - [sym_preproc_directive] = ACTIONS(2809), - [anon_sym_LPAREN2] = ACTIONS(2811), - [anon_sym_BANG] = ACTIONS(2811), - [anon_sym_TILDE] = ACTIONS(2811), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_PLUS] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(2811), - [anon_sym_AMP] = ACTIONS(2809), - [anon_sym_SEMI] = ACTIONS(2811), - [anon_sym_typedef] = ACTIONS(2809), - [anon_sym_extern] = ACTIONS(2809), - [anon_sym___attribute__] = ACTIONS(2809), - [anon_sym_COLON_COLON] = ACTIONS(2811), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2811), - [anon_sym___declspec] = ACTIONS(2809), - [anon_sym___based] = ACTIONS(2809), - [anon_sym___cdecl] = ACTIONS(2809), - [anon_sym___clrcall] = ACTIONS(2809), - [anon_sym___stdcall] = ACTIONS(2809), - [anon_sym___fastcall] = ACTIONS(2809), - [anon_sym___thiscall] = ACTIONS(2809), - [anon_sym___vectorcall] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2809), - [anon_sym_static] = ACTIONS(2809), - [anon_sym_register] = ACTIONS(2809), - [anon_sym_inline] = ACTIONS(2809), - [anon_sym_thread_local] = ACTIONS(2809), - [anon_sym_const] = ACTIONS(2809), - [anon_sym_volatile] = ACTIONS(2809), - [anon_sym_restrict] = ACTIONS(2809), - [anon_sym__Atomic] = ACTIONS(2809), - [anon_sym_mutable] = ACTIONS(2809), - [anon_sym_constexpr] = ACTIONS(2809), - [anon_sym_constinit] = ACTIONS(2809), - [anon_sym_consteval] = ACTIONS(2809), - [anon_sym_signed] = ACTIONS(2809), - [anon_sym_unsigned] = ACTIONS(2809), - [anon_sym_long] = ACTIONS(2809), - [anon_sym_short] = ACTIONS(2809), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(2809), - [anon_sym_class] = ACTIONS(2809), - [anon_sym_struct] = ACTIONS(2809), - [anon_sym_union] = ACTIONS(2809), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_switch] = ACTIONS(2809), - [anon_sym_case] = ACTIONS(2809), - [anon_sym_default] = ACTIONS(2809), - [anon_sym_while] = ACTIONS(2809), - [anon_sym_do] = ACTIONS(2809), - [anon_sym_for] = ACTIONS(2809), - [anon_sym_return] = ACTIONS(2809), - [anon_sym_break] = ACTIONS(2809), - [anon_sym_continue] = ACTIONS(2809), - [anon_sym_goto] = ACTIONS(2809), - [anon_sym_not] = ACTIONS(2809), - [anon_sym_compl] = ACTIONS(2809), - [anon_sym_DASH_DASH] = ACTIONS(2811), - [anon_sym_PLUS_PLUS] = ACTIONS(2811), - [anon_sym_sizeof] = ACTIONS(2809), - [sym_number_literal] = ACTIONS(2811), - [anon_sym_L_SQUOTE] = ACTIONS(2811), - [anon_sym_u_SQUOTE] = ACTIONS(2811), - [anon_sym_U_SQUOTE] = ACTIONS(2811), - [anon_sym_u8_SQUOTE] = ACTIONS(2811), - [anon_sym_SQUOTE] = ACTIONS(2811), - [anon_sym_L_DQUOTE] = ACTIONS(2811), - [anon_sym_u_DQUOTE] = ACTIONS(2811), - [anon_sym_U_DQUOTE] = ACTIONS(2811), - [anon_sym_u8_DQUOTE] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym_true] = ACTIONS(2809), - [sym_false] = ACTIONS(2809), - [sym_null] = ACTIONS(2809), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2809), - [anon_sym_decltype] = ACTIONS(2809), - [anon_sym_virtual] = ACTIONS(2809), - [anon_sym_explicit] = ACTIONS(2809), - [anon_sym_typename] = ACTIONS(2809), - [anon_sym_template] = ACTIONS(2809), - [anon_sym_operator] = ACTIONS(2809), - [anon_sym_try] = ACTIONS(2809), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_throw] = ACTIONS(2809), - [anon_sym_namespace] = ACTIONS(2809), - [anon_sym_using] = ACTIONS(2809), - [anon_sym_static_assert] = ACTIONS(2809), - [anon_sym_concept] = ACTIONS(2809), - [anon_sym_co_return] = ACTIONS(2809), - [anon_sym_co_yield] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2811), - [anon_sym_LR_DQUOTE] = ACTIONS(2811), - [anon_sym_uR_DQUOTE] = ACTIONS(2811), - [anon_sym_UR_DQUOTE] = ACTIONS(2811), - [anon_sym_u8R_DQUOTE] = ACTIONS(2811), - [anon_sym_co_await] = ACTIONS(2809), - [anon_sym_new] = ACTIONS(2809), - [anon_sym_requires] = ACTIONS(2809), - [sym_this] = ACTIONS(2809), - [sym_nullptr] = ACTIONS(2809), - }, - [1019] = { - [ts_builtin_sym_end] = ACTIONS(2815), - [sym_identifier] = ACTIONS(2813), - [aux_sym_preproc_include_token1] = ACTIONS(2813), - [aux_sym_preproc_def_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), - [sym_preproc_directive] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_typedef] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym___attribute__] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), - [anon_sym___declspec] = ACTIONS(2813), - [anon_sym___based] = ACTIONS(2813), - [anon_sym___cdecl] = ACTIONS(2813), - [anon_sym___clrcall] = ACTIONS(2813), - [anon_sym___stdcall] = ACTIONS(2813), - [anon_sym___fastcall] = ACTIONS(2813), - [anon_sym___thiscall] = ACTIONS(2813), - [anon_sym___vectorcall] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_register] = ACTIONS(2813), - [anon_sym_inline] = ACTIONS(2813), - [anon_sym_thread_local] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_volatile] = ACTIONS(2813), - [anon_sym_restrict] = ACTIONS(2813), - [anon_sym__Atomic] = ACTIONS(2813), - [anon_sym_mutable] = ACTIONS(2813), - [anon_sym_constexpr] = ACTIONS(2813), - [anon_sym_constinit] = ACTIONS(2813), - [anon_sym_consteval] = ACTIONS(2813), - [anon_sym_signed] = ACTIONS(2813), - [anon_sym_unsigned] = ACTIONS(2813), - [anon_sym_long] = ACTIONS(2813), - [anon_sym_short] = ACTIONS(2813), - [sym_primitive_type] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_switch] = ACTIONS(2813), - [anon_sym_case] = ACTIONS(2813), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_do] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_goto] = ACTIONS(2813), - [anon_sym_not] = ACTIONS(2813), - [anon_sym_compl] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_sizeof] = ACTIONS(2813), - [sym_number_literal] = ACTIONS(2815), - [anon_sym_L_SQUOTE] = ACTIONS(2815), - [anon_sym_u_SQUOTE] = ACTIONS(2815), - [anon_sym_U_SQUOTE] = ACTIONS(2815), - [anon_sym_u8_SQUOTE] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_L_DQUOTE] = ACTIONS(2815), - [anon_sym_u_DQUOTE] = ACTIONS(2815), - [anon_sym_U_DQUOTE] = ACTIONS(2815), - [anon_sym_u8_DQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [sym_null] = ACTIONS(2813), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2813), - [anon_sym_decltype] = ACTIONS(2813), - [anon_sym_virtual] = ACTIONS(2813), - [anon_sym_explicit] = ACTIONS(2813), - [anon_sym_typename] = ACTIONS(2813), - [anon_sym_template] = ACTIONS(2813), - [anon_sym_operator] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [anon_sym_delete] = ACTIONS(2813), - [anon_sym_throw] = ACTIONS(2813), - [anon_sym_namespace] = ACTIONS(2813), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_static_assert] = ACTIONS(2813), - [anon_sym_concept] = ACTIONS(2813), - [anon_sym_co_return] = ACTIONS(2813), - [anon_sym_co_yield] = ACTIONS(2813), - [anon_sym_R_DQUOTE] = ACTIONS(2815), - [anon_sym_LR_DQUOTE] = ACTIONS(2815), - [anon_sym_uR_DQUOTE] = ACTIONS(2815), - [anon_sym_UR_DQUOTE] = ACTIONS(2815), - [anon_sym_u8R_DQUOTE] = ACTIONS(2815), - [anon_sym_co_await] = ACTIONS(2813), - [anon_sym_new] = ACTIONS(2813), - [anon_sym_requires] = ACTIONS(2813), - [sym_this] = ACTIONS(2813), - [sym_nullptr] = ACTIONS(2813), - }, - [1020] = { - [sym_identifier] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token2] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym___attribute__] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2687), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), - [anon_sym___declspec] = ACTIONS(2685), - [anon_sym___based] = ACTIONS(2685), - [anon_sym___cdecl] = ACTIONS(2685), - [anon_sym___clrcall] = ACTIONS(2685), - [anon_sym___stdcall] = ACTIONS(2685), - [anon_sym___fastcall] = ACTIONS(2685), - [anon_sym___thiscall] = ACTIONS(2685), - [anon_sym___vectorcall] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_thread_local] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [anon_sym_mutable] = ACTIONS(2685), - [anon_sym_constexpr] = ACTIONS(2685), - [anon_sym_constinit] = ACTIONS(2685), - [anon_sym_consteval] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_not] = ACTIONS(2685), - [anon_sym_compl] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_L_SQUOTE] = ACTIONS(2687), - [anon_sym_u_SQUOTE] = ACTIONS(2687), - [anon_sym_U_SQUOTE] = ACTIONS(2687), - [anon_sym_u8_SQUOTE] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_L_DQUOTE] = ACTIONS(2687), - [anon_sym_u_DQUOTE] = ACTIONS(2687), - [anon_sym_U_DQUOTE] = ACTIONS(2687), - [anon_sym_u8_DQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2685), - [anon_sym_decltype] = ACTIONS(2685), - [anon_sym_virtual] = ACTIONS(2685), - [anon_sym_explicit] = ACTIONS(2685), - [anon_sym_typename] = ACTIONS(2685), - [anon_sym_template] = ACTIONS(2685), - [anon_sym_operator] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_throw] = ACTIONS(2685), - [anon_sym_namespace] = ACTIONS(2685), - [anon_sym_using] = ACTIONS(2685), - [anon_sym_static_assert] = ACTIONS(2685), - [anon_sym_concept] = ACTIONS(2685), - [anon_sym_co_return] = ACTIONS(2685), - [anon_sym_co_yield] = ACTIONS(2685), - [anon_sym_R_DQUOTE] = ACTIONS(2687), - [anon_sym_LR_DQUOTE] = ACTIONS(2687), - [anon_sym_uR_DQUOTE] = ACTIONS(2687), - [anon_sym_UR_DQUOTE] = ACTIONS(2687), - [anon_sym_u8R_DQUOTE] = ACTIONS(2687), - [anon_sym_co_await] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_requires] = ACTIONS(2685), - [sym_this] = ACTIONS(2685), - [sym_nullptr] = ACTIONS(2685), - }, - [1021] = { - [sym_identifier] = ACTIONS(2729), - [aux_sym_preproc_include_token1] = ACTIONS(2729), - [aux_sym_preproc_def_token1] = ACTIONS(2729), - [aux_sym_preproc_if_token1] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), - [sym_preproc_directive] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_TILDE] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_AMP_AMP] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_SEMI] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2729), - [anon_sym_extern] = ACTIONS(2729), - [anon_sym___attribute__] = ACTIONS(2729), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), - [anon_sym___declspec] = ACTIONS(2729), - [anon_sym___based] = ACTIONS(2729), - [anon_sym___cdecl] = ACTIONS(2729), - [anon_sym___clrcall] = ACTIONS(2729), - [anon_sym___stdcall] = ACTIONS(2729), - [anon_sym___fastcall] = ACTIONS(2729), - [anon_sym___thiscall] = ACTIONS(2729), - [anon_sym___vectorcall] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_RBRACE] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_register] = ACTIONS(2729), - [anon_sym_inline] = ACTIONS(2729), - [anon_sym_thread_local] = ACTIONS(2729), - [anon_sym_const] = ACTIONS(2729), - [anon_sym_volatile] = ACTIONS(2729), - [anon_sym_restrict] = ACTIONS(2729), - [anon_sym__Atomic] = ACTIONS(2729), - [anon_sym_mutable] = ACTIONS(2729), - [anon_sym_constexpr] = ACTIONS(2729), - [anon_sym_constinit] = ACTIONS(2729), - [anon_sym_consteval] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2729), - [anon_sym_unsigned] = ACTIONS(2729), - [anon_sym_long] = ACTIONS(2729), - [anon_sym_short] = ACTIONS(2729), - [sym_primitive_type] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_union] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_switch] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_default] = ACTIONS(2729), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_break] = ACTIONS(2729), - [anon_sym_continue] = ACTIONS(2729), - [anon_sym_goto] = ACTIONS(2729), - [anon_sym_not] = ACTIONS(2729), - [anon_sym_compl] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_sizeof] = ACTIONS(2729), - [sym_number_literal] = ACTIONS(2731), - [anon_sym_L_SQUOTE] = ACTIONS(2731), - [anon_sym_u_SQUOTE] = ACTIONS(2731), - [anon_sym_U_SQUOTE] = ACTIONS(2731), - [anon_sym_u8_SQUOTE] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_L_DQUOTE] = ACTIONS(2731), - [anon_sym_u_DQUOTE] = ACTIONS(2731), - [anon_sym_U_DQUOTE] = ACTIONS(2731), - [anon_sym_u8_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2731), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_null] = ACTIONS(2729), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2729), - [anon_sym_decltype] = ACTIONS(2729), - [anon_sym_virtual] = ACTIONS(2729), - [anon_sym_explicit] = ACTIONS(2729), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2729), - [anon_sym_operator] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_delete] = ACTIONS(2729), - [anon_sym_throw] = ACTIONS(2729), - [anon_sym_namespace] = ACTIONS(2729), - [anon_sym_using] = ACTIONS(2729), - [anon_sym_static_assert] = ACTIONS(2729), - [anon_sym_concept] = ACTIONS(2729), - [anon_sym_co_return] = ACTIONS(2729), - [anon_sym_co_yield] = ACTIONS(2729), - [anon_sym_R_DQUOTE] = ACTIONS(2731), - [anon_sym_LR_DQUOTE] = ACTIONS(2731), - [anon_sym_uR_DQUOTE] = ACTIONS(2731), - [anon_sym_UR_DQUOTE] = ACTIONS(2731), - [anon_sym_u8R_DQUOTE] = ACTIONS(2731), - [anon_sym_co_await] = ACTIONS(2729), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_requires] = ACTIONS(2729), - [sym_this] = ACTIONS(2729), - [sym_nullptr] = ACTIONS(2729), - }, - [1022] = { - [ts_builtin_sym_end] = ACTIONS(2819), - [sym_identifier] = ACTIONS(2817), - [aux_sym_preproc_include_token1] = ACTIONS(2817), - [aux_sym_preproc_def_token1] = ACTIONS(2817), - [aux_sym_preproc_if_token1] = ACTIONS(2817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2817), - [sym_preproc_directive] = ACTIONS(2817), - [anon_sym_LPAREN2] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_TILDE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2817), - [anon_sym_PLUS] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(2819), - [anon_sym_AMP_AMP] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_typedef] = ACTIONS(2817), - [anon_sym_extern] = ACTIONS(2817), - [anon_sym___attribute__] = ACTIONS(2817), - [anon_sym_COLON_COLON] = ACTIONS(2819), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2819), - [anon_sym___declspec] = ACTIONS(2817), - [anon_sym___based] = ACTIONS(2817), - [anon_sym___cdecl] = ACTIONS(2817), - [anon_sym___clrcall] = ACTIONS(2817), - [anon_sym___stdcall] = ACTIONS(2817), - [anon_sym___fastcall] = ACTIONS(2817), - [anon_sym___thiscall] = ACTIONS(2817), - [anon_sym___vectorcall] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2817), - [anon_sym_static] = ACTIONS(2817), - [anon_sym_register] = ACTIONS(2817), - [anon_sym_inline] = ACTIONS(2817), - [anon_sym_thread_local] = ACTIONS(2817), - [anon_sym_const] = ACTIONS(2817), - [anon_sym_volatile] = ACTIONS(2817), - [anon_sym_restrict] = ACTIONS(2817), - [anon_sym__Atomic] = ACTIONS(2817), - [anon_sym_mutable] = ACTIONS(2817), - [anon_sym_constexpr] = ACTIONS(2817), - [anon_sym_constinit] = ACTIONS(2817), - [anon_sym_consteval] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2817), - [anon_sym_unsigned] = ACTIONS(2817), - [anon_sym_long] = ACTIONS(2817), - [anon_sym_short] = ACTIONS(2817), - [sym_primitive_type] = ACTIONS(2817), - [anon_sym_enum] = ACTIONS(2817), - [anon_sym_class] = ACTIONS(2817), - [anon_sym_struct] = ACTIONS(2817), - [anon_sym_union] = ACTIONS(2817), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_switch] = ACTIONS(2817), - [anon_sym_case] = ACTIONS(2817), - [anon_sym_default] = ACTIONS(2817), - [anon_sym_while] = ACTIONS(2817), - [anon_sym_do] = ACTIONS(2817), - [anon_sym_for] = ACTIONS(2817), - [anon_sym_return] = ACTIONS(2817), - [anon_sym_break] = ACTIONS(2817), - [anon_sym_continue] = ACTIONS(2817), - [anon_sym_goto] = ACTIONS(2817), - [anon_sym_not] = ACTIONS(2817), - [anon_sym_compl] = ACTIONS(2817), - [anon_sym_DASH_DASH] = ACTIONS(2819), - [anon_sym_PLUS_PLUS] = ACTIONS(2819), - [anon_sym_sizeof] = ACTIONS(2817), - [sym_number_literal] = ACTIONS(2819), - [anon_sym_L_SQUOTE] = ACTIONS(2819), - [anon_sym_u_SQUOTE] = ACTIONS(2819), - [anon_sym_U_SQUOTE] = ACTIONS(2819), - [anon_sym_u8_SQUOTE] = ACTIONS(2819), - [anon_sym_SQUOTE] = ACTIONS(2819), - [anon_sym_L_DQUOTE] = ACTIONS(2819), - [anon_sym_u_DQUOTE] = ACTIONS(2819), - [anon_sym_U_DQUOTE] = ACTIONS(2819), - [anon_sym_u8_DQUOTE] = ACTIONS(2819), - [anon_sym_DQUOTE] = ACTIONS(2819), - [sym_true] = ACTIONS(2817), - [sym_false] = ACTIONS(2817), - [sym_null] = ACTIONS(2817), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2817), - [anon_sym_decltype] = ACTIONS(2817), - [anon_sym_virtual] = ACTIONS(2817), - [anon_sym_explicit] = ACTIONS(2817), - [anon_sym_typename] = ACTIONS(2817), - [anon_sym_template] = ACTIONS(2817), - [anon_sym_operator] = ACTIONS(2817), - [anon_sym_try] = ACTIONS(2817), - [anon_sym_delete] = ACTIONS(2817), - [anon_sym_throw] = ACTIONS(2817), - [anon_sym_namespace] = ACTIONS(2817), - [anon_sym_using] = ACTIONS(2817), - [anon_sym_static_assert] = ACTIONS(2817), - [anon_sym_concept] = ACTIONS(2817), - [anon_sym_co_return] = ACTIONS(2817), - [anon_sym_co_yield] = ACTIONS(2817), - [anon_sym_R_DQUOTE] = ACTIONS(2819), - [anon_sym_LR_DQUOTE] = ACTIONS(2819), - [anon_sym_uR_DQUOTE] = ACTIONS(2819), - [anon_sym_UR_DQUOTE] = ACTIONS(2819), - [anon_sym_u8R_DQUOTE] = ACTIONS(2819), - [anon_sym_co_await] = ACTIONS(2817), - [anon_sym_new] = ACTIONS(2817), - [anon_sym_requires] = ACTIONS(2817), - [sym_this] = ACTIONS(2817), - [sym_nullptr] = ACTIONS(2817), - }, - [1023] = { - [sym_identifier] = ACTIONS(2649), - [aux_sym_preproc_include_token1] = ACTIONS(2649), - [aux_sym_preproc_def_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token1] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), - [sym_preproc_directive] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym_typedef] = ACTIONS(2649), - [anon_sym_extern] = ACTIONS(2649), - [anon_sym___attribute__] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), - [anon_sym___declspec] = ACTIONS(2649), - [anon_sym___based] = ACTIONS(2649), - [anon_sym___cdecl] = ACTIONS(2649), - [anon_sym___clrcall] = ACTIONS(2649), - [anon_sym___stdcall] = ACTIONS(2649), - [anon_sym___fastcall] = ACTIONS(2649), - [anon_sym___thiscall] = ACTIONS(2649), - [anon_sym___vectorcall] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_RBRACE] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_register] = ACTIONS(2649), - [anon_sym_inline] = ACTIONS(2649), - [anon_sym_thread_local] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_volatile] = ACTIONS(2649), - [anon_sym_restrict] = ACTIONS(2649), - [anon_sym__Atomic] = ACTIONS(2649), - [anon_sym_mutable] = ACTIONS(2649), - [anon_sym_constexpr] = ACTIONS(2649), - [anon_sym_constinit] = ACTIONS(2649), - [anon_sym_consteval] = ACTIONS(2649), - [anon_sym_signed] = ACTIONS(2649), - [anon_sym_unsigned] = ACTIONS(2649), - [anon_sym_long] = ACTIONS(2649), - [anon_sym_short] = ACTIONS(2649), - [sym_primitive_type] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_class] = ACTIONS(2649), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_switch] = ACTIONS(2649), - [anon_sym_case] = ACTIONS(2649), - [anon_sym_default] = ACTIONS(2649), - [anon_sym_while] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_compl] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_PLUS_PLUS] = ACTIONS(2651), - [anon_sym_sizeof] = ACTIONS(2649), - [sym_number_literal] = ACTIONS(2651), - [anon_sym_L_SQUOTE] = ACTIONS(2651), - [anon_sym_u_SQUOTE] = ACTIONS(2651), - [anon_sym_U_SQUOTE] = ACTIONS(2651), - [anon_sym_u8_SQUOTE] = ACTIONS(2651), - [anon_sym_SQUOTE] = ACTIONS(2651), - [anon_sym_L_DQUOTE] = ACTIONS(2651), - [anon_sym_u_DQUOTE] = ACTIONS(2651), - [anon_sym_U_DQUOTE] = ACTIONS(2651), - [anon_sym_u8_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_null] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2649), - [anon_sym_decltype] = ACTIONS(2649), - [anon_sym_virtual] = ACTIONS(2649), - [anon_sym_explicit] = ACTIONS(2649), - [anon_sym_typename] = ACTIONS(2649), - [anon_sym_template] = ACTIONS(2649), - [anon_sym_operator] = ACTIONS(2649), - [anon_sym_try] = ACTIONS(2649), - [anon_sym_delete] = ACTIONS(2649), - [anon_sym_throw] = ACTIONS(2649), - [anon_sym_namespace] = ACTIONS(2649), - [anon_sym_using] = ACTIONS(2649), - [anon_sym_static_assert] = ACTIONS(2649), - [anon_sym_concept] = ACTIONS(2649), - [anon_sym_co_return] = ACTIONS(2649), - [anon_sym_co_yield] = ACTIONS(2649), - [anon_sym_R_DQUOTE] = ACTIONS(2651), - [anon_sym_LR_DQUOTE] = ACTIONS(2651), - [anon_sym_uR_DQUOTE] = ACTIONS(2651), - [anon_sym_UR_DQUOTE] = ACTIONS(2651), - [anon_sym_u8R_DQUOTE] = ACTIONS(2651), - [anon_sym_co_await] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2649), - [anon_sym_requires] = ACTIONS(2649), - [sym_this] = ACTIONS(2649), - [sym_nullptr] = ACTIONS(2649), - }, - [1024] = { - [sym_identifier] = ACTIONS(2765), - [aux_sym_preproc_include_token1] = ACTIONS(2765), - [aux_sym_preproc_def_token1] = ACTIONS(2765), - [aux_sym_preproc_if_token1] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), - [sym_preproc_directive] = ACTIONS(2765), - [anon_sym_LPAREN2] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2767), - [anon_sym_AMP_AMP] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2765), - [anon_sym_extern] = ACTIONS(2765), - [anon_sym___attribute__] = ACTIONS(2765), - [anon_sym_COLON_COLON] = ACTIONS(2767), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), - [anon_sym___declspec] = ACTIONS(2765), - [anon_sym___based] = ACTIONS(2765), - [anon_sym___cdecl] = ACTIONS(2765), - [anon_sym___clrcall] = ACTIONS(2765), - [anon_sym___stdcall] = ACTIONS(2765), - [anon_sym___fastcall] = ACTIONS(2765), - [anon_sym___thiscall] = ACTIONS(2765), - [anon_sym___vectorcall] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_RBRACE] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_register] = ACTIONS(2765), - [anon_sym_inline] = ACTIONS(2765), - [anon_sym_thread_local] = ACTIONS(2765), - [anon_sym_const] = ACTIONS(2765), - [anon_sym_volatile] = ACTIONS(2765), - [anon_sym_restrict] = ACTIONS(2765), - [anon_sym__Atomic] = ACTIONS(2765), - [anon_sym_mutable] = ACTIONS(2765), - [anon_sym_constexpr] = ACTIONS(2765), - [anon_sym_constinit] = ACTIONS(2765), - [anon_sym_consteval] = ACTIONS(2765), - [anon_sym_signed] = ACTIONS(2765), - [anon_sym_unsigned] = ACTIONS(2765), - [anon_sym_long] = ACTIONS(2765), - [anon_sym_short] = ACTIONS(2765), - [sym_primitive_type] = ACTIONS(2765), - [anon_sym_enum] = ACTIONS(2765), - [anon_sym_class] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2765), - [anon_sym_union] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_switch] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_default] = ACTIONS(2765), - [anon_sym_while] = ACTIONS(2765), - [anon_sym_do] = ACTIONS(2765), - [anon_sym_for] = ACTIONS(2765), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2765), - [anon_sym_continue] = ACTIONS(2765), - [anon_sym_goto] = ACTIONS(2765), - [anon_sym_not] = ACTIONS(2765), - [anon_sym_compl] = ACTIONS(2765), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2765), - [sym_number_literal] = ACTIONS(2767), - [anon_sym_L_SQUOTE] = ACTIONS(2767), - [anon_sym_u_SQUOTE] = ACTIONS(2767), - [anon_sym_U_SQUOTE] = ACTIONS(2767), - [anon_sym_u8_SQUOTE] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_L_DQUOTE] = ACTIONS(2767), - [anon_sym_u_DQUOTE] = ACTIONS(2767), - [anon_sym_U_DQUOTE] = ACTIONS(2767), - [anon_sym_u8_DQUOTE] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [sym_true] = ACTIONS(2765), - [sym_false] = ACTIONS(2765), - [sym_null] = ACTIONS(2765), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2765), - [anon_sym_decltype] = ACTIONS(2765), - [anon_sym_virtual] = ACTIONS(2765), - [anon_sym_explicit] = ACTIONS(2765), - [anon_sym_typename] = ACTIONS(2765), - [anon_sym_template] = ACTIONS(2765), - [anon_sym_operator] = ACTIONS(2765), - [anon_sym_try] = ACTIONS(2765), - [anon_sym_delete] = ACTIONS(2765), - [anon_sym_throw] = ACTIONS(2765), - [anon_sym_namespace] = ACTIONS(2765), - [anon_sym_using] = ACTIONS(2765), - [anon_sym_static_assert] = ACTIONS(2765), - [anon_sym_concept] = ACTIONS(2765), - [anon_sym_co_return] = ACTIONS(2765), - [anon_sym_co_yield] = ACTIONS(2765), - [anon_sym_R_DQUOTE] = ACTIONS(2767), - [anon_sym_LR_DQUOTE] = ACTIONS(2767), - [anon_sym_uR_DQUOTE] = ACTIONS(2767), - [anon_sym_UR_DQUOTE] = ACTIONS(2767), - [anon_sym_u8R_DQUOTE] = ACTIONS(2767), - [anon_sym_co_await] = ACTIONS(2765), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_requires] = ACTIONS(2765), - [sym_this] = ACTIONS(2765), - [sym_nullptr] = ACTIONS(2765), - }, - [1025] = { - [sym_identifier] = ACTIONS(2769), - [aux_sym_preproc_include_token1] = ACTIONS(2769), - [aux_sym_preproc_def_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), - [sym_preproc_directive] = ACTIONS(2769), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym___attribute__] = ACTIONS(2769), - [anon_sym_COLON_COLON] = ACTIONS(2771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), - [anon_sym___declspec] = ACTIONS(2769), - [anon_sym___based] = ACTIONS(2769), - [anon_sym___cdecl] = ACTIONS(2769), - [anon_sym___clrcall] = ACTIONS(2769), - [anon_sym___stdcall] = ACTIONS(2769), - [anon_sym___fastcall] = ACTIONS(2769), - [anon_sym___thiscall] = ACTIONS(2769), - [anon_sym___vectorcall] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_RBRACE] = ACTIONS(2771), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym_thread_local] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym_mutable] = ACTIONS(2769), - [anon_sym_constexpr] = ACTIONS(2769), - [anon_sym_constinit] = ACTIONS(2769), - [anon_sym_consteval] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym_not] = ACTIONS(2769), - [anon_sym_compl] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_L_SQUOTE] = ACTIONS(2771), - [anon_sym_u_SQUOTE] = ACTIONS(2771), - [anon_sym_U_SQUOTE] = ACTIONS(2771), - [anon_sym_u8_SQUOTE] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_L_DQUOTE] = ACTIONS(2771), - [anon_sym_u_DQUOTE] = ACTIONS(2771), - [anon_sym_U_DQUOTE] = ACTIONS(2771), - [anon_sym_u8_DQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [sym_null] = ACTIONS(2769), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2769), - [anon_sym_decltype] = ACTIONS(2769), - [anon_sym_virtual] = ACTIONS(2769), - [anon_sym_explicit] = ACTIONS(2769), - [anon_sym_typename] = ACTIONS(2769), - [anon_sym_template] = ACTIONS(2769), - [anon_sym_operator] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_delete] = ACTIONS(2769), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_namespace] = ACTIONS(2769), - [anon_sym_using] = ACTIONS(2769), - [anon_sym_static_assert] = ACTIONS(2769), - [anon_sym_concept] = ACTIONS(2769), - [anon_sym_co_return] = ACTIONS(2769), - [anon_sym_co_yield] = ACTIONS(2769), - [anon_sym_R_DQUOTE] = ACTIONS(2771), - [anon_sym_LR_DQUOTE] = ACTIONS(2771), - [anon_sym_uR_DQUOTE] = ACTIONS(2771), - [anon_sym_UR_DQUOTE] = ACTIONS(2771), - [anon_sym_u8R_DQUOTE] = ACTIONS(2771), - [anon_sym_co_await] = ACTIONS(2769), - [anon_sym_new] = ACTIONS(2769), - [anon_sym_requires] = ACTIONS(2769), - [sym_this] = ACTIONS(2769), - [sym_nullptr] = ACTIONS(2769), - }, - [1026] = { - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym_not] = ACTIONS(2773), - [anon_sym_compl] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_R_DQUOTE] = ACTIONS(2775), - [anon_sym_LR_DQUOTE] = ACTIONS(2775), - [anon_sym_uR_DQUOTE] = ACTIONS(2775), - [anon_sym_UR_DQUOTE] = ACTIONS(2775), - [anon_sym_u8R_DQUOTE] = ACTIONS(2775), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), - [sym_nullptr] = ACTIONS(2773), - }, - [1027] = { - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym_not] = ACTIONS(2773), - [anon_sym_compl] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_R_DQUOTE] = ACTIONS(2775), - [anon_sym_LR_DQUOTE] = ACTIONS(2775), - [anon_sym_uR_DQUOTE] = ACTIONS(2775), - [anon_sym_UR_DQUOTE] = ACTIONS(2775), - [anon_sym_u8R_DQUOTE] = ACTIONS(2775), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), - [sym_nullptr] = ACTIONS(2773), - }, - [1028] = { - [sym_identifier] = ACTIONS(2785), - [aux_sym_preproc_include_token1] = ACTIONS(2785), - [aux_sym_preproc_def_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), - [sym_preproc_directive] = ACTIONS(2785), - [anon_sym_LPAREN2] = ACTIONS(2787), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_TILDE] = ACTIONS(2787), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_SEMI] = ACTIONS(2787), - [anon_sym_typedef] = ACTIONS(2785), - [anon_sym_extern] = ACTIONS(2785), - [anon_sym___attribute__] = ACTIONS(2785), - [anon_sym_COLON_COLON] = ACTIONS(2787), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), - [anon_sym___declspec] = ACTIONS(2785), - [anon_sym___based] = ACTIONS(2785), - [anon_sym___cdecl] = ACTIONS(2785), - [anon_sym___clrcall] = ACTIONS(2785), - [anon_sym___stdcall] = ACTIONS(2785), - [anon_sym___fastcall] = ACTIONS(2785), - [anon_sym___thiscall] = ACTIONS(2785), - [anon_sym___vectorcall] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_RBRACE] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_register] = ACTIONS(2785), - [anon_sym_inline] = ACTIONS(2785), - [anon_sym_thread_local] = ACTIONS(2785), - [anon_sym_const] = ACTIONS(2785), - [anon_sym_volatile] = ACTIONS(2785), - [anon_sym_restrict] = ACTIONS(2785), - [anon_sym__Atomic] = ACTIONS(2785), - [anon_sym_mutable] = ACTIONS(2785), - [anon_sym_constexpr] = ACTIONS(2785), - [anon_sym_constinit] = ACTIONS(2785), - [anon_sym_consteval] = ACTIONS(2785), - [anon_sym_signed] = ACTIONS(2785), - [anon_sym_unsigned] = ACTIONS(2785), - [anon_sym_long] = ACTIONS(2785), - [anon_sym_short] = ACTIONS(2785), - [sym_primitive_type] = ACTIONS(2785), - [anon_sym_enum] = ACTIONS(2785), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(2785), - [anon_sym_union] = ACTIONS(2785), - [anon_sym_if] = ACTIONS(2785), - [anon_sym_switch] = ACTIONS(2785), - [anon_sym_case] = ACTIONS(2785), - [anon_sym_default] = ACTIONS(2785), - [anon_sym_while] = ACTIONS(2785), - [anon_sym_do] = ACTIONS(2785), - [anon_sym_for] = ACTIONS(2785), - [anon_sym_return] = ACTIONS(2785), - [anon_sym_break] = ACTIONS(2785), - [anon_sym_continue] = ACTIONS(2785), - [anon_sym_goto] = ACTIONS(2785), - [anon_sym_not] = ACTIONS(2785), - [anon_sym_compl] = ACTIONS(2785), - [anon_sym_DASH_DASH] = ACTIONS(2787), - [anon_sym_PLUS_PLUS] = ACTIONS(2787), - [anon_sym_sizeof] = ACTIONS(2785), - [sym_number_literal] = ACTIONS(2787), - [anon_sym_L_SQUOTE] = ACTIONS(2787), - [anon_sym_u_SQUOTE] = ACTIONS(2787), - [anon_sym_U_SQUOTE] = ACTIONS(2787), - [anon_sym_u8_SQUOTE] = ACTIONS(2787), - [anon_sym_SQUOTE] = ACTIONS(2787), - [anon_sym_L_DQUOTE] = ACTIONS(2787), - [anon_sym_u_DQUOTE] = ACTIONS(2787), - [anon_sym_U_DQUOTE] = ACTIONS(2787), - [anon_sym_u8_DQUOTE] = ACTIONS(2787), - [anon_sym_DQUOTE] = ACTIONS(2787), - [sym_true] = ACTIONS(2785), - [sym_false] = ACTIONS(2785), - [sym_null] = ACTIONS(2785), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2785), - [anon_sym_decltype] = ACTIONS(2785), - [anon_sym_virtual] = ACTIONS(2785), - [anon_sym_explicit] = ACTIONS(2785), - [anon_sym_typename] = ACTIONS(2785), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_operator] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2785), - [anon_sym_delete] = ACTIONS(2785), - [anon_sym_throw] = ACTIONS(2785), - [anon_sym_namespace] = ACTIONS(2785), - [anon_sym_using] = ACTIONS(2785), - [anon_sym_static_assert] = ACTIONS(2785), - [anon_sym_concept] = ACTIONS(2785), - [anon_sym_co_return] = ACTIONS(2785), - [anon_sym_co_yield] = ACTIONS(2785), - [anon_sym_R_DQUOTE] = ACTIONS(2787), - [anon_sym_LR_DQUOTE] = ACTIONS(2787), - [anon_sym_uR_DQUOTE] = ACTIONS(2787), - [anon_sym_UR_DQUOTE] = ACTIONS(2787), - [anon_sym_u8R_DQUOTE] = ACTIONS(2787), - [anon_sym_co_await] = ACTIONS(2785), - [anon_sym_new] = ACTIONS(2785), - [anon_sym_requires] = ACTIONS(2785), - [sym_this] = ACTIONS(2785), - [sym_nullptr] = ACTIONS(2785), - }, - [1029] = { - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_include_token1] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2789), - [aux_sym_preproc_if_token1] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), - [sym_preproc_directive] = ACTIONS(2789), - [anon_sym_LPAREN2] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_TILDE] = ACTIONS(2791), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_AMP_AMP] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2789), - [anon_sym_extern] = ACTIONS(2789), - [anon_sym___attribute__] = ACTIONS(2789), - [anon_sym_COLON_COLON] = ACTIONS(2791), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), - [anon_sym___declspec] = ACTIONS(2789), - [anon_sym___based] = ACTIONS(2789), - [anon_sym___cdecl] = ACTIONS(2789), - [anon_sym___clrcall] = ACTIONS(2789), - [anon_sym___stdcall] = ACTIONS(2789), - [anon_sym___fastcall] = ACTIONS(2789), - [anon_sym___thiscall] = ACTIONS(2789), - [anon_sym___vectorcall] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2789), - [anon_sym_static] = ACTIONS(2789), - [anon_sym_register] = ACTIONS(2789), - [anon_sym_inline] = ACTIONS(2789), - [anon_sym_thread_local] = ACTIONS(2789), - [anon_sym_const] = ACTIONS(2789), - [anon_sym_volatile] = ACTIONS(2789), - [anon_sym_restrict] = ACTIONS(2789), - [anon_sym__Atomic] = ACTIONS(2789), - [anon_sym_mutable] = ACTIONS(2789), - [anon_sym_constexpr] = ACTIONS(2789), - [anon_sym_constinit] = ACTIONS(2789), - [anon_sym_consteval] = ACTIONS(2789), - [anon_sym_signed] = ACTIONS(2789), - [anon_sym_unsigned] = ACTIONS(2789), - [anon_sym_long] = ACTIONS(2789), - [anon_sym_short] = ACTIONS(2789), - [sym_primitive_type] = ACTIONS(2789), - [anon_sym_enum] = ACTIONS(2789), - [anon_sym_class] = ACTIONS(2789), - [anon_sym_struct] = ACTIONS(2789), - [anon_sym_union] = ACTIONS(2789), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_switch] = ACTIONS(2789), - [anon_sym_case] = ACTIONS(2789), - [anon_sym_default] = ACTIONS(2789), - [anon_sym_while] = ACTIONS(2789), - [anon_sym_do] = ACTIONS(2789), - [anon_sym_for] = ACTIONS(2789), - [anon_sym_return] = ACTIONS(2789), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2789), - [anon_sym_goto] = ACTIONS(2789), - [anon_sym_not] = ACTIONS(2789), - [anon_sym_compl] = ACTIONS(2789), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_sizeof] = ACTIONS(2789), - [sym_number_literal] = ACTIONS(2791), - [anon_sym_L_SQUOTE] = ACTIONS(2791), - [anon_sym_u_SQUOTE] = ACTIONS(2791), - [anon_sym_U_SQUOTE] = ACTIONS(2791), - [anon_sym_u8_SQUOTE] = ACTIONS(2791), - [anon_sym_SQUOTE] = ACTIONS(2791), - [anon_sym_L_DQUOTE] = ACTIONS(2791), - [anon_sym_u_DQUOTE] = ACTIONS(2791), - [anon_sym_U_DQUOTE] = ACTIONS(2791), - [anon_sym_u8_DQUOTE] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2791), - [sym_true] = ACTIONS(2789), - [sym_false] = ACTIONS(2789), - [sym_null] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2789), - [anon_sym_decltype] = ACTIONS(2789), - [anon_sym_virtual] = ACTIONS(2789), - [anon_sym_explicit] = ACTIONS(2789), - [anon_sym_typename] = ACTIONS(2789), - [anon_sym_template] = ACTIONS(2789), - [anon_sym_operator] = ACTIONS(2789), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_delete] = ACTIONS(2789), - [anon_sym_throw] = ACTIONS(2789), - [anon_sym_namespace] = ACTIONS(2789), - [anon_sym_using] = ACTIONS(2789), - [anon_sym_static_assert] = ACTIONS(2789), - [anon_sym_concept] = ACTIONS(2789), - [anon_sym_co_return] = ACTIONS(2789), - [anon_sym_co_yield] = ACTIONS(2789), - [anon_sym_R_DQUOTE] = ACTIONS(2791), - [anon_sym_LR_DQUOTE] = ACTIONS(2791), - [anon_sym_uR_DQUOTE] = ACTIONS(2791), - [anon_sym_UR_DQUOTE] = ACTIONS(2791), - [anon_sym_u8R_DQUOTE] = ACTIONS(2791), - [anon_sym_co_await] = ACTIONS(2789), - [anon_sym_new] = ACTIONS(2789), - [anon_sym_requires] = ACTIONS(2789), - [sym_this] = ACTIONS(2789), - [sym_nullptr] = ACTIONS(2789), - }, - [1030] = { - [sym_identifier] = ACTIONS(2649), - [aux_sym_preproc_include_token1] = ACTIONS(2649), - [aux_sym_preproc_def_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token2] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), - [sym_preproc_directive] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym_typedef] = ACTIONS(2649), - [anon_sym_extern] = ACTIONS(2649), - [anon_sym___attribute__] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), - [anon_sym___declspec] = ACTIONS(2649), - [anon_sym___based] = ACTIONS(2649), - [anon_sym___cdecl] = ACTIONS(2649), - [anon_sym___clrcall] = ACTIONS(2649), - [anon_sym___stdcall] = ACTIONS(2649), - [anon_sym___fastcall] = ACTIONS(2649), - [anon_sym___thiscall] = ACTIONS(2649), - [anon_sym___vectorcall] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_register] = ACTIONS(2649), - [anon_sym_inline] = ACTIONS(2649), - [anon_sym_thread_local] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_volatile] = ACTIONS(2649), - [anon_sym_restrict] = ACTIONS(2649), - [anon_sym__Atomic] = ACTIONS(2649), - [anon_sym_mutable] = ACTIONS(2649), - [anon_sym_constexpr] = ACTIONS(2649), - [anon_sym_constinit] = ACTIONS(2649), - [anon_sym_consteval] = ACTIONS(2649), - [anon_sym_signed] = ACTIONS(2649), - [anon_sym_unsigned] = ACTIONS(2649), - [anon_sym_long] = ACTIONS(2649), - [anon_sym_short] = ACTIONS(2649), - [sym_primitive_type] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_class] = ACTIONS(2649), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_switch] = ACTIONS(2649), - [anon_sym_case] = ACTIONS(2649), - [anon_sym_default] = ACTIONS(2649), - [anon_sym_while] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_compl] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_PLUS_PLUS] = ACTIONS(2651), - [anon_sym_sizeof] = ACTIONS(2649), - [sym_number_literal] = ACTIONS(2651), - [anon_sym_L_SQUOTE] = ACTIONS(2651), - [anon_sym_u_SQUOTE] = ACTIONS(2651), - [anon_sym_U_SQUOTE] = ACTIONS(2651), - [anon_sym_u8_SQUOTE] = ACTIONS(2651), - [anon_sym_SQUOTE] = ACTIONS(2651), - [anon_sym_L_DQUOTE] = ACTIONS(2651), - [anon_sym_u_DQUOTE] = ACTIONS(2651), - [anon_sym_U_DQUOTE] = ACTIONS(2651), - [anon_sym_u8_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_null] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2649), - [anon_sym_decltype] = ACTIONS(2649), - [anon_sym_virtual] = ACTIONS(2649), - [anon_sym_explicit] = ACTIONS(2649), - [anon_sym_typename] = ACTIONS(2649), - [anon_sym_template] = ACTIONS(2649), - [anon_sym_operator] = ACTIONS(2649), - [anon_sym_try] = ACTIONS(2649), - [anon_sym_delete] = ACTIONS(2649), - [anon_sym_throw] = ACTIONS(2649), - [anon_sym_namespace] = ACTIONS(2649), - [anon_sym_using] = ACTIONS(2649), - [anon_sym_static_assert] = ACTIONS(2649), - [anon_sym_concept] = ACTIONS(2649), - [anon_sym_co_return] = ACTIONS(2649), - [anon_sym_co_yield] = ACTIONS(2649), - [anon_sym_R_DQUOTE] = ACTIONS(2651), - [anon_sym_LR_DQUOTE] = ACTIONS(2651), - [anon_sym_uR_DQUOTE] = ACTIONS(2651), - [anon_sym_UR_DQUOTE] = ACTIONS(2651), - [anon_sym_u8R_DQUOTE] = ACTIONS(2651), - [anon_sym_co_await] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2649), - [anon_sym_requires] = ACTIONS(2649), - [sym_this] = ACTIONS(2649), - [sym_nullptr] = ACTIONS(2649), - }, - [1031] = { - [sym_identifier] = ACTIONS(2793), - [aux_sym_preproc_include_token1] = ACTIONS(2793), - [aux_sym_preproc_def_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), - [sym_preproc_directive] = ACTIONS(2793), - [anon_sym_LPAREN2] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_AMP_AMP] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(2793), - [anon_sym___attribute__] = ACTIONS(2793), - [anon_sym_COLON_COLON] = ACTIONS(2795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), - [anon_sym___declspec] = ACTIONS(2793), - [anon_sym___based] = ACTIONS(2793), - [anon_sym___cdecl] = ACTIONS(2793), - [anon_sym___clrcall] = ACTIONS(2793), - [anon_sym___stdcall] = ACTIONS(2793), - [anon_sym___fastcall] = ACTIONS(2793), - [anon_sym___thiscall] = ACTIONS(2793), - [anon_sym___vectorcall] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2793), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_register] = ACTIONS(2793), - [anon_sym_inline] = ACTIONS(2793), - [anon_sym_thread_local] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_volatile] = ACTIONS(2793), - [anon_sym_restrict] = ACTIONS(2793), - [anon_sym__Atomic] = ACTIONS(2793), - [anon_sym_mutable] = ACTIONS(2793), - [anon_sym_constexpr] = ACTIONS(2793), - [anon_sym_constinit] = ACTIONS(2793), - [anon_sym_consteval] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2793), - [anon_sym_unsigned] = ACTIONS(2793), - [anon_sym_long] = ACTIONS(2793), - [anon_sym_short] = ACTIONS(2793), - [sym_primitive_type] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_class] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_union] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_switch] = ACTIONS(2793), - [anon_sym_case] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_do] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_goto] = ACTIONS(2793), - [anon_sym_not] = ACTIONS(2793), - [anon_sym_compl] = ACTIONS(2793), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_sizeof] = ACTIONS(2793), - [sym_number_literal] = ACTIONS(2795), - [anon_sym_L_SQUOTE] = ACTIONS(2795), - [anon_sym_u_SQUOTE] = ACTIONS(2795), - [anon_sym_U_SQUOTE] = ACTIONS(2795), - [anon_sym_u8_SQUOTE] = ACTIONS(2795), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_L_DQUOTE] = ACTIONS(2795), - [anon_sym_u_DQUOTE] = ACTIONS(2795), - [anon_sym_U_DQUOTE] = ACTIONS(2795), - [anon_sym_u8_DQUOTE] = ACTIONS(2795), - [anon_sym_DQUOTE] = ACTIONS(2795), - [sym_true] = ACTIONS(2793), - [sym_false] = ACTIONS(2793), - [sym_null] = ACTIONS(2793), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2793), - [anon_sym_decltype] = ACTIONS(2793), - [anon_sym_virtual] = ACTIONS(2793), - [anon_sym_explicit] = ACTIONS(2793), - [anon_sym_typename] = ACTIONS(2793), - [anon_sym_template] = ACTIONS(2793), - [anon_sym_operator] = ACTIONS(2793), - [anon_sym_try] = ACTIONS(2793), - [anon_sym_delete] = ACTIONS(2793), - [anon_sym_throw] = ACTIONS(2793), - [anon_sym_namespace] = ACTIONS(2793), - [anon_sym_using] = ACTIONS(2793), - [anon_sym_static_assert] = ACTIONS(2793), - [anon_sym_concept] = ACTIONS(2793), - [anon_sym_co_return] = ACTIONS(2793), - [anon_sym_co_yield] = ACTIONS(2793), - [anon_sym_R_DQUOTE] = ACTIONS(2795), - [anon_sym_LR_DQUOTE] = ACTIONS(2795), - [anon_sym_uR_DQUOTE] = ACTIONS(2795), - [anon_sym_UR_DQUOTE] = ACTIONS(2795), - [anon_sym_u8R_DQUOTE] = ACTIONS(2795), - [anon_sym_co_await] = ACTIONS(2793), - [anon_sym_new] = ACTIONS(2793), - [anon_sym_requires] = ACTIONS(2793), - [sym_this] = ACTIONS(2793), - [sym_nullptr] = ACTIONS(2793), - }, - [1032] = { - [sym_identifier] = ACTIONS(2801), - [aux_sym_preproc_include_token1] = ACTIONS(2801), - [aux_sym_preproc_def_token1] = ACTIONS(2801), - [aux_sym_preproc_if_token1] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), - [sym_preproc_directive] = ACTIONS(2801), - [anon_sym_LPAREN2] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_AMP_AMP] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2801), - [anon_sym_extern] = ACTIONS(2801), - [anon_sym___attribute__] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), - [anon_sym___declspec] = ACTIONS(2801), - [anon_sym___based] = ACTIONS(2801), - [anon_sym___cdecl] = ACTIONS(2801), - [anon_sym___clrcall] = ACTIONS(2801), - [anon_sym___stdcall] = ACTIONS(2801), - [anon_sym___fastcall] = ACTIONS(2801), - [anon_sym___thiscall] = ACTIONS(2801), - [anon_sym___vectorcall] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_register] = ACTIONS(2801), - [anon_sym_inline] = ACTIONS(2801), - [anon_sym_thread_local] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_volatile] = ACTIONS(2801), - [anon_sym_restrict] = ACTIONS(2801), - [anon_sym__Atomic] = ACTIONS(2801), - [anon_sym_mutable] = ACTIONS(2801), - [anon_sym_constexpr] = ACTIONS(2801), - [anon_sym_constinit] = ACTIONS(2801), - [anon_sym_consteval] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2801), - [anon_sym_unsigned] = ACTIONS(2801), - [anon_sym_long] = ACTIONS(2801), - [anon_sym_short] = ACTIONS(2801), - [sym_primitive_type] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_switch] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_do] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_goto] = ACTIONS(2801), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2803), - [anon_sym_PLUS_PLUS] = ACTIONS(2803), - [anon_sym_sizeof] = ACTIONS(2801), - [sym_number_literal] = ACTIONS(2803), - [anon_sym_L_SQUOTE] = ACTIONS(2803), - [anon_sym_u_SQUOTE] = ACTIONS(2803), - [anon_sym_U_SQUOTE] = ACTIONS(2803), - [anon_sym_u8_SQUOTE] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_L_DQUOTE] = ACTIONS(2803), - [anon_sym_u_DQUOTE] = ACTIONS(2803), - [anon_sym_U_DQUOTE] = ACTIONS(2803), - [anon_sym_u8_DQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_null] = ACTIONS(2801), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2801), - [anon_sym_decltype] = ACTIONS(2801), - [anon_sym_virtual] = ACTIONS(2801), - [anon_sym_explicit] = ACTIONS(2801), - [anon_sym_typename] = ACTIONS(2801), - [anon_sym_template] = ACTIONS(2801), - [anon_sym_operator] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [anon_sym_delete] = ACTIONS(2801), - [anon_sym_throw] = ACTIONS(2801), - [anon_sym_namespace] = ACTIONS(2801), - [anon_sym_using] = ACTIONS(2801), - [anon_sym_static_assert] = ACTIONS(2801), - [anon_sym_concept] = ACTIONS(2801), - [anon_sym_co_return] = ACTIONS(2801), - [anon_sym_co_yield] = ACTIONS(2801), - [anon_sym_R_DQUOTE] = ACTIONS(2803), - [anon_sym_LR_DQUOTE] = ACTIONS(2803), - [anon_sym_uR_DQUOTE] = ACTIONS(2803), - [anon_sym_UR_DQUOTE] = ACTIONS(2803), - [anon_sym_u8R_DQUOTE] = ACTIONS(2803), - [anon_sym_co_await] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_requires] = ACTIONS(2801), - [sym_this] = ACTIONS(2801), - [sym_nullptr] = ACTIONS(2801), - }, - [1033] = { - [sym_identifier] = ACTIONS(2805), - [aux_sym_preproc_include_token1] = ACTIONS(2805), - [aux_sym_preproc_def_token1] = ACTIONS(2805), - [aux_sym_preproc_if_token1] = ACTIONS(2805), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_AMP_AMP] = ACTIONS(2807), - [anon_sym_AMP] = ACTIONS(2805), - [anon_sym_SEMI] = ACTIONS(2807), - [anon_sym_typedef] = ACTIONS(2805), - [anon_sym_extern] = ACTIONS(2805), - [anon_sym___attribute__] = ACTIONS(2805), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), - [anon_sym___declspec] = ACTIONS(2805), - [anon_sym___based] = ACTIONS(2805), - [anon_sym___cdecl] = ACTIONS(2805), - [anon_sym___clrcall] = ACTIONS(2805), - [anon_sym___stdcall] = ACTIONS(2805), - [anon_sym___fastcall] = ACTIONS(2805), - [anon_sym___thiscall] = ACTIONS(2805), - [anon_sym___vectorcall] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_RBRACE] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2805), - [anon_sym_static] = ACTIONS(2805), - [anon_sym_register] = ACTIONS(2805), - [anon_sym_inline] = ACTIONS(2805), - [anon_sym_thread_local] = ACTIONS(2805), - [anon_sym_const] = ACTIONS(2805), - [anon_sym_volatile] = ACTIONS(2805), - [anon_sym_restrict] = ACTIONS(2805), - [anon_sym__Atomic] = ACTIONS(2805), - [anon_sym_mutable] = ACTIONS(2805), - [anon_sym_constexpr] = ACTIONS(2805), - [anon_sym_constinit] = ACTIONS(2805), - [anon_sym_consteval] = ACTIONS(2805), - [anon_sym_signed] = ACTIONS(2805), - [anon_sym_unsigned] = ACTIONS(2805), - [anon_sym_long] = ACTIONS(2805), - [anon_sym_short] = ACTIONS(2805), - [sym_primitive_type] = ACTIONS(2805), - [anon_sym_enum] = ACTIONS(2805), - [anon_sym_class] = ACTIONS(2805), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_union] = ACTIONS(2805), - [anon_sym_if] = ACTIONS(2805), - [anon_sym_switch] = ACTIONS(2805), - [anon_sym_case] = ACTIONS(2805), - [anon_sym_default] = ACTIONS(2805), - [anon_sym_while] = ACTIONS(2805), - [anon_sym_do] = ACTIONS(2805), - [anon_sym_for] = ACTIONS(2805), - [anon_sym_return] = ACTIONS(2805), - [anon_sym_break] = ACTIONS(2805), - [anon_sym_continue] = ACTIONS(2805), - [anon_sym_goto] = ACTIONS(2805), - [anon_sym_not] = ACTIONS(2805), - [anon_sym_compl] = ACTIONS(2805), - [anon_sym_DASH_DASH] = ACTIONS(2807), - [anon_sym_PLUS_PLUS] = ACTIONS(2807), - [anon_sym_sizeof] = ACTIONS(2805), - [sym_number_literal] = ACTIONS(2807), - [anon_sym_L_SQUOTE] = ACTIONS(2807), - [anon_sym_u_SQUOTE] = ACTIONS(2807), - [anon_sym_U_SQUOTE] = ACTIONS(2807), - [anon_sym_u8_SQUOTE] = ACTIONS(2807), - [anon_sym_SQUOTE] = ACTIONS(2807), - [anon_sym_L_DQUOTE] = ACTIONS(2807), - [anon_sym_u_DQUOTE] = ACTIONS(2807), - [anon_sym_U_DQUOTE] = ACTIONS(2807), - [anon_sym_u8_DQUOTE] = ACTIONS(2807), - [anon_sym_DQUOTE] = ACTIONS(2807), - [sym_true] = ACTIONS(2805), - [sym_false] = ACTIONS(2805), - [sym_null] = ACTIONS(2805), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2805), - [anon_sym_decltype] = ACTIONS(2805), - [anon_sym_virtual] = ACTIONS(2805), - [anon_sym_explicit] = ACTIONS(2805), - [anon_sym_typename] = ACTIONS(2805), - [anon_sym_template] = ACTIONS(2805), - [anon_sym_operator] = ACTIONS(2805), - [anon_sym_try] = ACTIONS(2805), - [anon_sym_delete] = ACTIONS(2805), - [anon_sym_throw] = ACTIONS(2805), - [anon_sym_namespace] = ACTIONS(2805), - [anon_sym_using] = ACTIONS(2805), - [anon_sym_static_assert] = ACTIONS(2805), - [anon_sym_concept] = ACTIONS(2805), - [anon_sym_co_return] = ACTIONS(2805), - [anon_sym_co_yield] = ACTIONS(2805), - [anon_sym_R_DQUOTE] = ACTIONS(2807), - [anon_sym_LR_DQUOTE] = ACTIONS(2807), - [anon_sym_uR_DQUOTE] = ACTIONS(2807), - [anon_sym_UR_DQUOTE] = ACTIONS(2807), - [anon_sym_u8R_DQUOTE] = ACTIONS(2807), - [anon_sym_co_await] = ACTIONS(2805), - [anon_sym_new] = ACTIONS(2805), - [anon_sym_requires] = ACTIONS(2805), - [sym_this] = ACTIONS(2805), - [sym_nullptr] = ACTIONS(2805), - }, - [1034] = { - [sym_identifier] = ACTIONS(2809), - [aux_sym_preproc_include_token1] = ACTIONS(2809), - [aux_sym_preproc_def_token1] = ACTIONS(2809), - [aux_sym_preproc_if_token1] = ACTIONS(2809), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2809), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2809), - [sym_preproc_directive] = ACTIONS(2809), - [anon_sym_LPAREN2] = ACTIONS(2811), - [anon_sym_BANG] = ACTIONS(2811), - [anon_sym_TILDE] = ACTIONS(2811), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_PLUS] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(2811), - [anon_sym_AMP] = ACTIONS(2809), - [anon_sym_SEMI] = ACTIONS(2811), - [anon_sym_typedef] = ACTIONS(2809), - [anon_sym_extern] = ACTIONS(2809), - [anon_sym___attribute__] = ACTIONS(2809), - [anon_sym_COLON_COLON] = ACTIONS(2811), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2811), - [anon_sym___declspec] = ACTIONS(2809), - [anon_sym___based] = ACTIONS(2809), - [anon_sym___cdecl] = ACTIONS(2809), - [anon_sym___clrcall] = ACTIONS(2809), - [anon_sym___stdcall] = ACTIONS(2809), - [anon_sym___fastcall] = ACTIONS(2809), - [anon_sym___thiscall] = ACTIONS(2809), - [anon_sym___vectorcall] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_RBRACE] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2809), - [anon_sym_static] = ACTIONS(2809), - [anon_sym_register] = ACTIONS(2809), - [anon_sym_inline] = ACTIONS(2809), - [anon_sym_thread_local] = ACTIONS(2809), - [anon_sym_const] = ACTIONS(2809), - [anon_sym_volatile] = ACTIONS(2809), - [anon_sym_restrict] = ACTIONS(2809), - [anon_sym__Atomic] = ACTIONS(2809), - [anon_sym_mutable] = ACTIONS(2809), - [anon_sym_constexpr] = ACTIONS(2809), - [anon_sym_constinit] = ACTIONS(2809), - [anon_sym_consteval] = ACTIONS(2809), - [anon_sym_signed] = ACTIONS(2809), - [anon_sym_unsigned] = ACTIONS(2809), - [anon_sym_long] = ACTIONS(2809), - [anon_sym_short] = ACTIONS(2809), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(2809), - [anon_sym_class] = ACTIONS(2809), - [anon_sym_struct] = ACTIONS(2809), - [anon_sym_union] = ACTIONS(2809), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_switch] = ACTIONS(2809), - [anon_sym_case] = ACTIONS(2809), - [anon_sym_default] = ACTIONS(2809), - [anon_sym_while] = ACTIONS(2809), - [anon_sym_do] = ACTIONS(2809), - [anon_sym_for] = ACTIONS(2809), - [anon_sym_return] = ACTIONS(2809), - [anon_sym_break] = ACTIONS(2809), - [anon_sym_continue] = ACTIONS(2809), - [anon_sym_goto] = ACTIONS(2809), - [anon_sym_not] = ACTIONS(2809), - [anon_sym_compl] = ACTIONS(2809), - [anon_sym_DASH_DASH] = ACTIONS(2811), - [anon_sym_PLUS_PLUS] = ACTIONS(2811), - [anon_sym_sizeof] = ACTIONS(2809), - [sym_number_literal] = ACTIONS(2811), - [anon_sym_L_SQUOTE] = ACTIONS(2811), - [anon_sym_u_SQUOTE] = ACTIONS(2811), - [anon_sym_U_SQUOTE] = ACTIONS(2811), - [anon_sym_u8_SQUOTE] = ACTIONS(2811), - [anon_sym_SQUOTE] = ACTIONS(2811), - [anon_sym_L_DQUOTE] = ACTIONS(2811), - [anon_sym_u_DQUOTE] = ACTIONS(2811), - [anon_sym_U_DQUOTE] = ACTIONS(2811), - [anon_sym_u8_DQUOTE] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym_true] = ACTIONS(2809), - [sym_false] = ACTIONS(2809), - [sym_null] = ACTIONS(2809), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2809), - [anon_sym_decltype] = ACTIONS(2809), - [anon_sym_virtual] = ACTIONS(2809), - [anon_sym_explicit] = ACTIONS(2809), - [anon_sym_typename] = ACTIONS(2809), - [anon_sym_template] = ACTIONS(2809), - [anon_sym_operator] = ACTIONS(2809), - [anon_sym_try] = ACTIONS(2809), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_throw] = ACTIONS(2809), - [anon_sym_namespace] = ACTIONS(2809), - [anon_sym_using] = ACTIONS(2809), - [anon_sym_static_assert] = ACTIONS(2809), - [anon_sym_concept] = ACTIONS(2809), - [anon_sym_co_return] = ACTIONS(2809), - [anon_sym_co_yield] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2811), - [anon_sym_LR_DQUOTE] = ACTIONS(2811), - [anon_sym_uR_DQUOTE] = ACTIONS(2811), - [anon_sym_UR_DQUOTE] = ACTIONS(2811), - [anon_sym_u8R_DQUOTE] = ACTIONS(2811), - [anon_sym_co_await] = ACTIONS(2809), - [anon_sym_new] = ACTIONS(2809), - [anon_sym_requires] = ACTIONS(2809), - [sym_this] = ACTIONS(2809), - [sym_nullptr] = ACTIONS(2809), - }, - [1035] = { - [sym_identifier] = ACTIONS(2813), - [aux_sym_preproc_include_token1] = ACTIONS(2813), - [aux_sym_preproc_def_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), - [sym_preproc_directive] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_typedef] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym___attribute__] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), - [anon_sym___declspec] = ACTIONS(2813), - [anon_sym___based] = ACTIONS(2813), - [anon_sym___cdecl] = ACTIONS(2813), - [anon_sym___clrcall] = ACTIONS(2813), - [anon_sym___stdcall] = ACTIONS(2813), - [anon_sym___fastcall] = ACTIONS(2813), - [anon_sym___thiscall] = ACTIONS(2813), - [anon_sym___vectorcall] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_register] = ACTIONS(2813), - [anon_sym_inline] = ACTIONS(2813), - [anon_sym_thread_local] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_volatile] = ACTIONS(2813), - [anon_sym_restrict] = ACTIONS(2813), - [anon_sym__Atomic] = ACTIONS(2813), - [anon_sym_mutable] = ACTIONS(2813), - [anon_sym_constexpr] = ACTIONS(2813), - [anon_sym_constinit] = ACTIONS(2813), - [anon_sym_consteval] = ACTIONS(2813), - [anon_sym_signed] = ACTIONS(2813), - [anon_sym_unsigned] = ACTIONS(2813), - [anon_sym_long] = ACTIONS(2813), - [anon_sym_short] = ACTIONS(2813), - [sym_primitive_type] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_switch] = ACTIONS(2813), - [anon_sym_case] = ACTIONS(2813), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_do] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_goto] = ACTIONS(2813), - [anon_sym_not] = ACTIONS(2813), - [anon_sym_compl] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_sizeof] = ACTIONS(2813), - [sym_number_literal] = ACTIONS(2815), - [anon_sym_L_SQUOTE] = ACTIONS(2815), - [anon_sym_u_SQUOTE] = ACTIONS(2815), - [anon_sym_U_SQUOTE] = ACTIONS(2815), - [anon_sym_u8_SQUOTE] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_L_DQUOTE] = ACTIONS(2815), - [anon_sym_u_DQUOTE] = ACTIONS(2815), - [anon_sym_U_DQUOTE] = ACTIONS(2815), - [anon_sym_u8_DQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [sym_null] = ACTIONS(2813), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2813), - [anon_sym_decltype] = ACTIONS(2813), - [anon_sym_virtual] = ACTIONS(2813), - [anon_sym_explicit] = ACTIONS(2813), - [anon_sym_typename] = ACTIONS(2813), - [anon_sym_template] = ACTIONS(2813), - [anon_sym_operator] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [anon_sym_delete] = ACTIONS(2813), - [anon_sym_throw] = ACTIONS(2813), - [anon_sym_namespace] = ACTIONS(2813), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_static_assert] = ACTIONS(2813), - [anon_sym_concept] = ACTIONS(2813), - [anon_sym_co_return] = ACTIONS(2813), - [anon_sym_co_yield] = ACTIONS(2813), - [anon_sym_R_DQUOTE] = ACTIONS(2815), - [anon_sym_LR_DQUOTE] = ACTIONS(2815), - [anon_sym_uR_DQUOTE] = ACTIONS(2815), - [anon_sym_UR_DQUOTE] = ACTIONS(2815), - [anon_sym_u8R_DQUOTE] = ACTIONS(2815), - [anon_sym_co_await] = ACTIONS(2813), - [anon_sym_new] = ACTIONS(2813), - [anon_sym_requires] = ACTIONS(2813), - [sym_this] = ACTIONS(2813), - [sym_nullptr] = ACTIONS(2813), - }, - [1036] = { - [ts_builtin_sym_end] = ACTIONS(2779), - [sym_identifier] = ACTIONS(2777), - [aux_sym_preproc_include_token1] = ACTIONS(2777), - [aux_sym_preproc_def_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), - [sym_preproc_directive] = ACTIONS(2777), - [anon_sym_LPAREN2] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_AMP_AMP] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_typedef] = ACTIONS(2777), - [anon_sym_extern] = ACTIONS(2777), - [anon_sym___attribute__] = ACTIONS(2777), - [anon_sym_COLON_COLON] = ACTIONS(2779), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), - [anon_sym___declspec] = ACTIONS(2777), - [anon_sym___based] = ACTIONS(2777), - [anon_sym___cdecl] = ACTIONS(2777), - [anon_sym___clrcall] = ACTIONS(2777), - [anon_sym___stdcall] = ACTIONS(2777), - [anon_sym___fastcall] = ACTIONS(2777), - [anon_sym___thiscall] = ACTIONS(2777), - [anon_sym___vectorcall] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_register] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym_thread_local] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_volatile] = ACTIONS(2777), - [anon_sym_restrict] = ACTIONS(2777), - [anon_sym__Atomic] = ACTIONS(2777), - [anon_sym_mutable] = ACTIONS(2777), - [anon_sym_constexpr] = ACTIONS(2777), - [anon_sym_constinit] = ACTIONS(2777), - [anon_sym_consteval] = ACTIONS(2777), - [anon_sym_signed] = ACTIONS(2777), - [anon_sym_unsigned] = ACTIONS(2777), - [anon_sym_long] = ACTIONS(2777), - [anon_sym_short] = ACTIONS(2777), - [sym_primitive_type] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_union] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_switch] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_default] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_goto] = ACTIONS(2777), - [anon_sym_not] = ACTIONS(2777), - [anon_sym_compl] = ACTIONS(2777), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_sizeof] = ACTIONS(2777), - [sym_number_literal] = ACTIONS(2779), - [anon_sym_L_SQUOTE] = ACTIONS(2779), - [anon_sym_u_SQUOTE] = ACTIONS(2779), - [anon_sym_U_SQUOTE] = ACTIONS(2779), - [anon_sym_u8_SQUOTE] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_L_DQUOTE] = ACTIONS(2779), - [anon_sym_u_DQUOTE] = ACTIONS(2779), - [anon_sym_U_DQUOTE] = ACTIONS(2779), - [anon_sym_u8_DQUOTE] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [sym_null] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2777), - [anon_sym_decltype] = ACTIONS(2777), - [anon_sym_virtual] = ACTIONS(2777), - [anon_sym_explicit] = ACTIONS(2777), - [anon_sym_typename] = ACTIONS(2777), - [anon_sym_template] = ACTIONS(2777), - [anon_sym_operator] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_delete] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_namespace] = ACTIONS(2777), - [anon_sym_using] = ACTIONS(2777), - [anon_sym_static_assert] = ACTIONS(2777), - [anon_sym_concept] = ACTIONS(2777), - [anon_sym_co_return] = ACTIONS(2777), - [anon_sym_co_yield] = ACTIONS(2777), - [anon_sym_R_DQUOTE] = ACTIONS(2779), - [anon_sym_LR_DQUOTE] = ACTIONS(2779), - [anon_sym_uR_DQUOTE] = ACTIONS(2779), - [anon_sym_UR_DQUOTE] = ACTIONS(2779), - [anon_sym_u8R_DQUOTE] = ACTIONS(2779), - [anon_sym_co_await] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_requires] = ACTIONS(2777), - [sym_this] = ACTIONS(2777), - [sym_nullptr] = ACTIONS(2777), - }, - [1037] = { - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2757), - [aux_sym_preproc_include_token1] = ACTIONS(2757), - [aux_sym_preproc_def_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), - [sym_preproc_directive] = ACTIONS(2757), - [anon_sym_LPAREN2] = ACTIONS(2759), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2757), - [anon_sym_extern] = ACTIONS(2757), - [anon_sym___attribute__] = ACTIONS(2757), - [anon_sym_COLON_COLON] = ACTIONS(2759), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), - [anon_sym___declspec] = ACTIONS(2757), - [anon_sym___based] = ACTIONS(2757), - [anon_sym___cdecl] = ACTIONS(2757), - [anon_sym___clrcall] = ACTIONS(2757), - [anon_sym___stdcall] = ACTIONS(2757), - [anon_sym___fastcall] = ACTIONS(2757), - [anon_sym___thiscall] = ACTIONS(2757), - [anon_sym___vectorcall] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2757), - [anon_sym_static] = ACTIONS(2757), - [anon_sym_register] = ACTIONS(2757), - [anon_sym_inline] = ACTIONS(2757), - [anon_sym_thread_local] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_volatile] = ACTIONS(2757), - [anon_sym_restrict] = ACTIONS(2757), - [anon_sym__Atomic] = ACTIONS(2757), - [anon_sym_mutable] = ACTIONS(2757), - [anon_sym_constexpr] = ACTIONS(2757), - [anon_sym_constinit] = ACTIONS(2757), - [anon_sym_consteval] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2757), - [anon_sym_unsigned] = ACTIONS(2757), - [anon_sym_long] = ACTIONS(2757), - [anon_sym_short] = ACTIONS(2757), - [sym_primitive_type] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_class] = ACTIONS(2757), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_switch] = ACTIONS(2757), - [anon_sym_case] = ACTIONS(2757), - [anon_sym_default] = ACTIONS(2757), - [anon_sym_while] = ACTIONS(2757), - [anon_sym_do] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_not] = ACTIONS(2757), - [anon_sym_compl] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_sizeof] = ACTIONS(2757), - [sym_number_literal] = ACTIONS(2759), - [anon_sym_L_SQUOTE] = ACTIONS(2759), - [anon_sym_u_SQUOTE] = ACTIONS(2759), - [anon_sym_U_SQUOTE] = ACTIONS(2759), - [anon_sym_u8_SQUOTE] = ACTIONS(2759), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_L_DQUOTE] = ACTIONS(2759), - [anon_sym_u_DQUOTE] = ACTIONS(2759), - [anon_sym_U_DQUOTE] = ACTIONS(2759), - [anon_sym_u8_DQUOTE] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_null] = ACTIONS(2757), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2757), - [anon_sym_decltype] = ACTIONS(2757), - [anon_sym_virtual] = ACTIONS(2757), - [anon_sym_explicit] = ACTIONS(2757), - [anon_sym_typename] = ACTIONS(2757), - [anon_sym_template] = ACTIONS(2757), - [anon_sym_operator] = ACTIONS(2757), - [anon_sym_try] = ACTIONS(2757), - [anon_sym_delete] = ACTIONS(2757), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_namespace] = ACTIONS(2757), - [anon_sym_using] = ACTIONS(2757), - [anon_sym_static_assert] = ACTIONS(2757), - [anon_sym_concept] = ACTIONS(2757), - [anon_sym_co_return] = ACTIONS(2757), - [anon_sym_co_yield] = ACTIONS(2757), - [anon_sym_R_DQUOTE] = ACTIONS(2759), - [anon_sym_LR_DQUOTE] = ACTIONS(2759), - [anon_sym_uR_DQUOTE] = ACTIONS(2759), - [anon_sym_UR_DQUOTE] = ACTIONS(2759), - [anon_sym_u8R_DQUOTE] = ACTIONS(2759), - [anon_sym_co_await] = ACTIONS(2757), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_requires] = ACTIONS(2757), - [sym_this] = ACTIONS(2757), - [sym_nullptr] = ACTIONS(2757), - }, - [1038] = { - [sym_identifier] = ACTIONS(2817), - [aux_sym_preproc_include_token1] = ACTIONS(2817), - [aux_sym_preproc_def_token1] = ACTIONS(2817), - [aux_sym_preproc_if_token1] = ACTIONS(2817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2817), - [sym_preproc_directive] = ACTIONS(2817), - [anon_sym_LPAREN2] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_TILDE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2817), - [anon_sym_PLUS] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(2819), - [anon_sym_AMP_AMP] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_typedef] = ACTIONS(2817), - [anon_sym_extern] = ACTIONS(2817), - [anon_sym___attribute__] = ACTIONS(2817), - [anon_sym_COLON_COLON] = ACTIONS(2819), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2819), - [anon_sym___declspec] = ACTIONS(2817), - [anon_sym___based] = ACTIONS(2817), - [anon_sym___cdecl] = ACTIONS(2817), - [anon_sym___clrcall] = ACTIONS(2817), - [anon_sym___stdcall] = ACTIONS(2817), - [anon_sym___fastcall] = ACTIONS(2817), - [anon_sym___thiscall] = ACTIONS(2817), - [anon_sym___vectorcall] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_RBRACE] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2817), - [anon_sym_static] = ACTIONS(2817), - [anon_sym_register] = ACTIONS(2817), - [anon_sym_inline] = ACTIONS(2817), - [anon_sym_thread_local] = ACTIONS(2817), - [anon_sym_const] = ACTIONS(2817), - [anon_sym_volatile] = ACTIONS(2817), - [anon_sym_restrict] = ACTIONS(2817), - [anon_sym__Atomic] = ACTIONS(2817), - [anon_sym_mutable] = ACTIONS(2817), - [anon_sym_constexpr] = ACTIONS(2817), - [anon_sym_constinit] = ACTIONS(2817), - [anon_sym_consteval] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2817), - [anon_sym_unsigned] = ACTIONS(2817), - [anon_sym_long] = ACTIONS(2817), - [anon_sym_short] = ACTIONS(2817), - [sym_primitive_type] = ACTIONS(2817), - [anon_sym_enum] = ACTIONS(2817), - [anon_sym_class] = ACTIONS(2817), - [anon_sym_struct] = ACTIONS(2817), - [anon_sym_union] = ACTIONS(2817), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_switch] = ACTIONS(2817), - [anon_sym_case] = ACTIONS(2817), - [anon_sym_default] = ACTIONS(2817), - [anon_sym_while] = ACTIONS(2817), - [anon_sym_do] = ACTIONS(2817), - [anon_sym_for] = ACTIONS(2817), - [anon_sym_return] = ACTIONS(2817), - [anon_sym_break] = ACTIONS(2817), - [anon_sym_continue] = ACTIONS(2817), - [anon_sym_goto] = ACTIONS(2817), - [anon_sym_not] = ACTIONS(2817), - [anon_sym_compl] = ACTIONS(2817), - [anon_sym_DASH_DASH] = ACTIONS(2819), - [anon_sym_PLUS_PLUS] = ACTIONS(2819), - [anon_sym_sizeof] = ACTIONS(2817), - [sym_number_literal] = ACTIONS(2819), - [anon_sym_L_SQUOTE] = ACTIONS(2819), - [anon_sym_u_SQUOTE] = ACTIONS(2819), - [anon_sym_U_SQUOTE] = ACTIONS(2819), - [anon_sym_u8_SQUOTE] = ACTIONS(2819), - [anon_sym_SQUOTE] = ACTIONS(2819), - [anon_sym_L_DQUOTE] = ACTIONS(2819), - [anon_sym_u_DQUOTE] = ACTIONS(2819), - [anon_sym_U_DQUOTE] = ACTIONS(2819), - [anon_sym_u8_DQUOTE] = ACTIONS(2819), - [anon_sym_DQUOTE] = ACTIONS(2819), - [sym_true] = ACTIONS(2817), - [sym_false] = ACTIONS(2817), - [sym_null] = ACTIONS(2817), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2817), - [anon_sym_decltype] = ACTIONS(2817), - [anon_sym_virtual] = ACTIONS(2817), - [anon_sym_explicit] = ACTIONS(2817), - [anon_sym_typename] = ACTIONS(2817), - [anon_sym_template] = ACTIONS(2817), - [anon_sym_operator] = ACTIONS(2817), - [anon_sym_try] = ACTIONS(2817), - [anon_sym_delete] = ACTIONS(2817), - [anon_sym_throw] = ACTIONS(2817), - [anon_sym_namespace] = ACTIONS(2817), - [anon_sym_using] = ACTIONS(2817), - [anon_sym_static_assert] = ACTIONS(2817), - [anon_sym_concept] = ACTIONS(2817), - [anon_sym_co_return] = ACTIONS(2817), - [anon_sym_co_yield] = ACTIONS(2817), - [anon_sym_R_DQUOTE] = ACTIONS(2819), - [anon_sym_LR_DQUOTE] = ACTIONS(2819), - [anon_sym_uR_DQUOTE] = ACTIONS(2819), - [anon_sym_UR_DQUOTE] = ACTIONS(2819), - [anon_sym_u8R_DQUOTE] = ACTIONS(2819), - [anon_sym_co_await] = ACTIONS(2817), - [anon_sym_new] = ACTIONS(2817), - [anon_sym_requires] = ACTIONS(2817), - [sym_this] = ACTIONS(2817), - [sym_nullptr] = ACTIONS(2817), - }, - [1039] = { - [sym_identifier] = ACTIONS(2665), - [aux_sym_preproc_include_token1] = ACTIONS(2665), - [aux_sym_preproc_def_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token2] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), - [sym_preproc_directive] = ACTIONS(2665), - [anon_sym_LPAREN2] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym_typedef] = ACTIONS(2665), - [anon_sym_extern] = ACTIONS(2665), - [anon_sym___attribute__] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2667), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), - [anon_sym___declspec] = ACTIONS(2665), - [anon_sym___based] = ACTIONS(2665), - [anon_sym___cdecl] = ACTIONS(2665), - [anon_sym___clrcall] = ACTIONS(2665), - [anon_sym___stdcall] = ACTIONS(2665), - [anon_sym___fastcall] = ACTIONS(2665), - [anon_sym___thiscall] = ACTIONS(2665), - [anon_sym___vectorcall] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_register] = ACTIONS(2665), - [anon_sym_inline] = ACTIONS(2665), - [anon_sym_thread_local] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_volatile] = ACTIONS(2665), - [anon_sym_restrict] = ACTIONS(2665), - [anon_sym__Atomic] = ACTIONS(2665), - [anon_sym_mutable] = ACTIONS(2665), - [anon_sym_constexpr] = ACTIONS(2665), - [anon_sym_constinit] = ACTIONS(2665), - [anon_sym_consteval] = ACTIONS(2665), - [anon_sym_signed] = ACTIONS(2665), - [anon_sym_unsigned] = ACTIONS(2665), - [anon_sym_long] = ACTIONS(2665), - [anon_sym_short] = ACTIONS(2665), - [sym_primitive_type] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_union] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_default] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_do] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_goto] = ACTIONS(2665), - [anon_sym_not] = ACTIONS(2665), - [anon_sym_compl] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_sizeof] = ACTIONS(2665), - [sym_number_literal] = ACTIONS(2667), - [anon_sym_L_SQUOTE] = ACTIONS(2667), - [anon_sym_u_SQUOTE] = ACTIONS(2667), - [anon_sym_U_SQUOTE] = ACTIONS(2667), - [anon_sym_u8_SQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_L_DQUOTE] = ACTIONS(2667), - [anon_sym_u_DQUOTE] = ACTIONS(2667), - [anon_sym_U_DQUOTE] = ACTIONS(2667), - [anon_sym_u8_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [sym_null] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2665), - [anon_sym_decltype] = ACTIONS(2665), - [anon_sym_virtual] = ACTIONS(2665), - [anon_sym_explicit] = ACTIONS(2665), - [anon_sym_typename] = ACTIONS(2665), - [anon_sym_template] = ACTIONS(2665), - [anon_sym_operator] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_delete] = ACTIONS(2665), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_namespace] = ACTIONS(2665), - [anon_sym_using] = ACTIONS(2665), - [anon_sym_static_assert] = ACTIONS(2665), - [anon_sym_concept] = ACTIONS(2665), - [anon_sym_co_return] = ACTIONS(2665), - [anon_sym_co_yield] = ACTIONS(2665), - [anon_sym_R_DQUOTE] = ACTIONS(2667), - [anon_sym_LR_DQUOTE] = ACTIONS(2667), - [anon_sym_uR_DQUOTE] = ACTIONS(2667), - [anon_sym_UR_DQUOTE] = ACTIONS(2667), - [anon_sym_u8R_DQUOTE] = ACTIONS(2667), - [anon_sym_co_await] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(2665), - [anon_sym_requires] = ACTIONS(2665), - [sym_this] = ACTIONS(2665), - [sym_nullptr] = ACTIONS(2665), - }, - [1040] = { - [ts_builtin_sym_end] = ACTIONS(2659), - [sym_identifier] = ACTIONS(2657), - [aux_sym_preproc_include_token1] = ACTIONS(2657), - [aux_sym_preproc_def_token1] = ACTIONS(2657), - [aux_sym_preproc_if_token1] = ACTIONS(2657), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2657), - [sym_preproc_directive] = ACTIONS(2657), - [anon_sym_LPAREN2] = ACTIONS(2659), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2659), - [anon_sym_AMP_AMP] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_SEMI] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2657), - [anon_sym_extern] = ACTIONS(2657), - [anon_sym___attribute__] = ACTIONS(2657), - [anon_sym_COLON_COLON] = ACTIONS(2659), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2659), - [anon_sym___declspec] = ACTIONS(2657), - [anon_sym___based] = ACTIONS(2657), - [anon_sym___cdecl] = ACTIONS(2657), - [anon_sym___clrcall] = ACTIONS(2657), - [anon_sym___stdcall] = ACTIONS(2657), - [anon_sym___fastcall] = ACTIONS(2657), - [anon_sym___thiscall] = ACTIONS(2657), - [anon_sym___vectorcall] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_static] = ACTIONS(2657), - [anon_sym_register] = ACTIONS(2657), - [anon_sym_inline] = ACTIONS(2657), - [anon_sym_thread_local] = ACTIONS(2657), - [anon_sym_const] = ACTIONS(2657), - [anon_sym_volatile] = ACTIONS(2657), - [anon_sym_restrict] = ACTIONS(2657), - [anon_sym__Atomic] = ACTIONS(2657), - [anon_sym_mutable] = ACTIONS(2657), - [anon_sym_constexpr] = ACTIONS(2657), - [anon_sym_constinit] = ACTIONS(2657), - [anon_sym_consteval] = ACTIONS(2657), - [anon_sym_signed] = ACTIONS(2657), - [anon_sym_unsigned] = ACTIONS(2657), - [anon_sym_long] = ACTIONS(2657), - [anon_sym_short] = ACTIONS(2657), - [sym_primitive_type] = ACTIONS(2657), - [anon_sym_enum] = ACTIONS(2657), - [anon_sym_class] = ACTIONS(2657), - [anon_sym_struct] = ACTIONS(2657), - [anon_sym_union] = ACTIONS(2657), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [anon_sym_case] = ACTIONS(2657), - [anon_sym_default] = ACTIONS(2657), - [anon_sym_while] = ACTIONS(2657), - [anon_sym_do] = ACTIONS(2657), - [anon_sym_for] = ACTIONS(2657), - [anon_sym_return] = ACTIONS(2657), - [anon_sym_break] = ACTIONS(2657), - [anon_sym_continue] = ACTIONS(2657), - [anon_sym_goto] = ACTIONS(2657), - [anon_sym_not] = ACTIONS(2657), - [anon_sym_compl] = ACTIONS(2657), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_sizeof] = ACTIONS(2657), - [sym_number_literal] = ACTIONS(2659), - [anon_sym_L_SQUOTE] = ACTIONS(2659), - [anon_sym_u_SQUOTE] = ACTIONS(2659), - [anon_sym_U_SQUOTE] = ACTIONS(2659), - [anon_sym_u8_SQUOTE] = ACTIONS(2659), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_L_DQUOTE] = ACTIONS(2659), - [anon_sym_u_DQUOTE] = ACTIONS(2659), - [anon_sym_U_DQUOTE] = ACTIONS(2659), - [anon_sym_u8_DQUOTE] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2659), - [sym_true] = ACTIONS(2657), - [sym_false] = ACTIONS(2657), - [sym_null] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2657), - [anon_sym_decltype] = ACTIONS(2657), - [anon_sym_virtual] = ACTIONS(2657), - [anon_sym_explicit] = ACTIONS(2657), - [anon_sym_typename] = ACTIONS(2657), - [anon_sym_template] = ACTIONS(2657), - [anon_sym_operator] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_delete] = ACTIONS(2657), - [anon_sym_throw] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2657), - [anon_sym_using] = ACTIONS(2657), - [anon_sym_static_assert] = ACTIONS(2657), - [anon_sym_concept] = ACTIONS(2657), - [anon_sym_co_return] = ACTIONS(2657), - [anon_sym_co_yield] = ACTIONS(2657), - [anon_sym_R_DQUOTE] = ACTIONS(2659), - [anon_sym_LR_DQUOTE] = ACTIONS(2659), - [anon_sym_uR_DQUOTE] = ACTIONS(2659), - [anon_sym_UR_DQUOTE] = ACTIONS(2659), - [anon_sym_u8R_DQUOTE] = ACTIONS(2659), - [anon_sym_co_await] = ACTIONS(2657), - [anon_sym_new] = ACTIONS(2657), - [anon_sym_requires] = ACTIONS(2657), - [sym_this] = ACTIONS(2657), - [sym_nullptr] = ACTIONS(2657), - }, - [1041] = { - [sym_identifier] = ACTIONS(2657), - [aux_sym_preproc_include_token1] = ACTIONS(2657), - [aux_sym_preproc_def_token1] = ACTIONS(2657), - [aux_sym_preproc_if_token1] = ACTIONS(2657), - [aux_sym_preproc_if_token2] = ACTIONS(2657), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2657), - [sym_preproc_directive] = ACTIONS(2657), - [anon_sym_LPAREN2] = ACTIONS(2659), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2659), - [anon_sym_AMP_AMP] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_SEMI] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2657), - [anon_sym_extern] = ACTIONS(2657), - [anon_sym___attribute__] = ACTIONS(2657), - [anon_sym_COLON_COLON] = ACTIONS(2659), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2659), - [anon_sym___declspec] = ACTIONS(2657), - [anon_sym___based] = ACTIONS(2657), - [anon_sym___cdecl] = ACTIONS(2657), - [anon_sym___clrcall] = ACTIONS(2657), - [anon_sym___stdcall] = ACTIONS(2657), - [anon_sym___fastcall] = ACTIONS(2657), - [anon_sym___thiscall] = ACTIONS(2657), - [anon_sym___vectorcall] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_static] = ACTIONS(2657), - [anon_sym_register] = ACTIONS(2657), - [anon_sym_inline] = ACTIONS(2657), - [anon_sym_thread_local] = ACTIONS(2657), - [anon_sym_const] = ACTIONS(2657), - [anon_sym_volatile] = ACTIONS(2657), - [anon_sym_restrict] = ACTIONS(2657), - [anon_sym__Atomic] = ACTIONS(2657), - [anon_sym_mutable] = ACTIONS(2657), - [anon_sym_constexpr] = ACTIONS(2657), - [anon_sym_constinit] = ACTIONS(2657), - [anon_sym_consteval] = ACTIONS(2657), - [anon_sym_signed] = ACTIONS(2657), - [anon_sym_unsigned] = ACTIONS(2657), - [anon_sym_long] = ACTIONS(2657), - [anon_sym_short] = ACTIONS(2657), - [sym_primitive_type] = ACTIONS(2657), - [anon_sym_enum] = ACTIONS(2657), - [anon_sym_class] = ACTIONS(2657), - [anon_sym_struct] = ACTIONS(2657), - [anon_sym_union] = ACTIONS(2657), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [anon_sym_case] = ACTIONS(2657), - [anon_sym_default] = ACTIONS(2657), - [anon_sym_while] = ACTIONS(2657), - [anon_sym_do] = ACTIONS(2657), - [anon_sym_for] = ACTIONS(2657), - [anon_sym_return] = ACTIONS(2657), - [anon_sym_break] = ACTIONS(2657), - [anon_sym_continue] = ACTIONS(2657), - [anon_sym_goto] = ACTIONS(2657), - [anon_sym_not] = ACTIONS(2657), - [anon_sym_compl] = ACTIONS(2657), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_sizeof] = ACTIONS(2657), - [sym_number_literal] = ACTIONS(2659), - [anon_sym_L_SQUOTE] = ACTIONS(2659), - [anon_sym_u_SQUOTE] = ACTIONS(2659), - [anon_sym_U_SQUOTE] = ACTIONS(2659), - [anon_sym_u8_SQUOTE] = ACTIONS(2659), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_L_DQUOTE] = ACTIONS(2659), - [anon_sym_u_DQUOTE] = ACTIONS(2659), - [anon_sym_U_DQUOTE] = ACTIONS(2659), - [anon_sym_u8_DQUOTE] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2659), - [sym_true] = ACTIONS(2657), - [sym_false] = ACTIONS(2657), - [sym_null] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2657), - [anon_sym_decltype] = ACTIONS(2657), - [anon_sym_virtual] = ACTIONS(2657), - [anon_sym_explicit] = ACTIONS(2657), - [anon_sym_typename] = ACTIONS(2657), - [anon_sym_template] = ACTIONS(2657), - [anon_sym_operator] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_delete] = ACTIONS(2657), - [anon_sym_throw] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2657), - [anon_sym_using] = ACTIONS(2657), - [anon_sym_static_assert] = ACTIONS(2657), - [anon_sym_concept] = ACTIONS(2657), - [anon_sym_co_return] = ACTIONS(2657), - [anon_sym_co_yield] = ACTIONS(2657), - [anon_sym_R_DQUOTE] = ACTIONS(2659), - [anon_sym_LR_DQUOTE] = ACTIONS(2659), - [anon_sym_uR_DQUOTE] = ACTIONS(2659), - [anon_sym_UR_DQUOTE] = ACTIONS(2659), - [anon_sym_u8R_DQUOTE] = ACTIONS(2659), - [anon_sym_co_await] = ACTIONS(2657), - [anon_sym_new] = ACTIONS(2657), - [anon_sym_requires] = ACTIONS(2657), - [sym_this] = ACTIONS(2657), - [sym_nullptr] = ACTIONS(2657), - }, - [1042] = { - [ts_builtin_sym_end] = ACTIONS(2783), - [sym_identifier] = ACTIONS(2781), - [aux_sym_preproc_include_token1] = ACTIONS(2781), - [aux_sym_preproc_def_token1] = ACTIONS(2781), - [aux_sym_preproc_if_token1] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), - [sym_preproc_directive] = ACTIONS(2781), - [anon_sym_LPAREN2] = ACTIONS(2783), - [anon_sym_BANG] = ACTIONS(2783), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2783), - [anon_sym_AMP_AMP] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2781), - [anon_sym_SEMI] = ACTIONS(2783), - [anon_sym_typedef] = ACTIONS(2781), - [anon_sym_extern] = ACTIONS(2781), - [anon_sym___attribute__] = ACTIONS(2781), - [anon_sym_COLON_COLON] = ACTIONS(2783), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), - [anon_sym___declspec] = ACTIONS(2781), - [anon_sym___based] = ACTIONS(2781), - [anon_sym___cdecl] = ACTIONS(2781), - [anon_sym___clrcall] = ACTIONS(2781), - [anon_sym___stdcall] = ACTIONS(2781), - [anon_sym___fastcall] = ACTIONS(2781), - [anon_sym___thiscall] = ACTIONS(2781), - [anon_sym___vectorcall] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2783), - [anon_sym_LBRACK] = ACTIONS(2781), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_register] = ACTIONS(2781), - [anon_sym_inline] = ACTIONS(2781), - [anon_sym_thread_local] = ACTIONS(2781), - [anon_sym_const] = ACTIONS(2781), - [anon_sym_volatile] = ACTIONS(2781), - [anon_sym_restrict] = ACTIONS(2781), - [anon_sym__Atomic] = ACTIONS(2781), - [anon_sym_mutable] = ACTIONS(2781), - [anon_sym_constexpr] = ACTIONS(2781), - [anon_sym_constinit] = ACTIONS(2781), - [anon_sym_consteval] = ACTIONS(2781), - [anon_sym_signed] = ACTIONS(2781), - [anon_sym_unsigned] = ACTIONS(2781), - [anon_sym_long] = ACTIONS(2781), - [anon_sym_short] = ACTIONS(2781), - [sym_primitive_type] = ACTIONS(2781), - [anon_sym_enum] = ACTIONS(2781), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_struct] = ACTIONS(2781), - [anon_sym_union] = ACTIONS(2781), - [anon_sym_if] = ACTIONS(2781), - [anon_sym_switch] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_default] = ACTIONS(2781), - [anon_sym_while] = ACTIONS(2781), - [anon_sym_do] = ACTIONS(2781), - [anon_sym_for] = ACTIONS(2781), - [anon_sym_return] = ACTIONS(2781), - [anon_sym_break] = ACTIONS(2781), - [anon_sym_continue] = ACTIONS(2781), - [anon_sym_goto] = ACTIONS(2781), - [anon_sym_not] = ACTIONS(2781), - [anon_sym_compl] = ACTIONS(2781), - [anon_sym_DASH_DASH] = ACTIONS(2783), - [anon_sym_PLUS_PLUS] = ACTIONS(2783), - [anon_sym_sizeof] = ACTIONS(2781), - [sym_number_literal] = ACTIONS(2783), - [anon_sym_L_SQUOTE] = ACTIONS(2783), - [anon_sym_u_SQUOTE] = ACTIONS(2783), - [anon_sym_U_SQUOTE] = ACTIONS(2783), - [anon_sym_u8_SQUOTE] = ACTIONS(2783), - [anon_sym_SQUOTE] = ACTIONS(2783), - [anon_sym_L_DQUOTE] = ACTIONS(2783), - [anon_sym_u_DQUOTE] = ACTIONS(2783), - [anon_sym_U_DQUOTE] = ACTIONS(2783), - [anon_sym_u8_DQUOTE] = ACTIONS(2783), - [anon_sym_DQUOTE] = ACTIONS(2783), - [sym_true] = ACTIONS(2781), - [sym_false] = ACTIONS(2781), - [sym_null] = ACTIONS(2781), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2781), - [anon_sym_decltype] = ACTIONS(2781), - [anon_sym_virtual] = ACTIONS(2781), - [anon_sym_explicit] = ACTIONS(2781), - [anon_sym_typename] = ACTIONS(2781), - [anon_sym_template] = ACTIONS(2781), - [anon_sym_operator] = ACTIONS(2781), - [anon_sym_try] = ACTIONS(2781), - [anon_sym_delete] = ACTIONS(2781), - [anon_sym_throw] = ACTIONS(2781), - [anon_sym_namespace] = ACTIONS(2781), - [anon_sym_using] = ACTIONS(2781), - [anon_sym_static_assert] = ACTIONS(2781), - [anon_sym_concept] = ACTIONS(2781), - [anon_sym_co_return] = ACTIONS(2781), - [anon_sym_co_yield] = ACTIONS(2781), - [anon_sym_R_DQUOTE] = ACTIONS(2783), - [anon_sym_LR_DQUOTE] = ACTIONS(2783), - [anon_sym_uR_DQUOTE] = ACTIONS(2783), - [anon_sym_UR_DQUOTE] = ACTIONS(2783), - [anon_sym_u8R_DQUOTE] = ACTIONS(2783), - [anon_sym_co_await] = ACTIONS(2781), - [anon_sym_new] = ACTIONS(2781), - [anon_sym_requires] = ACTIONS(2781), - [sym_this] = ACTIONS(2781), - [sym_nullptr] = ACTIONS(2781), - }, - [1043] = { - [ts_builtin_sym_end] = ACTIONS(2667), - [sym_identifier] = ACTIONS(2665), - [aux_sym_preproc_include_token1] = ACTIONS(2665), - [aux_sym_preproc_def_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), - [sym_preproc_directive] = ACTIONS(2665), - [anon_sym_LPAREN2] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym_typedef] = ACTIONS(2665), - [anon_sym_extern] = ACTIONS(2665), - [anon_sym___attribute__] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2667), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), - [anon_sym___declspec] = ACTIONS(2665), - [anon_sym___based] = ACTIONS(2665), - [anon_sym___cdecl] = ACTIONS(2665), - [anon_sym___clrcall] = ACTIONS(2665), - [anon_sym___stdcall] = ACTIONS(2665), - [anon_sym___fastcall] = ACTIONS(2665), - [anon_sym___thiscall] = ACTIONS(2665), - [anon_sym___vectorcall] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_register] = ACTIONS(2665), - [anon_sym_inline] = ACTIONS(2665), - [anon_sym_thread_local] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_volatile] = ACTIONS(2665), - [anon_sym_restrict] = ACTIONS(2665), - [anon_sym__Atomic] = ACTIONS(2665), - [anon_sym_mutable] = ACTIONS(2665), - [anon_sym_constexpr] = ACTIONS(2665), - [anon_sym_constinit] = ACTIONS(2665), - [anon_sym_consteval] = ACTIONS(2665), - [anon_sym_signed] = ACTIONS(2665), - [anon_sym_unsigned] = ACTIONS(2665), - [anon_sym_long] = ACTIONS(2665), - [anon_sym_short] = ACTIONS(2665), - [sym_primitive_type] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_union] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_default] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_do] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_goto] = ACTIONS(2665), - [anon_sym_not] = ACTIONS(2665), - [anon_sym_compl] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_sizeof] = ACTIONS(2665), - [sym_number_literal] = ACTIONS(2667), - [anon_sym_L_SQUOTE] = ACTIONS(2667), - [anon_sym_u_SQUOTE] = ACTIONS(2667), - [anon_sym_U_SQUOTE] = ACTIONS(2667), - [anon_sym_u8_SQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_L_DQUOTE] = ACTIONS(2667), - [anon_sym_u_DQUOTE] = ACTIONS(2667), - [anon_sym_U_DQUOTE] = ACTIONS(2667), - [anon_sym_u8_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [sym_null] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2665), - [anon_sym_decltype] = ACTIONS(2665), - [anon_sym_virtual] = ACTIONS(2665), - [anon_sym_explicit] = ACTIONS(2665), - [anon_sym_typename] = ACTIONS(2665), - [anon_sym_template] = ACTIONS(2665), - [anon_sym_operator] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_delete] = ACTIONS(2665), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_namespace] = ACTIONS(2665), - [anon_sym_using] = ACTIONS(2665), - [anon_sym_static_assert] = ACTIONS(2665), - [anon_sym_concept] = ACTIONS(2665), - [anon_sym_co_return] = ACTIONS(2665), - [anon_sym_co_yield] = ACTIONS(2665), - [anon_sym_R_DQUOTE] = ACTIONS(2667), - [anon_sym_LR_DQUOTE] = ACTIONS(2667), - [anon_sym_uR_DQUOTE] = ACTIONS(2667), - [anon_sym_UR_DQUOTE] = ACTIONS(2667), - [anon_sym_u8R_DQUOTE] = ACTIONS(2667), - [anon_sym_co_await] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(2665), - [anon_sym_requires] = ACTIONS(2665), - [sym_this] = ACTIONS(2665), - [sym_nullptr] = ACTIONS(2665), - }, - [1044] = { - [ts_builtin_sym_end] = ACTIONS(2683), - [sym_identifier] = ACTIONS(2681), - [aux_sym_preproc_include_token1] = ACTIONS(2681), - [aux_sym_preproc_def_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), - [sym_preproc_directive] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_AMP_AMP] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2681), - [anon_sym___attribute__] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), - [anon_sym___declspec] = ACTIONS(2681), - [anon_sym___based] = ACTIONS(2681), - [anon_sym___cdecl] = ACTIONS(2681), - [anon_sym___clrcall] = ACTIONS(2681), - [anon_sym___stdcall] = ACTIONS(2681), - [anon_sym___fastcall] = ACTIONS(2681), - [anon_sym___thiscall] = ACTIONS(2681), - [anon_sym___vectorcall] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_register] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2681), - [anon_sym_thread_local] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_volatile] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2681), - [anon_sym__Atomic] = ACTIONS(2681), - [anon_sym_mutable] = ACTIONS(2681), - [anon_sym_constexpr] = ACTIONS(2681), - [anon_sym_constinit] = ACTIONS(2681), - [anon_sym_consteval] = ACTIONS(2681), - [anon_sym_signed] = ACTIONS(2681), - [anon_sym_unsigned] = ACTIONS(2681), - [anon_sym_long] = ACTIONS(2681), - [anon_sym_short] = ACTIONS(2681), - [sym_primitive_type] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_switch] = ACTIONS(2681), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_goto] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_compl] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_sizeof] = ACTIONS(2681), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_L_SQUOTE] = ACTIONS(2683), - [anon_sym_u_SQUOTE] = ACTIONS(2683), - [anon_sym_U_SQUOTE] = ACTIONS(2683), - [anon_sym_u8_SQUOTE] = ACTIONS(2683), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_L_DQUOTE] = ACTIONS(2683), - [anon_sym_u_DQUOTE] = ACTIONS(2683), - [anon_sym_U_DQUOTE] = ACTIONS(2683), - [anon_sym_u8_DQUOTE] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_null] = ACTIONS(2681), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2681), - [anon_sym_decltype] = ACTIONS(2681), - [anon_sym_virtual] = ACTIONS(2681), - [anon_sym_explicit] = ACTIONS(2681), - [anon_sym_typename] = ACTIONS(2681), - [anon_sym_template] = ACTIONS(2681), - [anon_sym_operator] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_delete] = ACTIONS(2681), - [anon_sym_throw] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2681), - [anon_sym_static_assert] = ACTIONS(2681), - [anon_sym_concept] = ACTIONS(2681), - [anon_sym_co_return] = ACTIONS(2681), - [anon_sym_co_yield] = ACTIONS(2681), - [anon_sym_R_DQUOTE] = ACTIONS(2683), - [anon_sym_LR_DQUOTE] = ACTIONS(2683), - [anon_sym_uR_DQUOTE] = ACTIONS(2683), - [anon_sym_UR_DQUOTE] = ACTIONS(2683), - [anon_sym_u8R_DQUOTE] = ACTIONS(2683), - [anon_sym_co_await] = ACTIONS(2681), - [anon_sym_new] = ACTIONS(2681), - [anon_sym_requires] = ACTIONS(2681), - [sym_this] = ACTIONS(2681), - [sym_nullptr] = ACTIONS(2681), - }, - [1045] = { - [sym_identifier] = ACTIONS(2777), - [aux_sym_preproc_include_token1] = ACTIONS(2777), - [aux_sym_preproc_def_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token2] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), - [sym_preproc_directive] = ACTIONS(2777), - [anon_sym_LPAREN2] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_AMP_AMP] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_typedef] = ACTIONS(2777), - [anon_sym_extern] = ACTIONS(2777), - [anon_sym___attribute__] = ACTIONS(2777), - [anon_sym_COLON_COLON] = ACTIONS(2779), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), - [anon_sym___declspec] = ACTIONS(2777), - [anon_sym___based] = ACTIONS(2777), - [anon_sym___cdecl] = ACTIONS(2777), - [anon_sym___clrcall] = ACTIONS(2777), - [anon_sym___stdcall] = ACTIONS(2777), - [anon_sym___fastcall] = ACTIONS(2777), - [anon_sym___thiscall] = ACTIONS(2777), - [anon_sym___vectorcall] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_register] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym_thread_local] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_volatile] = ACTIONS(2777), - [anon_sym_restrict] = ACTIONS(2777), - [anon_sym__Atomic] = ACTIONS(2777), - [anon_sym_mutable] = ACTIONS(2777), - [anon_sym_constexpr] = ACTIONS(2777), - [anon_sym_constinit] = ACTIONS(2777), - [anon_sym_consteval] = ACTIONS(2777), - [anon_sym_signed] = ACTIONS(2777), - [anon_sym_unsigned] = ACTIONS(2777), - [anon_sym_long] = ACTIONS(2777), - [anon_sym_short] = ACTIONS(2777), - [sym_primitive_type] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_union] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_switch] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_default] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_goto] = ACTIONS(2777), - [anon_sym_not] = ACTIONS(2777), - [anon_sym_compl] = ACTIONS(2777), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_sizeof] = ACTIONS(2777), - [sym_number_literal] = ACTIONS(2779), - [anon_sym_L_SQUOTE] = ACTIONS(2779), - [anon_sym_u_SQUOTE] = ACTIONS(2779), - [anon_sym_U_SQUOTE] = ACTIONS(2779), - [anon_sym_u8_SQUOTE] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_L_DQUOTE] = ACTIONS(2779), - [anon_sym_u_DQUOTE] = ACTIONS(2779), - [anon_sym_U_DQUOTE] = ACTIONS(2779), - [anon_sym_u8_DQUOTE] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [sym_null] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2777), - [anon_sym_decltype] = ACTIONS(2777), - [anon_sym_virtual] = ACTIONS(2777), - [anon_sym_explicit] = ACTIONS(2777), - [anon_sym_typename] = ACTIONS(2777), - [anon_sym_template] = ACTIONS(2777), - [anon_sym_operator] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_delete] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_namespace] = ACTIONS(2777), - [anon_sym_using] = ACTIONS(2777), - [anon_sym_static_assert] = ACTIONS(2777), - [anon_sym_concept] = ACTIONS(2777), - [anon_sym_co_return] = ACTIONS(2777), - [anon_sym_co_yield] = ACTIONS(2777), - [anon_sym_R_DQUOTE] = ACTIONS(2779), - [anon_sym_LR_DQUOTE] = ACTIONS(2779), - [anon_sym_uR_DQUOTE] = ACTIONS(2779), - [anon_sym_UR_DQUOTE] = ACTIONS(2779), - [anon_sym_u8R_DQUOTE] = ACTIONS(2779), - [anon_sym_co_await] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_requires] = ACTIONS(2777), - [sym_this] = ACTIONS(2777), - [sym_nullptr] = ACTIONS(2777), - }, - [1046] = { - [ts_builtin_sym_end] = ACTIONS(2691), - [sym_identifier] = ACTIONS(2689), - [aux_sym_preproc_include_token1] = ACTIONS(2689), - [aux_sym_preproc_def_token1] = ACTIONS(2689), - [aux_sym_preproc_if_token1] = ACTIONS(2689), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2689), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2689), - [sym_preproc_directive] = ACTIONS(2689), - [anon_sym_LPAREN2] = ACTIONS(2691), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2689), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_SEMI] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2689), - [anon_sym_extern] = ACTIONS(2689), - [anon_sym___attribute__] = ACTIONS(2689), - [anon_sym_COLON_COLON] = ACTIONS(2691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2691), - [anon_sym___declspec] = ACTIONS(2689), - [anon_sym___based] = ACTIONS(2689), - [anon_sym___cdecl] = ACTIONS(2689), - [anon_sym___clrcall] = ACTIONS(2689), - [anon_sym___stdcall] = ACTIONS(2689), - [anon_sym___fastcall] = ACTIONS(2689), - [anon_sym___thiscall] = ACTIONS(2689), - [anon_sym___vectorcall] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_static] = ACTIONS(2689), - [anon_sym_register] = ACTIONS(2689), - [anon_sym_inline] = ACTIONS(2689), - [anon_sym_thread_local] = ACTIONS(2689), - [anon_sym_const] = ACTIONS(2689), - [anon_sym_volatile] = ACTIONS(2689), - [anon_sym_restrict] = ACTIONS(2689), - [anon_sym__Atomic] = ACTIONS(2689), - [anon_sym_mutable] = ACTIONS(2689), - [anon_sym_constexpr] = ACTIONS(2689), - [anon_sym_constinit] = ACTIONS(2689), - [anon_sym_consteval] = ACTIONS(2689), - [anon_sym_signed] = ACTIONS(2689), - [anon_sym_unsigned] = ACTIONS(2689), - [anon_sym_long] = ACTIONS(2689), - [anon_sym_short] = ACTIONS(2689), - [sym_primitive_type] = ACTIONS(2689), - [anon_sym_enum] = ACTIONS(2689), - [anon_sym_class] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(2689), - [anon_sym_union] = ACTIONS(2689), - [anon_sym_if] = ACTIONS(2689), - [anon_sym_switch] = ACTIONS(2689), - [anon_sym_case] = ACTIONS(2689), - [anon_sym_default] = ACTIONS(2689), - [anon_sym_while] = ACTIONS(2689), - [anon_sym_do] = ACTIONS(2689), - [anon_sym_for] = ACTIONS(2689), - [anon_sym_return] = ACTIONS(2689), - [anon_sym_break] = ACTIONS(2689), - [anon_sym_continue] = ACTIONS(2689), - [anon_sym_goto] = ACTIONS(2689), - [anon_sym_not] = ACTIONS(2689), - [anon_sym_compl] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2691), - [anon_sym_sizeof] = ACTIONS(2689), - [sym_number_literal] = ACTIONS(2691), - [anon_sym_L_SQUOTE] = ACTIONS(2691), - [anon_sym_u_SQUOTE] = ACTIONS(2691), - [anon_sym_U_SQUOTE] = ACTIONS(2691), - [anon_sym_u8_SQUOTE] = ACTIONS(2691), - [anon_sym_SQUOTE] = ACTIONS(2691), - [anon_sym_L_DQUOTE] = ACTIONS(2691), - [anon_sym_u_DQUOTE] = ACTIONS(2691), - [anon_sym_U_DQUOTE] = ACTIONS(2691), - [anon_sym_u8_DQUOTE] = ACTIONS(2691), - [anon_sym_DQUOTE] = ACTIONS(2691), - [sym_true] = ACTIONS(2689), - [sym_false] = ACTIONS(2689), - [sym_null] = ACTIONS(2689), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2689), - [anon_sym_decltype] = ACTIONS(2689), - [anon_sym_virtual] = ACTIONS(2689), - [anon_sym_explicit] = ACTIONS(2689), - [anon_sym_typename] = ACTIONS(2689), - [anon_sym_template] = ACTIONS(2689), - [anon_sym_operator] = ACTIONS(2689), - [anon_sym_try] = ACTIONS(2689), - [anon_sym_delete] = ACTIONS(2689), - [anon_sym_throw] = ACTIONS(2689), - [anon_sym_namespace] = ACTIONS(2689), - [anon_sym_using] = ACTIONS(2689), - [anon_sym_static_assert] = ACTIONS(2689), - [anon_sym_concept] = ACTIONS(2689), - [anon_sym_co_return] = ACTIONS(2689), - [anon_sym_co_yield] = ACTIONS(2689), - [anon_sym_R_DQUOTE] = ACTIONS(2691), - [anon_sym_LR_DQUOTE] = ACTIONS(2691), - [anon_sym_uR_DQUOTE] = ACTIONS(2691), - [anon_sym_UR_DQUOTE] = ACTIONS(2691), - [anon_sym_u8R_DQUOTE] = ACTIONS(2691), - [anon_sym_co_await] = ACTIONS(2689), - [anon_sym_new] = ACTIONS(2689), - [anon_sym_requires] = ACTIONS(2689), - [sym_this] = ACTIONS(2689), - [sym_nullptr] = ACTIONS(2689), - }, - [1047] = { - [sym_identifier] = ACTIONS(2821), - [aux_sym_preproc_include_token1] = ACTIONS(2821), - [aux_sym_preproc_def_token1] = ACTIONS(2821), - [aux_sym_preproc_if_token1] = ACTIONS(2821), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2821), - [sym_preproc_directive] = ACTIONS(2821), - [anon_sym_LPAREN2] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2821), - [anon_sym_PLUS] = ACTIONS(2821), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2821), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym_typedef] = ACTIONS(2821), - [anon_sym_extern] = ACTIONS(2821), - [anon_sym___attribute__] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2821), - [anon_sym___based] = ACTIONS(2821), - [anon_sym___cdecl] = ACTIONS(2821), - [anon_sym___clrcall] = ACTIONS(2821), - [anon_sym___stdcall] = ACTIONS(2821), - [anon_sym___fastcall] = ACTIONS(2821), - [anon_sym___thiscall] = ACTIONS(2821), - [anon_sym___vectorcall] = ACTIONS(2821), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_RBRACE] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2821), - [anon_sym_static] = ACTIONS(2821), - [anon_sym_register] = ACTIONS(2821), - [anon_sym_inline] = ACTIONS(2821), - [anon_sym_thread_local] = ACTIONS(2821), - [anon_sym_const] = ACTIONS(2821), - [anon_sym_volatile] = ACTIONS(2821), - [anon_sym_restrict] = ACTIONS(2821), - [anon_sym__Atomic] = ACTIONS(2821), - [anon_sym_mutable] = ACTIONS(2821), - [anon_sym_constexpr] = ACTIONS(2821), - [anon_sym_constinit] = ACTIONS(2821), - [anon_sym_consteval] = ACTIONS(2821), - [anon_sym_signed] = ACTIONS(2821), - [anon_sym_unsigned] = ACTIONS(2821), - [anon_sym_long] = ACTIONS(2821), - [anon_sym_short] = ACTIONS(2821), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2821), - [anon_sym_class] = ACTIONS(2821), - [anon_sym_struct] = ACTIONS(2821), - [anon_sym_union] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2821), - [anon_sym_switch] = ACTIONS(2821), - [anon_sym_case] = ACTIONS(2821), - [anon_sym_default] = ACTIONS(2821), - [anon_sym_while] = ACTIONS(2821), - [anon_sym_do] = ACTIONS(2821), - [anon_sym_for] = ACTIONS(2821), - [anon_sym_return] = ACTIONS(2821), - [anon_sym_break] = ACTIONS(2821), - [anon_sym_continue] = ACTIONS(2821), - [anon_sym_goto] = ACTIONS(2821), - [anon_sym_not] = ACTIONS(2821), - [anon_sym_compl] = ACTIONS(2821), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2821), - [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(2821), - [sym_false] = ACTIONS(2821), - [sym_null] = ACTIONS(2821), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2821), - [anon_sym_decltype] = ACTIONS(2821), - [anon_sym_virtual] = ACTIONS(2821), - [anon_sym_explicit] = ACTIONS(2821), - [anon_sym_typename] = ACTIONS(2821), - [anon_sym_template] = ACTIONS(2821), - [anon_sym_operator] = ACTIONS(2821), - [anon_sym_try] = ACTIONS(2821), - [anon_sym_delete] = ACTIONS(2821), - [anon_sym_throw] = ACTIONS(2821), - [anon_sym_namespace] = ACTIONS(2821), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_static_assert] = ACTIONS(2821), - [anon_sym_concept] = ACTIONS(2821), - [anon_sym_co_return] = ACTIONS(2821), - [anon_sym_co_yield] = ACTIONS(2821), - [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(2821), - [anon_sym_new] = ACTIONS(2821), - [anon_sym_requires] = ACTIONS(2821), - [sym_this] = ACTIONS(2821), - [sym_nullptr] = ACTIONS(2821), - }, - [1048] = { - [sym_identifier] = ACTIONS(2825), - [aux_sym_preproc_include_token1] = ACTIONS(2825), - [aux_sym_preproc_def_token1] = ACTIONS(2825), - [aux_sym_preproc_if_token1] = ACTIONS(2825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2825), - [sym_preproc_directive] = ACTIONS(2825), - [anon_sym_LPAREN2] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2825), - [anon_sym_PLUS] = ACTIONS(2825), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_AMP_AMP] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2825), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_typedef] = ACTIONS(2825), - [anon_sym_extern] = ACTIONS(2825), - [anon_sym___attribute__] = ACTIONS(2825), - [anon_sym_COLON_COLON] = ACTIONS(2827), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2827), - [anon_sym___declspec] = ACTIONS(2825), - [anon_sym___based] = ACTIONS(2825), - [anon_sym___cdecl] = ACTIONS(2825), - [anon_sym___clrcall] = ACTIONS(2825), - [anon_sym___stdcall] = ACTIONS(2825), - [anon_sym___fastcall] = ACTIONS(2825), - [anon_sym___thiscall] = ACTIONS(2825), - [anon_sym___vectorcall] = ACTIONS(2825), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_RBRACE] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(2825), - [anon_sym_register] = ACTIONS(2825), - [anon_sym_inline] = ACTIONS(2825), - [anon_sym_thread_local] = ACTIONS(2825), - [anon_sym_const] = ACTIONS(2825), - [anon_sym_volatile] = ACTIONS(2825), - [anon_sym_restrict] = ACTIONS(2825), - [anon_sym__Atomic] = ACTIONS(2825), - [anon_sym_mutable] = ACTIONS(2825), - [anon_sym_constexpr] = ACTIONS(2825), - [anon_sym_constinit] = ACTIONS(2825), - [anon_sym_consteval] = ACTIONS(2825), - [anon_sym_signed] = ACTIONS(2825), - [anon_sym_unsigned] = ACTIONS(2825), - [anon_sym_long] = ACTIONS(2825), - [anon_sym_short] = ACTIONS(2825), - [sym_primitive_type] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2825), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2825), - [anon_sym_union] = ACTIONS(2825), - [anon_sym_if] = ACTIONS(2825), - [anon_sym_switch] = ACTIONS(2825), - [anon_sym_case] = ACTIONS(2825), - [anon_sym_default] = ACTIONS(2825), - [anon_sym_while] = ACTIONS(2825), - [anon_sym_do] = ACTIONS(2825), - [anon_sym_for] = ACTIONS(2825), - [anon_sym_return] = ACTIONS(2825), - [anon_sym_break] = ACTIONS(2825), - [anon_sym_continue] = ACTIONS(2825), - [anon_sym_goto] = ACTIONS(2825), - [anon_sym_not] = ACTIONS(2825), - [anon_sym_compl] = ACTIONS(2825), - [anon_sym_DASH_DASH] = ACTIONS(2827), - [anon_sym_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_sizeof] = ACTIONS(2825), - [sym_number_literal] = ACTIONS(2827), - [anon_sym_L_SQUOTE] = ACTIONS(2827), - [anon_sym_u_SQUOTE] = ACTIONS(2827), - [anon_sym_U_SQUOTE] = ACTIONS(2827), - [anon_sym_u8_SQUOTE] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2827), - [anon_sym_L_DQUOTE] = ACTIONS(2827), - [anon_sym_u_DQUOTE] = ACTIONS(2827), - [anon_sym_U_DQUOTE] = ACTIONS(2827), - [anon_sym_u8_DQUOTE] = ACTIONS(2827), - [anon_sym_DQUOTE] = ACTIONS(2827), - [sym_true] = ACTIONS(2825), - [sym_false] = ACTIONS(2825), - [sym_null] = ACTIONS(2825), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2825), - [anon_sym_decltype] = ACTIONS(2825), - [anon_sym_virtual] = ACTIONS(2825), - [anon_sym_explicit] = ACTIONS(2825), - [anon_sym_typename] = ACTIONS(2825), - [anon_sym_template] = ACTIONS(2825), - [anon_sym_operator] = ACTIONS(2825), - [anon_sym_try] = ACTIONS(2825), - [anon_sym_delete] = ACTIONS(2825), - [anon_sym_throw] = ACTIONS(2825), - [anon_sym_namespace] = ACTIONS(2825), - [anon_sym_using] = ACTIONS(2825), - [anon_sym_static_assert] = ACTIONS(2825), - [anon_sym_concept] = ACTIONS(2825), - [anon_sym_co_return] = ACTIONS(2825), - [anon_sym_co_yield] = ACTIONS(2825), - [anon_sym_R_DQUOTE] = ACTIONS(2827), - [anon_sym_LR_DQUOTE] = ACTIONS(2827), - [anon_sym_uR_DQUOTE] = ACTIONS(2827), - [anon_sym_UR_DQUOTE] = ACTIONS(2827), - [anon_sym_u8R_DQUOTE] = ACTIONS(2827), - [anon_sym_co_await] = ACTIONS(2825), - [anon_sym_new] = ACTIONS(2825), - [anon_sym_requires] = ACTIONS(2825), - [sym_this] = ACTIONS(2825), - [sym_nullptr] = ACTIONS(2825), - }, - [1049] = { - [ts_builtin_sym_end] = ACTIONS(2687), - [sym_identifier] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym___attribute__] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2687), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), - [anon_sym___declspec] = ACTIONS(2685), - [anon_sym___based] = ACTIONS(2685), - [anon_sym___cdecl] = ACTIONS(2685), - [anon_sym___clrcall] = ACTIONS(2685), - [anon_sym___stdcall] = ACTIONS(2685), - [anon_sym___fastcall] = ACTIONS(2685), - [anon_sym___thiscall] = ACTIONS(2685), - [anon_sym___vectorcall] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_thread_local] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [anon_sym_mutable] = ACTIONS(2685), - [anon_sym_constexpr] = ACTIONS(2685), - [anon_sym_constinit] = ACTIONS(2685), - [anon_sym_consteval] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_not] = ACTIONS(2685), - [anon_sym_compl] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_L_SQUOTE] = ACTIONS(2687), - [anon_sym_u_SQUOTE] = ACTIONS(2687), - [anon_sym_U_SQUOTE] = ACTIONS(2687), - [anon_sym_u8_SQUOTE] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_L_DQUOTE] = ACTIONS(2687), - [anon_sym_u_DQUOTE] = ACTIONS(2687), - [anon_sym_U_DQUOTE] = ACTIONS(2687), - [anon_sym_u8_DQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2685), - [anon_sym_decltype] = ACTIONS(2685), - [anon_sym_virtual] = ACTIONS(2685), - [anon_sym_explicit] = ACTIONS(2685), - [anon_sym_typename] = ACTIONS(2685), - [anon_sym_template] = ACTIONS(2685), - [anon_sym_operator] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_throw] = ACTIONS(2685), - [anon_sym_namespace] = ACTIONS(2685), - [anon_sym_using] = ACTIONS(2685), - [anon_sym_static_assert] = ACTIONS(2685), - [anon_sym_concept] = ACTIONS(2685), - [anon_sym_co_return] = ACTIONS(2685), - [anon_sym_co_yield] = ACTIONS(2685), - [anon_sym_R_DQUOTE] = ACTIONS(2687), - [anon_sym_LR_DQUOTE] = ACTIONS(2687), - [anon_sym_uR_DQUOTE] = ACTIONS(2687), - [anon_sym_UR_DQUOTE] = ACTIONS(2687), - [anon_sym_u8R_DQUOTE] = ACTIONS(2687), - [anon_sym_co_await] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_requires] = ACTIONS(2685), - [sym_this] = ACTIONS(2685), - [sym_nullptr] = ACTIONS(2685), - }, - [1050] = { - [ts_builtin_sym_end] = ACTIONS(2687), - [sym_identifier] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym___attribute__] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2687), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), - [anon_sym___declspec] = ACTIONS(2685), - [anon_sym___based] = ACTIONS(2685), - [anon_sym___cdecl] = ACTIONS(2685), - [anon_sym___clrcall] = ACTIONS(2685), - [anon_sym___stdcall] = ACTIONS(2685), - [anon_sym___fastcall] = ACTIONS(2685), - [anon_sym___thiscall] = ACTIONS(2685), - [anon_sym___vectorcall] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_thread_local] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [anon_sym_mutable] = ACTIONS(2685), - [anon_sym_constexpr] = ACTIONS(2685), - [anon_sym_constinit] = ACTIONS(2685), - [anon_sym_consteval] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_not] = ACTIONS(2685), - [anon_sym_compl] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_L_SQUOTE] = ACTIONS(2687), - [anon_sym_u_SQUOTE] = ACTIONS(2687), - [anon_sym_U_SQUOTE] = ACTIONS(2687), - [anon_sym_u8_SQUOTE] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_L_DQUOTE] = ACTIONS(2687), - [anon_sym_u_DQUOTE] = ACTIONS(2687), - [anon_sym_U_DQUOTE] = ACTIONS(2687), - [anon_sym_u8_DQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2685), - [anon_sym_decltype] = ACTIONS(2685), - [anon_sym_virtual] = ACTIONS(2685), - [anon_sym_explicit] = ACTIONS(2685), - [anon_sym_typename] = ACTIONS(2685), - [anon_sym_template] = ACTIONS(2685), - [anon_sym_operator] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_throw] = ACTIONS(2685), - [anon_sym_namespace] = ACTIONS(2685), - [anon_sym_using] = ACTIONS(2685), - [anon_sym_static_assert] = ACTIONS(2685), - [anon_sym_concept] = ACTIONS(2685), - [anon_sym_co_return] = ACTIONS(2685), - [anon_sym_co_yield] = ACTIONS(2685), - [anon_sym_R_DQUOTE] = ACTIONS(2687), - [anon_sym_LR_DQUOTE] = ACTIONS(2687), - [anon_sym_uR_DQUOTE] = ACTIONS(2687), - [anon_sym_UR_DQUOTE] = ACTIONS(2687), - [anon_sym_u8R_DQUOTE] = ACTIONS(2687), - [anon_sym_co_await] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_requires] = ACTIONS(2685), - [sym_this] = ACTIONS(2685), - [sym_nullptr] = ACTIONS(2685), - }, - [1051] = { - [sym_identifier] = ACTIONS(2829), - [aux_sym_preproc_include_token1] = ACTIONS(2829), - [aux_sym_preproc_def_token1] = ACTIONS(2829), - [aux_sym_preproc_if_token1] = ACTIONS(2829), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2829), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2829), - [sym_preproc_directive] = ACTIONS(2829), - [anon_sym_LPAREN2] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2829), - [anon_sym_PLUS] = ACTIONS(2829), - [anon_sym_STAR] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2829), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_typedef] = ACTIONS(2829), - [anon_sym_extern] = ACTIONS(2829), - [anon_sym___attribute__] = ACTIONS(2829), - [anon_sym_COLON_COLON] = ACTIONS(2831), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2831), - [anon_sym___declspec] = ACTIONS(2829), - [anon_sym___based] = ACTIONS(2829), - [anon_sym___cdecl] = ACTIONS(2829), - [anon_sym___clrcall] = ACTIONS(2829), - [anon_sym___stdcall] = ACTIONS(2829), - [anon_sym___fastcall] = ACTIONS(2829), - [anon_sym___thiscall] = ACTIONS(2829), - [anon_sym___vectorcall] = ACTIONS(2829), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_RBRACE] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_static] = ACTIONS(2829), - [anon_sym_register] = ACTIONS(2829), - [anon_sym_inline] = ACTIONS(2829), - [anon_sym_thread_local] = ACTIONS(2829), - [anon_sym_const] = ACTIONS(2829), - [anon_sym_volatile] = ACTIONS(2829), - [anon_sym_restrict] = ACTIONS(2829), - [anon_sym__Atomic] = ACTIONS(2829), - [anon_sym_mutable] = ACTIONS(2829), - [anon_sym_constexpr] = ACTIONS(2829), - [anon_sym_constinit] = ACTIONS(2829), - [anon_sym_consteval] = ACTIONS(2829), - [anon_sym_signed] = ACTIONS(2829), - [anon_sym_unsigned] = ACTIONS(2829), - [anon_sym_long] = ACTIONS(2829), - [anon_sym_short] = ACTIONS(2829), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2829), - [anon_sym_class] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2829), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_if] = ACTIONS(2829), - [anon_sym_switch] = ACTIONS(2829), - [anon_sym_case] = ACTIONS(2829), - [anon_sym_default] = ACTIONS(2829), - [anon_sym_while] = ACTIONS(2829), - [anon_sym_do] = ACTIONS(2829), - [anon_sym_for] = ACTIONS(2829), - [anon_sym_return] = ACTIONS(2829), - [anon_sym_break] = ACTIONS(2829), - [anon_sym_continue] = ACTIONS(2829), - [anon_sym_goto] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2829), - [anon_sym_compl] = ACTIONS(2829), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2829), - [sym_number_literal] = ACTIONS(2831), - [anon_sym_L_SQUOTE] = ACTIONS(2831), - [anon_sym_u_SQUOTE] = ACTIONS(2831), - [anon_sym_U_SQUOTE] = ACTIONS(2831), - [anon_sym_u8_SQUOTE] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2831), - [anon_sym_L_DQUOTE] = ACTIONS(2831), - [anon_sym_u_DQUOTE] = ACTIONS(2831), - [anon_sym_U_DQUOTE] = ACTIONS(2831), - [anon_sym_u8_DQUOTE] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2831), - [sym_true] = ACTIONS(2829), - [sym_false] = ACTIONS(2829), - [sym_null] = ACTIONS(2829), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2829), - [anon_sym_decltype] = ACTIONS(2829), - [anon_sym_virtual] = ACTIONS(2829), - [anon_sym_explicit] = ACTIONS(2829), - [anon_sym_typename] = ACTIONS(2829), - [anon_sym_template] = ACTIONS(2829), - [anon_sym_operator] = ACTIONS(2829), - [anon_sym_try] = ACTIONS(2829), - [anon_sym_delete] = ACTIONS(2829), - [anon_sym_throw] = ACTIONS(2829), - [anon_sym_namespace] = ACTIONS(2829), - [anon_sym_using] = ACTIONS(2829), - [anon_sym_static_assert] = ACTIONS(2829), - [anon_sym_concept] = ACTIONS(2829), - [anon_sym_co_return] = ACTIONS(2829), - [anon_sym_co_yield] = ACTIONS(2829), - [anon_sym_R_DQUOTE] = ACTIONS(2831), - [anon_sym_LR_DQUOTE] = ACTIONS(2831), - [anon_sym_uR_DQUOTE] = ACTIONS(2831), - [anon_sym_UR_DQUOTE] = ACTIONS(2831), - [anon_sym_u8R_DQUOTE] = ACTIONS(2831), - [anon_sym_co_await] = ACTIONS(2829), - [anon_sym_new] = ACTIONS(2829), - [anon_sym_requires] = ACTIONS(2829), - [sym_this] = ACTIONS(2829), - [sym_nullptr] = ACTIONS(2829), - }, - [1052] = { - [sym_identifier] = ACTIONS(2833), - [aux_sym_preproc_include_token1] = ACTIONS(2833), - [aux_sym_preproc_def_token1] = ACTIONS(2833), - [aux_sym_preproc_if_token1] = ACTIONS(2833), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2833), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2833), - [sym_preproc_directive] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(2835), - [anon_sym_BANG] = ACTIONS(2835), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2833), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2833), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_typedef] = ACTIONS(2833), - [anon_sym_extern] = ACTIONS(2833), - [anon_sym___attribute__] = ACTIONS(2833), - [anon_sym_COLON_COLON] = ACTIONS(2835), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2835), - [anon_sym___declspec] = ACTIONS(2833), - [anon_sym___based] = ACTIONS(2833), - [anon_sym___cdecl] = ACTIONS(2833), - [anon_sym___clrcall] = ACTIONS(2833), - [anon_sym___stdcall] = ACTIONS(2833), - [anon_sym___fastcall] = ACTIONS(2833), - [anon_sym___thiscall] = ACTIONS(2833), - [anon_sym___vectorcall] = ACTIONS(2833), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_RBRACE] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2833), - [anon_sym_static] = ACTIONS(2833), - [anon_sym_register] = ACTIONS(2833), - [anon_sym_inline] = ACTIONS(2833), - [anon_sym_thread_local] = ACTIONS(2833), - [anon_sym_const] = ACTIONS(2833), - [anon_sym_volatile] = ACTIONS(2833), - [anon_sym_restrict] = ACTIONS(2833), - [anon_sym__Atomic] = ACTIONS(2833), - [anon_sym_mutable] = ACTIONS(2833), - [anon_sym_constexpr] = ACTIONS(2833), - [anon_sym_constinit] = ACTIONS(2833), - [anon_sym_consteval] = ACTIONS(2833), - [anon_sym_signed] = ACTIONS(2833), - [anon_sym_unsigned] = ACTIONS(2833), - [anon_sym_long] = ACTIONS(2833), - [anon_sym_short] = ACTIONS(2833), - [sym_primitive_type] = ACTIONS(2833), - [anon_sym_enum] = ACTIONS(2833), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2833), - [anon_sym_union] = ACTIONS(2833), - [anon_sym_if] = ACTIONS(2833), - [anon_sym_switch] = ACTIONS(2833), - [anon_sym_case] = ACTIONS(2833), - [anon_sym_default] = ACTIONS(2833), - [anon_sym_while] = ACTIONS(2833), - [anon_sym_do] = ACTIONS(2833), - [anon_sym_for] = ACTIONS(2833), - [anon_sym_return] = ACTIONS(2833), - [anon_sym_break] = ACTIONS(2833), - [anon_sym_continue] = ACTIONS(2833), - [anon_sym_goto] = ACTIONS(2833), - [anon_sym_not] = ACTIONS(2833), - [anon_sym_compl] = ACTIONS(2833), - [anon_sym_DASH_DASH] = ACTIONS(2835), - [anon_sym_PLUS_PLUS] = ACTIONS(2835), - [anon_sym_sizeof] = ACTIONS(2833), - [sym_number_literal] = ACTIONS(2835), - [anon_sym_L_SQUOTE] = ACTIONS(2835), - [anon_sym_u_SQUOTE] = ACTIONS(2835), - [anon_sym_U_SQUOTE] = ACTIONS(2835), - [anon_sym_u8_SQUOTE] = ACTIONS(2835), - [anon_sym_SQUOTE] = ACTIONS(2835), - [anon_sym_L_DQUOTE] = ACTIONS(2835), - [anon_sym_u_DQUOTE] = ACTIONS(2835), - [anon_sym_U_DQUOTE] = ACTIONS(2835), - [anon_sym_u8_DQUOTE] = ACTIONS(2835), - [anon_sym_DQUOTE] = ACTIONS(2835), - [sym_true] = ACTIONS(2833), - [sym_false] = ACTIONS(2833), - [sym_null] = ACTIONS(2833), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2833), - [anon_sym_decltype] = ACTIONS(2833), - [anon_sym_virtual] = ACTIONS(2833), - [anon_sym_explicit] = ACTIONS(2833), - [anon_sym_typename] = ACTIONS(2833), - [anon_sym_template] = ACTIONS(2833), - [anon_sym_operator] = ACTIONS(2833), - [anon_sym_try] = ACTIONS(2833), - [anon_sym_delete] = ACTIONS(2833), - [anon_sym_throw] = ACTIONS(2833), - [anon_sym_namespace] = ACTIONS(2833), - [anon_sym_using] = ACTIONS(2833), - [anon_sym_static_assert] = ACTIONS(2833), - [anon_sym_concept] = ACTIONS(2833), - [anon_sym_co_return] = ACTIONS(2833), - [anon_sym_co_yield] = ACTIONS(2833), - [anon_sym_R_DQUOTE] = ACTIONS(2835), - [anon_sym_LR_DQUOTE] = ACTIONS(2835), - [anon_sym_uR_DQUOTE] = ACTIONS(2835), - [anon_sym_UR_DQUOTE] = ACTIONS(2835), - [anon_sym_u8R_DQUOTE] = ACTIONS(2835), - [anon_sym_co_await] = ACTIONS(2833), - [anon_sym_new] = ACTIONS(2833), - [anon_sym_requires] = ACTIONS(2833), - [sym_this] = ACTIONS(2833), - [sym_nullptr] = ACTIONS(2833), - }, - [1053] = { - [sym_identifier] = ACTIONS(2837), - [aux_sym_preproc_include_token1] = ACTIONS(2837), - [aux_sym_preproc_def_token1] = ACTIONS(2837), - [aux_sym_preproc_if_token1] = ACTIONS(2837), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2837), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2837), - [sym_preproc_directive] = ACTIONS(2837), - [anon_sym_LPAREN2] = ACTIONS(2839), - [anon_sym_BANG] = ACTIONS(2839), - [anon_sym_TILDE] = ACTIONS(2839), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2839), - [anon_sym_AMP_AMP] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_typedef] = ACTIONS(2837), - [anon_sym_extern] = ACTIONS(2837), - [anon_sym___attribute__] = ACTIONS(2837), - [anon_sym_COLON_COLON] = ACTIONS(2839), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2839), - [anon_sym___declspec] = ACTIONS(2837), - [anon_sym___based] = ACTIONS(2837), - [anon_sym___cdecl] = ACTIONS(2837), - [anon_sym___clrcall] = ACTIONS(2837), - [anon_sym___stdcall] = ACTIONS(2837), - [anon_sym___fastcall] = ACTIONS(2837), - [anon_sym___thiscall] = ACTIONS(2837), - [anon_sym___vectorcall] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_RBRACE] = ACTIONS(2839), - [anon_sym_LBRACK] = ACTIONS(2837), - [anon_sym_static] = ACTIONS(2837), - [anon_sym_register] = ACTIONS(2837), - [anon_sym_inline] = ACTIONS(2837), - [anon_sym_thread_local] = ACTIONS(2837), - [anon_sym_const] = ACTIONS(2837), - [anon_sym_volatile] = ACTIONS(2837), - [anon_sym_restrict] = ACTIONS(2837), - [anon_sym__Atomic] = ACTIONS(2837), - [anon_sym_mutable] = ACTIONS(2837), - [anon_sym_constexpr] = ACTIONS(2837), - [anon_sym_constinit] = ACTIONS(2837), - [anon_sym_consteval] = ACTIONS(2837), - [anon_sym_signed] = ACTIONS(2837), - [anon_sym_unsigned] = ACTIONS(2837), - [anon_sym_long] = ACTIONS(2837), - [anon_sym_short] = ACTIONS(2837), - [sym_primitive_type] = ACTIONS(2837), - [anon_sym_enum] = ACTIONS(2837), - [anon_sym_class] = ACTIONS(2837), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_union] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_switch] = ACTIONS(2837), - [anon_sym_case] = ACTIONS(2837), - [anon_sym_default] = ACTIONS(2837), - [anon_sym_while] = ACTIONS(2837), - [anon_sym_do] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_break] = ACTIONS(2837), - [anon_sym_continue] = ACTIONS(2837), - [anon_sym_goto] = ACTIONS(2837), - [anon_sym_not] = ACTIONS(2837), - [anon_sym_compl] = ACTIONS(2837), - [anon_sym_DASH_DASH] = ACTIONS(2839), - [anon_sym_PLUS_PLUS] = ACTIONS(2839), - [anon_sym_sizeof] = ACTIONS(2837), - [sym_number_literal] = ACTIONS(2839), - [anon_sym_L_SQUOTE] = ACTIONS(2839), - [anon_sym_u_SQUOTE] = ACTIONS(2839), - [anon_sym_U_SQUOTE] = ACTIONS(2839), - [anon_sym_u8_SQUOTE] = ACTIONS(2839), - [anon_sym_SQUOTE] = ACTIONS(2839), - [anon_sym_L_DQUOTE] = ACTIONS(2839), - [anon_sym_u_DQUOTE] = ACTIONS(2839), - [anon_sym_U_DQUOTE] = ACTIONS(2839), - [anon_sym_u8_DQUOTE] = ACTIONS(2839), - [anon_sym_DQUOTE] = ACTIONS(2839), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_null] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2837), - [anon_sym_decltype] = ACTIONS(2837), - [anon_sym_virtual] = ACTIONS(2837), - [anon_sym_explicit] = ACTIONS(2837), - [anon_sym_typename] = ACTIONS(2837), - [anon_sym_template] = ACTIONS(2837), - [anon_sym_operator] = ACTIONS(2837), - [anon_sym_try] = ACTIONS(2837), - [anon_sym_delete] = ACTIONS(2837), - [anon_sym_throw] = ACTIONS(2837), - [anon_sym_namespace] = ACTIONS(2837), - [anon_sym_using] = ACTIONS(2837), - [anon_sym_static_assert] = ACTIONS(2837), - [anon_sym_concept] = ACTIONS(2837), - [anon_sym_co_return] = ACTIONS(2837), - [anon_sym_co_yield] = ACTIONS(2837), - [anon_sym_R_DQUOTE] = ACTIONS(2839), - [anon_sym_LR_DQUOTE] = ACTIONS(2839), - [anon_sym_uR_DQUOTE] = ACTIONS(2839), - [anon_sym_UR_DQUOTE] = ACTIONS(2839), - [anon_sym_u8R_DQUOTE] = ACTIONS(2839), - [anon_sym_co_await] = ACTIONS(2837), - [anon_sym_new] = ACTIONS(2837), - [anon_sym_requires] = ACTIONS(2837), - [sym_this] = ACTIONS(2837), - [sym_nullptr] = ACTIONS(2837), - }, - [1054] = { - [sym_identifier] = ACTIONS(2845), - [aux_sym_preproc_include_token1] = ACTIONS(2845), - [aux_sym_preproc_def_token1] = ACTIONS(2845), - [aux_sym_preproc_if_token1] = ACTIONS(2845), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2845), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2845), - [sym_preproc_directive] = ACTIONS(2845), - [anon_sym_LPAREN2] = ACTIONS(2847), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_TILDE] = ACTIONS(2847), - [anon_sym_DASH] = ACTIONS(2845), - [anon_sym_PLUS] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_AMP_AMP] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_SEMI] = ACTIONS(2847), - [anon_sym_typedef] = ACTIONS(2845), - [anon_sym_extern] = ACTIONS(2845), - [anon_sym___attribute__] = ACTIONS(2845), - [anon_sym_COLON_COLON] = ACTIONS(2847), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2847), - [anon_sym___declspec] = ACTIONS(2845), - [anon_sym___based] = ACTIONS(2845), - [anon_sym___cdecl] = ACTIONS(2845), - [anon_sym___clrcall] = ACTIONS(2845), - [anon_sym___stdcall] = ACTIONS(2845), - [anon_sym___fastcall] = ACTIONS(2845), - [anon_sym___thiscall] = ACTIONS(2845), - [anon_sym___vectorcall] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_static] = ACTIONS(2845), - [anon_sym_register] = ACTIONS(2845), - [anon_sym_inline] = ACTIONS(2845), - [anon_sym_thread_local] = ACTIONS(2845), - [anon_sym_const] = ACTIONS(2845), - [anon_sym_volatile] = ACTIONS(2845), - [anon_sym_restrict] = ACTIONS(2845), - [anon_sym__Atomic] = ACTIONS(2845), - [anon_sym_mutable] = ACTIONS(2845), - [anon_sym_constexpr] = ACTIONS(2845), - [anon_sym_constinit] = ACTIONS(2845), - [anon_sym_consteval] = ACTIONS(2845), - [anon_sym_signed] = ACTIONS(2845), - [anon_sym_unsigned] = ACTIONS(2845), - [anon_sym_long] = ACTIONS(2845), - [anon_sym_short] = ACTIONS(2845), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_enum] = ACTIONS(2845), - [anon_sym_class] = ACTIONS(2845), - [anon_sym_struct] = ACTIONS(2845), - [anon_sym_union] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(2845), - [anon_sym_switch] = ACTIONS(2845), - [anon_sym_case] = ACTIONS(2845), - [anon_sym_default] = ACTIONS(2845), - [anon_sym_while] = ACTIONS(2845), - [anon_sym_do] = ACTIONS(2845), - [anon_sym_for] = ACTIONS(2845), - [anon_sym_return] = ACTIONS(2845), - [anon_sym_break] = ACTIONS(2845), - [anon_sym_continue] = ACTIONS(2845), - [anon_sym_goto] = ACTIONS(2845), - [anon_sym_not] = ACTIONS(2845), - [anon_sym_compl] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2845), - [sym_number_literal] = ACTIONS(2847), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2847), - [anon_sym_u_DQUOTE] = ACTIONS(2847), - [anon_sym_U_DQUOTE] = ACTIONS(2847), - [anon_sym_u8_DQUOTE] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2847), - [sym_true] = ACTIONS(2845), - [sym_false] = ACTIONS(2845), - [sym_null] = ACTIONS(2845), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2845), - [anon_sym_decltype] = ACTIONS(2845), - [anon_sym_virtual] = ACTIONS(2845), - [anon_sym_explicit] = ACTIONS(2845), - [anon_sym_typename] = ACTIONS(2845), - [anon_sym_template] = ACTIONS(2845), - [anon_sym_operator] = ACTIONS(2845), - [anon_sym_try] = ACTIONS(2845), - [anon_sym_delete] = ACTIONS(2845), - [anon_sym_throw] = ACTIONS(2845), - [anon_sym_namespace] = ACTIONS(2845), - [anon_sym_using] = ACTIONS(2845), - [anon_sym_static_assert] = ACTIONS(2845), - [anon_sym_concept] = ACTIONS(2845), - [anon_sym_co_return] = ACTIONS(2845), - [anon_sym_co_yield] = ACTIONS(2845), - [anon_sym_R_DQUOTE] = ACTIONS(2847), - [anon_sym_LR_DQUOTE] = ACTIONS(2847), - [anon_sym_uR_DQUOTE] = ACTIONS(2847), - [anon_sym_UR_DQUOTE] = ACTIONS(2847), - [anon_sym_u8R_DQUOTE] = ACTIONS(2847), - [anon_sym_co_await] = ACTIONS(2845), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_requires] = ACTIONS(2845), - [sym_this] = ACTIONS(2845), - [sym_nullptr] = ACTIONS(2845), - }, - [1055] = { - [sym_identifier] = ACTIONS(2841), - [aux_sym_preproc_include_token1] = ACTIONS(2841), - [aux_sym_preproc_def_token1] = ACTIONS(2841), - [aux_sym_preproc_if_token1] = ACTIONS(2841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2841), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2841), - [sym_preproc_directive] = ACTIONS(2841), - [anon_sym_LPAREN2] = ACTIONS(2843), - [anon_sym_BANG] = ACTIONS(2843), - [anon_sym_TILDE] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_STAR] = ACTIONS(2843), - [anon_sym_AMP_AMP] = ACTIONS(2843), - [anon_sym_AMP] = ACTIONS(2841), - [anon_sym_SEMI] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2841), - [anon_sym_extern] = ACTIONS(2841), - [anon_sym___attribute__] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(2843), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2843), - [anon_sym___declspec] = ACTIONS(2841), - [anon_sym___based] = ACTIONS(2841), - [anon_sym___cdecl] = ACTIONS(2841), - [anon_sym___clrcall] = ACTIONS(2841), - [anon_sym___stdcall] = ACTIONS(2841), - [anon_sym___fastcall] = ACTIONS(2841), - [anon_sym___thiscall] = ACTIONS(2841), - [anon_sym___vectorcall] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_static] = ACTIONS(2841), - [anon_sym_register] = ACTIONS(2841), - [anon_sym_inline] = ACTIONS(2841), - [anon_sym_thread_local] = ACTIONS(2841), - [anon_sym_const] = ACTIONS(2841), - [anon_sym_volatile] = ACTIONS(2841), - [anon_sym_restrict] = ACTIONS(2841), - [anon_sym__Atomic] = ACTIONS(2841), - [anon_sym_mutable] = ACTIONS(2841), - [anon_sym_constexpr] = ACTIONS(2841), - [anon_sym_constinit] = ACTIONS(2841), - [anon_sym_consteval] = ACTIONS(2841), - [anon_sym_signed] = ACTIONS(2841), - [anon_sym_unsigned] = ACTIONS(2841), - [anon_sym_long] = ACTIONS(2841), - [anon_sym_short] = ACTIONS(2841), - [sym_primitive_type] = ACTIONS(2841), - [anon_sym_enum] = ACTIONS(2841), - [anon_sym_class] = ACTIONS(2841), - [anon_sym_struct] = ACTIONS(2841), - [anon_sym_union] = ACTIONS(2841), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_switch] = ACTIONS(2841), - [anon_sym_case] = ACTIONS(2841), - [anon_sym_default] = ACTIONS(2841), - [anon_sym_while] = ACTIONS(2841), - [anon_sym_do] = ACTIONS(2841), - [anon_sym_for] = ACTIONS(2841), - [anon_sym_return] = ACTIONS(2841), - [anon_sym_break] = ACTIONS(2841), - [anon_sym_continue] = ACTIONS(2841), - [anon_sym_goto] = ACTIONS(2841), - [anon_sym_not] = ACTIONS(2841), - [anon_sym_compl] = ACTIONS(2841), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_PLUS_PLUS] = ACTIONS(2843), - [anon_sym_sizeof] = ACTIONS(2841), - [sym_number_literal] = ACTIONS(2843), - [anon_sym_L_SQUOTE] = ACTIONS(2843), - [anon_sym_u_SQUOTE] = ACTIONS(2843), - [anon_sym_U_SQUOTE] = ACTIONS(2843), - [anon_sym_u8_SQUOTE] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_L_DQUOTE] = ACTIONS(2843), - [anon_sym_u_DQUOTE] = ACTIONS(2843), - [anon_sym_U_DQUOTE] = ACTIONS(2843), - [anon_sym_u8_DQUOTE] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym_true] = ACTIONS(2841), - [sym_false] = ACTIONS(2841), - [sym_null] = ACTIONS(2841), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2841), - [anon_sym_decltype] = ACTIONS(2841), - [anon_sym_virtual] = ACTIONS(2841), - [anon_sym_explicit] = ACTIONS(2841), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2841), - [anon_sym_operator] = ACTIONS(2841), - [anon_sym_try] = ACTIONS(2841), - [anon_sym_delete] = ACTIONS(2841), - [anon_sym_throw] = ACTIONS(2841), - [anon_sym_namespace] = ACTIONS(2841), - [anon_sym_using] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2841), - [anon_sym_concept] = ACTIONS(2841), - [anon_sym_co_return] = ACTIONS(2841), - [anon_sym_co_yield] = ACTIONS(2841), - [anon_sym_R_DQUOTE] = ACTIONS(2843), - [anon_sym_LR_DQUOTE] = ACTIONS(2843), - [anon_sym_uR_DQUOTE] = ACTIONS(2843), - [anon_sym_UR_DQUOTE] = ACTIONS(2843), - [anon_sym_u8R_DQUOTE] = ACTIONS(2843), - [anon_sym_co_await] = ACTIONS(2841), - [anon_sym_new] = ACTIONS(2841), - [anon_sym_requires] = ACTIONS(2841), - [sym_this] = ACTIONS(2841), - [sym_nullptr] = ACTIONS(2841), - }, - [1056] = { - [sym_identifier] = ACTIONS(2753), - [aux_sym_preproc_include_token1] = ACTIONS(2753), - [aux_sym_preproc_def_token1] = ACTIONS(2753), - [aux_sym_preproc_if_token1] = ACTIONS(2753), - [aux_sym_preproc_if_token2] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), - [sym_preproc_directive] = ACTIONS(2753), - [anon_sym_LPAREN2] = ACTIONS(2755), - [anon_sym_BANG] = ACTIONS(2755), - [anon_sym_TILDE] = ACTIONS(2755), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_SEMI] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2753), - [anon_sym_extern] = ACTIONS(2753), - [anon_sym___attribute__] = ACTIONS(2753), - [anon_sym_COLON_COLON] = ACTIONS(2755), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), - [anon_sym___declspec] = ACTIONS(2753), - [anon_sym___based] = ACTIONS(2753), - [anon_sym___cdecl] = ACTIONS(2753), - [anon_sym___clrcall] = ACTIONS(2753), - [anon_sym___stdcall] = ACTIONS(2753), - [anon_sym___fastcall] = ACTIONS(2753), - [anon_sym___thiscall] = ACTIONS(2753), - [anon_sym___vectorcall] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2753), - [anon_sym_static] = ACTIONS(2753), - [anon_sym_register] = ACTIONS(2753), - [anon_sym_inline] = ACTIONS(2753), - [anon_sym_thread_local] = ACTIONS(2753), - [anon_sym_const] = ACTIONS(2753), - [anon_sym_volatile] = ACTIONS(2753), - [anon_sym_restrict] = ACTIONS(2753), - [anon_sym__Atomic] = ACTIONS(2753), - [anon_sym_mutable] = ACTIONS(2753), - [anon_sym_constexpr] = ACTIONS(2753), - [anon_sym_constinit] = ACTIONS(2753), - [anon_sym_consteval] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2753), - [anon_sym_unsigned] = ACTIONS(2753), - [anon_sym_long] = ACTIONS(2753), - [anon_sym_short] = ACTIONS(2753), - [sym_primitive_type] = ACTIONS(2753), - [anon_sym_enum] = ACTIONS(2753), - [anon_sym_class] = ACTIONS(2753), - [anon_sym_struct] = ACTIONS(2753), - [anon_sym_union] = ACTIONS(2753), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_switch] = ACTIONS(2753), - [anon_sym_case] = ACTIONS(2753), - [anon_sym_default] = ACTIONS(2753), - [anon_sym_while] = ACTIONS(2753), - [anon_sym_do] = ACTIONS(2753), - [anon_sym_for] = ACTIONS(2753), - [anon_sym_return] = ACTIONS(2753), - [anon_sym_break] = ACTIONS(2753), - [anon_sym_continue] = ACTIONS(2753), - [anon_sym_goto] = ACTIONS(2753), - [anon_sym_not] = ACTIONS(2753), - [anon_sym_compl] = ACTIONS(2753), - [anon_sym_DASH_DASH] = ACTIONS(2755), - [anon_sym_PLUS_PLUS] = ACTIONS(2755), - [anon_sym_sizeof] = ACTIONS(2753), - [sym_number_literal] = ACTIONS(2755), - [anon_sym_L_SQUOTE] = ACTIONS(2755), - [anon_sym_u_SQUOTE] = ACTIONS(2755), - [anon_sym_U_SQUOTE] = ACTIONS(2755), - [anon_sym_u8_SQUOTE] = ACTIONS(2755), - [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_L_DQUOTE] = ACTIONS(2755), - [anon_sym_u_DQUOTE] = ACTIONS(2755), - [anon_sym_U_DQUOTE] = ACTIONS(2755), - [anon_sym_u8_DQUOTE] = ACTIONS(2755), - [anon_sym_DQUOTE] = ACTIONS(2755), - [sym_true] = ACTIONS(2753), - [sym_false] = ACTIONS(2753), - [sym_null] = ACTIONS(2753), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2753), - [anon_sym_decltype] = ACTIONS(2753), - [anon_sym_virtual] = ACTIONS(2753), - [anon_sym_explicit] = ACTIONS(2753), - [anon_sym_typename] = ACTIONS(2753), - [anon_sym_template] = ACTIONS(2753), - [anon_sym_operator] = ACTIONS(2753), - [anon_sym_try] = ACTIONS(2753), - [anon_sym_delete] = ACTIONS(2753), - [anon_sym_throw] = ACTIONS(2753), - [anon_sym_namespace] = ACTIONS(2753), - [anon_sym_using] = ACTIONS(2753), - [anon_sym_static_assert] = ACTIONS(2753), - [anon_sym_concept] = ACTIONS(2753), - [anon_sym_co_return] = ACTIONS(2753), - [anon_sym_co_yield] = ACTIONS(2753), - [anon_sym_R_DQUOTE] = ACTIONS(2755), - [anon_sym_LR_DQUOTE] = ACTIONS(2755), - [anon_sym_uR_DQUOTE] = ACTIONS(2755), - [anon_sym_UR_DQUOTE] = ACTIONS(2755), - [anon_sym_u8R_DQUOTE] = ACTIONS(2755), - [anon_sym_co_await] = ACTIONS(2753), - [anon_sym_new] = ACTIONS(2753), - [anon_sym_requires] = ACTIONS(2753), - [sym_this] = ACTIONS(2753), - [sym_nullptr] = ACTIONS(2753), - }, - [1057] = { - [sym_identifier] = ACTIONS(2697), - [aux_sym_preproc_include_token1] = ACTIONS(2697), - [aux_sym_preproc_def_token1] = ACTIONS(2697), - [aux_sym_preproc_if_token1] = ACTIONS(2697), - [aux_sym_preproc_if_token2] = ACTIONS(2697), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2697), - [sym_preproc_directive] = ACTIONS(2697), - [anon_sym_LPAREN2] = ACTIONS(2699), - [anon_sym_BANG] = ACTIONS(2699), - [anon_sym_TILDE] = ACTIONS(2699), - [anon_sym_DASH] = ACTIONS(2697), - [anon_sym_PLUS] = ACTIONS(2697), - [anon_sym_STAR] = ACTIONS(2699), - [anon_sym_AMP_AMP] = ACTIONS(2699), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_SEMI] = ACTIONS(2699), - [anon_sym_typedef] = ACTIONS(2697), - [anon_sym_extern] = ACTIONS(2697), - [anon_sym___attribute__] = ACTIONS(2697), - [anon_sym_COLON_COLON] = ACTIONS(2699), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2699), - [anon_sym___declspec] = ACTIONS(2697), - [anon_sym___based] = ACTIONS(2697), - [anon_sym___cdecl] = ACTIONS(2697), - [anon_sym___clrcall] = ACTIONS(2697), - [anon_sym___stdcall] = ACTIONS(2697), - [anon_sym___fastcall] = ACTIONS(2697), - [anon_sym___thiscall] = ACTIONS(2697), - [anon_sym___vectorcall] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2697), - [anon_sym_static] = ACTIONS(2697), - [anon_sym_register] = ACTIONS(2697), - [anon_sym_inline] = ACTIONS(2697), - [anon_sym_thread_local] = ACTIONS(2697), - [anon_sym_const] = ACTIONS(2697), - [anon_sym_volatile] = ACTIONS(2697), - [anon_sym_restrict] = ACTIONS(2697), - [anon_sym__Atomic] = ACTIONS(2697), - [anon_sym_mutable] = ACTIONS(2697), - [anon_sym_constexpr] = ACTIONS(2697), - [anon_sym_constinit] = ACTIONS(2697), - [anon_sym_consteval] = ACTIONS(2697), - [anon_sym_signed] = ACTIONS(2697), - [anon_sym_unsigned] = ACTIONS(2697), - [anon_sym_long] = ACTIONS(2697), - [anon_sym_short] = ACTIONS(2697), - [sym_primitive_type] = ACTIONS(2697), - [anon_sym_enum] = ACTIONS(2697), - [anon_sym_class] = ACTIONS(2697), - [anon_sym_struct] = ACTIONS(2697), - [anon_sym_union] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_switch] = ACTIONS(2697), - [anon_sym_case] = ACTIONS(2697), - [anon_sym_default] = ACTIONS(2697), - [anon_sym_while] = ACTIONS(2697), - [anon_sym_do] = ACTIONS(2697), - [anon_sym_for] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_break] = ACTIONS(2697), - [anon_sym_continue] = ACTIONS(2697), - [anon_sym_goto] = ACTIONS(2697), - [anon_sym_not] = ACTIONS(2697), - [anon_sym_compl] = ACTIONS(2697), - [anon_sym_DASH_DASH] = ACTIONS(2699), - [anon_sym_PLUS_PLUS] = ACTIONS(2699), - [anon_sym_sizeof] = ACTIONS(2697), - [sym_number_literal] = ACTIONS(2699), - [anon_sym_L_SQUOTE] = ACTIONS(2699), - [anon_sym_u_SQUOTE] = ACTIONS(2699), - [anon_sym_U_SQUOTE] = ACTIONS(2699), - [anon_sym_u8_SQUOTE] = ACTIONS(2699), - [anon_sym_SQUOTE] = ACTIONS(2699), - [anon_sym_L_DQUOTE] = ACTIONS(2699), - [anon_sym_u_DQUOTE] = ACTIONS(2699), - [anon_sym_U_DQUOTE] = ACTIONS(2699), - [anon_sym_u8_DQUOTE] = ACTIONS(2699), - [anon_sym_DQUOTE] = ACTIONS(2699), - [sym_true] = ACTIONS(2697), - [sym_false] = ACTIONS(2697), - [sym_null] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2697), - [anon_sym_decltype] = ACTIONS(2697), - [anon_sym_virtual] = ACTIONS(2697), - [anon_sym_explicit] = ACTIONS(2697), - [anon_sym_typename] = ACTIONS(2697), - [anon_sym_template] = ACTIONS(2697), - [anon_sym_operator] = ACTIONS(2697), - [anon_sym_try] = ACTIONS(2697), - [anon_sym_delete] = ACTIONS(2697), - [anon_sym_throw] = ACTIONS(2697), - [anon_sym_namespace] = ACTIONS(2697), - [anon_sym_using] = ACTIONS(2697), - [anon_sym_static_assert] = ACTIONS(2697), - [anon_sym_concept] = ACTIONS(2697), - [anon_sym_co_return] = ACTIONS(2697), - [anon_sym_co_yield] = ACTIONS(2697), - [anon_sym_R_DQUOTE] = ACTIONS(2699), - [anon_sym_LR_DQUOTE] = ACTIONS(2699), - [anon_sym_uR_DQUOTE] = ACTIONS(2699), - [anon_sym_UR_DQUOTE] = ACTIONS(2699), - [anon_sym_u8R_DQUOTE] = ACTIONS(2699), - [anon_sym_co_await] = ACTIONS(2697), - [anon_sym_new] = ACTIONS(2697), - [anon_sym_requires] = ACTIONS(2697), - [sym_this] = ACTIONS(2697), - [sym_nullptr] = ACTIONS(2697), - }, - [1058] = { - [sym_identifier] = ACTIONS(2673), - [aux_sym_preproc_include_token1] = ACTIONS(2673), - [aux_sym_preproc_def_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token2] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), - [sym_preproc_directive] = ACTIONS(2673), - [anon_sym_LPAREN2] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_AMP_AMP] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_typedef] = ACTIONS(2673), - [anon_sym_extern] = ACTIONS(2673), - [anon_sym___attribute__] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), - [anon_sym___declspec] = ACTIONS(2673), - [anon_sym___based] = ACTIONS(2673), - [anon_sym___cdecl] = ACTIONS(2673), - [anon_sym___clrcall] = ACTIONS(2673), - [anon_sym___stdcall] = ACTIONS(2673), - [anon_sym___fastcall] = ACTIONS(2673), - [anon_sym___thiscall] = ACTIONS(2673), - [anon_sym___vectorcall] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_register] = ACTIONS(2673), - [anon_sym_inline] = ACTIONS(2673), - [anon_sym_thread_local] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_volatile] = ACTIONS(2673), - [anon_sym_restrict] = ACTIONS(2673), - [anon_sym__Atomic] = ACTIONS(2673), - [anon_sym_mutable] = ACTIONS(2673), - [anon_sym_constexpr] = ACTIONS(2673), - [anon_sym_constinit] = ACTIONS(2673), - [anon_sym_consteval] = ACTIONS(2673), - [anon_sym_signed] = ACTIONS(2673), - [anon_sym_unsigned] = ACTIONS(2673), - [anon_sym_long] = ACTIONS(2673), - [anon_sym_short] = ACTIONS(2673), - [sym_primitive_type] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_union] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_goto] = ACTIONS(2673), - [anon_sym_not] = ACTIONS(2673), - [anon_sym_compl] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_sizeof] = ACTIONS(2673), - [sym_number_literal] = ACTIONS(2675), - [anon_sym_L_SQUOTE] = ACTIONS(2675), - [anon_sym_u_SQUOTE] = ACTIONS(2675), - [anon_sym_U_SQUOTE] = ACTIONS(2675), - [anon_sym_u8_SQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_L_DQUOTE] = ACTIONS(2675), - [anon_sym_u_DQUOTE] = ACTIONS(2675), - [anon_sym_U_DQUOTE] = ACTIONS(2675), - [anon_sym_u8_DQUOTE] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2673), - [anon_sym_decltype] = ACTIONS(2673), - [anon_sym_virtual] = ACTIONS(2673), - [anon_sym_explicit] = ACTIONS(2673), - [anon_sym_typename] = ACTIONS(2673), - [anon_sym_template] = ACTIONS(2673), - [anon_sym_operator] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_static_assert] = ACTIONS(2673), - [anon_sym_concept] = ACTIONS(2673), - [anon_sym_co_return] = ACTIONS(2673), - [anon_sym_co_yield] = ACTIONS(2673), - [anon_sym_R_DQUOTE] = ACTIONS(2675), - [anon_sym_LR_DQUOTE] = ACTIONS(2675), - [anon_sym_uR_DQUOTE] = ACTIONS(2675), - [anon_sym_UR_DQUOTE] = ACTIONS(2675), - [anon_sym_u8R_DQUOTE] = ACTIONS(2675), - [anon_sym_co_await] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_requires] = ACTIONS(2673), - [sym_this] = ACTIONS(2673), - [sym_nullptr] = ACTIONS(2673), - }, [1059] = { - [sym_identifier] = ACTIONS(2693), - [aux_sym_preproc_include_token1] = ACTIONS(2693), - [aux_sym_preproc_def_token1] = ACTIONS(2693), - [aux_sym_preproc_if_token1] = ACTIONS(2693), - [aux_sym_preproc_if_token2] = ACTIONS(2693), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2693), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2693), - [sym_preproc_directive] = ACTIONS(2693), - [anon_sym_LPAREN2] = ACTIONS(2695), - [anon_sym_BANG] = ACTIONS(2695), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2695), - [anon_sym_AMP_AMP] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_SEMI] = ACTIONS(2695), - [anon_sym_typedef] = ACTIONS(2693), - [anon_sym_extern] = ACTIONS(2693), - [anon_sym___attribute__] = ACTIONS(2693), - [anon_sym_COLON_COLON] = ACTIONS(2695), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2695), - [anon_sym___declspec] = ACTIONS(2693), - [anon_sym___based] = ACTIONS(2693), - [anon_sym___cdecl] = ACTIONS(2693), - [anon_sym___clrcall] = ACTIONS(2693), - [anon_sym___stdcall] = ACTIONS(2693), - [anon_sym___fastcall] = ACTIONS(2693), - [anon_sym___thiscall] = ACTIONS(2693), - [anon_sym___vectorcall] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_static] = ACTIONS(2693), - [anon_sym_register] = ACTIONS(2693), - [anon_sym_inline] = ACTIONS(2693), - [anon_sym_thread_local] = ACTIONS(2693), - [anon_sym_const] = ACTIONS(2693), - [anon_sym_volatile] = ACTIONS(2693), - [anon_sym_restrict] = ACTIONS(2693), - [anon_sym__Atomic] = ACTIONS(2693), - [anon_sym_mutable] = ACTIONS(2693), - [anon_sym_constexpr] = ACTIONS(2693), - [anon_sym_constinit] = ACTIONS(2693), - [anon_sym_consteval] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2693), - [anon_sym_unsigned] = ACTIONS(2693), - [anon_sym_long] = ACTIONS(2693), - [anon_sym_short] = ACTIONS(2693), - [sym_primitive_type] = ACTIONS(2693), - [anon_sym_enum] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_struct] = ACTIONS(2693), - [anon_sym_union] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2693), - [anon_sym_default] = ACTIONS(2693), - [anon_sym_while] = ACTIONS(2693), - [anon_sym_do] = ACTIONS(2693), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2693), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2693), - [anon_sym_goto] = ACTIONS(2693), - [anon_sym_not] = ACTIONS(2693), - [anon_sym_compl] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_sizeof] = ACTIONS(2693), - [sym_number_literal] = ACTIONS(2695), - [anon_sym_L_SQUOTE] = ACTIONS(2695), - [anon_sym_u_SQUOTE] = ACTIONS(2695), - [anon_sym_U_SQUOTE] = ACTIONS(2695), - [anon_sym_u8_SQUOTE] = ACTIONS(2695), - [anon_sym_SQUOTE] = ACTIONS(2695), - [anon_sym_L_DQUOTE] = ACTIONS(2695), - [anon_sym_u_DQUOTE] = ACTIONS(2695), - [anon_sym_U_DQUOTE] = ACTIONS(2695), - [anon_sym_u8_DQUOTE] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(2695), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_null] = ACTIONS(2693), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_unaligned_ptr_modifier] = STATE(4383), + [sym_ms_pointer_modifier] = STATE(3271), + [sym__declarator] = STATE(5321), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym_type_qualifier] = STATE(3624), + [sym__expression] = STATE(2669), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2586), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4911), + [sym_qualified_identifier] = STATE(2587), + [sym_qualified_type_identifier] = STATE(6425), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(2708), + [aux_sym_type_definition_repeat1] = STATE(3624), + [aux_sym_pointer_declarator_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(2907), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym___based] = ACTIONS(47), + [sym_ms_restrict_modifier] = ACTIONS(2901), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2901), + [sym_ms_signed_ptr_modifier] = ACTIONS(2901), + [anon_sym__unaligned] = ACTIONS(2903), + [anon_sym___unaligned] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_volatile] = ACTIONS(2905), + [anon_sym_restrict] = ACTIONS(2905), + [anon_sym__Atomic] = ACTIONS(2905), + [anon_sym_mutable] = ACTIONS(2905), + [anon_sym_constexpr] = ACTIONS(2905), + [anon_sym_constinit] = ACTIONS(2905), + [anon_sym_consteval] = ACTIONS(2905), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2693), - [anon_sym_decltype] = ACTIONS(2693), - [anon_sym_virtual] = ACTIONS(2693), - [anon_sym_explicit] = ACTIONS(2693), - [anon_sym_typename] = ACTIONS(2693), - [anon_sym_template] = ACTIONS(2693), - [anon_sym_operator] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_delete] = ACTIONS(2693), - [anon_sym_throw] = ACTIONS(2693), - [anon_sym_namespace] = ACTIONS(2693), - [anon_sym_using] = ACTIONS(2693), - [anon_sym_static_assert] = ACTIONS(2693), - [anon_sym_concept] = ACTIONS(2693), - [anon_sym_co_return] = ACTIONS(2693), - [anon_sym_co_yield] = ACTIONS(2693), - [anon_sym_R_DQUOTE] = ACTIONS(2695), - [anon_sym_LR_DQUOTE] = ACTIONS(2695), - [anon_sym_uR_DQUOTE] = ACTIONS(2695), - [anon_sym_UR_DQUOTE] = ACTIONS(2695), - [anon_sym_u8R_DQUOTE] = ACTIONS(2695), - [anon_sym_co_await] = ACTIONS(2693), - [anon_sym_new] = ACTIONS(2693), - [anon_sym_requires] = ACTIONS(2693), - [sym_this] = ACTIONS(2693), - [sym_nullptr] = ACTIONS(2693), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), }, [1060] = { - [sym__expression] = STATE(3442), + [sym__expression] = STATE(3672), + [sym_comma_expression] = STATE(6937), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(3441), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -157860,10 +158743,1120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2916), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym___attribute__] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), + [anon_sym___declspec] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_inline] = ACTIONS(2535), + [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_input] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_volatile] = ACTIONS(2535), + [anon_sym_restrict] = ACTIONS(2535), + [anon_sym__Atomic] = ACTIONS(2535), + [anon_sym_mutable] = ACTIONS(2535), + [anon_sym_constexpr] = ACTIONS(2535), + [anon_sym_constinit] = ACTIONS(2535), + [anon_sym_consteval] = ACTIONS(2535), + [anon_sym_signed] = ACTIONS(2535), + [anon_sym_unsigned] = ACTIONS(2535), + [anon_sym_long] = ACTIONS(2535), + [anon_sym_short] = ACTIONS(2535), + [sym_primitive_type] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2535), + [anon_sym_decltype] = ACTIONS(2535), + [anon_sym_virtual] = ACTIONS(2535), + [anon_sym_typename] = ACTIONS(2535), + [anon_sym_template] = ACTIONS(2924), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1061] = { + [sym__expression] = STATE(3714), + [sym_comma_expression] = STATE(6666), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_extern] = ACTIONS(2549), + [anon_sym___attribute__] = ACTIONS(2549), + [anon_sym_COLON_COLON] = ACTIONS(2932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2551), + [anon_sym___declspec] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_register] = ACTIONS(2549), + [anon_sym_inline] = ACTIONS(2549), + [anon_sym_thread_local] = ACTIONS(2549), + [anon_sym_input] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_volatile] = ACTIONS(2549), + [anon_sym_restrict] = ACTIONS(2549), + [anon_sym__Atomic] = ACTIONS(2549), + [anon_sym_mutable] = ACTIONS(2549), + [anon_sym_constexpr] = ACTIONS(2549), + [anon_sym_constinit] = ACTIONS(2549), + [anon_sym_consteval] = ACTIONS(2549), + [anon_sym_signed] = ACTIONS(2549), + [anon_sym_unsigned] = ACTIONS(2549), + [anon_sym_long] = ACTIONS(2549), + [anon_sym_short] = ACTIONS(2549), + [sym_primitive_type] = ACTIONS(2935), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_struct] = ACTIONS(2549), + [anon_sym_union] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2549), + [anon_sym_decltype] = ACTIONS(2549), + [anon_sym_virtual] = ACTIONS(2549), + [anon_sym_typename] = ACTIONS(2549), + [anon_sym_template] = ACTIONS(2938), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1062] = { + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6910), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2941), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym___attribute__] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), + [anon_sym___declspec] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_inline] = ACTIONS(2535), + [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_input] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_volatile] = ACTIONS(2535), + [anon_sym_restrict] = ACTIONS(2535), + [anon_sym__Atomic] = ACTIONS(2535), + [anon_sym_mutable] = ACTIONS(2535), + [anon_sym_constexpr] = ACTIONS(2535), + [anon_sym_constinit] = ACTIONS(2535), + [anon_sym_consteval] = ACTIONS(2535), + [anon_sym_signed] = ACTIONS(2535), + [anon_sym_unsigned] = ACTIONS(2535), + [anon_sym_long] = ACTIONS(2535), + [anon_sym_short] = ACTIONS(2535), + [sym_primitive_type] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2535), + [anon_sym_decltype] = ACTIONS(2535), + [anon_sym_virtual] = ACTIONS(2535), + [anon_sym_typename] = ACTIONS(2535), + [anon_sym_template] = ACTIONS(2924), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1063] = { + [sym__expression] = STATE(3729), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2943), + [anon_sym_extern] = ACTIONS(2549), + [anon_sym___attribute__] = ACTIONS(2549), + [anon_sym_COLON_COLON] = ACTIONS(2932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2551), + [anon_sym___declspec] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_register] = ACTIONS(2549), + [anon_sym_inline] = ACTIONS(2549), + [anon_sym_thread_local] = ACTIONS(2549), + [anon_sym_input] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_volatile] = ACTIONS(2549), + [anon_sym_restrict] = ACTIONS(2549), + [anon_sym__Atomic] = ACTIONS(2549), + [anon_sym_mutable] = ACTIONS(2549), + [anon_sym_constexpr] = ACTIONS(2549), + [anon_sym_constinit] = ACTIONS(2549), + [anon_sym_consteval] = ACTIONS(2549), + [anon_sym_signed] = ACTIONS(2549), + [anon_sym_unsigned] = ACTIONS(2549), + [anon_sym_long] = ACTIONS(2549), + [anon_sym_short] = ACTIONS(2549), + [sym_primitive_type] = ACTIONS(2935), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_struct] = ACTIONS(2549), + [anon_sym_union] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2549), + [anon_sym_decltype] = ACTIONS(2549), + [anon_sym_virtual] = ACTIONS(2549), + [anon_sym_typename] = ACTIONS(2549), + [anon_sym_template] = ACTIONS(2938), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1064] = { + [sym__expression] = STATE(3707), + [sym_comma_expression] = STATE(6904), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2945), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2948), + [anon_sym_extern] = ACTIONS(2950), + [anon_sym___attribute__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), + [anon_sym___declspec] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_register] = ACTIONS(2950), + [anon_sym_inline] = ACTIONS(2950), + [anon_sym_thread_local] = ACTIONS(2950), + [anon_sym_input] = ACTIONS(2950), + [anon_sym_const] = ACTIONS(2950), + [anon_sym_volatile] = ACTIONS(2950), + [anon_sym_restrict] = ACTIONS(2950), + [anon_sym__Atomic] = ACTIONS(2950), + [anon_sym_mutable] = ACTIONS(2950), + [anon_sym_constexpr] = ACTIONS(2950), + [anon_sym_constinit] = ACTIONS(2950), + [anon_sym_consteval] = ACTIONS(2950), + [anon_sym_signed] = ACTIONS(2950), + [anon_sym_unsigned] = ACTIONS(2950), + [anon_sym_long] = ACTIONS(2950), + [anon_sym_short] = ACTIONS(2950), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2950), + [anon_sym_class] = ACTIONS(2950), + [anon_sym_struct] = ACTIONS(2950), + [anon_sym_union] = ACTIONS(2950), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2950), + [anon_sym_decltype] = ACTIONS(2950), + [anon_sym_virtual] = ACTIONS(2950), + [anon_sym_typename] = ACTIONS(2950), + [anon_sym_template] = ACTIONS(2960), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1065] = { + [sym__expression] = STATE(3800), + [sym_comma_expression] = STATE(6909), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2945), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2963), + [anon_sym_extern] = ACTIONS(2950), + [anon_sym___attribute__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), + [anon_sym___declspec] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_register] = ACTIONS(2950), + [anon_sym_inline] = ACTIONS(2950), + [anon_sym_thread_local] = ACTIONS(2950), + [anon_sym_input] = ACTIONS(2950), + [anon_sym_const] = ACTIONS(2950), + [anon_sym_volatile] = ACTIONS(2950), + [anon_sym_restrict] = ACTIONS(2950), + [anon_sym__Atomic] = ACTIONS(2950), + [anon_sym_mutable] = ACTIONS(2950), + [anon_sym_constexpr] = ACTIONS(2950), + [anon_sym_constinit] = ACTIONS(2950), + [anon_sym_consteval] = ACTIONS(2950), + [anon_sym_signed] = ACTIONS(2950), + [anon_sym_unsigned] = ACTIONS(2950), + [anon_sym_long] = ACTIONS(2950), + [anon_sym_short] = ACTIONS(2950), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2950), + [anon_sym_class] = ACTIONS(2950), + [anon_sym_struct] = ACTIONS(2950), + [anon_sym_union] = ACTIONS(2950), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2950), + [anon_sym_decltype] = ACTIONS(2950), + [anon_sym_virtual] = ACTIONS(2950), + [anon_sym_typename] = ACTIONS(2950), + [anon_sym_template] = ACTIONS(2960), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1066] = { + [sym__expression] = STATE(3779), + [sym_comma_expression] = STATE(6907), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym___attribute__] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), + [anon_sym___declspec] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_inline] = ACTIONS(2535), + [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_input] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_volatile] = ACTIONS(2535), + [anon_sym_restrict] = ACTIONS(2535), + [anon_sym__Atomic] = ACTIONS(2535), + [anon_sym_mutable] = ACTIONS(2535), + [anon_sym_constexpr] = ACTIONS(2535), + [anon_sym_constinit] = ACTIONS(2535), + [anon_sym_consteval] = ACTIONS(2535), + [anon_sym_signed] = ACTIONS(2535), + [anon_sym_unsigned] = ACTIONS(2535), + [anon_sym_long] = ACTIONS(2535), + [anon_sym_short] = ACTIONS(2535), + [sym_primitive_type] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2535), + [anon_sym_decltype] = ACTIONS(2535), + [anon_sym_virtual] = ACTIONS(2535), + [anon_sym_typename] = ACTIONS(2535), + [anon_sym_template] = ACTIONS(2924), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1067] = { + [sym__expression] = STATE(3688), + [sym_comma_expression] = STATE(6770), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2967), + [anon_sym_extern] = ACTIONS(2549), + [anon_sym___attribute__] = ACTIONS(2549), + [anon_sym_COLON_COLON] = ACTIONS(2932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2551), + [anon_sym___declspec] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_register] = ACTIONS(2549), + [anon_sym_inline] = ACTIONS(2549), + [anon_sym_thread_local] = ACTIONS(2549), + [anon_sym_input] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_volatile] = ACTIONS(2549), + [anon_sym_restrict] = ACTIONS(2549), + [anon_sym__Atomic] = ACTIONS(2549), + [anon_sym_mutable] = ACTIONS(2549), + [anon_sym_constexpr] = ACTIONS(2549), + [anon_sym_constinit] = ACTIONS(2549), + [anon_sym_consteval] = ACTIONS(2549), + [anon_sym_signed] = ACTIONS(2549), + [anon_sym_unsigned] = ACTIONS(2549), + [anon_sym_long] = ACTIONS(2549), + [anon_sym_short] = ACTIONS(2549), + [sym_primitive_type] = ACTIONS(2935), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_struct] = ACTIONS(2549), + [anon_sym_union] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2549), + [anon_sym_decltype] = ACTIONS(2549), + [anon_sym_virtual] = ACTIONS(2549), + [anon_sym_typename] = ACTIONS(2549), + [anon_sym_template] = ACTIONS(2938), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1068] = { + [sym__expression] = STATE(3696), + [sym_comma_expression] = STATE(6765), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2945), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2969), + [anon_sym_extern] = ACTIONS(2950), + [anon_sym___attribute__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), + [anon_sym___declspec] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_register] = ACTIONS(2950), + [anon_sym_inline] = ACTIONS(2950), + [anon_sym_thread_local] = ACTIONS(2950), + [anon_sym_input] = ACTIONS(2950), + [anon_sym_const] = ACTIONS(2950), + [anon_sym_volatile] = ACTIONS(2950), + [anon_sym_restrict] = ACTIONS(2950), + [anon_sym__Atomic] = ACTIONS(2950), + [anon_sym_mutable] = ACTIONS(2950), + [anon_sym_constexpr] = ACTIONS(2950), + [anon_sym_constinit] = ACTIONS(2950), + [anon_sym_consteval] = ACTIONS(2950), + [anon_sym_signed] = ACTIONS(2950), + [anon_sym_unsigned] = ACTIONS(2950), + [anon_sym_long] = ACTIONS(2950), + [anon_sym_short] = ACTIONS(2950), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2950), + [anon_sym_class] = ACTIONS(2950), + [anon_sym_struct] = ACTIONS(2950), + [anon_sym_union] = ACTIONS(2950), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2950), + [anon_sym_decltype] = ACTIONS(2950), + [anon_sym_virtual] = ACTIONS(2950), + [anon_sym_typename] = ACTIONS(2950), + [anon_sym_template] = ACTIONS(2960), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1069] = { + [sym__expression] = STATE(3697), + [sym_comma_expression] = STATE(6763), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym___attribute__] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), + [anon_sym___declspec] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_inline] = ACTIONS(2535), + [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_input] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_volatile] = ACTIONS(2535), + [anon_sym_restrict] = ACTIONS(2535), + [anon_sym__Atomic] = ACTIONS(2535), + [anon_sym_mutable] = ACTIONS(2535), + [anon_sym_constexpr] = ACTIONS(2535), + [anon_sym_constinit] = ACTIONS(2535), + [anon_sym_consteval] = ACTIONS(2535), + [anon_sym_signed] = ACTIONS(2535), + [anon_sym_unsigned] = ACTIONS(2535), + [anon_sym_long] = ACTIONS(2535), + [anon_sym_short] = ACTIONS(2535), + [sym_primitive_type] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2535), + [anon_sym_decltype] = ACTIONS(2535), + [anon_sym_virtual] = ACTIONS(2535), + [anon_sym_typename] = ACTIONS(2535), + [anon_sym_template] = ACTIONS(2924), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1070] = { + [sym__expression] = STATE(3539), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(3538), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), [anon_sym_COMMA] = ACTIONS(1505), [anon_sym_RPAREN] = ACTIONS(1505), @@ -157937,469 +159930,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1061] = { - [sym__expression] = STATE(3655), - [sym_comma_expression] = STATE(6929), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(2918), - [anon_sym_extern] = ACTIONS(2920), - [anon_sym___attribute__] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2922), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2920), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2920), - [anon_sym_register] = ACTIONS(2920), - [anon_sym_inline] = ACTIONS(2920), - [anon_sym_thread_local] = ACTIONS(2920), - [anon_sym_const] = ACTIONS(2920), - [anon_sym_volatile] = ACTIONS(2920), - [anon_sym_restrict] = ACTIONS(2920), - [anon_sym__Atomic] = ACTIONS(2920), - [anon_sym_mutable] = ACTIONS(2920), - [anon_sym_constexpr] = ACTIONS(2920), - [anon_sym_constinit] = ACTIONS(2920), - [anon_sym_consteval] = ACTIONS(2920), - [anon_sym_signed] = ACTIONS(2920), - [anon_sym_unsigned] = ACTIONS(2920), - [anon_sym_long] = ACTIONS(2920), - [anon_sym_short] = ACTIONS(2920), - [sym_primitive_type] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2920), - [anon_sym_class] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_union] = ACTIONS(2920), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2920), - [anon_sym_decltype] = ACTIONS(2920), - [anon_sym_virtual] = ACTIONS(2920), - [anon_sym_typename] = ACTIONS(2920), - [anon_sym_template] = ACTIONS(2930), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1062] = { - [sym__expression] = STATE(3714), - [sym_comma_expression] = STATE(6666), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2933), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_extern] = ACTIONS(2599), - [anon_sym___attribute__] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), - [anon_sym___declspec] = ACTIONS(2599), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2599), - [anon_sym_register] = ACTIONS(2599), - [anon_sym_inline] = ACTIONS(2599), - [anon_sym_thread_local] = ACTIONS(2599), - [anon_sym_const] = ACTIONS(2599), - [anon_sym_volatile] = ACTIONS(2599), - [anon_sym_restrict] = ACTIONS(2599), - [anon_sym__Atomic] = ACTIONS(2599), - [anon_sym_mutable] = ACTIONS(2599), - [anon_sym_constexpr] = ACTIONS(2599), - [anon_sym_constinit] = ACTIONS(2599), - [anon_sym_consteval] = ACTIONS(2599), - [anon_sym_signed] = ACTIONS(2599), - [anon_sym_unsigned] = ACTIONS(2599), - [anon_sym_long] = ACTIONS(2599), - [anon_sym_short] = ACTIONS(2599), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2599), - [anon_sym_class] = ACTIONS(2599), - [anon_sym_struct] = ACTIONS(2599), - [anon_sym_union] = ACTIONS(2599), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2599), - [anon_sym_decltype] = ACTIONS(2599), - [anon_sym_virtual] = ACTIONS(2599), - [anon_sym_typename] = ACTIONS(2599), - [anon_sym_template] = ACTIONS(2944), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1063] = { - [sym__expression] = STATE(3759), - [sym_comma_expression] = STATE(6907), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2947), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym___attribute__] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), - [anon_sym___declspec] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = ACTIONS(2563), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2958), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1064] = { - [sym__expression] = STATE(3769), - [sym_comma_expression] = STATE(6909), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2920), - [anon_sym___attribute__] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2922), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2920), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2920), - [anon_sym_register] = ACTIONS(2920), - [anon_sym_inline] = ACTIONS(2920), - [anon_sym_thread_local] = ACTIONS(2920), - [anon_sym_const] = ACTIONS(2920), - [anon_sym_volatile] = ACTIONS(2920), - [anon_sym_restrict] = ACTIONS(2920), - [anon_sym__Atomic] = ACTIONS(2920), - [anon_sym_mutable] = ACTIONS(2920), - [anon_sym_constexpr] = ACTIONS(2920), - [anon_sym_constinit] = ACTIONS(2920), - [anon_sym_consteval] = ACTIONS(2920), - [anon_sym_signed] = ACTIONS(2920), - [anon_sym_unsigned] = ACTIONS(2920), - [anon_sym_long] = ACTIONS(2920), - [anon_sym_short] = ACTIONS(2920), - [sym_primitive_type] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2920), - [anon_sym_class] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_union] = ACTIONS(2920), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2920), - [anon_sym_decltype] = ACTIONS(2920), - [anon_sym_virtual] = ACTIONS(2920), - [anon_sym_typename] = ACTIONS(2920), - [anon_sym_template] = ACTIONS(2930), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1065] = { - [sym__expression] = STATE(3803), + [1071] = { + [sym__expression] = STATE(3815), [sym_comma_expression] = STATE(6921), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -158411,670 +159964,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2933), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym_extern] = ACTIONS(2599), - [anon_sym___attribute__] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), - [anon_sym___declspec] = ACTIONS(2599), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2599), - [anon_sym_register] = ACTIONS(2599), - [anon_sym_inline] = ACTIONS(2599), - [anon_sym_thread_local] = ACTIONS(2599), - [anon_sym_const] = ACTIONS(2599), - [anon_sym_volatile] = ACTIONS(2599), - [anon_sym_restrict] = ACTIONS(2599), - [anon_sym__Atomic] = ACTIONS(2599), - [anon_sym_mutable] = ACTIONS(2599), - [anon_sym_constexpr] = ACTIONS(2599), - [anon_sym_constinit] = ACTIONS(2599), - [anon_sym_consteval] = ACTIONS(2599), - [anon_sym_signed] = ACTIONS(2599), - [anon_sym_unsigned] = ACTIONS(2599), - [anon_sym_long] = ACTIONS(2599), - [anon_sym_short] = ACTIONS(2599), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2599), - [anon_sym_class] = ACTIONS(2599), - [anon_sym_struct] = ACTIONS(2599), - [anon_sym_union] = ACTIONS(2599), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2599), - [anon_sym_decltype] = ACTIONS(2599), - [anon_sym_virtual] = ACTIONS(2599), - [anon_sym_typename] = ACTIONS(2599), - [anon_sym_template] = ACTIONS(2944), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1066] = { - [sym__expression] = STATE(3653), - [sym_comma_expression] = STATE(6937), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2947), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym___attribute__] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), - [anon_sym___declspec] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = ACTIONS(2563), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2958), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1067] = { - [sym__expression] = STATE(3787), - [sym_comma_expression] = STATE(6626), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(2920), - [anon_sym___attribute__] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2922), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2920), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2920), - [anon_sym_register] = ACTIONS(2920), - [anon_sym_inline] = ACTIONS(2920), - [anon_sym_thread_local] = ACTIONS(2920), - [anon_sym_const] = ACTIONS(2920), - [anon_sym_volatile] = ACTIONS(2920), - [anon_sym_restrict] = ACTIONS(2920), - [anon_sym__Atomic] = ACTIONS(2920), - [anon_sym_mutable] = ACTIONS(2920), - [anon_sym_constexpr] = ACTIONS(2920), - [anon_sym_constinit] = ACTIONS(2920), - [anon_sym_consteval] = ACTIONS(2920), - [anon_sym_signed] = ACTIONS(2920), - [anon_sym_unsigned] = ACTIONS(2920), - [anon_sym_long] = ACTIONS(2920), - [anon_sym_short] = ACTIONS(2920), - [sym_primitive_type] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2920), - [anon_sym_class] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_union] = ACTIONS(2920), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2920), - [anon_sym_decltype] = ACTIONS(2920), - [anon_sym_virtual] = ACTIONS(2920), - [anon_sym_typename] = ACTIONS(2920), - [anon_sym_template] = ACTIONS(2930), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1068] = { - [sym__expression] = STATE(3788), - [sym_comma_expression] = STATE(6631), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2947), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym___attribute__] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), - [anon_sym___declspec] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = ACTIONS(2563), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2958), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1069] = { - [sym__expression] = STATE(3727), - [sym_comma_expression] = STATE(6700), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_extern] = ACTIONS(2920), - [anon_sym___attribute__] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2922), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2920), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2920), - [anon_sym_register] = ACTIONS(2920), - [anon_sym_inline] = ACTIONS(2920), - [anon_sym_thread_local] = ACTIONS(2920), - [anon_sym_const] = ACTIONS(2920), - [anon_sym_volatile] = ACTIONS(2920), - [anon_sym_restrict] = ACTIONS(2920), - [anon_sym__Atomic] = ACTIONS(2920), - [anon_sym_mutable] = ACTIONS(2920), - [anon_sym_constexpr] = ACTIONS(2920), - [anon_sym_constinit] = ACTIONS(2920), - [anon_sym_consteval] = ACTIONS(2920), - [anon_sym_signed] = ACTIONS(2920), - [anon_sym_unsigned] = ACTIONS(2920), - [anon_sym_long] = ACTIONS(2920), - [anon_sym_short] = ACTIONS(2920), - [sym_primitive_type] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2920), - [anon_sym_class] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_union] = ACTIONS(2920), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2920), - [anon_sym_decltype] = ACTIONS(2920), - [anon_sym_virtual] = ACTIONS(2920), - [anon_sym_typename] = ACTIONS(2920), - [anon_sym_template] = ACTIONS(2930), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1070] = { - [sym__expression] = STATE(3690), - [sym_comma_expression] = STATE(6763), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2947), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym___attribute__] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), - [anon_sym___declspec] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = ACTIONS(2563), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2958), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1071] = { - [sym__expression] = STATE(3778), - [sym_comma_expression] = STATE(6627), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2933), + [sym_identifier] = ACTIONS(2927), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -159083,33 +159976,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_extern] = ACTIONS(2599), - [anon_sym___attribute__] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), - [anon_sym___declspec] = ACTIONS(2599), + [anon_sym_extern] = ACTIONS(2549), + [anon_sym___attribute__] = ACTIONS(2549), + [anon_sym_COLON_COLON] = ACTIONS(2932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2551), + [anon_sym___declspec] = ACTIONS(2549), [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2599), - [anon_sym_register] = ACTIONS(2599), - [anon_sym_inline] = ACTIONS(2599), - [anon_sym_thread_local] = ACTIONS(2599), - [anon_sym_const] = ACTIONS(2599), - [anon_sym_volatile] = ACTIONS(2599), - [anon_sym_restrict] = ACTIONS(2599), - [anon_sym__Atomic] = ACTIONS(2599), - [anon_sym_mutable] = ACTIONS(2599), - [anon_sym_constexpr] = ACTIONS(2599), - [anon_sym_constinit] = ACTIONS(2599), - [anon_sym_consteval] = ACTIONS(2599), - [anon_sym_signed] = ACTIONS(2599), - [anon_sym_unsigned] = ACTIONS(2599), - [anon_sym_long] = ACTIONS(2599), - [anon_sym_short] = ACTIONS(2599), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2599), - [anon_sym_class] = ACTIONS(2599), - [anon_sym_struct] = ACTIONS(2599), - [anon_sym_union] = ACTIONS(2599), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_register] = ACTIONS(2549), + [anon_sym_inline] = ACTIONS(2549), + [anon_sym_thread_local] = ACTIONS(2549), + [anon_sym_input] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_volatile] = ACTIONS(2549), + [anon_sym_restrict] = ACTIONS(2549), + [anon_sym__Atomic] = ACTIONS(2549), + [anon_sym_mutable] = ACTIONS(2549), + [anon_sym_constexpr] = ACTIONS(2549), + [anon_sym_constinit] = ACTIONS(2549), + [anon_sym_consteval] = ACTIONS(2549), + [anon_sym_signed] = ACTIONS(2549), + [anon_sym_unsigned] = ACTIONS(2549), + [anon_sym_long] = ACTIONS(2549), + [anon_sym_short] = ACTIONS(2549), + [sym_primitive_type] = ACTIONS(2935), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_struct] = ACTIONS(2549), + [anon_sym_union] = ACTIONS(2549), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -159130,11 +160024,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2599), - [anon_sym_decltype] = ACTIONS(2599), - [anon_sym_virtual] = ACTIONS(2599), - [anon_sym_typename] = ACTIONS(2599), - [anon_sym_template] = ACTIONS(2944), + [sym_auto] = ACTIONS(2549), + [anon_sym_decltype] = ACTIONS(2549), + [anon_sym_virtual] = ACTIONS(2549), + [anon_sym_typename] = ACTIONS(2549), + [anon_sym_template] = ACTIONS(2938), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), @@ -159148,28 +160042,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1072] = { - [sym__expression] = STATE(3696), - [sym_comma_expression] = STATE(6910), + [sym__expression] = STATE(3726), + [sym_comma_expression] = STATE(6705), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -159181,10 +160075,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2947), + [sym_identifier] = ACTIONS(2927), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -159193,33 +160087,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym___attribute__] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), - [anon_sym___declspec] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2549), + [anon_sym___attribute__] = ACTIONS(2549), + [anon_sym_COLON_COLON] = ACTIONS(2932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2551), + [anon_sym___declspec] = ACTIONS(2549), [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = ACTIONS(2563), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_register] = ACTIONS(2549), + [anon_sym_inline] = ACTIONS(2549), + [anon_sym_thread_local] = ACTIONS(2549), + [anon_sym_input] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_volatile] = ACTIONS(2549), + [anon_sym_restrict] = ACTIONS(2549), + [anon_sym__Atomic] = ACTIONS(2549), + [anon_sym_mutable] = ACTIONS(2549), + [anon_sym_constexpr] = ACTIONS(2549), + [anon_sym_constinit] = ACTIONS(2549), + [anon_sym_consteval] = ACTIONS(2549), + [anon_sym_signed] = ACTIONS(2549), + [anon_sym_unsigned] = ACTIONS(2549), + [anon_sym_long] = ACTIONS(2549), + [anon_sym_short] = ACTIONS(2549), + [sym_primitive_type] = ACTIONS(2935), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_struct] = ACTIONS(2549), + [anon_sym_union] = ACTIONS(2549), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -159240,11 +160135,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2958), + [sym_auto] = ACTIONS(2549), + [anon_sym_decltype] = ACTIONS(2549), + [anon_sym_virtual] = ACTIONS(2549), + [anon_sym_typename] = ACTIONS(2549), + [anon_sym_template] = ACTIONS(2938), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), @@ -159258,28 +160153,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1073] = { - [sym__expression] = STATE(3700), - [sym_comma_expression] = STATE(6904), + [sym__expression] = STATE(3727), + [sym_comma_expression] = STATE(6700), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -159291,10 +160186,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2915), + [sym_identifier] = ACTIONS(2945), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -159303,33 +160198,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_extern] = ACTIONS(2920), - [anon_sym___attribute__] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2922), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2920), + [anon_sym_extern] = ACTIONS(2950), + [anon_sym___attribute__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), + [anon_sym___declspec] = ACTIONS(2950), [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2920), - [anon_sym_register] = ACTIONS(2920), - [anon_sym_inline] = ACTIONS(2920), - [anon_sym_thread_local] = ACTIONS(2920), - [anon_sym_const] = ACTIONS(2920), - [anon_sym_volatile] = ACTIONS(2920), - [anon_sym_restrict] = ACTIONS(2920), - [anon_sym__Atomic] = ACTIONS(2920), - [anon_sym_mutable] = ACTIONS(2920), - [anon_sym_constexpr] = ACTIONS(2920), - [anon_sym_constinit] = ACTIONS(2920), - [anon_sym_consteval] = ACTIONS(2920), - [anon_sym_signed] = ACTIONS(2920), - [anon_sym_unsigned] = ACTIONS(2920), - [anon_sym_long] = ACTIONS(2920), - [anon_sym_short] = ACTIONS(2920), - [sym_primitive_type] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2920), - [anon_sym_class] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_union] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_register] = ACTIONS(2950), + [anon_sym_inline] = ACTIONS(2950), + [anon_sym_thread_local] = ACTIONS(2950), + [anon_sym_input] = ACTIONS(2950), + [anon_sym_const] = ACTIONS(2950), + [anon_sym_volatile] = ACTIONS(2950), + [anon_sym_restrict] = ACTIONS(2950), + [anon_sym__Atomic] = ACTIONS(2950), + [anon_sym_mutable] = ACTIONS(2950), + [anon_sym_constexpr] = ACTIONS(2950), + [anon_sym_constinit] = ACTIONS(2950), + [anon_sym_consteval] = ACTIONS(2950), + [anon_sym_signed] = ACTIONS(2950), + [anon_sym_unsigned] = ACTIONS(2950), + [anon_sym_long] = ACTIONS(2950), + [anon_sym_short] = ACTIONS(2950), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2950), + [anon_sym_class] = ACTIONS(2950), + [anon_sym_struct] = ACTIONS(2950), + [anon_sym_union] = ACTIONS(2950), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -159350,11 +160246,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2920), - [anon_sym_decltype] = ACTIONS(2920), - [anon_sym_virtual] = ACTIONS(2920), - [anon_sym_typename] = ACTIONS(2920), - [anon_sym_template] = ACTIONS(2930), + [sym_auto] = ACTIONS(2950), + [anon_sym_decltype] = ACTIONS(2950), + [anon_sym_virtual] = ACTIONS(2950), + [anon_sym_typename] = ACTIONS(2950), + [anon_sym_template] = ACTIONS(2960), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), @@ -159368,28 +160264,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1074] = { - [sym__expression] = STATE(3679), - [sym_comma_expression] = STATE(6770), + [sym__expression] = STATE(3788), + [sym_comma_expression] = STATE(6631), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -159401,10 +160297,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2933), + [sym_identifier] = ACTIONS(2913), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -159413,33 +160309,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2599), - [anon_sym___attribute__] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), - [anon_sym___declspec] = ACTIONS(2599), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym___attribute__] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), + [anon_sym___declspec] = ACTIONS(2535), [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2599), - [anon_sym_register] = ACTIONS(2599), - [anon_sym_inline] = ACTIONS(2599), - [anon_sym_thread_local] = ACTIONS(2599), - [anon_sym_const] = ACTIONS(2599), - [anon_sym_volatile] = ACTIONS(2599), - [anon_sym_restrict] = ACTIONS(2599), - [anon_sym__Atomic] = ACTIONS(2599), - [anon_sym_mutable] = ACTIONS(2599), - [anon_sym_constexpr] = ACTIONS(2599), - [anon_sym_constinit] = ACTIONS(2599), - [anon_sym_consteval] = ACTIONS(2599), - [anon_sym_signed] = ACTIONS(2599), - [anon_sym_unsigned] = ACTIONS(2599), - [anon_sym_long] = ACTIONS(2599), - [anon_sym_short] = ACTIONS(2599), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2599), - [anon_sym_class] = ACTIONS(2599), - [anon_sym_struct] = ACTIONS(2599), - [anon_sym_union] = ACTIONS(2599), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_inline] = ACTIONS(2535), + [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_input] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_volatile] = ACTIONS(2535), + [anon_sym_restrict] = ACTIONS(2535), + [anon_sym__Atomic] = ACTIONS(2535), + [anon_sym_mutable] = ACTIONS(2535), + [anon_sym_constexpr] = ACTIONS(2535), + [anon_sym_constinit] = ACTIONS(2535), + [anon_sym_consteval] = ACTIONS(2535), + [anon_sym_signed] = ACTIONS(2535), + [anon_sym_unsigned] = ACTIONS(2535), + [anon_sym_long] = ACTIONS(2535), + [anon_sym_short] = ACTIONS(2535), + [sym_primitive_type] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -159460,11 +160357,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2599), - [anon_sym_decltype] = ACTIONS(2599), - [anon_sym_virtual] = ACTIONS(2599), - [anon_sym_typename] = ACTIONS(2599), - [anon_sym_template] = ACTIONS(2944), + [sym_auto] = ACTIONS(2535), + [anon_sym_decltype] = ACTIONS(2535), + [anon_sym_virtual] = ACTIONS(2535), + [anon_sym_typename] = ACTIONS(2535), + [anon_sym_template] = ACTIONS(2924), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), @@ -159478,28 +160375,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1075] = { - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6698), + [sym__expression] = STATE(3787), + [sym_comma_expression] = STATE(6626), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -159511,10 +160408,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2947), + [sym_identifier] = ACTIONS(2945), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -159523,33 +160420,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2950), + [anon_sym___attribute__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), - [anon_sym___declspec] = ACTIONS(2563), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), + [anon_sym___declspec] = ACTIONS(2950), [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = ACTIONS(2563), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_register] = ACTIONS(2950), + [anon_sym_inline] = ACTIONS(2950), + [anon_sym_thread_local] = ACTIONS(2950), + [anon_sym_input] = ACTIONS(2950), + [anon_sym_const] = ACTIONS(2950), + [anon_sym_volatile] = ACTIONS(2950), + [anon_sym_restrict] = ACTIONS(2950), + [anon_sym__Atomic] = ACTIONS(2950), + [anon_sym_mutable] = ACTIONS(2950), + [anon_sym_constexpr] = ACTIONS(2950), + [anon_sym_constinit] = ACTIONS(2950), + [anon_sym_consteval] = ACTIONS(2950), + [anon_sym_signed] = ACTIONS(2950), + [anon_sym_unsigned] = ACTIONS(2950), + [anon_sym_long] = ACTIONS(2950), + [anon_sym_short] = ACTIONS(2950), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2950), + [anon_sym_class] = ACTIONS(2950), + [anon_sym_struct] = ACTIONS(2950), + [anon_sym_union] = ACTIONS(2950), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -159570,11 +160468,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2958), + [sym_auto] = ACTIONS(2950), + [anon_sym_decltype] = ACTIONS(2950), + [anon_sym_virtual] = ACTIONS(2950), + [anon_sym_typename] = ACTIONS(2950), + [anon_sym_template] = ACTIONS(2960), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), @@ -159588,28 +160486,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1076] = { - [sym__expression] = STATE(3689), - [sym_comma_expression] = STATE(6765), + [sym__expression] = STATE(3728), + [sym_comma_expression] = STATE(6698), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -159621,10 +160519,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2915), + [sym_identifier] = ACTIONS(2913), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -159633,33 +160531,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2920), - [anon_sym___attribute__] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2922), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2920), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym___attribute__] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), + [anon_sym___declspec] = ACTIONS(2535), [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2920), - [anon_sym_register] = ACTIONS(2920), - [anon_sym_inline] = ACTIONS(2920), - [anon_sym_thread_local] = ACTIONS(2920), - [anon_sym_const] = ACTIONS(2920), - [anon_sym_volatile] = ACTIONS(2920), - [anon_sym_restrict] = ACTIONS(2920), - [anon_sym__Atomic] = ACTIONS(2920), - [anon_sym_mutable] = ACTIONS(2920), - [anon_sym_constexpr] = ACTIONS(2920), - [anon_sym_constinit] = ACTIONS(2920), - [anon_sym_consteval] = ACTIONS(2920), - [anon_sym_signed] = ACTIONS(2920), - [anon_sym_unsigned] = ACTIONS(2920), - [anon_sym_long] = ACTIONS(2920), - [anon_sym_short] = ACTIONS(2920), - [sym_primitive_type] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2920), - [anon_sym_class] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_union] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_inline] = ACTIONS(2535), + [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_input] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_volatile] = ACTIONS(2535), + [anon_sym_restrict] = ACTIONS(2535), + [anon_sym__Atomic] = ACTIONS(2535), + [anon_sym_mutable] = ACTIONS(2535), + [anon_sym_constexpr] = ACTIONS(2535), + [anon_sym_constinit] = ACTIONS(2535), + [anon_sym_consteval] = ACTIONS(2535), + [anon_sym_signed] = ACTIONS(2535), + [anon_sym_unsigned] = ACTIONS(2535), + [anon_sym_long] = ACTIONS(2535), + [anon_sym_short] = ACTIONS(2535), + [sym_primitive_type] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -159680,11 +160579,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2920), - [anon_sym_decltype] = ACTIONS(2920), - [anon_sym_virtual] = ACTIONS(2920), - [anon_sym_typename] = ACTIONS(2920), - [anon_sym_template] = ACTIONS(2930), + [sym_auto] = ACTIONS(2535), + [anon_sym_decltype] = ACTIONS(2535), + [anon_sym_virtual] = ACTIONS(2535), + [anon_sym_typename] = ACTIONS(2535), + [anon_sym_template] = ACTIONS(2924), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), @@ -159698,28 +160597,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1077] = { - [sym__expression] = STATE(3717), - [sym_comma_expression] = STATE(6857), + [sym__expression] = STATE(3778), + [sym_comma_expression] = STATE(6627), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -159731,10 +160630,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2933), + [sym_identifier] = ACTIONS(2927), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -159743,33 +160642,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_extern] = ACTIONS(2599), - [anon_sym___attribute__] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), - [anon_sym___declspec] = ACTIONS(2599), + [anon_sym_extern] = ACTIONS(2549), + [anon_sym___attribute__] = ACTIONS(2549), + [anon_sym_COLON_COLON] = ACTIONS(2932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2551), + [anon_sym___declspec] = ACTIONS(2549), [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2599), - [anon_sym_register] = ACTIONS(2599), - [anon_sym_inline] = ACTIONS(2599), - [anon_sym_thread_local] = ACTIONS(2599), - [anon_sym_const] = ACTIONS(2599), - [anon_sym_volatile] = ACTIONS(2599), - [anon_sym_restrict] = ACTIONS(2599), - [anon_sym__Atomic] = ACTIONS(2599), - [anon_sym_mutable] = ACTIONS(2599), - [anon_sym_constexpr] = ACTIONS(2599), - [anon_sym_constinit] = ACTIONS(2599), - [anon_sym_consteval] = ACTIONS(2599), - [anon_sym_signed] = ACTIONS(2599), - [anon_sym_unsigned] = ACTIONS(2599), - [anon_sym_long] = ACTIONS(2599), - [anon_sym_short] = ACTIONS(2599), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2599), - [anon_sym_class] = ACTIONS(2599), - [anon_sym_struct] = ACTIONS(2599), - [anon_sym_union] = ACTIONS(2599), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_register] = ACTIONS(2549), + [anon_sym_inline] = ACTIONS(2549), + [anon_sym_thread_local] = ACTIONS(2549), + [anon_sym_input] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_volatile] = ACTIONS(2549), + [anon_sym_restrict] = ACTIONS(2549), + [anon_sym__Atomic] = ACTIONS(2549), + [anon_sym_mutable] = ACTIONS(2549), + [anon_sym_constexpr] = ACTIONS(2549), + [anon_sym_constinit] = ACTIONS(2549), + [anon_sym_consteval] = ACTIONS(2549), + [anon_sym_signed] = ACTIONS(2549), + [anon_sym_unsigned] = ACTIONS(2549), + [anon_sym_long] = ACTIONS(2549), + [anon_sym_short] = ACTIONS(2549), + [sym_primitive_type] = ACTIONS(2935), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_struct] = ACTIONS(2549), + [anon_sym_union] = ACTIONS(2549), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -159790,11 +160690,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2599), - [anon_sym_decltype] = ACTIONS(2599), - [anon_sym_virtual] = ACTIONS(2599), - [anon_sym_typename] = ACTIONS(2599), - [anon_sym_template] = ACTIONS(2944), + [sym_auto] = ACTIONS(2549), + [anon_sym_decltype] = ACTIONS(2549), + [anon_sym_virtual] = ACTIONS(2549), + [anon_sym_typename] = ACTIONS(2549), + [anon_sym_template] = ACTIONS(2938), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), @@ -159808,28 +160708,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1078] = { - [sym__expression] = STATE(3726), - [sym_comma_expression] = STATE(6705), + [sym__expression] = STATE(3674), + [sym_comma_expression] = STATE(6929), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -159841,10 +160741,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2933), + [sym_identifier] = ACTIONS(2945), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -159853,33 +160753,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2599), - [anon_sym___attribute__] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), - [anon_sym___declspec] = ACTIONS(2599), + [anon_sym_extern] = ACTIONS(2950), + [anon_sym___attribute__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), + [anon_sym___declspec] = ACTIONS(2950), [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(2599), - [anon_sym_register] = ACTIONS(2599), - [anon_sym_inline] = ACTIONS(2599), - [anon_sym_thread_local] = ACTIONS(2599), - [anon_sym_const] = ACTIONS(2599), - [anon_sym_volatile] = ACTIONS(2599), - [anon_sym_restrict] = ACTIONS(2599), - [anon_sym__Atomic] = ACTIONS(2599), - [anon_sym_mutable] = ACTIONS(2599), - [anon_sym_constexpr] = ACTIONS(2599), - [anon_sym_constinit] = ACTIONS(2599), - [anon_sym_consteval] = ACTIONS(2599), - [anon_sym_signed] = ACTIONS(2599), - [anon_sym_unsigned] = ACTIONS(2599), - [anon_sym_long] = ACTIONS(2599), - [anon_sym_short] = ACTIONS(2599), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2599), - [anon_sym_class] = ACTIONS(2599), - [anon_sym_struct] = ACTIONS(2599), - [anon_sym_union] = ACTIONS(2599), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_register] = ACTIONS(2950), + [anon_sym_inline] = ACTIONS(2950), + [anon_sym_thread_local] = ACTIONS(2950), + [anon_sym_input] = ACTIONS(2950), + [anon_sym_const] = ACTIONS(2950), + [anon_sym_volatile] = ACTIONS(2950), + [anon_sym_restrict] = ACTIONS(2950), + [anon_sym__Atomic] = ACTIONS(2950), + [anon_sym_mutable] = ACTIONS(2950), + [anon_sym_constexpr] = ACTIONS(2950), + [anon_sym_constinit] = ACTIONS(2950), + [anon_sym_consteval] = ACTIONS(2950), + [anon_sym_signed] = ACTIONS(2950), + [anon_sym_unsigned] = ACTIONS(2950), + [anon_sym_long] = ACTIONS(2950), + [anon_sym_short] = ACTIONS(2950), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2950), + [anon_sym_class] = ACTIONS(2950), + [anon_sym_struct] = ACTIONS(2950), + [anon_sym_union] = ACTIONS(2950), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -159900,11 +160801,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2599), - [anon_sym_decltype] = ACTIONS(2599), - [anon_sym_virtual] = ACTIONS(2599), - [anon_sym_typename] = ACTIONS(2599), - [anon_sym_template] = ACTIONS(2944), + [sym_auto] = ACTIONS(2950), + [anon_sym_decltype] = ACTIONS(2950), + [anon_sym_virtual] = ACTIONS(2950), + [anon_sym_typename] = ACTIONS(2950), + [anon_sym_template] = ACTIONS(2960), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), @@ -159918,7 +160819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1079] = { - [sym__expression] = STATE(3442), + [sym__expression] = STATE(3539), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -159932,14 +160833,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_initializer_list] = STATE(3441), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_initializer_list] = STATE(3538), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -160027,58 +160928,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1080] = { - [sym__expression] = STATE(3711), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), + [sym__expression] = STATE(3721), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), [sym_subscript_expression] = STATE(3016), [sym_call_expression] = STATE(3016), [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), + [sym_compound_literal_expression] = STATE(3903), [sym_parenthesized_expression] = STATE(3016), - [sym_initializer_list] = STATE(3981), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), + [sym_initializer_list] = STATE(4021), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), [sym_string_literal] = STATE(3017), [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4913), [sym_qualified_identifier] = STATE(3016), [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), + [sym_user_defined_literal] = STATE(3903), [sym_identifier] = ACTIONS(3011), [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), [anon_sym_COMMA] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2415), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), [anon_sym_SLASH] = ACTIONS(1513), [anon_sym_PERCENT] = ACTIONS(1505), [anon_sym_PIPE_PIPE] = ACTIONS(1505), [anon_sym_AMP_AMP] = ACTIONS(1505), [anon_sym_PIPE] = ACTIONS(1513), [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1675), [anon_sym_EQ_EQ] = ACTIONS(1505), [anon_sym_BANG_EQ] = ACTIONS(1505), [anon_sym_GT] = ACTIONS(1513), @@ -160087,13 +160988,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1513), [anon_sym_LT_LT] = ACTIONS(1505), [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_COLON_COLON] = ACTIONS(2575), [anon_sym_LBRACE] = ACTIONS(3013), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), + [sym_primitive_type] = ACTIONS(1681), [anon_sym_QMARK] = ACTIONS(1505), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), [anon_sym_LT_EQ_GT] = ACTIONS(1505), [anon_sym_or] = ACTIONS(1513), [anon_sym_and] = ACTIONS(1513), @@ -160101,63 +161002,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(1513), [anon_sym_bitand] = ACTIONS(1513), [anon_sym_not_eq] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), [anon_sym_DOT] = ACTIONS(1513), [anon_sym_DASH_GT] = ACTIONS(1505), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), [anon_sym_GT2] = ACTIONS(1505), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), }, [1081] = { - [sym__expression] = STATE(3843), + [sym_function_definition] = STATE(2009), + [sym_declaration] = STATE(2009), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4226), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(1991), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3381), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym__empty_declaration] = STATE(2009), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(2009), + [sym_operator_cast] = STATE(5486), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(2009), + [sym_operator_cast_declaration] = STATE(2009), + [sym_constructor_or_destructor_definition] = STATE(2009), + [sym_constructor_or_destructor_declaration] = STATE(2009), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(2009), + [sym_concept_definition] = STATE(2009), + [sym_requires_clause] = STATE(1092), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3443), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [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_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3019), + [anon_sym_concept] = ACTIONS(3021), + [anon_sym_requires] = ACTIONS(3023), + }, + [1082] = { + [sym_function_definition] = STATE(934), + [sym_declaration] = STATE(934), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4224), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2036), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4989), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3345), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym__empty_declaration] = STATE(934), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1953), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(934), + [sym_operator_cast] = STATE(5472), + [sym__constructor_specifiers] = STATE(1953), + [sym_operator_cast_definition] = STATE(934), + [sym_operator_cast_declaration] = STATE(934), + [sym_constructor_or_destructor_definition] = STATE(934), + [sym_constructor_or_destructor_declaration] = STATE(934), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(934), + [sym_concept_definition] = STATE(934), + [sym_requires_clause] = STATE(1094), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3443), + [sym_qualified_operator_cast_identifier] = STATE(5472), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1953), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [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_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(3025), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3027), + [anon_sym_concept] = ACTIONS(131), + [anon_sym_requires] = ACTIONS(3023), + }, + [1083] = { + [sym__expression] = STATE(3870), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(3108), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_initializer_list] = STATE(3441), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3108), + [sym_initializer_list] = STATE(3538), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -160169,17 +161286,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(3108), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), + [sym_identifier] = ACTIONS(3029), [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), [anon_sym_SLASH] = ACTIONS(1513), [anon_sym_PERCENT] = ACTIONS(1505), [anon_sym_PIPE_PIPE] = ACTIONS(1505), @@ -160195,14 +161312,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1513), [anon_sym_LT_LT] = ACTIONS(1505), [anon_sym_GT_GT] = ACTIONS(1505), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_COLON_COLON] = ACTIONS(3039), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), [anon_sym_COLON] = ACTIONS(1513), [anon_sym_QMARK] = ACTIONS(1505), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), [anon_sym_LT_EQ_GT] = ACTIONS(1505), [anon_sym_or] = ACTIONS(1513), [anon_sym_and] = ACTIONS(1513), @@ -160210,9 +161327,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(1513), [anon_sym_bitand] = ACTIONS(1513), [anon_sym_not_eq] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), [anon_sym_DOT] = ACTIONS(1513), [anon_sym_DASH_GT] = ACTIONS(1505), [sym_number_literal] = ACTIONS(97), @@ -160231,288 +161348,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(3045), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1082] = { - [sym_function_definition] = STATE(2264), - [sym_declaration] = STATE(2264), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4252), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [1084] = { + [sym_function_definition] = STATE(510), + [sym_declaration] = STATE(510), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2145), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4970), + [sym_function_declarator] = STATE(4981), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym__empty_declaration] = STATE(2264), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(2264), - [sym_operator_cast] = STATE(5457), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(2264), - [sym_operator_cast_declaration] = STATE(2264), - [sym_constructor_or_destructor_definition] = STATE(2264), - [sym_constructor_or_destructor_declaration] = STATE(2264), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym__empty_declaration] = STATE(510), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1948), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(510), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1948), + [sym_operator_cast_definition] = STATE(510), + [sym_operator_cast_declaration] = STATE(510), + [sym_constructor_or_destructor_definition] = STATE(510), + [sym_constructor_or_destructor_declaration] = STATE(510), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_alias_declaration] = STATE(2264), - [sym_concept_definition] = STATE(2264), + [sym_alias_declaration] = STATE(510), + [sym_concept_definition] = STATE(510), [sym_requires_clause] = STATE(1090), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4774), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), - [sym_qualified_operator_cast_identifier] = STATE(5457), - [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [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_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2217), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(3041), - [anon_sym_concept] = ACTIONS(3043), - [anon_sym_requires] = ACTIONS(3045), - }, - [1083] = { - [sym_function_definition] = STATE(981), - [sym_declaration] = STATE(981), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4248), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2166), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4994), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3412), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym__empty_declaration] = STATE(981), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1952), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(981), - [sym_operator_cast] = STATE(5487), - [sym__constructor_specifiers] = STATE(1952), - [sym_operator_cast_definition] = STATE(981), - [sym_operator_cast_declaration] = STATE(981), - [sym_constructor_or_destructor_definition] = STATE(981), - [sym_constructor_or_destructor_declaration] = STATE(981), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_alias_declaration] = STATE(981), - [sym_concept_definition] = STATE(981), - [sym_requires_clause] = STATE(1093), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4774), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), - [sym_qualified_operator_cast_identifier] = STATE(5487), - [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1952), - [sym_identifier] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [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_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(3047), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(3049), - [anon_sym_concept] = ACTIONS(612), - [anon_sym_requires] = ACTIONS(3045), - }, - [1084] = { - [sym_function_definition] = STATE(514), - [sym_declaration] = STATE(514), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4981), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym__empty_declaration] = STATE(514), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1955), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(514), - [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1955), - [sym_operator_cast_definition] = STATE(514), - [sym_operator_cast_declaration] = STATE(514), - [sym_constructor_or_destructor_definition] = STATE(514), - [sym_constructor_or_destructor_declaration] = STATE(514), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_alias_declaration] = STATE(514), - [sym_concept_definition] = STATE(514), - [sym_requires_clause] = STATE(1092), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4774), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_type_identifier] = STATE(3443), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1955), - [sym_identifier] = ACTIONS(3037), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1948), + [sym_identifier] = ACTIONS(3015), [anon_sym_LPAREN2] = ACTIONS(1599), [anon_sym_TILDE] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1603), @@ -160520,7 +161423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1605), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3017), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), @@ -160535,6 +161438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -160547,7 +161451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -160562,385 +161466,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_operator] = ACTIONS(117), [anon_sym_using] = ACTIONS(3053), [anon_sym_concept] = ACTIONS(287), - [anon_sym_requires] = ACTIONS(3045), + [anon_sym_requires] = ACTIONS(3023), }, [1085] = { - [sym_function_definition] = STATE(1037), - [sym_declaration] = STATE(1037), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4249), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [sym_function_definition] = STATE(2230), + [sym_declaration] = STATE(2230), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4231), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2160), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4989), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym__empty_declaration] = STATE(1037), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1988), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(1037), - [sym_operator_cast] = STATE(5472), - [sym__constructor_specifiers] = STATE(1988), - [sym_operator_cast_definition] = STATE(1037), - [sym_operator_cast_declaration] = STATE(1037), - [sym_constructor_or_destructor_definition] = STATE(1037), - [sym_constructor_or_destructor_declaration] = STATE(1037), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_alias_declaration] = STATE(1037), - [sym_concept_definition] = STATE(1037), - [sym_requires_clause] = STATE(1091), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4774), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), - [sym_qualified_operator_cast_identifier] = STATE(5472), - [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1988), - [sym_identifier] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [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_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(3055), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_concept] = ACTIONS(131), - [anon_sym_requires] = ACTIONS(3045), - }, - [1086] = { - [sym_function_definition] = STATE(2094), - [sym_declaration] = STATE(2094), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4247), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2119), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4949), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3397), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym__empty_declaration] = STATE(2094), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(2094), - [sym_operator_cast] = STATE(5486), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(2094), - [sym_operator_cast_declaration] = STATE(2094), - [sym_constructor_or_destructor_definition] = STATE(2094), - [sym_constructor_or_destructor_declaration] = STATE(2094), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_alias_declaration] = STATE(2094), - [sym_concept_definition] = STATE(2094), - [sym_requires_clause] = STATE(1095), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4774), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), - [sym_qualified_operator_cast_identifier] = STATE(5486), - [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), - [sym_identifier] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [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_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1633), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(3059), - [anon_sym_concept] = ACTIONS(3061), - [anon_sym_requires] = ACTIONS(3045), - }, - [1087] = { - [sym_function_definition] = STATE(978), - [sym_declaration] = STATE(978), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4967), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym__empty_declaration] = STATE(978), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1971), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(978), - [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1971), - [sym_operator_cast_definition] = STATE(978), - [sym_operator_cast_declaration] = STATE(978), - [sym_constructor_or_destructor_definition] = STATE(978), - [sym_constructor_or_destructor_declaration] = STATE(978), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_alias_declaration] = STATE(978), - [sym_concept_definition] = STATE(978), - [sym_requires_clause] = STATE(1089), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4774), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), - [sym_qualified_operator_cast_identifier] = STATE(5452), - [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1971), - [sym_identifier] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [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_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(3065), - [anon_sym_concept] = ACTIONS(207), - [anon_sym_requires] = ACTIONS(3045), - }, - [1088] = { - [sym_function_definition] = STATE(2397), - [sym_declaration] = STATE(2397), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4253), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2118), + [sym_ms_call_modifier] = STATE(2076), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4982), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3402), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym__empty_declaration] = STATE(2397), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1960), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(2397), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3369), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym__empty_declaration] = STATE(2230), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1936), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(2230), [sym_operator_cast] = STATE(5459), - [sym__constructor_specifiers] = STATE(1960), - [sym_operator_cast_definition] = STATE(2397), - [sym_operator_cast_declaration] = STATE(2397), - [sym_constructor_or_destructor_definition] = STATE(2397), - [sym_constructor_or_destructor_declaration] = STATE(2397), + [sym__constructor_specifiers] = STATE(1936), + [sym_operator_cast_definition] = STATE(2230), + [sym_operator_cast_declaration] = STATE(2230), + [sym_constructor_or_destructor_definition] = STATE(2230), + [sym_constructor_or_destructor_declaration] = STATE(2230), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_alias_declaration] = STATE(2397), - [sym_concept_definition] = STATE(2397), - [sym_requires_clause] = STATE(1094), + [sym_alias_declaration] = STATE(2230), + [sym_concept_definition] = STATE(2230), + [sym_requires_clause] = STATE(1091), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4774), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_type_identifier] = STATE(3443), [sym_qualified_operator_cast_identifier] = STATE(5459), [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1960), - [sym_identifier] = ACTIONS(3037), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1936), + [sym_identifier] = ACTIONS(3015), [anon_sym_LPAREN2] = ACTIONS(1599), [anon_sym_TILDE] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1603), @@ -160948,7 +161531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1605), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3017), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), @@ -160963,6 +161546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -160975,7 +161559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -160986,67 +161570,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2285), + [anon_sym_template] = ACTIONS(2131), [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(3067), - [anon_sym_concept] = ACTIONS(3069), - [anon_sym_requires] = ACTIONS(3045), + [anon_sym_using] = ACTIONS(3055), + [anon_sym_concept] = ACTIONS(3057), + [anon_sym_requires] = ACTIONS(3023), }, - [1089] = { - [sym_function_definition] = STATE(1023), - [sym_declaration] = STATE(1023), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4237), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [1086] = { + [sym_function_definition] = STATE(1026), + [sym_declaration] = STATE(1026), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4252), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2055), + [sym_ms_call_modifier] = STATE(1997), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4967), + [sym_function_declarator] = STATE(4994), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3403), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym__empty_declaration] = STATE(1023), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1971), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(1023), - [sym_operator_cast] = STATE(5452), - [sym__constructor_specifiers] = STATE(1971), - [sym_operator_cast_definition] = STATE(1023), - [sym_operator_cast_declaration] = STATE(1023), - [sym_constructor_or_destructor_definition] = STATE(1023), - [sym_constructor_or_destructor_declaration] = STATE(1023), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3377), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym__empty_declaration] = STATE(1026), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1930), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(1026), + [sym_operator_cast] = STATE(5487), + [sym__constructor_specifiers] = STATE(1930), + [sym_operator_cast_definition] = STATE(1026), + [sym_operator_cast_declaration] = STATE(1026), + [sym_constructor_or_destructor_definition] = STATE(1026), + [sym_constructor_or_destructor_declaration] = STATE(1026), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_alias_declaration] = STATE(1023), - [sym_concept_definition] = STATE(1023), + [sym_alias_declaration] = STATE(1026), + [sym_concept_definition] = STATE(1026), + [sym_requires_clause] = STATE(1095), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4774), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), - [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_qualified_type_identifier] = STATE(3443), + [sym_qualified_operator_cast_identifier] = STATE(5487), [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1971), - [sym_identifier] = ACTIONS(3037), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1930), + [sym_identifier] = ACTIONS(3015), [anon_sym_LPAREN2] = ACTIONS(1599), [anon_sym_TILDE] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1603), @@ -161054,7 +161639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1605), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3017), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), @@ -161069,6 +161654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -161081,7 +161667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -161092,66 +161678,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(3063), + [anon_sym_template] = ACTIONS(3059), [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(3065), - [anon_sym_concept] = ACTIONS(207), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_concept] = ACTIONS(740), + [anon_sym_requires] = ACTIONS(3023), }, - [1090] = { - [sym_function_definition] = STATE(2244), - [sym_declaration] = STATE(2244), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4252), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [1087] = { + [sym_function_definition] = STATE(2354), + [sym_declaration] = STATE(2354), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4220), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2145), + [sym_ms_call_modifier] = STATE(2070), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4970), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym__empty_declaration] = STATE(2244), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(2244), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3370), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym__empty_declaration] = STATE(2354), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(2354), [sym_operator_cast] = STATE(5457), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(2244), - [sym_operator_cast_declaration] = STATE(2244), - [sym_constructor_or_destructor_definition] = STATE(2244), - [sym_constructor_or_destructor_declaration] = STATE(2244), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(2354), + [sym_operator_cast_declaration] = STATE(2354), + [sym_constructor_or_destructor_definition] = STATE(2354), + [sym_constructor_or_destructor_declaration] = STATE(2354), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_alias_declaration] = STATE(2244), - [sym_concept_definition] = STATE(2244), + [sym_alias_declaration] = STATE(2354), + [sym_concept_definition] = STATE(2354), + [sym_requires_clause] = STATE(1089), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4774), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_type_identifier] = STATE(3443), [sym_qualified_operator_cast_identifier] = STATE(5457), [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(3037), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(3015), [anon_sym_LPAREN2] = ACTIONS(1599), [anon_sym_TILDE] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1603), @@ -161159,7 +161747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1605), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3017), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), @@ -161174,6 +161762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -161186,7 +161775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -161197,66 +161786,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2217), + [anon_sym_template] = ACTIONS(1857), [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(3041), - [anon_sym_concept] = ACTIONS(3043), + [anon_sym_using] = ACTIONS(3063), + [anon_sym_concept] = ACTIONS(3065), + [anon_sym_requires] = ACTIONS(3023), }, - [1091] = { - [sym_function_definition] = STATE(911), - [sym_declaration] = STATE(911), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4249), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [1088] = { + [sym_function_definition] = STATE(948), + [sym_declaration] = STATE(948), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2160), + [sym_ms_call_modifier] = STATE(2043), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4989), + [sym_function_declarator] = STATE(4967), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym__empty_declaration] = STATE(911), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1988), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(911), - [sym_operator_cast] = STATE(5472), - [sym__constructor_specifiers] = STATE(1988), - [sym_operator_cast_definition] = STATE(911), - [sym_operator_cast_declaration] = STATE(911), - [sym_constructor_or_destructor_definition] = STATE(911), - [sym_constructor_or_destructor_declaration] = STATE(911), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym__empty_declaration] = STATE(948), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1950), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(948), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1950), + [sym_operator_cast_definition] = STATE(948), + [sym_operator_cast_declaration] = STATE(948), + [sym_constructor_or_destructor_definition] = STATE(948), + [sym_constructor_or_destructor_declaration] = STATE(948), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_alias_declaration] = STATE(911), - [sym_concept_definition] = STATE(911), + [sym_alias_declaration] = STATE(948), + [sym_concept_definition] = STATE(948), + [sym_requires_clause] = STATE(1093), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4774), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), - [sym_qualified_operator_cast_identifier] = STATE(5472), + [sym_qualified_type_identifier] = STATE(3443), + [sym_qualified_operator_cast_identifier] = STATE(5452), [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1988), - [sym_identifier] = ACTIONS(3037), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [sym_identifier] = ACTIONS(3015), [anon_sym_LPAREN2] = ACTIONS(1599), [anon_sym_TILDE] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1603), @@ -161264,7 +161855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1605), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3017), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), @@ -161279,6 +161870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -161291,7 +161883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -161302,66 +161894,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(3055), + [anon_sym_template] = ACTIONS(3067), [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_concept] = ACTIONS(131), + [anon_sym_using] = ACTIONS(3069), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_requires] = ACTIONS(3023), }, - [1092] = { - [sym_function_definition] = STATE(485), - [sym_declaration] = STATE(485), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4212), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [1089] = { + [sym_function_definition] = STATE(2229), + [sym_declaration] = STATE(2229), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4220), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2136), + [sym_ms_call_modifier] = STATE(2070), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3370), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym__empty_declaration] = STATE(2229), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(2229), + [sym_operator_cast] = STATE(5457), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(2229), + [sym_operator_cast_declaration] = STATE(2229), + [sym_constructor_or_destructor_definition] = STATE(2229), + [sym_constructor_or_destructor_declaration] = STATE(2229), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(2229), + [sym_concept_definition] = STATE(2229), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3443), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [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_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(1857), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3063), + [anon_sym_concept] = ACTIONS(3065), + }, + [1090] = { + [sym_function_definition] = STATE(492), + [sym_declaration] = STATE(492), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4215), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2067), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4981), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3392), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym__empty_declaration] = STATE(485), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1955), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(485), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym__empty_declaration] = STATE(492), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1948), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(492), [sym_operator_cast] = STATE(5448), - [sym__constructor_specifiers] = STATE(1955), - [sym_operator_cast_definition] = STATE(485), - [sym_operator_cast_declaration] = STATE(485), - [sym_constructor_or_destructor_definition] = STATE(485), - [sym_constructor_or_destructor_declaration] = STATE(485), + [sym__constructor_specifiers] = STATE(1948), + [sym_operator_cast_definition] = STATE(492), + [sym_operator_cast_declaration] = STATE(492), + [sym_constructor_or_destructor_definition] = STATE(492), + [sym_constructor_or_destructor_declaration] = STATE(492), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_alias_declaration] = STATE(485), - [sym_concept_definition] = STATE(485), + [sym_alias_declaration] = STATE(492), + [sym_concept_definition] = STATE(492), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4774), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_type_identifier] = STATE(3443), [sym_qualified_operator_cast_identifier] = STATE(5448), [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1955), - [sym_identifier] = ACTIONS(3037), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1948), + [sym_identifier] = ACTIONS(3015), [anon_sym_LPAREN2] = ACTIONS(1599), [anon_sym_TILDE] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1603), @@ -161369,7 +162068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1605), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3017), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), @@ -161384,6 +162083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -161396,7 +162096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -161412,166 +162112,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(3053), [anon_sym_concept] = ACTIONS(287), }, - [1093] = { - [sym_function_definition] = STATE(1030), - [sym_declaration] = STATE(1030), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4248), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [1091] = { + [sym_function_definition] = STATE(2188), + [sym_declaration] = STATE(2188), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4231), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2166), - [sym__declarator] = STATE(5475), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(4994), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3412), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym__empty_declaration] = STATE(1030), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1952), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(1030), - [sym_operator_cast] = STATE(5487), - [sym__constructor_specifiers] = STATE(1952), - [sym_operator_cast_definition] = STATE(1030), - [sym_operator_cast_declaration] = STATE(1030), - [sym_constructor_or_destructor_definition] = STATE(1030), - [sym_constructor_or_destructor_declaration] = STATE(1030), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), - [sym_template_function] = STATE(5152), - [sym_alias_declaration] = STATE(1030), - [sym_concept_definition] = STATE(1030), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4774), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), - [sym_qualified_operator_cast_identifier] = STATE(5487), - [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1952), - [sym_identifier] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [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_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(3047), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(3049), - [anon_sym_concept] = ACTIONS(612), - }, - [1094] = { - [sym_function_definition] = STATE(2256), - [sym_declaration] = STATE(2256), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4253), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), - [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2118), + [sym_ms_call_modifier] = STATE(2076), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4982), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3402), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym__empty_declaration] = STATE(2256), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1960), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(2256), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3369), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym__empty_declaration] = STATE(2188), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1936), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(2188), [sym_operator_cast] = STATE(5459), - [sym__constructor_specifiers] = STATE(1960), - [sym_operator_cast_definition] = STATE(2256), - [sym_operator_cast_declaration] = STATE(2256), - [sym_constructor_or_destructor_definition] = STATE(2256), - [sym_constructor_or_destructor_declaration] = STATE(2256), + [sym__constructor_specifiers] = STATE(1936), + [sym_operator_cast_definition] = STATE(2188), + [sym_operator_cast_declaration] = STATE(2188), + [sym_constructor_or_destructor_definition] = STATE(2188), + [sym_constructor_or_destructor_declaration] = STATE(2188), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_alias_declaration] = STATE(2256), - [sym_concept_definition] = STATE(2256), + [sym_alias_declaration] = STATE(2188), + [sym_concept_definition] = STATE(2188), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4774), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_type_identifier] = STATE(3443), [sym_qualified_operator_cast_identifier] = STATE(5459), [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1960), - [sym_identifier] = ACTIONS(3037), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1936), + [sym_identifier] = ACTIONS(3015), [anon_sym_LPAREN2] = ACTIONS(1599), [anon_sym_TILDE] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1603), @@ -161579,7 +162174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1605), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3017), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), @@ -161594,6 +162189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -161606,7 +162202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -161617,66 +162213,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2285), + [anon_sym_template] = ACTIONS(2131), [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(3067), - [anon_sym_concept] = ACTIONS(3069), + [anon_sym_using] = ACTIONS(3055), + [anon_sym_concept] = ACTIONS(3057), }, - [1095] = { - [sym_function_definition] = STATE(2046), - [sym_declaration] = STATE(2046), - [sym__declaration_modifiers] = STATE(3361), - [sym__declaration_specifiers] = STATE(4247), - [sym_attribute_specifier] = STATE(3361), - [sym_attribute_declaration] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3361), + [1092] = { + [sym_function_definition] = STATE(2007), + [sym_declaration] = STATE(2007), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4226), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), [sym_ms_based_modifier] = STATE(6985), - [sym_ms_call_modifier] = STATE(2119), + [sym_ms_call_modifier] = STATE(1991), [sym__declarator] = STATE(5475), [sym_parenthesized_declarator] = STATE(5152), [sym_attributed_declarator] = STATE(5152), [sym_pointer_declarator] = STATE(5152), [sym_function_declarator] = STATE(4949), [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(3361), - [sym_type_qualifier] = STATE(3361), - [sym__type_specifier] = STATE(3397), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym__empty_declaration] = STATE(2046), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(3361), - [sym_explicit_function_specifier] = STATE(1969), - [sym_dependent_type] = STATE(3504), - [sym_template_declaration] = STATE(2046), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3381), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym__empty_declaration] = STATE(2007), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1926), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(2007), [sym_operator_cast] = STATE(5486), - [sym__constructor_specifiers] = STATE(1969), - [sym_operator_cast_definition] = STATE(2046), - [sym_operator_cast_declaration] = STATE(2046), - [sym_constructor_or_destructor_definition] = STATE(2046), - [sym_constructor_or_destructor_declaration] = STATE(2046), + [sym__constructor_specifiers] = STATE(1926), + [sym_operator_cast_definition] = STATE(2007), + [sym_operator_cast_declaration] = STATE(2007), + [sym_constructor_or_destructor_definition] = STATE(2007), + [sym_constructor_or_destructor_declaration] = STATE(2007), [sym_reference_declarator] = STATE(5152), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), - [sym_alias_declaration] = STATE(2046), - [sym_concept_definition] = STATE(2046), + [sym_alias_declaration] = STATE(2007), + [sym_concept_definition] = STATE(2007), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4774), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_type_identifier] = STATE(3443), [sym_qualified_operator_cast_identifier] = STATE(5486), [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [aux_sym_operator_cast_definition_repeat1] = STATE(1969), - [sym_identifier] = ACTIONS(3037), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1926), + [sym_identifier] = ACTIONS(3015), [anon_sym_LPAREN2] = ACTIONS(1599), [anon_sym_TILDE] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1603), @@ -161684,7 +162280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1605), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3017), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), @@ -161699,6 +162295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -161711,7 +162308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -161724,8 +162321,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(113), [anon_sym_template] = ACTIONS(1633), [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(3059), - [anon_sym_concept] = ACTIONS(3061), + [anon_sym_using] = ACTIONS(3019), + [anon_sym_concept] = ACTIONS(3021), + }, + [1093] = { + [sym_function_definition] = STATE(997), + [sym_declaration] = STATE(997), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2043), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4967), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3364), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym__empty_declaration] = STATE(997), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1950), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(997), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1950), + [sym_operator_cast_definition] = STATE(997), + [sym_operator_cast_declaration] = STATE(997), + [sym_constructor_or_destructor_definition] = STATE(997), + [sym_constructor_or_destructor_declaration] = STATE(997), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(997), + [sym_concept_definition] = STATE(997), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3443), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [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_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(3067), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3069), + [anon_sym_concept] = ACTIONS(207), + }, + [1094] = { + [sym_function_definition] = STATE(920), + [sym_declaration] = STATE(920), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4224), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2036), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4989), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3345), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym__empty_declaration] = STATE(920), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1953), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(920), + [sym_operator_cast] = STATE(5472), + [sym__constructor_specifiers] = STATE(1953), + [sym_operator_cast_definition] = STATE(920), + [sym_operator_cast_declaration] = STATE(920), + [sym_constructor_or_destructor_definition] = STATE(920), + [sym_constructor_or_destructor_declaration] = STATE(920), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(920), + [sym_concept_definition] = STATE(920), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3443), + [sym_qualified_operator_cast_identifier] = STATE(5472), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1953), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [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_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(3025), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3027), + [anon_sym_concept] = ACTIONS(131), + }, + [1095] = { + [sym_function_definition] = STATE(904), + [sym_declaration] = STATE(904), + [sym__declaration_modifiers] = STATE(3318), + [sym__declaration_specifiers] = STATE(4252), + [sym_attribute_specifier] = STATE(3318), + [sym_attribute_declaration] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(1997), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4994), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym__type_specifier] = STATE(3377), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym__empty_declaration] = STATE(904), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(3318), + [sym_explicit_function_specifier] = STATE(1930), + [sym_dependent_type] = STATE(3448), + [sym_template_declaration] = STATE(904), + [sym_operator_cast] = STATE(5487), + [sym__constructor_specifiers] = STATE(1930), + [sym_operator_cast_definition] = STATE(904), + [sym_operator_cast_declaration] = STATE(904), + [sym_constructor_or_destructor_definition] = STATE(904), + [sym_constructor_or_destructor_declaration] = STATE(904), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3336), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(904), + [sym_concept_definition] = STATE(904), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3443), + [sym_qualified_operator_cast_identifier] = STATE(5487), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [aux_sym_operator_cast_definition_repeat1] = STATE(1930), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [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_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_concept] = ACTIONS(740), }, [1096] = { [sym_identifier] = ACTIONS(3071), @@ -161753,6 +162668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(3071), [anon_sym_inline] = ACTIONS(3071), [anon_sym_thread_local] = ACTIONS(3071), + [anon_sym_input] = ACTIONS(3071), [anon_sym_const] = ACTIONS(3071), [anon_sym_volatile] = ACTIONS(3071), [anon_sym_restrict] = ACTIONS(3071), @@ -161851,6 +162767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(3075), [anon_sym_inline] = ACTIONS(3075), [anon_sym_thread_local] = ACTIONS(3075), + [anon_sym_input] = ACTIONS(3075), [anon_sym_const] = ACTIONS(3075), [anon_sym_volatile] = ACTIONS(3075), [anon_sym_restrict] = ACTIONS(3075), @@ -161924,194 +162841,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(3075), }, [1098] = { - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5319), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5152), - [sym_array_declarator] = STATE(5152), - [sym__expression] = STATE(2669), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2586), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4911), - [sym_qualified_identifier] = STATE(2587), - [sym_qualified_type_identifier] = STATE(6425), - [sym_operator_name] = STATE(5152), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(2895), - [anon_sym_LPAREN2] = ACTIONS(2897), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1481), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(1501), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), - }, - [1099] = { - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5319), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5152), - [sym_array_declarator] = STATE(5152), - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2774), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4904), - [sym_qualified_identifier] = STATE(2777), - [sym_qualified_type_identifier] = STATE(6210), - [sym_operator_name] = STATE(5152), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(2907), - [anon_sym_LPAREN2] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1481), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(1501), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1100] = { [sym_identifier] = ACTIONS(3079), [anon_sym_LPAREN2] = ACTIONS(3082), [anon_sym_BANG] = ACTIONS(3085), @@ -162134,6 +162863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(3091), [anon_sym_inline] = ACTIONS(3091), [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym_input] = ACTIONS(3091), [anon_sym_const] = ACTIONS(3091), [anon_sym_volatile] = ACTIONS(3091), [anon_sym_restrict] = ACTIONS(3091), @@ -162205,198 +162935,388 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(3087), [sym_nullptr] = ACTIONS(3087), }, + [1099] = { + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5319), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym__expression] = STATE(2669), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2586), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4911), + [sym_qualified_identifier] = STATE(2587), + [sym_qualified_type_identifier] = STATE(6425), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(2907), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1481), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1100] = { + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5319), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2767), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2775), + [sym_qualified_type_identifier] = STATE(6210), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1481), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, [1101] = { [sym_catch_clause] = STATE(1101), [aux_sym_constructor_try_statement_repeat1] = STATE(1101), - [sym_identifier] = ACTIONS(2361), - [anon_sym_LPAREN2] = ACTIONS(2363), - [anon_sym_BANG] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2363), - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_typedef] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(2361), - [anon_sym___attribute__] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2363), - [anon_sym___declspec] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_register] = ACTIONS(2361), - [anon_sym_inline] = ACTIONS(2361), - [anon_sym_thread_local] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_volatile] = ACTIONS(2361), - [anon_sym_restrict] = ACTIONS(2361), - [anon_sym__Atomic] = ACTIONS(2361), - [anon_sym_mutable] = ACTIONS(2361), - [anon_sym_constexpr] = ACTIONS(2361), - [anon_sym_constinit] = ACTIONS(2361), - [anon_sym_consteval] = ACTIONS(2361), - [anon_sym_signed] = ACTIONS(2361), - [anon_sym_unsigned] = ACTIONS(2361), - [anon_sym_long] = ACTIONS(2361), - [anon_sym_short] = ACTIONS(2361), - [sym_primitive_type] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_struct] = ACTIONS(2361), - [anon_sym_union] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_switch] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_goto] = ACTIONS(2361), - [anon_sym_not] = ACTIONS(2361), - [anon_sym_compl] = ACTIONS(2361), - [anon_sym_DASH_DASH] = ACTIONS(2363), - [anon_sym_PLUS_PLUS] = ACTIONS(2363), - [anon_sym_sizeof] = ACTIONS(2361), - [sym_number_literal] = ACTIONS(2363), - [anon_sym_L_SQUOTE] = ACTIONS(2363), - [anon_sym_u_SQUOTE] = ACTIONS(2363), - [anon_sym_U_SQUOTE] = ACTIONS(2363), - [anon_sym_u8_SQUOTE] = ACTIONS(2363), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_L_DQUOTE] = ACTIONS(2363), - [anon_sym_u_DQUOTE] = ACTIONS(2363), - [anon_sym_U_DQUOTE] = ACTIONS(2363), - [anon_sym_u8_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(2363), - [sym_true] = ACTIONS(2361), - [sym_false] = ACTIONS(2361), - [sym_null] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2359), + [anon_sym_LPAREN2] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2361), + [anon_sym_TILDE] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_PLUS] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_typedef] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym___attribute__] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2361), + [anon_sym___declspec] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym_thread_local] = ACTIONS(2359), + [anon_sym_input] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_restrict] = ACTIONS(2359), + [anon_sym__Atomic] = ACTIONS(2359), + [anon_sym_mutable] = ACTIONS(2359), + [anon_sym_constexpr] = ACTIONS(2359), + [anon_sym_constinit] = ACTIONS(2359), + [anon_sym_consteval] = ACTIONS(2359), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [sym_primitive_type] = ACTIONS(2359), + [anon_sym_enum] = ACTIONS(2359), + [anon_sym_class] = ACTIONS(2359), + [anon_sym_struct] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_else] = ACTIONS(2359), + [anon_sym_switch] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_do] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_goto] = ACTIONS(2359), + [anon_sym_not] = ACTIONS(2359), + [anon_sym_compl] = ACTIONS(2359), + [anon_sym_DASH_DASH] = ACTIONS(2361), + [anon_sym_PLUS_PLUS] = ACTIONS(2361), + [anon_sym_sizeof] = ACTIONS(2359), + [sym_number_literal] = ACTIONS(2361), + [anon_sym_L_SQUOTE] = ACTIONS(2361), + [anon_sym_u_SQUOTE] = ACTIONS(2361), + [anon_sym_U_SQUOTE] = ACTIONS(2361), + [anon_sym_u8_SQUOTE] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_L_DQUOTE] = ACTIONS(2361), + [anon_sym_u_DQUOTE] = ACTIONS(2361), + [anon_sym_U_DQUOTE] = ACTIONS(2361), + [anon_sym_u8_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2361), + [sym_true] = ACTIONS(2359), + [sym_false] = ACTIONS(2359), + [sym_null] = ACTIONS(2359), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2361), - [anon_sym_decltype] = ACTIONS(2361), - [anon_sym_virtual] = ACTIONS(2361), - [anon_sym_typename] = ACTIONS(2361), - [anon_sym_template] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_throw] = ACTIONS(2361), - [anon_sym_co_return] = ACTIONS(2361), - [anon_sym_co_yield] = ACTIONS(2361), + [sym_auto] = ACTIONS(2359), + [anon_sym_decltype] = ACTIONS(2359), + [anon_sym_virtual] = ACTIONS(2359), + [anon_sym_typename] = ACTIONS(2359), + [anon_sym_template] = ACTIONS(2359), + [anon_sym_try] = ACTIONS(2359), + [anon_sym_delete] = ACTIONS(2359), + [anon_sym_throw] = ACTIONS(2359), + [anon_sym_co_return] = ACTIONS(2359), + [anon_sym_co_yield] = ACTIONS(2359), [anon_sym_catch] = ACTIONS(3093), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2361), - [anon_sym_requires] = ACTIONS(2361), - [sym_this] = ACTIONS(2361), - [sym_nullptr] = ACTIONS(2361), + [anon_sym_R_DQUOTE] = ACTIONS(2361), + [anon_sym_LR_DQUOTE] = ACTIONS(2361), + [anon_sym_uR_DQUOTE] = ACTIONS(2361), + [anon_sym_UR_DQUOTE] = ACTIONS(2361), + [anon_sym_u8R_DQUOTE] = ACTIONS(2361), + [anon_sym_co_await] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2359), + [anon_sym_requires] = ACTIONS(2359), + [sym_this] = ACTIONS(2359), + [sym_nullptr] = ACTIONS(2359), }, [1102] = { [sym_catch_clause] = STATE(1101), [aux_sym_constructor_try_statement_repeat1] = STATE(1101), - [sym_identifier] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_typedef] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym___attribute__] = ACTIONS(2355), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), - [anon_sym___declspec] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2355), - [anon_sym_thread_local] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_volatile] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2355), - [anon_sym__Atomic] = ACTIONS(2355), - [anon_sym_mutable] = ACTIONS(2355), - [anon_sym_constexpr] = ACTIONS(2355), - [anon_sym_constinit] = ACTIONS(2355), - [anon_sym_consteval] = ACTIONS(2355), - [anon_sym_signed] = ACTIONS(2355), - [anon_sym_unsigned] = ACTIONS(2355), - [anon_sym_long] = ACTIONS(2355), - [anon_sym_short] = ACTIONS(2355), - [sym_primitive_type] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_class] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_switch] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_goto] = ACTIONS(2355), - [anon_sym_not] = ACTIONS(2355), - [anon_sym_compl] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_sizeof] = ACTIONS(2355), - [sym_number_literal] = ACTIONS(2357), - [anon_sym_L_SQUOTE] = ACTIONS(2357), - [anon_sym_u_SQUOTE] = ACTIONS(2357), - [anon_sym_U_SQUOTE] = ACTIONS(2357), - [anon_sym_u8_SQUOTE] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_L_DQUOTE] = ACTIONS(2357), - [anon_sym_u_DQUOTE] = ACTIONS(2357), - [anon_sym_U_DQUOTE] = ACTIONS(2357), - [anon_sym_u8_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_true] = ACTIONS(2355), - [sym_false] = ACTIONS(2355), - [sym_null] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym___attribute__] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), + [anon_sym___declspec] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_register] = ACTIONS(2353), + [anon_sym_inline] = ACTIONS(2353), + [anon_sym_thread_local] = ACTIONS(2353), + [anon_sym_input] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_volatile] = ACTIONS(2353), + [anon_sym_restrict] = ACTIONS(2353), + [anon_sym__Atomic] = ACTIONS(2353), + [anon_sym_mutable] = ACTIONS(2353), + [anon_sym_constexpr] = ACTIONS(2353), + [anon_sym_constinit] = ACTIONS(2353), + [anon_sym_consteval] = ACTIONS(2353), + [anon_sym_signed] = ACTIONS(2353), + [anon_sym_unsigned] = ACTIONS(2353), + [anon_sym_long] = ACTIONS(2353), + [anon_sym_short] = ACTIONS(2353), + [sym_primitive_type] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_else] = ACTIONS(2353), + [anon_sym_switch] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_goto] = ACTIONS(2353), + [anon_sym_not] = ACTIONS(2353), + [anon_sym_compl] = ACTIONS(2353), + [anon_sym_DASH_DASH] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_sizeof] = ACTIONS(2353), + [sym_number_literal] = ACTIONS(2355), + [anon_sym_L_SQUOTE] = ACTIONS(2355), + [anon_sym_u_SQUOTE] = ACTIONS(2355), + [anon_sym_U_SQUOTE] = ACTIONS(2355), + [anon_sym_u8_SQUOTE] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2355), + [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(2353), + [sym_false] = ACTIONS(2353), + [sym_null] = ACTIONS(2353), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2355), - [anon_sym_decltype] = ACTIONS(2355), - [anon_sym_virtual] = ACTIONS(2355), - [anon_sym_typename] = ACTIONS(2355), - [anon_sym_template] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_delete] = ACTIONS(2355), - [anon_sym_throw] = ACTIONS(2355), - [anon_sym_co_return] = ACTIONS(2355), - [anon_sym_co_yield] = ACTIONS(2355), + [sym_auto] = ACTIONS(2353), + [anon_sym_decltype] = ACTIONS(2353), + [anon_sym_virtual] = ACTIONS(2353), + [anon_sym_typename] = ACTIONS(2353), + [anon_sym_template] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_delete] = ACTIONS(2353), + [anon_sym_throw] = ACTIONS(2353), + [anon_sym_co_return] = ACTIONS(2353), + [anon_sym_co_yield] = ACTIONS(2353), [anon_sym_catch] = ACTIONS(3096), - [anon_sym_R_DQUOTE] = ACTIONS(2357), - [anon_sym_LR_DQUOTE] = ACTIONS(2357), - [anon_sym_uR_DQUOTE] = ACTIONS(2357), - [anon_sym_UR_DQUOTE] = ACTIONS(2357), - [anon_sym_u8R_DQUOTE] = ACTIONS(2357), - [anon_sym_co_await] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_requires] = ACTIONS(2355), - [sym_this] = ACTIONS(2355), - [sym_nullptr] = ACTIONS(2355), + [anon_sym_R_DQUOTE] = ACTIONS(2355), + [anon_sym_LR_DQUOTE] = ACTIONS(2355), + [anon_sym_uR_DQUOTE] = ACTIONS(2355), + [anon_sym_UR_DQUOTE] = ACTIONS(2355), + [anon_sym_u8R_DQUOTE] = ACTIONS(2355), + [anon_sym_co_await] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_requires] = ACTIONS(2353), + [sym_this] = ACTIONS(2353), + [sym_nullptr] = ACTIONS(2353), }, [1103] = { - [sym__declaration_modifiers] = STATE(2193), - [sym__declaration_specifiers] = STATE(3399), - [sym_attribute_specifier] = STATE(2193), - [sym_attribute_declaration] = STATE(2193), - [sym_ms_declspec_modifier] = STATE(2193), + [sym__declaration_modifiers] = STATE(2091), + [sym__declaration_specifiers] = STATE(3432), + [sym_attribute_specifier] = STATE(2091), + [sym_attribute_declaration] = STATE(2091), + [sym_ms_declspec_modifier] = STATE(2091), [sym_ms_based_modifier] = STATE(6985), [sym__declarator] = STATE(5344), [sym__abstract_declarator] = STATE(5666), @@ -162409,36 +163329,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_function_declarator] = STATE(5097), [sym_array_declarator] = STATE(5152), [sym_abstract_array_declarator] = STATE(5097), - [sym_storage_class_specifier] = STATE(2193), - [sym_type_qualifier] = STATE(2193), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym_storage_class_specifier] = STATE(2091), + [sym_type_qualifier] = STATE(2091), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_parameter_list] = STATE(4350), [sym_parameter_declaration] = STATE(5821), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(2193), - [sym_dependent_type] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2091), + [sym_dependent_type] = STATE(3448), [sym_optional_parameter_declaration] = STATE(5821), [sym_variadic_parameter_declaration] = STATE(5821), [sym_reference_declarator] = STATE(5152), [sym_abstract_reference_declarator] = STATE(5097), [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_template_function] = STATE(5152), [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4923), [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_type_identifier] = STATE(3443), [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym__declaration_specifiers_repeat1] = STATE(2091), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT] = ACTIONS(3100), [anon_sym_RPAREN] = ACTIONS(3102), @@ -162458,6 +163378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -162470,7 +163391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(1431), [anon_sym_class] = ACTIONS(1433), [anon_sym_struct] = ACTIONS(1435), @@ -162484,7584 +163405,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_operator] = ACTIONS(1501), }, [1104] = { - [sym_type_qualifier] = STATE(1110), - [sym__expression] = STATE(3973), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_type_definition_repeat1] = STATE(1110), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3120), - [anon_sym_const] = ACTIONS(3122), - [anon_sym_volatile] = ACTIONS(3122), - [anon_sym_restrict] = ACTIONS(3122), - [anon_sym__Atomic] = ACTIONS(3122), - [anon_sym_mutable] = ACTIONS(3122), - [anon_sym_constexpr] = ACTIONS(3122), - [anon_sym_constinit] = ACTIONS(3122), - [anon_sym_consteval] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_identifier] = ACTIONS(2379), + [anon_sym_LPAREN2] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2381), + [anon_sym_TILDE] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(2381), + [anon_sym_AMP] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_typedef] = ACTIONS(2379), + [anon_sym_extern] = ACTIONS(2379), + [anon_sym___attribute__] = ACTIONS(2379), + [anon_sym_COLON_COLON] = ACTIONS(2381), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2381), + [anon_sym___declspec] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2379), + [anon_sym_register] = ACTIONS(2379), + [anon_sym_inline] = ACTIONS(2379), + [anon_sym_thread_local] = ACTIONS(2379), + [anon_sym_input] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_volatile] = ACTIONS(2379), + [anon_sym_restrict] = ACTIONS(2379), + [anon_sym__Atomic] = ACTIONS(2379), + [anon_sym_mutable] = ACTIONS(2379), + [anon_sym_constexpr] = ACTIONS(2379), + [anon_sym_constinit] = ACTIONS(2379), + [anon_sym_consteval] = ACTIONS(2379), + [anon_sym_signed] = ACTIONS(2379), + [anon_sym_unsigned] = ACTIONS(2379), + [anon_sym_long] = ACTIONS(2379), + [anon_sym_short] = ACTIONS(2379), + [sym_primitive_type] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_class] = ACTIONS(2379), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_else] = ACTIONS(2379), + [anon_sym_switch] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_do] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_goto] = ACTIONS(2379), + [anon_sym_not] = ACTIONS(2379), + [anon_sym_compl] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2381), + [anon_sym_PLUS_PLUS] = ACTIONS(2381), + [anon_sym_sizeof] = ACTIONS(2379), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_L_SQUOTE] = ACTIONS(2381), + [anon_sym_u_SQUOTE] = ACTIONS(2381), + [anon_sym_U_SQUOTE] = ACTIONS(2381), + [anon_sym_u8_SQUOTE] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2381), + [anon_sym_L_DQUOTE] = ACTIONS(2381), + [anon_sym_u_DQUOTE] = ACTIONS(2381), + [anon_sym_U_DQUOTE] = ACTIONS(2381), + [anon_sym_u8_DQUOTE] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2381), + [sym_true] = ACTIONS(2379), + [sym_false] = ACTIONS(2379), + [sym_null] = ACTIONS(2379), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(2379), + [anon_sym_decltype] = ACTIONS(2379), + [anon_sym_virtual] = ACTIONS(2379), + [anon_sym_typename] = ACTIONS(2379), + [anon_sym_template] = ACTIONS(2379), + [anon_sym_try] = ACTIONS(2379), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_throw] = ACTIONS(2379), + [anon_sym_co_return] = ACTIONS(2379), + [anon_sym_co_yield] = ACTIONS(2379), + [anon_sym_catch] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2379), + [anon_sym_new] = ACTIONS(2379), + [anon_sym_requires] = ACTIONS(2379), + [sym_this] = ACTIONS(2379), + [sym_nullptr] = ACTIONS(2379), }, [1105] = { - [sym_type_qualifier] = STATE(1111), - [sym__expression] = STATE(3877), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_type_definition_repeat1] = STATE(1111), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3126), - [anon_sym_const] = ACTIONS(3122), - [anon_sym_volatile] = ACTIONS(3122), - [anon_sym_restrict] = ACTIONS(3122), - [anon_sym__Atomic] = ACTIONS(3122), - [anon_sym_mutable] = ACTIONS(3122), - [anon_sym_constexpr] = ACTIONS(3122), - [anon_sym_constinit] = ACTIONS(3122), - [anon_sym_consteval] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_typedef] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2015), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym_input] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym_mutable] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_constinit] = ACTIONS(2017), + [anon_sym_consteval] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2017), + [anon_sym_unsigned] = ACTIONS(2017), + [anon_sym_long] = ACTIONS(2017), + [anon_sym_short] = ACTIONS(2017), + [sym_primitive_type] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_class] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_else] = ACTIONS(2017), + [anon_sym_switch] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_goto] = ACTIONS(2017), + [anon_sym_not] = ACTIONS(2017), + [anon_sym_compl] = ACTIONS(2017), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_sizeof] = ACTIONS(2017), + [sym_number_literal] = ACTIONS(2015), + [anon_sym_L_SQUOTE] = ACTIONS(2015), + [anon_sym_u_SQUOTE] = ACTIONS(2015), + [anon_sym_U_SQUOTE] = ACTIONS(2015), + [anon_sym_u8_SQUOTE] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(2015), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [sym_null] = ACTIONS(2017), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(2017), + [anon_sym_decltype] = ACTIONS(2017), + [anon_sym_virtual] = ACTIONS(2017), + [anon_sym_typename] = ACTIONS(2017), + [anon_sym_template] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_delete] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(2017), + [anon_sym_co_return] = ACTIONS(2017), + [anon_sym_co_yield] = ACTIONS(2017), + [anon_sym_catch] = ACTIONS(2017), + [anon_sym_R_DQUOTE] = ACTIONS(2015), + [anon_sym_LR_DQUOTE] = ACTIONS(2015), + [anon_sym_uR_DQUOTE] = ACTIONS(2015), + [anon_sym_UR_DQUOTE] = ACTIONS(2015), + [anon_sym_u8R_DQUOTE] = ACTIONS(2015), + [anon_sym_co_await] = ACTIONS(2017), + [anon_sym_new] = ACTIONS(2017), + [anon_sym_requires] = ACTIONS(2017), + [sym_this] = ACTIONS(2017), + [sym_nullptr] = ACTIONS(2017), }, [1106] = { - [sym_type_qualifier] = STATE(1121), - [sym__expression] = STATE(3876), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_type_definition_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3130), - [anon_sym_const] = ACTIONS(3122), - [anon_sym_volatile] = ACTIONS(3122), - [anon_sym_restrict] = ACTIONS(3122), - [anon_sym__Atomic] = ACTIONS(3122), - [anon_sym_mutable] = ACTIONS(3122), - [anon_sym_constexpr] = ACTIONS(3122), - [anon_sym_constinit] = ACTIONS(3122), - [anon_sym_consteval] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_identifier] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1999), + [anon_sym_TILDE] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_typedef] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym___attribute__] = ACTIONS(2001), + [anon_sym_COLON_COLON] = ACTIONS(1999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_inline] = ACTIONS(2001), + [anon_sym_thread_local] = ACTIONS(2001), + [anon_sym_input] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [anon_sym_volatile] = ACTIONS(2001), + [anon_sym_restrict] = ACTIONS(2001), + [anon_sym__Atomic] = ACTIONS(2001), + [anon_sym_mutable] = ACTIONS(2001), + [anon_sym_constexpr] = ACTIONS(2001), + [anon_sym_constinit] = ACTIONS(2001), + [anon_sym_consteval] = ACTIONS(2001), + [anon_sym_signed] = ACTIONS(2001), + [anon_sym_unsigned] = ACTIONS(2001), + [anon_sym_long] = ACTIONS(2001), + [anon_sym_short] = ACTIONS(2001), + [sym_primitive_type] = ACTIONS(2001), + [anon_sym_enum] = ACTIONS(2001), + [anon_sym_class] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_union] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_switch] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_goto] = ACTIONS(2001), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_compl] = ACTIONS(2001), + [anon_sym_DASH_DASH] = ACTIONS(1999), + [anon_sym_PLUS_PLUS] = ACTIONS(1999), + [anon_sym_sizeof] = ACTIONS(2001), + [sym_number_literal] = ACTIONS(1999), + [anon_sym_L_SQUOTE] = ACTIONS(1999), + [anon_sym_u_SQUOTE] = ACTIONS(1999), + [anon_sym_U_SQUOTE] = ACTIONS(1999), + [anon_sym_u8_SQUOTE] = ACTIONS(1999), + [anon_sym_SQUOTE] = ACTIONS(1999), + [anon_sym_L_DQUOTE] = ACTIONS(1999), + [anon_sym_u_DQUOTE] = ACTIONS(1999), + [anon_sym_U_DQUOTE] = ACTIONS(1999), + [anon_sym_u8_DQUOTE] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(2001), + [anon_sym_decltype] = ACTIONS(2001), + [anon_sym_virtual] = ACTIONS(2001), + [anon_sym_typename] = ACTIONS(2001), + [anon_sym_template] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_delete] = ACTIONS(2001), + [anon_sym_throw] = ACTIONS(2001), + [anon_sym_co_return] = ACTIONS(2001), + [anon_sym_co_yield] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_R_DQUOTE] = ACTIONS(1999), + [anon_sym_LR_DQUOTE] = ACTIONS(1999), + [anon_sym_uR_DQUOTE] = ACTIONS(1999), + [anon_sym_UR_DQUOTE] = ACTIONS(1999), + [anon_sym_u8R_DQUOTE] = ACTIONS(1999), + [anon_sym_co_await] = ACTIONS(2001), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_requires] = ACTIONS(2001), + [sym_this] = ACTIONS(2001), + [sym_nullptr] = ACTIONS(2001), }, [1107] = { - [sym_identifier] = ACTIONS(2384), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2386), - [anon_sym_TILDE] = ACTIONS(2386), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_AMP] = ACTIONS(2386), - [anon_sym_SEMI] = ACTIONS(2386), - [anon_sym_typedef] = ACTIONS(2384), - [anon_sym_extern] = ACTIONS(2384), - [anon_sym___attribute__] = ACTIONS(2384), - [anon_sym_COLON_COLON] = ACTIONS(2386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2386), - [anon_sym___declspec] = ACTIONS(2384), - [anon_sym_LBRACE] = ACTIONS(2386), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_static] = ACTIONS(2384), - [anon_sym_register] = ACTIONS(2384), - [anon_sym_inline] = ACTIONS(2384), - [anon_sym_thread_local] = ACTIONS(2384), - [anon_sym_const] = ACTIONS(2384), - [anon_sym_volatile] = ACTIONS(2384), - [anon_sym_restrict] = ACTIONS(2384), - [anon_sym__Atomic] = ACTIONS(2384), - [anon_sym_mutable] = ACTIONS(2384), - [anon_sym_constexpr] = ACTIONS(2384), - [anon_sym_constinit] = ACTIONS(2384), - [anon_sym_consteval] = ACTIONS(2384), - [anon_sym_signed] = ACTIONS(2384), - [anon_sym_unsigned] = ACTIONS(2384), - [anon_sym_long] = ACTIONS(2384), - [anon_sym_short] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2384), - [anon_sym_enum] = ACTIONS(2384), - [anon_sym_class] = ACTIONS(2384), - [anon_sym_struct] = ACTIONS(2384), - [anon_sym_union] = ACTIONS(2384), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_else] = ACTIONS(2384), - [anon_sym_switch] = ACTIONS(2384), - [anon_sym_while] = ACTIONS(2384), - [anon_sym_do] = ACTIONS(2384), - [anon_sym_for] = ACTIONS(2384), - [anon_sym_return] = ACTIONS(2384), - [anon_sym_break] = ACTIONS(2384), - [anon_sym_continue] = ACTIONS(2384), - [anon_sym_goto] = ACTIONS(2384), - [anon_sym_not] = ACTIONS(2384), - [anon_sym_compl] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(2384), - [sym_number_literal] = ACTIONS(2386), - [anon_sym_L_SQUOTE] = ACTIONS(2386), - [anon_sym_u_SQUOTE] = ACTIONS(2386), - [anon_sym_U_SQUOTE] = ACTIONS(2386), - [anon_sym_u8_SQUOTE] = ACTIONS(2386), - [anon_sym_SQUOTE] = ACTIONS(2386), - [anon_sym_L_DQUOTE] = ACTIONS(2386), - [anon_sym_u_DQUOTE] = ACTIONS(2386), - [anon_sym_U_DQUOTE] = ACTIONS(2386), - [anon_sym_u8_DQUOTE] = ACTIONS(2386), - [anon_sym_DQUOTE] = ACTIONS(2386), - [sym_true] = ACTIONS(2384), - [sym_false] = ACTIONS(2384), - [sym_null] = ACTIONS(2384), + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2384), - [anon_sym_decltype] = ACTIONS(2384), - [anon_sym_virtual] = ACTIONS(2384), - [anon_sym_typename] = ACTIONS(2384), - [anon_sym_template] = ACTIONS(2384), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_delete] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2384), - [anon_sym_co_return] = ACTIONS(2384), - [anon_sym_co_yield] = ACTIONS(2384), - [anon_sym_catch] = ACTIONS(2384), - [anon_sym_R_DQUOTE] = ACTIONS(2386), - [anon_sym_LR_DQUOTE] = ACTIONS(2386), - [anon_sym_uR_DQUOTE] = ACTIONS(2386), - [anon_sym_UR_DQUOTE] = ACTIONS(2386), - [anon_sym_u8R_DQUOTE] = ACTIONS(2386), - [anon_sym_co_await] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2384), - [anon_sym_requires] = ACTIONS(2384), - [sym_this] = ACTIONS(2384), - [sym_nullptr] = ACTIONS(2384), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, [1108] = { - [sym_type_qualifier] = STATE(1116), - [sym__expression] = STATE(3840), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_type_definition_repeat1] = STATE(1116), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3134), - [anon_sym_const] = ACTIONS(3122), - [anon_sym_volatile] = ACTIONS(3122), - [anon_sym_restrict] = ACTIONS(3122), - [anon_sym__Atomic] = ACTIONS(3122), - [anon_sym_mutable] = ACTIONS(3122), - [anon_sym_constexpr] = ACTIONS(3122), - [anon_sym_constinit] = ACTIONS(3122), - [anon_sym_consteval] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1109] = { - [sym_type_qualifier] = STATE(1118), - [sym__expression] = STATE(3835), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_type_definition_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3122), - [anon_sym_volatile] = ACTIONS(3122), - [anon_sym_restrict] = ACTIONS(3122), - [anon_sym__Atomic] = ACTIONS(3122), - [anon_sym_mutable] = ACTIONS(3122), - [anon_sym_constexpr] = ACTIONS(3122), - [anon_sym_constinit] = ACTIONS(3122), - [anon_sym_consteval] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1110] = { - [sym_type_qualifier] = STATE(2569), - [sym__expression] = STATE(3837), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_type_definition_repeat1] = STATE(2569), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3140), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3142), - [anon_sym_const] = ACTIONS(3122), - [anon_sym_volatile] = ACTIONS(3122), - [anon_sym_restrict] = ACTIONS(3122), - [anon_sym__Atomic] = ACTIONS(3122), - [anon_sym_mutable] = ACTIONS(3122), - [anon_sym_constexpr] = ACTIONS(3122), - [anon_sym_constinit] = ACTIONS(3122), - [anon_sym_consteval] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1111] = { - [sym_type_qualifier] = STATE(2569), - [sym__expression] = STATE(3866), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_type_definition_repeat1] = STATE(2569), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3146), - [anon_sym_const] = ACTIONS(3122), - [anon_sym_volatile] = ACTIONS(3122), - [anon_sym_restrict] = ACTIONS(3122), - [anon_sym__Atomic] = ACTIONS(3122), - [anon_sym_mutable] = ACTIONS(3122), - [anon_sym_constexpr] = ACTIONS(3122), - [anon_sym_constinit] = ACTIONS(3122), - [anon_sym_consteval] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1112] = { - [sym_identifier] = ACTIONS(2329), - [anon_sym_LPAREN2] = ACTIONS(2327), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_AMP] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_typedef] = ACTIONS(2329), - [anon_sym_extern] = ACTIONS(2329), - [anon_sym___attribute__] = ACTIONS(2329), - [anon_sym_COLON_COLON] = ACTIONS(2327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), - [anon_sym___declspec] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_register] = ACTIONS(2329), - [anon_sym_inline] = ACTIONS(2329), - [anon_sym_thread_local] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_volatile] = ACTIONS(2329), - [anon_sym_restrict] = ACTIONS(2329), - [anon_sym__Atomic] = ACTIONS(2329), - [anon_sym_mutable] = ACTIONS(2329), - [anon_sym_constexpr] = ACTIONS(2329), - [anon_sym_constinit] = ACTIONS(2329), - [anon_sym_consteval] = ACTIONS(2329), - [anon_sym_signed] = ACTIONS(2329), - [anon_sym_unsigned] = ACTIONS(2329), - [anon_sym_long] = ACTIONS(2329), - [anon_sym_short] = ACTIONS(2329), - [sym_primitive_type] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), - [anon_sym_class] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2329), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_else] = ACTIONS(2329), - [anon_sym_switch] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_goto] = ACTIONS(2329), - [anon_sym_not] = ACTIONS(2329), - [anon_sym_compl] = ACTIONS(2329), - [anon_sym_DASH_DASH] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2327), - [anon_sym_sizeof] = ACTIONS(2329), - [sym_number_literal] = ACTIONS(2327), - [anon_sym_L_SQUOTE] = ACTIONS(2327), - [anon_sym_u_SQUOTE] = ACTIONS(2327), - [anon_sym_U_SQUOTE] = ACTIONS(2327), - [anon_sym_u8_SQUOTE] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2327), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2329), - [sym_false] = ACTIONS(2329), - [sym_null] = ACTIONS(2329), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2329), - [anon_sym_decltype] = ACTIONS(2329), - [anon_sym_virtual] = ACTIONS(2329), - [anon_sym_typename] = ACTIONS(2329), - [anon_sym_template] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_throw] = ACTIONS(2329), - [anon_sym_co_return] = ACTIONS(2329), - [anon_sym_co_yield] = ACTIONS(2329), - [anon_sym_catch] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2327), - [anon_sym_LR_DQUOTE] = ACTIONS(2327), - [anon_sym_uR_DQUOTE] = ACTIONS(2327), - [anon_sym_UR_DQUOTE] = ACTIONS(2327), - [anon_sym_u8R_DQUOTE] = ACTIONS(2327), - [anon_sym_co_await] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_requires] = ACTIONS(2329), - [sym_this] = ACTIONS(2329), - [sym_nullptr] = ACTIONS(2329), - }, - [1113] = { - [sym_type_qualifier] = STATE(2569), - [sym__expression] = STATE(3829), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_type_definition_repeat1] = STATE(2569), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3122), - [anon_sym_volatile] = ACTIONS(3122), - [anon_sym_restrict] = ACTIONS(3122), - [anon_sym__Atomic] = ACTIONS(3122), - [anon_sym_mutable] = ACTIONS(3122), - [anon_sym_constexpr] = ACTIONS(3122), - [anon_sym_constinit] = ACTIONS(3122), - [anon_sym_consteval] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1114] = { - [sym_type_qualifier] = STATE(2569), - [sym__expression] = STATE(3868), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_type_definition_repeat1] = STATE(2569), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3122), - [anon_sym_volatile] = ACTIONS(3122), - [anon_sym_restrict] = ACTIONS(3122), - [anon_sym__Atomic] = ACTIONS(3122), - [anon_sym_mutable] = ACTIONS(3122), - [anon_sym_constexpr] = ACTIONS(3122), - [anon_sym_constinit] = ACTIONS(3122), - [anon_sym_consteval] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1115] = { - [sym_type_qualifier] = STATE(1114), - [sym__expression] = STATE(3874), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_type_definition_repeat1] = STATE(1114), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3156), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3158), - [anon_sym_const] = ACTIONS(3122), - [anon_sym_volatile] = ACTIONS(3122), - [anon_sym_restrict] = ACTIONS(3122), - [anon_sym__Atomic] = ACTIONS(3122), - [anon_sym_mutable] = ACTIONS(3122), - [anon_sym_constexpr] = ACTIONS(3122), - [anon_sym_constinit] = ACTIONS(3122), - [anon_sym_consteval] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1116] = { - [sym_type_qualifier] = STATE(2569), - [sym__expression] = STATE(3924), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_type_definition_repeat1] = STATE(2569), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3162), - [anon_sym_const] = ACTIONS(3122), - [anon_sym_volatile] = ACTIONS(3122), - [anon_sym_restrict] = ACTIONS(3122), - [anon_sym__Atomic] = ACTIONS(3122), - [anon_sym_mutable] = ACTIONS(3122), - [anon_sym_constexpr] = ACTIONS(3122), - [anon_sym_constinit] = ACTIONS(3122), - [anon_sym_consteval] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1117] = { - [sym_identifier] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2335), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_typedef] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym___attribute__] = ACTIONS(2337), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), - [anon_sym___declspec] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_inline] = ACTIONS(2337), - [anon_sym_thread_local] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_volatile] = ACTIONS(2337), - [anon_sym_restrict] = ACTIONS(2337), - [anon_sym__Atomic] = ACTIONS(2337), - [anon_sym_mutable] = ACTIONS(2337), - [anon_sym_constexpr] = ACTIONS(2337), - [anon_sym_constinit] = ACTIONS(2337), - [anon_sym_consteval] = ACTIONS(2337), - [anon_sym_signed] = ACTIONS(2337), - [anon_sym_unsigned] = ACTIONS(2337), - [anon_sym_long] = ACTIONS(2337), - [anon_sym_short] = ACTIONS(2337), - [sym_primitive_type] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2337), - [anon_sym_union] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_goto] = ACTIONS(2337), - [anon_sym_not] = ACTIONS(2337), - [anon_sym_compl] = ACTIONS(2337), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_sizeof] = ACTIONS(2337), - [sym_number_literal] = ACTIONS(2335), - [anon_sym_L_SQUOTE] = ACTIONS(2335), - [anon_sym_u_SQUOTE] = ACTIONS(2335), - [anon_sym_U_SQUOTE] = ACTIONS(2335), - [anon_sym_u8_SQUOTE] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_L_DQUOTE] = ACTIONS(2335), - [anon_sym_u_DQUOTE] = ACTIONS(2335), - [anon_sym_U_DQUOTE] = ACTIONS(2335), - [anon_sym_u8_DQUOTE] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_true] = ACTIONS(2337), - [sym_false] = ACTIONS(2337), - [sym_null] = ACTIONS(2337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2337), - [anon_sym_decltype] = ACTIONS(2337), - [anon_sym_virtual] = ACTIONS(2337), - [anon_sym_typename] = ACTIONS(2337), - [anon_sym_template] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_delete] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_co_return] = ACTIONS(2337), - [anon_sym_co_yield] = ACTIONS(2337), - [anon_sym_catch] = ACTIONS(2337), - [anon_sym_R_DQUOTE] = ACTIONS(2335), - [anon_sym_LR_DQUOTE] = ACTIONS(2335), - [anon_sym_uR_DQUOTE] = ACTIONS(2335), - [anon_sym_UR_DQUOTE] = ACTIONS(2335), - [anon_sym_u8R_DQUOTE] = ACTIONS(2335), - [anon_sym_co_await] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_requires] = ACTIONS(2337), - [sym_this] = ACTIONS(2337), - [sym_nullptr] = ACTIONS(2337), - }, - [1118] = { - [sym_type_qualifier] = STATE(2569), - [sym__expression] = STATE(3904), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_type_definition_repeat1] = STATE(2569), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3166), - [anon_sym_const] = ACTIONS(3122), - [anon_sym_volatile] = ACTIONS(3122), - [anon_sym_restrict] = ACTIONS(3122), - [anon_sym__Atomic] = ACTIONS(3122), - [anon_sym_mutable] = ACTIONS(3122), - [anon_sym_constexpr] = ACTIONS(3122), - [anon_sym_constinit] = ACTIONS(3122), - [anon_sym_consteval] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1119] = { - [sym_type_qualifier] = STATE(1113), - [sym__expression] = STATE(3978), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_type_definition_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3168), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3170), - [anon_sym_const] = ACTIONS(3122), - [anon_sym_volatile] = ACTIONS(3122), - [anon_sym_restrict] = ACTIONS(3122), - [anon_sym__Atomic] = ACTIONS(3122), - [anon_sym_mutable] = ACTIONS(3122), - [anon_sym_constexpr] = ACTIONS(3122), - [anon_sym_constinit] = ACTIONS(3122), - [anon_sym_consteval] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1120] = { - [sym_type_qualifier] = STATE(1110), - [sym__expression] = STATE(3973), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_type_definition_repeat1] = STATE(1110), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3120), - [anon_sym_const] = ACTIONS(3122), - [anon_sym_volatile] = ACTIONS(3122), - [anon_sym_restrict] = ACTIONS(3122), - [anon_sym__Atomic] = ACTIONS(3122), - [anon_sym_mutable] = ACTIONS(3122), - [anon_sym_constexpr] = ACTIONS(3122), - [anon_sym_constinit] = ACTIONS(3122), - [anon_sym_consteval] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1121] = { - [sym_type_qualifier] = STATE(2569), - [sym__expression] = STATE(3957), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_type_definition_repeat1] = STATE(2569), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3174), - [anon_sym_const] = ACTIONS(3122), - [anon_sym_volatile] = ACTIONS(3122), - [anon_sym_restrict] = ACTIONS(3122), - [anon_sym__Atomic] = ACTIONS(3122), - [anon_sym_mutable] = ACTIONS(3122), - [anon_sym_constexpr] = ACTIONS(3122), - [anon_sym_constinit] = ACTIONS(3122), - [anon_sym_consteval] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1122] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1123] = { - [sym_identifier] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2499), - [anon_sym_PLUS] = ACTIONS(2499), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_typedef] = ACTIONS(2499), - [anon_sym_extern] = ACTIONS(2499), - [anon_sym___attribute__] = ACTIONS(2499), - [anon_sym_COLON_COLON] = ACTIONS(2501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), - [anon_sym___declspec] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2499), - [anon_sym_register] = ACTIONS(2499), - [anon_sym_inline] = ACTIONS(2499), - [anon_sym_thread_local] = ACTIONS(2499), - [anon_sym_const] = ACTIONS(2499), - [anon_sym_volatile] = ACTIONS(2499), - [anon_sym_restrict] = ACTIONS(2499), - [anon_sym__Atomic] = ACTIONS(2499), - [anon_sym_mutable] = ACTIONS(2499), - [anon_sym_constexpr] = ACTIONS(2499), - [anon_sym_constinit] = ACTIONS(2499), - [anon_sym_consteval] = ACTIONS(2499), - [anon_sym_signed] = ACTIONS(2499), - [anon_sym_unsigned] = ACTIONS(2499), - [anon_sym_long] = ACTIONS(2499), - [anon_sym_short] = ACTIONS(2499), - [sym_primitive_type] = ACTIONS(2499), - [anon_sym_enum] = ACTIONS(2499), - [anon_sym_class] = ACTIONS(2499), - [anon_sym_struct] = ACTIONS(2499), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2499), - [anon_sym_else] = ACTIONS(2499), - [anon_sym_switch] = ACTIONS(2499), - [anon_sym_while] = ACTIONS(2499), - [anon_sym_do] = ACTIONS(2499), - [anon_sym_for] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2499), - [anon_sym_break] = ACTIONS(2499), - [anon_sym_continue] = ACTIONS(2499), - [anon_sym_goto] = ACTIONS(2499), - [anon_sym_not] = ACTIONS(2499), - [anon_sym_compl] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2501), - [anon_sym_sizeof] = ACTIONS(2499), - [sym_number_literal] = ACTIONS(2501), - [anon_sym_L_SQUOTE] = ACTIONS(2501), - [anon_sym_u_SQUOTE] = ACTIONS(2501), - [anon_sym_U_SQUOTE] = ACTIONS(2501), - [anon_sym_u8_SQUOTE] = ACTIONS(2501), - [anon_sym_SQUOTE] = ACTIONS(2501), - [anon_sym_L_DQUOTE] = ACTIONS(2501), - [anon_sym_u_DQUOTE] = ACTIONS(2501), - [anon_sym_U_DQUOTE] = ACTIONS(2501), - [anon_sym_u8_DQUOTE] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym_true] = ACTIONS(2499), - [sym_false] = ACTIONS(2499), - [sym_null] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2499), - [anon_sym_decltype] = ACTIONS(2499), - [anon_sym_virtual] = ACTIONS(2499), - [anon_sym_typename] = ACTIONS(2499), - [anon_sym_template] = ACTIONS(2499), - [anon_sym_try] = ACTIONS(2499), - [anon_sym_delete] = ACTIONS(2499), - [anon_sym_throw] = ACTIONS(2499), - [anon_sym_co_return] = ACTIONS(2499), - [anon_sym_co_yield] = ACTIONS(2499), - [anon_sym_R_DQUOTE] = ACTIONS(2501), - [anon_sym_LR_DQUOTE] = ACTIONS(2501), - [anon_sym_uR_DQUOTE] = ACTIONS(2501), - [anon_sym_UR_DQUOTE] = ACTIONS(2501), - [anon_sym_u8R_DQUOTE] = ACTIONS(2501), - [anon_sym_co_await] = ACTIONS(2499), - [anon_sym_new] = ACTIONS(2499), - [anon_sym_requires] = ACTIONS(2499), - [sym_this] = ACTIONS(2499), - [sym_nullptr] = ACTIONS(2499), - }, - [1124] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1125] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1126] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1127] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1128] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1129] = { - [sym_identifier] = ACTIONS(2623), - [anon_sym_LPAREN2] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2623), - [anon_sym_PLUS] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_typedef] = ACTIONS(2623), - [anon_sym_extern] = ACTIONS(2623), - [anon_sym___attribute__] = ACTIONS(2623), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), - [anon_sym___declspec] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_static] = ACTIONS(2623), - [anon_sym_register] = ACTIONS(2623), - [anon_sym_inline] = ACTIONS(2623), - [anon_sym_thread_local] = ACTIONS(2623), - [anon_sym_const] = ACTIONS(2623), - [anon_sym_volatile] = ACTIONS(2623), - [anon_sym_restrict] = ACTIONS(2623), - [anon_sym__Atomic] = ACTIONS(2623), - [anon_sym_mutable] = ACTIONS(2623), - [anon_sym_constexpr] = ACTIONS(2623), - [anon_sym_constinit] = ACTIONS(2623), - [anon_sym_consteval] = ACTIONS(2623), - [anon_sym_signed] = ACTIONS(2623), - [anon_sym_unsigned] = ACTIONS(2623), - [anon_sym_long] = ACTIONS(2623), - [anon_sym_short] = ACTIONS(2623), - [sym_primitive_type] = ACTIONS(2623), - [anon_sym_enum] = ACTIONS(2623), - [anon_sym_class] = ACTIONS(2623), - [anon_sym_struct] = ACTIONS(2623), - [anon_sym_union] = ACTIONS(2623), - [anon_sym_if] = ACTIONS(2623), - [anon_sym_else] = ACTIONS(2623), - [anon_sym_switch] = ACTIONS(2623), - [anon_sym_while] = ACTIONS(2623), - [anon_sym_do] = ACTIONS(2623), - [anon_sym_for] = ACTIONS(2623), - [anon_sym_return] = ACTIONS(2623), - [anon_sym_break] = ACTIONS(2623), - [anon_sym_continue] = ACTIONS(2623), - [anon_sym_goto] = ACTIONS(2623), - [anon_sym_not] = ACTIONS(2623), - [anon_sym_compl] = ACTIONS(2623), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_sizeof] = ACTIONS(2623), - [sym_number_literal] = ACTIONS(2625), - [anon_sym_L_SQUOTE] = ACTIONS(2625), - [anon_sym_u_SQUOTE] = ACTIONS(2625), - [anon_sym_U_SQUOTE] = ACTIONS(2625), - [anon_sym_u8_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_L_DQUOTE] = ACTIONS(2625), - [anon_sym_u_DQUOTE] = ACTIONS(2625), - [anon_sym_U_DQUOTE] = ACTIONS(2625), - [anon_sym_u8_DQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [sym_true] = ACTIONS(2623), - [sym_false] = ACTIONS(2623), - [sym_null] = ACTIONS(2623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2623), - [anon_sym_decltype] = ACTIONS(2623), - [anon_sym_virtual] = ACTIONS(2623), - [anon_sym_typename] = ACTIONS(2623), - [anon_sym_template] = ACTIONS(2623), - [anon_sym_try] = ACTIONS(2623), - [anon_sym_delete] = ACTIONS(2623), - [anon_sym_throw] = ACTIONS(2623), - [anon_sym_co_return] = ACTIONS(2623), - [anon_sym_co_yield] = ACTIONS(2623), - [anon_sym_R_DQUOTE] = ACTIONS(2625), - [anon_sym_LR_DQUOTE] = ACTIONS(2625), - [anon_sym_uR_DQUOTE] = ACTIONS(2625), - [anon_sym_UR_DQUOTE] = ACTIONS(2625), - [anon_sym_u8R_DQUOTE] = ACTIONS(2625), - [anon_sym_co_await] = ACTIONS(2623), - [anon_sym_new] = ACTIONS(2623), - [anon_sym_requires] = ACTIONS(2623), - [sym_this] = ACTIONS(2623), - [sym_nullptr] = ACTIONS(2623), - }, - [1130] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1131] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1132] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1133] = { - [sym_identifier] = ACTIONS(2631), - [anon_sym_LPAREN2] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2631), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_typedef] = ACTIONS(2631), - [anon_sym_extern] = ACTIONS(2631), - [anon_sym___attribute__] = ACTIONS(2631), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), - [anon_sym___declspec] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_register] = ACTIONS(2631), - [anon_sym_inline] = ACTIONS(2631), - [anon_sym_thread_local] = ACTIONS(2631), - [anon_sym_const] = ACTIONS(2631), - [anon_sym_volatile] = ACTIONS(2631), - [anon_sym_restrict] = ACTIONS(2631), - [anon_sym__Atomic] = ACTIONS(2631), - [anon_sym_mutable] = ACTIONS(2631), - [anon_sym_constexpr] = ACTIONS(2631), - [anon_sym_constinit] = ACTIONS(2631), - [anon_sym_consteval] = ACTIONS(2631), - [anon_sym_signed] = ACTIONS(2631), - [anon_sym_unsigned] = ACTIONS(2631), - [anon_sym_long] = ACTIONS(2631), - [anon_sym_short] = ACTIONS(2631), - [sym_primitive_type] = ACTIONS(2631), - [anon_sym_enum] = ACTIONS(2631), - [anon_sym_class] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2631), - [anon_sym_union] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_else] = ACTIONS(2631), - [anon_sym_switch] = ACTIONS(2631), - [anon_sym_while] = ACTIONS(2631), - [anon_sym_do] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_return] = ACTIONS(2631), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_continue] = ACTIONS(2631), - [anon_sym_goto] = ACTIONS(2631), - [anon_sym_not] = ACTIONS(2631), - [anon_sym_compl] = ACTIONS(2631), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_sizeof] = ACTIONS(2631), - [sym_number_literal] = ACTIONS(2633), - [anon_sym_L_SQUOTE] = ACTIONS(2633), - [anon_sym_u_SQUOTE] = ACTIONS(2633), - [anon_sym_U_SQUOTE] = ACTIONS(2633), - [anon_sym_u8_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_L_DQUOTE] = ACTIONS(2633), - [anon_sym_u_DQUOTE] = ACTIONS(2633), - [anon_sym_U_DQUOTE] = ACTIONS(2633), - [anon_sym_u8_DQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [sym_true] = ACTIONS(2631), - [sym_false] = ACTIONS(2631), - [sym_null] = ACTIONS(2631), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2631), - [anon_sym_decltype] = ACTIONS(2631), - [anon_sym_virtual] = ACTIONS(2631), - [anon_sym_typename] = ACTIONS(2631), - [anon_sym_template] = ACTIONS(2631), - [anon_sym_try] = ACTIONS(2631), - [anon_sym_delete] = ACTIONS(2631), - [anon_sym_throw] = ACTIONS(2631), - [anon_sym_co_return] = ACTIONS(2631), - [anon_sym_co_yield] = ACTIONS(2631), - [anon_sym_R_DQUOTE] = ACTIONS(2633), - [anon_sym_LR_DQUOTE] = ACTIONS(2633), - [anon_sym_uR_DQUOTE] = ACTIONS(2633), - [anon_sym_UR_DQUOTE] = ACTIONS(2633), - [anon_sym_u8R_DQUOTE] = ACTIONS(2633), - [anon_sym_co_await] = ACTIONS(2631), - [anon_sym_new] = ACTIONS(2631), - [anon_sym_requires] = ACTIONS(2631), - [sym_this] = ACTIONS(2631), - [sym_nullptr] = ACTIONS(2631), - }, - [1134] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1234), - [sym_compound_requirement] = STATE(1234), - [sym__requirement] = STATE(1234), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1234), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3180), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1135] = { - [sym_identifier] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2635), - [anon_sym_extern] = ACTIONS(2635), - [anon_sym___attribute__] = ACTIONS(2635), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), - [anon_sym___declspec] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_static] = ACTIONS(2635), - [anon_sym_register] = ACTIONS(2635), - [anon_sym_inline] = ACTIONS(2635), - [anon_sym_thread_local] = ACTIONS(2635), - [anon_sym_const] = ACTIONS(2635), - [anon_sym_volatile] = ACTIONS(2635), - [anon_sym_restrict] = ACTIONS(2635), - [anon_sym__Atomic] = ACTIONS(2635), - [anon_sym_mutable] = ACTIONS(2635), - [anon_sym_constexpr] = ACTIONS(2635), - [anon_sym_constinit] = ACTIONS(2635), - [anon_sym_consteval] = ACTIONS(2635), - [anon_sym_signed] = ACTIONS(2635), - [anon_sym_unsigned] = ACTIONS(2635), - [anon_sym_long] = ACTIONS(2635), - [anon_sym_short] = ACTIONS(2635), - [sym_primitive_type] = ACTIONS(2635), - [anon_sym_enum] = ACTIONS(2635), - [anon_sym_class] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2635), - [anon_sym_union] = ACTIONS(2635), - [anon_sym_if] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(2635), - [anon_sym_switch] = ACTIONS(2635), - [anon_sym_while] = ACTIONS(2635), - [anon_sym_do] = ACTIONS(2635), - [anon_sym_for] = ACTIONS(2635), - [anon_sym_return] = ACTIONS(2635), - [anon_sym_break] = ACTIONS(2635), - [anon_sym_continue] = ACTIONS(2635), - [anon_sym_goto] = ACTIONS(2635), - [anon_sym_not] = ACTIONS(2635), - [anon_sym_compl] = ACTIONS(2635), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_sizeof] = ACTIONS(2635), - [sym_number_literal] = ACTIONS(2637), - [anon_sym_L_SQUOTE] = ACTIONS(2637), - [anon_sym_u_SQUOTE] = ACTIONS(2637), - [anon_sym_U_SQUOTE] = ACTIONS(2637), - [anon_sym_u8_SQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_L_DQUOTE] = ACTIONS(2637), - [anon_sym_u_DQUOTE] = ACTIONS(2637), - [anon_sym_U_DQUOTE] = ACTIONS(2637), - [anon_sym_u8_DQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [sym_true] = ACTIONS(2635), - [sym_false] = ACTIONS(2635), - [sym_null] = ACTIONS(2635), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2635), - [anon_sym_decltype] = ACTIONS(2635), - [anon_sym_virtual] = ACTIONS(2635), - [anon_sym_typename] = ACTIONS(2635), - [anon_sym_template] = ACTIONS(2635), - [anon_sym_try] = ACTIONS(2635), - [anon_sym_delete] = ACTIONS(2635), - [anon_sym_throw] = ACTIONS(2635), - [anon_sym_co_return] = ACTIONS(2635), - [anon_sym_co_yield] = ACTIONS(2635), - [anon_sym_R_DQUOTE] = ACTIONS(2637), - [anon_sym_LR_DQUOTE] = ACTIONS(2637), - [anon_sym_uR_DQUOTE] = ACTIONS(2637), - [anon_sym_UR_DQUOTE] = ACTIONS(2637), - [anon_sym_u8R_DQUOTE] = ACTIONS(2637), - [anon_sym_co_await] = ACTIONS(2635), - [anon_sym_new] = ACTIONS(2635), - [anon_sym_requires] = ACTIONS(2635), - [sym_this] = ACTIONS(2635), - [sym_nullptr] = ACTIONS(2635), - }, - [1136] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1137] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1138] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1139] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1140] = { - [sym_identifier] = 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] = ACTIONS(2565), - [anon_sym_SEMI] = ACTIONS(2565), - [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_LBRACE] = ACTIONS(2565), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = 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_else] = ACTIONS(2563), - [anon_sym_switch] = 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), - [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), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2563), - [anon_sym_delete] = ACTIONS(2563), - [anon_sym_throw] = ACTIONS(2563), - [anon_sym_co_return] = ACTIONS(2563), - [anon_sym_co_yield] = ACTIONS(2563), - [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_nullptr] = ACTIONS(2563), - }, - [1141] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1142] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1143] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1144] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1145] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1146] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1147] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1148] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1149] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1150] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1151] = { - [sym_identifier] = ACTIONS(2603), - [anon_sym_LPAREN2] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2603), - [anon_sym_PLUS] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_SEMI] = ACTIONS(2605), - [anon_sym_typedef] = ACTIONS(2603), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym___attribute__] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2605), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), - [anon_sym___declspec] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2603), - [anon_sym_register] = ACTIONS(2603), - [anon_sym_inline] = ACTIONS(2603), - [anon_sym_thread_local] = ACTIONS(2603), - [anon_sym_const] = ACTIONS(2603), - [anon_sym_volatile] = ACTIONS(2603), - [anon_sym_restrict] = ACTIONS(2603), - [anon_sym__Atomic] = ACTIONS(2603), - [anon_sym_mutable] = ACTIONS(2603), - [anon_sym_constexpr] = ACTIONS(2603), - [anon_sym_constinit] = ACTIONS(2603), - [anon_sym_consteval] = ACTIONS(2603), - [anon_sym_signed] = ACTIONS(2603), - [anon_sym_unsigned] = ACTIONS(2603), - [anon_sym_long] = ACTIONS(2603), - [anon_sym_short] = ACTIONS(2603), - [sym_primitive_type] = ACTIONS(2603), - [anon_sym_enum] = ACTIONS(2603), - [anon_sym_class] = ACTIONS(2603), - [anon_sym_struct] = ACTIONS(2603), - [anon_sym_union] = ACTIONS(2603), - [anon_sym_if] = ACTIONS(2603), - [anon_sym_else] = ACTIONS(2603), - [anon_sym_switch] = ACTIONS(2603), - [anon_sym_while] = ACTIONS(2603), - [anon_sym_do] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2603), - [anon_sym_break] = ACTIONS(2603), - [anon_sym_continue] = ACTIONS(2603), - [anon_sym_goto] = ACTIONS(2603), - [anon_sym_not] = ACTIONS(2603), - [anon_sym_compl] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2605), - [anon_sym_PLUS_PLUS] = ACTIONS(2605), - [anon_sym_sizeof] = ACTIONS(2603), - [sym_number_literal] = ACTIONS(2605), - [anon_sym_L_SQUOTE] = ACTIONS(2605), - [anon_sym_u_SQUOTE] = ACTIONS(2605), - [anon_sym_U_SQUOTE] = ACTIONS(2605), - [anon_sym_u8_SQUOTE] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(2605), - [anon_sym_L_DQUOTE] = ACTIONS(2605), - [anon_sym_u_DQUOTE] = ACTIONS(2605), - [anon_sym_U_DQUOTE] = ACTIONS(2605), - [anon_sym_u8_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [sym_true] = ACTIONS(2603), - [sym_false] = ACTIONS(2603), - [sym_null] = ACTIONS(2603), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2603), - [anon_sym_decltype] = ACTIONS(2603), - [anon_sym_virtual] = ACTIONS(2603), - [anon_sym_typename] = ACTIONS(2603), - [anon_sym_template] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2603), - [anon_sym_delete] = ACTIONS(2603), - [anon_sym_throw] = ACTIONS(2603), - [anon_sym_co_return] = ACTIONS(2603), - [anon_sym_co_yield] = ACTIONS(2603), - [anon_sym_R_DQUOTE] = ACTIONS(2605), - [anon_sym_LR_DQUOTE] = ACTIONS(2605), - [anon_sym_uR_DQUOTE] = ACTIONS(2605), - [anon_sym_UR_DQUOTE] = ACTIONS(2605), - [anon_sym_u8R_DQUOTE] = ACTIONS(2605), - [anon_sym_co_await] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2603), - [anon_sym_requires] = ACTIONS(2603), - [sym_this] = ACTIONS(2603), - [sym_nullptr] = ACTIONS(2603), - }, - [1152] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1153] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1154] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1155] = { - [sym_identifier] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2585), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_typedef] = ACTIONS(2583), - [anon_sym_extern] = ACTIONS(2583), - [anon_sym___attribute__] = ACTIONS(2583), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), - [anon_sym___declspec] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_register] = ACTIONS(2583), - [anon_sym_inline] = ACTIONS(2583), - [anon_sym_thread_local] = ACTIONS(2583), - [anon_sym_const] = ACTIONS(2583), - [anon_sym_volatile] = ACTIONS(2583), - [anon_sym_restrict] = ACTIONS(2583), - [anon_sym__Atomic] = ACTIONS(2583), - [anon_sym_mutable] = ACTIONS(2583), - [anon_sym_constexpr] = ACTIONS(2583), - [anon_sym_constinit] = ACTIONS(2583), - [anon_sym_consteval] = ACTIONS(2583), - [anon_sym_signed] = ACTIONS(2583), - [anon_sym_unsigned] = ACTIONS(2583), - [anon_sym_long] = ACTIONS(2583), - [anon_sym_short] = ACTIONS(2583), - [sym_primitive_type] = ACTIONS(2583), - [anon_sym_enum] = ACTIONS(2583), - [anon_sym_class] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2583), - [anon_sym_union] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_else] = ACTIONS(2583), - [anon_sym_switch] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_break] = ACTIONS(2583), - [anon_sym_continue] = ACTIONS(2583), - [anon_sym_goto] = ACTIONS(2583), - [anon_sym_not] = ACTIONS(2583), - [anon_sym_compl] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_sizeof] = ACTIONS(2583), - [sym_number_literal] = ACTIONS(2585), - [anon_sym_L_SQUOTE] = ACTIONS(2585), - [anon_sym_u_SQUOTE] = ACTIONS(2585), - [anon_sym_U_SQUOTE] = ACTIONS(2585), - [anon_sym_u8_SQUOTE] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_L_DQUOTE] = ACTIONS(2585), - [anon_sym_u_DQUOTE] = ACTIONS(2585), - [anon_sym_U_DQUOTE] = ACTIONS(2585), - [anon_sym_u8_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(2585), - [sym_true] = ACTIONS(2583), - [sym_false] = ACTIONS(2583), - [sym_null] = ACTIONS(2583), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2583), - [anon_sym_decltype] = ACTIONS(2583), - [anon_sym_virtual] = ACTIONS(2583), - [anon_sym_typename] = ACTIONS(2583), - [anon_sym_template] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_delete] = ACTIONS(2583), - [anon_sym_throw] = ACTIONS(2583), - [anon_sym_co_return] = ACTIONS(2583), - [anon_sym_co_yield] = ACTIONS(2583), - [anon_sym_R_DQUOTE] = ACTIONS(2585), - [anon_sym_LR_DQUOTE] = ACTIONS(2585), - [anon_sym_uR_DQUOTE] = ACTIONS(2585), - [anon_sym_UR_DQUOTE] = ACTIONS(2585), - [anon_sym_u8R_DQUOTE] = ACTIONS(2585), - [anon_sym_co_await] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_requires] = ACTIONS(2583), - [sym_this] = ACTIONS(2583), - [sym_nullptr] = ACTIONS(2583), - }, - [1156] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1157] = { - [sym_identifier] = ACTIONS(2603), - [anon_sym_LPAREN2] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2603), - [anon_sym_PLUS] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_SEMI] = ACTIONS(2605), - [anon_sym_typedef] = ACTIONS(2603), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym___attribute__] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2605), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), - [anon_sym___declspec] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2603), - [anon_sym_register] = ACTIONS(2603), - [anon_sym_inline] = ACTIONS(2603), - [anon_sym_thread_local] = ACTIONS(2603), - [anon_sym_const] = ACTIONS(2603), - [anon_sym_volatile] = ACTIONS(2603), - [anon_sym_restrict] = ACTIONS(2603), - [anon_sym__Atomic] = ACTIONS(2603), - [anon_sym_mutable] = ACTIONS(2603), - [anon_sym_constexpr] = ACTIONS(2603), - [anon_sym_constinit] = ACTIONS(2603), - [anon_sym_consteval] = ACTIONS(2603), - [anon_sym_signed] = ACTIONS(2603), - [anon_sym_unsigned] = ACTIONS(2603), - [anon_sym_long] = ACTIONS(2603), - [anon_sym_short] = ACTIONS(2603), - [sym_primitive_type] = ACTIONS(2603), - [anon_sym_enum] = ACTIONS(2603), - [anon_sym_class] = ACTIONS(2603), - [anon_sym_struct] = ACTIONS(2603), - [anon_sym_union] = ACTIONS(2603), - [anon_sym_if] = ACTIONS(2603), - [anon_sym_else] = ACTIONS(2603), - [anon_sym_switch] = ACTIONS(2603), - [anon_sym_while] = ACTIONS(2603), - [anon_sym_do] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2603), - [anon_sym_break] = ACTIONS(2603), - [anon_sym_continue] = ACTIONS(2603), - [anon_sym_goto] = ACTIONS(2603), - [anon_sym_not] = ACTIONS(2603), - [anon_sym_compl] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2605), - [anon_sym_PLUS_PLUS] = ACTIONS(2605), - [anon_sym_sizeof] = ACTIONS(2603), - [sym_number_literal] = ACTIONS(2605), - [anon_sym_L_SQUOTE] = ACTIONS(2605), - [anon_sym_u_SQUOTE] = ACTIONS(2605), - [anon_sym_U_SQUOTE] = ACTIONS(2605), - [anon_sym_u8_SQUOTE] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(2605), - [anon_sym_L_DQUOTE] = ACTIONS(2605), - [anon_sym_u_DQUOTE] = ACTIONS(2605), - [anon_sym_U_DQUOTE] = ACTIONS(2605), - [anon_sym_u8_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [sym_true] = ACTIONS(2603), - [sym_false] = ACTIONS(2603), - [sym_null] = ACTIONS(2603), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2603), - [anon_sym_decltype] = ACTIONS(2603), - [anon_sym_virtual] = ACTIONS(2603), - [anon_sym_typename] = ACTIONS(2603), - [anon_sym_template] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2603), - [anon_sym_delete] = ACTIONS(2603), - [anon_sym_throw] = ACTIONS(2603), - [anon_sym_co_return] = ACTIONS(2603), - [anon_sym_co_yield] = ACTIONS(2603), - [anon_sym_R_DQUOTE] = ACTIONS(2605), - [anon_sym_LR_DQUOTE] = ACTIONS(2605), - [anon_sym_uR_DQUOTE] = ACTIONS(2605), - [anon_sym_UR_DQUOTE] = ACTIONS(2605), - [anon_sym_u8R_DQUOTE] = ACTIONS(2605), - [anon_sym_co_await] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2603), - [anon_sym_requires] = ACTIONS(2603), - [sym_this] = ACTIONS(2603), - [sym_nullptr] = ACTIONS(2603), - }, - [1158] = { - [sym_identifier] = ACTIONS(2577), - [anon_sym_LPAREN2] = ACTIONS(2579), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_typedef] = ACTIONS(2577), - [anon_sym_extern] = ACTIONS(2577), - [anon_sym___attribute__] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2579), - [anon_sym___declspec] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2577), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_register] = ACTIONS(2577), - [anon_sym_inline] = ACTIONS(2577), - [anon_sym_thread_local] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_volatile] = ACTIONS(2577), - [anon_sym_restrict] = ACTIONS(2577), - [anon_sym__Atomic] = ACTIONS(2577), - [anon_sym_mutable] = ACTIONS(2577), - [anon_sym_constexpr] = ACTIONS(2577), - [anon_sym_constinit] = ACTIONS(2577), - [anon_sym_consteval] = ACTIONS(2577), - [anon_sym_signed] = ACTIONS(2577), - [anon_sym_unsigned] = ACTIONS(2577), - [anon_sym_long] = ACTIONS(2577), - [anon_sym_short] = ACTIONS(2577), - [sym_primitive_type] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_struct] = ACTIONS(2577), - [anon_sym_union] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_else] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_goto] = ACTIONS(2577), - [anon_sym_not] = ACTIONS(2577), - [anon_sym_compl] = ACTIONS(2577), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_sizeof] = ACTIONS(2577), - [sym_number_literal] = ACTIONS(2579), - [anon_sym_L_SQUOTE] = ACTIONS(2579), - [anon_sym_u_SQUOTE] = ACTIONS(2579), - [anon_sym_U_SQUOTE] = ACTIONS(2579), - [anon_sym_u8_SQUOTE] = ACTIONS(2579), - [anon_sym_SQUOTE] = ACTIONS(2579), - [anon_sym_L_DQUOTE] = ACTIONS(2579), - [anon_sym_u_DQUOTE] = ACTIONS(2579), - [anon_sym_U_DQUOTE] = ACTIONS(2579), - [anon_sym_u8_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym_true] = ACTIONS(2577), - [sym_false] = ACTIONS(2577), - [sym_null] = ACTIONS(2577), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2577), - [anon_sym_decltype] = ACTIONS(2577), - [anon_sym_virtual] = ACTIONS(2577), - [anon_sym_typename] = ACTIONS(2577), - [anon_sym_template] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_delete] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_co_return] = ACTIONS(2577), - [anon_sym_co_yield] = ACTIONS(2577), - [anon_sym_R_DQUOTE] = ACTIONS(2579), - [anon_sym_LR_DQUOTE] = ACTIONS(2579), - [anon_sym_uR_DQUOTE] = ACTIONS(2579), - [anon_sym_UR_DQUOTE] = ACTIONS(2579), - [anon_sym_u8R_DQUOTE] = ACTIONS(2579), - [anon_sym_co_await] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2577), - [sym_this] = ACTIONS(2577), - [sym_nullptr] = ACTIONS(2577), - }, - [1159] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1160] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1161] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1162] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1163] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1164] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1165] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1166] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1167] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1168] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1169] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1170] = { - [sym_identifier] = ACTIONS(2643), - [anon_sym_LPAREN2] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_typedef] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym___attribute__] = ACTIONS(2643), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), - [anon_sym___declspec] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_register] = ACTIONS(2643), - [anon_sym_inline] = ACTIONS(2643), - [anon_sym_thread_local] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_volatile] = ACTIONS(2643), - [anon_sym_restrict] = ACTIONS(2643), - [anon_sym__Atomic] = ACTIONS(2643), - [anon_sym_mutable] = ACTIONS(2643), - [anon_sym_constexpr] = ACTIONS(2643), - [anon_sym_constinit] = ACTIONS(2643), - [anon_sym_consteval] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2643), - [anon_sym_unsigned] = ACTIONS(2643), - [anon_sym_long] = ACTIONS(2643), - [anon_sym_short] = ACTIONS(2643), - [sym_primitive_type] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_switch] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym_not] = ACTIONS(2643), - [anon_sym_compl] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2643), - [sym_number_literal] = ACTIONS(2645), - [anon_sym_L_SQUOTE] = ACTIONS(2645), - [anon_sym_u_SQUOTE] = ACTIONS(2645), - [anon_sym_U_SQUOTE] = ACTIONS(2645), - [anon_sym_u8_SQUOTE] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2645), - [anon_sym_L_DQUOTE] = ACTIONS(2645), - [anon_sym_u_DQUOTE] = ACTIONS(2645), - [anon_sym_U_DQUOTE] = ACTIONS(2645), - [anon_sym_u8_DQUOTE] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2645), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_null] = ACTIONS(2643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2643), - [anon_sym_decltype] = ACTIONS(2643), - [anon_sym_virtual] = ACTIONS(2643), - [anon_sym_typename] = ACTIONS(2643), - [anon_sym_template] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2643), - [anon_sym_delete] = ACTIONS(2643), - [anon_sym_throw] = ACTIONS(2643), - [anon_sym_co_return] = ACTIONS(2643), - [anon_sym_co_yield] = ACTIONS(2643), - [anon_sym_R_DQUOTE] = ACTIONS(2645), - [anon_sym_LR_DQUOTE] = ACTIONS(2645), - [anon_sym_uR_DQUOTE] = ACTIONS(2645), - [anon_sym_UR_DQUOTE] = ACTIONS(2645), - [anon_sym_u8R_DQUOTE] = ACTIONS(2645), - [anon_sym_co_await] = ACTIONS(2643), - [anon_sym_new] = ACTIONS(2643), - [anon_sym_requires] = ACTIONS(2643), - [sym_this] = ACTIONS(2643), - [sym_nullptr] = ACTIONS(2643), - }, - [1171] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1172] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1173] = { - [sym_identifier] = ACTIONS(2615), - [anon_sym_LPAREN2] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2615), - [anon_sym_PLUS] = ACTIONS(2615), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_typedef] = ACTIONS(2615), - [anon_sym_extern] = ACTIONS(2615), - [anon_sym___attribute__] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), - [anon_sym___declspec] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_static] = ACTIONS(2615), - [anon_sym_register] = ACTIONS(2615), - [anon_sym_inline] = ACTIONS(2615), - [anon_sym_thread_local] = ACTIONS(2615), - [anon_sym_const] = ACTIONS(2615), - [anon_sym_volatile] = ACTIONS(2615), - [anon_sym_restrict] = ACTIONS(2615), - [anon_sym__Atomic] = ACTIONS(2615), - [anon_sym_mutable] = ACTIONS(2615), - [anon_sym_constexpr] = ACTIONS(2615), - [anon_sym_constinit] = ACTIONS(2615), - [anon_sym_consteval] = ACTIONS(2615), - [anon_sym_signed] = ACTIONS(2615), - [anon_sym_unsigned] = ACTIONS(2615), - [anon_sym_long] = ACTIONS(2615), - [anon_sym_short] = ACTIONS(2615), - [sym_primitive_type] = ACTIONS(2615), - [anon_sym_enum] = ACTIONS(2615), - [anon_sym_class] = ACTIONS(2615), - [anon_sym_struct] = ACTIONS(2615), - [anon_sym_union] = ACTIONS(2615), - [anon_sym_if] = ACTIONS(2615), - [anon_sym_else] = ACTIONS(2615), - [anon_sym_switch] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2615), - [anon_sym_do] = ACTIONS(2615), - [anon_sym_for] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_goto] = ACTIONS(2615), - [anon_sym_not] = ACTIONS(2615), - [anon_sym_compl] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_sizeof] = ACTIONS(2615), - [sym_number_literal] = ACTIONS(2617), - [anon_sym_L_SQUOTE] = ACTIONS(2617), - [anon_sym_u_SQUOTE] = ACTIONS(2617), - [anon_sym_U_SQUOTE] = ACTIONS(2617), - [anon_sym_u8_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_L_DQUOTE] = ACTIONS(2617), - [anon_sym_u_DQUOTE] = ACTIONS(2617), - [anon_sym_U_DQUOTE] = ACTIONS(2617), - [anon_sym_u8_DQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [sym_true] = ACTIONS(2615), - [sym_false] = ACTIONS(2615), - [sym_null] = ACTIONS(2615), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2615), - [anon_sym_decltype] = ACTIONS(2615), - [anon_sym_virtual] = ACTIONS(2615), - [anon_sym_typename] = ACTIONS(2615), - [anon_sym_template] = ACTIONS(2615), - [anon_sym_try] = ACTIONS(2615), - [anon_sym_delete] = ACTIONS(2615), - [anon_sym_throw] = ACTIONS(2615), - [anon_sym_co_return] = ACTIONS(2615), - [anon_sym_co_yield] = ACTIONS(2615), - [anon_sym_R_DQUOTE] = ACTIONS(2617), - [anon_sym_LR_DQUOTE] = ACTIONS(2617), - [anon_sym_uR_DQUOTE] = ACTIONS(2617), - [anon_sym_UR_DQUOTE] = ACTIONS(2617), - [anon_sym_u8R_DQUOTE] = ACTIONS(2617), - [anon_sym_co_await] = ACTIONS(2615), - [anon_sym_new] = ACTIONS(2615), - [anon_sym_requires] = ACTIONS(2615), - [sym_this] = ACTIONS(2615), - [sym_nullptr] = ACTIONS(2615), - }, - [1174] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1175] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1176] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1177] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1178] = { - [sym_identifier] = ACTIONS(2465), - [anon_sym_LPAREN2] = ACTIONS(2467), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2467), - [anon_sym_AMP] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_typedef] = ACTIONS(2465), - [anon_sym_extern] = ACTIONS(2465), - [anon_sym___attribute__] = ACTIONS(2465), - [anon_sym_COLON_COLON] = ACTIONS(2467), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2467), - [anon_sym___declspec] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_static] = ACTIONS(2465), - [anon_sym_register] = ACTIONS(2465), - [anon_sym_inline] = ACTIONS(2465), - [anon_sym_thread_local] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_volatile] = ACTIONS(2465), - [anon_sym_restrict] = ACTIONS(2465), - [anon_sym__Atomic] = ACTIONS(2465), - [anon_sym_mutable] = ACTIONS(2465), - [anon_sym_constexpr] = ACTIONS(2465), - [anon_sym_constinit] = ACTIONS(2465), - [anon_sym_consteval] = ACTIONS(2465), - [anon_sym_signed] = ACTIONS(2465), - [anon_sym_unsigned] = ACTIONS(2465), - [anon_sym_long] = ACTIONS(2465), - [anon_sym_short] = ACTIONS(2465), - [sym_primitive_type] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_class] = ACTIONS(2465), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_union] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_switch] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_not] = ACTIONS(2465), - [anon_sym_compl] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2467), - [anon_sym_PLUS_PLUS] = ACTIONS(2467), - [anon_sym_sizeof] = ACTIONS(2465), - [sym_number_literal] = ACTIONS(2467), - [anon_sym_L_SQUOTE] = ACTIONS(2467), - [anon_sym_u_SQUOTE] = ACTIONS(2467), - [anon_sym_U_SQUOTE] = ACTIONS(2467), - [anon_sym_u8_SQUOTE] = ACTIONS(2467), - [anon_sym_SQUOTE] = ACTIONS(2467), - [anon_sym_L_DQUOTE] = ACTIONS(2467), - [anon_sym_u_DQUOTE] = ACTIONS(2467), - [anon_sym_U_DQUOTE] = ACTIONS(2467), - [anon_sym_u8_DQUOTE] = ACTIONS(2467), - [anon_sym_DQUOTE] = ACTIONS(2467), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_null] = ACTIONS(2465), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2465), - [anon_sym_decltype] = ACTIONS(2465), - [anon_sym_virtual] = ACTIONS(2465), - [anon_sym_typename] = ACTIONS(2465), - [anon_sym_template] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_delete] = ACTIONS(2465), - [anon_sym_throw] = ACTIONS(2465), - [anon_sym_co_return] = ACTIONS(2465), - [anon_sym_co_yield] = ACTIONS(2465), - [anon_sym_R_DQUOTE] = ACTIONS(2467), - [anon_sym_LR_DQUOTE] = ACTIONS(2467), - [anon_sym_uR_DQUOTE] = ACTIONS(2467), - [anon_sym_UR_DQUOTE] = ACTIONS(2467), - [anon_sym_u8R_DQUOTE] = ACTIONS(2467), - [anon_sym_co_await] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_requires] = ACTIONS(2465), - [sym_this] = ACTIONS(2465), - [sym_nullptr] = ACTIONS(2465), - }, - [1179] = { - [sym_identifier] = ACTIONS(2469), - [anon_sym_LPAREN2] = ACTIONS(2471), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_PLUS] = ACTIONS(2469), - [anon_sym_STAR] = ACTIONS(2471), - [anon_sym_AMP] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_typedef] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(2469), - [anon_sym___attribute__] = ACTIONS(2469), - [anon_sym_COLON_COLON] = ACTIONS(2471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2471), - [anon_sym___declspec] = ACTIONS(2469), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_static] = ACTIONS(2469), - [anon_sym_register] = ACTIONS(2469), - [anon_sym_inline] = ACTIONS(2469), - [anon_sym_thread_local] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [anon_sym_volatile] = ACTIONS(2469), - [anon_sym_restrict] = ACTIONS(2469), - [anon_sym__Atomic] = ACTIONS(2469), - [anon_sym_mutable] = ACTIONS(2469), - [anon_sym_constexpr] = ACTIONS(2469), - [anon_sym_constinit] = ACTIONS(2469), - [anon_sym_consteval] = ACTIONS(2469), - [anon_sym_signed] = ACTIONS(2469), - [anon_sym_unsigned] = ACTIONS(2469), - [anon_sym_long] = ACTIONS(2469), - [anon_sym_short] = ACTIONS(2469), - [sym_primitive_type] = ACTIONS(2469), - [anon_sym_enum] = ACTIONS(2469), - [anon_sym_class] = ACTIONS(2469), - [anon_sym_struct] = ACTIONS(2469), - [anon_sym_union] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_switch] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_goto] = ACTIONS(2469), - [anon_sym_not] = ACTIONS(2469), - [anon_sym_compl] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2471), - [anon_sym_sizeof] = ACTIONS(2469), - [sym_number_literal] = ACTIONS(2471), - [anon_sym_L_SQUOTE] = ACTIONS(2471), - [anon_sym_u_SQUOTE] = ACTIONS(2471), - [anon_sym_U_SQUOTE] = ACTIONS(2471), - [anon_sym_u8_SQUOTE] = ACTIONS(2471), - [anon_sym_SQUOTE] = ACTIONS(2471), - [anon_sym_L_DQUOTE] = ACTIONS(2471), - [anon_sym_u_DQUOTE] = ACTIONS(2471), - [anon_sym_U_DQUOTE] = ACTIONS(2471), - [anon_sym_u8_DQUOTE] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(2471), - [sym_true] = ACTIONS(2469), - [sym_false] = ACTIONS(2469), - [sym_null] = ACTIONS(2469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2469), - [anon_sym_decltype] = ACTIONS(2469), - [anon_sym_virtual] = ACTIONS(2469), - [anon_sym_typename] = ACTIONS(2469), - [anon_sym_template] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_delete] = ACTIONS(2469), - [anon_sym_throw] = ACTIONS(2469), - [anon_sym_co_return] = ACTIONS(2469), - [anon_sym_co_yield] = ACTIONS(2469), - [anon_sym_R_DQUOTE] = ACTIONS(2471), - [anon_sym_LR_DQUOTE] = ACTIONS(2471), - [anon_sym_uR_DQUOTE] = ACTIONS(2471), - [anon_sym_UR_DQUOTE] = ACTIONS(2471), - [anon_sym_u8R_DQUOTE] = ACTIONS(2471), - [anon_sym_co_await] = ACTIONS(2469), - [anon_sym_new] = ACTIONS(2469), - [anon_sym_requires] = ACTIONS(2469), - [sym_this] = ACTIONS(2469), - [sym_nullptr] = ACTIONS(2469), - }, - [1180] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1181] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1182] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1183] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1184] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1185] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1186] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1187] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1188] = { [sym_identifier] = ACTIONS(2475), [anon_sym_LPAREN2] = ACTIONS(2477), [anon_sym_BANG] = ACTIONS(2477), @@ -170083,6 +163793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2475), [anon_sym_inline] = ACTIONS(2475), [anon_sym_thread_local] = ACTIONS(2475), + [anon_sym_input] = ACTIONS(2475), [anon_sym_const] = ACTIONS(2475), [anon_sym_volatile] = ACTIONS(2475), [anon_sym_restrict] = ACTIONS(2475), @@ -170151,997 +163862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2475), [sym_nullptr] = ACTIONS(2475), }, - [1189] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1190] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1191] = { - [sym_identifier] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_typedef] = ACTIONS(2479), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym___attribute__] = ACTIONS(2479), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), - [anon_sym___declspec] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_register] = ACTIONS(2479), - [anon_sym_inline] = ACTIONS(2479), - [anon_sym_thread_local] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_volatile] = ACTIONS(2479), - [anon_sym_restrict] = ACTIONS(2479), - [anon_sym__Atomic] = ACTIONS(2479), - [anon_sym_mutable] = ACTIONS(2479), - [anon_sym_constexpr] = ACTIONS(2479), - [anon_sym_constinit] = ACTIONS(2479), - [anon_sym_consteval] = ACTIONS(2479), - [anon_sym_signed] = ACTIONS(2479), - [anon_sym_unsigned] = ACTIONS(2479), - [anon_sym_long] = ACTIONS(2479), - [anon_sym_short] = ACTIONS(2479), - [sym_primitive_type] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_class] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2479), - [anon_sym_union] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_switch] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_goto] = ACTIONS(2479), - [anon_sym_not] = ACTIONS(2479), - [anon_sym_compl] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_sizeof] = ACTIONS(2479), - [sym_number_literal] = ACTIONS(2481), - [anon_sym_L_SQUOTE] = ACTIONS(2481), - [anon_sym_u_SQUOTE] = ACTIONS(2481), - [anon_sym_U_SQUOTE] = ACTIONS(2481), - [anon_sym_u8_SQUOTE] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_L_DQUOTE] = ACTIONS(2481), - [anon_sym_u_DQUOTE] = ACTIONS(2481), - [anon_sym_U_DQUOTE] = ACTIONS(2481), - [anon_sym_u8_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(2481), - [sym_true] = ACTIONS(2479), - [sym_false] = ACTIONS(2479), - [sym_null] = ACTIONS(2479), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2479), - [anon_sym_decltype] = ACTIONS(2479), - [anon_sym_virtual] = ACTIONS(2479), - [anon_sym_typename] = ACTIONS(2479), - [anon_sym_template] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_delete] = ACTIONS(2479), - [anon_sym_throw] = ACTIONS(2479), - [anon_sym_co_return] = ACTIONS(2479), - [anon_sym_co_yield] = ACTIONS(2479), - [anon_sym_R_DQUOTE] = ACTIONS(2481), - [anon_sym_LR_DQUOTE] = ACTIONS(2481), - [anon_sym_uR_DQUOTE] = ACTIONS(2481), - [anon_sym_UR_DQUOTE] = ACTIONS(2481), - [anon_sym_u8R_DQUOTE] = ACTIONS(2481), - [anon_sym_co_await] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_requires] = ACTIONS(2479), - [sym_this] = ACTIONS(2479), - [sym_nullptr] = ACTIONS(2479), - }, - [1192] = { - [sym_identifier] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym_not] = ACTIONS(2483), - [anon_sym_compl] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_sizeof] = ACTIONS(2483), - [sym_number_literal] = ACTIONS(2485), - [anon_sym_L_SQUOTE] = ACTIONS(2485), - [anon_sym_u_SQUOTE] = ACTIONS(2485), - [anon_sym_U_SQUOTE] = ACTIONS(2485), - [anon_sym_u8_SQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_L_DQUOTE] = ACTIONS(2485), - [anon_sym_u_DQUOTE] = ACTIONS(2485), - [anon_sym_U_DQUOTE] = ACTIONS(2485), - [anon_sym_u8_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [sym_null] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_co_return] = ACTIONS(2483), - [anon_sym_co_yield] = ACTIONS(2483), - [anon_sym_R_DQUOTE] = ACTIONS(2485), - [anon_sym_LR_DQUOTE] = ACTIONS(2485), - [anon_sym_uR_DQUOTE] = ACTIONS(2485), - [anon_sym_UR_DQUOTE] = ACTIONS(2485), - [anon_sym_u8R_DQUOTE] = ACTIONS(2485), - [anon_sym_co_await] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_requires] = ACTIONS(2483), - [sym_this] = ACTIONS(2483), - [sym_nullptr] = ACTIONS(2483), - }, - [1193] = { - [sym_identifier] = ACTIONS(2487), - [anon_sym_LPAREN2] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_SEMI] = ACTIONS(2489), - [anon_sym_typedef] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym___attribute__] = ACTIONS(2487), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), - [anon_sym___declspec] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_register] = ACTIONS(2487), - [anon_sym_inline] = ACTIONS(2487), - [anon_sym_thread_local] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_volatile] = ACTIONS(2487), - [anon_sym_restrict] = ACTIONS(2487), - [anon_sym__Atomic] = ACTIONS(2487), - [anon_sym_mutable] = ACTIONS(2487), - [anon_sym_constexpr] = ACTIONS(2487), - [anon_sym_constinit] = ACTIONS(2487), - [anon_sym_consteval] = ACTIONS(2487), - [anon_sym_signed] = ACTIONS(2487), - [anon_sym_unsigned] = ACTIONS(2487), - [anon_sym_long] = ACTIONS(2487), - [anon_sym_short] = ACTIONS(2487), - [sym_primitive_type] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(2487), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_switch] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_goto] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2489), - [anon_sym_PLUS_PLUS] = ACTIONS(2489), - [anon_sym_sizeof] = ACTIONS(2487), - [sym_number_literal] = ACTIONS(2489), - [anon_sym_L_SQUOTE] = ACTIONS(2489), - [anon_sym_u_SQUOTE] = ACTIONS(2489), - [anon_sym_U_SQUOTE] = ACTIONS(2489), - [anon_sym_u8_SQUOTE] = ACTIONS(2489), - [anon_sym_SQUOTE] = ACTIONS(2489), - [anon_sym_L_DQUOTE] = ACTIONS(2489), - [anon_sym_u_DQUOTE] = ACTIONS(2489), - [anon_sym_U_DQUOTE] = ACTIONS(2489), - [anon_sym_u8_DQUOTE] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_null] = ACTIONS(2487), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2487), - [anon_sym_decltype] = ACTIONS(2487), - [anon_sym_virtual] = ACTIONS(2487), - [anon_sym_typename] = ACTIONS(2487), - [anon_sym_template] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_delete] = ACTIONS(2487), - [anon_sym_throw] = ACTIONS(2487), - [anon_sym_co_return] = ACTIONS(2487), - [anon_sym_co_yield] = ACTIONS(2487), - [anon_sym_R_DQUOTE] = ACTIONS(2489), - [anon_sym_LR_DQUOTE] = ACTIONS(2489), - [anon_sym_uR_DQUOTE] = ACTIONS(2489), - [anon_sym_UR_DQUOTE] = ACTIONS(2489), - [anon_sym_u8R_DQUOTE] = ACTIONS(2489), - [anon_sym_co_await] = ACTIONS(2487), - [anon_sym_new] = ACTIONS(2487), - [anon_sym_requires] = ACTIONS(2487), - [sym_this] = ACTIONS(2487), - [sym_nullptr] = ACTIONS(2487), - }, - [1194] = { - [sym_identifier] = ACTIONS(2491), - [anon_sym_LPAREN2] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_AMP] = ACTIONS(2493), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_typedef] = ACTIONS(2491), - [anon_sym_extern] = ACTIONS(2491), - [anon_sym___attribute__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), - [anon_sym___declspec] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2491), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_register] = ACTIONS(2491), - [anon_sym_inline] = ACTIONS(2491), - [anon_sym_thread_local] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [anon_sym_volatile] = ACTIONS(2491), - [anon_sym_restrict] = ACTIONS(2491), - [anon_sym__Atomic] = ACTIONS(2491), - [anon_sym_mutable] = ACTIONS(2491), - [anon_sym_constexpr] = ACTIONS(2491), - [anon_sym_constinit] = ACTIONS(2491), - [anon_sym_consteval] = ACTIONS(2491), - [anon_sym_signed] = ACTIONS(2491), - [anon_sym_unsigned] = ACTIONS(2491), - [anon_sym_long] = ACTIONS(2491), - [anon_sym_short] = ACTIONS(2491), - [sym_primitive_type] = ACTIONS(2491), - [anon_sym_enum] = ACTIONS(2491), - [anon_sym_class] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2491), - [anon_sym_union] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_else] = ACTIONS(2491), - [anon_sym_switch] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_do] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_goto] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(2493), - [anon_sym_PLUS_PLUS] = ACTIONS(2493), - [anon_sym_sizeof] = ACTIONS(2491), - [sym_number_literal] = ACTIONS(2493), - [anon_sym_L_SQUOTE] = ACTIONS(2493), - [anon_sym_u_SQUOTE] = ACTIONS(2493), - [anon_sym_U_SQUOTE] = ACTIONS(2493), - [anon_sym_u8_SQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_L_DQUOTE] = ACTIONS(2493), - [anon_sym_u_DQUOTE] = ACTIONS(2493), - [anon_sym_U_DQUOTE] = ACTIONS(2493), - [anon_sym_u8_DQUOTE] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym_true] = ACTIONS(2491), - [sym_false] = ACTIONS(2491), - [sym_null] = ACTIONS(2491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2491), - [anon_sym_decltype] = ACTIONS(2491), - [anon_sym_virtual] = ACTIONS(2491), - [anon_sym_typename] = ACTIONS(2491), - [anon_sym_template] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2491), - [anon_sym_delete] = ACTIONS(2491), - [anon_sym_throw] = ACTIONS(2491), - [anon_sym_co_return] = ACTIONS(2491), - [anon_sym_co_yield] = ACTIONS(2491), - [anon_sym_R_DQUOTE] = ACTIONS(2493), - [anon_sym_LR_DQUOTE] = ACTIONS(2493), - [anon_sym_uR_DQUOTE] = ACTIONS(2493), - [anon_sym_UR_DQUOTE] = ACTIONS(2493), - [anon_sym_u8R_DQUOTE] = ACTIONS(2493), - [anon_sym_co_await] = ACTIONS(2491), - [anon_sym_new] = ACTIONS(2491), - [anon_sym_requires] = ACTIONS(2491), - [sym_this] = ACTIONS(2491), - [sym_nullptr] = ACTIONS(2491), - }, - [1195] = { - [sym_identifier] = ACTIONS(2619), - [anon_sym_LPAREN2] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2619), - [anon_sym_PLUS] = ACTIONS(2619), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_typedef] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym___attribute__] = ACTIONS(2619), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), - [anon_sym___declspec] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_register] = ACTIONS(2619), - [anon_sym_inline] = ACTIONS(2619), - [anon_sym_thread_local] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_volatile] = ACTIONS(2619), - [anon_sym_restrict] = ACTIONS(2619), - [anon_sym__Atomic] = ACTIONS(2619), - [anon_sym_mutable] = ACTIONS(2619), - [anon_sym_constexpr] = ACTIONS(2619), - [anon_sym_constinit] = ACTIONS(2619), - [anon_sym_consteval] = ACTIONS(2619), - [anon_sym_signed] = ACTIONS(2619), - [anon_sym_unsigned] = ACTIONS(2619), - [anon_sym_long] = ACTIONS(2619), - [anon_sym_short] = ACTIONS(2619), - [sym_primitive_type] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_class] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [anon_sym_if] = ACTIONS(2619), - [anon_sym_else] = ACTIONS(2619), - [anon_sym_switch] = ACTIONS(2619), - [anon_sym_while] = ACTIONS(2619), - [anon_sym_do] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2619), - [anon_sym_return] = ACTIONS(2619), - [anon_sym_break] = ACTIONS(2619), - [anon_sym_continue] = ACTIONS(2619), - [anon_sym_goto] = ACTIONS(2619), - [anon_sym_not] = ACTIONS(2619), - [anon_sym_compl] = ACTIONS(2619), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_sizeof] = ACTIONS(2619), - [sym_number_literal] = ACTIONS(2621), - [anon_sym_L_SQUOTE] = ACTIONS(2621), - [anon_sym_u_SQUOTE] = ACTIONS(2621), - [anon_sym_U_SQUOTE] = ACTIONS(2621), - [anon_sym_u8_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_L_DQUOTE] = ACTIONS(2621), - [anon_sym_u_DQUOTE] = ACTIONS(2621), - [anon_sym_U_DQUOTE] = ACTIONS(2621), - [anon_sym_u8_DQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [sym_true] = ACTIONS(2619), - [sym_false] = ACTIONS(2619), - [sym_null] = ACTIONS(2619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2619), - [anon_sym_decltype] = ACTIONS(2619), - [anon_sym_virtual] = ACTIONS(2619), - [anon_sym_typename] = ACTIONS(2619), - [anon_sym_template] = ACTIONS(2619), - [anon_sym_try] = ACTIONS(2619), - [anon_sym_delete] = ACTIONS(2619), - [anon_sym_throw] = ACTIONS(2619), - [anon_sym_co_return] = ACTIONS(2619), - [anon_sym_co_yield] = ACTIONS(2619), - [anon_sym_R_DQUOTE] = ACTIONS(2621), - [anon_sym_LR_DQUOTE] = ACTIONS(2621), - [anon_sym_uR_DQUOTE] = ACTIONS(2621), - [anon_sym_UR_DQUOTE] = ACTIONS(2621), - [anon_sym_u8R_DQUOTE] = ACTIONS(2621), - [anon_sym_co_await] = ACTIONS(2619), - [anon_sym_new] = ACTIONS(2619), - [anon_sym_requires] = ACTIONS(2619), - [sym_this] = ACTIONS(2619), - [sym_nullptr] = ACTIONS(2619), - }, - [1196] = { - [sym_identifier] = ACTIONS(2495), - [anon_sym_LPAREN2] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2495), - [anon_sym_PLUS] = ACTIONS(2495), - [anon_sym_STAR] = ACTIONS(2497), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_SEMI] = ACTIONS(2497), - [anon_sym_typedef] = ACTIONS(2495), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym___attribute__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), - [anon_sym___declspec] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2495), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_register] = ACTIONS(2495), - [anon_sym_inline] = ACTIONS(2495), - [anon_sym_thread_local] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_volatile] = ACTIONS(2495), - [anon_sym_restrict] = ACTIONS(2495), - [anon_sym__Atomic] = ACTIONS(2495), - [anon_sym_mutable] = ACTIONS(2495), - [anon_sym_constexpr] = ACTIONS(2495), - [anon_sym_constinit] = ACTIONS(2495), - [anon_sym_consteval] = ACTIONS(2495), - [anon_sym_signed] = ACTIONS(2495), - [anon_sym_unsigned] = ACTIONS(2495), - [anon_sym_long] = ACTIONS(2495), - [anon_sym_short] = ACTIONS(2495), - [sym_primitive_type] = ACTIONS(2495), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_if] = ACTIONS(2495), - [anon_sym_else] = ACTIONS(2495), - [anon_sym_switch] = ACTIONS(2495), - [anon_sym_while] = ACTIONS(2495), - [anon_sym_do] = ACTIONS(2495), - [anon_sym_for] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2495), - [anon_sym_break] = ACTIONS(2495), - [anon_sym_continue] = ACTIONS(2495), - [anon_sym_goto] = ACTIONS(2495), - [anon_sym_not] = ACTIONS(2495), - [anon_sym_compl] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2497), - [anon_sym_sizeof] = ACTIONS(2495), - [sym_number_literal] = ACTIONS(2497), - [anon_sym_L_SQUOTE] = ACTIONS(2497), - [anon_sym_u_SQUOTE] = ACTIONS(2497), - [anon_sym_U_SQUOTE] = ACTIONS(2497), - [anon_sym_u8_SQUOTE] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2497), - [anon_sym_L_DQUOTE] = ACTIONS(2497), - [anon_sym_u_DQUOTE] = ACTIONS(2497), - [anon_sym_U_DQUOTE] = ACTIONS(2497), - [anon_sym_u8_DQUOTE] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym_true] = ACTIONS(2495), - [sym_false] = ACTIONS(2495), - [sym_null] = ACTIONS(2495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2495), - [anon_sym_decltype] = ACTIONS(2495), - [anon_sym_virtual] = ACTIONS(2495), - [anon_sym_typename] = ACTIONS(2495), - [anon_sym_template] = ACTIONS(2495), - [anon_sym_try] = ACTIONS(2495), - [anon_sym_delete] = ACTIONS(2495), - [anon_sym_throw] = ACTIONS(2495), - [anon_sym_co_return] = ACTIONS(2495), - [anon_sym_co_yield] = ACTIONS(2495), - [anon_sym_R_DQUOTE] = ACTIONS(2497), - [anon_sym_LR_DQUOTE] = ACTIONS(2497), - [anon_sym_uR_DQUOTE] = ACTIONS(2497), - [anon_sym_UR_DQUOTE] = ACTIONS(2497), - [anon_sym_u8R_DQUOTE] = ACTIONS(2497), - [anon_sym_co_await] = ACTIONS(2495), - [anon_sym_new] = ACTIONS(2495), - [anon_sym_requires] = ACTIONS(2495), - [sym_this] = ACTIONS(2495), - [sym_nullptr] = ACTIONS(2495), - }, - [1197] = { - [sym_identifier] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2569), - [anon_sym_SEMI] = ACTIONS(2569), - [anon_sym_typedef] = ACTIONS(2567), - [anon_sym_extern] = ACTIONS(2567), - [anon_sym___attribute__] = ACTIONS(2567), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2569), - [anon_sym___declspec] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2569), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_static] = ACTIONS(2567), - [anon_sym_register] = ACTIONS(2567), - [anon_sym_inline] = ACTIONS(2567), - [anon_sym_thread_local] = ACTIONS(2567), - [anon_sym_const] = ACTIONS(2567), - [anon_sym_volatile] = ACTIONS(2567), - [anon_sym_restrict] = ACTIONS(2567), - [anon_sym__Atomic] = ACTIONS(2567), - [anon_sym_mutable] = ACTIONS(2567), - [anon_sym_constexpr] = ACTIONS(2567), - [anon_sym_constinit] = ACTIONS(2567), - [anon_sym_consteval] = ACTIONS(2567), - [anon_sym_signed] = ACTIONS(2567), - [anon_sym_unsigned] = ACTIONS(2567), - [anon_sym_long] = ACTIONS(2567), - [anon_sym_short] = ACTIONS(2567), - [sym_primitive_type] = ACTIONS(2567), - [anon_sym_enum] = ACTIONS(2567), - [anon_sym_class] = ACTIONS(2567), - [anon_sym_struct] = ACTIONS(2567), - [anon_sym_union] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_else] = ACTIONS(2567), - [anon_sym_switch] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_break] = ACTIONS(2567), - [anon_sym_continue] = ACTIONS(2567), - [anon_sym_goto] = ACTIONS(2567), - [anon_sym_not] = ACTIONS(2567), - [anon_sym_compl] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2569), - [anon_sym_PLUS_PLUS] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2567), - [sym_number_literal] = ACTIONS(2569), - [anon_sym_L_SQUOTE] = ACTIONS(2569), - [anon_sym_u_SQUOTE] = ACTIONS(2569), - [anon_sym_U_SQUOTE] = ACTIONS(2569), - [anon_sym_u8_SQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_L_DQUOTE] = ACTIONS(2569), - [anon_sym_u_DQUOTE] = ACTIONS(2569), - [anon_sym_U_DQUOTE] = ACTIONS(2569), - [anon_sym_u8_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE] = ACTIONS(2569), - [sym_true] = ACTIONS(2567), - [sym_false] = ACTIONS(2567), - [sym_null] = ACTIONS(2567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2567), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_virtual] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2567), - [anon_sym_template] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_delete] = ACTIONS(2567), - [anon_sym_throw] = ACTIONS(2567), - [anon_sym_co_return] = ACTIONS(2567), - [anon_sym_co_yield] = ACTIONS(2567), - [anon_sym_R_DQUOTE] = ACTIONS(2569), - [anon_sym_LR_DQUOTE] = ACTIONS(2569), - [anon_sym_uR_DQUOTE] = ACTIONS(2569), - [anon_sym_UR_DQUOTE] = ACTIONS(2569), - [anon_sym_u8R_DQUOTE] = ACTIONS(2569), - [anon_sym_co_await] = ACTIONS(2567), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_requires] = ACTIONS(2567), - [sym_this] = ACTIONS(2567), - [sym_nullptr] = ACTIONS(2567), - }, - [1198] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1204), - [sym_compound_requirement] = STATE(1204), - [sym__requirement] = STATE(1204), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1199] = { - [sym_identifier] = 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] = ACTIONS(3073), - [anon_sym_SEMI] = ACTIONS(3073), - [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_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_register] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_thread_local] = ACTIONS(3071), - [anon_sym_const] = ACTIONS(3071), - [anon_sym_volatile] = ACTIONS(3071), - [anon_sym_restrict] = ACTIONS(3071), - [anon_sym__Atomic] = ACTIONS(3071), - [anon_sym_mutable] = ACTIONS(3071), - [anon_sym_constexpr] = ACTIONS(3071), - [anon_sym_constinit] = ACTIONS(3071), - [anon_sym_consteval] = ACTIONS(3071), - [anon_sym_signed] = ACTIONS(3071), - [anon_sym_unsigned] = ACTIONS(3071), - [anon_sym_long] = ACTIONS(3071), - [anon_sym_short] = 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), - [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), - [sym_null] = ACTIONS(3071), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3071), - [anon_sym_decltype] = ACTIONS(3071), - [anon_sym_virtual] = ACTIONS(3071), - [anon_sym_typename] = ACTIONS(3071), - [anon_sym_template] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_delete] = ACTIONS(3071), - [anon_sym_throw] = 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), - [sym_nullptr] = ACTIONS(3071), - }, - [1200] = { + [1109] = { [sym_identifier] = ACTIONS(2395), [anon_sym_LPAREN2] = ACTIONS(2397), [anon_sym_BANG] = ACTIONS(2397), @@ -171163,6 +163884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2395), [anon_sym_inline] = ACTIONS(2395), [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), [anon_sym_const] = ACTIONS(2395), [anon_sym_volatile] = ACTIONS(2395), [anon_sym_restrict] = ACTIONS(2395), @@ -171231,306 +163953,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2395), [sym_nullptr] = ACTIONS(2395), }, - [1201] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_not] = ACTIONS(2511), - [anon_sym_compl] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_R_DQUOTE] = ACTIONS(2513), - [anon_sym_LR_DQUOTE] = ACTIONS(2513), - [anon_sym_uR_DQUOTE] = ACTIONS(2513), - [anon_sym_UR_DQUOTE] = ACTIONS(2513), - [anon_sym_u8R_DQUOTE] = ACTIONS(2513), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - }, - [1202] = { - [sym_identifier] = ACTIONS(2503), - [anon_sym_LPAREN2] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_typedef] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2503), - [anon_sym___attribute__] = ACTIONS(2503), - [anon_sym_COLON_COLON] = ACTIONS(2505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), - [anon_sym___declspec] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2503), - [anon_sym_register] = ACTIONS(2503), - [anon_sym_inline] = ACTIONS(2503), - [anon_sym_thread_local] = ACTIONS(2503), - [anon_sym_const] = ACTIONS(2503), - [anon_sym_volatile] = ACTIONS(2503), - [anon_sym_restrict] = ACTIONS(2503), - [anon_sym__Atomic] = ACTIONS(2503), - [anon_sym_mutable] = ACTIONS(2503), - [anon_sym_constexpr] = ACTIONS(2503), - [anon_sym_constinit] = ACTIONS(2503), - [anon_sym_consteval] = ACTIONS(2503), - [anon_sym_signed] = ACTIONS(2503), - [anon_sym_unsigned] = ACTIONS(2503), - [anon_sym_long] = ACTIONS(2503), - [anon_sym_short] = ACTIONS(2503), - [sym_primitive_type] = ACTIONS(2503), - [anon_sym_enum] = ACTIONS(2503), - [anon_sym_class] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2503), - [anon_sym_union] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2503), - [anon_sym_else] = ACTIONS(2503), - [anon_sym_switch] = ACTIONS(2503), - [anon_sym_while] = ACTIONS(2503), - [anon_sym_do] = ACTIONS(2503), - [anon_sym_for] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2503), - [anon_sym_break] = ACTIONS(2503), - [anon_sym_continue] = ACTIONS(2503), - [anon_sym_goto] = ACTIONS(2503), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_sizeof] = ACTIONS(2503), - [sym_number_literal] = ACTIONS(2505), - [anon_sym_L_SQUOTE] = ACTIONS(2505), - [anon_sym_u_SQUOTE] = ACTIONS(2505), - [anon_sym_U_SQUOTE] = ACTIONS(2505), - [anon_sym_u8_SQUOTE] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2505), - [anon_sym_L_DQUOTE] = ACTIONS(2505), - [anon_sym_u_DQUOTE] = ACTIONS(2505), - [anon_sym_U_DQUOTE] = ACTIONS(2505), - [anon_sym_u8_DQUOTE] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [sym_true] = ACTIONS(2503), - [sym_false] = ACTIONS(2503), - [sym_null] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2503), - [anon_sym_decltype] = ACTIONS(2503), - [anon_sym_virtual] = ACTIONS(2503), - [anon_sym_typename] = ACTIONS(2503), - [anon_sym_template] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2503), - [anon_sym_delete] = ACTIONS(2503), - [anon_sym_throw] = ACTIONS(2503), - [anon_sym_co_return] = ACTIONS(2503), - [anon_sym_co_yield] = ACTIONS(2503), - [anon_sym_R_DQUOTE] = ACTIONS(2505), - [anon_sym_LR_DQUOTE] = ACTIONS(2505), - [anon_sym_uR_DQUOTE] = ACTIONS(2505), - [anon_sym_UR_DQUOTE] = ACTIONS(2505), - [anon_sym_u8R_DQUOTE] = ACTIONS(2505), - [anon_sym_co_await] = ACTIONS(2503), - [anon_sym_new] = ACTIONS(2503), - [anon_sym_requires] = ACTIONS(2503), - [sym_this] = ACTIONS(2503), - [sym_nullptr] = ACTIONS(2503), - }, - [1203] = { - [sym_identifier] = ACTIONS(2507), - [anon_sym_LPAREN2] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_typedef] = ACTIONS(2507), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym___attribute__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), - [anon_sym___declspec] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2507), - [anon_sym_register] = ACTIONS(2507), - [anon_sym_inline] = ACTIONS(2507), - [anon_sym_thread_local] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_volatile] = ACTIONS(2507), - [anon_sym_restrict] = ACTIONS(2507), - [anon_sym__Atomic] = ACTIONS(2507), - [anon_sym_mutable] = ACTIONS(2507), - [anon_sym_constexpr] = ACTIONS(2507), - [anon_sym_constinit] = ACTIONS(2507), - [anon_sym_consteval] = ACTIONS(2507), - [anon_sym_signed] = ACTIONS(2507), - [anon_sym_unsigned] = ACTIONS(2507), - [anon_sym_long] = ACTIONS(2507), - [anon_sym_short] = ACTIONS(2507), - [sym_primitive_type] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_class] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_else] = ACTIONS(2507), - [anon_sym_switch] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_do] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_not] = ACTIONS(2507), - [anon_sym_compl] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2509), - [anon_sym_sizeof] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2509), - [anon_sym_u_SQUOTE] = ACTIONS(2509), - [anon_sym_U_SQUOTE] = ACTIONS(2509), - [anon_sym_u8_SQUOTE] = ACTIONS(2509), - [anon_sym_SQUOTE] = ACTIONS(2509), - [anon_sym_L_DQUOTE] = ACTIONS(2509), - [anon_sym_u_DQUOTE] = ACTIONS(2509), - [anon_sym_U_DQUOTE] = ACTIONS(2509), - [anon_sym_u8_DQUOTE] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(2509), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_null] = ACTIONS(2507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2507), - [anon_sym_decltype] = ACTIONS(2507), - [anon_sym_virtual] = ACTIONS(2507), - [anon_sym_typename] = ACTIONS(2507), - [anon_sym_template] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2507), - [anon_sym_delete] = ACTIONS(2507), - [anon_sym_throw] = ACTIONS(2507), - [anon_sym_co_return] = ACTIONS(2507), - [anon_sym_co_yield] = ACTIONS(2507), - [anon_sym_R_DQUOTE] = ACTIONS(2509), - [anon_sym_LR_DQUOTE] = ACTIONS(2509), - [anon_sym_uR_DQUOTE] = ACTIONS(2509), - [anon_sym_UR_DQUOTE] = ACTIONS(2509), - [anon_sym_u8R_DQUOTE] = ACTIONS(2509), - [anon_sym_co_await] = ACTIONS(2507), - [anon_sym_new] = ACTIONS(2507), - [anon_sym_requires] = ACTIONS(2507), - [sym_this] = ACTIONS(2507), - [sym_nullptr] = ACTIONS(2507), - }, - [1204] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), + [1110] = { + [sym_type_qualifier] = STATE(1204), + [sym__expression] = STATE(3835), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1234), - [sym_compound_requirement] = STATE(1234), - [sym__requirement] = STATE(1234), [sym_requires_clause] = STATE(3521), [sym_requires_expression] = STATE(3521), [sym_lambda_expression] = STATE(3521), @@ -171539,29 +163987,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1234), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), + [aux_sym_type_definition_repeat1] = STATE(1204), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3116), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -171577,1191 +164031,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), + [anon_sym_delete] = ACTIONS(3005), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1205] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1134), - [sym_compound_requirement] = STATE(1134), - [sym__requirement] = STATE(1134), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1111] = { + [sym_identifier] = ACTIONS(2467), + [anon_sym_LPAREN2] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_typedef] = ACTIONS(2467), + [anon_sym_extern] = ACTIONS(2467), + [anon_sym___attribute__] = ACTIONS(2467), + [anon_sym_COLON_COLON] = ACTIONS(2469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2469), + [anon_sym___declspec] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_static] = ACTIONS(2467), + [anon_sym_register] = ACTIONS(2467), + [anon_sym_inline] = ACTIONS(2467), + [anon_sym_thread_local] = ACTIONS(2467), + [anon_sym_input] = ACTIONS(2467), + [anon_sym_const] = ACTIONS(2467), + [anon_sym_volatile] = ACTIONS(2467), + [anon_sym_restrict] = ACTIONS(2467), + [anon_sym__Atomic] = ACTIONS(2467), + [anon_sym_mutable] = ACTIONS(2467), + [anon_sym_constexpr] = ACTIONS(2467), + [anon_sym_constinit] = ACTIONS(2467), + [anon_sym_consteval] = ACTIONS(2467), + [anon_sym_signed] = ACTIONS(2467), + [anon_sym_unsigned] = ACTIONS(2467), + [anon_sym_long] = ACTIONS(2467), + [anon_sym_short] = ACTIONS(2467), + [sym_primitive_type] = ACTIONS(2467), + [anon_sym_enum] = ACTIONS(2467), + [anon_sym_class] = ACTIONS(2467), + [anon_sym_struct] = ACTIONS(2467), + [anon_sym_union] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_else] = ACTIONS(2467), + [anon_sym_switch] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2467), + [anon_sym_do] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_goto] = ACTIONS(2467), + [anon_sym_not] = ACTIONS(2467), + [anon_sym_compl] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2469), + [anon_sym_PLUS_PLUS] = ACTIONS(2469), + [anon_sym_sizeof] = ACTIONS(2467), + [sym_number_literal] = ACTIONS(2469), + [anon_sym_L_SQUOTE] = ACTIONS(2469), + [anon_sym_u_SQUOTE] = ACTIONS(2469), + [anon_sym_U_SQUOTE] = ACTIONS(2469), + [anon_sym_u8_SQUOTE] = ACTIONS(2469), + [anon_sym_SQUOTE] = ACTIONS(2469), + [anon_sym_L_DQUOTE] = ACTIONS(2469), + [anon_sym_u_DQUOTE] = ACTIONS(2469), + [anon_sym_U_DQUOTE] = ACTIONS(2469), + [anon_sym_u8_DQUOTE] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2469), + [sym_true] = ACTIONS(2467), + [sym_false] = ACTIONS(2467), + [sym_null] = ACTIONS(2467), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(2467), + [anon_sym_decltype] = ACTIONS(2467), + [anon_sym_virtual] = ACTIONS(2467), + [anon_sym_typename] = ACTIONS(2467), + [anon_sym_template] = ACTIONS(2467), + [anon_sym_try] = ACTIONS(2467), + [anon_sym_delete] = ACTIONS(2467), + [anon_sym_throw] = ACTIONS(2467), + [anon_sym_co_return] = ACTIONS(2467), + [anon_sym_co_yield] = ACTIONS(2467), + [anon_sym_R_DQUOTE] = ACTIONS(2469), + [anon_sym_LR_DQUOTE] = ACTIONS(2469), + [anon_sym_uR_DQUOTE] = ACTIONS(2469), + [anon_sym_UR_DQUOTE] = ACTIONS(2469), + [anon_sym_u8R_DQUOTE] = ACTIONS(2469), + [anon_sym_co_await] = ACTIONS(2467), + [anon_sym_new] = ACTIONS(2467), + [anon_sym_requires] = ACTIONS(2467), + [sym_this] = ACTIONS(2467), + [sym_nullptr] = ACTIONS(2467), }, - [1206] = { - [sym_identifier] = 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] = ACTIONS(2561), - [anon_sym_SEMI] = ACTIONS(2561), - [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_LBRACE] = ACTIONS(2561), - [anon_sym_LBRACK] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_register] = ACTIONS(2559), - [anon_sym_inline] = ACTIONS(2559), - [anon_sym_thread_local] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_volatile] = ACTIONS(2559), - [anon_sym_restrict] = ACTIONS(2559), - [anon_sym__Atomic] = ACTIONS(2559), - [anon_sym_mutable] = ACTIONS(2559), - [anon_sym_constexpr] = ACTIONS(2559), - [anon_sym_constinit] = ACTIONS(2559), - [anon_sym_consteval] = ACTIONS(2559), - [anon_sym_signed] = ACTIONS(2559), - [anon_sym_unsigned] = ACTIONS(2559), - [anon_sym_long] = ACTIONS(2559), - [anon_sym_short] = 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_else] = ACTIONS(2559), - [anon_sym_switch] = 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), - [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), - [sym_null] = ACTIONS(2559), + [1112] = { + [sym_identifier] = ACTIONS(2531), + [anon_sym_LPAREN2] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(2533), + [anon_sym_TILDE] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_typedef] = ACTIONS(2531), + [anon_sym_extern] = ACTIONS(2531), + [anon_sym___attribute__] = ACTIONS(2531), + [anon_sym_COLON_COLON] = ACTIONS(2533), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2533), + [anon_sym___declspec] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_LBRACK] = ACTIONS(2531), + [anon_sym_static] = ACTIONS(2531), + [anon_sym_register] = ACTIONS(2531), + [anon_sym_inline] = ACTIONS(2531), + [anon_sym_thread_local] = ACTIONS(2531), + [anon_sym_input] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [anon_sym_volatile] = ACTIONS(2531), + [anon_sym_restrict] = ACTIONS(2531), + [anon_sym__Atomic] = ACTIONS(2531), + [anon_sym_mutable] = ACTIONS(2531), + [anon_sym_constexpr] = ACTIONS(2531), + [anon_sym_constinit] = ACTIONS(2531), + [anon_sym_consteval] = ACTIONS(2531), + [anon_sym_signed] = ACTIONS(2531), + [anon_sym_unsigned] = ACTIONS(2531), + [anon_sym_long] = ACTIONS(2531), + [anon_sym_short] = ACTIONS(2531), + [sym_primitive_type] = ACTIONS(2531), + [anon_sym_enum] = ACTIONS(2531), + [anon_sym_class] = ACTIONS(2531), + [anon_sym_struct] = ACTIONS(2531), + [anon_sym_union] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_else] = ACTIONS(2531), + [anon_sym_switch] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_do] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_goto] = ACTIONS(2531), + [anon_sym_not] = ACTIONS(2531), + [anon_sym_compl] = ACTIONS(2531), + [anon_sym_DASH_DASH] = ACTIONS(2533), + [anon_sym_PLUS_PLUS] = ACTIONS(2533), + [anon_sym_sizeof] = ACTIONS(2531), + [sym_number_literal] = ACTIONS(2533), + [anon_sym_L_SQUOTE] = ACTIONS(2533), + [anon_sym_u_SQUOTE] = ACTIONS(2533), + [anon_sym_U_SQUOTE] = ACTIONS(2533), + [anon_sym_u8_SQUOTE] = ACTIONS(2533), + [anon_sym_SQUOTE] = ACTIONS(2533), + [anon_sym_L_DQUOTE] = ACTIONS(2533), + [anon_sym_u_DQUOTE] = ACTIONS(2533), + [anon_sym_U_DQUOTE] = ACTIONS(2533), + [anon_sym_u8_DQUOTE] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(2533), + [sym_true] = ACTIONS(2531), + [sym_false] = ACTIONS(2531), + [sym_null] = ACTIONS(2531), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2559), - [anon_sym_decltype] = ACTIONS(2559), - [anon_sym_virtual] = ACTIONS(2559), - [anon_sym_typename] = ACTIONS(2559), - [anon_sym_template] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2559), - [anon_sym_delete] = ACTIONS(2559), - [anon_sym_throw] = ACTIONS(2559), - [anon_sym_co_return] = ACTIONS(2559), - [anon_sym_co_yield] = ACTIONS(2559), - [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_nullptr] = ACTIONS(2559), + [sym_auto] = ACTIONS(2531), + [anon_sym_decltype] = ACTIONS(2531), + [anon_sym_virtual] = ACTIONS(2531), + [anon_sym_typename] = ACTIONS(2531), + [anon_sym_template] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_throw] = ACTIONS(2531), + [anon_sym_co_return] = ACTIONS(2531), + [anon_sym_co_yield] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(2531), + [anon_sym_requires] = ACTIONS(2531), + [sym_this] = ACTIONS(2531), + [sym_nullptr] = ACTIONS(2531), }, - [1207] = { - [sym_identifier] = ACTIONS(2399), - [anon_sym_LPAREN2] = ACTIONS(2401), - [anon_sym_BANG] = ACTIONS(2401), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2399), - [anon_sym_PLUS] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2401), - [anon_sym_SEMI] = ACTIONS(2401), - [anon_sym_typedef] = ACTIONS(2399), - [anon_sym_extern] = ACTIONS(2399), - [anon_sym___attribute__] = ACTIONS(2399), - [anon_sym_COLON_COLON] = ACTIONS(2401), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2401), - [anon_sym___declspec] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_register] = ACTIONS(2399), - [anon_sym_inline] = ACTIONS(2399), - [anon_sym_thread_local] = ACTIONS(2399), - [anon_sym_const] = ACTIONS(2399), - [anon_sym_volatile] = ACTIONS(2399), - [anon_sym_restrict] = ACTIONS(2399), - [anon_sym__Atomic] = ACTIONS(2399), - [anon_sym_mutable] = ACTIONS(2399), - [anon_sym_constexpr] = ACTIONS(2399), - [anon_sym_constinit] = ACTIONS(2399), - [anon_sym_consteval] = ACTIONS(2399), - [anon_sym_signed] = ACTIONS(2399), - [anon_sym_unsigned] = ACTIONS(2399), - [anon_sym_long] = ACTIONS(2399), - [anon_sym_short] = ACTIONS(2399), - [sym_primitive_type] = ACTIONS(2399), - [anon_sym_enum] = ACTIONS(2399), - [anon_sym_class] = ACTIONS(2399), - [anon_sym_struct] = ACTIONS(2399), - [anon_sym_union] = ACTIONS(2399), - [anon_sym_if] = ACTIONS(2399), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_switch] = ACTIONS(2399), - [anon_sym_while] = ACTIONS(2399), - [anon_sym_do] = ACTIONS(2399), - [anon_sym_for] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2399), - [anon_sym_break] = ACTIONS(2399), - [anon_sym_continue] = ACTIONS(2399), - [anon_sym_goto] = ACTIONS(2399), - [anon_sym_not] = ACTIONS(2399), - [anon_sym_compl] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2401), - [anon_sym_PLUS_PLUS] = ACTIONS(2401), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [anon_sym_L_SQUOTE] = ACTIONS(2401), - [anon_sym_u_SQUOTE] = ACTIONS(2401), - [anon_sym_U_SQUOTE] = ACTIONS(2401), - [anon_sym_u8_SQUOTE] = ACTIONS(2401), - [anon_sym_SQUOTE] = ACTIONS(2401), - [anon_sym_L_DQUOTE] = ACTIONS(2401), - [anon_sym_u_DQUOTE] = ACTIONS(2401), - [anon_sym_U_DQUOTE] = ACTIONS(2401), - [anon_sym_u8_DQUOTE] = ACTIONS(2401), - [anon_sym_DQUOTE] = ACTIONS(2401), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_null] = ACTIONS(2399), + [1113] = { + [sym_identifier] = ACTIONS(2403), + [anon_sym_LPAREN2] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_typedef] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym___attribute__] = ACTIONS(2403), + [anon_sym_COLON_COLON] = ACTIONS(2405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), + [anon_sym___declspec] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_inline] = ACTIONS(2403), + [anon_sym_thread_local] = ACTIONS(2403), + [anon_sym_input] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_volatile] = ACTIONS(2403), + [anon_sym_restrict] = ACTIONS(2403), + [anon_sym__Atomic] = ACTIONS(2403), + [anon_sym_mutable] = ACTIONS(2403), + [anon_sym_constexpr] = ACTIONS(2403), + [anon_sym_constinit] = ACTIONS(2403), + [anon_sym_consteval] = ACTIONS(2403), + [anon_sym_signed] = ACTIONS(2403), + [anon_sym_unsigned] = ACTIONS(2403), + [anon_sym_long] = ACTIONS(2403), + [anon_sym_short] = ACTIONS(2403), + [sym_primitive_type] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_class] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_switch] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_goto] = ACTIONS(2403), + [anon_sym_not] = ACTIONS(2403), + [anon_sym_compl] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2405), + [anon_sym_PLUS_PLUS] = ACTIONS(2405), + [anon_sym_sizeof] = ACTIONS(2403), + [sym_number_literal] = ACTIONS(2405), + [anon_sym_L_SQUOTE] = ACTIONS(2405), + [anon_sym_u_SQUOTE] = ACTIONS(2405), + [anon_sym_U_SQUOTE] = ACTIONS(2405), + [anon_sym_u8_SQUOTE] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_L_DQUOTE] = ACTIONS(2405), + [anon_sym_u_DQUOTE] = ACTIONS(2405), + [anon_sym_U_DQUOTE] = ACTIONS(2405), + [anon_sym_u8_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [sym_true] = ACTIONS(2403), + [sym_false] = ACTIONS(2403), + [sym_null] = ACTIONS(2403), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2399), - [anon_sym_decltype] = ACTIONS(2399), - [anon_sym_virtual] = ACTIONS(2399), - [anon_sym_typename] = ACTIONS(2399), - [anon_sym_template] = ACTIONS(2399), - [anon_sym_try] = ACTIONS(2399), - [anon_sym_delete] = ACTIONS(2399), - [anon_sym_throw] = ACTIONS(2399), - [anon_sym_co_return] = ACTIONS(2399), - [anon_sym_co_yield] = ACTIONS(2399), - [anon_sym_R_DQUOTE] = ACTIONS(2401), - [anon_sym_LR_DQUOTE] = ACTIONS(2401), - [anon_sym_uR_DQUOTE] = ACTIONS(2401), - [anon_sym_UR_DQUOTE] = ACTIONS(2401), - [anon_sym_u8R_DQUOTE] = ACTIONS(2401), - [anon_sym_co_await] = ACTIONS(2399), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_requires] = ACTIONS(2399), - [sym_this] = ACTIONS(2399), - [sym_nullptr] = ACTIONS(2399), + [sym_auto] = ACTIONS(2403), + [anon_sym_decltype] = ACTIONS(2403), + [anon_sym_virtual] = ACTIONS(2403), + [anon_sym_typename] = ACTIONS(2403), + [anon_sym_template] = ACTIONS(2403), + [anon_sym_try] = ACTIONS(2403), + [anon_sym_delete] = ACTIONS(2403), + [anon_sym_throw] = ACTIONS(2403), + [anon_sym_co_return] = ACTIONS(2403), + [anon_sym_co_yield] = ACTIONS(2403), + [anon_sym_R_DQUOTE] = ACTIONS(2405), + [anon_sym_LR_DQUOTE] = ACTIONS(2405), + [anon_sym_uR_DQUOTE] = ACTIONS(2405), + [anon_sym_UR_DQUOTE] = ACTIONS(2405), + [anon_sym_u8R_DQUOTE] = ACTIONS(2405), + [anon_sym_co_await] = ACTIONS(2403), + [anon_sym_new] = ACTIONS(2403), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2403), + [sym_nullptr] = ACTIONS(2403), }, - [1208] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1209] = { - [sym_identifier] = ACTIONS(2611), - [anon_sym_LPAREN2] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2611), - [anon_sym_PLUS] = ACTIONS(2611), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_typedef] = ACTIONS(2611), - [anon_sym_extern] = ACTIONS(2611), - [anon_sym___attribute__] = ACTIONS(2611), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), - [anon_sym___declspec] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2611), - [anon_sym_static] = ACTIONS(2611), - [anon_sym_register] = ACTIONS(2611), - [anon_sym_inline] = ACTIONS(2611), - [anon_sym_thread_local] = ACTIONS(2611), - [anon_sym_const] = ACTIONS(2611), - [anon_sym_volatile] = ACTIONS(2611), - [anon_sym_restrict] = ACTIONS(2611), - [anon_sym__Atomic] = ACTIONS(2611), - [anon_sym_mutable] = ACTIONS(2611), - [anon_sym_constexpr] = ACTIONS(2611), - [anon_sym_constinit] = ACTIONS(2611), - [anon_sym_consteval] = ACTIONS(2611), - [anon_sym_signed] = ACTIONS(2611), - [anon_sym_unsigned] = ACTIONS(2611), - [anon_sym_long] = ACTIONS(2611), - [anon_sym_short] = ACTIONS(2611), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_enum] = ACTIONS(2611), - [anon_sym_class] = ACTIONS(2611), - [anon_sym_struct] = ACTIONS(2611), - [anon_sym_union] = ACTIONS(2611), - [anon_sym_if] = ACTIONS(2611), - [anon_sym_else] = ACTIONS(2611), - [anon_sym_switch] = ACTIONS(2611), - [anon_sym_while] = ACTIONS(2611), - [anon_sym_do] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2611), - [anon_sym_break] = ACTIONS(2611), - [anon_sym_continue] = ACTIONS(2611), - [anon_sym_goto] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(2611), - [anon_sym_compl] = ACTIONS(2611), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_sizeof] = ACTIONS(2611), - [sym_number_literal] = ACTIONS(2613), - [anon_sym_L_SQUOTE] = ACTIONS(2613), - [anon_sym_u_SQUOTE] = ACTIONS(2613), - [anon_sym_U_SQUOTE] = ACTIONS(2613), - [anon_sym_u8_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_L_DQUOTE] = ACTIONS(2613), - [anon_sym_u_DQUOTE] = ACTIONS(2613), - [anon_sym_U_DQUOTE] = ACTIONS(2613), - [anon_sym_u8_DQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [sym_true] = ACTIONS(2611), - [sym_false] = ACTIONS(2611), - [sym_null] = ACTIONS(2611), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2611), - [anon_sym_decltype] = ACTIONS(2611), - [anon_sym_virtual] = ACTIONS(2611), - [anon_sym_typename] = ACTIONS(2611), - [anon_sym_template] = ACTIONS(2611), - [anon_sym_try] = ACTIONS(2611), - [anon_sym_delete] = ACTIONS(2611), - [anon_sym_throw] = ACTIONS(2611), - [anon_sym_co_return] = ACTIONS(2611), - [anon_sym_co_yield] = ACTIONS(2611), - [anon_sym_R_DQUOTE] = ACTIONS(2613), - [anon_sym_LR_DQUOTE] = ACTIONS(2613), - [anon_sym_uR_DQUOTE] = ACTIONS(2613), - [anon_sym_UR_DQUOTE] = ACTIONS(2613), - [anon_sym_u8R_DQUOTE] = ACTIONS(2613), - [anon_sym_co_await] = ACTIONS(2611), - [anon_sym_new] = ACTIONS(2611), - [anon_sym_requires] = ACTIONS(2611), - [sym_this] = ACTIONS(2611), - [sym_nullptr] = ACTIONS(2611), - }, - [1210] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1234), - [sym_compound_requirement] = STATE(1234), - [sym__requirement] = STATE(1234), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1234), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1211] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1212] = { - [sym_identifier] = ACTIONS(2519), - [anon_sym_LPAREN2] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2521), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_typedef] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2519), - [anon_sym___attribute__] = ACTIONS(2519), - [anon_sym_COLON_COLON] = ACTIONS(2521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), - [anon_sym___declspec] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_register] = ACTIONS(2519), - [anon_sym_inline] = ACTIONS(2519), - [anon_sym_thread_local] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_volatile] = ACTIONS(2519), - [anon_sym_restrict] = ACTIONS(2519), - [anon_sym__Atomic] = ACTIONS(2519), - [anon_sym_mutable] = ACTIONS(2519), - [anon_sym_constexpr] = ACTIONS(2519), - [anon_sym_constinit] = ACTIONS(2519), - [anon_sym_consteval] = ACTIONS(2519), - [anon_sym_signed] = ACTIONS(2519), - [anon_sym_unsigned] = ACTIONS(2519), - [anon_sym_long] = ACTIONS(2519), - [anon_sym_short] = ACTIONS(2519), - [sym_primitive_type] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_class] = ACTIONS(2519), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_else] = ACTIONS(2519), - [anon_sym_switch] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_do] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_goto] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2519), - [anon_sym_compl] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2521), - [anon_sym_PLUS_PLUS] = ACTIONS(2521), - [anon_sym_sizeof] = ACTIONS(2519), - [sym_number_literal] = ACTIONS(2521), - [anon_sym_L_SQUOTE] = ACTIONS(2521), - [anon_sym_u_SQUOTE] = ACTIONS(2521), - [anon_sym_U_SQUOTE] = ACTIONS(2521), - [anon_sym_u8_SQUOTE] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2521), - [anon_sym_L_DQUOTE] = ACTIONS(2521), - [anon_sym_u_DQUOTE] = ACTIONS(2521), - [anon_sym_U_DQUOTE] = ACTIONS(2521), - [anon_sym_u8_DQUOTE] = ACTIONS(2521), - [anon_sym_DQUOTE] = ACTIONS(2521), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [sym_null] = ACTIONS(2519), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2519), - [anon_sym_decltype] = ACTIONS(2519), - [anon_sym_virtual] = ACTIONS(2519), - [anon_sym_typename] = ACTIONS(2519), - [anon_sym_template] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_throw] = ACTIONS(2519), - [anon_sym_co_return] = ACTIONS(2519), - [anon_sym_co_yield] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2519), - [anon_sym_new] = ACTIONS(2519), - [anon_sym_requires] = ACTIONS(2519), - [sym_this] = ACTIONS(2519), - [sym_nullptr] = ACTIONS(2519), - }, - [1213] = { - [sym_identifier] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2557), - [anon_sym_TILDE] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2557), - [anon_sym_SEMI] = ACTIONS(2557), - [anon_sym_typedef] = ACTIONS(2555), - [anon_sym_extern] = ACTIONS(2555), - [anon_sym___attribute__] = ACTIONS(2555), - [anon_sym_COLON_COLON] = ACTIONS(2557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), - [anon_sym___declspec] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2555), - [anon_sym_register] = ACTIONS(2555), - [anon_sym_inline] = ACTIONS(2555), - [anon_sym_thread_local] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2555), - [anon_sym_volatile] = ACTIONS(2555), - [anon_sym_restrict] = ACTIONS(2555), - [anon_sym__Atomic] = ACTIONS(2555), - [anon_sym_mutable] = ACTIONS(2555), - [anon_sym_constexpr] = ACTIONS(2555), - [anon_sym_constinit] = ACTIONS(2555), - [anon_sym_consteval] = ACTIONS(2555), - [anon_sym_signed] = ACTIONS(2555), - [anon_sym_unsigned] = ACTIONS(2555), - [anon_sym_long] = ACTIONS(2555), - [anon_sym_short] = ACTIONS(2555), - [sym_primitive_type] = ACTIONS(2555), - [anon_sym_enum] = ACTIONS(2555), - [anon_sym_class] = ACTIONS(2555), - [anon_sym_struct] = ACTIONS(2555), - [anon_sym_union] = ACTIONS(2555), - [anon_sym_if] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2555), - [anon_sym_switch] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2555), - [anon_sym_do] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_break] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2555), - [anon_sym_goto] = ACTIONS(2555), - [anon_sym_not] = ACTIONS(2555), - [anon_sym_compl] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2557), - [anon_sym_PLUS_PLUS] = ACTIONS(2557), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2557), - [anon_sym_u_SQUOTE] = ACTIONS(2557), - [anon_sym_U_SQUOTE] = ACTIONS(2557), - [anon_sym_u8_SQUOTE] = ACTIONS(2557), - [anon_sym_SQUOTE] = ACTIONS(2557), - [anon_sym_L_DQUOTE] = ACTIONS(2557), - [anon_sym_u_DQUOTE] = ACTIONS(2557), - [anon_sym_U_DQUOTE] = ACTIONS(2557), - [anon_sym_u8_DQUOTE] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(2557), - [sym_true] = ACTIONS(2555), - [sym_false] = ACTIONS(2555), - [sym_null] = ACTIONS(2555), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2555), - [anon_sym_decltype] = ACTIONS(2555), - [anon_sym_virtual] = ACTIONS(2555), - [anon_sym_typename] = ACTIONS(2555), - [anon_sym_template] = ACTIONS(2555), - [anon_sym_try] = ACTIONS(2555), - [anon_sym_delete] = ACTIONS(2555), - [anon_sym_throw] = ACTIONS(2555), - [anon_sym_co_return] = ACTIONS(2555), - [anon_sym_co_yield] = ACTIONS(2555), - [anon_sym_R_DQUOTE] = ACTIONS(2557), - [anon_sym_LR_DQUOTE] = ACTIONS(2557), - [anon_sym_uR_DQUOTE] = ACTIONS(2557), - [anon_sym_UR_DQUOTE] = ACTIONS(2557), - [anon_sym_u8R_DQUOTE] = ACTIONS(2557), - [anon_sym_co_await] = ACTIONS(2555), - [anon_sym_new] = ACTIONS(2555), - [anon_sym_requires] = ACTIONS(2555), - [sym_this] = ACTIONS(2555), - [sym_nullptr] = ACTIONS(2555), - }, - [1214] = { - [sym_identifier] = ACTIONS(2587), - [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2589), - [anon_sym_TILDE] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2589), - [anon_sym_SEMI] = ACTIONS(2589), - [anon_sym_typedef] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym___attribute__] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2589), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), - [anon_sym___declspec] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_register] = ACTIONS(2587), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_thread_local] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_constexpr] = ACTIONS(2587), - [anon_sym_constinit] = ACTIONS(2587), - [anon_sym_consteval] = ACTIONS(2587), - [anon_sym_signed] = ACTIONS(2587), - [anon_sym_unsigned] = ACTIONS(2587), - [anon_sym_long] = ACTIONS(2587), - [anon_sym_short] = ACTIONS(2587), - [sym_primitive_type] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_class] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_else] = ACTIONS(2587), - [anon_sym_switch] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_goto] = ACTIONS(2587), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_compl] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2589), - [anon_sym_PLUS_PLUS] = ACTIONS(2589), - [anon_sym_sizeof] = ACTIONS(2587), - [sym_number_literal] = ACTIONS(2589), - [anon_sym_L_SQUOTE] = ACTIONS(2589), - [anon_sym_u_SQUOTE] = ACTIONS(2589), - [anon_sym_U_SQUOTE] = ACTIONS(2589), - [anon_sym_u8_SQUOTE] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_L_DQUOTE] = ACTIONS(2589), - [anon_sym_u_DQUOTE] = ACTIONS(2589), - [anon_sym_U_DQUOTE] = ACTIONS(2589), - [anon_sym_u8_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE] = ACTIONS(2589), - [sym_true] = ACTIONS(2587), - [sym_false] = ACTIONS(2587), - [sym_null] = ACTIONS(2587), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2587), - [anon_sym_decltype] = ACTIONS(2587), - [anon_sym_virtual] = ACTIONS(2587), - [anon_sym_typename] = ACTIONS(2587), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(2587), - [anon_sym_throw] = ACTIONS(2587), - [anon_sym_co_return] = ACTIONS(2587), - [anon_sym_co_yield] = ACTIONS(2587), - [anon_sym_R_DQUOTE] = ACTIONS(2589), - [anon_sym_LR_DQUOTE] = ACTIONS(2589), - [anon_sym_uR_DQUOTE] = ACTIONS(2589), - [anon_sym_UR_DQUOTE] = ACTIONS(2589), - [anon_sym_u8R_DQUOTE] = ACTIONS(2589), - [anon_sym_co_await] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_requires] = ACTIONS(2587), - [sym_this] = ACTIONS(2587), - [sym_nullptr] = ACTIONS(2587), - }, - [1215] = { - [sym_identifier] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2553), - [anon_sym_TILDE] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2551), - [anon_sym_PLUS] = ACTIONS(2551), - [anon_sym_STAR] = ACTIONS(2553), - [anon_sym_AMP] = ACTIONS(2553), - [anon_sym_SEMI] = ACTIONS(2553), - [anon_sym_typedef] = ACTIONS(2551), - [anon_sym_extern] = ACTIONS(2551), - [anon_sym___attribute__] = ACTIONS(2551), - [anon_sym_COLON_COLON] = ACTIONS(2553), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), - [anon_sym___declspec] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_static] = ACTIONS(2551), - [anon_sym_register] = ACTIONS(2551), - [anon_sym_inline] = ACTIONS(2551), - [anon_sym_thread_local] = ACTIONS(2551), - [anon_sym_const] = ACTIONS(2551), - [anon_sym_volatile] = ACTIONS(2551), - [anon_sym_restrict] = ACTIONS(2551), - [anon_sym__Atomic] = ACTIONS(2551), - [anon_sym_mutable] = ACTIONS(2551), - [anon_sym_constexpr] = ACTIONS(2551), - [anon_sym_constinit] = ACTIONS(2551), - [anon_sym_consteval] = ACTIONS(2551), - [anon_sym_signed] = ACTIONS(2551), - [anon_sym_unsigned] = ACTIONS(2551), - [anon_sym_long] = ACTIONS(2551), - [anon_sym_short] = ACTIONS(2551), - [sym_primitive_type] = ACTIONS(2551), - [anon_sym_enum] = ACTIONS(2551), - [anon_sym_class] = ACTIONS(2551), - [anon_sym_struct] = ACTIONS(2551), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_if] = ACTIONS(2551), - [anon_sym_else] = ACTIONS(2551), - [anon_sym_switch] = ACTIONS(2551), - [anon_sym_while] = ACTIONS(2551), - [anon_sym_do] = ACTIONS(2551), - [anon_sym_for] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2551), - [anon_sym_break] = ACTIONS(2551), - [anon_sym_continue] = ACTIONS(2551), - [anon_sym_goto] = ACTIONS(2551), - [anon_sym_not] = ACTIONS(2551), - [anon_sym_compl] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2551), - [sym_number_literal] = ACTIONS(2553), - [anon_sym_L_SQUOTE] = ACTIONS(2553), - [anon_sym_u_SQUOTE] = ACTIONS(2553), - [anon_sym_U_SQUOTE] = ACTIONS(2553), - [anon_sym_u8_SQUOTE] = ACTIONS(2553), - [anon_sym_SQUOTE] = ACTIONS(2553), - [anon_sym_L_DQUOTE] = ACTIONS(2553), - [anon_sym_u_DQUOTE] = ACTIONS(2553), - [anon_sym_U_DQUOTE] = ACTIONS(2553), - [anon_sym_u8_DQUOTE] = ACTIONS(2553), - [anon_sym_DQUOTE] = ACTIONS(2553), - [sym_true] = ACTIONS(2551), - [sym_false] = ACTIONS(2551), - [sym_null] = ACTIONS(2551), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2551), - [anon_sym_decltype] = ACTIONS(2551), - [anon_sym_virtual] = ACTIONS(2551), - [anon_sym_typename] = ACTIONS(2551), - [anon_sym_template] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2551), - [anon_sym_delete] = ACTIONS(2551), - [anon_sym_throw] = ACTIONS(2551), - [anon_sym_co_return] = ACTIONS(2551), - [anon_sym_co_yield] = ACTIONS(2551), - [anon_sym_R_DQUOTE] = ACTIONS(2553), - [anon_sym_LR_DQUOTE] = ACTIONS(2553), - [anon_sym_uR_DQUOTE] = ACTIONS(2553), - [anon_sym_UR_DQUOTE] = ACTIONS(2553), - [anon_sym_u8R_DQUOTE] = ACTIONS(2553), - [anon_sym_co_await] = ACTIONS(2551), - [anon_sym_new] = ACTIONS(2551), - [anon_sym_requires] = ACTIONS(2551), - [sym_this] = ACTIONS(2551), - [sym_nullptr] = ACTIONS(2551), - }, - [1216] = { - [sym_identifier] = ACTIONS(2525), - [anon_sym_LPAREN2] = ACTIONS(2527), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_TILDE] = ACTIONS(2527), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_STAR] = ACTIONS(2527), - [anon_sym_AMP] = ACTIONS(2527), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_typedef] = ACTIONS(2525), - [anon_sym_extern] = ACTIONS(2525), - [anon_sym___attribute__] = ACTIONS(2525), - [anon_sym_COLON_COLON] = ACTIONS(2527), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2527), - [anon_sym___declspec] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_register] = ACTIONS(2525), - [anon_sym_inline] = ACTIONS(2525), - [anon_sym_thread_local] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_volatile] = ACTIONS(2525), - [anon_sym_restrict] = ACTIONS(2525), - [anon_sym__Atomic] = ACTIONS(2525), - [anon_sym_mutable] = ACTIONS(2525), - [anon_sym_constexpr] = ACTIONS(2525), - [anon_sym_constinit] = ACTIONS(2525), - [anon_sym_consteval] = ACTIONS(2525), - [anon_sym_signed] = ACTIONS(2525), - [anon_sym_unsigned] = ACTIONS(2525), - [anon_sym_long] = ACTIONS(2525), - [anon_sym_short] = ACTIONS(2525), - [sym_primitive_type] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_struct] = ACTIONS(2525), - [anon_sym_union] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_else] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_goto] = ACTIONS(2525), - [anon_sym_not] = ACTIONS(2525), - [anon_sym_compl] = ACTIONS(2525), - [anon_sym_DASH_DASH] = ACTIONS(2527), - [anon_sym_PLUS_PLUS] = ACTIONS(2527), - [anon_sym_sizeof] = ACTIONS(2525), - [sym_number_literal] = ACTIONS(2527), - [anon_sym_L_SQUOTE] = ACTIONS(2527), - [anon_sym_u_SQUOTE] = ACTIONS(2527), - [anon_sym_U_SQUOTE] = ACTIONS(2527), - [anon_sym_u8_SQUOTE] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2527), - [anon_sym_L_DQUOTE] = ACTIONS(2527), - [anon_sym_u_DQUOTE] = ACTIONS(2527), - [anon_sym_U_DQUOTE] = ACTIONS(2527), - [anon_sym_u8_DQUOTE] = ACTIONS(2527), - [anon_sym_DQUOTE] = ACTIONS(2527), - [sym_true] = ACTIONS(2525), - [sym_false] = ACTIONS(2525), - [sym_null] = ACTIONS(2525), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2525), - [anon_sym_decltype] = ACTIONS(2525), - [anon_sym_virtual] = ACTIONS(2525), - [anon_sym_typename] = ACTIONS(2525), - [anon_sym_template] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_delete] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_co_return] = ACTIONS(2525), - [anon_sym_co_yield] = ACTIONS(2525), - [anon_sym_R_DQUOTE] = ACTIONS(2527), - [anon_sym_LR_DQUOTE] = ACTIONS(2527), - [anon_sym_uR_DQUOTE] = ACTIONS(2527), - [anon_sym_UR_DQUOTE] = ACTIONS(2527), - [anon_sym_u8R_DQUOTE] = ACTIONS(2527), - [anon_sym_co_await] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2525), - [sym_this] = ACTIONS(2525), - [sym_nullptr] = ACTIONS(2525), - }, - [1217] = { - [sym_identifier] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2557), - [anon_sym_TILDE] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2557), - [anon_sym_SEMI] = ACTIONS(2557), - [anon_sym_typedef] = ACTIONS(2555), - [anon_sym_extern] = ACTIONS(2555), - [anon_sym___attribute__] = ACTIONS(2555), - [anon_sym_COLON_COLON] = ACTIONS(2557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), - [anon_sym___declspec] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2555), - [anon_sym_register] = ACTIONS(2555), - [anon_sym_inline] = ACTIONS(2555), - [anon_sym_thread_local] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2555), - [anon_sym_volatile] = ACTIONS(2555), - [anon_sym_restrict] = ACTIONS(2555), - [anon_sym__Atomic] = ACTIONS(2555), - [anon_sym_mutable] = ACTIONS(2555), - [anon_sym_constexpr] = ACTIONS(2555), - [anon_sym_constinit] = ACTIONS(2555), - [anon_sym_consteval] = ACTIONS(2555), - [anon_sym_signed] = ACTIONS(2555), - [anon_sym_unsigned] = ACTIONS(2555), - [anon_sym_long] = ACTIONS(2555), - [anon_sym_short] = ACTIONS(2555), - [sym_primitive_type] = ACTIONS(2555), - [anon_sym_enum] = ACTIONS(2555), - [anon_sym_class] = ACTIONS(2555), - [anon_sym_struct] = ACTIONS(2555), - [anon_sym_union] = ACTIONS(2555), - [anon_sym_if] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2555), - [anon_sym_switch] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2555), - [anon_sym_do] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_break] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2555), - [anon_sym_goto] = ACTIONS(2555), - [anon_sym_not] = ACTIONS(2555), - [anon_sym_compl] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2557), - [anon_sym_PLUS_PLUS] = ACTIONS(2557), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2557), - [anon_sym_u_SQUOTE] = ACTIONS(2557), - [anon_sym_U_SQUOTE] = ACTIONS(2557), - [anon_sym_u8_SQUOTE] = ACTIONS(2557), - [anon_sym_SQUOTE] = ACTIONS(2557), - [anon_sym_L_DQUOTE] = ACTIONS(2557), - [anon_sym_u_DQUOTE] = ACTIONS(2557), - [anon_sym_U_DQUOTE] = ACTIONS(2557), - [anon_sym_u8_DQUOTE] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(2557), - [sym_true] = ACTIONS(2555), - [sym_false] = ACTIONS(2555), - [sym_null] = ACTIONS(2555), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2555), - [anon_sym_decltype] = ACTIONS(2555), - [anon_sym_virtual] = ACTIONS(2555), - [anon_sym_typename] = ACTIONS(2555), - [anon_sym_template] = ACTIONS(2555), - [anon_sym_try] = ACTIONS(2555), - [anon_sym_delete] = ACTIONS(2555), - [anon_sym_throw] = ACTIONS(2555), - [anon_sym_co_return] = ACTIONS(2555), - [anon_sym_co_yield] = ACTIONS(2555), - [anon_sym_R_DQUOTE] = ACTIONS(2557), - [anon_sym_LR_DQUOTE] = ACTIONS(2557), - [anon_sym_uR_DQUOTE] = ACTIONS(2557), - [anon_sym_UR_DQUOTE] = ACTIONS(2557), - [anon_sym_u8R_DQUOTE] = ACTIONS(2557), - [anon_sym_co_await] = ACTIONS(2555), - [anon_sym_new] = ACTIONS(2555), - [anon_sym_requires] = ACTIONS(2555), - [sym_this] = ACTIONS(2555), - [sym_nullptr] = ACTIONS(2555), - }, - [1218] = { + [1114] = { [sym_identifier] = ACTIONS(2535), [anon_sym_LPAREN2] = ACTIONS(2537), [anon_sym_BANG] = ACTIONS(2537), @@ -172783,6 +164339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2535), [anon_sym_inline] = ACTIONS(2535), [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_input] = ACTIONS(2535), [anon_sym_const] = ACTIONS(2535), [anon_sym_volatile] = ACTIONS(2535), [anon_sym_restrict] = ACTIONS(2535), @@ -172851,7 +164408,1827 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2535), [sym_nullptr] = ACTIONS(2535), }, - [1219] = { + [1115] = { + [sym_type_qualifier] = STATE(1222), + [sym__expression] = STATE(3867), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(1222), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3124), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1116] = { + [sym_type_qualifier] = STATE(1128), + [sym__expression] = STATE(3877), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(1128), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1117] = { + [sym_identifier] = ACTIONS(2463), + [anon_sym_LPAREN2] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_TILDE] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(2465), + [anon_sym_typedef] = ACTIONS(2463), + [anon_sym_extern] = ACTIONS(2463), + [anon_sym___attribute__] = ACTIONS(2463), + [anon_sym_COLON_COLON] = ACTIONS(2465), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), + [anon_sym___declspec] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_static] = ACTIONS(2463), + [anon_sym_register] = ACTIONS(2463), + [anon_sym_inline] = ACTIONS(2463), + [anon_sym_thread_local] = ACTIONS(2463), + [anon_sym_input] = ACTIONS(2463), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_volatile] = ACTIONS(2463), + [anon_sym_restrict] = ACTIONS(2463), + [anon_sym__Atomic] = ACTIONS(2463), + [anon_sym_mutable] = ACTIONS(2463), + [anon_sym_constexpr] = ACTIONS(2463), + [anon_sym_constinit] = ACTIONS(2463), + [anon_sym_consteval] = ACTIONS(2463), + [anon_sym_signed] = ACTIONS(2463), + [anon_sym_unsigned] = ACTIONS(2463), + [anon_sym_long] = ACTIONS(2463), + [anon_sym_short] = ACTIONS(2463), + [sym_primitive_type] = ACTIONS(2463), + [anon_sym_enum] = ACTIONS(2463), + [anon_sym_class] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_else] = ACTIONS(2463), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_while] = ACTIONS(2463), + [anon_sym_do] = ACTIONS(2463), + [anon_sym_for] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2463), + [anon_sym_break] = ACTIONS(2463), + [anon_sym_continue] = ACTIONS(2463), + [anon_sym_goto] = ACTIONS(2463), + [anon_sym_not] = ACTIONS(2463), + [anon_sym_compl] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2465), + [anon_sym_PLUS_PLUS] = ACTIONS(2465), + [anon_sym_sizeof] = ACTIONS(2463), + [sym_number_literal] = ACTIONS(2465), + [anon_sym_L_SQUOTE] = ACTIONS(2465), + [anon_sym_u_SQUOTE] = ACTIONS(2465), + [anon_sym_U_SQUOTE] = ACTIONS(2465), + [anon_sym_u8_SQUOTE] = ACTIONS(2465), + [anon_sym_SQUOTE] = ACTIONS(2465), + [anon_sym_L_DQUOTE] = ACTIONS(2465), + [anon_sym_u_DQUOTE] = ACTIONS(2465), + [anon_sym_U_DQUOTE] = ACTIONS(2465), + [anon_sym_u8_DQUOTE] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2465), + [sym_true] = ACTIONS(2463), + [sym_false] = ACTIONS(2463), + [sym_null] = ACTIONS(2463), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2463), + [anon_sym_decltype] = ACTIONS(2463), + [anon_sym_virtual] = ACTIONS(2463), + [anon_sym_typename] = ACTIONS(2463), + [anon_sym_template] = ACTIONS(2463), + [anon_sym_try] = ACTIONS(2463), + [anon_sym_delete] = ACTIONS(2463), + [anon_sym_throw] = ACTIONS(2463), + [anon_sym_co_return] = ACTIONS(2463), + [anon_sym_co_yield] = ACTIONS(2463), + [anon_sym_R_DQUOTE] = ACTIONS(2465), + [anon_sym_LR_DQUOTE] = ACTIONS(2465), + [anon_sym_uR_DQUOTE] = ACTIONS(2465), + [anon_sym_UR_DQUOTE] = ACTIONS(2465), + [anon_sym_u8R_DQUOTE] = ACTIONS(2465), + [anon_sym_co_await] = ACTIONS(2463), + [anon_sym_new] = ACTIONS(2463), + [anon_sym_requires] = ACTIONS(2463), + [sym_this] = ACTIONS(2463), + [sym_nullptr] = ACTIONS(2463), + }, + [1118] = { + [sym_identifier] = ACTIONS(2495), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_PLUS] = ACTIONS(2495), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_typedef] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym___attribute__] = ACTIONS(2495), + [anon_sym_COLON_COLON] = ACTIONS(2497), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), + [anon_sym___declspec] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_register] = ACTIONS(2495), + [anon_sym_inline] = ACTIONS(2495), + [anon_sym_thread_local] = ACTIONS(2495), + [anon_sym_input] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_volatile] = ACTIONS(2495), + [anon_sym_restrict] = ACTIONS(2495), + [anon_sym__Atomic] = ACTIONS(2495), + [anon_sym_mutable] = ACTIONS(2495), + [anon_sym_constexpr] = ACTIONS(2495), + [anon_sym_constinit] = ACTIONS(2495), + [anon_sym_consteval] = ACTIONS(2495), + [anon_sym_signed] = ACTIONS(2495), + [anon_sym_unsigned] = ACTIONS(2495), + [anon_sym_long] = ACTIONS(2495), + [anon_sym_short] = ACTIONS(2495), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_class] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_else] = ACTIONS(2495), + [anon_sym_switch] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_do] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_goto] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2495), + [anon_sym_compl] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_sizeof] = ACTIONS(2495), + [sym_number_literal] = ACTIONS(2497), + [anon_sym_L_SQUOTE] = ACTIONS(2497), + [anon_sym_u_SQUOTE] = ACTIONS(2497), + [anon_sym_U_SQUOTE] = ACTIONS(2497), + [anon_sym_u8_SQUOTE] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_L_DQUOTE] = ACTIONS(2497), + [anon_sym_u_DQUOTE] = ACTIONS(2497), + [anon_sym_U_DQUOTE] = ACTIONS(2497), + [anon_sym_u8_DQUOTE] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym_true] = ACTIONS(2495), + [sym_false] = ACTIONS(2495), + [sym_null] = ACTIONS(2495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2495), + [anon_sym_decltype] = ACTIONS(2495), + [anon_sym_virtual] = ACTIONS(2495), + [anon_sym_typename] = ACTIONS(2495), + [anon_sym_template] = ACTIONS(2495), + [anon_sym_try] = ACTIONS(2495), + [anon_sym_delete] = ACTIONS(2495), + [anon_sym_throw] = ACTIONS(2495), + [anon_sym_co_return] = ACTIONS(2495), + [anon_sym_co_yield] = ACTIONS(2495), + [anon_sym_R_DQUOTE] = ACTIONS(2497), + [anon_sym_LR_DQUOTE] = ACTIONS(2497), + [anon_sym_uR_DQUOTE] = ACTIONS(2497), + [anon_sym_UR_DQUOTE] = ACTIONS(2497), + [anon_sym_u8R_DQUOTE] = ACTIONS(2497), + [anon_sym_co_await] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2495), + [anon_sym_requires] = ACTIONS(2495), + [sym_this] = ACTIONS(2495), + [sym_nullptr] = ACTIONS(2495), + }, + [1119] = { + [sym_identifier] = ACTIONS(2459), + [anon_sym_LPAREN2] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2461), + [anon_sym_TILDE] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(2461), + [anon_sym_SEMI] = ACTIONS(2461), + [anon_sym_typedef] = ACTIONS(2459), + [anon_sym_extern] = ACTIONS(2459), + [anon_sym___attribute__] = ACTIONS(2459), + [anon_sym_COLON_COLON] = ACTIONS(2461), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), + [anon_sym___declspec] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2459), + [anon_sym_static] = ACTIONS(2459), + [anon_sym_register] = ACTIONS(2459), + [anon_sym_inline] = ACTIONS(2459), + [anon_sym_thread_local] = ACTIONS(2459), + [anon_sym_input] = ACTIONS(2459), + [anon_sym_const] = ACTIONS(2459), + [anon_sym_volatile] = ACTIONS(2459), + [anon_sym_restrict] = ACTIONS(2459), + [anon_sym__Atomic] = ACTIONS(2459), + [anon_sym_mutable] = ACTIONS(2459), + [anon_sym_constexpr] = ACTIONS(2459), + [anon_sym_constinit] = ACTIONS(2459), + [anon_sym_consteval] = ACTIONS(2459), + [anon_sym_signed] = ACTIONS(2459), + [anon_sym_unsigned] = ACTIONS(2459), + [anon_sym_long] = ACTIONS(2459), + [anon_sym_short] = ACTIONS(2459), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_enum] = ACTIONS(2459), + [anon_sym_class] = ACTIONS(2459), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_union] = ACTIONS(2459), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_else] = ACTIONS(2459), + [anon_sym_switch] = ACTIONS(2459), + [anon_sym_while] = ACTIONS(2459), + [anon_sym_do] = ACTIONS(2459), + [anon_sym_for] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2459), + [anon_sym_break] = ACTIONS(2459), + [anon_sym_continue] = ACTIONS(2459), + [anon_sym_goto] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(2459), + [anon_sym_compl] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2461), + [anon_sym_PLUS_PLUS] = ACTIONS(2461), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_number_literal] = ACTIONS(2461), + [anon_sym_L_SQUOTE] = ACTIONS(2461), + [anon_sym_u_SQUOTE] = ACTIONS(2461), + [anon_sym_U_SQUOTE] = ACTIONS(2461), + [anon_sym_u8_SQUOTE] = ACTIONS(2461), + [anon_sym_SQUOTE] = ACTIONS(2461), + [anon_sym_L_DQUOTE] = ACTIONS(2461), + [anon_sym_u_DQUOTE] = ACTIONS(2461), + [anon_sym_U_DQUOTE] = ACTIONS(2461), + [anon_sym_u8_DQUOTE] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(2461), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_null] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2459), + [anon_sym_decltype] = ACTIONS(2459), + [anon_sym_virtual] = ACTIONS(2459), + [anon_sym_typename] = ACTIONS(2459), + [anon_sym_template] = ACTIONS(2459), + [anon_sym_try] = ACTIONS(2459), + [anon_sym_delete] = ACTIONS(2459), + [anon_sym_throw] = ACTIONS(2459), + [anon_sym_co_return] = ACTIONS(2459), + [anon_sym_co_yield] = ACTIONS(2459), + [anon_sym_R_DQUOTE] = ACTIONS(2461), + [anon_sym_LR_DQUOTE] = ACTIONS(2461), + [anon_sym_uR_DQUOTE] = ACTIONS(2461), + [anon_sym_UR_DQUOTE] = ACTIONS(2461), + [anon_sym_u8R_DQUOTE] = ACTIONS(2461), + [anon_sym_co_await] = ACTIONS(2459), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2459), + [sym_this] = ACTIONS(2459), + [sym_nullptr] = ACTIONS(2459), + }, + [1120] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1121] = { + [sym_identifier] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_typedef] = ACTIONS(2553), + [anon_sym_extern] = ACTIONS(2553), + [anon_sym___attribute__] = ACTIONS(2553), + [anon_sym_COLON_COLON] = ACTIONS(2555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2555), + [anon_sym___declspec] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2553), + [anon_sym_static] = ACTIONS(2553), + [anon_sym_register] = ACTIONS(2553), + [anon_sym_inline] = ACTIONS(2553), + [anon_sym_thread_local] = ACTIONS(2553), + [anon_sym_input] = ACTIONS(2553), + [anon_sym_const] = ACTIONS(2553), + [anon_sym_volatile] = ACTIONS(2553), + [anon_sym_restrict] = ACTIONS(2553), + [anon_sym__Atomic] = ACTIONS(2553), + [anon_sym_mutable] = ACTIONS(2553), + [anon_sym_constexpr] = ACTIONS(2553), + [anon_sym_constinit] = ACTIONS(2553), + [anon_sym_consteval] = ACTIONS(2553), + [anon_sym_signed] = ACTIONS(2553), + [anon_sym_unsigned] = ACTIONS(2553), + [anon_sym_long] = ACTIONS(2553), + [anon_sym_short] = ACTIONS(2553), + [sym_primitive_type] = ACTIONS(2553), + [anon_sym_enum] = ACTIONS(2553), + [anon_sym_class] = ACTIONS(2553), + [anon_sym_struct] = ACTIONS(2553), + [anon_sym_union] = ACTIONS(2553), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_else] = ACTIONS(2553), + [anon_sym_switch] = ACTIONS(2553), + [anon_sym_while] = ACTIONS(2553), + [anon_sym_do] = ACTIONS(2553), + [anon_sym_for] = ACTIONS(2553), + [anon_sym_return] = ACTIONS(2553), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_goto] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2553), + [anon_sym_compl] = ACTIONS(2553), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_sizeof] = ACTIONS(2553), + [sym_number_literal] = ACTIONS(2555), + [anon_sym_L_SQUOTE] = ACTIONS(2555), + [anon_sym_u_SQUOTE] = ACTIONS(2555), + [anon_sym_U_SQUOTE] = ACTIONS(2555), + [anon_sym_u8_SQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE] = ACTIONS(2555), + [anon_sym_L_DQUOTE] = ACTIONS(2555), + [anon_sym_u_DQUOTE] = ACTIONS(2555), + [anon_sym_U_DQUOTE] = ACTIONS(2555), + [anon_sym_u8_DQUOTE] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(2555), + [sym_true] = ACTIONS(2553), + [sym_false] = ACTIONS(2553), + [sym_null] = ACTIONS(2553), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2553), + [anon_sym_decltype] = ACTIONS(2553), + [anon_sym_virtual] = ACTIONS(2553), + [anon_sym_typename] = ACTIONS(2553), + [anon_sym_template] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2553), + [anon_sym_delete] = ACTIONS(2553), + [anon_sym_throw] = ACTIONS(2553), + [anon_sym_co_return] = ACTIONS(2553), + [anon_sym_co_yield] = ACTIONS(2553), + [anon_sym_R_DQUOTE] = ACTIONS(2555), + [anon_sym_LR_DQUOTE] = ACTIONS(2555), + [anon_sym_uR_DQUOTE] = ACTIONS(2555), + [anon_sym_UR_DQUOTE] = ACTIONS(2555), + [anon_sym_u8R_DQUOTE] = ACTIONS(2555), + [anon_sym_co_await] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(2553), + [anon_sym_requires] = ACTIONS(2553), + [sym_this] = ACTIONS(2553), + [sym_nullptr] = ACTIONS(2553), + }, + [1122] = { + [sym_identifier] = ACTIONS(2491), + [anon_sym_LPAREN2] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2493), + [anon_sym_TILDE] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_AMP] = ACTIONS(2493), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_typedef] = ACTIONS(2491), + [anon_sym_extern] = ACTIONS(2491), + [anon_sym___attribute__] = ACTIONS(2491), + [anon_sym_COLON_COLON] = ACTIONS(2493), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), + [anon_sym___declspec] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_static] = ACTIONS(2491), + [anon_sym_register] = ACTIONS(2491), + [anon_sym_inline] = ACTIONS(2491), + [anon_sym_thread_local] = ACTIONS(2491), + [anon_sym_input] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_volatile] = ACTIONS(2491), + [anon_sym_restrict] = ACTIONS(2491), + [anon_sym__Atomic] = ACTIONS(2491), + [anon_sym_mutable] = ACTIONS(2491), + [anon_sym_constexpr] = ACTIONS(2491), + [anon_sym_constinit] = ACTIONS(2491), + [anon_sym_consteval] = ACTIONS(2491), + [anon_sym_signed] = ACTIONS(2491), + [anon_sym_unsigned] = ACTIONS(2491), + [anon_sym_long] = ACTIONS(2491), + [anon_sym_short] = ACTIONS(2491), + [sym_primitive_type] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_class] = ACTIONS(2491), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_else] = ACTIONS(2491), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_while] = ACTIONS(2491), + [anon_sym_do] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_goto] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2491), + [anon_sym_compl] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2493), + [anon_sym_PLUS_PLUS] = ACTIONS(2493), + [anon_sym_sizeof] = ACTIONS(2491), + [sym_number_literal] = ACTIONS(2493), + [anon_sym_L_SQUOTE] = ACTIONS(2493), + [anon_sym_u_SQUOTE] = ACTIONS(2493), + [anon_sym_U_SQUOTE] = ACTIONS(2493), + [anon_sym_u8_SQUOTE] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_L_DQUOTE] = ACTIONS(2493), + [anon_sym_u_DQUOTE] = ACTIONS(2493), + [anon_sym_U_DQUOTE] = ACTIONS(2493), + [anon_sym_u8_DQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2493), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_null] = ACTIONS(2491), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2491), + [anon_sym_decltype] = ACTIONS(2491), + [anon_sym_virtual] = ACTIONS(2491), + [anon_sym_typename] = ACTIONS(2491), + [anon_sym_template] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2491), + [anon_sym_delete] = ACTIONS(2491), + [anon_sym_throw] = ACTIONS(2491), + [anon_sym_co_return] = ACTIONS(2491), + [anon_sym_co_yield] = ACTIONS(2491), + [anon_sym_R_DQUOTE] = ACTIONS(2493), + [anon_sym_LR_DQUOTE] = ACTIONS(2493), + [anon_sym_uR_DQUOTE] = ACTIONS(2493), + [anon_sym_UR_DQUOTE] = ACTIONS(2493), + [anon_sym_u8R_DQUOTE] = ACTIONS(2493), + [anon_sym_co_await] = ACTIONS(2491), + [anon_sym_new] = ACTIONS(2491), + [anon_sym_requires] = ACTIONS(2491), + [sym_this] = ACTIONS(2491), + [sym_nullptr] = ACTIONS(2491), + }, + [1123] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1124] = { + [sym_identifier] = ACTIONS(2507), + [anon_sym_LPAREN2] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2509), + [anon_sym_TILDE] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_typedef] = ACTIONS(2507), + [anon_sym_extern] = ACTIONS(2507), + [anon_sym___attribute__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), + [anon_sym___declspec] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2507), + [anon_sym_register] = ACTIONS(2507), + [anon_sym_inline] = ACTIONS(2507), + [anon_sym_thread_local] = ACTIONS(2507), + [anon_sym_input] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [anon_sym_volatile] = ACTIONS(2507), + [anon_sym_restrict] = ACTIONS(2507), + [anon_sym__Atomic] = ACTIONS(2507), + [anon_sym_mutable] = ACTIONS(2507), + [anon_sym_constexpr] = ACTIONS(2507), + [anon_sym_constinit] = ACTIONS(2507), + [anon_sym_consteval] = ACTIONS(2507), + [anon_sym_signed] = ACTIONS(2507), + [anon_sym_unsigned] = ACTIONS(2507), + [anon_sym_long] = ACTIONS(2507), + [anon_sym_short] = ACTIONS(2507), + [sym_primitive_type] = ACTIONS(2507), + [anon_sym_enum] = ACTIONS(2507), + [anon_sym_class] = ACTIONS(2507), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_union] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_else] = ACTIONS(2507), + [anon_sym_switch] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_do] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2507), + [anon_sym_not] = ACTIONS(2507), + [anon_sym_compl] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2509), + [anon_sym_sizeof] = ACTIONS(2507), + [sym_number_literal] = ACTIONS(2509), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2509), + [anon_sym_u_DQUOTE] = ACTIONS(2509), + [anon_sym_U_DQUOTE] = ACTIONS(2509), + [anon_sym_u8_DQUOTE] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2509), + [sym_true] = ACTIONS(2507), + [sym_false] = ACTIONS(2507), + [sym_null] = ACTIONS(2507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2507), + [anon_sym_decltype] = ACTIONS(2507), + [anon_sym_virtual] = ACTIONS(2507), + [anon_sym_typename] = ACTIONS(2507), + [anon_sym_template] = ACTIONS(2507), + [anon_sym_try] = ACTIONS(2507), + [anon_sym_delete] = ACTIONS(2507), + [anon_sym_throw] = ACTIONS(2507), + [anon_sym_co_return] = ACTIONS(2507), + [anon_sym_co_yield] = ACTIONS(2507), + [anon_sym_R_DQUOTE] = ACTIONS(2509), + [anon_sym_LR_DQUOTE] = ACTIONS(2509), + [anon_sym_uR_DQUOTE] = ACTIONS(2509), + [anon_sym_UR_DQUOTE] = ACTIONS(2509), + [anon_sym_u8R_DQUOTE] = ACTIONS(2509), + [anon_sym_co_await] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(2507), + [anon_sym_requires] = ACTIONS(2507), + [sym_this] = ACTIONS(2507), + [sym_nullptr] = ACTIONS(2507), + }, + [1125] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1126] = { + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_PLUS] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_typedef] = ACTIONS(2483), + [anon_sym_extern] = ACTIONS(2483), + [anon_sym___attribute__] = ACTIONS(2483), + [anon_sym_COLON_COLON] = ACTIONS(2485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), + [anon_sym___declspec] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_static] = ACTIONS(2483), + [anon_sym_register] = ACTIONS(2483), + [anon_sym_inline] = ACTIONS(2483), + [anon_sym_thread_local] = ACTIONS(2483), + [anon_sym_input] = ACTIONS(2483), + [anon_sym_const] = ACTIONS(2483), + [anon_sym_volatile] = ACTIONS(2483), + [anon_sym_restrict] = ACTIONS(2483), + [anon_sym__Atomic] = ACTIONS(2483), + [anon_sym_mutable] = ACTIONS(2483), + [anon_sym_constexpr] = ACTIONS(2483), + [anon_sym_constinit] = ACTIONS(2483), + [anon_sym_consteval] = ACTIONS(2483), + [anon_sym_signed] = ACTIONS(2483), + [anon_sym_unsigned] = ACTIONS(2483), + [anon_sym_long] = ACTIONS(2483), + [anon_sym_short] = ACTIONS(2483), + [sym_primitive_type] = ACTIONS(2483), + [anon_sym_enum] = ACTIONS(2483), + [anon_sym_class] = ACTIONS(2483), + [anon_sym_struct] = ACTIONS(2483), + [anon_sym_union] = ACTIONS(2483), + [anon_sym_if] = ACTIONS(2483), + [anon_sym_else] = ACTIONS(2483), + [anon_sym_switch] = ACTIONS(2483), + [anon_sym_while] = ACTIONS(2483), + [anon_sym_do] = ACTIONS(2483), + [anon_sym_for] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(2483), + [anon_sym_continue] = ACTIONS(2483), + [anon_sym_goto] = ACTIONS(2483), + [anon_sym_not] = ACTIONS(2483), + [anon_sym_compl] = ACTIONS(2483), + [anon_sym_DASH_DASH] = ACTIONS(2485), + [anon_sym_PLUS_PLUS] = ACTIONS(2485), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_number_literal] = ACTIONS(2485), + [anon_sym_L_SQUOTE] = ACTIONS(2485), + [anon_sym_u_SQUOTE] = ACTIONS(2485), + [anon_sym_U_SQUOTE] = ACTIONS(2485), + [anon_sym_u8_SQUOTE] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_L_DQUOTE] = ACTIONS(2485), + [anon_sym_u_DQUOTE] = ACTIONS(2485), + [anon_sym_U_DQUOTE] = ACTIONS(2485), + [anon_sym_u8_DQUOTE] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2485), + [sym_true] = ACTIONS(2483), + [sym_false] = ACTIONS(2483), + [sym_null] = ACTIONS(2483), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2483), + [anon_sym_decltype] = ACTIONS(2483), + [anon_sym_virtual] = ACTIONS(2483), + [anon_sym_typename] = ACTIONS(2483), + [anon_sym_template] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2483), + [anon_sym_delete] = ACTIONS(2483), + [anon_sym_throw] = ACTIONS(2483), + [anon_sym_co_return] = ACTIONS(2483), + [anon_sym_co_yield] = ACTIONS(2483), + [anon_sym_R_DQUOTE] = ACTIONS(2485), + [anon_sym_LR_DQUOTE] = ACTIONS(2485), + [anon_sym_uR_DQUOTE] = ACTIONS(2485), + [anon_sym_UR_DQUOTE] = ACTIONS(2485), + [anon_sym_u8R_DQUOTE] = ACTIONS(2485), + [anon_sym_co_await] = ACTIONS(2483), + [anon_sym_new] = ACTIONS(2483), + [anon_sym_requires] = ACTIONS(2483), + [sym_this] = ACTIONS(2483), + [sym_nullptr] = ACTIONS(2483), + }, + [1127] = { + [sym_identifier] = ACTIONS(2503), + [anon_sym_LPAREN2] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2505), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_typedef] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym___attribute__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), + [anon_sym___declspec] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_register] = ACTIONS(2503), + [anon_sym_inline] = ACTIONS(2503), + [anon_sym_thread_local] = ACTIONS(2503), + [anon_sym_input] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_volatile] = ACTIONS(2503), + [anon_sym_restrict] = ACTIONS(2503), + [anon_sym__Atomic] = ACTIONS(2503), + [anon_sym_mutable] = ACTIONS(2503), + [anon_sym_constexpr] = ACTIONS(2503), + [anon_sym_constinit] = ACTIONS(2503), + [anon_sym_consteval] = ACTIONS(2503), + [anon_sym_signed] = ACTIONS(2503), + [anon_sym_unsigned] = ACTIONS(2503), + [anon_sym_long] = ACTIONS(2503), + [anon_sym_short] = ACTIONS(2503), + [sym_primitive_type] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_else] = ACTIONS(2503), + [anon_sym_switch] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_goto] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_sizeof] = ACTIONS(2503), + [sym_number_literal] = ACTIONS(2505), + [anon_sym_L_SQUOTE] = ACTIONS(2505), + [anon_sym_u_SQUOTE] = ACTIONS(2505), + [anon_sym_U_SQUOTE] = ACTIONS(2505), + [anon_sym_u8_SQUOTE] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_L_DQUOTE] = ACTIONS(2505), + [anon_sym_u_DQUOTE] = ACTIONS(2505), + [anon_sym_U_DQUOTE] = ACTIONS(2505), + [anon_sym_u8_DQUOTE] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym_true] = ACTIONS(2503), + [sym_false] = ACTIONS(2503), + [sym_null] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2503), + [anon_sym_decltype] = ACTIONS(2503), + [anon_sym_virtual] = ACTIONS(2503), + [anon_sym_typename] = ACTIONS(2503), + [anon_sym_template] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [anon_sym_delete] = ACTIONS(2503), + [anon_sym_throw] = ACTIONS(2503), + [anon_sym_co_return] = ACTIONS(2503), + [anon_sym_co_yield] = ACTIONS(2503), + [anon_sym_R_DQUOTE] = ACTIONS(2505), + [anon_sym_LR_DQUOTE] = ACTIONS(2505), + [anon_sym_uR_DQUOTE] = ACTIONS(2505), + [anon_sym_UR_DQUOTE] = ACTIONS(2505), + [anon_sym_u8R_DQUOTE] = ACTIONS(2505), + [anon_sym_co_await] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2503), + [anon_sym_requires] = ACTIONS(2503), + [sym_this] = ACTIONS(2503), + [sym_nullptr] = ACTIONS(2503), + }, + [1128] = { + [sym_type_qualifier] = STATE(2494), + [sym__expression] = STATE(4023), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(2494), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1129] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1130] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1131] = { + [sym_type_qualifier] = STATE(1171), + [sym__expression] = STATE(4024), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(1171), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3136), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1132] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1133] = { + [sym_identifier] = ACTIONS(2487), + [anon_sym_LPAREN2] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_AMP] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_typedef] = ACTIONS(2487), + [anon_sym_extern] = ACTIONS(2487), + [anon_sym___attribute__] = ACTIONS(2487), + [anon_sym_COLON_COLON] = ACTIONS(2489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), + [anon_sym___declspec] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_register] = ACTIONS(2487), + [anon_sym_inline] = ACTIONS(2487), + [anon_sym_thread_local] = ACTIONS(2487), + [anon_sym_input] = ACTIONS(2487), + [anon_sym_const] = ACTIONS(2487), + [anon_sym_volatile] = ACTIONS(2487), + [anon_sym_restrict] = ACTIONS(2487), + [anon_sym__Atomic] = ACTIONS(2487), + [anon_sym_mutable] = ACTIONS(2487), + [anon_sym_constexpr] = ACTIONS(2487), + [anon_sym_constinit] = ACTIONS(2487), + [anon_sym_consteval] = ACTIONS(2487), + [anon_sym_signed] = ACTIONS(2487), + [anon_sym_unsigned] = ACTIONS(2487), + [anon_sym_long] = ACTIONS(2487), + [anon_sym_short] = ACTIONS(2487), + [sym_primitive_type] = ACTIONS(2487), + [anon_sym_enum] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_struct] = ACTIONS(2487), + [anon_sym_union] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2487), + [anon_sym_switch] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_do] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_goto] = ACTIONS(2487), + [anon_sym_not] = ACTIONS(2487), + [anon_sym_compl] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2489), + [anon_sym_sizeof] = ACTIONS(2487), + [sym_number_literal] = ACTIONS(2489), + [anon_sym_L_SQUOTE] = ACTIONS(2489), + [anon_sym_u_SQUOTE] = ACTIONS(2489), + [anon_sym_U_SQUOTE] = ACTIONS(2489), + [anon_sym_u8_SQUOTE] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(2489), + [anon_sym_L_DQUOTE] = ACTIONS(2489), + [anon_sym_u_DQUOTE] = ACTIONS(2489), + [anon_sym_U_DQUOTE] = ACTIONS(2489), + [anon_sym_u8_DQUOTE] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_null] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2487), + [anon_sym_decltype] = ACTIONS(2487), + [anon_sym_virtual] = ACTIONS(2487), + [anon_sym_typename] = ACTIONS(2487), + [anon_sym_template] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [anon_sym_delete] = ACTIONS(2487), + [anon_sym_throw] = ACTIONS(2487), + [anon_sym_co_return] = ACTIONS(2487), + [anon_sym_co_yield] = ACTIONS(2487), + [anon_sym_R_DQUOTE] = ACTIONS(2489), + [anon_sym_LR_DQUOTE] = ACTIONS(2489), + [anon_sym_uR_DQUOTE] = ACTIONS(2489), + [anon_sym_UR_DQUOTE] = ACTIONS(2489), + [anon_sym_u8R_DQUOTE] = ACTIONS(2489), + [anon_sym_co_await] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_requires] = ACTIONS(2487), + [sym_this] = ACTIONS(2487), + [sym_nullptr] = ACTIONS(2487), + }, + [1134] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1135] = { [sym_identifier] = ACTIONS(2539), [anon_sym_LPAREN2] = ACTIONS(2541), [anon_sym_BANG] = ACTIONS(2541), @@ -172873,6 +166250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2539), [anon_sym_inline] = ACTIONS(2539), [anon_sym_thread_local] = ACTIONS(2539), + [anon_sym_input] = ACTIONS(2539), [anon_sym_const] = ACTIONS(2539), [anon_sym_volatile] = ACTIONS(2539), [anon_sym_restrict] = ACTIONS(2539), @@ -172891,7 +166269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2539), [anon_sym_union] = ACTIONS(2539), [anon_sym_if] = ACTIONS(2539), - [anon_sym_else] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(3138), [anon_sym_switch] = ACTIONS(2539), [anon_sym_while] = ACTIONS(2539), [anon_sym_do] = ACTIONS(2539), @@ -172941,36 +166319,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2539), [sym_nullptr] = ACTIONS(2539), }, - [1220] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), + [1136] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1137] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1138] = { + [sym_type_qualifier] = STATE(1223), + [sym__expression] = STATE(4004), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1222), - [sym_compound_requirement] = STATE(1222), - [sym__requirement] = STATE(1222), [sym_requires_clause] = STATE(3521), [sym_requires_expression] = STATE(3521), [sym_lambda_expression] = STATE(3521), @@ -172979,29 +166535,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1222), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), + [aux_sym_type_definition_repeat1] = STATE(1223), + [sym_identifier] = ACTIONS(3140), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3142), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3144), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -173017,140 +166579,2957 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), + [anon_sym_delete] = ACTIONS(3005), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1221] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [1139] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, - [1222] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), + [1140] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1141] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1142] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1143] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1144] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1145] = { + [sym_identifier] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(2557), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_typedef] = ACTIONS(2557), + [anon_sym_extern] = ACTIONS(2557), + [anon_sym___attribute__] = ACTIONS(2557), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2557), + [anon_sym_register] = ACTIONS(2557), + [anon_sym_inline] = ACTIONS(2557), + [anon_sym_thread_local] = ACTIONS(2557), + [anon_sym_input] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [anon_sym_volatile] = ACTIONS(2557), + [anon_sym_restrict] = ACTIONS(2557), + [anon_sym__Atomic] = ACTIONS(2557), + [anon_sym_mutable] = ACTIONS(2557), + [anon_sym_constexpr] = ACTIONS(2557), + [anon_sym_constinit] = ACTIONS(2557), + [anon_sym_consteval] = ACTIONS(2557), + [anon_sym_signed] = ACTIONS(2557), + [anon_sym_unsigned] = ACTIONS(2557), + [anon_sym_long] = ACTIONS(2557), + [anon_sym_short] = ACTIONS(2557), + [sym_primitive_type] = ACTIONS(2557), + [anon_sym_enum] = ACTIONS(2557), + [anon_sym_class] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(2557), + [anon_sym_union] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_else] = ACTIONS(2557), + [anon_sym_switch] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_do] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_goto] = ACTIONS(2557), + [anon_sym_not] = ACTIONS(2557), + [anon_sym_compl] = ACTIONS(2557), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_sizeof] = ACTIONS(2557), + [sym_number_literal] = ACTIONS(2559), + [anon_sym_L_SQUOTE] = ACTIONS(2559), + [anon_sym_u_SQUOTE] = ACTIONS(2559), + [anon_sym_U_SQUOTE] = ACTIONS(2559), + [anon_sym_u8_SQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(2559), + [anon_sym_L_DQUOTE] = ACTIONS(2559), + [anon_sym_u_DQUOTE] = ACTIONS(2559), + [anon_sym_U_DQUOTE] = ACTIONS(2559), + [anon_sym_u8_DQUOTE] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [sym_true] = ACTIONS(2557), + [sym_false] = ACTIONS(2557), + [sym_null] = ACTIONS(2557), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2557), + [anon_sym_decltype] = ACTIONS(2557), + [anon_sym_virtual] = ACTIONS(2557), + [anon_sym_typename] = ACTIONS(2557), + [anon_sym_template] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2557), + [anon_sym_delete] = ACTIONS(2557), + [anon_sym_throw] = ACTIONS(2557), + [anon_sym_co_return] = ACTIONS(2557), + [anon_sym_co_yield] = ACTIONS(2557), + [anon_sym_R_DQUOTE] = ACTIONS(2559), + [anon_sym_LR_DQUOTE] = ACTIONS(2559), + [anon_sym_uR_DQUOTE] = ACTIONS(2559), + [anon_sym_UR_DQUOTE] = ACTIONS(2559), + [anon_sym_u8R_DQUOTE] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2557), + [anon_sym_requires] = ACTIONS(2557), + [sym_this] = ACTIONS(2557), + [sym_nullptr] = ACTIONS(2557), + }, + [1146] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1147] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1148] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1149] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1150] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1151] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1152] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1153] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1154] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1155] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1156] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1157] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1158] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1159] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1160] = { + [sym_identifier] = ACTIONS(2549), + [anon_sym_LPAREN2] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_typedef] = ACTIONS(2549), + [anon_sym_extern] = ACTIONS(2549), + [anon_sym___attribute__] = ACTIONS(2549), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2551), + [anon_sym___declspec] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_register] = ACTIONS(2549), + [anon_sym_inline] = ACTIONS(2549), + [anon_sym_thread_local] = ACTIONS(2549), + [anon_sym_input] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_volatile] = ACTIONS(2549), + [anon_sym_restrict] = ACTIONS(2549), + [anon_sym__Atomic] = ACTIONS(2549), + [anon_sym_mutable] = ACTIONS(2549), + [anon_sym_constexpr] = ACTIONS(2549), + [anon_sym_constinit] = ACTIONS(2549), + [anon_sym_consteval] = ACTIONS(2549), + [anon_sym_signed] = ACTIONS(2549), + [anon_sym_unsigned] = ACTIONS(2549), + [anon_sym_long] = ACTIONS(2549), + [anon_sym_short] = ACTIONS(2549), + [sym_primitive_type] = ACTIONS(2549), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_struct] = ACTIONS(2549), + [anon_sym_union] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(2549), + [anon_sym_else] = ACTIONS(2549), + [anon_sym_switch] = ACTIONS(2549), + [anon_sym_while] = ACTIONS(2549), + [anon_sym_do] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(2549), + [anon_sym_return] = ACTIONS(2549), + [anon_sym_break] = ACTIONS(2549), + [anon_sym_continue] = ACTIONS(2549), + [anon_sym_goto] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(2549), + [anon_sym_compl] = ACTIONS(2549), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_sizeof] = ACTIONS(2549), + [sym_number_literal] = ACTIONS(2551), + [anon_sym_L_SQUOTE] = ACTIONS(2551), + [anon_sym_u_SQUOTE] = ACTIONS(2551), + [anon_sym_U_SQUOTE] = ACTIONS(2551), + [anon_sym_u8_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_L_DQUOTE] = ACTIONS(2551), + [anon_sym_u_DQUOTE] = ACTIONS(2551), + [anon_sym_U_DQUOTE] = ACTIONS(2551), + [anon_sym_u8_DQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [sym_true] = ACTIONS(2549), + [sym_false] = ACTIONS(2549), + [sym_null] = ACTIONS(2549), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2549), + [anon_sym_decltype] = ACTIONS(2549), + [anon_sym_virtual] = ACTIONS(2549), + [anon_sym_typename] = ACTIONS(2549), + [anon_sym_template] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2549), + [anon_sym_delete] = ACTIONS(2549), + [anon_sym_throw] = ACTIONS(2549), + [anon_sym_co_return] = ACTIONS(2549), + [anon_sym_co_yield] = ACTIONS(2549), + [anon_sym_R_DQUOTE] = ACTIONS(2551), + [anon_sym_LR_DQUOTE] = ACTIONS(2551), + [anon_sym_uR_DQUOTE] = ACTIONS(2551), + [anon_sym_UR_DQUOTE] = ACTIONS(2551), + [anon_sym_u8R_DQUOTE] = ACTIONS(2551), + [anon_sym_co_await] = ACTIONS(2549), + [anon_sym_new] = ACTIONS(2549), + [anon_sym_requires] = ACTIONS(2549), + [sym_this] = ACTIONS(2549), + [sym_nullptr] = ACTIONS(2549), + }, + [1161] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1162] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1163] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1164] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1165] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1166] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1167] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1168] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1169] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1170] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1171] = { + [sym_type_qualifier] = STATE(2494), + [sym__expression] = STATE(3838), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1234), - [sym_compound_requirement] = STATE(1234), - [sym__requirement] = STATE(1234), [sym_requires_clause] = STATE(3521), [sym_requires_expression] = STATE(3521), [sym_lambda_expression] = STATE(3521), @@ -173159,29 +169538,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1234), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), + [aux_sym_type_definition_repeat1] = STATE(2494), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3146), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3148), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -173197,1911 +169582,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), + [anon_sym_delete] = ACTIONS(3005), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1223] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [1172] = { + [sym_identifier] = ACTIONS(2479), + [anon_sym_LPAREN2] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_TILDE] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_typedef] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym___attribute__] = ACTIONS(2479), + [anon_sym_COLON_COLON] = ACTIONS(2481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), + [anon_sym___declspec] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_register] = ACTIONS(2479), + [anon_sym_inline] = ACTIONS(2479), + [anon_sym_thread_local] = ACTIONS(2479), + [anon_sym_input] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_volatile] = ACTIONS(2479), + [anon_sym_restrict] = ACTIONS(2479), + [anon_sym__Atomic] = ACTIONS(2479), + [anon_sym_mutable] = ACTIONS(2479), + [anon_sym_constexpr] = ACTIONS(2479), + [anon_sym_constinit] = ACTIONS(2479), + [anon_sym_consteval] = ACTIONS(2479), + [anon_sym_signed] = ACTIONS(2479), + [anon_sym_unsigned] = ACTIONS(2479), + [anon_sym_long] = ACTIONS(2479), + [anon_sym_short] = ACTIONS(2479), + [sym_primitive_type] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_class] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_switch] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_goto] = ACTIONS(2479), + [anon_sym_not] = ACTIONS(2479), + [anon_sym_compl] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2481), + [anon_sym_PLUS_PLUS] = ACTIONS(2481), + [anon_sym_sizeof] = ACTIONS(2479), + [sym_number_literal] = ACTIONS(2481), + [anon_sym_L_SQUOTE] = ACTIONS(2481), + [anon_sym_u_SQUOTE] = ACTIONS(2481), + [anon_sym_U_SQUOTE] = ACTIONS(2481), + [anon_sym_u8_SQUOTE] = ACTIONS(2481), + [anon_sym_SQUOTE] = ACTIONS(2481), + [anon_sym_L_DQUOTE] = ACTIONS(2481), + [anon_sym_u_DQUOTE] = ACTIONS(2481), + [anon_sym_U_DQUOTE] = ACTIONS(2481), + [anon_sym_u8_DQUOTE] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(2481), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2479), + [anon_sym_decltype] = ACTIONS(2479), + [anon_sym_virtual] = ACTIONS(2479), + [anon_sym_typename] = ACTIONS(2479), + [anon_sym_template] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2479), + [anon_sym_delete] = ACTIONS(2479), + [anon_sym_throw] = ACTIONS(2479), + [anon_sym_co_return] = ACTIONS(2479), + [anon_sym_co_yield] = ACTIONS(2479), + [anon_sym_R_DQUOTE] = ACTIONS(2481), + [anon_sym_LR_DQUOTE] = ACTIONS(2481), + [anon_sym_uR_DQUOTE] = ACTIONS(2481), + [anon_sym_UR_DQUOTE] = ACTIONS(2481), + [anon_sym_u8R_DQUOTE] = ACTIONS(2481), + [anon_sym_co_await] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(2479), + [anon_sym_requires] = ACTIONS(2479), + [sym_this] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), }, - [1224] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1260), - [sym_compound_requirement] = STATE(1260), - [sym__requirement] = STATE(1260), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1260), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1173] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), }, - [1225] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [1174] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), }, - [1226] = { - [sym_identifier] = 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] = ACTIONS(3077), - [anon_sym_SEMI] = ACTIONS(3077), - [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_LBRACE] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_static] = ACTIONS(3075), - [anon_sym_register] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym_thread_local] = ACTIONS(3075), - [anon_sym_const] = ACTIONS(3075), - [anon_sym_volatile] = ACTIONS(3075), - [anon_sym_restrict] = ACTIONS(3075), - [anon_sym__Atomic] = ACTIONS(3075), - [anon_sym_mutable] = ACTIONS(3075), - [anon_sym_constexpr] = ACTIONS(3075), - [anon_sym_constinit] = ACTIONS(3075), - [anon_sym_consteval] = ACTIONS(3075), - [anon_sym_signed] = ACTIONS(3075), - [anon_sym_unsigned] = ACTIONS(3075), - [anon_sym_long] = ACTIONS(3075), - [anon_sym_short] = 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), - [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), - [sym_null] = ACTIONS(3075), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3075), - [anon_sym_decltype] = ACTIONS(3075), - [anon_sym_virtual] = ACTIONS(3075), - [anon_sym_typename] = ACTIONS(3075), - [anon_sym_template] = ACTIONS(3075), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_throw] = 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), - [sym_nullptr] = ACTIONS(3075), - }, - [1227] = { - [sym_identifier] = ACTIONS(2599), - [anon_sym_LPAREN2] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2599), - [anon_sym_PLUS] = ACTIONS(2599), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_SEMI] = ACTIONS(2601), - [anon_sym_typedef] = ACTIONS(2599), - [anon_sym_extern] = ACTIONS(2599), - [anon_sym___attribute__] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), - [anon_sym___declspec] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_static] = ACTIONS(2599), - [anon_sym_register] = ACTIONS(2599), - [anon_sym_inline] = ACTIONS(2599), - [anon_sym_thread_local] = ACTIONS(2599), - [anon_sym_const] = ACTIONS(2599), - [anon_sym_volatile] = ACTIONS(2599), - [anon_sym_restrict] = ACTIONS(2599), - [anon_sym__Atomic] = ACTIONS(2599), - [anon_sym_mutable] = ACTIONS(2599), - [anon_sym_constexpr] = ACTIONS(2599), - [anon_sym_constinit] = ACTIONS(2599), - [anon_sym_consteval] = ACTIONS(2599), - [anon_sym_signed] = ACTIONS(2599), - [anon_sym_unsigned] = ACTIONS(2599), - [anon_sym_long] = ACTIONS(2599), - [anon_sym_short] = ACTIONS(2599), - [sym_primitive_type] = ACTIONS(2599), - [anon_sym_enum] = ACTIONS(2599), - [anon_sym_class] = ACTIONS(2599), - [anon_sym_struct] = ACTIONS(2599), - [anon_sym_union] = ACTIONS(2599), - [anon_sym_if] = ACTIONS(2599), - [anon_sym_else] = ACTIONS(2599), - [anon_sym_switch] = ACTIONS(2599), - [anon_sym_while] = ACTIONS(2599), - [anon_sym_do] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2599), - [anon_sym_break] = ACTIONS(2599), - [anon_sym_continue] = ACTIONS(2599), - [anon_sym_goto] = ACTIONS(2599), - [anon_sym_not] = ACTIONS(2599), - [anon_sym_compl] = ACTIONS(2599), - [anon_sym_DASH_DASH] = ACTIONS(2601), - [anon_sym_PLUS_PLUS] = ACTIONS(2601), - [anon_sym_sizeof] = ACTIONS(2599), - [sym_number_literal] = ACTIONS(2601), - [anon_sym_L_SQUOTE] = ACTIONS(2601), - [anon_sym_u_SQUOTE] = ACTIONS(2601), - [anon_sym_U_SQUOTE] = ACTIONS(2601), - [anon_sym_u8_SQUOTE] = ACTIONS(2601), - [anon_sym_SQUOTE] = ACTIONS(2601), - [anon_sym_L_DQUOTE] = ACTIONS(2601), - [anon_sym_u_DQUOTE] = ACTIONS(2601), - [anon_sym_U_DQUOTE] = ACTIONS(2601), - [anon_sym_u8_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [sym_true] = ACTIONS(2599), - [sym_false] = ACTIONS(2599), - [sym_null] = ACTIONS(2599), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2599), - [anon_sym_decltype] = ACTIONS(2599), - [anon_sym_virtual] = ACTIONS(2599), - [anon_sym_typename] = ACTIONS(2599), - [anon_sym_template] = ACTIONS(2599), - [anon_sym_try] = ACTIONS(2599), - [anon_sym_delete] = ACTIONS(2599), - [anon_sym_throw] = ACTIONS(2599), - [anon_sym_co_return] = ACTIONS(2599), - [anon_sym_co_yield] = ACTIONS(2599), - [anon_sym_R_DQUOTE] = ACTIONS(2601), - [anon_sym_LR_DQUOTE] = ACTIONS(2601), - [anon_sym_uR_DQUOTE] = ACTIONS(2601), - [anon_sym_UR_DQUOTE] = ACTIONS(2601), - [anon_sym_u8R_DQUOTE] = ACTIONS(2601), - [anon_sym_co_await] = ACTIONS(2599), - [anon_sym_new] = ACTIONS(2599), - [anon_sym_requires] = ACTIONS(2599), - [sym_this] = ACTIONS(2599), - [sym_nullptr] = ACTIONS(2599), - }, - [1228] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1229] = { - [sym_identifier] = ACTIONS(2595), - [anon_sym_LPAREN2] = ACTIONS(2597), - [anon_sym_BANG] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2595), - [anon_sym_PLUS] = ACTIONS(2595), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_SEMI] = ACTIONS(2597), - [anon_sym_typedef] = ACTIONS(2595), - [anon_sym_extern] = ACTIONS(2595), - [anon_sym___attribute__] = ACTIONS(2595), - [anon_sym_COLON_COLON] = ACTIONS(2597), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), - [anon_sym___declspec] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_static] = ACTIONS(2595), - [anon_sym_register] = ACTIONS(2595), - [anon_sym_inline] = ACTIONS(2595), - [anon_sym_thread_local] = ACTIONS(2595), - [anon_sym_const] = ACTIONS(2595), - [anon_sym_volatile] = ACTIONS(2595), - [anon_sym_restrict] = ACTIONS(2595), - [anon_sym__Atomic] = ACTIONS(2595), - [anon_sym_mutable] = ACTIONS(2595), - [anon_sym_constexpr] = ACTIONS(2595), - [anon_sym_constinit] = ACTIONS(2595), - [anon_sym_consteval] = ACTIONS(2595), - [anon_sym_signed] = ACTIONS(2595), - [anon_sym_unsigned] = ACTIONS(2595), - [anon_sym_long] = ACTIONS(2595), - [anon_sym_short] = ACTIONS(2595), - [sym_primitive_type] = ACTIONS(2595), - [anon_sym_enum] = ACTIONS(2595), - [anon_sym_class] = ACTIONS(2595), - [anon_sym_struct] = ACTIONS(2595), - [anon_sym_union] = ACTIONS(2595), - [anon_sym_if] = ACTIONS(2595), - [anon_sym_else] = ACTIONS(2595), - [anon_sym_switch] = ACTIONS(2595), - [anon_sym_while] = ACTIONS(2595), - [anon_sym_do] = ACTIONS(2595), - [anon_sym_for] = ACTIONS(2595), - [anon_sym_return] = ACTIONS(2595), - [anon_sym_break] = ACTIONS(2595), - [anon_sym_continue] = ACTIONS(2595), - [anon_sym_goto] = ACTIONS(2595), - [anon_sym_not] = ACTIONS(2595), - [anon_sym_compl] = ACTIONS(2595), - [anon_sym_DASH_DASH] = ACTIONS(2597), - [anon_sym_PLUS_PLUS] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2595), - [sym_number_literal] = ACTIONS(2597), - [anon_sym_L_SQUOTE] = ACTIONS(2597), - [anon_sym_u_SQUOTE] = ACTIONS(2597), - [anon_sym_U_SQUOTE] = ACTIONS(2597), - [anon_sym_u8_SQUOTE] = ACTIONS(2597), - [anon_sym_SQUOTE] = ACTIONS(2597), - [anon_sym_L_DQUOTE] = ACTIONS(2597), - [anon_sym_u_DQUOTE] = ACTIONS(2597), - [anon_sym_U_DQUOTE] = ACTIONS(2597), - [anon_sym_u8_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [sym_true] = ACTIONS(2595), - [sym_false] = ACTIONS(2595), - [sym_null] = ACTIONS(2595), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2595), - [anon_sym_decltype] = ACTIONS(2595), - [anon_sym_virtual] = ACTIONS(2595), - [anon_sym_typename] = ACTIONS(2595), - [anon_sym_template] = ACTIONS(2595), - [anon_sym_try] = ACTIONS(2595), - [anon_sym_delete] = ACTIONS(2595), - [anon_sym_throw] = ACTIONS(2595), - [anon_sym_co_return] = ACTIONS(2595), - [anon_sym_co_yield] = ACTIONS(2595), - [anon_sym_R_DQUOTE] = ACTIONS(2597), - [anon_sym_LR_DQUOTE] = ACTIONS(2597), - [anon_sym_uR_DQUOTE] = ACTIONS(2597), - [anon_sym_UR_DQUOTE] = ACTIONS(2597), - [anon_sym_u8R_DQUOTE] = ACTIONS(2597), - [anon_sym_co_await] = ACTIONS(2595), - [anon_sym_new] = ACTIONS(2595), - [anon_sym_requires] = ACTIONS(2595), - [sym_this] = ACTIONS(2595), - [sym_nullptr] = ACTIONS(2595), - }, - [1230] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1210), - [sym_compound_requirement] = STATE(1210), - [sym__requirement] = STATE(1210), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1210), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1231] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1233), - [sym_compound_requirement] = STATE(1233), - [sym__requirement] = STATE(1233), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1233), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1232] = { - [sym_identifier] = ACTIONS(2627), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_PLUS] = ACTIONS(2627), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym_typedef] = ACTIONS(2627), - [anon_sym_extern] = ACTIONS(2627), - [anon_sym___attribute__] = ACTIONS(2627), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), - [anon_sym___declspec] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_static] = ACTIONS(2627), - [anon_sym_register] = ACTIONS(2627), - [anon_sym_inline] = ACTIONS(2627), - [anon_sym_thread_local] = ACTIONS(2627), - [anon_sym_const] = ACTIONS(2627), - [anon_sym_volatile] = ACTIONS(2627), - [anon_sym_restrict] = ACTIONS(2627), - [anon_sym__Atomic] = ACTIONS(2627), - [anon_sym_mutable] = ACTIONS(2627), - [anon_sym_constexpr] = ACTIONS(2627), - [anon_sym_constinit] = ACTIONS(2627), - [anon_sym_consteval] = ACTIONS(2627), - [anon_sym_signed] = ACTIONS(2627), - [anon_sym_unsigned] = ACTIONS(2627), - [anon_sym_long] = ACTIONS(2627), - [anon_sym_short] = ACTIONS(2627), - [sym_primitive_type] = ACTIONS(2627), - [anon_sym_enum] = ACTIONS(2627), - [anon_sym_class] = ACTIONS(2627), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_union] = ACTIONS(2627), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2627), - [anon_sym_switch] = ACTIONS(2627), - [anon_sym_while] = ACTIONS(2627), - [anon_sym_do] = ACTIONS(2627), - [anon_sym_for] = ACTIONS(2627), - [anon_sym_return] = ACTIONS(2627), - [anon_sym_break] = ACTIONS(2627), - [anon_sym_continue] = ACTIONS(2627), - [anon_sym_goto] = ACTIONS(2627), - [anon_sym_not] = ACTIONS(2627), - [anon_sym_compl] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_sizeof] = ACTIONS(2627), - [sym_number_literal] = ACTIONS(2629), - [anon_sym_L_SQUOTE] = ACTIONS(2629), - [anon_sym_u_SQUOTE] = ACTIONS(2629), - [anon_sym_U_SQUOTE] = ACTIONS(2629), - [anon_sym_u8_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_L_DQUOTE] = ACTIONS(2629), - [anon_sym_u_DQUOTE] = ACTIONS(2629), - [anon_sym_U_DQUOTE] = ACTIONS(2629), - [anon_sym_u8_DQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [sym_null] = ACTIONS(2627), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2627), - [anon_sym_decltype] = ACTIONS(2627), - [anon_sym_virtual] = ACTIONS(2627), - [anon_sym_typename] = ACTIONS(2627), - [anon_sym_template] = ACTIONS(2627), - [anon_sym_try] = ACTIONS(2627), - [anon_sym_delete] = ACTIONS(2627), - [anon_sym_throw] = ACTIONS(2627), - [anon_sym_co_return] = ACTIONS(2627), - [anon_sym_co_yield] = ACTIONS(2627), - [anon_sym_R_DQUOTE] = ACTIONS(2629), - [anon_sym_LR_DQUOTE] = ACTIONS(2629), - [anon_sym_uR_DQUOTE] = ACTIONS(2629), - [anon_sym_UR_DQUOTE] = ACTIONS(2629), - [anon_sym_u8R_DQUOTE] = ACTIONS(2629), - [anon_sym_co_await] = ACTIONS(2627), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_requires] = ACTIONS(2627), - [sym_this] = ACTIONS(2627), - [sym_nullptr] = ACTIONS(2627), - }, - [1233] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1234), - [sym_compound_requirement] = STATE(1234), - [sym__requirement] = STATE(1234), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1234), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1234] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1234), - [sym_compound_requirement] = STATE(1234), - [sym__requirement] = STATE(1234), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1234), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN2] = ACTIONS(3211), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3220), - [anon_sym_AMP] = ACTIONS(3220), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [sym_primitive_type] = ACTIONS(3237), - [anon_sym_not] = ACTIONS(3217), - [anon_sym_compl] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3240), - [anon_sym_PLUS_PLUS] = ACTIONS(3240), - [anon_sym_sizeof] = ACTIONS(3243), - [sym_number_literal] = ACTIONS(3246), - [anon_sym_L_SQUOTE] = ACTIONS(3249), - [anon_sym_u_SQUOTE] = ACTIONS(3249), - [anon_sym_U_SQUOTE] = ACTIONS(3249), - [anon_sym_u8_SQUOTE] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3258), - [anon_sym_template] = ACTIONS(3261), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_R_DQUOTE] = ACTIONS(3267), - [anon_sym_LR_DQUOTE] = ACTIONS(3267), - [anon_sym_uR_DQUOTE] = ACTIONS(3267), - [anon_sym_UR_DQUOTE] = ACTIONS(3267), - [anon_sym_u8R_DQUOTE] = ACTIONS(3267), - [anon_sym_co_await] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3273), - [anon_sym_requires] = ACTIONS(3276), - [sym_this] = ACTIONS(3255), - [sym_nullptr] = ACTIONS(3255), - }, - [1235] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1246), - [sym_compound_requirement] = STATE(1246), - [sym__requirement] = STATE(1246), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1236] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1237), - [sym_compound_requirement] = STATE(1237), - [sym__requirement] = STATE(1237), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1237), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1237] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1234), - [sym_compound_requirement] = STATE(1234), - [sym__requirement] = STATE(1234), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1234), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1238] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1240), - [sym_compound_requirement] = STATE(1240), - [sym__requirement] = STATE(1240), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1240), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1239] = { - [sym_identifier] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2639), - [anon_sym_PLUS] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_else] = ACTIONS(2639), - [anon_sym_switch] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_do] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_goto] = ACTIONS(2639), - [anon_sym_not] = ACTIONS(2639), - [anon_sym_compl] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_sizeof] = ACTIONS(2639), - [sym_number_literal] = ACTIONS(2641), - [anon_sym_L_SQUOTE] = ACTIONS(2641), - [anon_sym_u_SQUOTE] = ACTIONS(2641), - [anon_sym_U_SQUOTE] = ACTIONS(2641), - [anon_sym_u8_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_L_DQUOTE] = ACTIONS(2641), - [anon_sym_u_DQUOTE] = ACTIONS(2641), - [anon_sym_U_DQUOTE] = ACTIONS(2641), - [anon_sym_u8_DQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_true] = ACTIONS(2639), - [sym_false] = ACTIONS(2639), - [sym_null] = ACTIONS(2639), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [anon_sym_delete] = ACTIONS(2639), - [anon_sym_throw] = ACTIONS(2639), - [anon_sym_co_return] = ACTIONS(2639), - [anon_sym_co_yield] = ACTIONS(2639), - [anon_sym_R_DQUOTE] = ACTIONS(2641), - [anon_sym_LR_DQUOTE] = ACTIONS(2641), - [anon_sym_uR_DQUOTE] = ACTIONS(2641), - [anon_sym_UR_DQUOTE] = ACTIONS(2641), - [anon_sym_u8R_DQUOTE] = ACTIONS(2641), - [anon_sym_co_await] = ACTIONS(2639), - [anon_sym_new] = ACTIONS(2639), - [anon_sym_requires] = ACTIONS(2639), - [sym_this] = ACTIONS(2639), - [sym_nullptr] = ACTIONS(2639), - }, - [1240] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1234), - [sym_compound_requirement] = STATE(1234), - [sym__requirement] = STATE(1234), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1234), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1241] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1242] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1243] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1244] = { + [1175] = { [sym_identifier] = ACTIONS(3079), [anon_sym_LPAREN2] = ACTIONS(3085), [anon_sym_BANG] = ACTIONS(3085), @@ -175122,6 +169889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(3091), [anon_sym_inline] = ACTIONS(3091), [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym_input] = ACTIONS(3091), [anon_sym_const] = ACTIONS(3091), [anon_sym_volatile] = ACTIONS(3091), [anon_sym_restrict] = ACTIONS(3091), @@ -175191,126 +169959,760 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(3087), [sym_nullptr] = ACTIONS(3087), }, - [1245] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [1176] = { + [sym_identifier] = ACTIONS(2425), + [anon_sym_LPAREN2] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_typedef] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym___attribute__] = ACTIONS(2425), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2427), + [anon_sym___declspec] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_inline] = ACTIONS(2425), + [anon_sym_thread_local] = ACTIONS(2425), + [anon_sym_input] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_volatile] = ACTIONS(2425), + [anon_sym_restrict] = ACTIONS(2425), + [anon_sym__Atomic] = ACTIONS(2425), + [anon_sym_mutable] = ACTIONS(2425), + [anon_sym_constexpr] = ACTIONS(2425), + [anon_sym_constinit] = ACTIONS(2425), + [anon_sym_consteval] = ACTIONS(2425), + [anon_sym_signed] = ACTIONS(2425), + [anon_sym_unsigned] = ACTIONS(2425), + [anon_sym_long] = ACTIONS(2425), + [anon_sym_short] = ACTIONS(2425), + [sym_primitive_type] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_goto] = ACTIONS(2425), + [anon_sym_not] = ACTIONS(2425), + [anon_sym_compl] = ACTIONS(2425), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_sizeof] = ACTIONS(2425), + [sym_number_literal] = ACTIONS(2427), + [anon_sym_L_SQUOTE] = ACTIONS(2427), + [anon_sym_u_SQUOTE] = ACTIONS(2427), + [anon_sym_U_SQUOTE] = ACTIONS(2427), + [anon_sym_u8_SQUOTE] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_L_DQUOTE] = ACTIONS(2427), + [anon_sym_u_DQUOTE] = ACTIONS(2427), + [anon_sym_U_DQUOTE] = ACTIONS(2427), + [anon_sym_u8_DQUOTE] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym_true] = ACTIONS(2425), + [sym_false] = ACTIONS(2425), + [sym_null] = ACTIONS(2425), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), + [sym_auto] = ACTIONS(2425), + [anon_sym_decltype] = ACTIONS(2425), + [anon_sym_virtual] = ACTIONS(2425), + [anon_sym_typename] = ACTIONS(2425), + [anon_sym_template] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_delete] = ACTIONS(2425), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_co_return] = ACTIONS(2425), + [anon_sym_co_yield] = ACTIONS(2425), + [anon_sym_R_DQUOTE] = ACTIONS(2427), + [anon_sym_LR_DQUOTE] = ACTIONS(2427), + [anon_sym_uR_DQUOTE] = ACTIONS(2427), + [anon_sym_UR_DQUOTE] = ACTIONS(2427), + [anon_sym_u8R_DQUOTE] = ACTIONS(2427), + [anon_sym_co_await] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_requires] = ACTIONS(2425), + [sym_this] = ACTIONS(2425), + [sym_nullptr] = ACTIONS(2425), }, - [1246] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), - [sym_comma_expression] = STATE(6829), + [1177] = { + [sym_identifier] = 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] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3077), + [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_LBRACE] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_register] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym_thread_local] = ACTIONS(3075), + [anon_sym_input] = ACTIONS(3075), + [anon_sym_const] = ACTIONS(3075), + [anon_sym_volatile] = ACTIONS(3075), + [anon_sym_restrict] = ACTIONS(3075), + [anon_sym__Atomic] = ACTIONS(3075), + [anon_sym_mutable] = ACTIONS(3075), + [anon_sym_constexpr] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = ACTIONS(3075), + [anon_sym_signed] = ACTIONS(3075), + [anon_sym_unsigned] = ACTIONS(3075), + [anon_sym_long] = ACTIONS(3075), + [anon_sym_short] = 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), + [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), + [sym_null] = ACTIONS(3075), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3075), + [anon_sym_decltype] = ACTIONS(3075), + [anon_sym_virtual] = ACTIONS(3075), + [anon_sym_typename] = ACTIONS(3075), + [anon_sym_template] = ACTIONS(3075), + [anon_sym_try] = ACTIONS(3075), + [anon_sym_delete] = ACTIONS(3075), + [anon_sym_throw] = 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), + [sym_nullptr] = ACTIONS(3075), + }, + [1178] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1179] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1180] = { + [sym_identifier] = ACTIONS(2407), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_BANG] = ACTIONS(2409), + [anon_sym_TILDE] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2407), + [anon_sym_PLUS] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_AMP] = ACTIONS(2409), + [anon_sym_SEMI] = ACTIONS(2409), + [anon_sym_typedef] = ACTIONS(2407), + [anon_sym_extern] = ACTIONS(2407), + [anon_sym___attribute__] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2409), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2409), + [anon_sym___declspec] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_static] = ACTIONS(2407), + [anon_sym_register] = ACTIONS(2407), + [anon_sym_inline] = ACTIONS(2407), + [anon_sym_thread_local] = ACTIONS(2407), + [anon_sym_input] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [anon_sym_volatile] = ACTIONS(2407), + [anon_sym_restrict] = ACTIONS(2407), + [anon_sym__Atomic] = ACTIONS(2407), + [anon_sym_mutable] = ACTIONS(2407), + [anon_sym_constexpr] = ACTIONS(2407), + [anon_sym_constinit] = ACTIONS(2407), + [anon_sym_consteval] = ACTIONS(2407), + [anon_sym_signed] = ACTIONS(2407), + [anon_sym_unsigned] = ACTIONS(2407), + [anon_sym_long] = ACTIONS(2407), + [anon_sym_short] = ACTIONS(2407), + [sym_primitive_type] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2407), + [anon_sym_class] = ACTIONS(2407), + [anon_sym_struct] = ACTIONS(2407), + [anon_sym_union] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_else] = ACTIONS(2407), + [anon_sym_switch] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [anon_sym_do] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_goto] = ACTIONS(2407), + [anon_sym_not] = ACTIONS(2407), + [anon_sym_compl] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2409), + [anon_sym_PLUS_PLUS] = ACTIONS(2409), + [anon_sym_sizeof] = ACTIONS(2407), + [sym_number_literal] = ACTIONS(2409), + [anon_sym_L_SQUOTE] = ACTIONS(2409), + [anon_sym_u_SQUOTE] = ACTIONS(2409), + [anon_sym_U_SQUOTE] = ACTIONS(2409), + [anon_sym_u8_SQUOTE] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_L_DQUOTE] = ACTIONS(2409), + [anon_sym_u_DQUOTE] = ACTIONS(2409), + [anon_sym_U_DQUOTE] = ACTIONS(2409), + [anon_sym_u8_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(2409), + [sym_true] = ACTIONS(2407), + [sym_false] = ACTIONS(2407), + [sym_null] = ACTIONS(2407), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2407), + [anon_sym_decltype] = ACTIONS(2407), + [anon_sym_virtual] = ACTIONS(2407), + [anon_sym_typename] = ACTIONS(2407), + [anon_sym_template] = ACTIONS(2407), + [anon_sym_try] = ACTIONS(2407), + [anon_sym_delete] = ACTIONS(2407), + [anon_sym_throw] = ACTIONS(2407), + [anon_sym_co_return] = ACTIONS(2407), + [anon_sym_co_yield] = ACTIONS(2407), + [anon_sym_R_DQUOTE] = ACTIONS(2409), + [anon_sym_LR_DQUOTE] = ACTIONS(2409), + [anon_sym_uR_DQUOTE] = ACTIONS(2409), + [anon_sym_UR_DQUOTE] = ACTIONS(2409), + [anon_sym_u8R_DQUOTE] = ACTIONS(2409), + [anon_sym_co_await] = ACTIONS(2407), + [anon_sym_new] = ACTIONS(2407), + [anon_sym_requires] = ACTIONS(2407), + [sym_this] = ACTIONS(2407), + [sym_nullptr] = ACTIONS(2407), + }, + [1181] = { + [sym_identifier] = ACTIONS(2425), + [anon_sym_LPAREN2] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_typedef] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym___attribute__] = ACTIONS(2425), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2427), + [anon_sym___declspec] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_inline] = ACTIONS(2425), + [anon_sym_thread_local] = ACTIONS(2425), + [anon_sym_input] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_volatile] = ACTIONS(2425), + [anon_sym_restrict] = ACTIONS(2425), + [anon_sym__Atomic] = ACTIONS(2425), + [anon_sym_mutable] = ACTIONS(2425), + [anon_sym_constexpr] = ACTIONS(2425), + [anon_sym_constinit] = ACTIONS(2425), + [anon_sym_consteval] = ACTIONS(2425), + [anon_sym_signed] = ACTIONS(2425), + [anon_sym_unsigned] = ACTIONS(2425), + [anon_sym_long] = ACTIONS(2425), + [anon_sym_short] = ACTIONS(2425), + [sym_primitive_type] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_goto] = ACTIONS(2425), + [anon_sym_not] = ACTIONS(2425), + [anon_sym_compl] = ACTIONS(2425), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_sizeof] = ACTIONS(2425), + [sym_number_literal] = ACTIONS(2427), + [anon_sym_L_SQUOTE] = ACTIONS(2427), + [anon_sym_u_SQUOTE] = ACTIONS(2427), + [anon_sym_U_SQUOTE] = ACTIONS(2427), + [anon_sym_u8_SQUOTE] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_L_DQUOTE] = ACTIONS(2427), + [anon_sym_u_DQUOTE] = ACTIONS(2427), + [anon_sym_U_DQUOTE] = ACTIONS(2427), + [anon_sym_u8_DQUOTE] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym_true] = ACTIONS(2425), + [sym_false] = ACTIONS(2425), + [sym_null] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2425), + [anon_sym_decltype] = ACTIONS(2425), + [anon_sym_virtual] = ACTIONS(2425), + [anon_sym_typename] = ACTIONS(2425), + [anon_sym_template] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_delete] = ACTIONS(2425), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_co_return] = ACTIONS(2425), + [anon_sym_co_yield] = ACTIONS(2425), + [anon_sym_R_DQUOTE] = ACTIONS(2427), + [anon_sym_LR_DQUOTE] = ACTIONS(2427), + [anon_sym_uR_DQUOTE] = ACTIONS(2427), + [anon_sym_UR_DQUOTE] = ACTIONS(2427), + [anon_sym_u8R_DQUOTE] = ACTIONS(2427), + [anon_sym_co_await] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_requires] = ACTIONS(2425), + [sym_this] = ACTIONS(2425), + [sym_nullptr] = ACTIONS(2425), + }, + [1182] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1183] = { + [sym_identifier] = 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] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3073), + [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_LBRACE] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3071), + [anon_sym_static] = ACTIONS(3071), + [anon_sym_register] = ACTIONS(3071), + [anon_sym_inline] = ACTIONS(3071), + [anon_sym_thread_local] = ACTIONS(3071), + [anon_sym_input] = ACTIONS(3071), + [anon_sym_const] = ACTIONS(3071), + [anon_sym_volatile] = ACTIONS(3071), + [anon_sym_restrict] = ACTIONS(3071), + [anon_sym__Atomic] = ACTIONS(3071), + [anon_sym_mutable] = ACTIONS(3071), + [anon_sym_constexpr] = ACTIONS(3071), + [anon_sym_constinit] = ACTIONS(3071), + [anon_sym_consteval] = ACTIONS(3071), + [anon_sym_signed] = ACTIONS(3071), + [anon_sym_unsigned] = ACTIONS(3071), + [anon_sym_long] = ACTIONS(3071), + [anon_sym_short] = 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), + [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), + [sym_null] = ACTIONS(3071), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3071), + [anon_sym_decltype] = ACTIONS(3071), + [anon_sym_virtual] = ACTIONS(3071), + [anon_sym_typename] = ACTIONS(3071), + [anon_sym_template] = ACTIONS(3071), + [anon_sym_try] = ACTIONS(3071), + [anon_sym_delete] = ACTIONS(3071), + [anon_sym_throw] = 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), + [sym_nullptr] = ACTIONS(3071), + }, + [1184] = { + [sym_type_qualifier] = STATE(2494), + [sym__expression] = STATE(3963), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1234), - [sym_compound_requirement] = STATE(1234), - [sym__requirement] = STATE(1234), [sym_requires_clause] = STATE(3521), [sym_requires_expression] = STATE(3521), [sym_lambda_expression] = STATE(3521), @@ -175319,11 +170721,5293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1234), - [sym_identifier] = ACTIONS(2913), + [aux_sym_type_definition_repeat1] = STATE(2494), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3152), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1185] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1186] = { + [sym_identifier] = ACTIONS(2561), + [anon_sym_LPAREN2] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_PLUS] = ACTIONS(2561), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_typedef] = ACTIONS(2561), + [anon_sym_extern] = ACTIONS(2561), + [anon_sym___attribute__] = ACTIONS(2561), + [anon_sym_COLON_COLON] = ACTIONS(2563), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), + [anon_sym___declspec] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2561), + [anon_sym_register] = ACTIONS(2561), + [anon_sym_inline] = ACTIONS(2561), + [anon_sym_thread_local] = ACTIONS(2561), + [anon_sym_input] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [anon_sym_volatile] = ACTIONS(2561), + [anon_sym_restrict] = ACTIONS(2561), + [anon_sym__Atomic] = ACTIONS(2561), + [anon_sym_mutable] = ACTIONS(2561), + [anon_sym_constexpr] = ACTIONS(2561), + [anon_sym_constinit] = ACTIONS(2561), + [anon_sym_consteval] = ACTIONS(2561), + [anon_sym_signed] = ACTIONS(2561), + [anon_sym_unsigned] = ACTIONS(2561), + [anon_sym_long] = ACTIONS(2561), + [anon_sym_short] = ACTIONS(2561), + [sym_primitive_type] = ACTIONS(2561), + [anon_sym_enum] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2561), + [anon_sym_struct] = ACTIONS(2561), + [anon_sym_union] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2561), + [anon_sym_switch] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [anon_sym_do] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), + [anon_sym_goto] = ACTIONS(2561), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_compl] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_sizeof] = ACTIONS(2561), + [sym_number_literal] = ACTIONS(2563), + [anon_sym_L_SQUOTE] = ACTIONS(2563), + [anon_sym_u_SQUOTE] = ACTIONS(2563), + [anon_sym_U_SQUOTE] = ACTIONS(2563), + [anon_sym_u8_SQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE] = ACTIONS(2563), + [anon_sym_L_DQUOTE] = ACTIONS(2563), + [anon_sym_u_DQUOTE] = ACTIONS(2563), + [anon_sym_U_DQUOTE] = ACTIONS(2563), + [anon_sym_u8_DQUOTE] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2563), + [sym_true] = ACTIONS(2561), + [sym_false] = ACTIONS(2561), + [sym_null] = ACTIONS(2561), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2561), + [anon_sym_decltype] = ACTIONS(2561), + [anon_sym_virtual] = ACTIONS(2561), + [anon_sym_typename] = ACTIONS(2561), + [anon_sym_template] = ACTIONS(2561), + [anon_sym_try] = ACTIONS(2561), + [anon_sym_delete] = ACTIONS(2561), + [anon_sym_throw] = ACTIONS(2561), + [anon_sym_co_return] = ACTIONS(2561), + [anon_sym_co_yield] = ACTIONS(2561), + [anon_sym_R_DQUOTE] = ACTIONS(2563), + [anon_sym_LR_DQUOTE] = ACTIONS(2563), + [anon_sym_uR_DQUOTE] = ACTIONS(2563), + [anon_sym_UR_DQUOTE] = ACTIONS(2563), + [anon_sym_u8R_DQUOTE] = ACTIONS(2563), + [anon_sym_co_await] = ACTIONS(2561), + [anon_sym_new] = ACTIONS(2561), + [anon_sym_requires] = ACTIONS(2561), + [sym_this] = ACTIONS(2561), + [sym_nullptr] = ACTIONS(2561), + }, + [1187] = { + [sym_identifier] = ACTIONS(2455), + [anon_sym_LPAREN2] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_typedef] = ACTIONS(2455), + [anon_sym_extern] = ACTIONS(2455), + [anon_sym___attribute__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2457), + [anon_sym___declspec] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_register] = ACTIONS(2455), + [anon_sym_inline] = ACTIONS(2455), + [anon_sym_thread_local] = ACTIONS(2455), + [anon_sym_input] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2455), + [anon_sym_volatile] = ACTIONS(2455), + [anon_sym_restrict] = ACTIONS(2455), + [anon_sym__Atomic] = ACTIONS(2455), + [anon_sym_mutable] = ACTIONS(2455), + [anon_sym_constexpr] = ACTIONS(2455), + [anon_sym_constinit] = ACTIONS(2455), + [anon_sym_consteval] = ACTIONS(2455), + [anon_sym_signed] = ACTIONS(2455), + [anon_sym_unsigned] = ACTIONS(2455), + [anon_sym_long] = ACTIONS(2455), + [anon_sym_short] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2455), + [anon_sym_enum] = ACTIONS(2455), + [anon_sym_class] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_else] = ACTIONS(2455), + [anon_sym_switch] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_do] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2455), + [anon_sym_continue] = ACTIONS(2455), + [anon_sym_goto] = ACTIONS(2455), + [anon_sym_not] = ACTIONS(2455), + [anon_sym_compl] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_sizeof] = ACTIONS(2455), + [sym_number_literal] = ACTIONS(2457), + [anon_sym_L_SQUOTE] = ACTIONS(2457), + [anon_sym_u_SQUOTE] = ACTIONS(2457), + [anon_sym_U_SQUOTE] = ACTIONS(2457), + [anon_sym_u8_SQUOTE] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_L_DQUOTE] = ACTIONS(2457), + [anon_sym_u_DQUOTE] = ACTIONS(2457), + [anon_sym_U_DQUOTE] = ACTIONS(2457), + [anon_sym_u8_DQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [sym_true] = ACTIONS(2455), + [sym_false] = ACTIONS(2455), + [sym_null] = ACTIONS(2455), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2455), + [anon_sym_decltype] = ACTIONS(2455), + [anon_sym_virtual] = ACTIONS(2455), + [anon_sym_typename] = ACTIONS(2455), + [anon_sym_template] = ACTIONS(2455), + [anon_sym_try] = ACTIONS(2455), + [anon_sym_delete] = ACTIONS(2455), + [anon_sym_throw] = ACTIONS(2455), + [anon_sym_co_return] = ACTIONS(2455), + [anon_sym_co_yield] = ACTIONS(2455), + [anon_sym_R_DQUOTE] = ACTIONS(2457), + [anon_sym_LR_DQUOTE] = ACTIONS(2457), + [anon_sym_uR_DQUOTE] = ACTIONS(2457), + [anon_sym_UR_DQUOTE] = ACTIONS(2457), + [anon_sym_u8R_DQUOTE] = ACTIONS(2457), + [anon_sym_co_await] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2455), + [anon_sym_requires] = ACTIONS(2455), + [sym_this] = ACTIONS(2455), + [sym_nullptr] = ACTIONS(2455), + }, + [1188] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1189] = { + [sym_identifier] = ACTIONS(2449), + [anon_sym_LPAREN2] = ACTIONS(2451), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_TILDE] = ACTIONS(2451), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2451), + [anon_sym_AMP] = ACTIONS(2451), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_typedef] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym___attribute__] = ACTIONS(2449), + [anon_sym_COLON_COLON] = ACTIONS(2451), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2451), + [anon_sym___declspec] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_register] = ACTIONS(2449), + [anon_sym_inline] = ACTIONS(2449), + [anon_sym_thread_local] = ACTIONS(2449), + [anon_sym_input] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_volatile] = ACTIONS(2449), + [anon_sym_restrict] = ACTIONS(2449), + [anon_sym__Atomic] = ACTIONS(2449), + [anon_sym_mutable] = ACTIONS(2449), + [anon_sym_constexpr] = ACTIONS(2449), + [anon_sym_constinit] = ACTIONS(2449), + [anon_sym_consteval] = ACTIONS(2449), + [anon_sym_signed] = ACTIONS(2449), + [anon_sym_unsigned] = ACTIONS(2449), + [anon_sym_long] = ACTIONS(2449), + [anon_sym_short] = ACTIONS(2449), + [sym_primitive_type] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_class] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(2449), + [anon_sym_union] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_goto] = ACTIONS(2449), + [anon_sym_not] = ACTIONS(2449), + [anon_sym_compl] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2451), + [anon_sym_PLUS_PLUS] = ACTIONS(2451), + [anon_sym_sizeof] = ACTIONS(2449), + [sym_number_literal] = ACTIONS(2451), + [anon_sym_L_SQUOTE] = ACTIONS(2451), + [anon_sym_u_SQUOTE] = ACTIONS(2451), + [anon_sym_U_SQUOTE] = ACTIONS(2451), + [anon_sym_u8_SQUOTE] = ACTIONS(2451), + [anon_sym_SQUOTE] = ACTIONS(2451), + [anon_sym_L_DQUOTE] = ACTIONS(2451), + [anon_sym_u_DQUOTE] = ACTIONS(2451), + [anon_sym_U_DQUOTE] = ACTIONS(2451), + [anon_sym_u8_DQUOTE] = ACTIONS(2451), + [anon_sym_DQUOTE] = ACTIONS(2451), + [sym_true] = ACTIONS(2449), + [sym_false] = ACTIONS(2449), + [sym_null] = ACTIONS(2449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2449), + [anon_sym_decltype] = ACTIONS(2449), + [anon_sym_virtual] = ACTIONS(2449), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_delete] = ACTIONS(2449), + [anon_sym_throw] = ACTIONS(2449), + [anon_sym_co_return] = ACTIONS(2449), + [anon_sym_co_yield] = ACTIONS(2449), + [anon_sym_R_DQUOTE] = ACTIONS(2451), + [anon_sym_LR_DQUOTE] = ACTIONS(2451), + [anon_sym_uR_DQUOTE] = ACTIONS(2451), + [anon_sym_UR_DQUOTE] = ACTIONS(2451), + [anon_sym_u8R_DQUOTE] = ACTIONS(2451), + [anon_sym_co_await] = ACTIONS(2449), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_requires] = ACTIONS(2449), + [sym_this] = ACTIONS(2449), + [sym_nullptr] = ACTIONS(2449), + }, + [1190] = { + [sym_identifier] = ACTIONS(2445), + [anon_sym_LPAREN2] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_typedef] = ACTIONS(2445), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym___attribute__] = ACTIONS(2445), + [anon_sym_COLON_COLON] = ACTIONS(2447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2447), + [anon_sym___declspec] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_register] = ACTIONS(2445), + [anon_sym_inline] = ACTIONS(2445), + [anon_sym_thread_local] = ACTIONS(2445), + [anon_sym_input] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_volatile] = ACTIONS(2445), + [anon_sym_restrict] = ACTIONS(2445), + [anon_sym__Atomic] = ACTIONS(2445), + [anon_sym_mutable] = ACTIONS(2445), + [anon_sym_constexpr] = ACTIONS(2445), + [anon_sym_constinit] = ACTIONS(2445), + [anon_sym_consteval] = ACTIONS(2445), + [anon_sym_signed] = ACTIONS(2445), + [anon_sym_unsigned] = ACTIONS(2445), + [anon_sym_long] = ACTIONS(2445), + [anon_sym_short] = ACTIONS(2445), + [sym_primitive_type] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_class] = ACTIONS(2445), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_union] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_switch] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_goto] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2445), + [anon_sym_compl] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(2447), + [anon_sym_sizeof] = ACTIONS(2445), + [sym_number_literal] = ACTIONS(2447), + [anon_sym_L_SQUOTE] = ACTIONS(2447), + [anon_sym_u_SQUOTE] = ACTIONS(2447), + [anon_sym_U_SQUOTE] = ACTIONS(2447), + [anon_sym_u8_SQUOTE] = ACTIONS(2447), + [anon_sym_SQUOTE] = ACTIONS(2447), + [anon_sym_L_DQUOTE] = ACTIONS(2447), + [anon_sym_u_DQUOTE] = ACTIONS(2447), + [anon_sym_U_DQUOTE] = ACTIONS(2447), + [anon_sym_u8_DQUOTE] = ACTIONS(2447), + [anon_sym_DQUOTE] = ACTIONS(2447), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_null] = ACTIONS(2445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2445), + [anon_sym_virtual] = ACTIONS(2445), + [anon_sym_typename] = ACTIONS(2445), + [anon_sym_template] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_delete] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2445), + [anon_sym_co_return] = ACTIONS(2445), + [anon_sym_co_yield] = ACTIONS(2445), + [anon_sym_R_DQUOTE] = ACTIONS(2447), + [anon_sym_LR_DQUOTE] = ACTIONS(2447), + [anon_sym_uR_DQUOTE] = ACTIONS(2447), + [anon_sym_UR_DQUOTE] = ACTIONS(2447), + [anon_sym_u8R_DQUOTE] = ACTIONS(2447), + [anon_sym_co_await] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_requires] = ACTIONS(2445), + [sym_this] = ACTIONS(2445), + [sym_nullptr] = ACTIONS(2445), + }, + [1191] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1192] = { + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN2] = ACTIONS(2417), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_TILDE] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_SEMI] = ACTIONS(2417), + [anon_sym_typedef] = ACTIONS(2415), + [anon_sym_extern] = ACTIONS(2415), + [anon_sym___attribute__] = ACTIONS(2415), + [anon_sym_COLON_COLON] = ACTIONS(2417), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2417), + [anon_sym___declspec] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_static] = ACTIONS(2415), + [anon_sym_register] = ACTIONS(2415), + [anon_sym_inline] = ACTIONS(2415), + [anon_sym_thread_local] = ACTIONS(2415), + [anon_sym_input] = ACTIONS(2415), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_volatile] = ACTIONS(2415), + [anon_sym_restrict] = ACTIONS(2415), + [anon_sym__Atomic] = ACTIONS(2415), + [anon_sym_mutable] = ACTIONS(2415), + [anon_sym_constexpr] = ACTIONS(2415), + [anon_sym_constinit] = ACTIONS(2415), + [anon_sym_consteval] = ACTIONS(2415), + [anon_sym_signed] = ACTIONS(2415), + [anon_sym_unsigned] = ACTIONS(2415), + [anon_sym_long] = ACTIONS(2415), + [anon_sym_short] = ACTIONS(2415), + [sym_primitive_type] = ACTIONS(2415), + [anon_sym_enum] = ACTIONS(2415), + [anon_sym_class] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(2415), + [anon_sym_union] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_else] = ACTIONS(2415), + [anon_sym_switch] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [anon_sym_do] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_break] = ACTIONS(2415), + [anon_sym_continue] = ACTIONS(2415), + [anon_sym_goto] = ACTIONS(2415), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2417), + [anon_sym_PLUS_PLUS] = ACTIONS(2417), + [anon_sym_sizeof] = ACTIONS(2415), + [sym_number_literal] = ACTIONS(2417), + [anon_sym_L_SQUOTE] = ACTIONS(2417), + [anon_sym_u_SQUOTE] = ACTIONS(2417), + [anon_sym_U_SQUOTE] = ACTIONS(2417), + [anon_sym_u8_SQUOTE] = ACTIONS(2417), + [anon_sym_SQUOTE] = ACTIONS(2417), + [anon_sym_L_DQUOTE] = ACTIONS(2417), + [anon_sym_u_DQUOTE] = ACTIONS(2417), + [anon_sym_U_DQUOTE] = ACTIONS(2417), + [anon_sym_u8_DQUOTE] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2417), + [sym_true] = ACTIONS(2415), + [sym_false] = ACTIONS(2415), + [sym_null] = ACTIONS(2415), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2415), + [anon_sym_decltype] = ACTIONS(2415), + [anon_sym_virtual] = ACTIONS(2415), + [anon_sym_typename] = ACTIONS(2415), + [anon_sym_template] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2415), + [anon_sym_delete] = ACTIONS(2415), + [anon_sym_throw] = ACTIONS(2415), + [anon_sym_co_return] = ACTIONS(2415), + [anon_sym_co_yield] = ACTIONS(2415), + [anon_sym_R_DQUOTE] = ACTIONS(2417), + [anon_sym_LR_DQUOTE] = ACTIONS(2417), + [anon_sym_uR_DQUOTE] = ACTIONS(2417), + [anon_sym_UR_DQUOTE] = ACTIONS(2417), + [anon_sym_u8R_DQUOTE] = ACTIONS(2417), + [anon_sym_co_await] = ACTIONS(2415), + [anon_sym_new] = ACTIONS(2415), + [anon_sym_requires] = ACTIONS(2415), + [sym_this] = ACTIONS(2415), + [sym_nullptr] = ACTIONS(2415), + }, + [1193] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1194] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1195] = { + [sym_identifier] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_SEMI] = ACTIONS(2421), + [anon_sym_typedef] = ACTIONS(2419), + [anon_sym_extern] = ACTIONS(2419), + [anon_sym___attribute__] = ACTIONS(2419), + [anon_sym_COLON_COLON] = ACTIONS(2421), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2421), + [anon_sym___declspec] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_static] = ACTIONS(2419), + [anon_sym_register] = ACTIONS(2419), + [anon_sym_inline] = ACTIONS(2419), + [anon_sym_thread_local] = ACTIONS(2419), + [anon_sym_input] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_volatile] = ACTIONS(2419), + [anon_sym_restrict] = ACTIONS(2419), + [anon_sym__Atomic] = ACTIONS(2419), + [anon_sym_mutable] = ACTIONS(2419), + [anon_sym_constexpr] = ACTIONS(2419), + [anon_sym_constinit] = ACTIONS(2419), + [anon_sym_consteval] = ACTIONS(2419), + [anon_sym_signed] = ACTIONS(2419), + [anon_sym_unsigned] = ACTIONS(2419), + [anon_sym_long] = ACTIONS(2419), + [anon_sym_short] = ACTIONS(2419), + [sym_primitive_type] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2419), + [anon_sym_class] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2419), + [anon_sym_union] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_else] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [anon_sym_do] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_goto] = ACTIONS(2419), + [anon_sym_not] = ACTIONS(2419), + [anon_sym_compl] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2421), + [anon_sym_PLUS_PLUS] = ACTIONS(2421), + [anon_sym_sizeof] = ACTIONS(2419), + [sym_number_literal] = ACTIONS(2421), + [anon_sym_L_SQUOTE] = ACTIONS(2421), + [anon_sym_u_SQUOTE] = ACTIONS(2421), + [anon_sym_U_SQUOTE] = ACTIONS(2421), + [anon_sym_u8_SQUOTE] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_L_DQUOTE] = ACTIONS(2421), + [anon_sym_u_DQUOTE] = ACTIONS(2421), + [anon_sym_U_DQUOTE] = ACTIONS(2421), + [anon_sym_u8_DQUOTE] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [sym_true] = ACTIONS(2419), + [sym_false] = ACTIONS(2419), + [sym_null] = ACTIONS(2419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2419), + [anon_sym_decltype] = ACTIONS(2419), + [anon_sym_virtual] = ACTIONS(2419), + [anon_sym_typename] = ACTIONS(2419), + [anon_sym_template] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2419), + [anon_sym_delete] = ACTIONS(2419), + [anon_sym_throw] = ACTIONS(2419), + [anon_sym_co_return] = ACTIONS(2419), + [anon_sym_co_yield] = ACTIONS(2419), + [anon_sym_R_DQUOTE] = ACTIONS(2421), + [anon_sym_LR_DQUOTE] = ACTIONS(2421), + [anon_sym_uR_DQUOTE] = ACTIONS(2421), + [anon_sym_UR_DQUOTE] = ACTIONS(2421), + [anon_sym_u8R_DQUOTE] = ACTIONS(2421), + [anon_sym_co_await] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(2419), + [anon_sym_requires] = ACTIONS(2419), + [sym_this] = ACTIONS(2419), + [sym_nullptr] = ACTIONS(2419), + }, + [1196] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1197] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_input] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1198] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1199] = { + [sym_type_qualifier] = STATE(1201), + [sym__expression] = STATE(3879), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(1201), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1200] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1201] = { + [sym_type_qualifier] = STATE(2494), + [sym__expression] = STATE(3866), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(2494), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1202] = { + [sym_identifier] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym___attribute__] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2413), + [anon_sym___declspec] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_thread_local] = ACTIONS(2411), + [anon_sym_input] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym__Atomic] = ACTIONS(2411), + [anon_sym_mutable] = ACTIONS(2411), + [anon_sym_constexpr] = ACTIONS(2411), + [anon_sym_constinit] = ACTIONS(2411), + [anon_sym_consteval] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [sym_primitive_type] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_switch] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_goto] = ACTIONS(2411), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_compl] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_sizeof] = ACTIONS(2411), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_L_SQUOTE] = ACTIONS(2413), + [anon_sym_u_SQUOTE] = ACTIONS(2413), + [anon_sym_U_SQUOTE] = ACTIONS(2413), + [anon_sym_u8_SQUOTE] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_L_DQUOTE] = ACTIONS(2413), + [anon_sym_u_DQUOTE] = ACTIONS(2413), + [anon_sym_U_DQUOTE] = ACTIONS(2413), + [anon_sym_u8_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2411), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_virtual] = ACTIONS(2411), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_delete] = ACTIONS(2411), + [anon_sym_throw] = ACTIONS(2411), + [anon_sym_co_return] = ACTIONS(2411), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_R_DQUOTE] = ACTIONS(2413), + [anon_sym_LR_DQUOTE] = ACTIONS(2413), + [anon_sym_uR_DQUOTE] = ACTIONS(2413), + [anon_sym_UR_DQUOTE] = ACTIONS(2413), + [anon_sym_u8R_DQUOTE] = ACTIONS(2413), + [anon_sym_co_await] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_requires] = ACTIONS(2411), + [sym_this] = ACTIONS(2411), + [sym_nullptr] = ACTIONS(2411), + }, + [1203] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1204] = { + [sym_type_qualifier] = STATE(2494), + [sym__expression] = STATE(4013), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(2494), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3166), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1205] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1206] = { + [sym_identifier] = ACTIONS(2429), + [anon_sym_LPAREN2] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_typedef] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym___attribute__] = ACTIONS(2429), + [anon_sym_COLON_COLON] = ACTIONS(2431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2431), + [anon_sym___declspec] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_inline] = ACTIONS(2429), + [anon_sym_thread_local] = ACTIONS(2429), + [anon_sym_input] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_volatile] = ACTIONS(2429), + [anon_sym_restrict] = ACTIONS(2429), + [anon_sym__Atomic] = ACTIONS(2429), + [anon_sym_mutable] = ACTIONS(2429), + [anon_sym_constexpr] = ACTIONS(2429), + [anon_sym_constinit] = ACTIONS(2429), + [anon_sym_consteval] = ACTIONS(2429), + [anon_sym_signed] = ACTIONS(2429), + [anon_sym_unsigned] = ACTIONS(2429), + [anon_sym_long] = ACTIONS(2429), + [anon_sym_short] = ACTIONS(2429), + [sym_primitive_type] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_class] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_switch] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_goto] = ACTIONS(2429), + [anon_sym_not] = ACTIONS(2429), + [anon_sym_compl] = ACTIONS(2429), + [anon_sym_DASH_DASH] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2431), + [anon_sym_sizeof] = ACTIONS(2429), + [sym_number_literal] = ACTIONS(2431), + [anon_sym_L_SQUOTE] = ACTIONS(2431), + [anon_sym_u_SQUOTE] = ACTIONS(2431), + [anon_sym_U_SQUOTE] = ACTIONS(2431), + [anon_sym_u8_SQUOTE] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2431), + [anon_sym_L_DQUOTE] = ACTIONS(2431), + [anon_sym_u_DQUOTE] = ACTIONS(2431), + [anon_sym_U_DQUOTE] = ACTIONS(2431), + [anon_sym_u8_DQUOTE] = ACTIONS(2431), + [anon_sym_DQUOTE] = ACTIONS(2431), + [sym_true] = ACTIONS(2429), + [sym_false] = ACTIONS(2429), + [sym_null] = ACTIONS(2429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2429), + [anon_sym_decltype] = ACTIONS(2429), + [anon_sym_virtual] = ACTIONS(2429), + [anon_sym_typename] = ACTIONS(2429), + [anon_sym_template] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_delete] = ACTIONS(2429), + [anon_sym_throw] = ACTIONS(2429), + [anon_sym_co_return] = ACTIONS(2429), + [anon_sym_co_yield] = ACTIONS(2429), + [anon_sym_R_DQUOTE] = ACTIONS(2431), + [anon_sym_LR_DQUOTE] = ACTIONS(2431), + [anon_sym_uR_DQUOTE] = ACTIONS(2431), + [anon_sym_UR_DQUOTE] = ACTIONS(2431), + [anon_sym_u8R_DQUOTE] = ACTIONS(2431), + [anon_sym_co_await] = ACTIONS(2429), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_requires] = ACTIONS(2429), + [sym_this] = ACTIONS(2429), + [sym_nullptr] = ACTIONS(2429), + }, + [1207] = { + [sym_identifier] = ACTIONS(2519), + [anon_sym_LPAREN2] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_STAR] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_typedef] = ACTIONS(2519), + [anon_sym_extern] = ACTIONS(2519), + [anon_sym___attribute__] = ACTIONS(2519), + [anon_sym_COLON_COLON] = ACTIONS(2521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), + [anon_sym___declspec] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_static] = ACTIONS(2519), + [anon_sym_register] = ACTIONS(2519), + [anon_sym_inline] = ACTIONS(2519), + [anon_sym_thread_local] = ACTIONS(2519), + [anon_sym_input] = ACTIONS(2519), + [anon_sym_const] = ACTIONS(2519), + [anon_sym_volatile] = ACTIONS(2519), + [anon_sym_restrict] = ACTIONS(2519), + [anon_sym__Atomic] = ACTIONS(2519), + [anon_sym_mutable] = ACTIONS(2519), + [anon_sym_constexpr] = ACTIONS(2519), + [anon_sym_constinit] = ACTIONS(2519), + [anon_sym_consteval] = ACTIONS(2519), + [anon_sym_signed] = ACTIONS(2519), + [anon_sym_unsigned] = ACTIONS(2519), + [anon_sym_long] = ACTIONS(2519), + [anon_sym_short] = ACTIONS(2519), + [sym_primitive_type] = ACTIONS(2519), + [anon_sym_enum] = ACTIONS(2519), + [anon_sym_class] = ACTIONS(2519), + [anon_sym_struct] = ACTIONS(2519), + [anon_sym_union] = ACTIONS(2519), + [anon_sym_if] = ACTIONS(2519), + [anon_sym_else] = ACTIONS(2519), + [anon_sym_switch] = ACTIONS(2519), + [anon_sym_while] = ACTIONS(2519), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_for] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2519), + [anon_sym_break] = ACTIONS(2519), + [anon_sym_continue] = ACTIONS(2519), + [anon_sym_goto] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2519), + [anon_sym_compl] = ACTIONS(2519), + [anon_sym_DASH_DASH] = ACTIONS(2521), + [anon_sym_PLUS_PLUS] = ACTIONS(2521), + [anon_sym_sizeof] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2521), + [anon_sym_u_SQUOTE] = ACTIONS(2521), + [anon_sym_U_SQUOTE] = ACTIONS(2521), + [anon_sym_u8_SQUOTE] = ACTIONS(2521), + [anon_sym_SQUOTE] = ACTIONS(2521), + [anon_sym_L_DQUOTE] = ACTIONS(2521), + [anon_sym_u_DQUOTE] = ACTIONS(2521), + [anon_sym_U_DQUOTE] = ACTIONS(2521), + [anon_sym_u8_DQUOTE] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(2521), + [sym_true] = ACTIONS(2519), + [sym_false] = ACTIONS(2519), + [sym_null] = ACTIONS(2519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2519), + [anon_sym_decltype] = ACTIONS(2519), + [anon_sym_virtual] = ACTIONS(2519), + [anon_sym_typename] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(2519), + [anon_sym_try] = ACTIONS(2519), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_throw] = ACTIONS(2519), + [anon_sym_co_return] = ACTIONS(2519), + [anon_sym_co_yield] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2519), + [anon_sym_new] = ACTIONS(2519), + [anon_sym_requires] = ACTIONS(2519), + [sym_this] = ACTIONS(2519), + [sym_nullptr] = ACTIONS(2519), + }, + [1208] = { + [sym_identifier] = ACTIONS(2433), + [anon_sym_LPAREN2] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_typedef] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym___attribute__] = ACTIONS(2433), + [anon_sym_COLON_COLON] = ACTIONS(2435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2435), + [anon_sym___declspec] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_register] = ACTIONS(2433), + [anon_sym_inline] = ACTIONS(2433), + [anon_sym_thread_local] = ACTIONS(2433), + [anon_sym_input] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_volatile] = ACTIONS(2433), + [anon_sym_restrict] = ACTIONS(2433), + [anon_sym__Atomic] = ACTIONS(2433), + [anon_sym_mutable] = ACTIONS(2433), + [anon_sym_constexpr] = ACTIONS(2433), + [anon_sym_constinit] = ACTIONS(2433), + [anon_sym_consteval] = ACTIONS(2433), + [anon_sym_signed] = ACTIONS(2433), + [anon_sym_unsigned] = ACTIONS(2433), + [anon_sym_long] = ACTIONS(2433), + [anon_sym_short] = ACTIONS(2433), + [sym_primitive_type] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_class] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_union] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_switch] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_goto] = ACTIONS(2433), + [anon_sym_not] = ACTIONS(2433), + [anon_sym_compl] = ACTIONS(2433), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_sizeof] = ACTIONS(2433), + [sym_number_literal] = ACTIONS(2435), + [anon_sym_L_SQUOTE] = ACTIONS(2435), + [anon_sym_u_SQUOTE] = ACTIONS(2435), + [anon_sym_U_SQUOTE] = ACTIONS(2435), + [anon_sym_u8_SQUOTE] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_L_DQUOTE] = ACTIONS(2435), + [anon_sym_u_DQUOTE] = ACTIONS(2435), + [anon_sym_U_DQUOTE] = ACTIONS(2435), + [anon_sym_u8_DQUOTE] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(2435), + [sym_true] = ACTIONS(2433), + [sym_false] = ACTIONS(2433), + [sym_null] = ACTIONS(2433), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2433), + [anon_sym_decltype] = ACTIONS(2433), + [anon_sym_virtual] = ACTIONS(2433), + [anon_sym_typename] = ACTIONS(2433), + [anon_sym_template] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_delete] = ACTIONS(2433), + [anon_sym_throw] = ACTIONS(2433), + [anon_sym_co_return] = ACTIONS(2433), + [anon_sym_co_yield] = ACTIONS(2433), + [anon_sym_R_DQUOTE] = ACTIONS(2435), + [anon_sym_LR_DQUOTE] = ACTIONS(2435), + [anon_sym_uR_DQUOTE] = ACTIONS(2435), + [anon_sym_UR_DQUOTE] = ACTIONS(2435), + [anon_sym_u8R_DQUOTE] = ACTIONS(2435), + [anon_sym_co_await] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2433), + [anon_sym_requires] = ACTIONS(2433), + [sym_this] = ACTIONS(2433), + [sym_nullptr] = ACTIONS(2433), + }, + [1209] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1210] = { + [sym_identifier] = ACTIONS(2437), + [anon_sym_LPAREN2] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2439), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_typedef] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym___attribute__] = ACTIONS(2437), + [anon_sym_COLON_COLON] = ACTIONS(2439), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2439), + [anon_sym___declspec] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_register] = ACTIONS(2437), + [anon_sym_inline] = ACTIONS(2437), + [anon_sym_thread_local] = ACTIONS(2437), + [anon_sym_input] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_volatile] = ACTIONS(2437), + [anon_sym_restrict] = ACTIONS(2437), + [anon_sym__Atomic] = ACTIONS(2437), + [anon_sym_mutable] = ACTIONS(2437), + [anon_sym_constexpr] = ACTIONS(2437), + [anon_sym_constinit] = ACTIONS(2437), + [anon_sym_consteval] = ACTIONS(2437), + [anon_sym_signed] = ACTIONS(2437), + [anon_sym_unsigned] = ACTIONS(2437), + [anon_sym_long] = ACTIONS(2437), + [anon_sym_short] = ACTIONS(2437), + [sym_primitive_type] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_class] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2437), + [anon_sym_union] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_switch] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_goto] = ACTIONS(2437), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_compl] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(2439), + [anon_sym_sizeof] = ACTIONS(2437), + [sym_number_literal] = ACTIONS(2439), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2439), + [anon_sym_u_DQUOTE] = ACTIONS(2439), + [anon_sym_U_DQUOTE] = ACTIONS(2439), + [anon_sym_u8_DQUOTE] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(2439), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_null] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2437), + [anon_sym_decltype] = ACTIONS(2437), + [anon_sym_virtual] = ACTIONS(2437), + [anon_sym_typename] = ACTIONS(2437), + [anon_sym_template] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_delete] = ACTIONS(2437), + [anon_sym_throw] = ACTIONS(2437), + [anon_sym_co_return] = ACTIONS(2437), + [anon_sym_co_yield] = ACTIONS(2437), + [anon_sym_R_DQUOTE] = ACTIONS(2439), + [anon_sym_LR_DQUOTE] = ACTIONS(2439), + [anon_sym_uR_DQUOTE] = ACTIONS(2439), + [anon_sym_UR_DQUOTE] = ACTIONS(2439), + [anon_sym_u8R_DQUOTE] = ACTIONS(2439), + [anon_sym_co_await] = ACTIONS(2437), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_requires] = ACTIONS(2437), + [sym_this] = ACTIONS(2437), + [sym_nullptr] = ACTIONS(2437), + }, + [1211] = { + [sym_type_qualifier] = STATE(1223), + [sym__expression] = STATE(4004), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(1223), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3142), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3144), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1212] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1213] = { + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN2] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_typedef] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym___attribute__] = ACTIONS(2441), + [anon_sym_COLON_COLON] = ACTIONS(2443), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2443), + [anon_sym___declspec] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_register] = ACTIONS(2441), + [anon_sym_inline] = ACTIONS(2441), + [anon_sym_thread_local] = ACTIONS(2441), + [anon_sym_input] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_volatile] = ACTIONS(2441), + [anon_sym_restrict] = ACTIONS(2441), + [anon_sym__Atomic] = ACTIONS(2441), + [anon_sym_mutable] = ACTIONS(2441), + [anon_sym_constexpr] = ACTIONS(2441), + [anon_sym_constinit] = ACTIONS(2441), + [anon_sym_consteval] = ACTIONS(2441), + [anon_sym_signed] = ACTIONS(2441), + [anon_sym_unsigned] = ACTIONS(2441), + [anon_sym_long] = ACTIONS(2441), + [anon_sym_short] = ACTIONS(2441), + [sym_primitive_type] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_class] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2441), + [anon_sym_union] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_switch] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_goto] = ACTIONS(2441), + [anon_sym_not] = ACTIONS(2441), + [anon_sym_compl] = ACTIONS(2441), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(2441), + [sym_number_literal] = ACTIONS(2443), + [anon_sym_L_SQUOTE] = ACTIONS(2443), + [anon_sym_u_SQUOTE] = ACTIONS(2443), + [anon_sym_U_SQUOTE] = ACTIONS(2443), + [anon_sym_u8_SQUOTE] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_L_DQUOTE] = ACTIONS(2443), + [anon_sym_u_DQUOTE] = ACTIONS(2443), + [anon_sym_U_DQUOTE] = ACTIONS(2443), + [anon_sym_u8_DQUOTE] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [sym_true] = ACTIONS(2441), + [sym_false] = ACTIONS(2441), + [sym_null] = ACTIONS(2441), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2441), + [anon_sym_decltype] = ACTIONS(2441), + [anon_sym_virtual] = ACTIONS(2441), + [anon_sym_typename] = ACTIONS(2441), + [anon_sym_template] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_delete] = ACTIONS(2441), + [anon_sym_throw] = ACTIONS(2441), + [anon_sym_co_return] = ACTIONS(2441), + [anon_sym_co_yield] = ACTIONS(2441), + [anon_sym_R_DQUOTE] = ACTIONS(2443), + [anon_sym_LR_DQUOTE] = ACTIONS(2443), + [anon_sym_uR_DQUOTE] = ACTIONS(2443), + [anon_sym_UR_DQUOTE] = ACTIONS(2443), + [anon_sym_u8R_DQUOTE] = ACTIONS(2443), + [anon_sym_co_await] = ACTIONS(2441), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_requires] = ACTIONS(2441), + [sym_this] = ACTIONS(2441), + [sym_nullptr] = ACTIONS(2441), + }, + [1214] = { + [sym_identifier] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym___attribute__] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2413), + [anon_sym___declspec] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_thread_local] = ACTIONS(2411), + [anon_sym_input] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym__Atomic] = ACTIONS(2411), + [anon_sym_mutable] = ACTIONS(2411), + [anon_sym_constexpr] = ACTIONS(2411), + [anon_sym_constinit] = ACTIONS(2411), + [anon_sym_consteval] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [sym_primitive_type] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_switch] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_goto] = ACTIONS(2411), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_compl] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_sizeof] = ACTIONS(2411), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_L_SQUOTE] = ACTIONS(2413), + [anon_sym_u_SQUOTE] = ACTIONS(2413), + [anon_sym_U_SQUOTE] = ACTIONS(2413), + [anon_sym_u8_SQUOTE] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_L_DQUOTE] = ACTIONS(2413), + [anon_sym_u_DQUOTE] = ACTIONS(2413), + [anon_sym_U_DQUOTE] = ACTIONS(2413), + [anon_sym_u8_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2411), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_virtual] = ACTIONS(2411), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_delete] = ACTIONS(2411), + [anon_sym_throw] = ACTIONS(2411), + [anon_sym_co_return] = ACTIONS(2411), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_R_DQUOTE] = ACTIONS(2413), + [anon_sym_LR_DQUOTE] = ACTIONS(2413), + [anon_sym_uR_DQUOTE] = ACTIONS(2413), + [anon_sym_UR_DQUOTE] = ACTIONS(2413), + [anon_sym_u8R_DQUOTE] = ACTIONS(2413), + [anon_sym_co_await] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_requires] = ACTIONS(2411), + [sym_this] = ACTIONS(2411), + [sym_nullptr] = ACTIONS(2411), + }, + [1215] = { + [sym_identifier] = ACTIONS(2471), + [anon_sym_LPAREN2] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2473), + [anon_sym_TILDE] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_typedef] = ACTIONS(2471), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym___attribute__] = ACTIONS(2471), + [anon_sym_COLON_COLON] = ACTIONS(2473), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2473), + [anon_sym___declspec] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_static] = ACTIONS(2471), + [anon_sym_register] = ACTIONS(2471), + [anon_sym_inline] = ACTIONS(2471), + [anon_sym_thread_local] = ACTIONS(2471), + [anon_sym_input] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [anon_sym_volatile] = ACTIONS(2471), + [anon_sym_restrict] = ACTIONS(2471), + [anon_sym__Atomic] = ACTIONS(2471), + [anon_sym_mutable] = ACTIONS(2471), + [anon_sym_constexpr] = ACTIONS(2471), + [anon_sym_constinit] = ACTIONS(2471), + [anon_sym_consteval] = ACTIONS(2471), + [anon_sym_signed] = ACTIONS(2471), + [anon_sym_unsigned] = ACTIONS(2471), + [anon_sym_long] = ACTIONS(2471), + [anon_sym_short] = ACTIONS(2471), + [sym_primitive_type] = ACTIONS(2471), + [anon_sym_enum] = ACTIONS(2471), + [anon_sym_class] = ACTIONS(2471), + [anon_sym_struct] = ACTIONS(2471), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_else] = ACTIONS(2471), + [anon_sym_switch] = ACTIONS(2471), + [anon_sym_while] = ACTIONS(2471), + [anon_sym_do] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_goto] = ACTIONS(2471), + [anon_sym_not] = ACTIONS(2471), + [anon_sym_compl] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(2473), + [anon_sym_PLUS_PLUS] = ACTIONS(2473), + [anon_sym_sizeof] = ACTIONS(2471), + [sym_number_literal] = ACTIONS(2473), + [anon_sym_L_SQUOTE] = ACTIONS(2473), + [anon_sym_u_SQUOTE] = ACTIONS(2473), + [anon_sym_U_SQUOTE] = ACTIONS(2473), + [anon_sym_u8_SQUOTE] = ACTIONS(2473), + [anon_sym_SQUOTE] = ACTIONS(2473), + [anon_sym_L_DQUOTE] = ACTIONS(2473), + [anon_sym_u_DQUOTE] = ACTIONS(2473), + [anon_sym_U_DQUOTE] = ACTIONS(2473), + [anon_sym_u8_DQUOTE] = ACTIONS(2473), + [anon_sym_DQUOTE] = ACTIONS(2473), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_null] = ACTIONS(2471), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2471), + [anon_sym_decltype] = ACTIONS(2471), + [anon_sym_virtual] = ACTIONS(2471), + [anon_sym_typename] = ACTIONS(2471), + [anon_sym_template] = ACTIONS(2471), + [anon_sym_try] = ACTIONS(2471), + [anon_sym_delete] = ACTIONS(2471), + [anon_sym_throw] = ACTIONS(2471), + [anon_sym_co_return] = ACTIONS(2471), + [anon_sym_co_yield] = ACTIONS(2471), + [anon_sym_R_DQUOTE] = ACTIONS(2473), + [anon_sym_LR_DQUOTE] = ACTIONS(2473), + [anon_sym_uR_DQUOTE] = ACTIONS(2473), + [anon_sym_UR_DQUOTE] = ACTIONS(2473), + [anon_sym_u8R_DQUOTE] = ACTIONS(2473), + [anon_sym_co_await] = ACTIONS(2471), + [anon_sym_new] = ACTIONS(2471), + [anon_sym_requires] = ACTIONS(2471), + [sym_this] = ACTIONS(2471), + [sym_nullptr] = ACTIONS(2471), + }, + [1216] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1217] = { + [sym_identifier] = ACTIONS(2523), + [anon_sym_LPAREN2] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_typedef] = ACTIONS(2523), + [anon_sym_extern] = ACTIONS(2523), + [anon_sym___attribute__] = ACTIONS(2523), + [anon_sym_COLON_COLON] = ACTIONS(2525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2525), + [anon_sym___declspec] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_static] = ACTIONS(2523), + [anon_sym_register] = ACTIONS(2523), + [anon_sym_inline] = ACTIONS(2523), + [anon_sym_thread_local] = ACTIONS(2523), + [anon_sym_input] = ACTIONS(2523), + [anon_sym_const] = ACTIONS(2523), + [anon_sym_volatile] = ACTIONS(2523), + [anon_sym_restrict] = ACTIONS(2523), + [anon_sym__Atomic] = ACTIONS(2523), + [anon_sym_mutable] = ACTIONS(2523), + [anon_sym_constexpr] = ACTIONS(2523), + [anon_sym_constinit] = ACTIONS(2523), + [anon_sym_consteval] = ACTIONS(2523), + [anon_sym_signed] = ACTIONS(2523), + [anon_sym_unsigned] = ACTIONS(2523), + [anon_sym_long] = ACTIONS(2523), + [anon_sym_short] = ACTIONS(2523), + [sym_primitive_type] = ACTIONS(2523), + [anon_sym_enum] = ACTIONS(2523), + [anon_sym_class] = ACTIONS(2523), + [anon_sym_struct] = ACTIONS(2523), + [anon_sym_union] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_else] = ACTIONS(2523), + [anon_sym_switch] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2523), + [anon_sym_do] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_goto] = ACTIONS(2523), + [anon_sym_not] = ACTIONS(2523), + [anon_sym_compl] = ACTIONS(2523), + [anon_sym_DASH_DASH] = ACTIONS(2525), + [anon_sym_PLUS_PLUS] = ACTIONS(2525), + [anon_sym_sizeof] = ACTIONS(2523), + [sym_number_literal] = ACTIONS(2525), + [anon_sym_L_SQUOTE] = ACTIONS(2525), + [anon_sym_u_SQUOTE] = ACTIONS(2525), + [anon_sym_U_SQUOTE] = ACTIONS(2525), + [anon_sym_u8_SQUOTE] = ACTIONS(2525), + [anon_sym_SQUOTE] = ACTIONS(2525), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2523), + [sym_false] = ACTIONS(2523), + [sym_null] = ACTIONS(2523), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2523), + [anon_sym_decltype] = ACTIONS(2523), + [anon_sym_virtual] = ACTIONS(2523), + [anon_sym_typename] = ACTIONS(2523), + [anon_sym_template] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2523), + [anon_sym_delete] = ACTIONS(2523), + [anon_sym_throw] = ACTIONS(2523), + [anon_sym_co_return] = ACTIONS(2523), + [anon_sym_co_yield] = ACTIONS(2523), + [anon_sym_R_DQUOTE] = ACTIONS(2525), + [anon_sym_LR_DQUOTE] = ACTIONS(2525), + [anon_sym_uR_DQUOTE] = ACTIONS(2525), + [anon_sym_UR_DQUOTE] = ACTIONS(2525), + [anon_sym_u8R_DQUOTE] = ACTIONS(2525), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2523), + [sym_this] = ACTIONS(2523), + [sym_nullptr] = ACTIONS(2523), + }, + [1218] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1219] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1220] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1221] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1222] = { + [sym_type_qualifier] = STATE(2494), + [sym__expression] = STATE(3927), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(2494), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3168), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1223] = { + [sym_type_qualifier] = STATE(2494), + [sym__expression] = STATE(3837), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(2494), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3174), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1224] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1225] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1226] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1227] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1228] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_input] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1229] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1230] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1231] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1232] = { + [sym_identifier] = ACTIONS(2515), + [anon_sym_LPAREN2] = ACTIONS(2517), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_TILDE] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2515), + [anon_sym_PLUS] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_SEMI] = ACTIONS(2517), + [anon_sym_typedef] = ACTIONS(2515), + [anon_sym_extern] = ACTIONS(2515), + [anon_sym___attribute__] = ACTIONS(2515), + [anon_sym_COLON_COLON] = ACTIONS(2517), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2517), + [anon_sym___declspec] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_static] = ACTIONS(2515), + [anon_sym_register] = ACTIONS(2515), + [anon_sym_inline] = ACTIONS(2515), + [anon_sym_thread_local] = ACTIONS(2515), + [anon_sym_input] = ACTIONS(2515), + [anon_sym_const] = ACTIONS(2515), + [anon_sym_volatile] = ACTIONS(2515), + [anon_sym_restrict] = ACTIONS(2515), + [anon_sym__Atomic] = ACTIONS(2515), + [anon_sym_mutable] = ACTIONS(2515), + [anon_sym_constexpr] = ACTIONS(2515), + [anon_sym_constinit] = ACTIONS(2515), + [anon_sym_consteval] = ACTIONS(2515), + [anon_sym_signed] = ACTIONS(2515), + [anon_sym_unsigned] = ACTIONS(2515), + [anon_sym_long] = ACTIONS(2515), + [anon_sym_short] = ACTIONS(2515), + [sym_primitive_type] = ACTIONS(2515), + [anon_sym_enum] = ACTIONS(2515), + [anon_sym_class] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(2515), + [anon_sym_union] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2515), + [anon_sym_else] = ACTIONS(2515), + [anon_sym_switch] = ACTIONS(2515), + [anon_sym_while] = ACTIONS(2515), + [anon_sym_do] = ACTIONS(2515), + [anon_sym_for] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2515), + [anon_sym_break] = ACTIONS(2515), + [anon_sym_continue] = ACTIONS(2515), + [anon_sym_goto] = ACTIONS(2515), + [anon_sym_not] = ACTIONS(2515), + [anon_sym_compl] = ACTIONS(2515), + [anon_sym_DASH_DASH] = ACTIONS(2517), + [anon_sym_PLUS_PLUS] = ACTIONS(2517), + [anon_sym_sizeof] = ACTIONS(2515), + [sym_number_literal] = ACTIONS(2517), + [anon_sym_L_SQUOTE] = ACTIONS(2517), + [anon_sym_u_SQUOTE] = ACTIONS(2517), + [anon_sym_U_SQUOTE] = ACTIONS(2517), + [anon_sym_u8_SQUOTE] = ACTIONS(2517), + [anon_sym_SQUOTE] = ACTIONS(2517), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_null] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2515), + [anon_sym_decltype] = ACTIONS(2515), + [anon_sym_virtual] = ACTIONS(2515), + [anon_sym_typename] = ACTIONS(2515), + [anon_sym_template] = ACTIONS(2515), + [anon_sym_try] = ACTIONS(2515), + [anon_sym_delete] = ACTIONS(2515), + [anon_sym_throw] = ACTIONS(2515), + [anon_sym_co_return] = ACTIONS(2515), + [anon_sym_co_yield] = ACTIONS(2515), + [anon_sym_R_DQUOTE] = ACTIONS(2517), + [anon_sym_LR_DQUOTE] = ACTIONS(2517), + [anon_sym_uR_DQUOTE] = ACTIONS(2517), + [anon_sym_UR_DQUOTE] = ACTIONS(2517), + [anon_sym_u8R_DQUOTE] = ACTIONS(2517), + [anon_sym_co_await] = ACTIONS(2515), + [anon_sym_new] = ACTIONS(2515), + [anon_sym_requires] = ACTIONS(2515), + [sym_this] = ACTIONS(2515), + [sym_nullptr] = ACTIONS(2515), + }, + [1233] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1234] = { + [sym_type_qualifier] = STATE(1184), + [sym__expression] = STATE(3889), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(1184), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1235] = { + [sym_identifier] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_typedef] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym___attribute__] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), + [anon_sym___declspec] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_register] = ACTIONS(2499), + [anon_sym_inline] = ACTIONS(2499), + [anon_sym_thread_local] = ACTIONS(2499), + [anon_sym_input] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_volatile] = ACTIONS(2499), + [anon_sym_restrict] = ACTIONS(2499), + [anon_sym__Atomic] = ACTIONS(2499), + [anon_sym_mutable] = ACTIONS(2499), + [anon_sym_constexpr] = ACTIONS(2499), + [anon_sym_constinit] = ACTIONS(2499), + [anon_sym_consteval] = ACTIONS(2499), + [anon_sym_signed] = ACTIONS(2499), + [anon_sym_unsigned] = ACTIONS(2499), + [anon_sym_long] = ACTIONS(2499), + [anon_sym_short] = ACTIONS(2499), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_class] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_switch] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [anon_sym_L_SQUOTE] = ACTIONS(2501), + [anon_sym_u_SQUOTE] = ACTIONS(2501), + [anon_sym_U_SQUOTE] = ACTIONS(2501), + [anon_sym_u8_SQUOTE] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_L_DQUOTE] = ACTIONS(2501), + [anon_sym_u_DQUOTE] = ACTIONS(2501), + [anon_sym_U_DQUOTE] = ACTIONS(2501), + [anon_sym_u8_DQUOTE] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2499), + [anon_sym_decltype] = ACTIONS(2499), + [anon_sym_virtual] = ACTIONS(2499), + [anon_sym_typename] = ACTIONS(2499), + [anon_sym_template] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2499), + [anon_sym_delete] = ACTIONS(2499), + [anon_sym_throw] = ACTIONS(2499), + [anon_sym_co_return] = ACTIONS(2499), + [anon_sym_co_yield] = ACTIONS(2499), + [anon_sym_R_DQUOTE] = ACTIONS(2501), + [anon_sym_LR_DQUOTE] = ACTIONS(2501), + [anon_sym_uR_DQUOTE] = ACTIONS(2501), + [anon_sym_UR_DQUOTE] = ACTIONS(2501), + [anon_sym_u8R_DQUOTE] = ACTIONS(2501), + [anon_sym_co_await] = ACTIONS(2499), + [anon_sym_new] = ACTIONS(2499), + [anon_sym_requires] = ACTIONS(2499), + [sym_this] = ACTIONS(2499), + [sym_nullptr] = ACTIONS(2499), + }, + [1236] = { + [sym_identifier] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2401), + [anon_sym_typedef] = ACTIONS(2399), + [anon_sym_extern] = ACTIONS(2399), + [anon_sym___attribute__] = ACTIONS(2399), + [anon_sym_COLON_COLON] = ACTIONS(2401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2401), + [anon_sym___declspec] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(2399), + [anon_sym_inline] = ACTIONS(2399), + [anon_sym_thread_local] = ACTIONS(2399), + [anon_sym_input] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [anon_sym_volatile] = ACTIONS(2399), + [anon_sym_restrict] = ACTIONS(2399), + [anon_sym__Atomic] = ACTIONS(2399), + [anon_sym_mutable] = ACTIONS(2399), + [anon_sym_constexpr] = ACTIONS(2399), + [anon_sym_constinit] = ACTIONS(2399), + [anon_sym_consteval] = ACTIONS(2399), + [anon_sym_signed] = ACTIONS(2399), + [anon_sym_unsigned] = ACTIONS(2399), + [anon_sym_long] = ACTIONS(2399), + [anon_sym_short] = ACTIONS(2399), + [sym_primitive_type] = ACTIONS(2399), + [anon_sym_enum] = ACTIONS(2399), + [anon_sym_class] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2399), + [anon_sym_union] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_else] = ACTIONS(2399), + [anon_sym_switch] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [anon_sym_do] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_goto] = ACTIONS(2399), + [anon_sym_not] = ACTIONS(2399), + [anon_sym_compl] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_sizeof] = ACTIONS(2399), + [sym_number_literal] = ACTIONS(2401), + [anon_sym_L_SQUOTE] = ACTIONS(2401), + [anon_sym_u_SQUOTE] = ACTIONS(2401), + [anon_sym_U_SQUOTE] = ACTIONS(2401), + [anon_sym_u8_SQUOTE] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_L_DQUOTE] = ACTIONS(2401), + [anon_sym_u_DQUOTE] = ACTIONS(2401), + [anon_sym_U_DQUOTE] = ACTIONS(2401), + [anon_sym_u8_DQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [sym_true] = ACTIONS(2399), + [sym_false] = ACTIONS(2399), + [sym_null] = ACTIONS(2399), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2399), + [anon_sym_decltype] = ACTIONS(2399), + [anon_sym_virtual] = ACTIONS(2399), + [anon_sym_typename] = ACTIONS(2399), + [anon_sym_template] = ACTIONS(2399), + [anon_sym_try] = ACTIONS(2399), + [anon_sym_delete] = ACTIONS(2399), + [anon_sym_throw] = ACTIONS(2399), + [anon_sym_co_return] = ACTIONS(2399), + [anon_sym_co_yield] = ACTIONS(2399), + [anon_sym_R_DQUOTE] = ACTIONS(2401), + [anon_sym_LR_DQUOTE] = ACTIONS(2401), + [anon_sym_uR_DQUOTE] = ACTIONS(2401), + [anon_sym_UR_DQUOTE] = ACTIONS(2401), + [anon_sym_u8R_DQUOTE] = ACTIONS(2401), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2399), + [anon_sym_requires] = ACTIONS(2399), + [sym_this] = ACTIONS(2399), + [sym_nullptr] = ACTIONS(2399), + }, + [1237] = { + [sym_identifier] = ACTIONS(2545), + [anon_sym_LPAREN2] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_typedef] = ACTIONS(2545), + [anon_sym_extern] = ACTIONS(2545), + [anon_sym___attribute__] = ACTIONS(2545), + [anon_sym_COLON_COLON] = ACTIONS(2547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2547), + [anon_sym___declspec] = ACTIONS(2545), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2545), + [anon_sym_register] = ACTIONS(2545), + [anon_sym_inline] = ACTIONS(2545), + [anon_sym_thread_local] = ACTIONS(2545), + [anon_sym_input] = ACTIONS(2545), + [anon_sym_const] = ACTIONS(2545), + [anon_sym_volatile] = ACTIONS(2545), + [anon_sym_restrict] = ACTIONS(2545), + [anon_sym__Atomic] = ACTIONS(2545), + [anon_sym_mutable] = ACTIONS(2545), + [anon_sym_constexpr] = ACTIONS(2545), + [anon_sym_constinit] = ACTIONS(2545), + [anon_sym_consteval] = ACTIONS(2545), + [anon_sym_signed] = ACTIONS(2545), + [anon_sym_unsigned] = ACTIONS(2545), + [anon_sym_long] = ACTIONS(2545), + [anon_sym_short] = ACTIONS(2545), + [sym_primitive_type] = ACTIONS(2545), + [anon_sym_enum] = ACTIONS(2545), + [anon_sym_class] = ACTIONS(2545), + [anon_sym_struct] = ACTIONS(2545), + [anon_sym_union] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_else] = ACTIONS(2545), + [anon_sym_switch] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_do] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_goto] = ACTIONS(2545), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_compl] = ACTIONS(2545), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_sizeof] = ACTIONS(2545), + [sym_number_literal] = ACTIONS(2547), + [anon_sym_L_SQUOTE] = ACTIONS(2547), + [anon_sym_u_SQUOTE] = ACTIONS(2547), + [anon_sym_U_SQUOTE] = ACTIONS(2547), + [anon_sym_u8_SQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_L_DQUOTE] = ACTIONS(2547), + [anon_sym_u_DQUOTE] = ACTIONS(2547), + [anon_sym_U_DQUOTE] = ACTIONS(2547), + [anon_sym_u8_DQUOTE] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [sym_true] = ACTIONS(2545), + [sym_false] = ACTIONS(2545), + [sym_null] = ACTIONS(2545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2545), + [anon_sym_decltype] = ACTIONS(2545), + [anon_sym_virtual] = ACTIONS(2545), + [anon_sym_typename] = ACTIONS(2545), + [anon_sym_template] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [anon_sym_delete] = ACTIONS(2545), + [anon_sym_throw] = ACTIONS(2545), + [anon_sym_co_return] = ACTIONS(2545), + [anon_sym_co_yield] = ACTIONS(2545), + [anon_sym_R_DQUOTE] = ACTIONS(2547), + [anon_sym_LR_DQUOTE] = ACTIONS(2547), + [anon_sym_uR_DQUOTE] = ACTIONS(2547), + [anon_sym_UR_DQUOTE] = ACTIONS(2547), + [anon_sym_u8R_DQUOTE] = ACTIONS(2547), + [anon_sym_co_await] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_requires] = ACTIONS(2545), + [sym_this] = ACTIONS(2545), + [sym_nullptr] = ACTIONS(2545), + }, + [1238] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1239] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1240] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1241] = { + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym_input] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + [sym_nullptr] = ACTIONS(2527), + }, + [1242] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1251), + [sym_compound_requirement] = STATE(1251), + [sym__requirement] = STATE(1251), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1251), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -175331,9 +176015,1539 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3180), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1243] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1249), + [sym_compound_requirement] = STATE(1249), + [sym__requirement] = STATE(1249), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1244] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1249), + [sym_compound_requirement] = STATE(1249), + [sym__requirement] = STATE(1249), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1245] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1249), + [sym_compound_requirement] = STATE(1249), + [sym__requirement] = STATE(1249), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1246] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1257), + [sym_compound_requirement] = STATE(1257), + [sym__requirement] = STATE(1257), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1257), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1247] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1249), + [sym_compound_requirement] = STATE(1249), + [sym__requirement] = STATE(1249), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1248] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1245), + [sym_compound_requirement] = STATE(1245), + [sym__requirement] = STATE(1245), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1249] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1249), + [sym_compound_requirement] = STATE(1249), + [sym__requirement] = STATE(1249), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN2] = ACTIONS(3203), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_SEMI] = ACTIONS(3215), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3226), + [sym_primitive_type] = ACTIONS(3229), + [anon_sym_not] = ACTIONS(3209), + [anon_sym_compl] = ACTIONS(3209), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_sizeof] = ACTIONS(3235), + [sym_number_literal] = ACTIONS(3238), + [anon_sym_L_SQUOTE] = ACTIONS(3241), + [anon_sym_u_SQUOTE] = ACTIONS(3241), + [anon_sym_U_SQUOTE] = ACTIONS(3241), + [anon_sym_u8_SQUOTE] = ACTIONS(3241), + [anon_sym_SQUOTE] = ACTIONS(3241), + [anon_sym_L_DQUOTE] = ACTIONS(3244), + [anon_sym_u_DQUOTE] = ACTIONS(3244), + [anon_sym_U_DQUOTE] = ACTIONS(3244), + [anon_sym_u8_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [sym_true] = ACTIONS(3247), + [sym_false] = ACTIONS(3247), + [sym_null] = ACTIONS(3247), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_template] = ACTIONS(3253), + [anon_sym_delete] = ACTIONS(3256), + [anon_sym_R_DQUOTE] = ACTIONS(3259), + [anon_sym_LR_DQUOTE] = ACTIONS(3259), + [anon_sym_uR_DQUOTE] = ACTIONS(3259), + [anon_sym_UR_DQUOTE] = ACTIONS(3259), + [anon_sym_u8R_DQUOTE] = ACTIONS(3259), + [anon_sym_co_await] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3265), + [anon_sym_requires] = ACTIONS(3268), + [sym_this] = ACTIONS(3247), + [sym_nullptr] = ACTIONS(3247), + }, + [1250] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1249), + [sym_compound_requirement] = STATE(1249), + [sym__requirement] = STATE(1249), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1251] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1249), + [sym_compound_requirement] = STATE(1249), + [sym__requirement] = STATE(1249), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1252] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1250), + [sym_compound_requirement] = STATE(1250), + [sym__requirement] = STATE(1250), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1250), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1253] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1260), + [sym_compound_requirement] = STATE(1260), + [sym__requirement] = STATE(1260), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1260), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1254] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1247), + [sym_compound_requirement] = STATE(1247), + [sym__requirement] = STATE(1247), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1247), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1255] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1256), + [sym_compound_requirement] = STATE(1256), + [sym__requirement] = STATE(1256), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1256), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1256] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1249), + [sym_compound_requirement] = STATE(1249), + [sym__requirement] = STATE(1249), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1257] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1249), + [sym_compound_requirement] = STATE(1249), + [sym__requirement] = STATE(1249), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1258] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1244), + [sym_compound_requirement] = STATE(1244), + [sym__requirement] = STATE(1244), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1244), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3186), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1259] = { + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1243), + [sym_compound_requirement] = STATE(1243), + [sym__requirement] = STATE(1243), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1243), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3182), [anon_sym_RBRACE] = ACTIONS(3289), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), @@ -175357,7 +177571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), + [anon_sym_typename] = ACTIONS(3186), [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), @@ -175371,1206 +177585,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1247] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1248] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1249] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1250] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1251] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1252] = { - [sym_identifier] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2593), - [anon_sym_TILDE] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2593), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_typedef] = ACTIONS(2591), - [anon_sym_extern] = ACTIONS(2591), - [anon_sym___attribute__] = ACTIONS(2591), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), - [anon_sym___declspec] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_static] = ACTIONS(2591), - [anon_sym_register] = ACTIONS(2591), - [anon_sym_inline] = ACTIONS(2591), - [anon_sym_thread_local] = ACTIONS(2591), - [anon_sym_const] = ACTIONS(2591), - [anon_sym_volatile] = ACTIONS(2591), - [anon_sym_restrict] = ACTIONS(2591), - [anon_sym__Atomic] = ACTIONS(2591), - [anon_sym_mutable] = ACTIONS(2591), - [anon_sym_constexpr] = ACTIONS(2591), - [anon_sym_constinit] = ACTIONS(2591), - [anon_sym_consteval] = ACTIONS(2591), - [anon_sym_signed] = ACTIONS(2591), - [anon_sym_unsigned] = ACTIONS(2591), - [anon_sym_long] = ACTIONS(2591), - [anon_sym_short] = ACTIONS(2591), - [sym_primitive_type] = ACTIONS(2591), - [anon_sym_enum] = ACTIONS(2591), - [anon_sym_class] = ACTIONS(2591), - [anon_sym_struct] = ACTIONS(2591), - [anon_sym_union] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_else] = ACTIONS(2591), - [anon_sym_switch] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_break] = ACTIONS(2591), - [anon_sym_continue] = ACTIONS(2591), - [anon_sym_goto] = ACTIONS(2591), - [anon_sym_not] = ACTIONS(2591), - [anon_sym_compl] = ACTIONS(2591), - [anon_sym_DASH_DASH] = ACTIONS(2593), - [anon_sym_PLUS_PLUS] = ACTIONS(2593), - [anon_sym_sizeof] = ACTIONS(2591), - [sym_number_literal] = ACTIONS(2593), - [anon_sym_L_SQUOTE] = ACTIONS(2593), - [anon_sym_u_SQUOTE] = ACTIONS(2593), - [anon_sym_U_SQUOTE] = ACTIONS(2593), - [anon_sym_u8_SQUOTE] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_L_DQUOTE] = ACTIONS(2593), - [anon_sym_u_DQUOTE] = ACTIONS(2593), - [anon_sym_U_DQUOTE] = ACTIONS(2593), - [anon_sym_u8_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE] = ACTIONS(2593), - [sym_true] = ACTIONS(2591), - [sym_false] = ACTIONS(2591), - [sym_null] = ACTIONS(2591), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2591), - [anon_sym_decltype] = ACTIONS(2591), - [anon_sym_virtual] = ACTIONS(2591), - [anon_sym_typename] = ACTIONS(2591), - [anon_sym_template] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_delete] = ACTIONS(2591), - [anon_sym_throw] = ACTIONS(2591), - [anon_sym_co_return] = ACTIONS(2591), - [anon_sym_co_yield] = ACTIONS(2591), - [anon_sym_R_DQUOTE] = ACTIONS(2593), - [anon_sym_LR_DQUOTE] = ACTIONS(2593), - [anon_sym_uR_DQUOTE] = ACTIONS(2593), - [anon_sym_UR_DQUOTE] = ACTIONS(2593), - [anon_sym_u8R_DQUOTE] = ACTIONS(2593), - [anon_sym_co_await] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_requires] = ACTIONS(2591), - [sym_this] = ACTIONS(2591), - [sym_nullptr] = ACTIONS(2591), - }, - [1253] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1254] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1255] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1256] = { - [sym_identifier] = ACTIONS(2573), - [anon_sym_LPAREN2] = ACTIONS(2575), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_typedef] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2575), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2573), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_else] = ACTIONS(2573), - [anon_sym_switch] = ACTIONS(2573), - [anon_sym_while] = ACTIONS(2573), - [anon_sym_do] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2573), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_break] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2573), - [anon_sym_goto] = ACTIONS(2573), - [anon_sym_not] = ACTIONS(2573), - [anon_sym_compl] = ACTIONS(2573), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_sizeof] = ACTIONS(2573), - [sym_number_literal] = ACTIONS(2575), - [anon_sym_L_SQUOTE] = ACTIONS(2575), - [anon_sym_u_SQUOTE] = ACTIONS(2575), - [anon_sym_U_SQUOTE] = ACTIONS(2575), - [anon_sym_u8_SQUOTE] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2575), - [anon_sym_L_DQUOTE] = ACTIONS(2575), - [anon_sym_u_DQUOTE] = ACTIONS(2575), - [anon_sym_U_DQUOTE] = ACTIONS(2575), - [anon_sym_u8_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [sym_true] = ACTIONS(2573), - [sym_false] = ACTIONS(2573), - [sym_null] = ACTIONS(2573), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2573), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_throw] = ACTIONS(2573), - [anon_sym_co_return] = ACTIONS(2573), - [anon_sym_co_yield] = ACTIONS(2573), - [anon_sym_R_DQUOTE] = ACTIONS(2575), - [anon_sym_LR_DQUOTE] = ACTIONS(2575), - [anon_sym_uR_DQUOTE] = ACTIONS(2575), - [anon_sym_UR_DQUOTE] = ACTIONS(2575), - [anon_sym_u8R_DQUOTE] = ACTIONS(2575), - [anon_sym_co_await] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2573), - [anon_sym_requires] = ACTIONS(2573), - [sym_this] = ACTIONS(2573), - [sym_nullptr] = ACTIONS(2573), - }, - [1257] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1258] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, - [1259] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_not] = ACTIONS(2405), - [anon_sym_compl] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_R_DQUOTE] = ACTIONS(2407), - [anon_sym_LR_DQUOTE] = ACTIONS(2407), - [anon_sym_uR_DQUOTE] = ACTIONS(2407), - [anon_sym_UR_DQUOTE] = ACTIONS(2407), - [anon_sym_u8R_DQUOTE] = ACTIONS(2407), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - }, [1260] = { - [sym_expression_statement] = STATE(3223), - [sym__expression] = STATE(3775), + [sym_expression_statement] = STATE(3229), + [sym__expression] = STATE(3782), [sym_comma_expression] = STATE(6829), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), - [sym_type_requirement] = STATE(1234), - [sym_compound_requirement] = STATE(1234), - [sym__requirement] = STATE(1234), + [sym_type_requirement] = STATE(1249), + [sym_compound_requirement] = STATE(1249), + [sym__requirement] = STATE(1249), [sym_requires_clause] = STATE(3521), [sym_requires_expression] = STATE(3521), [sym_lambda_expression] = STATE(3521), @@ -176579,11 +177623,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [aux_sym_requirement_seq_repeat1] = STATE(1234), - [sym_identifier] = ACTIONS(2913), + [aux_sym_requirement_seq_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -176591,9 +177635,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3180), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3182), [anon_sym_RBRACE] = ACTIONS(3291), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), @@ -176617,7 +177661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3182), + [anon_sym_typename] = ACTIONS(3186), [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), @@ -176632,31 +177676,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1261] = { - [sym__expression] = STATE(3616), + [sym__expression] = STATE(3613), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6032), - [sym_initializer_pair] = STATE(6032), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(5941), + [sym_initializer_pair] = STATE(5941), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -176668,12 +177712,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), - [anon_sym_COMMA] = ACTIONS(151), + [sym_identifier] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(3293), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -176683,8 +177727,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -176721,31 +177765,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1262] = { - [sym__expression] = STATE(3613), + [sym__expression] = STATE(3647), + [sym_comma_expression] = STATE(6261), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(5941), - [sym_initializer_pair] = STATE(5941), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6519), + [sym_initializer_pair] = STATE(6519), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -176757,12 +177802,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), - [anon_sym_COMMA] = ACTIONS(3297), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -176773,7 +177817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -176810,31 +177854,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1263] = { - [sym__expression] = STATE(3607), + [sym__expression] = STATE(3595), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(5859), - [sym_initializer_pair] = STATE(5859), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(5975), + [sym_initializer_pair] = STATE(5975), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -176846,11 +177890,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_COMMA] = ACTIONS(3301), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -176862,7 +177906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_RBRACE] = ACTIONS(3303), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -176899,31 +177943,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1264] = { - [sym__expression] = STATE(3642), + [sym__expression] = STATE(3640), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(5946), - [sym_initializer_pair] = STATE(5946), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6102), + [sym_initializer_pair] = STATE(6102), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -176935,11 +177979,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_COMMA] = ACTIONS(3305), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -176951,7 +177995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -176988,31 +178032,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1265] = { - [sym__expression] = STATE(3597), + [sym__expression] = STATE(3608), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(5975), - [sym_initializer_pair] = STATE(5975), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(5859), + [sym_initializer_pair] = STATE(5859), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -177024,11 +178068,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_COMMA] = ACTIONS(3309), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -177040,7 +178084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -177077,31 +178121,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1266] = { - [sym__expression] = STATE(3631), + [sym__expression] = STATE(3645), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6102), - [sym_initializer_pair] = STATE(6102), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(5946), + [sym_initializer_pair] = STATE(5946), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -177113,11 +178157,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_COMMA] = ACTIONS(3313), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -177129,7 +178173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -177166,32 +178210,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1267] = { - [sym__expression] = STATE(3643), - [sym_comma_expression] = STATE(6261), + [sym__expression] = STATE(3618), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6519), - [sym_initializer_pair] = STATE(6519), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6032), + [sym_initializer_pair] = STATE(6032), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -177203,11 +178246,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -177218,7 +178262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -177258,28 +178302,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expression] = STATE(3708), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6519), [sym_initializer_pair] = STATE(6519), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -177291,11 +178335,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -177306,7 +178350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -177346,28 +178390,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expression] = STATE(3708), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6519), [sym_initializer_pair] = STATE(6519), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -177379,11 +178423,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -177394,7 +178438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -177434,28 +178478,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expression] = STATE(3708), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6519), [sym_initializer_pair] = STATE(6519), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -177467,11 +178511,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -177482,7 +178526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -177522,28 +178566,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expression] = STATE(3708), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6519), [sym_initializer_pair] = STATE(6519), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -177555,11 +178599,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -177570,7 +178614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -177610,28 +178654,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expression] = STATE(3708), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6519), [sym_initializer_pair] = STATE(6519), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -177643,11 +178687,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -177658,7 +178702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -177698,28 +178742,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expression] = STATE(3708), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6519), [sym_initializer_pair] = STATE(6519), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -177731,11 +178775,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -177746,7 +178790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -177786,28 +178830,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expression] = STATE(3708), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6519), [sym_initializer_pair] = STATE(6519), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -177819,11 +178863,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -177834,7 +178878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -177874,28 +178918,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expression] = STATE(3708), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6519), [sym_initializer_pair] = STATE(6519), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -177907,11 +178951,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -177921,8 +178965,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -177962,28 +179006,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expression] = STATE(3708), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6519), [sym_initializer_pair] = STATE(6519), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -177995,11 +179039,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -178009,8 +179053,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -178050,28 +179094,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expression] = STATE(3708), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6519), [sym_initializer_pair] = STATE(6519), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -178083,11 +179127,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -178097,8 +179141,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -178138,28 +179182,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expression] = STATE(3708), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6519), [sym_initializer_pair] = STATE(6519), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -178171,11 +179215,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -178185,8 +179229,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -178226,28 +179270,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expression] = STATE(3708), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6519), [sym_initializer_pair] = STATE(6519), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -178259,11 +179303,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -178273,8 +179317,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -178314,28 +179358,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expression] = STATE(3708), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6519), [sym_initializer_pair] = STATE(6519), [sym_subscript_designator] = STATE(5489), [sym_field_designator] = STATE(5489), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -178347,11 +179391,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [aux_sym_initializer_pair_repeat1] = STATE(5489), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -178361,7 +179405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -178398,29 +179442,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1281] = { - [sym__expression] = STATE(3736), - [sym_comma_expression] = STATE(6685), + [sym__expression] = STATE(2784), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(7084), + [sym__unary_right_fold] = STATE(7085), + [sym__binary_fold] = STATE(7086), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1282] = { + [sym__expression] = STATE(3657), + [sym_comma_expression] = STATE(6695), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6685), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6695), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -178432,10 +179560,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -178481,114 +179609,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1282] = { - [sym__expression] = STATE(2785), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6814), - [sym__unary_right_fold] = STATE(6813), - [sym__binary_fold] = STATE(6812), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, [1283] = { - [sym__expression] = STATE(3686), - [sym_comma_expression] = STATE(6736), + [sym__expression] = STATE(3797), + [sym_comma_expression] = STATE(7081), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6736), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(7081), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -178600,10 +179644,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -178650,129 +179694,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1284] = { - [sym__expression] = STATE(3697), - [sym_comma_expression] = STATE(6695), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6695), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1285] = { - [sym__expression] = STATE(2773), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [sym__expression] = STATE(2791), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6777), - [sym__unary_right_fold] = STATE(6779), - [sym__binary_fold] = STATE(6784), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__unary_left_fold] = STATE(7112), + [sym__unary_right_fold] = STATE(7108), + [sym__binary_fold] = STATE(7106), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1285] = { + [sym__expression] = STATE(2788), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6814), + [sym__unary_right_fold] = STATE(6813), + [sym__binary_fold] = STATE(6812), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), @@ -178818,45 +179862,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [1286] = { - [sym__expression] = STATE(2782), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [sym__expression] = STATE(2795), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6973), - [sym__unary_right_fold] = STATE(6982), - [sym__binary_fold] = STATE(7083), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__unary_left_fold] = STATE(6822), + [sym__unary_right_fold] = STATE(6818), + [sym__binary_fold] = STATE(6808), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), @@ -178902,29 +179946,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [1287] = { - [sym__expression] = STATE(3763), - [sym_comma_expression] = STATE(6781), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6736), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6781), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6736), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -178936,10 +179980,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -178947,7 +179991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3345), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_LBRACK] = ACTIONS(1519), @@ -178986,45 +180030,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1288] = { - [sym__expression] = STATE(2781), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [sym__expression] = STATE(2787), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(7084), - [sym__unary_right_fold] = STATE(7085), - [sym__binary_fold] = STATE(7086), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__unary_left_fold] = STATE(7159), + [sym__unary_right_fold] = STATE(7161), + [sym__binary_fold] = STATE(7165), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), @@ -179070,45 +180114,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [1289] = { - [sym__expression] = STATE(2787), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [sym__expression] = STATE(2786), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(7112), - [sym__unary_right_fold] = STATE(7108), - [sym__binary_fold] = STATE(7106), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__unary_left_fold] = STATE(6680), + [sym__unary_right_fold] = STATE(6682), + [sym__binary_fold] = STATE(6684), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), @@ -179154,45 +180198,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [1290] = { - [sym__expression] = STATE(2786), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [sym__expression] = STATE(2776), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6946), - [sym__unary_right_fold] = STATE(6944), - [sym__binary_fold] = STATE(6943), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__unary_left_fold] = STATE(6777), + [sym__unary_right_fold] = STATE(6779), + [sym__binary_fold] = STATE(6784), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), @@ -179238,197 +180282,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [1291] = { - [sym__expression] = STATE(2790), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6822), - [sym__unary_right_fold] = STATE(6818), - [sym__binary_fold] = STATE(6808), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1292] = { - [sym__expression] = STATE(2784), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(7159), - [sym__unary_right_fold] = STATE(7161), - [sym__binary_fold] = STATE(7165), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1293] = { - [sym__expression] = STATE(3795), - [sym_comma_expression] = STATE(7081), + [sym__expression] = STATE(3769), + [sym_comma_expression] = STATE(6781), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(7081), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6781), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -179440,10 +180316,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3347), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1292] = { + [sym__expression] = STATE(3736), + [sym_comma_expression] = STATE(6685), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6685), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -179489,46 +180449,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1294] = { - [sym__expression] = STATE(2783), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [1293] = { + [sym__expression] = STATE(2790), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym__unary_left_fold] = STATE(6680), - [sym__unary_right_fold] = STATE(6682), - [sym__binary_fold] = STATE(6684), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1294] = { + [sym__expression] = STATE(2785), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6973), + [sym__unary_right_fold] = STATE(6982), + [sym__binary_fold] = STATE(7083), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), @@ -179574,7 +180618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [1295] = { - [sym__expression] = STATE(3636), + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -179588,13 +180632,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -179657,7 +180701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1296] = { - [sym__expression] = STATE(3636), + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -179671,13 +180715,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -179740,90 +180784,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1297] = { - [sym__expression] = STATE(3636), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_lambda_default_capture] = STATE(6436), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4294), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5370), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_parameter_list] = STATE(1086), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(4122), + [sym_template_function] = STATE(5152), + [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3355), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym__scope_resolution] = STATE(4933), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3443), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(3359), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_operator] = ACTIONS(1501), }, [1298] = { - [sym__expression] = STATE(3636), + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -179837,13 +180881,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -179869,89 +180913,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3351), [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3361), - [anon_sym_EQ] = ACTIONS(3355), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1299] = { - [sym__expression] = STATE(3636), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_lambda_default_capture] = STATE(6436), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3363), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), [anon_sym_RBRACK] = ACTIONS(3365), [anon_sym_EQ] = ACTIONS(3355), [sym_primitive_type] = ACTIONS(1521), @@ -179988,91 +180949,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1300] = { - [sym__expression] = STATE(3636), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_lambda_default_capture] = STATE(6436), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [1299] = { + [sym__expression] = STATE(3088), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3355), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1300] = { + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4259), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5422), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_parameter_list] = STATE(1088), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(4122), + [sym_template_function] = STATE(5152), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4933), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3443), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(3359), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), }, [1301] = { - [sym__expression] = STATE(3636), + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -180086,13 +181130,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -180118,7 +181162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3351), [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3369), + [anon_sym_RBRACK] = ACTIONS(3371), [anon_sym_EQ] = ACTIONS(3355), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(2995), @@ -180155,28 +181199,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1302] = { - [sym__expression] = STATE(3640), + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(5966), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -180184,31 +181227,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_requires_expression] = STATE(3521), [sym_lambda_expression] = STATE(3521), [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), [sym_fold_expression] = STATE(3521), [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3371), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3373), + [anon_sym_EQ] = ACTIONS(3355), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -180225,67 +181269,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), + [anon_sym_delete] = ACTIONS(3005), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1303] = { - [sym__expression] = STATE(2516), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [sym__expression] = STATE(2560), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_LPAREN2] = ACTIONS(3367), [anon_sym_BANG] = ACTIONS(1511), [anon_sym_TILDE] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1509), [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(1509), [anon_sym_compl] = ACTIONS(1509), @@ -180321,7 +181365,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1533), }, [1304] = { - [sym__expression] = STATE(3636), + [sym__expression] = STATE(3091), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1305] = { + [sym__expression] = STATE(3089), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1306] = { + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -180335,13 +181545,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3375), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1307] = { + [sym__expression] = STATE(3648), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -180403,112 +181696,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1305] = { - [sym__expression] = STATE(3089), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1306] = { - [sym__expression] = STATE(3633), + [1308] = { + [sym__expression] = STATE(3649), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(5862), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(5966), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -180520,10 +181730,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_RPAREN] = ACTIONS(3379), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -180569,28 +181779,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1307] = { - [sym__expression] = STATE(3636), + [1309] = { + [sym__expression] = STATE(3968), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(7220), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -180598,32 +181809,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_requires_expression] = STATE(3521), [sym_lambda_expression] = STATE(3521), [sym_lambda_capture_specifier] = STATE(4775), - [sym_lambda_default_capture] = STATE(6436), [sym_fold_expression] = STATE(3521), [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3381), - [anon_sym_EQ] = ACTIONS(3355), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), + [anon_sym_default] = ACTIONS(3381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -180640,186 +181850,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), + [anon_sym_delete] = ACTIONS(3383), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1308] = { - [sym__expression] = STATE(2936), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1309] = { - [sym__expression] = STATE(3079), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, [1310] = { - [sym__expression] = STATE(3636), + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -180833,96 +181877,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_lambda_default_capture] = STATE(6436), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3355), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1311] = { - [sym__expression] = STATE(3636), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -180984,8 +181945,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1312] = { - [sym__expression] = STATE(3636), + [1311] = { + [sym__expression] = STATE(3712), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -180999,13 +181960,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1312] = { + [sym__expression] = STATE(3589), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -181021,7 +182065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), + [sym_identifier] = ACTIONS(3387), [anon_sym_LPAREN2] = ACTIONS(2993), [anon_sym_BANG] = ACTIONS(2997), [anon_sym_TILDE] = ACTIONS(2997), @@ -181031,7 +182075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3351), [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3387), + [anon_sym_RBRACK] = ACTIONS(3373), [anon_sym_EQ] = ACTIONS(3355), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(2995), @@ -181068,7 +182112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1313] = { - [sym__expression] = STATE(3636), + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -181082,13 +182126,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -181151,111 +182195,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1314] = { - [sym__expression] = STATE(3636), + [sym__expression] = STATE(3652), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6111), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_lambda_default_capture] = STATE(6436), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(3355), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1315] = { - [sym__expression] = STATE(3611), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(5910), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -181267,11 +182228,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3393), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3391), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -181316,112 +182277,361 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1316] = { - [sym__expression] = STATE(2675), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), - }, - [1317] = { - [sym__expression] = STATE(3630), + [1315] = { + [sym__expression] = STATE(3589), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6111), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3373), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1316] = { + [sym__expression] = STATE(2967), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1317] = { + [sym__expression] = STATE(3648), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3393), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1318] = { + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4280), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5407), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_parameter_list] = STATE(1082), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(4122), + [sym_template_function] = STATE(5152), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4933), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3443), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(3359), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + }, + [1319] = { + [sym__expression] = STATE(3622), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(5977), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -181433,10 +182643,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_RPAREN] = ACTIONS(3395), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -181482,340 +182692,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1318] = { - [sym__expression] = STATE(3872), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(7220), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(3397), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3399), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1319] = { - [sym__expression] = STATE(3552), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, [1320] = { - [sym__expression] = STATE(2489), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym__expression] = STATE(3922), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [1321] = { - [sym__expression] = STATE(2943), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), + [sym__expression] = STATE(2961), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), + [sym_qualified_identifier] = STATE(3059), [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), }, [1322] = { - [sym__expression] = STATE(3636), + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -181829,13 +182873,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -181861,7 +182905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3351), [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3401), + [anon_sym_RBRACK] = ACTIONS(3397), [anon_sym_EQ] = ACTIONS(3355), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(2995), @@ -181898,28 +182942,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1323] = { - [sym__expression] = STATE(3887), + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6885), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -181927,31 +182970,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_requires_expression] = STATE(3521), [sym_lambda_expression] = STATE(3521), [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), [sym_fold_expression] = STATE(3521), [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3399), + [anon_sym_EQ] = ACTIONS(3355), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(3403), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -181968,40 +183012,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3405), + [anon_sym_delete] = ACTIONS(3005), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1324] = { - [sym__expression] = STATE(3567), + [sym__expression] = STATE(3662), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1325] = { + [sym__expression] = STATE(2677), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1326] = { + [sym__expression] = STATE(3581), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -182013,22 +183223,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(3373), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(3367), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -182063,29 +183273,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1325] = { - [sym__expression] = STATE(3618), + [1327] = { + [sym__expression] = STATE(3612), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(5977), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(5910), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -182097,10 +183307,425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1328] = { + [sym__expression] = STATE(3597), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6007), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3403), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1329] = { + [sym__expression] = STATE(3715), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1330] = { + [sym__expression] = STATE(3648), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3373), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1331] = { + [sym__expression] = STATE(3648), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3405), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1332] = { + [sym__expression] = STATE(3628), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(5816), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), [anon_sym_RPAREN] = ACTIONS(3407), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -182146,91 +183771,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1326] = { - [sym__expression] = STATE(3083), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1327] = { - [sym__expression] = STATE(3636), + [1333] = { + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -182244,13 +183786,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -182312,28 +183854,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1328] = { - [sym__expression] = STATE(3905), + [1334] = { + [sym__expression] = STATE(3888), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6885), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -182345,28 +183888,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_default] = ACTIONS(3411), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -182383,20 +183925,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(3413), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1329] = { - [sym__expression] = STATE(3709), + [1335] = { + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -182410,179 +183952,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1330] = { - [sym__expression] = STATE(3896), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1331] = { - [sym__expression] = STATE(3636), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -182608,7 +183984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3351), [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3411), + [anon_sym_RBRACK] = ACTIONS(3415), [anon_sym_EQ] = ACTIONS(3355), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(2995), @@ -182644,91 +184020,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1332] = { - [sym__expression] = STATE(3839), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6906), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(3413), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3415), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1333] = { - [sym__expression] = STATE(3701), + [1336] = { + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -182742,13 +184035,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -182756,6 +184049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_requires_expression] = STATE(3521), [sym_lambda_expression] = STATE(3521), [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), [sym_fold_expression] = STATE(3521), [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), @@ -182764,18 +184058,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_LPAREN2] = ACTIONS(2993), [anon_sym_BANG] = ACTIONS(2997), [anon_sym_TILDE] = ACTIONS(2997), [anon_sym_DASH] = ACTIONS(2995), [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3355), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(2995), [anon_sym_compl] = ACTIONS(2995), @@ -182810,138 +184103,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1334] = { - [sym__expression] = STATE(3782), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), + [1337] = { + [sym__expression] = STATE(3633), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(5862), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, - [1335] = { - [sym__expression] = STATE(2682), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), + [1338] = { + [sym__expression] = STATE(2680), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), [sym_string_literal] = STATE(1795), [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), + [sym_qualified_identifier] = STATE(2916), [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), + [sym_user_defined_literal] = STATE(2708), [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_LPAREN2] = ACTIONS(3367), [anon_sym_BANG] = ACTIONS(1551), [anon_sym_TILDE] = ACTIONS(1551), [anon_sym_DASH] = ACTIONS(1549), [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), [sym_primitive_type] = ACTIONS(1559), [anon_sym_not] = ACTIONS(1549), [anon_sym_compl] = ACTIONS(1549), @@ -182976,277 +184269,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1571), [sym_nullptr] = ACTIONS(1571), }, - [1336] = { - [sym__expression] = STATE(3626), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(5816), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3417), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1337] = { - [sym__expression] = STATE(3636), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_lambda_default_capture] = STATE(6436), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3365), - [anon_sym_EQ] = ACTIONS(3355), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1338] = { - [sym__expression] = STATE(3753), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, [1339] = { - [sym__expression] = STATE(3636), + [sym__expression] = STATE(3916), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), + [sym_pointer_expression] = STATE(3108), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -183254,32 +184298,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_requires_expression] = STATE(3521), [sym_lambda_expression] = STATE(3521), [sym_lambda_capture_specifier] = STATE(4775), - [sym_lambda_default_capture] = STATE(6436), [sym_fold_expression] = STATE(3521), [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), + [sym_qualified_identifier] = STATE(3108), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3355), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -183296,41 +184340,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), + [anon_sym_delete] = ACTIONS(3045), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1340] = { - [sym__expression] = STATE(3600), + [sym__expression] = STATE(3807), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1341] = { + [sym__expression] = STATE(3858), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6007), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6906), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -183342,11 +184469,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3421), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -183358,6 +184484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(3421), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), @@ -183379,7 +184506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), + [anon_sym_delete] = ACTIONS(3423), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), @@ -183391,257 +184518,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1341] = { - [sym__expression] = STATE(3088), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, [1342] = { - [sym__expression] = STATE(3634), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_lambda_default_capture] = STATE(6436), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym__expression] = STATE(3080), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3363), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3365), - [anon_sym_EQ] = ACTIONS(3355), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), }, [1343] = { - [sym__expression] = STATE(3636), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_lambda_default_capture] = STATE(6436), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4275), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5380), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_parameter_list] = STATE(1084), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(4122), + [sym_template_function] = STATE(5152), + [sym_destructor_name] = STATE(5152), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3355), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym__scope_resolution] = STATE(4933), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3443), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(3359), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_operator] = ACTIONS(1501), }, [1344] = { - [sym__expression] = STATE(3634), + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -183655,13 +184699,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -183687,7 +184731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3351), [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3365), + [anon_sym_RBRACK] = ACTIONS(3425), [anon_sym_EQ] = ACTIONS(3355), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(2995), @@ -183724,28 +184768,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1345] = { - [sym__expression] = STATE(3687), - [sym_comma_expression] = STATE(7135), + [sym__expression] = STATE(3586), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -183757,20 +184800,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3425), - [anon_sym_LPAREN2] = ACTIONS(964), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(3367), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -183806,253 +184851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1346] = { - [sym__expression] = STATE(3927), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(7149), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1347] = { - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4271), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5380), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5152), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_parameter_list] = STATE(1084), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(4169), - [sym_template_function] = STATE(5152), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4933), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), - [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [sym_identifier] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3431), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(1501), - }, - [1348] = { - [sym__expression] = STATE(3442), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(3441), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1349] = { - [sym__expression] = STATE(3442), + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -184066,14 +184865,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_initializer_list] = STATE(3441), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -184081,6 +184879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_requires_expression] = STATE(3521), [sym_lambda_expression] = STATE(3521), [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), [sym_fold_expression] = STATE(3521), [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), @@ -184095,10 +184894,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2995), [anon_sym_PLUS] = ACTIONS(2995), [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3427), + [anon_sym_EQ] = ACTIONS(3355), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(2995), [anon_sym_compl] = ACTIONS(2995), @@ -184133,111 +184933,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1350] = { - [sym__expression] = STATE(2932), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_initializer_list] = STATE(3077), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), + [1347] = { + [sym__expression] = STATE(2580), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), }, - [1351] = { - [sym__expression] = STATE(3731), - [sym_comma_expression] = STATE(6638), + [1348] = { + [sym__expression] = STATE(3648), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1349] = { + [sym__expression] = STATE(3816), + [sym_comma_expression] = STATE(7182), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -184249,10 +185133,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3431), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1350] = { + [sym__expression] = STATE(3746), + [sym_comma_expression] = STATE(7212), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), [anon_sym_RPAREN] = ACTIONS(3433), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -184297,29 +185263,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1352] = { - [sym__expression] = STATE(3729), - [sym_comma_expression] = STATE(6636), + [1351] = { + [sym__expression] = STATE(3539), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_initializer_list] = STATE(3538), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -184331,10 +185297,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1352] = { + [sym__expression] = STATE(3675), + [sym_comma_expression] = STATE(6762), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), [anon_sym_RPAREN] = ACTIONS(3435), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -184380,110 +185428,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1353] = { - [sym__expression] = STATE(3711), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_initializer_list] = STATE(3981), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1354] = { - [sym__expression] = STATE(3725), - [sym_comma_expression] = STATE(6625), + [sym__expression] = STATE(3972), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6845), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -184495,10 +185461,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1354] = { + [sym__expression] = STATE(3599), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6478), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1355] = { + [sym__expression] = STATE(3822), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6825), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1356] = { + [sym__expression] = STATE(3730), + [sym_comma_expression] = STATE(6641), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), [anon_sym_RPAREN] = ACTIONS(3437), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -184543,29 +185755,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1355] = { - [sym__expression] = STATE(3724), - [sym_comma_expression] = STATE(6622), + [1357] = { + [sym__expression] = STATE(3817), + [sym_comma_expression] = STATE(6935), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -184577,10 +185789,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_RPAREN] = ACTIONS(3439), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), @@ -184625,193 +185837,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1356] = { - [sym__expression] = STATE(3722), - [sym_comma_expression] = STATE(6618), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1357] = { - [sym__expression] = STATE(3719), - [sym_comma_expression] = STATE(6641), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, [1358] = { - [sym__expression] = STATE(3889), + [sym__expression] = STATE(3592), + [sym_comma_expression] = STATE(6261), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_initializer_list] = STATE(6872), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -184823,26 +185871,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2973), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3441), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -184859,41 +185907,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), + [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1359] = { - [sym__expression] = STATE(3718), - [sym_comma_expression] = STATE(6713), + [sym__expression] = STATE(3679), + [sym_comma_expression] = STATE(6754), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -184905,11 +185953,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3445), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3444), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -184954,28 +186002,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1360] = { - [sym__expression] = STATE(3794), + [sym__expression] = STATE(3735), + [sym_comma_expression] = STATE(6625), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6478), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -184987,10 +186035,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3446), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -184999,7 +186048,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), @@ -185036,28 +186084,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1361] = { - [sym__expression] = STATE(3716), - [sym_comma_expression] = STATE(6714), + [sym__expression] = STATE(3868), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6920), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -185069,92 +186117,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3447), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1362] = { - [sym__expression] = STATE(3961), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6845), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -185199,29 +186165,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1363] = { - [sym__expression] = STATE(3952), + [1362] = { + [sym__expression] = STATE(3819), + [sym_comma_expression] = STATE(6940), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6825), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -185233,10 +186199,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3448), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1363] = { + [sym__expression] = STATE(3825), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6945), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -185282,110 +186330,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1364] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3449), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), + [sym_template_argument_list] = STATE(1758), + [sym_identifier] = ACTIONS(3450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3452), + [anon_sym_COMMA] = ACTIONS(3452), + [anon_sym_RPAREN] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3464), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym___attribute__] = ACTIONS(3450), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), + [anon_sym___declspec] = ACTIONS(3450), + [anon_sym___based] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_EQ] = ACTIONS(3459), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_register] = ACTIONS(3450), + [anon_sym_inline] = ACTIONS(3450), + [anon_sym_thread_local] = ACTIONS(3450), + [anon_sym_input] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym_restrict] = ACTIONS(3450), + [anon_sym__Atomic] = ACTIONS(3450), + [anon_sym_mutable] = ACTIONS(3450), + [anon_sym_constexpr] = ACTIONS(3450), + [anon_sym_constinit] = ACTIONS(3450), + [anon_sym_consteval] = ACTIONS(3450), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3462), + [anon_sym_SLASH_EQ] = ACTIONS(3462), + [anon_sym_PERCENT_EQ] = ACTIONS(3462), + [anon_sym_PLUS_EQ] = ACTIONS(3462), + [anon_sym_DASH_EQ] = ACTIONS(3462), + [anon_sym_LT_LT_EQ] = ACTIONS(3462), + [anon_sym_GT_GT_EQ] = ACTIONS(3462), + [anon_sym_AMP_EQ] = ACTIONS(3462), + [anon_sym_CARET_EQ] = ACTIONS(3462), + [anon_sym_PIPE_EQ] = ACTIONS(3462), + [anon_sym_and_eq] = ACTIONS(3471), + [anon_sym_or_eq] = ACTIONS(3471), + [anon_sym_xor_eq] = ACTIONS(3471), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3457), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3457), + [anon_sym_not_eq] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3457), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), + [sym_auto] = ACTIONS(3450), + [anon_sym_decltype] = ACTIONS(3450), + [anon_sym_virtual] = ACTIONS(3450), + [anon_sym_template] = ACTIONS(3450), + [anon_sym_operator] = ACTIONS(3450), + [anon_sym_DOT_STAR] = ACTIONS(3462), + [anon_sym_DASH_GT_STAR] = ACTIONS(3462), }, [1365] = { - [sym__expression] = STATE(3599), + [sym__expression] = STATE(3716), + [sym_comma_expression] = STATE(6714), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6478), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -185397,10 +186445,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3473), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -185409,7 +186458,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), @@ -185446,110 +186494,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1366] = { - [sym__expression] = STATE(3702), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6512), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym__expression] = STATE(2976), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_initializer_list] = STATE(2988), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1679), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), }, [1367] = { - [sym__expression] = STATE(3784), - [sym_comma_expression] = STATE(6855), + [sym__expression] = STATE(3709), + [sym_comma_expression] = STATE(6949), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -185561,11 +186609,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3451), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3475), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -185610,28 +186658,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1368] = { - [sym__expression] = STATE(3809), - [sym_comma_expression] = STATE(6935), + [sym__expression] = STATE(3945), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6637), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -185643,11 +186691,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3453), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1369] = { + [sym__expression] = STATE(3740), + [sym_comma_expression] = STATE(7135), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3477), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -185691,90 +186821,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1369] = { - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4303), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5370), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5152), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_parameter_list] = STATE(1083), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(4169), - [sym_template_function] = STATE(5152), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4933), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), - [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [sym_identifier] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3431), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(1501), - }, [1370] = { - [sym__expression] = STATE(3845), + [sym__expression] = STATE(3891), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -185788,14 +186836,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_initializer_list] = STATE(6987), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_initializer_list] = STATE(6872), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -185856,28 +186904,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1371] = { - [sym__expression] = STATE(3810), - [sym_comma_expression] = STATE(6940), + [sym__expression] = STATE(3744), + [sym_comma_expression] = STATE(6850), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -185889,11 +186937,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3455), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3479), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -185938,28 +186986,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1372] = { - [sym__expression] = STATE(3821), + [sym__expression] = STATE(3658), + [sym_comma_expression] = STATE(6636), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6945), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -185971,10 +187019,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3481), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -185983,7 +187032,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), @@ -186020,28 +187068,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1373] = { - [sym__expression] = STATE(3811), - [sym_comma_expression] = STATE(6949), + [sym__expression] = STATE(3718), + [sym_comma_expression] = STATE(6713), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -186053,11 +187101,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3457), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3483), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -186102,28 +187150,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1374] = { - [sym__expression] = STATE(3892), + [sym__expression] = STATE(3894), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), + [sym_parenthesized_expression] = STATE(2770), [sym_initializer_list] = STATE(6867), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -186135,10 +187183,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -186184,296 +187232,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1375] = { - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4267), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5422), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5152), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_parameter_list] = STATE(1087), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(4169), - [sym_template_function] = STATE(5152), - [sym_destructor_name] = STATE(5152), + [sym__expression] = STATE(3733), + [sym_comma_expression] = STATE(6622), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4933), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), - [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [sym_identifier] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3431), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), [anon_sym_template] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [1376] = { - [sym__expression] = STATE(3807), - [sym_comma_expression] = STATE(7182), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1377] = { - [sym__expression] = STATE(3786), - [sym_comma_expression] = STATE(6864), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1378] = { [sym__expression] = STATE(3087), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_initializer_list] = STATE(2526), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_initializer_list] = STATE(2550), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN2] = ACTIONS(1705), [anon_sym_BANG] = ACTIONS(1709), [anon_sym_TILDE] = ACTIONS(1709), [anon_sym_DASH] = ACTIONS(1707), [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), [anon_sym_COLON_COLON] = ACTIONS(1713), [anon_sym_LBRACE] = ACTIONS(1517), [anon_sym_LBRACK] = ACTIONS(1519), @@ -186511,111 +187395,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, - [1379] = { - [sym__expression] = STATE(3078), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_initializer_list] = STATE(3118), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1380] = { - [sym__expression] = STATE(3838), + [1377] = { + [sym__expression] = STATE(3896), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(7189), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6856), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -186627,10 +187429,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -186675,29 +187477,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1381] = { - [sym__expression] = STATE(3747), - [sym_comma_expression] = STATE(6830), + [1378] = { + [sym__expression] = STATE(3751), + [sym_comma_expression] = STATE(6848), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -186709,11 +187511,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3463), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1379] = { + [sym__expression] = STATE(3855), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(7149), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1380] = { + [sym__expression] = STATE(3811), + [sym_comma_expression] = STATE(7213), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3489), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1381] = { + [sym__expression] = STATE(3717), + [sym_comma_expression] = STATE(6882), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3491), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -186758,28 +187806,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1382] = { - [sym__expression] = STATE(3665), - [sym_comma_expression] = STATE(6752), + [sym__expression] = STATE(3899), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6854), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -186791,11 +187839,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3465), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -186804,6 +187851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), @@ -186840,862 +187888,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1383] = { - [sym__expression] = STATE(3756), - [sym_comma_expression] = STATE(7199), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3467), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1384] = { - [sym__expression] = STATE(3789), - [sym_comma_expression] = STATE(6869), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1385] = { - [sym__expression] = STATE(3688), - [sym_comma_expression] = STATE(7212), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3471), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1386] = { - [sym__expression] = STATE(3790), - [sym_comma_expression] = STATE(6870), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1387] = { - [sym__expression] = STATE(3873), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(7177), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1388] = { - [sym__expression] = STATE(3791), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6613), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1389] = { - [sym__expression] = STATE(3974), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6620), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1390] = { - [sym__expression] = STATE(3799), - [sym_comma_expression] = STATE(7213), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3475), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1391] = { - [sym__expression] = STATE(3977), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6642), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1392] = { - [sym__expression] = STATE(3692), - [sym_comma_expression] = STATE(6999), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1393] = { [sym__expression] = STATE(2689), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), [sym_initializer_list] = STATE(2768), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), [sym_string_literal] = STATE(1795), [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), + [sym_qualified_identifier] = STATE(2916), [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), + [sym_user_defined_literal] = STATE(2708), [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(1547), [anon_sym_BANG] = ACTIONS(1551), @@ -187741,1341 +187969,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1571), [sym_nullptr] = ACTIONS(1571), }, - [1394] = { - [sym__expression] = STATE(3657), - [sym_comma_expression] = STATE(6762), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [1384] = { + [sym__expression] = STATE(3077), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_initializer_list] = STATE(3150), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3479), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1837), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), }, - [1395] = { + [1385] = { [sym__expression] = STATE(3710), - [sym_comma_expression] = STATE(6882), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3481), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1396] = { - [sym__expression] = STATE(3715), - [sym_comma_expression] = STATE(6876), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3483), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1397] = { - [sym__expression] = STATE(3948), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(7005), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1398] = { - [sym__expression] = STATE(3863), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6920), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1399] = { - [sym__expression] = STATE(3659), - [sym_comma_expression] = STATE(6759), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1400] = { - [sym__expression] = STATE(3591), - [sym_comma_expression] = STATE(6261), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3487), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1401] = { - [sym__expression] = STATE(3843), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_initializer_list] = STATE(3441), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1402] = { - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4287), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_ms_based_modifier] = STATE(6985), - [sym__declarator] = STATE(5407), - [sym_parenthesized_declarator] = STATE(5152), - [sym_attributed_declarator] = STATE(5152), - [sym_pointer_declarator] = STATE(5152), - [sym_function_declarator] = STATE(5152), - [sym_array_declarator] = STATE(5152), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_parameter_list] = STATE(1085), - [sym_reference_declarator] = STATE(5152), - [sym_structured_binding_declarator] = STATE(5152), - [sym_template_type] = STATE(4169), - [sym_template_function] = STATE(5152), - [sym_destructor_name] = STATE(5152), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4933), - [sym_qualified_identifier] = STATE(5152), - [sym_qualified_type_identifier] = STATE(3479), - [sym_operator_name] = STATE(5152), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [sym_identifier] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3431), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(1501), - }, - [1403] = { - [sym__expression] = STATE(3912), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6764), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1404] = { - [sym__expression] = STATE(3660), - [sym_comma_expression] = STATE(6756), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3490), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1405] = { - [sym__expression] = STATE(3733), - [sym_comma_expression] = STATE(6850), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1406] = { - [sym__expression] = STATE(3897), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6854), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1407] = { - [sym__expression] = STATE(3917), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6757), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1408] = { - [sym__expression] = STATE(3895), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6856), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1409] = { - [sym__expression] = STATE(3745), - [sym_comma_expression] = STATE(6848), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3494), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1410] = { - [sym__expression] = STATE(3674), [sym_comma_expression] = STATE(7088), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -189087,11 +188085,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3496), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3493), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -189135,29 +188133,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1411] = { - [sym__expression] = STATE(3664), - [sym_comma_expression] = STATE(6754), + [1386] = { + [sym__expression] = STATE(3934), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(7211), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -189169,92 +188167,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3498), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1412] = { - [sym__expression] = STATE(3932), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6990), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -189299,43 +188215,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1413] = { - [sym__expression] = STATE(2527), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_initializer_list] = STATE(2526), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [1387] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_initializer_list] = STATE(2550), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN2] = ACTIONS(1507), [anon_sym_BANG] = ACTIONS(1511), @@ -189381,29 +188297,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, - [1414] = { - [sym__expression] = STATE(3800), - [sym_comma_expression] = STATE(6896), + [1388] = { + [sym__expression] = STATE(3725), + [sym_comma_expression] = STATE(6876), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -189415,11 +188331,2143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3500), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1389] = { + [sym__expression] = STATE(3841), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(7189), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1390] = { + [sym_template_argument_list] = STATE(1814), + [sym_identifier] = ACTIONS(3450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(3462), + [anon_sym_LPAREN2] = ACTIONS(3497), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym___attribute__] = ACTIONS(3450), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3504), + [anon_sym___declspec] = ACTIONS(3450), + [anon_sym___based] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3511), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_register] = ACTIONS(3450), + [anon_sym_inline] = ACTIONS(3450), + [anon_sym_thread_local] = ACTIONS(3450), + [anon_sym_input] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym_restrict] = ACTIONS(3450), + [anon_sym__Atomic] = ACTIONS(3450), + [anon_sym_mutable] = ACTIONS(3450), + [anon_sym_constexpr] = ACTIONS(3450), + [anon_sym_constinit] = ACTIONS(3450), + [anon_sym_consteval] = ACTIONS(3450), + [anon_sym_COLON] = ACTIONS(3513), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3515), + [anon_sym_SLASH_EQ] = ACTIONS(3515), + [anon_sym_PERCENT_EQ] = ACTIONS(3515), + [anon_sym_PLUS_EQ] = ACTIONS(3515), + [anon_sym_DASH_EQ] = ACTIONS(3515), + [anon_sym_LT_LT_EQ] = ACTIONS(3515), + [anon_sym_GT_GT_EQ] = ACTIONS(3515), + [anon_sym_AMP_EQ] = ACTIONS(3515), + [anon_sym_CARET_EQ] = ACTIONS(3515), + [anon_sym_PIPE_EQ] = ACTIONS(3515), + [anon_sym_and_eq] = ACTIONS(3511), + [anon_sym_or_eq] = ACTIONS(3511), + [anon_sym_xor_eq] = ACTIONS(3511), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3457), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3457), + [anon_sym_not_eq] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3450), + [anon_sym_decltype] = ACTIONS(3450), + [anon_sym_virtual] = ACTIONS(3450), + [anon_sym_template] = ACTIONS(3450), + [anon_sym_operator] = ACTIONS(3450), + }, + [1391] = { + [sym__expression] = STATE(3754), + [sym_comma_expression] = STATE(6837), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3517), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1392] = { + [sym__expression] = STATE(3766), + [sym_comma_expression] = STATE(7199), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3519), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1393] = { + [sym__expression] = STATE(3870), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_initializer_list] = STATE(3538), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1394] = { + [sym__expression] = STATE(3739), + [sym_comma_expression] = STATE(6638), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3521), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1395] = { + [sym__expression] = STATE(3969), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(7177), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1396] = { + [sym__expression] = STATE(3721), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_initializer_list] = STATE(4021), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1397] = { + [sym__expression] = STATE(4056), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(7005), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1398] = { + [sym__expression] = STATE(3700), + [sym_comma_expression] = STATE(6999), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1399] = { + [sym__expression] = STATE(3682), + [sym_comma_expression] = STATE(6752), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1400] = { + [sym__expression] = STATE(3756), + [sym_comma_expression] = STATE(6830), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3527), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1401] = { + [sym__expression] = STATE(3677), + [sym_comma_expression] = STATE(6759), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3529), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1402] = { + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_COMMA] = ACTIONS(3531), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3531), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1403] = { + [sym__expression] = STATE(4044), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6764), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1404] = { + [sym__expression] = STATE(3847), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_initializer_list] = STATE(6987), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1405] = { + [sym__expression] = STATE(3808), + [sym_comma_expression] = STATE(6900), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1406] = { + [sym__expression] = STATE(3806), + [sym_comma_expression] = STATE(6896), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3535), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1407] = { + [sym_template_argument_list] = STATE(1489), + [sym_identifier] = ACTIONS(3537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3539), + [anon_sym_COMMA] = ACTIONS(3539), + [anon_sym_RPAREN] = ACTIONS(3539), + [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_STAR] = ACTIONS(3546), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_PIPE] = ACTIONS(3544), + [anon_sym_CARET] = ACTIONS(3544), + [anon_sym_AMP] = ACTIONS(3546), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_GT] = ACTIONS(3544), + [anon_sym_GT_EQ] = ACTIONS(3549), + [anon_sym_LT_EQ] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_extern] = ACTIONS(3537), + [anon_sym___attribute__] = ACTIONS(3537), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3542), + [anon_sym___declspec] = ACTIONS(3537), + [anon_sym___based] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3546), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_static] = ACTIONS(3537), + [anon_sym_register] = ACTIONS(3537), + [anon_sym_inline] = ACTIONS(3537), + [anon_sym_thread_local] = ACTIONS(3537), + [anon_sym_input] = ACTIONS(3537), + [anon_sym_const] = ACTIONS(3537), + [anon_sym_volatile] = ACTIONS(3537), + [anon_sym_restrict] = ACTIONS(3537), + [anon_sym__Atomic] = ACTIONS(3537), + [anon_sym_mutable] = ACTIONS(3537), + [anon_sym_constexpr] = ACTIONS(3537), + [anon_sym_constinit] = ACTIONS(3537), + [anon_sym_consteval] = ACTIONS(3537), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_STAR_EQ] = ACTIONS(3549), + [anon_sym_SLASH_EQ] = ACTIONS(3549), + [anon_sym_PERCENT_EQ] = ACTIONS(3549), + [anon_sym_PLUS_EQ] = ACTIONS(3549), + [anon_sym_DASH_EQ] = ACTIONS(3549), + [anon_sym_LT_LT_EQ] = ACTIONS(3549), + [anon_sym_GT_GT_EQ] = ACTIONS(3549), + [anon_sym_AMP_EQ] = ACTIONS(3549), + [anon_sym_CARET_EQ] = ACTIONS(3549), + [anon_sym_PIPE_EQ] = ACTIONS(3549), + [anon_sym_and_eq] = ACTIONS(3544), + [anon_sym_or_eq] = ACTIONS(3544), + [anon_sym_xor_eq] = ACTIONS(3544), + [anon_sym_LT_EQ_GT] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3544), + [anon_sym_and] = ACTIONS(3544), + [anon_sym_bitor] = ACTIONS(3544), + [anon_sym_xor] = ACTIONS(3544), + [anon_sym_bitand] = ACTIONS(3544), + [anon_sym_not_eq] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3549), + [anon_sym_PLUS_PLUS] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3544), + [anon_sym_DASH_GT] = ACTIONS(3544), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3537), + [anon_sym_decltype] = ACTIONS(3537), + [anon_sym_virtual] = ACTIONS(3537), + [anon_sym_template] = ACTIONS(3537), + [anon_sym_operator] = ACTIONS(3537), + [anon_sym_DOT_STAR] = ACTIONS(3549), + [anon_sym_DASH_GT_STAR] = ACTIONS(3549), + }, + [1408] = { + [sym__expression] = STATE(3849), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6757), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1409] = { + [sym__expression] = STATE(3704), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6512), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1410] = { + [sym__expression] = STATE(3678), + [sym_comma_expression] = STATE(6756), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1411] = { + [sym__expression] = STATE(3799), + [sym_comma_expression] = STATE(6870), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3556), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1412] = { + [sym__expression] = STATE(3683), + [sym_comma_expression] = STATE(6751), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3558), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1413] = { + [sym__expression] = STATE(3798), + [sym_comma_expression] = STATE(6869), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3560), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1414] = { + [sym__expression] = STATE(3796), + [sym_comma_expression] = STATE(6864), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3562), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -189464,28 +190512,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1415] = { - [sym__expression] = STATE(3867), + [sym__expression] = STATE(3791), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(7211), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6613), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -189497,10 +190545,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -189546,28 +190594,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1416] = { - [sym__expression] = STATE(3746), - [sym_comma_expression] = STATE(6837), + [sym__expression] = STATE(3803), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6478), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -189579,11 +190627,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3502), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -189592,6 +190639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), @@ -189628,28 +190676,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1417] = { - [sym__expression] = STATE(3916), + [sym__expression] = STATE(3935), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_initializer_list] = STATE(7089), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6990), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -189661,26 +190709,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -189697,41 +190745,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), + [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1418] = { - [sym__expression] = STATE(3801), - [sym_comma_expression] = STATE(6900), + [sym__expression] = STATE(3539), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(3538), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -189743,11 +190791,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3504), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -189756,6 +190803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), @@ -189792,28 +190840,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1419] = { - [sym__expression] = STATE(3667), - [sym_comma_expression] = STATE(6751), + [sym__expression] = STATE(3794), + [sym_comma_expression] = STATE(6855), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -189825,11 +190873,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3506), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3564), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -189874,28 +190922,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1420] = { - [sym__expression] = STATE(3930), + [sym__expression] = STATE(4000), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_initializer_list] = STATE(6637), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6620), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -189907,10 +190955,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -189956,189 +191004,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1421] = { - [sym_template_argument_list] = STATE(1828), - [sym_identifier] = ACTIONS(3508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3523), - [anon_sym_extern] = ACTIONS(3508), - [anon_sym___attribute__] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), - [anon_sym___declspec] = ACTIONS(3508), - [anon_sym___based] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_RBRACE] = ACTIONS(3510), - [anon_sym_LBRACK] = ACTIONS(3536), - [anon_sym_EQ] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_register] = ACTIONS(3508), - [anon_sym_inline] = ACTIONS(3508), - [anon_sym_thread_local] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3508), - [anon_sym_restrict] = ACTIONS(3508), - [anon_sym__Atomic] = ACTIONS(3508), - [anon_sym_mutable] = ACTIONS(3508), - [anon_sym_constexpr] = ACTIONS(3508), - [anon_sym_constinit] = ACTIONS(3508), - [anon_sym_consteval] = ACTIONS(3508), - [anon_sym_COLON] = ACTIONS(3542), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3544), - [anon_sym_SLASH_EQ] = ACTIONS(3544), - [anon_sym_PERCENT_EQ] = ACTIONS(3544), - [anon_sym_PLUS_EQ] = ACTIONS(3544), - [anon_sym_DASH_EQ] = ACTIONS(3544), - [anon_sym_LT_LT_EQ] = ACTIONS(3544), - [anon_sym_GT_GT_EQ] = ACTIONS(3544), - [anon_sym_AMP_EQ] = ACTIONS(3544), - [anon_sym_CARET_EQ] = ACTIONS(3544), - [anon_sym_PIPE_EQ] = ACTIONS(3544), - [anon_sym_and_eq] = ACTIONS(3540), - [anon_sym_or_eq] = ACTIONS(3540), - [anon_sym_xor_eq] = ACTIONS(3540), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3518), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3518), - [anon_sym_not_eq] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3508), - [anon_sym_decltype] = ACTIONS(3508), - [anon_sym_virtual] = ACTIONS(3508), - [anon_sym_template] = ACTIONS(3508), - [anon_sym_operator] = ACTIONS(3508), - }, - [1422] = { - [sym__expression] = STATE(3040), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3546), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1423] = { - [sym__expression] = STATE(3953), + [sym__expression] = STATE(4006), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_initializer_list] = STATE(6642), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -190150,10 +191037,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1422] = { + [sym__expression] = STATE(3926), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_initializer_list] = STATE(7089), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1423] = { + [sym__expression] = STATE(3732), + [sym_comma_expression] = STATE(6618), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3566), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -190184,7 +191236,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3549), [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), @@ -190199,1176 +191250,528 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1424] = { - [sym__expression] = STATE(2483), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym__expression] = STATE(4035), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3551), - [anon_sym_LPAREN2] = ACTIONS(3553), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3568), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [1425] = { - [sym__expression] = STATE(3082), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__expression] = STATE(3583), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3555), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(3572), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [1426] = { - [sym__expression] = STATE(3040), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3558), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), + [anon_sym_RBRACK] = ACTIONS(3574), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), }, [1427] = { - [sym__expression] = STATE(3844), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_identifier] = ACTIONS(3576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3576), + [anon_sym_PERCENT] = ACTIONS(3576), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(3576), + [anon_sym_CARET] = ACTIONS(3576), + [anon_sym_AMP] = ACTIONS(3576), + [anon_sym_EQ_EQ] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_GT] = ACTIONS(3576), + [anon_sym_GT_EQ] = ACTIONS(3578), + [anon_sym_LT_EQ] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(3576), + [anon_sym_LT_LT] = ACTIONS(3576), + [anon_sym_GT_GT] = ACTIONS(3576), + [anon_sym_extern] = ACTIONS(3576), + [anon_sym___attribute__] = ACTIONS(3576), + [anon_sym_COLON_COLON] = ACTIONS(3578), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3578), + [anon_sym___declspec] = ACTIONS(3576), + [anon_sym___based] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_register] = ACTIONS(3576), + [anon_sym_inline] = ACTIONS(3576), + [anon_sym_thread_local] = ACTIONS(3576), + [anon_sym_input] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_volatile] = ACTIONS(3576), + [anon_sym_restrict] = ACTIONS(3576), + [anon_sym__Atomic] = ACTIONS(3576), + [anon_sym_mutable] = ACTIONS(3576), + [anon_sym_constexpr] = ACTIONS(3576), + [anon_sym_constinit] = ACTIONS(3576), + [anon_sym_consteval] = ACTIONS(3576), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_STAR_EQ] = ACTIONS(3578), + [anon_sym_SLASH_EQ] = ACTIONS(3578), + [anon_sym_PERCENT_EQ] = ACTIONS(3578), + [anon_sym_PLUS_EQ] = ACTIONS(3578), + [anon_sym_DASH_EQ] = ACTIONS(3578), + [anon_sym_LT_LT_EQ] = ACTIONS(3578), + [anon_sym_GT_GT_EQ] = ACTIONS(3578), + [anon_sym_AMP_EQ] = ACTIONS(3578), + [anon_sym_CARET_EQ] = ACTIONS(3578), + [anon_sym_PIPE_EQ] = ACTIONS(3578), + [anon_sym_and_eq] = ACTIONS(3576), + [anon_sym_or_eq] = ACTIONS(3576), + [anon_sym_xor_eq] = ACTIONS(3576), + [anon_sym_LT_EQ_GT] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3576), + [anon_sym_and] = ACTIONS(3576), + [anon_sym_bitor] = ACTIONS(3576), + [anon_sym_xor] = ACTIONS(3576), + [anon_sym_bitand] = ACTIONS(3576), + [anon_sym_not_eq] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3576), + [anon_sym_DASH_GT] = ACTIONS(3576), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3561), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(3576), + [anon_sym_decltype] = ACTIONS(3576), + [anon_sym_virtual] = ACTIONS(3576), + [anon_sym_template] = ACTIONS(3576), + [anon_sym_operator] = ACTIONS(3576), + [anon_sym_DOT_STAR] = ACTIONS(3578), + [anon_sym_DASH_GT_STAR] = ACTIONS(3578), }, [1428] = { - [sym__expression] = STATE(3040), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3563), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), + [sym_identifier] = ACTIONS(3580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3582), + [anon_sym_COMMA] = ACTIONS(3582), + [anon_sym_RPAREN] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_STAR] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_PERCENT] = ACTIONS(3580), + [anon_sym_PIPE_PIPE] = ACTIONS(3582), + [anon_sym_AMP_AMP] = ACTIONS(3582), + [anon_sym_PIPE] = ACTIONS(3580), + [anon_sym_CARET] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3580), + [anon_sym_EQ_EQ] = ACTIONS(3582), + [anon_sym_BANG_EQ] = ACTIONS(3582), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_GT_EQ] = ACTIONS(3582), + [anon_sym_LT_EQ] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_LT_LT] = ACTIONS(3580), + [anon_sym_GT_GT] = ACTIONS(3580), + [anon_sym_extern] = ACTIONS(3580), + [anon_sym___attribute__] = ACTIONS(3580), + [anon_sym_COLON_COLON] = ACTIONS(3582), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3582), + [anon_sym___declspec] = ACTIONS(3580), + [anon_sym___based] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_register] = ACTIONS(3580), + [anon_sym_inline] = ACTIONS(3580), + [anon_sym_thread_local] = ACTIONS(3580), + [anon_sym_input] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3580), + [anon_sym_restrict] = ACTIONS(3580), + [anon_sym__Atomic] = ACTIONS(3580), + [anon_sym_mutable] = ACTIONS(3580), + [anon_sym_constexpr] = ACTIONS(3580), + [anon_sym_constinit] = ACTIONS(3580), + [anon_sym_consteval] = ACTIONS(3580), + [anon_sym_QMARK] = ACTIONS(3582), + [anon_sym_STAR_EQ] = ACTIONS(3582), + [anon_sym_SLASH_EQ] = ACTIONS(3582), + [anon_sym_PERCENT_EQ] = ACTIONS(3582), + [anon_sym_PLUS_EQ] = ACTIONS(3582), + [anon_sym_DASH_EQ] = ACTIONS(3582), + [anon_sym_LT_LT_EQ] = ACTIONS(3582), + [anon_sym_GT_GT_EQ] = ACTIONS(3582), + [anon_sym_AMP_EQ] = ACTIONS(3582), + [anon_sym_CARET_EQ] = ACTIONS(3582), + [anon_sym_PIPE_EQ] = ACTIONS(3582), + [anon_sym_and_eq] = ACTIONS(3580), + [anon_sym_or_eq] = ACTIONS(3580), + [anon_sym_xor_eq] = ACTIONS(3580), + [anon_sym_LT_EQ_GT] = ACTIONS(3582), + [anon_sym_or] = ACTIONS(3580), + [anon_sym_and] = ACTIONS(3580), + [anon_sym_bitor] = ACTIONS(3580), + [anon_sym_xor] = ACTIONS(3580), + [anon_sym_bitand] = ACTIONS(3580), + [anon_sym_not_eq] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_DASH_GT] = ACTIONS(3580), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), + [sym_auto] = ACTIONS(3580), + [anon_sym_decltype] = ACTIONS(3580), + [anon_sym_virtual] = ACTIONS(3580), + [anon_sym_template] = ACTIONS(3580), + [anon_sym_operator] = ACTIONS(3580), + [anon_sym_DOT_STAR] = ACTIONS(3582), + [anon_sym_DASH_GT_STAR] = ACTIONS(3582), }, [1429] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3566), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), + [sym_template_argument_list] = STATE(1820), + [sym_identifier] = ACTIONS(3450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(3462), + [anon_sym_LPAREN2] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym___attribute__] = ACTIONS(3450), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), + [anon_sym___declspec] = ACTIONS(3450), + [anon_sym___based] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_EQ] = ACTIONS(3511), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_register] = ACTIONS(3450), + [anon_sym_inline] = ACTIONS(3450), + [anon_sym_thread_local] = ACTIONS(3450), + [anon_sym_input] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym_restrict] = ACTIONS(3450), + [anon_sym__Atomic] = ACTIONS(3450), + [anon_sym_mutable] = ACTIONS(3450), + [anon_sym_constexpr] = ACTIONS(3450), + [anon_sym_constinit] = ACTIONS(3450), + [anon_sym_consteval] = ACTIONS(3450), + [anon_sym_COLON] = ACTIONS(3584), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3515), + [anon_sym_SLASH_EQ] = ACTIONS(3515), + [anon_sym_PERCENT_EQ] = ACTIONS(3515), + [anon_sym_PLUS_EQ] = ACTIONS(3515), + [anon_sym_DASH_EQ] = ACTIONS(3515), + [anon_sym_LT_LT_EQ] = ACTIONS(3515), + [anon_sym_GT_GT_EQ] = ACTIONS(3515), + [anon_sym_AMP_EQ] = ACTIONS(3515), + [anon_sym_CARET_EQ] = ACTIONS(3515), + [anon_sym_PIPE_EQ] = ACTIONS(3515), + [anon_sym_and_eq] = ACTIONS(3511), + [anon_sym_or_eq] = ACTIONS(3511), + [anon_sym_xor_eq] = ACTIONS(3511), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3457), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3457), + [anon_sym_not_eq] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3462), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), + [sym_auto] = ACTIONS(3450), + [anon_sym_decltype] = ACTIONS(3450), + [anon_sym_virtual] = ACTIONS(3450), + [anon_sym_template] = ACTIONS(3450), + [anon_sym_operator] = ACTIONS(3450), }, [1430] = { - [sym__expression] = STATE(3041), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [sym__expression] = STATE(3049), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3568), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1431] = { - [sym__expression] = STATE(3720), - [sym_comma_expression] = STATE(6948), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1432] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3571), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1433] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3573), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1434] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3575), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1435] = { - [sym__expression] = STATE(3555), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3577), - [anon_sym_LPAREN2] = ACTIONS(3579), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1436] = { - [sym__expression] = STATE(3855), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3581), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1437] = { - [sym__expression] = STATE(3082), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1438] = { - [sym__expression] = STATE(3050), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_DOT_DOT_DOT] = ACTIONS(3586), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), @@ -191413,28 +191816,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1449), [sym_nullptr] = ACTIONS(1449), }, - [1439] = { - [sym__expression] = STATE(3971), + [1431] = { + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3589), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1432] = { + [sym__expression] = STATE(3583), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -191446,26 +191930,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3577), - [anon_sym_LPAREN2] = ACTIONS(3589), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3591), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(3572), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -191482,202 +191966,769 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, + [1433] = { + [sym__expression] = STATE(3049), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1434] = { + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3596), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1435] = { + [sym__expression] = STATE(3049), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1436] = { + [sym__expression] = STATE(3049), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3601), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1437] = { + [sym__expression] = STATE(3048), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3604), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1438] = { + [sym__expression] = STATE(3915), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3607), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1439] = { + [sym_identifier] = ACTIONS(3609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3611), + [anon_sym_RPAREN] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3609), + [anon_sym_SLASH] = ACTIONS(3609), + [anon_sym_PERCENT] = ACTIONS(3609), + [anon_sym_PIPE_PIPE] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_PIPE] = ACTIONS(3609), + [anon_sym_CARET] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_EQ_EQ] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_GT] = ACTIONS(3609), + [anon_sym_GT_EQ] = ACTIONS(3611), + [anon_sym_LT_EQ] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_LT_LT] = ACTIONS(3609), + [anon_sym_GT_GT] = ACTIONS(3609), + [anon_sym_extern] = ACTIONS(3609), + [anon_sym___attribute__] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3611), + [anon_sym___declspec] = ACTIONS(3609), + [anon_sym___based] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_register] = ACTIONS(3609), + [anon_sym_inline] = ACTIONS(3609), + [anon_sym_thread_local] = ACTIONS(3609), + [anon_sym_input] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3609), + [anon_sym_restrict] = ACTIONS(3609), + [anon_sym__Atomic] = ACTIONS(3609), + [anon_sym_mutable] = ACTIONS(3609), + [anon_sym_constexpr] = ACTIONS(3609), + [anon_sym_constinit] = ACTIONS(3609), + [anon_sym_consteval] = ACTIONS(3609), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_STAR_EQ] = ACTIONS(3611), + [anon_sym_SLASH_EQ] = ACTIONS(3611), + [anon_sym_PERCENT_EQ] = ACTIONS(3611), + [anon_sym_PLUS_EQ] = ACTIONS(3611), + [anon_sym_DASH_EQ] = ACTIONS(3611), + [anon_sym_LT_LT_EQ] = ACTIONS(3611), + [anon_sym_GT_GT_EQ] = ACTIONS(3611), + [anon_sym_AMP_EQ] = ACTIONS(3611), + [anon_sym_CARET_EQ] = ACTIONS(3611), + [anon_sym_PIPE_EQ] = ACTIONS(3611), + [anon_sym_and_eq] = ACTIONS(3609), + [anon_sym_or_eq] = ACTIONS(3609), + [anon_sym_xor_eq] = ACTIONS(3609), + [anon_sym_LT_EQ_GT] = ACTIONS(3611), + [anon_sym_or] = ACTIONS(3609), + [anon_sym_and] = ACTIONS(3609), + [anon_sym_bitor] = ACTIONS(3609), + [anon_sym_xor] = ACTIONS(3609), + [anon_sym_bitand] = ACTIONS(3609), + [anon_sym_not_eq] = ACTIONS(3609), + [anon_sym_DASH_DASH] = ACTIONS(3611), + [anon_sym_PLUS_PLUS] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3609), + [anon_sym_DASH_GT] = ACTIONS(3609), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3609), + [anon_sym_decltype] = ACTIONS(3609), + [anon_sym_virtual] = ACTIONS(3609), + [anon_sym_template] = ACTIONS(3609), + [anon_sym_operator] = ACTIONS(3609), + [anon_sym_DOT_STAR] = ACTIONS(3611), + [anon_sym_DASH_GT_STAR] = ACTIONS(3611), + }, [1440] = { - [sym__expression] = STATE(3958), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_COLON_COLON] = ACTIONS(1515), [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3613), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3591), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), }, [1441] = { - [sym__expression] = STATE(3900), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym__expression] = STATE(2616), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3615), + [anon_sym_LPAREN2] = ACTIONS(3617), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3593), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), }, [1442] = { - [sym__expression] = STATE(3849), + [sym__expression] = STATE(4012), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -191689,11 +192740,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3595), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -191724,6 +192774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3619), [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), @@ -191738,189 +192789,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1443] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym__expression] = STATE(3050), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3597), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), }, [1444] = { - [sym__expression] = STATE(3564), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3601), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_template_argument_list] = STATE(1814), + [sym_identifier] = ACTIONS(3450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(3462), + [anon_sym_LPAREN2] = ACTIONS(3497), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym___attribute__] = ACTIONS(3450), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3504), + [anon_sym___declspec] = ACTIONS(3450), + [anon_sym___based] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3511), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_register] = ACTIONS(3450), + [anon_sym_inline] = ACTIONS(3450), + [anon_sym_thread_local] = ACTIONS(3450), + [anon_sym_input] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym_restrict] = ACTIONS(3450), + [anon_sym__Atomic] = ACTIONS(3450), + [anon_sym_mutable] = ACTIONS(3450), + [anon_sym_constexpr] = ACTIONS(3450), + [anon_sym_constinit] = ACTIONS(3450), + [anon_sym_consteval] = ACTIONS(3450), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3515), + [anon_sym_SLASH_EQ] = ACTIONS(3515), + [anon_sym_PERCENT_EQ] = ACTIONS(3515), + [anon_sym_PLUS_EQ] = ACTIONS(3515), + [anon_sym_DASH_EQ] = ACTIONS(3515), + [anon_sym_LT_LT_EQ] = ACTIONS(3515), + [anon_sym_GT_GT_EQ] = ACTIONS(3515), + [anon_sym_AMP_EQ] = ACTIONS(3515), + [anon_sym_CARET_EQ] = ACTIONS(3515), + [anon_sym_PIPE_EQ] = ACTIONS(3515), + [anon_sym_and_eq] = ACTIONS(3511), + [anon_sym_or_eq] = ACTIONS(3511), + [anon_sym_xor_eq] = ACTIONS(3511), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3457), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3457), + [anon_sym_not_eq] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3462), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(3450), + [anon_sym_decltype] = ACTIONS(3450), + [anon_sym_virtual] = ACTIONS(3450), + [anon_sym_template] = ACTIONS(3450), + [anon_sym_operator] = ACTIONS(3450), }, [1445] = { - [sym__expression] = STATE(3944), + [sym__expression] = STATE(3940), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -191932,10 +192983,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -191943,6 +192994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3626), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), @@ -191966,7 +193018,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3603), [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), @@ -191981,108 +193032,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1446] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3605), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1447] = { - [sym__expression] = STATE(3939), + [sym__expression] = STATE(3942), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -192094,10 +193064,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -192105,7 +193075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3607), + [anon_sym_SEMI] = ACTIONS(3628), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), @@ -192142,28 +193112,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, + [1447] = { + [sym__expression] = STATE(3686), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, [1448] = { - [sym__expression] = STATE(3951), + [sym__expression] = STATE(3947), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -192175,10 +193226,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -192186,7 +193237,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3609), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), @@ -192210,6 +193260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3634), [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), @@ -192224,1081 +193275,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1449] = { - [sym__expression] = STATE(3989), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym__expression] = STATE(3048), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(41), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3636), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), }, [1450] = { - [sym__expression] = STATE(3678), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), + [sym__expression] = STATE(4033), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3613), - [anon_sym_LPAREN2] = ACTIONS(3615), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3639), + [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [1451] = { - [sym_template_argument_list] = STATE(1760), - [sym_identifier] = ACTIONS(3508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3523), - [anon_sym_COMMA] = ACTIONS(3523), - [anon_sym_RPAREN] = ACTIONS(3523), - [anon_sym_LPAREN2] = ACTIONS(3523), - [anon_sym_TILDE] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_extern] = ACTIONS(3508), - [anon_sym___attribute__] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), - [anon_sym___declspec] = ACTIONS(3508), - [anon_sym___based] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3520), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_register] = ACTIONS(3508), - [anon_sym_inline] = ACTIONS(3508), - [anon_sym_thread_local] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3508), - [anon_sym_restrict] = ACTIONS(3508), - [anon_sym__Atomic] = ACTIONS(3508), - [anon_sym_mutable] = ACTIONS(3508), - [anon_sym_constexpr] = ACTIONS(3508), - [anon_sym_constinit] = ACTIONS(3508), - [anon_sym_consteval] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3510), - [anon_sym_SLASH_EQ] = ACTIONS(3510), - [anon_sym_PERCENT_EQ] = ACTIONS(3510), - [anon_sym_PLUS_EQ] = ACTIONS(3510), - [anon_sym_DASH_EQ] = ACTIONS(3510), - [anon_sym_LT_LT_EQ] = ACTIONS(3510), - [anon_sym_GT_GT_EQ] = ACTIONS(3510), - [anon_sym_AMP_EQ] = ACTIONS(3510), - [anon_sym_CARET_EQ] = ACTIONS(3510), - [anon_sym_PIPE_EQ] = ACTIONS(3510), - [anon_sym_and_eq] = ACTIONS(3620), - [anon_sym_or_eq] = ACTIONS(3620), - [anon_sym_xor_eq] = ACTIONS(3620), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3518), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3518), - [anon_sym_not_eq] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3518), + [sym__expression] = STATE(4040), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3508), - [anon_sym_decltype] = ACTIONS(3508), - [anon_sym_virtual] = ACTIONS(3508), - [anon_sym_template] = ACTIONS(3508), - [anon_sym_operator] = ACTIONS(3508), - [anon_sym_DOT_STAR] = ACTIONS(3510), - [anon_sym_DASH_GT_STAR] = ACTIONS(3510), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [1452] = { - [sym__expression] = STATE(3043), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1453] = { - [sym__expression] = STATE(3819), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3625), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1454] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3627), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1455] = { - [sym__expression] = STATE(3986), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1456] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3631), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1457] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3633), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1458] = { - [sym__expression] = STATE(3044), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3635), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1459] = { - [sym__expression] = STATE(3564), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3601), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1460] = { - [sym__expression] = STATE(2952), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3640), - [anon_sym_LPAREN2] = ACTIONS(3642), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1461] = { - [sym__expression] = STATE(3988), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3644), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1462] = { - [sym__expression] = STATE(3591), + [sym__expression] = STATE(3592), [sym_comma_expression] = STATE(6261), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -193310,10 +193551,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -193357,42 +193598,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1463] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [1453] = { + [sym__expression] = STATE(3047), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1454] = { + [sym__expression] = STATE(3911), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3646), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1455] = { + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN2] = ACTIONS(1507), [anon_sym_BANG] = ACTIONS(1511), @@ -193403,7 +193806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(1515), [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3646), + [anon_sym_RBRACK] = ACTIONS(3648), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(1509), [anon_sym_compl] = ACTIONS(1509), @@ -193438,206 +193841,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, - [1464] = { - [sym__expression] = STATE(3651), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3577), - [anon_sym_LPAREN2] = ACTIONS(3648), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1465] = { - [sym__expression] = STATE(2995), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [1456] = { + [sym__expression] = STATE(3046), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_DOT_DOT_DOT] = ACTIONS(3650), - [anon_sym_LPAREN2] = ACTIONS(3652), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1466] = { - [sym__expression] = STATE(3045), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3654), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), [anon_sym_TILDE] = ACTIONS(1421), @@ -193681,109 +193922,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1449), [sym_nullptr] = ACTIONS(1449), }, - [1467] = { - [sym__expression] = STATE(3047), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3657), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1468] = { - [sym__expression] = STATE(3859), + [1457] = { + [sym__expression] = STATE(3864), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -193795,10 +193955,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -193829,7 +193989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3660), + [sym_auto] = ACTIONS(3653), [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), @@ -193843,43 +194003,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1469] = { - [sym__expression] = STATE(3048), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [1458] = { + [sym__expression] = STATE(4041), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1459] = { + [sym_template_argument_list] = STATE(1710), + [sym_identifier] = ACTIONS(3537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3549), + [anon_sym_RPAREN] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_STAR] = ACTIONS(3546), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_PIPE] = ACTIONS(3544), + [anon_sym_CARET] = ACTIONS(3544), + [anon_sym_AMP] = ACTIONS(3546), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_GT] = ACTIONS(3544), + [anon_sym_GT_EQ] = ACTIONS(3549), + [anon_sym_LT_EQ] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3549), + [anon_sym_extern] = ACTIONS(3537), + [anon_sym___attribute__] = ACTIONS(3537), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3542), + [anon_sym___declspec] = ACTIONS(3537), + [anon_sym___based] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3546), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3537), + [anon_sym_register] = ACTIONS(3537), + [anon_sym_inline] = ACTIONS(3537), + [anon_sym_thread_local] = ACTIONS(3537), + [anon_sym_input] = ACTIONS(3537), + [anon_sym_const] = ACTIONS(3537), + [anon_sym_volatile] = ACTIONS(3537), + [anon_sym_restrict] = ACTIONS(3537), + [anon_sym__Atomic] = ACTIONS(3537), + [anon_sym_mutable] = ACTIONS(3537), + [anon_sym_constexpr] = ACTIONS(3537), + [anon_sym_constinit] = ACTIONS(3537), + [anon_sym_consteval] = ACTIONS(3537), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_STAR_EQ] = ACTIONS(3549), + [anon_sym_SLASH_EQ] = ACTIONS(3549), + [anon_sym_PERCENT_EQ] = ACTIONS(3549), + [anon_sym_PLUS_EQ] = ACTIONS(3549), + [anon_sym_DASH_EQ] = ACTIONS(3549), + [anon_sym_LT_LT_EQ] = ACTIONS(3549), + [anon_sym_GT_GT_EQ] = ACTIONS(3549), + [anon_sym_AMP_EQ] = ACTIONS(3549), + [anon_sym_CARET_EQ] = ACTIONS(3549), + [anon_sym_PIPE_EQ] = ACTIONS(3549), + [anon_sym_and_eq] = ACTIONS(3544), + [anon_sym_or_eq] = ACTIONS(3544), + [anon_sym_xor_eq] = ACTIONS(3544), + [anon_sym_LT_EQ_GT] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3544), + [anon_sym_and] = ACTIONS(3544), + [anon_sym_bitor] = ACTIONS(3544), + [anon_sym_xor] = ACTIONS(3544), + [anon_sym_bitand] = ACTIONS(3544), + [anon_sym_not_eq] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3549), + [anon_sym_PLUS_PLUS] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3544), + [anon_sym_DASH_GT] = ACTIONS(3549), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3537), + [anon_sym_decltype] = ACTIONS(3537), + [anon_sym_virtual] = ACTIONS(3537), + [anon_sym_template] = ACTIONS(3537), + [anon_sym_operator] = ACTIONS(3537), + }, + [1460] = { + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1461] = { + [sym__expression] = STATE(3045), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), @@ -193924,28 +194327,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1449), [sym_nullptr] = ACTIONS(1449), }, - [1470] = { - [sym__expression] = STATE(3831), + [1462] = { + [sym__expression] = STATE(3955), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -193957,10 +194360,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -193968,7 +194371,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3665), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), @@ -193992,6 +194394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3665), [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), @@ -194005,28 +194408,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1471] = { - [sym__expression] = STATE(3564), + [1463] = { + [sym__expression] = STATE(3583), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -194038,10 +194441,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -194051,7 +194454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(3667), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3572), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -194086,140 +194489,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1472] = { - [sym__expression] = STATE(3913), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [1464] = { + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(3669), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_COLON_COLON] = ACTIONS(1515), [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3669), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1473] = { - [sym__expression] = STATE(3063), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3551), - [anon_sym_LPAREN2] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), [sym_number_literal] = ACTIONS(1527), [anon_sym_L_SQUOTE] = ACTIONS(1529), [anon_sym_u_SQUOTE] = ACTIONS(1529), @@ -194236,54 +194558,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1533), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), + [anon_sym_delete] = ACTIONS(1535), [anon_sym_R_DQUOTE] = ACTIONS(1537), [anon_sym_LR_DQUOTE] = ACTIONS(1537), [anon_sym_uR_DQUOTE] = ACTIONS(1537), [anon_sym_UR_DQUOTE] = ACTIONS(1537), [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), [anon_sym_requires] = ACTIONS(1543), [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, - [1474] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [1465] = { + [sym__expression] = STATE(4038), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3671), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1466] = { + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN2] = ACTIONS(1507), [anon_sym_BANG] = ACTIONS(1511), @@ -194329,140 +194732,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, - [1475] = { - [sym__expression] = STATE(3915), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3675), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1476] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [1467] = { + [sym__expression] = STATE(3063), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3677), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(1713), [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3677), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), [sym_number_literal] = ACTIONS(1527), [anon_sym_L_SQUOTE] = ACTIONS(1529), [anon_sym_u_SQUOTE] = ACTIONS(1529), @@ -194479,380 +194801,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1533), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), + [anon_sym_delete] = ACTIONS(1719), [anon_sym_R_DQUOTE] = ACTIONS(1537), [anon_sym_LR_DQUOTE] = ACTIONS(1537), [anon_sym_uR_DQUOTE] = ACTIONS(1537), [anon_sym_UR_DQUOTE] = ACTIONS(1537), [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), [anon_sym_requires] = ACTIONS(1543), [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, - [1477] = { - [sym_template_argument_list] = STATE(1524), - [sym_identifier] = ACTIONS(3679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3681), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_LPAREN2] = ACTIONS(3681), - [anon_sym_TILDE] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3686), - [anon_sym_STAR] = ACTIONS(3688), - [anon_sym_SLASH] = ACTIONS(3686), - [anon_sym_PERCENT] = ACTIONS(3686), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT] = ACTIONS(3686), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3693), - [anon_sym_LT_LT] = ACTIONS(3686), - [anon_sym_GT_GT] = ACTIONS(3686), - [anon_sym_extern] = ACTIONS(3679), - [anon_sym___attribute__] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3684), - [anon_sym___declspec] = ACTIONS(3679), - [anon_sym___based] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_static] = ACTIONS(3679), - [anon_sym_register] = ACTIONS(3679), - [anon_sym_inline] = ACTIONS(3679), - [anon_sym_thread_local] = ACTIONS(3679), - [anon_sym_const] = ACTIONS(3679), - [anon_sym_volatile] = ACTIONS(3679), - [anon_sym_restrict] = ACTIONS(3679), - [anon_sym__Atomic] = ACTIONS(3679), - [anon_sym_mutable] = ACTIONS(3679), - [anon_sym_constexpr] = ACTIONS(3679), - [anon_sym_constinit] = ACTIONS(3679), - [anon_sym_consteval] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3691), - [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(3686), - [anon_sym_or_eq] = ACTIONS(3686), - [anon_sym_xor_eq] = ACTIONS(3686), - [anon_sym_LT_EQ_GT] = ACTIONS(3691), - [anon_sym_or] = ACTIONS(3686), - [anon_sym_and] = ACTIONS(3686), - [anon_sym_bitor] = ACTIONS(3686), - [anon_sym_xor] = ACTIONS(3686), - [anon_sym_bitand] = ACTIONS(3686), - [anon_sym_not_eq] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_DASH_GT] = ACTIONS(3686), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3679), - [anon_sym_decltype] = ACTIONS(3679), - [anon_sym_virtual] = ACTIONS(3679), - [anon_sym_template] = ACTIONS(3679), - [anon_sym_operator] = ACTIONS(3679), - [anon_sym_DOT_STAR] = ACTIONS(3691), - [anon_sym_DASH_GT_STAR] = ACTIONS(3691), - }, - [1478] = { - [sym__expression] = STATE(3880), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1479] = { - [sym__expression] = STATE(3836), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3698), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1480] = { - [sym__expression] = STATE(2616), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), - }, - [1481] = { - [sym__expression] = STATE(3049), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [1468] = { + [sym__expression] = STATE(3044), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3704), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3679), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), [anon_sym_TILDE] = ACTIONS(1421), @@ -194896,28 +194894,595 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1449), [sym_nullptr] = ACTIONS(1449), }, - [1482] = { - [sym__expression] = STATE(3938), + [1469] = { + [sym_identifier] = ACTIONS(3682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3684), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_RPAREN] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_SLASH] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE] = ACTIONS(3682), + [anon_sym_CARET] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3682), + [anon_sym_GT_EQ] = ACTIONS(3684), + [anon_sym_LT_EQ] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(3682), + [anon_sym_LT_LT] = ACTIONS(3682), + [anon_sym_GT_GT] = ACTIONS(3682), + [anon_sym_extern] = ACTIONS(3682), + [anon_sym___attribute__] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3684), + [anon_sym___declspec] = ACTIONS(3682), + [anon_sym___based] = ACTIONS(3682), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3682), + [anon_sym_static] = ACTIONS(3682), + [anon_sym_register] = ACTIONS(3682), + [anon_sym_inline] = ACTIONS(3682), + [anon_sym_thread_local] = ACTIONS(3682), + [anon_sym_input] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), + [anon_sym_volatile] = ACTIONS(3682), + [anon_sym_restrict] = ACTIONS(3682), + [anon_sym__Atomic] = ACTIONS(3682), + [anon_sym_mutable] = ACTIONS(3682), + [anon_sym_constexpr] = ACTIONS(3682), + [anon_sym_constinit] = ACTIONS(3682), + [anon_sym_consteval] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [anon_sym_STAR_EQ] = ACTIONS(3684), + [anon_sym_SLASH_EQ] = ACTIONS(3684), + [anon_sym_PERCENT_EQ] = ACTIONS(3684), + [anon_sym_PLUS_EQ] = ACTIONS(3684), + [anon_sym_DASH_EQ] = ACTIONS(3684), + [anon_sym_LT_LT_EQ] = ACTIONS(3684), + [anon_sym_GT_GT_EQ] = ACTIONS(3684), + [anon_sym_AMP_EQ] = ACTIONS(3684), + [anon_sym_CARET_EQ] = ACTIONS(3684), + [anon_sym_PIPE_EQ] = ACTIONS(3684), + [anon_sym_and_eq] = ACTIONS(3682), + [anon_sym_or_eq] = ACTIONS(3682), + [anon_sym_xor_eq] = ACTIONS(3682), + [anon_sym_LT_EQ_GT] = ACTIONS(3684), + [anon_sym_or] = ACTIONS(3682), + [anon_sym_and] = ACTIONS(3682), + [anon_sym_bitor] = ACTIONS(3682), + [anon_sym_xor] = ACTIONS(3682), + [anon_sym_bitand] = ACTIONS(3682), + [anon_sym_not_eq] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_DASH_GT] = ACTIONS(3682), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3682), + [anon_sym_decltype] = ACTIONS(3682), + [anon_sym_virtual] = ACTIONS(3682), + [anon_sym_template] = ACTIONS(3682), + [anon_sym_operator] = ACTIONS(3682), + [anon_sym_DOT_STAR] = ACTIONS(3684), + [anon_sym_DASH_GT_STAR] = ACTIONS(3684), + }, + [1470] = { + [sym__expression] = STATE(3005), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3688), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1471] = { + [sym_identifier] = ACTIONS(3690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3692), + [anon_sym_COMMA] = ACTIONS(3692), + [anon_sym_RPAREN] = ACTIONS(3692), + [anon_sym_LPAREN2] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3690), + [anon_sym_SLASH] = ACTIONS(3690), + [anon_sym_PERCENT] = ACTIONS(3690), + [anon_sym_PIPE_PIPE] = ACTIONS(3692), + [anon_sym_AMP_AMP] = ACTIONS(3692), + [anon_sym_PIPE] = ACTIONS(3690), + [anon_sym_CARET] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3690), + [anon_sym_EQ_EQ] = ACTIONS(3692), + [anon_sym_BANG_EQ] = ACTIONS(3692), + [anon_sym_GT] = ACTIONS(3690), + [anon_sym_GT_EQ] = ACTIONS(3692), + [anon_sym_LT_EQ] = ACTIONS(3690), + [anon_sym_LT] = ACTIONS(3690), + [anon_sym_LT_LT] = ACTIONS(3690), + [anon_sym_GT_GT] = ACTIONS(3690), + [anon_sym_SEMI] = ACTIONS(3692), + [anon_sym_extern] = ACTIONS(3690), + [anon_sym___attribute__] = ACTIONS(3690), + [anon_sym_COLON_COLON] = ACTIONS(3692), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3692), + [anon_sym___declspec] = ACTIONS(3690), + [anon_sym___based] = ACTIONS(3690), + [anon_sym_LBRACE] = ACTIONS(3692), + [anon_sym_RBRACE] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3690), + [anon_sym_EQ] = ACTIONS(3690), + [anon_sym_static] = ACTIONS(3690), + [anon_sym_register] = ACTIONS(3690), + [anon_sym_inline] = ACTIONS(3690), + [anon_sym_thread_local] = ACTIONS(3690), + [anon_sym_input] = ACTIONS(3690), + [anon_sym_const] = ACTIONS(3690), + [anon_sym_volatile] = ACTIONS(3690), + [anon_sym_restrict] = ACTIONS(3690), + [anon_sym__Atomic] = ACTIONS(3690), + [anon_sym_mutable] = ACTIONS(3690), + [anon_sym_constexpr] = ACTIONS(3690), + [anon_sym_constinit] = ACTIONS(3690), + [anon_sym_consteval] = ACTIONS(3690), + [anon_sym_QMARK] = ACTIONS(3692), + [anon_sym_STAR_EQ] = ACTIONS(3692), + [anon_sym_SLASH_EQ] = ACTIONS(3692), + [anon_sym_PERCENT_EQ] = ACTIONS(3692), + [anon_sym_PLUS_EQ] = ACTIONS(3692), + [anon_sym_DASH_EQ] = ACTIONS(3692), + [anon_sym_LT_LT_EQ] = ACTIONS(3692), + [anon_sym_GT_GT_EQ] = ACTIONS(3692), + [anon_sym_AMP_EQ] = ACTIONS(3692), + [anon_sym_CARET_EQ] = ACTIONS(3692), + [anon_sym_PIPE_EQ] = ACTIONS(3692), + [anon_sym_and_eq] = ACTIONS(3690), + [anon_sym_or_eq] = ACTIONS(3690), + [anon_sym_xor_eq] = ACTIONS(3690), + [anon_sym_LT_EQ_GT] = ACTIONS(3692), + [anon_sym_or] = ACTIONS(3690), + [anon_sym_and] = ACTIONS(3690), + [anon_sym_bitor] = ACTIONS(3690), + [anon_sym_xor] = ACTIONS(3690), + [anon_sym_bitand] = ACTIONS(3690), + [anon_sym_not_eq] = ACTIONS(3690), + [anon_sym_DASH_DASH] = ACTIONS(3692), + [anon_sym_PLUS_PLUS] = ACTIONS(3692), + [anon_sym_DOT] = ACTIONS(3690), + [anon_sym_DASH_GT] = ACTIONS(3692), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3690), + [anon_sym_decltype] = ACTIONS(3690), + [anon_sym_virtual] = ACTIONS(3690), + [anon_sym_template] = ACTIONS(3690), + [anon_sym_operator] = ACTIONS(3690), + }, + [1472] = { + [sym_template_argument_list] = STATE(1820), + [sym_identifier] = ACTIONS(3450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(3462), + [anon_sym_LPAREN2] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym___attribute__] = ACTIONS(3450), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), + [anon_sym___declspec] = ACTIONS(3450), + [anon_sym___based] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_EQ] = ACTIONS(3511), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_register] = ACTIONS(3450), + [anon_sym_inline] = ACTIONS(3450), + [anon_sym_thread_local] = ACTIONS(3450), + [anon_sym_input] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym_restrict] = ACTIONS(3450), + [anon_sym__Atomic] = ACTIONS(3450), + [anon_sym_mutable] = ACTIONS(3450), + [anon_sym_constexpr] = ACTIONS(3450), + [anon_sym_constinit] = ACTIONS(3450), + [anon_sym_consteval] = ACTIONS(3450), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3515), + [anon_sym_SLASH_EQ] = ACTIONS(3515), + [anon_sym_PERCENT_EQ] = ACTIONS(3515), + [anon_sym_PLUS_EQ] = ACTIONS(3515), + [anon_sym_DASH_EQ] = ACTIONS(3515), + [anon_sym_LT_LT_EQ] = ACTIONS(3515), + [anon_sym_GT_GT_EQ] = ACTIONS(3515), + [anon_sym_AMP_EQ] = ACTIONS(3515), + [anon_sym_CARET_EQ] = ACTIONS(3515), + [anon_sym_PIPE_EQ] = ACTIONS(3515), + [anon_sym_and_eq] = ACTIONS(3511), + [anon_sym_or_eq] = ACTIONS(3511), + [anon_sym_xor_eq] = ACTIONS(3511), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3457), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3457), + [anon_sym_not_eq] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3450), + [anon_sym_decltype] = ACTIONS(3450), + [anon_sym_virtual] = ACTIONS(3450), + [anon_sym_template] = ACTIONS(3450), + [anon_sym_operator] = ACTIONS(3450), + }, + [1473] = { + [sym_template_argument_list] = STATE(1814), + [sym_identifier] = ACTIONS(3450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(3462), + [anon_sym_LPAREN2] = ACTIONS(3497), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym___attribute__] = ACTIONS(3450), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3504), + [anon_sym___declspec] = ACTIONS(3450), + [anon_sym___based] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3511), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_register] = ACTIONS(3450), + [anon_sym_inline] = ACTIONS(3450), + [anon_sym_thread_local] = ACTIONS(3450), + [anon_sym_input] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym_restrict] = ACTIONS(3450), + [anon_sym__Atomic] = ACTIONS(3450), + [anon_sym_mutable] = ACTIONS(3450), + [anon_sym_constexpr] = ACTIONS(3450), + [anon_sym_constinit] = ACTIONS(3450), + [anon_sym_consteval] = ACTIONS(3450), + [anon_sym_COLON] = ACTIONS(3694), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3515), + [anon_sym_SLASH_EQ] = ACTIONS(3515), + [anon_sym_PERCENT_EQ] = ACTIONS(3515), + [anon_sym_PLUS_EQ] = ACTIONS(3515), + [anon_sym_DASH_EQ] = ACTIONS(3515), + [anon_sym_LT_LT_EQ] = ACTIONS(3515), + [anon_sym_GT_GT_EQ] = ACTIONS(3515), + [anon_sym_AMP_EQ] = ACTIONS(3515), + [anon_sym_CARET_EQ] = ACTIONS(3515), + [anon_sym_PIPE_EQ] = ACTIONS(3515), + [anon_sym_and_eq] = ACTIONS(3511), + [anon_sym_or_eq] = ACTIONS(3511), + [anon_sym_xor_eq] = ACTIONS(3511), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3457), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3457), + [anon_sym_not_eq] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3450), + [anon_sym_decltype] = ACTIONS(3450), + [anon_sym_virtual] = ACTIONS(3450), + [anon_sym_template] = ACTIONS(3450), + [anon_sym_operator] = ACTIONS(3450), + }, + [1474] = { + [sym_template_argument_list] = STATE(1820), + [sym_identifier] = ACTIONS(3450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(3462), + [anon_sym_LPAREN2] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym___attribute__] = ACTIONS(3450), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), + [anon_sym___declspec] = ACTIONS(3450), + [anon_sym___based] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_EQ] = ACTIONS(3511), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_register] = ACTIONS(3450), + [anon_sym_inline] = ACTIONS(3450), + [anon_sym_thread_local] = ACTIONS(3450), + [anon_sym_input] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym_restrict] = ACTIONS(3450), + [anon_sym__Atomic] = ACTIONS(3450), + [anon_sym_mutable] = ACTIONS(3450), + [anon_sym_constexpr] = ACTIONS(3450), + [anon_sym_constinit] = ACTIONS(3450), + [anon_sym_consteval] = ACTIONS(3450), + [anon_sym_COLON] = ACTIONS(3694), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3515), + [anon_sym_SLASH_EQ] = ACTIONS(3515), + [anon_sym_PERCENT_EQ] = ACTIONS(3515), + [anon_sym_PLUS_EQ] = ACTIONS(3515), + [anon_sym_DASH_EQ] = ACTIONS(3515), + [anon_sym_LT_LT_EQ] = ACTIONS(3515), + [anon_sym_GT_GT_EQ] = ACTIONS(3515), + [anon_sym_AMP_EQ] = ACTIONS(3515), + [anon_sym_CARET_EQ] = ACTIONS(3515), + [anon_sym_PIPE_EQ] = ACTIONS(3515), + [anon_sym_and_eq] = ACTIONS(3511), + [anon_sym_or_eq] = ACTIONS(3511), + [anon_sym_xor_eq] = ACTIONS(3511), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3457), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3457), + [anon_sym_not_eq] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3450), + [anon_sym_decltype] = ACTIONS(3450), + [anon_sym_virtual] = ACTIONS(3450), + [anon_sym_template] = ACTIONS(3450), + [anon_sym_operator] = ACTIONS(3450), + }, + [1475] = { + [sym_template_argument_list] = STATE(1820), + [sym_identifier] = ACTIONS(3450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(3462), + [anon_sym_RPAREN] = ACTIONS(3462), + [anon_sym_LPAREN2] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym___attribute__] = ACTIONS(3450), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), + [anon_sym___declspec] = ACTIONS(3450), + [anon_sym___based] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_EQ] = ACTIONS(3511), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_register] = ACTIONS(3450), + [anon_sym_inline] = ACTIONS(3450), + [anon_sym_thread_local] = ACTIONS(3450), + [anon_sym_input] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym_restrict] = ACTIONS(3450), + [anon_sym__Atomic] = ACTIONS(3450), + [anon_sym_mutable] = ACTIONS(3450), + [anon_sym_constexpr] = ACTIONS(3450), + [anon_sym_constinit] = ACTIONS(3450), + [anon_sym_consteval] = ACTIONS(3450), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3515), + [anon_sym_SLASH_EQ] = ACTIONS(3515), + [anon_sym_PERCENT_EQ] = ACTIONS(3515), + [anon_sym_PLUS_EQ] = ACTIONS(3515), + [anon_sym_DASH_EQ] = ACTIONS(3515), + [anon_sym_LT_LT_EQ] = ACTIONS(3515), + [anon_sym_GT_GT_EQ] = ACTIONS(3515), + [anon_sym_AMP_EQ] = ACTIONS(3515), + [anon_sym_CARET_EQ] = ACTIONS(3515), + [anon_sym_PIPE_EQ] = ACTIONS(3515), + [anon_sym_and_eq] = ACTIONS(3511), + [anon_sym_or_eq] = ACTIONS(3511), + [anon_sym_xor_eq] = ACTIONS(3511), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3457), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3457), + [anon_sym_not_eq] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3450), + [anon_sym_decltype] = ACTIONS(3450), + [anon_sym_virtual] = ACTIONS(3450), + [anon_sym_template] = ACTIONS(3450), + [anon_sym_operator] = ACTIONS(3450), + }, + [1476] = { + [sym__expression] = STATE(3961), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -194929,10 +195494,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -194940,7 +195505,493 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(3707), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3696), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1477] = { + [sym_identifier] = ACTIONS(3698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3700), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(3700), + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3698), + [anon_sym_SLASH] = ACTIONS(3698), + [anon_sym_PERCENT] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3700), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE] = ACTIONS(3698), + [anon_sym_CARET] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_EQ_EQ] = ACTIONS(3700), + [anon_sym_BANG_EQ] = ACTIONS(3700), + [anon_sym_GT] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3700), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3698), + [anon_sym_LT_LT] = ACTIONS(3698), + [anon_sym_GT_GT] = ACTIONS(3698), + [anon_sym_SEMI] = ACTIONS(3700), + [anon_sym_extern] = ACTIONS(3698), + [anon_sym___attribute__] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3700), + [anon_sym___declspec] = ACTIONS(3698), + [anon_sym___based] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_RBRACE] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_EQ] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_register] = ACTIONS(3698), + [anon_sym_inline] = ACTIONS(3698), + [anon_sym_thread_local] = ACTIONS(3698), + [anon_sym_input] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3698), + [anon_sym_restrict] = ACTIONS(3698), + [anon_sym__Atomic] = ACTIONS(3698), + [anon_sym_mutable] = ACTIONS(3698), + [anon_sym_constexpr] = ACTIONS(3698), + [anon_sym_constinit] = ACTIONS(3698), + [anon_sym_consteval] = ACTIONS(3698), + [anon_sym_QMARK] = ACTIONS(3700), + [anon_sym_STAR_EQ] = ACTIONS(3700), + [anon_sym_SLASH_EQ] = ACTIONS(3700), + [anon_sym_PERCENT_EQ] = ACTIONS(3700), + [anon_sym_PLUS_EQ] = ACTIONS(3700), + [anon_sym_DASH_EQ] = ACTIONS(3700), + [anon_sym_LT_LT_EQ] = ACTIONS(3700), + [anon_sym_GT_GT_EQ] = ACTIONS(3700), + [anon_sym_AMP_EQ] = ACTIONS(3700), + [anon_sym_CARET_EQ] = ACTIONS(3700), + [anon_sym_PIPE_EQ] = ACTIONS(3700), + [anon_sym_and_eq] = ACTIONS(3698), + [anon_sym_or_eq] = ACTIONS(3698), + [anon_sym_xor_eq] = ACTIONS(3698), + [anon_sym_LT_EQ_GT] = ACTIONS(3700), + [anon_sym_or] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3698), + [anon_sym_bitor] = ACTIONS(3698), + [anon_sym_xor] = ACTIONS(3698), + [anon_sym_bitand] = ACTIONS(3698), + [anon_sym_not_eq] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_DASH_GT] = ACTIONS(3700), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3698), + [anon_sym_decltype] = ACTIONS(3698), + [anon_sym_virtual] = ACTIONS(3698), + [anon_sym_template] = ACTIONS(3698), + [anon_sym_operator] = ACTIONS(3698), + }, + [1478] = { + [sym__expression] = STATE(3659), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3704), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1479] = { + [sym_identifier] = ACTIONS(3609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3611), + [anon_sym_RPAREN] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3609), + [anon_sym_SLASH] = ACTIONS(3609), + [anon_sym_PERCENT] = ACTIONS(3609), + [anon_sym_PIPE_PIPE] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_PIPE] = ACTIONS(3609), + [anon_sym_CARET] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_EQ_EQ] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_GT] = ACTIONS(3609), + [anon_sym_GT_EQ] = ACTIONS(3611), + [anon_sym_LT_EQ] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_LT_LT] = ACTIONS(3609), + [anon_sym_GT_GT] = ACTIONS(3609), + [anon_sym_SEMI] = ACTIONS(3611), + [anon_sym_extern] = ACTIONS(3609), + [anon_sym___attribute__] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3611), + [anon_sym___declspec] = ACTIONS(3609), + [anon_sym___based] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_RBRACE] = ACTIONS(3611), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_register] = ACTIONS(3609), + [anon_sym_inline] = ACTIONS(3609), + [anon_sym_thread_local] = ACTIONS(3609), + [anon_sym_input] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3609), + [anon_sym_restrict] = ACTIONS(3609), + [anon_sym__Atomic] = ACTIONS(3609), + [anon_sym_mutable] = ACTIONS(3609), + [anon_sym_constexpr] = ACTIONS(3609), + [anon_sym_constinit] = ACTIONS(3609), + [anon_sym_consteval] = ACTIONS(3609), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_STAR_EQ] = ACTIONS(3611), + [anon_sym_SLASH_EQ] = ACTIONS(3611), + [anon_sym_PERCENT_EQ] = ACTIONS(3611), + [anon_sym_PLUS_EQ] = ACTIONS(3611), + [anon_sym_DASH_EQ] = ACTIONS(3611), + [anon_sym_LT_LT_EQ] = ACTIONS(3611), + [anon_sym_GT_GT_EQ] = ACTIONS(3611), + [anon_sym_AMP_EQ] = ACTIONS(3611), + [anon_sym_CARET_EQ] = ACTIONS(3611), + [anon_sym_PIPE_EQ] = ACTIONS(3611), + [anon_sym_and_eq] = ACTIONS(3609), + [anon_sym_or_eq] = ACTIONS(3609), + [anon_sym_xor_eq] = ACTIONS(3609), + [anon_sym_LT_EQ_GT] = ACTIONS(3611), + [anon_sym_or] = ACTIONS(3609), + [anon_sym_and] = ACTIONS(3609), + [anon_sym_bitor] = ACTIONS(3609), + [anon_sym_xor] = ACTIONS(3609), + [anon_sym_bitand] = ACTIONS(3609), + [anon_sym_not_eq] = ACTIONS(3609), + [anon_sym_DASH_DASH] = ACTIONS(3611), + [anon_sym_PLUS_PLUS] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3609), + [anon_sym_DASH_GT] = ACTIONS(3611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3609), + [anon_sym_decltype] = ACTIONS(3609), + [anon_sym_virtual] = ACTIONS(3609), + [anon_sym_template] = ACTIONS(3609), + [anon_sym_operator] = ACTIONS(3609), + }, + [1480] = { + [sym_identifier] = ACTIONS(3706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3708), + [anon_sym_COMMA] = ACTIONS(3708), + [anon_sym_RPAREN] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3708), + [anon_sym_TILDE] = ACTIONS(3708), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_PIPE_PIPE] = ACTIONS(3708), + [anon_sym_AMP_AMP] = ACTIONS(3708), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3708), + [anon_sym_BANG_EQ] = ACTIONS(3708), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3706), + [anon_sym___attribute__] = ACTIONS(3706), + [anon_sym_COLON_COLON] = ACTIONS(3708), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3708), + [anon_sym___declspec] = ACTIONS(3706), + [anon_sym___based] = ACTIONS(3706), + [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_RBRACE] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_EQ] = ACTIONS(3706), + [anon_sym_static] = ACTIONS(3706), + [anon_sym_register] = ACTIONS(3706), + [anon_sym_inline] = ACTIONS(3706), + [anon_sym_thread_local] = ACTIONS(3706), + [anon_sym_input] = ACTIONS(3706), + [anon_sym_const] = ACTIONS(3706), + [anon_sym_volatile] = ACTIONS(3706), + [anon_sym_restrict] = ACTIONS(3706), + [anon_sym__Atomic] = ACTIONS(3706), + [anon_sym_mutable] = ACTIONS(3706), + [anon_sym_constexpr] = ACTIONS(3706), + [anon_sym_constinit] = ACTIONS(3706), + [anon_sym_consteval] = ACTIONS(3706), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_STAR_EQ] = ACTIONS(3708), + [anon_sym_SLASH_EQ] = ACTIONS(3708), + [anon_sym_PERCENT_EQ] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3708), + [anon_sym_DASH_EQ] = ACTIONS(3708), + [anon_sym_LT_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_GT_EQ] = ACTIONS(3708), + [anon_sym_AMP_EQ] = ACTIONS(3708), + [anon_sym_CARET_EQ] = ACTIONS(3708), + [anon_sym_PIPE_EQ] = ACTIONS(3708), + [anon_sym_and_eq] = ACTIONS(3706), + [anon_sym_or_eq] = ACTIONS(3706), + [anon_sym_xor_eq] = ACTIONS(3706), + [anon_sym_LT_EQ_GT] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_bitor] = ACTIONS(3706), + [anon_sym_xor] = ACTIONS(3706), + [anon_sym_bitand] = ACTIONS(3706), + [anon_sym_not_eq] = ACTIONS(3706), + [anon_sym_DASH_DASH] = ACTIONS(3708), + [anon_sym_PLUS_PLUS] = ACTIONS(3708), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3706), + [anon_sym_decltype] = ACTIONS(3706), + [anon_sym_virtual] = ACTIONS(3706), + [anon_sym_template] = ACTIONS(3706), + [anon_sym_operator] = ACTIONS(3706), + }, + [1481] = { + [sym__expression] = STATE(3720), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1482] = { + [sym__expression] = STATE(3865), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3710), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), @@ -194978,203 +196029,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1483] = { - [sym__expression] = STATE(3049), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3709), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1484] = { - [sym__expression] = STATE(3049), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1485] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym__expression] = STATE(3578), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3712), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1484] = { + [sym_template_argument_list] = STATE(1820), + [sym_identifier] = ACTIONS(3450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(3462), + [anon_sym_LPAREN2] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym___attribute__] = ACTIONS(3450), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), + [anon_sym___declspec] = ACTIONS(3450), + [anon_sym___based] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_EQ] = ACTIONS(3511), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_register] = ACTIONS(3450), + [anon_sym_inline] = ACTIONS(3450), + [anon_sym_thread_local] = ACTIONS(3450), + [anon_sym_input] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym_restrict] = ACTIONS(3450), + [anon_sym__Atomic] = ACTIONS(3450), + [anon_sym_mutable] = ACTIONS(3450), + [anon_sym_constexpr] = ACTIONS(3450), + [anon_sym_constinit] = ACTIONS(3450), + [anon_sym_consteval] = ACTIONS(3450), + [anon_sym_COLON] = ACTIONS(3513), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3515), + [anon_sym_SLASH_EQ] = ACTIONS(3515), + [anon_sym_PERCENT_EQ] = ACTIONS(3515), + [anon_sym_PLUS_EQ] = ACTIONS(3515), + [anon_sym_DASH_EQ] = ACTIONS(3515), + [anon_sym_LT_LT_EQ] = ACTIONS(3515), + [anon_sym_GT_GT_EQ] = ACTIONS(3515), + [anon_sym_AMP_EQ] = ACTIONS(3515), + [anon_sym_CARET_EQ] = ACTIONS(3515), + [anon_sym_PIPE_EQ] = ACTIONS(3515), + [anon_sym_and_eq] = ACTIONS(3511), + [anon_sym_or_eq] = ACTIONS(3511), + [anon_sym_xor_eq] = ACTIONS(3511), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3457), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3457), + [anon_sym_not_eq] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3450), + [anon_sym_decltype] = ACTIONS(3450), + [anon_sym_virtual] = ACTIONS(3450), + [anon_sym_template] = ACTIONS(3450), + [anon_sym_operator] = ACTIONS(3450), + }, + [1485] = { + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN2] = ACTIONS(1507), [anon_sym_BANG] = ACTIONS(1511), @@ -195185,7 +196236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(1515), [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3715), + [anon_sym_RBRACK] = ACTIONS(3714), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(1509), [anon_sym_compl] = ACTIONS(1509), @@ -195221,270 +196272,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1533), }, [1486] = { - [sym__expression] = STATE(3049), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), + [anon_sym_RBRACK] = ACTIONS(3716), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), }, [1487] = { - [sym__expression] = STATE(3050), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3720), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), + [anon_sym_RBRACK] = ACTIONS(3718), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), }, [1488] = { - [sym__expression] = STATE(3048), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3723), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1489] = { - [sym__expression] = STATE(3842), + [sym__expression] = STATE(3873), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -195496,10 +196466,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3720), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -195530,7 +196501,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3726), [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), @@ -195544,269 +196514,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1490] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), + [1489] = { + [sym_identifier] = ACTIONS(3722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3724), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_RPAREN] = ACTIONS(3724), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3727), + [anon_sym_DASH] = ACTIONS(3729), + [anon_sym_PLUS] = ACTIONS(3729), + [anon_sym_STAR] = ACTIONS(3731), + [anon_sym_SLASH] = ACTIONS(3729), + [anon_sym_PERCENT] = ACTIONS(3729), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3729), + [anon_sym_CARET] = ACTIONS(3729), + [anon_sym_AMP] = ACTIONS(3731), + [anon_sym_EQ_EQ] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_GT] = ACTIONS(3729), + [anon_sym_GT_EQ] = ACTIONS(3734), + [anon_sym_LT_EQ] = ACTIONS(3729), + [anon_sym_LT] = ACTIONS(3729), + [anon_sym_LT_LT] = ACTIONS(3729), + [anon_sym_GT_GT] = ACTIONS(3729), + [anon_sym_extern] = ACTIONS(3722), + [anon_sym___attribute__] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3727), + [anon_sym___declspec] = ACTIONS(3722), + [anon_sym___based] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3727), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(3731), + [anon_sym_static] = ACTIONS(3722), + [anon_sym_register] = ACTIONS(3722), + [anon_sym_inline] = ACTIONS(3722), + [anon_sym_thread_local] = ACTIONS(3722), + [anon_sym_input] = ACTIONS(3722), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_volatile] = ACTIONS(3722), + [anon_sym_restrict] = ACTIONS(3722), + [anon_sym__Atomic] = ACTIONS(3722), + [anon_sym_mutable] = ACTIONS(3722), + [anon_sym_constexpr] = ACTIONS(3722), + [anon_sym_constinit] = ACTIONS(3722), + [anon_sym_consteval] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_STAR_EQ] = ACTIONS(3734), + [anon_sym_SLASH_EQ] = ACTIONS(3734), + [anon_sym_PERCENT_EQ] = ACTIONS(3734), + [anon_sym_PLUS_EQ] = ACTIONS(3734), + [anon_sym_DASH_EQ] = ACTIONS(3734), + [anon_sym_LT_LT_EQ] = ACTIONS(3734), + [anon_sym_GT_GT_EQ] = ACTIONS(3734), + [anon_sym_AMP_EQ] = ACTIONS(3734), + [anon_sym_CARET_EQ] = ACTIONS(3734), + [anon_sym_PIPE_EQ] = ACTIONS(3734), + [anon_sym_and_eq] = ACTIONS(3729), + [anon_sym_or_eq] = ACTIONS(3729), + [anon_sym_xor_eq] = ACTIONS(3729), + [anon_sym_LT_EQ_GT] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3729), + [anon_sym_and] = ACTIONS(3729), + [anon_sym_bitor] = ACTIONS(3729), + [anon_sym_xor] = ACTIONS(3729), + [anon_sym_bitand] = ACTIONS(3729), + [anon_sym_not_eq] = ACTIONS(3729), + [anon_sym_DASH_DASH] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3729), + [anon_sym_DASH_GT] = ACTIONS(3729), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), + [sym_auto] = ACTIONS(3722), + [anon_sym_decltype] = ACTIONS(3722), + [anon_sym_virtual] = ACTIONS(3722), + [anon_sym_template] = ACTIONS(3722), + [anon_sym_operator] = ACTIONS(3722), + [anon_sym_DOT_STAR] = ACTIONS(3734), + [anon_sym_DASH_GT_STAR] = ACTIONS(3734), + }, + [1490] = { + [sym_identifier] = ACTIONS(3698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3700), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(3700), + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3698), + [anon_sym_SLASH] = ACTIONS(3698), + [anon_sym_PERCENT] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3700), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE] = ACTIONS(3698), + [anon_sym_CARET] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_EQ_EQ] = ACTIONS(3700), + [anon_sym_BANG_EQ] = ACTIONS(3700), + [anon_sym_GT] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3700), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3698), + [anon_sym_LT_LT] = ACTIONS(3698), + [anon_sym_GT_GT] = ACTIONS(3698), + [anon_sym_extern] = ACTIONS(3698), + [anon_sym___attribute__] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3700), + [anon_sym___declspec] = ACTIONS(3698), + [anon_sym___based] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_EQ] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_register] = ACTIONS(3698), + [anon_sym_inline] = ACTIONS(3698), + [anon_sym_thread_local] = ACTIONS(3698), + [anon_sym_input] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3698), + [anon_sym_restrict] = ACTIONS(3698), + [anon_sym__Atomic] = ACTIONS(3698), + [anon_sym_mutable] = ACTIONS(3698), + [anon_sym_constexpr] = ACTIONS(3698), + [anon_sym_constinit] = ACTIONS(3698), + [anon_sym_consteval] = ACTIONS(3698), + [anon_sym_QMARK] = ACTIONS(3700), + [anon_sym_STAR_EQ] = ACTIONS(3700), + [anon_sym_SLASH_EQ] = ACTIONS(3700), + [anon_sym_PERCENT_EQ] = ACTIONS(3700), + [anon_sym_PLUS_EQ] = ACTIONS(3700), + [anon_sym_DASH_EQ] = ACTIONS(3700), + [anon_sym_LT_LT_EQ] = ACTIONS(3700), + [anon_sym_GT_GT_EQ] = ACTIONS(3700), + [anon_sym_AMP_EQ] = ACTIONS(3700), + [anon_sym_CARET_EQ] = ACTIONS(3700), + [anon_sym_PIPE_EQ] = ACTIONS(3700), + [anon_sym_and_eq] = ACTIONS(3698), + [anon_sym_or_eq] = ACTIONS(3698), + [anon_sym_xor_eq] = ACTIONS(3698), + [anon_sym_LT_EQ_GT] = ACTIONS(3700), + [anon_sym_or] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3698), + [anon_sym_bitor] = ACTIONS(3698), + [anon_sym_xor] = ACTIONS(3698), + [anon_sym_bitand] = ACTIONS(3698), + [anon_sym_not_eq] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_DASH_GT] = ACTIONS(3698), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3698), + [anon_sym_decltype] = ACTIONS(3698), + [anon_sym_virtual] = ACTIONS(3698), + [anon_sym_template] = ACTIONS(3698), + [anon_sym_operator] = ACTIONS(3698), + [anon_sym_DOT_STAR] = ACTIONS(3700), + [anon_sym_DASH_GT_STAR] = ACTIONS(3700), }, [1491] = { - [sym_template_argument_list] = STATE(1838), - [sym_identifier] = ACTIONS(3508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(3523), - [anon_sym_TILDE] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_extern] = ACTIONS(3508), - [anon_sym___attribute__] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), - [anon_sym___declspec] = ACTIONS(3508), - [anon_sym___based] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_register] = ACTIONS(3508), - [anon_sym_inline] = ACTIONS(3508), - [anon_sym_thread_local] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3508), - [anon_sym_restrict] = ACTIONS(3508), - [anon_sym__Atomic] = ACTIONS(3508), - [anon_sym_mutable] = ACTIONS(3508), - [anon_sym_constexpr] = ACTIONS(3508), - [anon_sym_constinit] = ACTIONS(3508), - [anon_sym_consteval] = ACTIONS(3508), - [anon_sym_COLON] = ACTIONS(3730), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3544), - [anon_sym_SLASH_EQ] = ACTIONS(3544), - [anon_sym_PERCENT_EQ] = ACTIONS(3544), - [anon_sym_PLUS_EQ] = ACTIONS(3544), - [anon_sym_DASH_EQ] = ACTIONS(3544), - [anon_sym_LT_LT_EQ] = ACTIONS(3544), - [anon_sym_GT_GT_EQ] = ACTIONS(3544), - [anon_sym_AMP_EQ] = ACTIONS(3544), - [anon_sym_CARET_EQ] = ACTIONS(3544), - [anon_sym_PIPE_EQ] = ACTIONS(3544), - [anon_sym_and_eq] = ACTIONS(3540), - [anon_sym_or_eq] = ACTIONS(3540), - [anon_sym_xor_eq] = ACTIONS(3540), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3518), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3518), - [anon_sym_not_eq] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3508), - [anon_sym_decltype] = ACTIONS(3508), - [anon_sym_virtual] = ACTIONS(3508), - [anon_sym_template] = ACTIONS(3508), - [anon_sym_operator] = ACTIONS(3508), - }, - [1492] = { - [sym__expression] = STATE(2541), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym__expression] = STATE(2958), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3736), + [anon_sym_LPAREN2] = ACTIONS(3738), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1492] = { + [sym__expression] = STATE(3043), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3740), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), }, [1493] = { - [sym__expression] = STATE(3947), + [sym__expression] = STATE(4050), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -195818,10 +196871,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(3743), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -195866,507 +196920,513 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1494] = { - [sym__expression] = STATE(3064), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(3732), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), + [sym_identifier] = ACTIONS(3706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3708), + [anon_sym_COMMA] = ACTIONS(3708), + [anon_sym_RPAREN] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3708), + [anon_sym_TILDE] = ACTIONS(3708), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_PIPE_PIPE] = ACTIONS(3708), + [anon_sym_AMP_AMP] = ACTIONS(3708), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3708), + [anon_sym_BANG_EQ] = ACTIONS(3708), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_extern] = ACTIONS(3706), + [anon_sym___attribute__] = ACTIONS(3706), + [anon_sym_COLON_COLON] = ACTIONS(3708), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3708), + [anon_sym___declspec] = ACTIONS(3706), + [anon_sym___based] = ACTIONS(3706), + [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_EQ] = ACTIONS(3706), + [anon_sym_static] = ACTIONS(3706), + [anon_sym_register] = ACTIONS(3706), + [anon_sym_inline] = ACTIONS(3706), + [anon_sym_thread_local] = ACTIONS(3706), + [anon_sym_input] = ACTIONS(3706), + [anon_sym_const] = ACTIONS(3706), + [anon_sym_volatile] = ACTIONS(3706), + [anon_sym_restrict] = ACTIONS(3706), + [anon_sym__Atomic] = ACTIONS(3706), + [anon_sym_mutable] = ACTIONS(3706), + [anon_sym_constexpr] = ACTIONS(3706), + [anon_sym_constinit] = ACTIONS(3706), + [anon_sym_consteval] = ACTIONS(3706), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_STAR_EQ] = ACTIONS(3708), + [anon_sym_SLASH_EQ] = ACTIONS(3708), + [anon_sym_PERCENT_EQ] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3708), + [anon_sym_DASH_EQ] = ACTIONS(3708), + [anon_sym_LT_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_GT_EQ] = ACTIONS(3708), + [anon_sym_AMP_EQ] = ACTIONS(3708), + [anon_sym_CARET_EQ] = ACTIONS(3708), + [anon_sym_PIPE_EQ] = ACTIONS(3708), + [anon_sym_and_eq] = ACTIONS(3706), + [anon_sym_or_eq] = ACTIONS(3706), + [anon_sym_xor_eq] = ACTIONS(3706), + [anon_sym_LT_EQ_GT] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_bitor] = ACTIONS(3706), + [anon_sym_xor] = ACTIONS(3706), + [anon_sym_bitand] = ACTIONS(3706), + [anon_sym_not_eq] = ACTIONS(3706), + [anon_sym_DASH_DASH] = ACTIONS(3708), + [anon_sym_PLUS_PLUS] = ACTIONS(3708), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3706), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), + [sym_auto] = ACTIONS(3706), + [anon_sym_decltype] = ACTIONS(3706), + [anon_sym_virtual] = ACTIONS(3706), + [anon_sym_template] = ACTIONS(3706), + [anon_sym_operator] = ACTIONS(3706), + [anon_sym_DOT_STAR] = ACTIONS(3708), + [anon_sym_DASH_GT_STAR] = ACTIONS(3708), }, [1495] = { - [sym_template_argument_list] = STATE(1828), - [sym_identifier] = ACTIONS(3508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3523), - [anon_sym_extern] = ACTIONS(3508), - [anon_sym___attribute__] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), - [anon_sym___declspec] = ACTIONS(3508), - [anon_sym___based] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3536), - [anon_sym_EQ] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_register] = ACTIONS(3508), - [anon_sym_inline] = ACTIONS(3508), - [anon_sym_thread_local] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3508), - [anon_sym_restrict] = ACTIONS(3508), - [anon_sym__Atomic] = ACTIONS(3508), - [anon_sym_mutable] = ACTIONS(3508), - [anon_sym_constexpr] = ACTIONS(3508), - [anon_sym_constinit] = ACTIONS(3508), - [anon_sym_consteval] = ACTIONS(3508), - [anon_sym_COLON] = ACTIONS(3730), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3544), - [anon_sym_SLASH_EQ] = ACTIONS(3544), - [anon_sym_PERCENT_EQ] = ACTIONS(3544), - [anon_sym_PLUS_EQ] = ACTIONS(3544), - [anon_sym_DASH_EQ] = ACTIONS(3544), - [anon_sym_LT_LT_EQ] = ACTIONS(3544), - [anon_sym_GT_GT_EQ] = ACTIONS(3544), - [anon_sym_AMP_EQ] = ACTIONS(3544), - [anon_sym_CARET_EQ] = ACTIONS(3544), - [anon_sym_PIPE_EQ] = ACTIONS(3544), - [anon_sym_and_eq] = ACTIONS(3540), - [anon_sym_or_eq] = ACTIONS(3540), - [anon_sym_xor_eq] = ACTIONS(3540), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3518), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3518), - [anon_sym_not_eq] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3508), - [anon_sym_decltype] = ACTIONS(3508), - [anon_sym_virtual] = ACTIONS(3508), - [anon_sym_template] = ACTIONS(3508), - [anon_sym_operator] = ACTIONS(3508), - }, - [1496] = { - [sym__expression] = STATE(2624), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), + [sym__expression] = STATE(3041), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3745), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), [anon_sym_STAR] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1496] = { + [sym__expression] = STATE(3041), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3748), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), }, [1497] = { - [sym__expression] = STATE(3907), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym__expression] = STATE(3041), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3751), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), }, [1498] = { - [sym__expression] = STATE(3909), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_template_argument_list] = STATE(1525), + [sym_identifier] = ACTIONS(3537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_STAR] = ACTIONS(3546), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_PIPE] = ACTIONS(3544), + [anon_sym_CARET] = ACTIONS(3544), + [anon_sym_AMP] = ACTIONS(3546), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_GT] = ACTIONS(3544), + [anon_sym_GT_EQ] = ACTIONS(3549), + [anon_sym_LT_EQ] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3539), + [anon_sym_extern] = ACTIONS(3537), + [anon_sym___attribute__] = ACTIONS(3537), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3539), + [anon_sym___declspec] = ACTIONS(3537), + [anon_sym___based] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_RBRACE] = ACTIONS(3549), + [anon_sym_LBRACK] = ACTIONS(3546), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3537), + [anon_sym_register] = ACTIONS(3537), + [anon_sym_inline] = ACTIONS(3537), + [anon_sym_thread_local] = ACTIONS(3537), + [anon_sym_input] = ACTIONS(3537), + [anon_sym_const] = ACTIONS(3537), + [anon_sym_volatile] = ACTIONS(3537), + [anon_sym_restrict] = ACTIONS(3537), + [anon_sym__Atomic] = ACTIONS(3537), + [anon_sym_mutable] = ACTIONS(3537), + [anon_sym_constexpr] = ACTIONS(3537), + [anon_sym_constinit] = ACTIONS(3537), + [anon_sym_consteval] = ACTIONS(3537), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_STAR_EQ] = ACTIONS(3549), + [anon_sym_SLASH_EQ] = ACTIONS(3549), + [anon_sym_PERCENT_EQ] = ACTIONS(3549), + [anon_sym_PLUS_EQ] = ACTIONS(3549), + [anon_sym_DASH_EQ] = ACTIONS(3549), + [anon_sym_LT_LT_EQ] = ACTIONS(3549), + [anon_sym_GT_GT_EQ] = ACTIONS(3549), + [anon_sym_AMP_EQ] = ACTIONS(3549), + [anon_sym_CARET_EQ] = ACTIONS(3549), + [anon_sym_PIPE_EQ] = ACTIONS(3549), + [anon_sym_and_eq] = ACTIONS(3544), + [anon_sym_or_eq] = ACTIONS(3544), + [anon_sym_xor_eq] = ACTIONS(3544), + [anon_sym_LT_EQ_GT] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3544), + [anon_sym_and] = ACTIONS(3544), + [anon_sym_bitor] = ACTIONS(3544), + [anon_sym_xor] = ACTIONS(3544), + [anon_sym_bitand] = ACTIONS(3544), + [anon_sym_not_eq] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3549), + [anon_sym_PLUS_PLUS] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3544), + [anon_sym_DASH_GT] = ACTIONS(3549), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [sym_auto] = ACTIONS(3537), + [anon_sym_decltype] = ACTIONS(3537), + [anon_sym_virtual] = ACTIONS(3537), + [anon_sym_template] = ACTIONS(3537), + [anon_sym_operator] = ACTIONS(3537), }, [1499] = { - [sym_identifier] = ACTIONS(3736), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3738), - [anon_sym_COMMA] = ACTIONS(3738), - [anon_sym_RPAREN] = ACTIONS(3738), - [anon_sym_LPAREN2] = ACTIONS(3738), - [anon_sym_TILDE] = ACTIONS(3738), - [anon_sym_DASH] = ACTIONS(3736), - [anon_sym_PLUS] = ACTIONS(3736), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3736), - [anon_sym_PERCENT] = ACTIONS(3736), - [anon_sym_PIPE_PIPE] = ACTIONS(3738), - [anon_sym_AMP_AMP] = ACTIONS(3738), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_CARET] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_EQ_EQ] = ACTIONS(3738), - [anon_sym_BANG_EQ] = ACTIONS(3738), - [anon_sym_GT] = ACTIONS(3736), - [anon_sym_GT_EQ] = ACTIONS(3738), - [anon_sym_LT_EQ] = ACTIONS(3736), - [anon_sym_LT] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3736), - [anon_sym_GT_GT] = ACTIONS(3736), - [anon_sym_SEMI] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3736), - [anon_sym___attribute__] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3738), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3738), - [anon_sym___declspec] = ACTIONS(3736), - [anon_sym___based] = ACTIONS(3736), - [anon_sym_LBRACE] = ACTIONS(3738), - [anon_sym_RBRACE] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3736), - [anon_sym_EQ] = ACTIONS(3736), - [anon_sym_static] = ACTIONS(3736), - [anon_sym_register] = ACTIONS(3736), - [anon_sym_inline] = ACTIONS(3736), - [anon_sym_thread_local] = ACTIONS(3736), - [anon_sym_const] = ACTIONS(3736), - [anon_sym_volatile] = ACTIONS(3736), - [anon_sym_restrict] = ACTIONS(3736), - [anon_sym__Atomic] = ACTIONS(3736), - [anon_sym_mutable] = ACTIONS(3736), - [anon_sym_constexpr] = ACTIONS(3736), - [anon_sym_constinit] = ACTIONS(3736), - [anon_sym_consteval] = ACTIONS(3736), - [anon_sym_QMARK] = ACTIONS(3738), - [anon_sym_STAR_EQ] = ACTIONS(3738), - [anon_sym_SLASH_EQ] = ACTIONS(3738), - [anon_sym_PERCENT_EQ] = ACTIONS(3738), - [anon_sym_PLUS_EQ] = ACTIONS(3738), - [anon_sym_DASH_EQ] = ACTIONS(3738), - [anon_sym_LT_LT_EQ] = ACTIONS(3738), - [anon_sym_GT_GT_EQ] = ACTIONS(3738), - [anon_sym_AMP_EQ] = ACTIONS(3738), - [anon_sym_CARET_EQ] = ACTIONS(3738), - [anon_sym_PIPE_EQ] = ACTIONS(3738), - [anon_sym_and_eq] = ACTIONS(3736), - [anon_sym_or_eq] = ACTIONS(3736), - [anon_sym_xor_eq] = ACTIONS(3736), - [anon_sym_LT_EQ_GT] = ACTIONS(3738), - [anon_sym_or] = ACTIONS(3736), - [anon_sym_and] = ACTIONS(3736), - [anon_sym_bitor] = ACTIONS(3736), - [anon_sym_xor] = ACTIONS(3736), - [anon_sym_bitand] = ACTIONS(3736), - [anon_sym_not_eq] = ACTIONS(3736), - [anon_sym_DASH_DASH] = ACTIONS(3738), - [anon_sym_PLUS_PLUS] = ACTIONS(3738), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_DASH_GT] = ACTIONS(3738), + [sym__expression] = STATE(3082), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3754), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3736), - [anon_sym_decltype] = ACTIONS(3736), - [anon_sym_virtual] = ACTIONS(3736), - [anon_sym_template] = ACTIONS(3736), - [anon_sym_operator] = ACTIONS(3736), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), }, [1500] = { - [sym__expression] = STATE(3818), + [sym__expression] = STATE(3831), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -196378,10 +197438,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -196389,6 +197449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3757), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), @@ -196426,377 +197487,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1501] = { - [sym__expression] = STATE(2615), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(3576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3576), + [anon_sym_PERCENT] = ACTIONS(3576), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(3576), + [anon_sym_CARET] = ACTIONS(3576), + [anon_sym_AMP] = ACTIONS(3576), + [anon_sym_EQ_EQ] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_GT] = ACTIONS(3576), + [anon_sym_GT_EQ] = ACTIONS(3578), + [anon_sym_LT_EQ] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(3576), + [anon_sym_LT_LT] = ACTIONS(3576), + [anon_sym_GT_GT] = ACTIONS(3576), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym_extern] = ACTIONS(3576), + [anon_sym___attribute__] = ACTIONS(3576), + [anon_sym_COLON_COLON] = ACTIONS(3578), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3578), + [anon_sym___declspec] = ACTIONS(3576), + [anon_sym___based] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_RBRACE] = ACTIONS(3578), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_register] = ACTIONS(3576), + [anon_sym_inline] = ACTIONS(3576), + [anon_sym_thread_local] = ACTIONS(3576), + [anon_sym_input] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_volatile] = ACTIONS(3576), + [anon_sym_restrict] = ACTIONS(3576), + [anon_sym__Atomic] = ACTIONS(3576), + [anon_sym_mutable] = ACTIONS(3576), + [anon_sym_constexpr] = ACTIONS(3576), + [anon_sym_constinit] = ACTIONS(3576), + [anon_sym_consteval] = ACTIONS(3576), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_STAR_EQ] = ACTIONS(3578), + [anon_sym_SLASH_EQ] = ACTIONS(3578), + [anon_sym_PERCENT_EQ] = ACTIONS(3578), + [anon_sym_PLUS_EQ] = ACTIONS(3578), + [anon_sym_DASH_EQ] = ACTIONS(3578), + [anon_sym_LT_LT_EQ] = ACTIONS(3578), + [anon_sym_GT_GT_EQ] = ACTIONS(3578), + [anon_sym_AMP_EQ] = ACTIONS(3578), + [anon_sym_CARET_EQ] = ACTIONS(3578), + [anon_sym_PIPE_EQ] = ACTIONS(3578), + [anon_sym_and_eq] = ACTIONS(3576), + [anon_sym_or_eq] = ACTIONS(3576), + [anon_sym_xor_eq] = ACTIONS(3576), + [anon_sym_LT_EQ_GT] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3576), + [anon_sym_and] = ACTIONS(3576), + [anon_sym_bitor] = ACTIONS(3576), + [anon_sym_xor] = ACTIONS(3576), + [anon_sym_bitand] = ACTIONS(3576), + [anon_sym_not_eq] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3576), + [anon_sym_DASH_GT] = ACTIONS(3578), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), + [sym_auto] = ACTIONS(3576), + [anon_sym_decltype] = ACTIONS(3576), + [anon_sym_virtual] = ACTIONS(3576), + [anon_sym_template] = ACTIONS(3576), + [anon_sym_operator] = ACTIONS(3576), }, [1502] = { - [sym_identifier] = ACTIONS(3740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3742), - [anon_sym_COMMA] = ACTIONS(3742), - [anon_sym_RPAREN] = ACTIONS(3742), - [anon_sym_LPAREN2] = ACTIONS(3742), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3740), - [anon_sym_PLUS] = ACTIONS(3740), - [anon_sym_STAR] = ACTIONS(3740), - [anon_sym_SLASH] = ACTIONS(3740), - [anon_sym_PERCENT] = ACTIONS(3740), - [anon_sym_PIPE_PIPE] = ACTIONS(3742), - [anon_sym_AMP_AMP] = ACTIONS(3742), - [anon_sym_PIPE] = ACTIONS(3740), - [anon_sym_CARET] = ACTIONS(3740), - [anon_sym_AMP] = ACTIONS(3740), - [anon_sym_EQ_EQ] = ACTIONS(3742), - [anon_sym_BANG_EQ] = ACTIONS(3742), - [anon_sym_GT] = ACTIONS(3740), - [anon_sym_GT_EQ] = ACTIONS(3742), - [anon_sym_LT_EQ] = ACTIONS(3740), - [anon_sym_LT] = ACTIONS(3740), - [anon_sym_LT_LT] = ACTIONS(3740), - [anon_sym_GT_GT] = ACTIONS(3740), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_extern] = ACTIONS(3740), - [anon_sym___attribute__] = ACTIONS(3740), - [anon_sym_COLON_COLON] = ACTIONS(3742), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3742), - [anon_sym___declspec] = ACTIONS(3740), - [anon_sym___based] = ACTIONS(3740), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_RBRACE] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3740), - [anon_sym_EQ] = ACTIONS(3740), - [anon_sym_static] = ACTIONS(3740), - [anon_sym_register] = ACTIONS(3740), - [anon_sym_inline] = ACTIONS(3740), - [anon_sym_thread_local] = ACTIONS(3740), - [anon_sym_const] = ACTIONS(3740), - [anon_sym_volatile] = ACTIONS(3740), - [anon_sym_restrict] = ACTIONS(3740), - [anon_sym__Atomic] = ACTIONS(3740), - [anon_sym_mutable] = ACTIONS(3740), - [anon_sym_constexpr] = ACTIONS(3740), - [anon_sym_constinit] = ACTIONS(3740), - [anon_sym_consteval] = ACTIONS(3740), - [anon_sym_QMARK] = ACTIONS(3742), - [anon_sym_STAR_EQ] = ACTIONS(3742), - [anon_sym_SLASH_EQ] = ACTIONS(3742), - [anon_sym_PERCENT_EQ] = ACTIONS(3742), - [anon_sym_PLUS_EQ] = ACTIONS(3742), - [anon_sym_DASH_EQ] = ACTIONS(3742), - [anon_sym_LT_LT_EQ] = ACTIONS(3742), - [anon_sym_GT_GT_EQ] = ACTIONS(3742), - [anon_sym_AMP_EQ] = ACTIONS(3742), - [anon_sym_CARET_EQ] = ACTIONS(3742), - [anon_sym_PIPE_EQ] = ACTIONS(3742), - [anon_sym_and_eq] = ACTIONS(3740), - [anon_sym_or_eq] = ACTIONS(3740), - [anon_sym_xor_eq] = ACTIONS(3740), - [anon_sym_LT_EQ_GT] = ACTIONS(3742), - [anon_sym_or] = ACTIONS(3740), - [anon_sym_and] = ACTIONS(3740), - [anon_sym_bitor] = ACTIONS(3740), - [anon_sym_xor] = ACTIONS(3740), - [anon_sym_bitand] = ACTIONS(3740), - [anon_sym_not_eq] = ACTIONS(3740), - [anon_sym_DASH_DASH] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3742), - [anon_sym_DOT] = ACTIONS(3740), - [anon_sym_DASH_GT] = ACTIONS(3742), + [sym_identifier] = ACTIONS(3580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3582), + [anon_sym_COMMA] = ACTIONS(3582), + [anon_sym_RPAREN] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_STAR] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_PERCENT] = ACTIONS(3580), + [anon_sym_PIPE_PIPE] = ACTIONS(3582), + [anon_sym_AMP_AMP] = ACTIONS(3582), + [anon_sym_PIPE] = ACTIONS(3580), + [anon_sym_CARET] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3580), + [anon_sym_EQ_EQ] = ACTIONS(3582), + [anon_sym_BANG_EQ] = ACTIONS(3582), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_GT_EQ] = ACTIONS(3582), + [anon_sym_LT_EQ] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_LT_LT] = ACTIONS(3580), + [anon_sym_GT_GT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_extern] = ACTIONS(3580), + [anon_sym___attribute__] = ACTIONS(3580), + [anon_sym_COLON_COLON] = ACTIONS(3582), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3582), + [anon_sym___declspec] = ACTIONS(3580), + [anon_sym___based] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_RBRACE] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_register] = ACTIONS(3580), + [anon_sym_inline] = ACTIONS(3580), + [anon_sym_thread_local] = ACTIONS(3580), + [anon_sym_input] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3580), + [anon_sym_restrict] = ACTIONS(3580), + [anon_sym__Atomic] = ACTIONS(3580), + [anon_sym_mutable] = ACTIONS(3580), + [anon_sym_constexpr] = ACTIONS(3580), + [anon_sym_constinit] = ACTIONS(3580), + [anon_sym_consteval] = ACTIONS(3580), + [anon_sym_QMARK] = ACTIONS(3582), + [anon_sym_STAR_EQ] = ACTIONS(3582), + [anon_sym_SLASH_EQ] = ACTIONS(3582), + [anon_sym_PERCENT_EQ] = ACTIONS(3582), + [anon_sym_PLUS_EQ] = ACTIONS(3582), + [anon_sym_DASH_EQ] = ACTIONS(3582), + [anon_sym_LT_LT_EQ] = ACTIONS(3582), + [anon_sym_GT_GT_EQ] = ACTIONS(3582), + [anon_sym_AMP_EQ] = ACTIONS(3582), + [anon_sym_CARET_EQ] = ACTIONS(3582), + [anon_sym_PIPE_EQ] = ACTIONS(3582), + [anon_sym_and_eq] = ACTIONS(3580), + [anon_sym_or_eq] = ACTIONS(3580), + [anon_sym_xor_eq] = ACTIONS(3580), + [anon_sym_LT_EQ_GT] = ACTIONS(3582), + [anon_sym_or] = ACTIONS(3580), + [anon_sym_and] = ACTIONS(3580), + [anon_sym_bitor] = ACTIONS(3580), + [anon_sym_xor] = ACTIONS(3580), + [anon_sym_bitand] = ACTIONS(3580), + [anon_sym_not_eq] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_DASH_GT] = ACTIONS(3582), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3740), - [anon_sym_decltype] = ACTIONS(3740), - [anon_sym_virtual] = ACTIONS(3740), - [anon_sym_template] = ACTIONS(3740), - [anon_sym_operator] = ACTIONS(3740), + [sym_auto] = ACTIONS(3580), + [anon_sym_decltype] = ACTIONS(3580), + [anon_sym_virtual] = ACTIONS(3580), + [anon_sym_template] = ACTIONS(3580), + [anon_sym_operator] = ACTIONS(3580), }, [1503] = { - [sym__expression] = STATE(2628), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), - }, - [1504] = { - [sym_identifier] = ACTIONS(3744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3746), - [anon_sym_COMMA] = ACTIONS(3746), - [anon_sym_RPAREN] = ACTIONS(3746), - [anon_sym_LPAREN2] = ACTIONS(3746), - [anon_sym_TILDE] = ACTIONS(3746), - [anon_sym_DASH] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(3744), - [anon_sym_STAR] = ACTIONS(3744), - [anon_sym_SLASH] = ACTIONS(3744), - [anon_sym_PERCENT] = ACTIONS(3744), - [anon_sym_PIPE_PIPE] = ACTIONS(3746), - [anon_sym_AMP_AMP] = ACTIONS(3746), - [anon_sym_PIPE] = ACTIONS(3744), - [anon_sym_CARET] = ACTIONS(3744), - [anon_sym_AMP] = ACTIONS(3744), - [anon_sym_EQ_EQ] = ACTIONS(3746), - [anon_sym_BANG_EQ] = ACTIONS(3746), - [anon_sym_GT] = ACTIONS(3744), - [anon_sym_GT_EQ] = ACTIONS(3746), - [anon_sym_LT_EQ] = ACTIONS(3744), - [anon_sym_LT] = ACTIONS(3744), - [anon_sym_LT_LT] = ACTIONS(3744), - [anon_sym_GT_GT] = ACTIONS(3744), - [anon_sym_SEMI] = ACTIONS(3746), - [anon_sym_extern] = ACTIONS(3744), - [anon_sym___attribute__] = ACTIONS(3744), - [anon_sym_COLON_COLON] = ACTIONS(3746), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3746), - [anon_sym___declspec] = ACTIONS(3744), - [anon_sym___based] = ACTIONS(3744), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_RBRACE] = ACTIONS(3746), - [anon_sym_LBRACK] = ACTIONS(3744), - [anon_sym_EQ] = ACTIONS(3744), - [anon_sym_static] = ACTIONS(3744), - [anon_sym_register] = ACTIONS(3744), - [anon_sym_inline] = ACTIONS(3744), - [anon_sym_thread_local] = ACTIONS(3744), - [anon_sym_const] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3744), - [anon_sym_restrict] = ACTIONS(3744), - [anon_sym__Atomic] = ACTIONS(3744), - [anon_sym_mutable] = ACTIONS(3744), - [anon_sym_constexpr] = ACTIONS(3744), - [anon_sym_constinit] = ACTIONS(3744), - [anon_sym_consteval] = ACTIONS(3744), - [anon_sym_QMARK] = ACTIONS(3746), - [anon_sym_STAR_EQ] = ACTIONS(3746), - [anon_sym_SLASH_EQ] = ACTIONS(3746), - [anon_sym_PERCENT_EQ] = ACTIONS(3746), - [anon_sym_PLUS_EQ] = ACTIONS(3746), - [anon_sym_DASH_EQ] = ACTIONS(3746), - [anon_sym_LT_LT_EQ] = ACTIONS(3746), - [anon_sym_GT_GT_EQ] = ACTIONS(3746), - [anon_sym_AMP_EQ] = ACTIONS(3746), - [anon_sym_CARET_EQ] = ACTIONS(3746), - [anon_sym_PIPE_EQ] = ACTIONS(3746), - [anon_sym_and_eq] = ACTIONS(3744), - [anon_sym_or_eq] = ACTIONS(3744), - [anon_sym_xor_eq] = ACTIONS(3744), - [anon_sym_LT_EQ_GT] = ACTIONS(3746), - [anon_sym_or] = ACTIONS(3744), - [anon_sym_and] = ACTIONS(3744), - [anon_sym_bitor] = ACTIONS(3744), - [anon_sym_xor] = ACTIONS(3744), - [anon_sym_bitand] = ACTIONS(3744), - [anon_sym_not_eq] = ACTIONS(3744), - [anon_sym_DASH_DASH] = ACTIONS(3746), - [anon_sym_PLUS_PLUS] = ACTIONS(3746), - [anon_sym_DOT] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3746), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3744), - [anon_sym_decltype] = ACTIONS(3744), - [anon_sym_virtual] = ACTIONS(3744), - [anon_sym_template] = ACTIONS(3744), - [anon_sym_operator] = ACTIONS(3744), - }, - [1505] = { - [sym__expression] = STATE(3065), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3759), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), [sym_number_literal] = ACTIONS(1527), [anon_sym_L_SQUOTE] = ACTIONS(1529), [anon_sym_u_SQUOTE] = ACTIONS(1529), @@ -196813,55 +197717,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1533), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), + [anon_sym_delete] = ACTIONS(1535), [anon_sym_R_DQUOTE] = ACTIONS(1537), [anon_sym_LR_DQUOTE] = ACTIONS(1537), [anon_sym_uR_DQUOTE] = ACTIONS(1537), [anon_sym_UR_DQUOTE] = ACTIONS(1537), [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), [anon_sym_requires] = ACTIONS(1543), [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, - [1506] = { - [sym__expression] = STATE(3018), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [1504] = { + [sym__expression] = STATE(3050), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3761), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), [anon_sym_TILDE] = ACTIONS(1421), @@ -196870,7 +197775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1425), [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(3748), + [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1559), [anon_sym_not] = ACTIONS(1423), [anon_sym_compl] = ACTIONS(1423), @@ -196905,108 +197810,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1449), [sym_nullptr] = ACTIONS(1449), }, - [1507] = { - [sym_identifier] = ACTIONS(3750), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3752), - [anon_sym_COMMA] = ACTIONS(3752), - [anon_sym_RPAREN] = ACTIONS(3752), - [anon_sym_LPAREN2] = ACTIONS(3752), - [anon_sym_TILDE] = ACTIONS(3752), - [anon_sym_DASH] = ACTIONS(3750), - [anon_sym_PLUS] = ACTIONS(3750), - [anon_sym_STAR] = ACTIONS(3750), - [anon_sym_SLASH] = ACTIONS(3750), - [anon_sym_PERCENT] = ACTIONS(3750), - [anon_sym_PIPE_PIPE] = ACTIONS(3752), - [anon_sym_AMP_AMP] = ACTIONS(3752), - [anon_sym_PIPE] = ACTIONS(3750), - [anon_sym_CARET] = ACTIONS(3750), - [anon_sym_AMP] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3752), - [anon_sym_BANG_EQ] = ACTIONS(3752), - [anon_sym_GT] = ACTIONS(3750), - [anon_sym_GT_EQ] = ACTIONS(3752), - [anon_sym_LT_EQ] = ACTIONS(3750), - [anon_sym_LT] = ACTIONS(3750), - [anon_sym_LT_LT] = ACTIONS(3750), - [anon_sym_GT_GT] = ACTIONS(3750), - [anon_sym_extern] = ACTIONS(3750), - [anon_sym___attribute__] = ACTIONS(3750), - [anon_sym_COLON_COLON] = ACTIONS(3752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3752), - [anon_sym___declspec] = ACTIONS(3750), - [anon_sym___based] = ACTIONS(3750), - [anon_sym_LBRACE] = ACTIONS(3752), - [anon_sym_LBRACK] = ACTIONS(3750), - [anon_sym_EQ] = ACTIONS(3750), - [anon_sym_static] = ACTIONS(3750), - [anon_sym_register] = ACTIONS(3750), - [anon_sym_inline] = ACTIONS(3750), - [anon_sym_thread_local] = ACTIONS(3750), - [anon_sym_const] = ACTIONS(3750), - [anon_sym_volatile] = ACTIONS(3750), - [anon_sym_restrict] = ACTIONS(3750), - [anon_sym__Atomic] = ACTIONS(3750), - [anon_sym_mutable] = ACTIONS(3750), - [anon_sym_constexpr] = ACTIONS(3750), - [anon_sym_constinit] = ACTIONS(3750), - [anon_sym_consteval] = ACTIONS(3750), - [anon_sym_QMARK] = ACTIONS(3752), - [anon_sym_STAR_EQ] = ACTIONS(3752), - [anon_sym_SLASH_EQ] = ACTIONS(3752), - [anon_sym_PERCENT_EQ] = ACTIONS(3752), - [anon_sym_PLUS_EQ] = ACTIONS(3752), - [anon_sym_DASH_EQ] = ACTIONS(3752), - [anon_sym_LT_LT_EQ] = ACTIONS(3752), - [anon_sym_GT_GT_EQ] = ACTIONS(3752), - [anon_sym_AMP_EQ] = ACTIONS(3752), - [anon_sym_CARET_EQ] = ACTIONS(3752), - [anon_sym_PIPE_EQ] = ACTIONS(3752), - [anon_sym_and_eq] = ACTIONS(3750), - [anon_sym_or_eq] = ACTIONS(3750), - [anon_sym_xor_eq] = ACTIONS(3750), - [anon_sym_LT_EQ_GT] = ACTIONS(3752), - [anon_sym_or] = ACTIONS(3750), - [anon_sym_and] = ACTIONS(3750), - [anon_sym_bitor] = ACTIONS(3750), - [anon_sym_xor] = ACTIONS(3750), - [anon_sym_bitand] = ACTIONS(3750), - [anon_sym_not_eq] = ACTIONS(3750), - [anon_sym_DASH_DASH] = ACTIONS(3752), - [anon_sym_PLUS_PLUS] = ACTIONS(3752), - [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_DASH_GT] = ACTIONS(3750), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3750), - [anon_sym_decltype] = ACTIONS(3750), - [anon_sym_virtual] = ACTIONS(3750), - [anon_sym_template] = ACTIONS(3750), - [anon_sym_operator] = ACTIONS(3750), - [anon_sym_DOT_STAR] = ACTIONS(3752), - [anon_sym_DASH_GT_STAR] = ACTIONS(3752), - }, - [1508] = { - [sym__expression] = STATE(3824), + [1505] = { + [sym__expression] = STATE(3861), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -197018,25 +197843,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3754), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -197053,280 +197879,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, + [1506] = { + [sym_identifier] = ACTIONS(3682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3684), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_RPAREN] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_SLASH] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE] = ACTIONS(3682), + [anon_sym_CARET] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3682), + [anon_sym_GT_EQ] = ACTIONS(3684), + [anon_sym_LT_EQ] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(3682), + [anon_sym_LT_LT] = ACTIONS(3682), + [anon_sym_GT_GT] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3682), + [anon_sym___attribute__] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3684), + [anon_sym___declspec] = ACTIONS(3682), + [anon_sym___based] = ACTIONS(3682), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3682), + [anon_sym_static] = ACTIONS(3682), + [anon_sym_register] = ACTIONS(3682), + [anon_sym_inline] = ACTIONS(3682), + [anon_sym_thread_local] = ACTIONS(3682), + [anon_sym_input] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), + [anon_sym_volatile] = ACTIONS(3682), + [anon_sym_restrict] = ACTIONS(3682), + [anon_sym__Atomic] = ACTIONS(3682), + [anon_sym_mutable] = ACTIONS(3682), + [anon_sym_constexpr] = ACTIONS(3682), + [anon_sym_constinit] = ACTIONS(3682), + [anon_sym_consteval] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [anon_sym_STAR_EQ] = ACTIONS(3684), + [anon_sym_SLASH_EQ] = ACTIONS(3684), + [anon_sym_PERCENT_EQ] = ACTIONS(3684), + [anon_sym_PLUS_EQ] = ACTIONS(3684), + [anon_sym_DASH_EQ] = ACTIONS(3684), + [anon_sym_LT_LT_EQ] = ACTIONS(3684), + [anon_sym_GT_GT_EQ] = ACTIONS(3684), + [anon_sym_AMP_EQ] = ACTIONS(3684), + [anon_sym_CARET_EQ] = ACTIONS(3684), + [anon_sym_PIPE_EQ] = ACTIONS(3684), + [anon_sym_and_eq] = ACTIONS(3682), + [anon_sym_or_eq] = ACTIONS(3682), + [anon_sym_xor_eq] = ACTIONS(3682), + [anon_sym_LT_EQ_GT] = ACTIONS(3684), + [anon_sym_or] = ACTIONS(3682), + [anon_sym_and] = ACTIONS(3682), + [anon_sym_bitor] = ACTIONS(3682), + [anon_sym_xor] = ACTIONS(3682), + [anon_sym_bitand] = ACTIONS(3682), + [anon_sym_not_eq] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_DASH_GT] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3682), + [anon_sym_decltype] = ACTIONS(3682), + [anon_sym_virtual] = ACTIONS(3682), + [anon_sym_template] = ACTIONS(3682), + [anon_sym_operator] = ACTIONS(3682), + }, + [1507] = { + [sym_template_argument_list] = STATE(1820), + [sym_identifier] = ACTIONS(3450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(3462), + [anon_sym_LPAREN2] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym___attribute__] = ACTIONS(3450), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), + [anon_sym___declspec] = ACTIONS(3450), + [anon_sym___based] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_EQ] = ACTIONS(3511), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_register] = ACTIONS(3450), + [anon_sym_inline] = ACTIONS(3450), + [anon_sym_thread_local] = ACTIONS(3450), + [anon_sym_input] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym_restrict] = ACTIONS(3450), + [anon_sym__Atomic] = ACTIONS(3450), + [anon_sym_mutable] = ACTIONS(3450), + [anon_sym_constexpr] = ACTIONS(3450), + [anon_sym_constinit] = ACTIONS(3450), + [anon_sym_consteval] = ACTIONS(3450), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3515), + [anon_sym_SLASH_EQ] = ACTIONS(3515), + [anon_sym_PERCENT_EQ] = ACTIONS(3515), + [anon_sym_PLUS_EQ] = ACTIONS(3515), + [anon_sym_DASH_EQ] = ACTIONS(3515), + [anon_sym_LT_LT_EQ] = ACTIONS(3515), + [anon_sym_GT_GT_EQ] = ACTIONS(3515), + [anon_sym_AMP_EQ] = ACTIONS(3515), + [anon_sym_CARET_EQ] = ACTIONS(3515), + [anon_sym_PIPE_EQ] = ACTIONS(3515), + [anon_sym_and_eq] = ACTIONS(3511), + [anon_sym_or_eq] = ACTIONS(3511), + [anon_sym_xor_eq] = ACTIONS(3511), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3457), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3457), + [anon_sym_not_eq] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3450), + [anon_sym_decltype] = ACTIONS(3450), + [anon_sym_virtual] = ACTIONS(3450), + [anon_sym_template] = ACTIONS(3450), + [anon_sym_operator] = ACTIONS(3450), + }, + [1508] = { + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3768), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, [1509] = { - [sym__expression] = STATE(2592), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(3756), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), - }, - [1510] = { - [sym__expression] = STATE(2592), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), - }, - [1511] = { - [sym__expression] = STATE(3762), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1512] = { - [sym__expression] = STATE(3920), + [sym__expression] = STATE(3880), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -197338,25 +198167,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -197373,40 +198203,687 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1510] = { + [sym__expression] = STATE(3082), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3772), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1511] = { + [sym__expression] = STATE(3997), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3775), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1512] = { + [sym__expression] = STATE(3845), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3777), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1513] = { - [sym__expression] = STATE(3558), + [sym_template_argument_list] = STATE(1814), + [sym_identifier] = ACTIONS(3450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(3462), + [anon_sym_LPAREN2] = ACTIONS(3497), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym___attribute__] = ACTIONS(3450), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3504), + [anon_sym___declspec] = ACTIONS(3450), + [anon_sym___based] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3511), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_register] = ACTIONS(3450), + [anon_sym_inline] = ACTIONS(3450), + [anon_sym_thread_local] = ACTIONS(3450), + [anon_sym_input] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym_restrict] = ACTIONS(3450), + [anon_sym__Atomic] = ACTIONS(3450), + [anon_sym_mutable] = ACTIONS(3450), + [anon_sym_constexpr] = ACTIONS(3450), + [anon_sym_constinit] = ACTIONS(3450), + [anon_sym_consteval] = ACTIONS(3450), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3515), + [anon_sym_SLASH_EQ] = ACTIONS(3515), + [anon_sym_PERCENT_EQ] = ACTIONS(3515), + [anon_sym_PLUS_EQ] = ACTIONS(3515), + [anon_sym_DASH_EQ] = ACTIONS(3515), + [anon_sym_LT_LT_EQ] = ACTIONS(3515), + [anon_sym_GT_GT_EQ] = ACTIONS(3515), + [anon_sym_AMP_EQ] = ACTIONS(3515), + [anon_sym_CARET_EQ] = ACTIONS(3515), + [anon_sym_PIPE_EQ] = ACTIONS(3515), + [anon_sym_and_eq] = ACTIONS(3511), + [anon_sym_or_eq] = ACTIONS(3511), + [anon_sym_xor_eq] = ACTIONS(3511), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3457), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3457), + [anon_sym_not_eq] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3450), + [anon_sym_decltype] = ACTIONS(3450), + [anon_sym_virtual] = ACTIONS(3450), + [anon_sym_template] = ACTIONS(3450), + [anon_sym_operator] = ACTIONS(3450), + }, + [1514] = { + [sym_identifier] = ACTIONS(3690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3692), + [anon_sym_COMMA] = ACTIONS(3692), + [anon_sym_RPAREN] = ACTIONS(3692), + [anon_sym_LPAREN2] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3690), + [anon_sym_SLASH] = ACTIONS(3690), + [anon_sym_PERCENT] = ACTIONS(3690), + [anon_sym_PIPE_PIPE] = ACTIONS(3692), + [anon_sym_AMP_AMP] = ACTIONS(3692), + [anon_sym_PIPE] = ACTIONS(3690), + [anon_sym_CARET] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3690), + [anon_sym_EQ_EQ] = ACTIONS(3692), + [anon_sym_BANG_EQ] = ACTIONS(3692), + [anon_sym_GT] = ACTIONS(3690), + [anon_sym_GT_EQ] = ACTIONS(3692), + [anon_sym_LT_EQ] = ACTIONS(3690), + [anon_sym_LT] = ACTIONS(3690), + [anon_sym_LT_LT] = ACTIONS(3690), + [anon_sym_GT_GT] = ACTIONS(3690), + [anon_sym_extern] = ACTIONS(3690), + [anon_sym___attribute__] = ACTIONS(3690), + [anon_sym_COLON_COLON] = ACTIONS(3692), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3692), + [anon_sym___declspec] = ACTIONS(3690), + [anon_sym___based] = ACTIONS(3690), + [anon_sym_LBRACE] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3690), + [anon_sym_EQ] = ACTIONS(3690), + [anon_sym_static] = ACTIONS(3690), + [anon_sym_register] = ACTIONS(3690), + [anon_sym_inline] = ACTIONS(3690), + [anon_sym_thread_local] = ACTIONS(3690), + [anon_sym_input] = ACTIONS(3690), + [anon_sym_const] = ACTIONS(3690), + [anon_sym_volatile] = ACTIONS(3690), + [anon_sym_restrict] = ACTIONS(3690), + [anon_sym__Atomic] = ACTIONS(3690), + [anon_sym_mutable] = ACTIONS(3690), + [anon_sym_constexpr] = ACTIONS(3690), + [anon_sym_constinit] = ACTIONS(3690), + [anon_sym_consteval] = ACTIONS(3690), + [anon_sym_QMARK] = ACTIONS(3692), + [anon_sym_STAR_EQ] = ACTIONS(3692), + [anon_sym_SLASH_EQ] = ACTIONS(3692), + [anon_sym_PERCENT_EQ] = ACTIONS(3692), + [anon_sym_PLUS_EQ] = ACTIONS(3692), + [anon_sym_DASH_EQ] = ACTIONS(3692), + [anon_sym_LT_LT_EQ] = ACTIONS(3692), + [anon_sym_GT_GT_EQ] = ACTIONS(3692), + [anon_sym_AMP_EQ] = ACTIONS(3692), + [anon_sym_CARET_EQ] = ACTIONS(3692), + [anon_sym_PIPE_EQ] = ACTIONS(3692), + [anon_sym_and_eq] = ACTIONS(3690), + [anon_sym_or_eq] = ACTIONS(3690), + [anon_sym_xor_eq] = ACTIONS(3690), + [anon_sym_LT_EQ_GT] = ACTIONS(3692), + [anon_sym_or] = ACTIONS(3690), + [anon_sym_and] = ACTIONS(3690), + [anon_sym_bitor] = ACTIONS(3690), + [anon_sym_xor] = ACTIONS(3690), + [anon_sym_bitand] = ACTIONS(3690), + [anon_sym_not_eq] = ACTIONS(3690), + [anon_sym_DASH_DASH] = ACTIONS(3692), + [anon_sym_PLUS_PLUS] = ACTIONS(3692), + [anon_sym_DOT] = ACTIONS(3690), + [anon_sym_DASH_GT] = ACTIONS(3690), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3690), + [anon_sym_decltype] = ACTIONS(3690), + [anon_sym_virtual] = ACTIONS(3690), + [anon_sym_template] = ACTIONS(3690), + [anon_sym_operator] = ACTIONS(3690), + [anon_sym_DOT_STAR] = ACTIONS(3692), + [anon_sym_DASH_GT_STAR] = ACTIONS(3692), + }, + [1515] = { + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3779), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1516] = { + [sym__expression] = STATE(2489), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3781), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1517] = { + [sym__expression] = STATE(2480), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(3783), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1518] = { + [sym__expression] = STATE(3851), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -197418,10 +198895,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -197465,50 +198942,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1514] = { - [sym__expression] = STATE(3057), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [1519] = { + [sym__expression] = STATE(2624), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(3785), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1520] = { + [sym__expression] = STATE(3760), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1521] = { + [sym__expression] = STATE(3033), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(3787), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1522] = { + [sym__expression] = STATE(3076), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN2] = ACTIONS(1705), [anon_sym_BANG] = ACTIONS(1709), [anon_sym_TILDE] = ACTIONS(1709), [anon_sym_DASH] = ACTIONS(1707), [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), [anon_sym_COLON_COLON] = ACTIONS(1713), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), @@ -197545,808 +199262,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, - [1515] = { - [sym__expression] = STATE(3963), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1516] = { - [sym__expression] = STATE(3669), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1517] = { - [sym_identifier] = ACTIONS(3758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3760), - [anon_sym_COMMA] = ACTIONS(3760), - [anon_sym_RPAREN] = ACTIONS(3760), - [anon_sym_LPAREN2] = ACTIONS(3760), - [anon_sym_TILDE] = ACTIONS(3760), - [anon_sym_DASH] = ACTIONS(3758), - [anon_sym_PLUS] = ACTIONS(3758), - [anon_sym_STAR] = ACTIONS(3758), - [anon_sym_SLASH] = ACTIONS(3758), - [anon_sym_PERCENT] = ACTIONS(3758), - [anon_sym_PIPE_PIPE] = ACTIONS(3760), - [anon_sym_AMP_AMP] = ACTIONS(3760), - [anon_sym_PIPE] = ACTIONS(3758), - [anon_sym_CARET] = ACTIONS(3758), - [anon_sym_AMP] = ACTIONS(3758), - [anon_sym_EQ_EQ] = ACTIONS(3760), - [anon_sym_BANG_EQ] = ACTIONS(3760), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_GT_EQ] = ACTIONS(3760), - [anon_sym_LT_EQ] = ACTIONS(3758), - [anon_sym_LT] = ACTIONS(3758), - [anon_sym_LT_LT] = ACTIONS(3758), - [anon_sym_GT_GT] = ACTIONS(3758), - [anon_sym_extern] = ACTIONS(3758), - [anon_sym___attribute__] = ACTIONS(3758), - [anon_sym_COLON_COLON] = ACTIONS(3760), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), - [anon_sym___declspec] = ACTIONS(3758), - [anon_sym___based] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3760), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_EQ] = ACTIONS(3758), - [anon_sym_static] = ACTIONS(3758), - [anon_sym_register] = ACTIONS(3758), - [anon_sym_inline] = ACTIONS(3758), - [anon_sym_thread_local] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_constinit] = ACTIONS(3758), - [anon_sym_consteval] = ACTIONS(3758), - [anon_sym_QMARK] = ACTIONS(3760), - [anon_sym_STAR_EQ] = ACTIONS(3760), - [anon_sym_SLASH_EQ] = ACTIONS(3760), - [anon_sym_PERCENT_EQ] = ACTIONS(3760), - [anon_sym_PLUS_EQ] = ACTIONS(3760), - [anon_sym_DASH_EQ] = ACTIONS(3760), - [anon_sym_LT_LT_EQ] = ACTIONS(3760), - [anon_sym_GT_GT_EQ] = ACTIONS(3760), - [anon_sym_AMP_EQ] = ACTIONS(3760), - [anon_sym_CARET_EQ] = ACTIONS(3760), - [anon_sym_PIPE_EQ] = ACTIONS(3760), - [anon_sym_and_eq] = ACTIONS(3758), - [anon_sym_or_eq] = ACTIONS(3758), - [anon_sym_xor_eq] = ACTIONS(3758), - [anon_sym_LT_EQ_GT] = ACTIONS(3760), - [anon_sym_or] = ACTIONS(3758), - [anon_sym_and] = ACTIONS(3758), - [anon_sym_bitor] = ACTIONS(3758), - [anon_sym_xor] = ACTIONS(3758), - [anon_sym_bitand] = ACTIONS(3758), - [anon_sym_not_eq] = ACTIONS(3758), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_DOT] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3758), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3758), - [anon_sym_decltype] = ACTIONS(3758), - [anon_sym_virtual] = ACTIONS(3758), - [anon_sym_template] = ACTIONS(3758), - [anon_sym_operator] = ACTIONS(3758), - [anon_sym_DOT_STAR] = ACTIONS(3760), - [anon_sym_DASH_GT_STAR] = ACTIONS(3760), - }, - [1518] = { - [sym__expression] = STATE(3764), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1519] = { - [sym_identifier] = ACTIONS(3762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), - [anon_sym_COMMA] = ACTIONS(3764), - [anon_sym_RPAREN] = ACTIONS(3764), - [anon_sym_LPAREN2] = ACTIONS(3764), - [anon_sym_TILDE] = ACTIONS(3764), - [anon_sym_DASH] = ACTIONS(3762), - [anon_sym_PLUS] = ACTIONS(3762), - [anon_sym_STAR] = ACTIONS(3762), - [anon_sym_SLASH] = ACTIONS(3762), - [anon_sym_PERCENT] = ACTIONS(3762), - [anon_sym_PIPE_PIPE] = ACTIONS(3764), - [anon_sym_AMP_AMP] = ACTIONS(3764), - [anon_sym_PIPE] = ACTIONS(3762), - [anon_sym_CARET] = ACTIONS(3762), - [anon_sym_AMP] = ACTIONS(3762), - [anon_sym_EQ_EQ] = ACTIONS(3764), - [anon_sym_BANG_EQ] = ACTIONS(3764), - [anon_sym_GT] = ACTIONS(3762), - [anon_sym_GT_EQ] = ACTIONS(3764), - [anon_sym_LT_EQ] = ACTIONS(3762), - [anon_sym_LT] = ACTIONS(3762), - [anon_sym_LT_LT] = ACTIONS(3762), - [anon_sym_GT_GT] = ACTIONS(3762), - [anon_sym_extern] = ACTIONS(3762), - [anon_sym___attribute__] = ACTIONS(3762), - [anon_sym_COLON_COLON] = ACTIONS(3764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3764), - [anon_sym___declspec] = ACTIONS(3762), - [anon_sym___based] = ACTIONS(3762), - [anon_sym_LBRACE] = ACTIONS(3764), - [anon_sym_LBRACK] = ACTIONS(3762), - [anon_sym_EQ] = ACTIONS(3762), - [anon_sym_static] = ACTIONS(3762), - [anon_sym_register] = ACTIONS(3762), - [anon_sym_inline] = ACTIONS(3762), - [anon_sym_thread_local] = ACTIONS(3762), - [anon_sym_const] = ACTIONS(3762), - [anon_sym_volatile] = ACTIONS(3762), - [anon_sym_restrict] = ACTIONS(3762), - [anon_sym__Atomic] = ACTIONS(3762), - [anon_sym_mutable] = ACTIONS(3762), - [anon_sym_constexpr] = ACTIONS(3762), - [anon_sym_constinit] = ACTIONS(3762), - [anon_sym_consteval] = ACTIONS(3762), - [anon_sym_QMARK] = ACTIONS(3764), - [anon_sym_STAR_EQ] = ACTIONS(3764), - [anon_sym_SLASH_EQ] = ACTIONS(3764), - [anon_sym_PERCENT_EQ] = ACTIONS(3764), - [anon_sym_PLUS_EQ] = ACTIONS(3764), - [anon_sym_DASH_EQ] = ACTIONS(3764), - [anon_sym_LT_LT_EQ] = ACTIONS(3764), - [anon_sym_GT_GT_EQ] = ACTIONS(3764), - [anon_sym_AMP_EQ] = ACTIONS(3764), - [anon_sym_CARET_EQ] = ACTIONS(3764), - [anon_sym_PIPE_EQ] = ACTIONS(3764), - [anon_sym_and_eq] = ACTIONS(3762), - [anon_sym_or_eq] = ACTIONS(3762), - [anon_sym_xor_eq] = ACTIONS(3762), - [anon_sym_LT_EQ_GT] = ACTIONS(3764), - [anon_sym_or] = ACTIONS(3762), - [anon_sym_and] = ACTIONS(3762), - [anon_sym_bitor] = ACTIONS(3762), - [anon_sym_xor] = ACTIONS(3762), - [anon_sym_bitand] = ACTIONS(3762), - [anon_sym_not_eq] = ACTIONS(3762), - [anon_sym_DASH_DASH] = ACTIONS(3764), - [anon_sym_PLUS_PLUS] = ACTIONS(3764), - [anon_sym_DOT] = ACTIONS(3762), - [anon_sym_DASH_GT] = ACTIONS(3762), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3762), - [anon_sym_decltype] = ACTIONS(3762), - [anon_sym_virtual] = ACTIONS(3762), - [anon_sym_template] = ACTIONS(3762), - [anon_sym_operator] = ACTIONS(3762), - [anon_sym_DOT_STAR] = ACTIONS(3764), - [anon_sym_DASH_GT_STAR] = ACTIONS(3764), - }, - [1520] = { - [sym__expression] = STATE(3822), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1521] = { - [sym__expression] = STATE(3780), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1522] = { - [sym__expression] = STATE(3781), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, [1523] = { - [sym__expression] = STATE(3979), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1524] = { - [sym_identifier] = ACTIONS(3766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3768), - [anon_sym_COMMA] = ACTIONS(3768), - [anon_sym_RPAREN] = ACTIONS(3768), - [anon_sym_LPAREN2] = ACTIONS(3768), - [anon_sym_TILDE] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3773), - [anon_sym_PLUS] = ACTIONS(3773), - [anon_sym_STAR] = ACTIONS(3775), - [anon_sym_SLASH] = ACTIONS(3773), - [anon_sym_PERCENT] = ACTIONS(3773), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_AMP_AMP] = ACTIONS(3768), - [anon_sym_PIPE] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3773), - [anon_sym_AMP] = ACTIONS(3775), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_GT] = ACTIONS(3773), - [anon_sym_GT_EQ] = ACTIONS(3778), - [anon_sym_LT_EQ] = ACTIONS(3773), - [anon_sym_LT] = ACTIONS(3773), - [anon_sym_LT_LT] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3773), - [anon_sym_extern] = ACTIONS(3766), - [anon_sym___attribute__] = ACTIONS(3766), - [anon_sym_COLON_COLON] = ACTIONS(3771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3771), - [anon_sym___declspec] = ACTIONS(3766), - [anon_sym___based] = ACTIONS(3766), - [anon_sym_LBRACE] = ACTIONS(3771), - [anon_sym_LBRACK] = ACTIONS(3775), - [anon_sym_EQ] = ACTIONS(3775), - [anon_sym_static] = ACTIONS(3766), - [anon_sym_register] = ACTIONS(3766), - [anon_sym_inline] = ACTIONS(3766), - [anon_sym_thread_local] = ACTIONS(3766), - [anon_sym_const] = ACTIONS(3766), - [anon_sym_volatile] = ACTIONS(3766), - [anon_sym_restrict] = ACTIONS(3766), - [anon_sym__Atomic] = ACTIONS(3766), - [anon_sym_mutable] = ACTIONS(3766), - [anon_sym_constexpr] = ACTIONS(3766), - [anon_sym_constinit] = ACTIONS(3766), - [anon_sym_consteval] = ACTIONS(3766), - [anon_sym_QMARK] = ACTIONS(3778), - [anon_sym_STAR_EQ] = ACTIONS(3778), - [anon_sym_SLASH_EQ] = ACTIONS(3778), - [anon_sym_PERCENT_EQ] = ACTIONS(3778), - [anon_sym_PLUS_EQ] = ACTIONS(3778), - [anon_sym_DASH_EQ] = ACTIONS(3778), - [anon_sym_LT_LT_EQ] = ACTIONS(3778), - [anon_sym_GT_GT_EQ] = ACTIONS(3778), - [anon_sym_AMP_EQ] = ACTIONS(3778), - [anon_sym_CARET_EQ] = ACTIONS(3778), - [anon_sym_PIPE_EQ] = ACTIONS(3778), - [anon_sym_and_eq] = ACTIONS(3773), - [anon_sym_or_eq] = ACTIONS(3773), - [anon_sym_xor_eq] = ACTIONS(3773), - [anon_sym_LT_EQ_GT] = ACTIONS(3778), - [anon_sym_or] = ACTIONS(3773), - [anon_sym_and] = ACTIONS(3773), - [anon_sym_bitor] = ACTIONS(3773), - [anon_sym_xor] = ACTIONS(3773), - [anon_sym_bitand] = ACTIONS(3773), - [anon_sym_not_eq] = ACTIONS(3773), - [anon_sym_DASH_DASH] = ACTIONS(3778), - [anon_sym_PLUS_PLUS] = ACTIONS(3778), - [anon_sym_DOT] = ACTIONS(3773), - [anon_sym_DASH_GT] = ACTIONS(3773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3766), - [anon_sym_decltype] = ACTIONS(3766), - [anon_sym_virtual] = ACTIONS(3766), - [anon_sym_template] = ACTIONS(3766), - [anon_sym_operator] = ACTIONS(3766), - [anon_sym_DOT_STAR] = ACTIONS(3778), - [anon_sym_DASH_GT_STAR] = ACTIONS(3778), - }, - [1525] = { - [sym__expression] = STATE(3444), + [sym__expression] = STATE(3694), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -198360,13 +199277,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -198425,28 +199342,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1526] = { - [sym__expression] = STATE(3959), + [1524] = { + [sym__expression] = STATE(3669), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -198458,25 +199375,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -198493,120 +199410,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, + [1525] = { + [sym_identifier] = ACTIONS(3722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3727), + [anon_sym_DASH] = ACTIONS(3729), + [anon_sym_PLUS] = ACTIONS(3729), + [anon_sym_STAR] = ACTIONS(3731), + [anon_sym_SLASH] = ACTIONS(3729), + [anon_sym_PERCENT] = ACTIONS(3729), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3729), + [anon_sym_CARET] = ACTIONS(3729), + [anon_sym_AMP] = ACTIONS(3731), + [anon_sym_EQ_EQ] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_GT] = ACTIONS(3729), + [anon_sym_GT_EQ] = ACTIONS(3734), + [anon_sym_LT_EQ] = ACTIONS(3729), + [anon_sym_LT] = ACTIONS(3729), + [anon_sym_LT_LT] = ACTIONS(3729), + [anon_sym_GT_GT] = ACTIONS(3729), + [anon_sym_SEMI] = ACTIONS(3724), + [anon_sym_extern] = ACTIONS(3722), + [anon_sym___attribute__] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3724), + [anon_sym___declspec] = ACTIONS(3722), + [anon_sym___based] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3727), + [anon_sym_RBRACE] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(3729), + [anon_sym_static] = ACTIONS(3722), + [anon_sym_register] = ACTIONS(3722), + [anon_sym_inline] = ACTIONS(3722), + [anon_sym_thread_local] = ACTIONS(3722), + [anon_sym_input] = ACTIONS(3722), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_volatile] = ACTIONS(3722), + [anon_sym_restrict] = ACTIONS(3722), + [anon_sym__Atomic] = ACTIONS(3722), + [anon_sym_mutable] = ACTIONS(3722), + [anon_sym_constexpr] = ACTIONS(3722), + [anon_sym_constinit] = ACTIONS(3722), + [anon_sym_consteval] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_STAR_EQ] = ACTIONS(3734), + [anon_sym_SLASH_EQ] = ACTIONS(3734), + [anon_sym_PERCENT_EQ] = ACTIONS(3734), + [anon_sym_PLUS_EQ] = ACTIONS(3734), + [anon_sym_DASH_EQ] = ACTIONS(3734), + [anon_sym_LT_LT_EQ] = ACTIONS(3734), + [anon_sym_GT_GT_EQ] = ACTIONS(3734), + [anon_sym_AMP_EQ] = ACTIONS(3734), + [anon_sym_CARET_EQ] = ACTIONS(3734), + [anon_sym_PIPE_EQ] = ACTIONS(3734), + [anon_sym_and_eq] = ACTIONS(3729), + [anon_sym_or_eq] = ACTIONS(3729), + [anon_sym_xor_eq] = ACTIONS(3729), + [anon_sym_LT_EQ_GT] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3729), + [anon_sym_and] = ACTIONS(3729), + [anon_sym_bitor] = ACTIONS(3729), + [anon_sym_xor] = ACTIONS(3729), + [anon_sym_bitand] = ACTIONS(3729), + [anon_sym_not_eq] = ACTIONS(3729), + [anon_sym_DASH_DASH] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3729), + [anon_sym_DASH_GT] = ACTIONS(3734), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3722), + [anon_sym_decltype] = ACTIONS(3722), + [anon_sym_virtual] = ACTIONS(3722), + [anon_sym_template] = ACTIONS(3722), + [anon_sym_operator] = ACTIONS(3722), + }, + [1526] = { + [sym__expression] = STATE(3768), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, [1527] = { - [sym__expression] = STATE(3559), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym__expression] = STATE(3057), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(1713), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), }, [1528] = { - [sym__expression] = STATE(3826), + [sym__expression] = STATE(3557), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -198618,25 +199695,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -198653,40 +199730,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), + [anon_sym_delete] = ACTIONS(3005), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1529] = { - [sym__expression] = STATE(3649), + [sym__expression] = STATE(3738), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -198698,25 +199775,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3789), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -198733,40 +199810,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), + [anon_sym_delete] = ACTIONS(3005), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1530] = { - [sym__expression] = STATE(3565), + [sym__expression] = STATE(3513), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -198778,25 +199855,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -198813,40 +199890,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), + [anon_sym_delete] = ACTIONS(3005), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1531] = { - [sym__expression] = STATE(3865), + [sym__expression] = STATE(3530), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -198858,25 +199935,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -198893,120 +199970,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(3005), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1532] = { - [sym__expression] = STATE(3023), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__expression] = STATE(3741), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), }, [1533] = { - [sym__expression] = STATE(3906), + [sym__expression] = STATE(3617), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -199018,25 +200095,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -199053,40 +200130,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(3005), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1534] = { - [sym__expression] = STATE(3553), + [sym__expression] = STATE(3579), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -199098,10 +200175,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -199110,7 +200187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(3791), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -199146,27 +200223,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1535] = { - [sym__expression] = STATE(3693), + [sym__expression] = STATE(3941), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -199178,10 +200255,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -199226,107 +200303,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1536] = { - [sym__expression] = STATE(2473), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1537] = { - [sym__expression] = STATE(3568), + [sym__expression] = STATE(3695), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -199338,10 +200335,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1537] = { + [sym__expression] = STATE(3930), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -199386,27 +200463,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1538] = { - [sym__expression] = STATE(3862), + [sym__expression] = STATE(3936), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -199418,25 +200495,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -199453,40 +200530,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(3005), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1539] = { - [sym__expression] = STATE(3858), + [sym__expression] = STATE(3037), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1540] = { + [sym__expression] = STATE(3702), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -199498,10 +200655,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1541] = { + [sym__expression] = STATE(3933), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -199545,188 +200782,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1540] = { - [sym__expression] = STATE(3869), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1541] = { - [sym__expression] = STATE(3875), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, [1542] = { - [sym__expression] = STATE(3878), + [sym__expression] = STATE(3944), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -199738,25 +200815,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -199773,40 +200850,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1543] = { - [sym__expression] = STATE(3854), + [sym__expression] = STATE(3907), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -199818,10 +200895,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -199866,107 +200943,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1544] = { - [sym__expression] = STATE(3682), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1545] = { - [sym__expression] = STATE(3572), + [sym__expression] = STATE(3970), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -199978,10 +200975,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -200025,28 +201022,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1546] = { - [sym__expression] = STATE(3554), + [1545] = { + [sym__expression] = STATE(3974), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -200058,10 +201055,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1546] = { + [sym__expression] = STATE(3989), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -200106,27 +201183,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1547] = { - [sym__expression] = STATE(3853), + [sym__expression] = STATE(3998), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -200138,10 +201215,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -200186,27 +201263,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1548] = { - [sym__expression] = STATE(3972), + [sym__expression] = STATE(4002), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(3108), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -200218,25 +201295,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(3108), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -200253,454 +201330,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(3045), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1549] = { - [sym__expression] = STATE(3734), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1550] = { - [sym__expression] = STATE(3925), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1551] = { - [sym__expression] = STATE(3662), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1552] = { - [sym__expression] = STATE(3882), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1553] = { - [sym__expression] = STATE(3585), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1554] = { - [sym__expression] = STATE(2681), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), + [sym__expression] = STATE(2615), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), [sym_string_literal] = STATE(1795), [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), + [sym_qualified_identifier] = STATE(2916), [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), + [sym_user_defined_literal] = STATE(2708), [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(1547), [anon_sym_BANG] = ACTIONS(1551), @@ -200710,7 +201387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1425), [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(3780), + [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1559), [anon_sym_not] = ACTIONS(1549), [anon_sym_compl] = ACTIONS(1549), @@ -200745,42 +201422,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1571), [sym_nullptr] = ACTIONS(1571), }, - [1555] = { - [sym__expression] = STATE(2548), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [1550] = { + [sym__expression] = STATE(3048), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1551] = { + [sym__expression] = STATE(2592), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(3793), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1552] = { + [sym__expression] = STATE(2592), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1553] = { + [sym__expression] = STATE(3771), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1554] = { + [sym__expression] = STATE(3853), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1555] = { + [sym__expression] = STATE(2522), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN2] = ACTIONS(1507), [anon_sym_BANG] = ACTIONS(1511), @@ -200826,41 +201903,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1533), }, [1556] = { - [sym__expression] = STATE(2547), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [sym__expression] = STATE(2523), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN2] = ACTIONS(1507), [anon_sym_BANG] = ACTIONS(1511), @@ -200906,42 +201983,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1533), }, [1557] = { - [sym__expression] = STATE(3041), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [sym__expression] = STATE(3043), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), [anon_sym_TILDE] = ACTIONS(1421), @@ -200986,42 +202063,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [1558] = { - [sym__expression] = STATE(3043), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [sym__expression] = STATE(3044), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), [anon_sym_TILDE] = ACTIONS(1421), @@ -201066,42 +202143,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [1559] = { - [sym__expression] = STATE(3044), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [sym__expression] = STATE(3045), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), [anon_sym_TILDE] = ACTIONS(1421), @@ -201146,42 +202223,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [1560] = { - [sym__expression] = STATE(3045), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [sym__expression] = STATE(3046), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), [anon_sym_TILDE] = ACTIONS(1421), @@ -201227,41 +202304,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1561] = { [sym__expression] = STATE(3047), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), [anon_sym_TILDE] = ACTIONS(1421), @@ -201306,247 +202383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [1562] = { - [sym__expression] = STATE(3048), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1563] = { - [sym__expression] = STATE(2539), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1564] = { - [sym__expression] = STATE(2538), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1565] = { - [sym__expression] = STATE(3500), + [sym__expression] = STATE(3886), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -201560,13 +202397,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -201625,43 +202462,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, + [1563] = { + [sym__expression] = STATE(3908), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1564] = { + [sym__expression] = STATE(3758), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1565] = { + [sym__expression] = STATE(3774), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, [1566] = { [sym__expression] = STATE(3051), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), + [sym_qualified_identifier] = STATE(2878), [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), [anon_sym_LPAREN2] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1421), [anon_sym_TILDE] = ACTIONS(1421), @@ -201706,27 +202783,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1449), }, [1567] = { - [sym__expression] = STATE(3943), + [sym__expression] = STATE(3917), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -201738,10 +202815,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -201786,1329 +202863,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1568] = { - [sym__expression] = STATE(2997), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__expression] = STATE(3949), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [1569] = { - [sym__expression] = STATE(3936), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1570] = { - [sym__expression] = STATE(3941), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1571] = { - [sym__expression] = STATE(2996), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(3782), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1572] = { - [sym__expression] = STATE(3816), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1573] = { - [sym__expression] = STATE(2699), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), - }, - [1574] = { - [sym__expression] = STATE(2698), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), - }, - [1575] = { - [sym__expression] = STATE(3766), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1576] = { - [sym__expression] = STATE(2697), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), - }, - [1577] = { - [sym__expression] = STATE(2696), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), - }, - [1578] = { - [sym__expression] = STATE(3761), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1579] = { - [sym__expression] = STATE(2695), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), - }, - [1580] = { - [sym__expression] = STATE(3684), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1581] = { - [sym__expression] = STATE(2694), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), - }, - [1582] = { - [sym__expression] = STATE(3721), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1583] = { - [sym__expression] = STATE(2690), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), - }, - [1584] = { - [sym__expression] = STATE(3090), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [sym__expression] = STATE(3084), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN2] = ACTIONS(1705), [anon_sym_BANG] = ACTIONS(1709), [anon_sym_TILDE] = ACTIONS(1709), [anon_sym_DASH] = ACTIONS(1707), [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), [anon_sym_COLON_COLON] = ACTIONS(1713), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), @@ -203145,28 +203022,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, - [1585] = { - [sym__expression] = STATE(3564), + [1570] = { + [sym__expression] = STATE(3790), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1571] = { + [sym__expression] = STATE(4046), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -203178,10 +203135,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -203190,7 +203147,1127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1572] = { + [sym__expression] = STATE(4030), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1573] = { + [sym__expression] = STATE(3792), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1574] = { + [sym__expression] = STATE(3994), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3795), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1575] = { + [sym__expression] = STATE(3090), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1576] = { + [sym__expression] = STATE(3991), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1577] = { + [sym__expression] = STATE(2972), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1578] = { + [sym__expression] = STATE(3985), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1579] = { + [sym__expression] = STATE(3987), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1580] = { + [sym__expression] = STATE(3986), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1581] = { + [sym__expression] = STATE(3887), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1582] = { + [sym__expression] = STATE(3060), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1583] = { + [sym__expression] = STATE(3062), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1584] = { + [sym__expression] = STATE(3557), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1585] = { + [sym__expression] = STATE(3980), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -203226,107 +204303,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1586] = { - [sym_template_argument_list] = STATE(1751), - [sym_identifier] = ACTIONS(3679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_LPAREN2] = ACTIONS(3681), - [anon_sym_TILDE] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3686), - [anon_sym_STAR] = ACTIONS(3688), - [anon_sym_SLASH] = ACTIONS(3686), - [anon_sym_PERCENT] = ACTIONS(3686), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT] = ACTIONS(3686), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3784), - [anon_sym_LT_LT] = ACTIONS(3686), - [anon_sym_GT_GT] = ACTIONS(3686), - [anon_sym_SEMI] = ACTIONS(3681), - [anon_sym_extern] = ACTIONS(3679), - [anon_sym___attribute__] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3681), - [anon_sym___declspec] = ACTIONS(3679), - [anon_sym___based] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(3684), - [anon_sym_RBRACE] = ACTIONS(3691), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_EQ] = ACTIONS(3686), - [anon_sym_static] = ACTIONS(3679), - [anon_sym_register] = ACTIONS(3679), - [anon_sym_inline] = ACTIONS(3679), - [anon_sym_thread_local] = ACTIONS(3679), - [anon_sym_const] = ACTIONS(3679), - [anon_sym_volatile] = ACTIONS(3679), - [anon_sym_restrict] = ACTIONS(3679), - [anon_sym__Atomic] = ACTIONS(3679), - [anon_sym_mutable] = ACTIONS(3679), - [anon_sym_constexpr] = ACTIONS(3679), - [anon_sym_constinit] = ACTIONS(3679), - [anon_sym_consteval] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3691), - [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(3686), - [anon_sym_or_eq] = ACTIONS(3686), - [anon_sym_xor_eq] = ACTIONS(3686), - [anon_sym_LT_EQ_GT] = ACTIONS(3691), - [anon_sym_or] = ACTIONS(3686), - [anon_sym_and] = ACTIONS(3686), - [anon_sym_bitor] = ACTIONS(3686), - [anon_sym_xor] = ACTIONS(3686), - [anon_sym_bitand] = ACTIONS(3686), - [anon_sym_not_eq] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_DASH_GT] = ACTIONS(3691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3679), - [anon_sym_decltype] = ACTIONS(3679), - [anon_sym_virtual] = ACTIONS(3679), - [anon_sym_template] = ACTIONS(3679), - [anon_sym_operator] = ACTIONS(3679), - }, - [1587] = { - [sym__expression] = STATE(3980), + [sym__expression] = STATE(3965), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3108), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -203338,10 +204335,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3108), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1587] = { + [sym__expression] = STATE(3680), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -203386,107 +204463,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1588] = { - [sym__expression] = STATE(3962), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym__expression] = STATE(3780), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), }, [1589] = { - [sym__expression] = STATE(3860), + [sym__expression] = STATE(3884), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -203498,10 +204575,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -203546,27 +204623,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1590] = { - [sym__expression] = STATE(3954), + [sym__expression] = STATE(3943), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -203578,10 +204655,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -203626,7 +204703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1591] = { - [sym__expression] = STATE(3857), + [sym__expression] = STATE(3666), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -203640,13 +204717,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -203706,27 +204783,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1592] = { - [sym__expression] = STATE(3884), + [sym__expression] = STATE(3964), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -203738,10 +204815,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -203786,27 +204863,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1593] = { - [sym__expression] = STATE(3890), + [sym__expression] = STATE(3081), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1594] = { + [sym__expression] = STATE(3938), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(3108), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -203818,25 +204975,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(3108), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -203853,40 +205010,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(3045), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1594] = { - [sym__expression] = STATE(3856), + [1595] = { + [sym__expression] = STATE(3832), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -203898,10 +205055,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -203945,108 +205102,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1595] = { - [sym__expression] = STATE(3754), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, [1596] = { - [sym__expression] = STATE(3695), + [sym__expression] = STATE(3577), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -204058,25 +205135,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -204093,40 +205170,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), + [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1597] = { - [sym__expression] = STATE(3885), + [sym__expression] = STATE(3988), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -204138,25 +205215,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -204173,54 +205250,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1598] = { - [sym__expression] = STATE(2666), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), + [sym__expression] = STATE(3085), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1599] = { + [sym__expression] = STATE(3959), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1600] = { + [sym__expression] = STATE(2667), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), [sym_string_literal] = STATE(1795), [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), + [sym_qualified_identifier] = STATE(2916), [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), + [sym_user_defined_literal] = STATE(2708), [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(1547), [anon_sym_BANG] = ACTIONS(1551), @@ -204265,290 +205502,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1571), [sym_nullptr] = ACTIONS(1571), }, - [1599] = { - [sym__expression] = STATE(2992), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1600] = { - [sym__expression] = STATE(3615), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, [1601] = { - [sym__expression] = STATE(3879), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym__expression] = STATE(2953), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), }, [1602] = { - [sym__expression] = STATE(3070), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [sym__expression] = STATE(3064), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN2] = ACTIONS(1705), [anon_sym_BANG] = ACTIONS(1709), [anon_sym_TILDE] = ACTIONS(1709), [anon_sym_DASH] = ACTIONS(1707), [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(3797), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1603] = { + [sym__expression] = STATE(3932), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1604] = { + [sym__expression] = STATE(2490), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1605] = { + [sym__expression] = STATE(2508), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(3799), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1606] = { + [sym__expression] = STATE(2508), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1607] = { + [sym__expression] = STATE(3070), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), [anon_sym_COLON_COLON] = ACTIONS(1713), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), @@ -204585,328 +206062,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, - [1603] = { - [sym_template_argument_list] = STATE(1838), - [sym_identifier] = ACTIONS(3508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(3523), - [anon_sym_TILDE] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_extern] = ACTIONS(3508), - [anon_sym___attribute__] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), - [anon_sym___declspec] = ACTIONS(3508), - [anon_sym___based] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_register] = ACTIONS(3508), - [anon_sym_inline] = ACTIONS(3508), - [anon_sym_thread_local] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3508), - [anon_sym_restrict] = ACTIONS(3508), - [anon_sym__Atomic] = ACTIONS(3508), - [anon_sym_mutable] = ACTIONS(3508), - [anon_sym_constexpr] = ACTIONS(3508), - [anon_sym_constinit] = ACTIONS(3508), - [anon_sym_consteval] = ACTIONS(3508), - [anon_sym_COLON] = ACTIONS(3787), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3544), - [anon_sym_SLASH_EQ] = ACTIONS(3544), - [anon_sym_PERCENT_EQ] = ACTIONS(3544), - [anon_sym_PLUS_EQ] = ACTIONS(3544), - [anon_sym_DASH_EQ] = ACTIONS(3544), - [anon_sym_LT_LT_EQ] = ACTIONS(3544), - [anon_sym_GT_GT_EQ] = ACTIONS(3544), - [anon_sym_AMP_EQ] = ACTIONS(3544), - [anon_sym_CARET_EQ] = ACTIONS(3544), - [anon_sym_PIPE_EQ] = ACTIONS(3544), - [anon_sym_and_eq] = ACTIONS(3540), - [anon_sym_or_eq] = ACTIONS(3540), - [anon_sym_xor_eq] = ACTIONS(3540), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3518), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3518), - [anon_sym_not_eq] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3508), - [anon_sym_decltype] = ACTIONS(3508), - [anon_sym_virtual] = ACTIONS(3508), - [anon_sym_template] = ACTIONS(3508), - [anon_sym_operator] = ACTIONS(3508), - }, - [1604] = { - [sym__expression] = STATE(2992), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(3789), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1605] = { - [sym__expression] = STATE(2976), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1606] = { - [sym__expression] = STATE(3846), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [1608] = { + [sym__expression] = STATE(2536), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), }, - [1607] = { - [sym__expression] = STATE(3691), + [1609] = { + [sym__expression] = STATE(2980), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1610] = { + [sym__expression] = STATE(3065), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1611] = { + [sym__expression] = STATE(3821), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -204920,13 +206317,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -204985,442 +206382,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1608] = { - [sym__expression] = STATE(3919), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1609] = { - [sym__expression] = STATE(2928), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1610] = { - [sym__expression] = STATE(3891), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1611] = { - [sym__expression] = STATE(3557), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, [1612] = { - [sym__expression] = STATE(2970), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1613] = { - [sym__expression] = STATE(2701), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), + [sym__expression] = STATE(2692), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), [sym_string_literal] = STATE(1795), [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), + [sym_qualified_identifier] = STATE(2916), [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1613] = { + [sym__expression] = STATE(2693), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(1547), [anon_sym_BANG] = ACTIONS(1551), @@ -205467,186 +206544,746 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1614] = { [sym__expression] = STATE(2964), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), + [sym_qualified_identifier] = STATE(3059), [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), }, [1615] = { - [sym__expression] = STATE(3864), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym__expression] = STATE(3009), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), }, [1616] = { - [sym__expression] = STATE(3967), + [sym__expression] = STATE(3007), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(3801), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1617] = { + [sym__expression] = STATE(2965), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1618] = { + [sym__expression] = STATE(2966), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1619] = { + [sym__expression] = STATE(2968), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1620] = { + [sym__expression] = STATE(2969), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1621] = { + [sym__expression] = STATE(2970), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1622] = { + [sym__expression] = STATE(2700), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1623] = { + [sym__expression] = STATE(3862), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -205658,10 +207295,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -205705,2008 +207342,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1617] = { - [sym__expression] = STATE(2965), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1618] = { - [sym__expression] = STATE(2962), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1619] = { - [sym__expression] = STATE(2967), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1620] = { - [sym__expression] = STATE(2968), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1621] = { - [sym__expression] = STATE(2969), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1622] = { - [sym_template_argument_list] = STATE(1838), - [sym_identifier] = ACTIONS(3508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_RPAREN] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(3523), - [anon_sym_TILDE] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_extern] = ACTIONS(3508), - [anon_sym___attribute__] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), - [anon_sym___declspec] = ACTIONS(3508), - [anon_sym___based] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_register] = ACTIONS(3508), - [anon_sym_inline] = ACTIONS(3508), - [anon_sym_thread_local] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3508), - [anon_sym_restrict] = ACTIONS(3508), - [anon_sym__Atomic] = ACTIONS(3508), - [anon_sym_mutable] = ACTIONS(3508), - [anon_sym_constexpr] = ACTIONS(3508), - [anon_sym_constinit] = ACTIONS(3508), - [anon_sym_consteval] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3544), - [anon_sym_SLASH_EQ] = ACTIONS(3544), - [anon_sym_PERCENT_EQ] = ACTIONS(3544), - [anon_sym_PLUS_EQ] = ACTIONS(3544), - [anon_sym_DASH_EQ] = ACTIONS(3544), - [anon_sym_LT_LT_EQ] = ACTIONS(3544), - [anon_sym_GT_GT_EQ] = ACTIONS(3544), - [anon_sym_AMP_EQ] = ACTIONS(3544), - [anon_sym_CARET_EQ] = ACTIONS(3544), - [anon_sym_PIPE_EQ] = ACTIONS(3544), - [anon_sym_and_eq] = ACTIONS(3540), - [anon_sym_or_eq] = ACTIONS(3540), - [anon_sym_xor_eq] = ACTIONS(3540), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3518), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3518), - [anon_sym_not_eq] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3508), - [anon_sym_decltype] = ACTIONS(3508), - [anon_sym_virtual] = ACTIONS(3508), - [anon_sym_template] = ACTIONS(3508), - [anon_sym_operator] = ACTIONS(3508), - }, - [1623] = { - [sym__expression] = STATE(3968), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, [1624] = { - [sym__expression] = STATE(3752), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym__expression] = STATE(2701), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), }, [1625] = { - [sym__expression] = STATE(2700), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), + [sym__expression] = STATE(3575), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [1626] = { - [sym__expression] = STATE(2963), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1627] = { - [sym__expression] = STATE(2978), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1628] = { - [sym__expression] = STATE(2948), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1629] = { - [sym__expression] = STATE(3806), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1630] = { - [sym__expression] = STATE(3970), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1631] = { - [sym__expression] = STATE(2693), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), - }, - [1632] = { - [sym__expression] = STATE(2692), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), - [sym_string_literal] = STATE(1795), - [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), - [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), - [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), - [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1549), - [anon_sym_compl] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1563), - [sym_number_literal] = ACTIONS(1565), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_null] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_requires] = ACTIONS(1581), - [sym_this] = ACTIONS(1571), - [sym_nullptr] = ACTIONS(1571), - }, - [1633] = { - [sym__expression] = STATE(3768), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1634] = { - [sym__expression] = STATE(2934), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1635] = { - [sym__expression] = STATE(3771), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1636] = { - [sym__expression] = STATE(2949), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1637] = { - [sym__expression] = STATE(3984), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1638] = { - [sym__expression] = STATE(3813), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1639] = { - [sym__expression] = STATE(3772), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1640] = { - [sym__expression] = STATE(3774), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1641] = { - [sym__expression] = STATE(3950), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1642] = { - [sym__expression] = STATE(3681), + [sym__expression] = STATE(3860), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -207720,13 +207517,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -207785,108 +207582,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1643] = { - [sym_identifier] = ACTIONS(3750), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3752), - [anon_sym_COMMA] = ACTIONS(3752), - [anon_sym_RPAREN] = ACTIONS(3752), - [anon_sym_LPAREN2] = ACTIONS(3752), - [anon_sym_TILDE] = ACTIONS(3752), - [anon_sym_DASH] = ACTIONS(3750), - [anon_sym_PLUS] = ACTIONS(3750), - [anon_sym_STAR] = ACTIONS(3750), - [anon_sym_SLASH] = ACTIONS(3750), - [anon_sym_PERCENT] = ACTIONS(3750), - [anon_sym_PIPE_PIPE] = ACTIONS(3752), - [anon_sym_AMP_AMP] = ACTIONS(3752), - [anon_sym_PIPE] = ACTIONS(3750), - [anon_sym_CARET] = ACTIONS(3750), - [anon_sym_AMP] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3752), - [anon_sym_BANG_EQ] = ACTIONS(3752), - [anon_sym_GT] = ACTIONS(3750), - [anon_sym_GT_EQ] = ACTIONS(3752), - [anon_sym_LT_EQ] = ACTIONS(3750), - [anon_sym_LT] = ACTIONS(3750), - [anon_sym_LT_LT] = ACTIONS(3750), - [anon_sym_GT_GT] = ACTIONS(3750), - [anon_sym_SEMI] = ACTIONS(3752), - [anon_sym_extern] = ACTIONS(3750), - [anon_sym___attribute__] = ACTIONS(3750), - [anon_sym_COLON_COLON] = ACTIONS(3752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3752), - [anon_sym___declspec] = ACTIONS(3750), - [anon_sym___based] = ACTIONS(3750), - [anon_sym_LBRACE] = ACTIONS(3752), - [anon_sym_RBRACE] = ACTIONS(3752), - [anon_sym_LBRACK] = ACTIONS(3750), - [anon_sym_EQ] = ACTIONS(3750), - [anon_sym_static] = ACTIONS(3750), - [anon_sym_register] = ACTIONS(3750), - [anon_sym_inline] = ACTIONS(3750), - [anon_sym_thread_local] = ACTIONS(3750), - [anon_sym_const] = ACTIONS(3750), - [anon_sym_volatile] = ACTIONS(3750), - [anon_sym_restrict] = ACTIONS(3750), - [anon_sym__Atomic] = ACTIONS(3750), - [anon_sym_mutable] = ACTIONS(3750), - [anon_sym_constexpr] = ACTIONS(3750), - [anon_sym_constinit] = ACTIONS(3750), - [anon_sym_consteval] = ACTIONS(3750), - [anon_sym_QMARK] = ACTIONS(3752), - [anon_sym_STAR_EQ] = ACTIONS(3752), - [anon_sym_SLASH_EQ] = ACTIONS(3752), - [anon_sym_PERCENT_EQ] = ACTIONS(3752), - [anon_sym_PLUS_EQ] = ACTIONS(3752), - [anon_sym_DASH_EQ] = ACTIONS(3752), - [anon_sym_LT_LT_EQ] = ACTIONS(3752), - [anon_sym_GT_GT_EQ] = ACTIONS(3752), - [anon_sym_AMP_EQ] = ACTIONS(3752), - [anon_sym_CARET_EQ] = ACTIONS(3752), - [anon_sym_PIPE_EQ] = ACTIONS(3752), - [anon_sym_and_eq] = ACTIONS(3750), - [anon_sym_or_eq] = ACTIONS(3750), - [anon_sym_xor_eq] = ACTIONS(3750), - [anon_sym_LT_EQ_GT] = ACTIONS(3752), - [anon_sym_or] = ACTIONS(3750), - [anon_sym_and] = ACTIONS(3750), - [anon_sym_bitor] = ACTIONS(3750), - [anon_sym_xor] = ACTIONS(3750), - [anon_sym_bitand] = ACTIONS(3750), - [anon_sym_not_eq] = ACTIONS(3750), - [anon_sym_DASH_DASH] = ACTIONS(3752), - [anon_sym_PLUS_PLUS] = ACTIONS(3752), - [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_DASH_GT] = ACTIONS(3752), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3750), - [anon_sym_decltype] = ACTIONS(3750), - [anon_sym_virtual] = ACTIONS(3750), - [anon_sym_template] = ACTIONS(3750), - [anon_sym_operator] = ACTIONS(3750), - }, - [1644] = { - [sym__expression] = STATE(3500), + [1627] = { + [sym__expression] = STATE(3693), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3058), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -207898,10 +207615,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3058), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1628] = { + [sym__expression] = STATE(3859), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -207945,210 +207742,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1645] = { - [sym_identifier] = ACTIONS(3758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3760), - [anon_sym_COMMA] = ACTIONS(3760), - [anon_sym_RPAREN] = ACTIONS(3760), - [anon_sym_LPAREN2] = ACTIONS(3760), - [anon_sym_TILDE] = ACTIONS(3760), - [anon_sym_DASH] = ACTIONS(3758), - [anon_sym_PLUS] = ACTIONS(3758), - [anon_sym_STAR] = ACTIONS(3758), - [anon_sym_SLASH] = ACTIONS(3758), - [anon_sym_PERCENT] = ACTIONS(3758), - [anon_sym_PIPE_PIPE] = ACTIONS(3760), - [anon_sym_AMP_AMP] = ACTIONS(3760), - [anon_sym_PIPE] = ACTIONS(3758), - [anon_sym_CARET] = ACTIONS(3758), - [anon_sym_AMP] = ACTIONS(3758), - [anon_sym_EQ_EQ] = ACTIONS(3760), - [anon_sym_BANG_EQ] = ACTIONS(3760), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_GT_EQ] = ACTIONS(3760), - [anon_sym_LT_EQ] = ACTIONS(3758), - [anon_sym_LT] = ACTIONS(3758), - [anon_sym_LT_LT] = ACTIONS(3758), - [anon_sym_GT_GT] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3760), - [anon_sym_extern] = ACTIONS(3758), - [anon_sym___attribute__] = ACTIONS(3758), - [anon_sym_COLON_COLON] = ACTIONS(3760), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), - [anon_sym___declspec] = ACTIONS(3758), - [anon_sym___based] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3760), - [anon_sym_RBRACE] = ACTIONS(3760), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_EQ] = ACTIONS(3758), - [anon_sym_static] = ACTIONS(3758), - [anon_sym_register] = ACTIONS(3758), - [anon_sym_inline] = ACTIONS(3758), - [anon_sym_thread_local] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_constinit] = ACTIONS(3758), - [anon_sym_consteval] = ACTIONS(3758), - [anon_sym_QMARK] = ACTIONS(3760), - [anon_sym_STAR_EQ] = ACTIONS(3760), - [anon_sym_SLASH_EQ] = ACTIONS(3760), - [anon_sym_PERCENT_EQ] = ACTIONS(3760), - [anon_sym_PLUS_EQ] = ACTIONS(3760), - [anon_sym_DASH_EQ] = ACTIONS(3760), - [anon_sym_LT_LT_EQ] = ACTIONS(3760), - [anon_sym_GT_GT_EQ] = ACTIONS(3760), - [anon_sym_AMP_EQ] = ACTIONS(3760), - [anon_sym_CARET_EQ] = ACTIONS(3760), - [anon_sym_PIPE_EQ] = ACTIONS(3760), - [anon_sym_and_eq] = ACTIONS(3758), - [anon_sym_or_eq] = ACTIONS(3758), - [anon_sym_xor_eq] = ACTIONS(3758), - [anon_sym_LT_EQ_GT] = ACTIONS(3760), - [anon_sym_or] = ACTIONS(3758), - [anon_sym_and] = ACTIONS(3758), - [anon_sym_bitor] = ACTIONS(3758), - [anon_sym_xor] = ACTIONS(3758), - [anon_sym_bitand] = ACTIONS(3758), - [anon_sym_not_eq] = ACTIONS(3758), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_DOT] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3760), + [1629] = { + [sym__expression] = STATE(3776), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3758), - [anon_sym_decltype] = ACTIONS(3758), - [anon_sym_virtual] = ACTIONS(3758), - [anon_sym_template] = ACTIONS(3758), - [anon_sym_operator] = ACTIONS(3758), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), }, - [1646] = { - [sym_identifier] = ACTIONS(3762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), - [anon_sym_COMMA] = ACTIONS(3764), - [anon_sym_RPAREN] = ACTIONS(3764), - [anon_sym_LPAREN2] = ACTIONS(3764), - [anon_sym_TILDE] = ACTIONS(3764), - [anon_sym_DASH] = ACTIONS(3762), - [anon_sym_PLUS] = ACTIONS(3762), - [anon_sym_STAR] = ACTIONS(3762), - [anon_sym_SLASH] = ACTIONS(3762), - [anon_sym_PERCENT] = ACTIONS(3762), - [anon_sym_PIPE_PIPE] = ACTIONS(3764), - [anon_sym_AMP_AMP] = ACTIONS(3764), - [anon_sym_PIPE] = ACTIONS(3762), - [anon_sym_CARET] = ACTIONS(3762), - [anon_sym_AMP] = ACTIONS(3762), - [anon_sym_EQ_EQ] = ACTIONS(3764), - [anon_sym_BANG_EQ] = ACTIONS(3764), - [anon_sym_GT] = ACTIONS(3762), - [anon_sym_GT_EQ] = ACTIONS(3764), - [anon_sym_LT_EQ] = ACTIONS(3762), - [anon_sym_LT] = ACTIONS(3762), - [anon_sym_LT_LT] = ACTIONS(3762), - [anon_sym_GT_GT] = ACTIONS(3762), - [anon_sym_SEMI] = ACTIONS(3764), - [anon_sym_extern] = ACTIONS(3762), - [anon_sym___attribute__] = ACTIONS(3762), - [anon_sym_COLON_COLON] = ACTIONS(3764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3764), - [anon_sym___declspec] = ACTIONS(3762), - [anon_sym___based] = ACTIONS(3762), - [anon_sym_LBRACE] = ACTIONS(3764), - [anon_sym_RBRACE] = ACTIONS(3764), - [anon_sym_LBRACK] = ACTIONS(3762), - [anon_sym_EQ] = ACTIONS(3762), - [anon_sym_static] = ACTIONS(3762), - [anon_sym_register] = ACTIONS(3762), - [anon_sym_inline] = ACTIONS(3762), - [anon_sym_thread_local] = ACTIONS(3762), - [anon_sym_const] = ACTIONS(3762), - [anon_sym_volatile] = ACTIONS(3762), - [anon_sym_restrict] = ACTIONS(3762), - [anon_sym__Atomic] = ACTIONS(3762), - [anon_sym_mutable] = ACTIONS(3762), - [anon_sym_constexpr] = ACTIONS(3762), - [anon_sym_constinit] = ACTIONS(3762), - [anon_sym_consteval] = ACTIONS(3762), - [anon_sym_QMARK] = ACTIONS(3764), - [anon_sym_STAR_EQ] = ACTIONS(3764), - [anon_sym_SLASH_EQ] = ACTIONS(3764), - [anon_sym_PERCENT_EQ] = ACTIONS(3764), - [anon_sym_PLUS_EQ] = ACTIONS(3764), - [anon_sym_DASH_EQ] = ACTIONS(3764), - [anon_sym_LT_LT_EQ] = ACTIONS(3764), - [anon_sym_GT_GT_EQ] = ACTIONS(3764), - [anon_sym_AMP_EQ] = ACTIONS(3764), - [anon_sym_CARET_EQ] = ACTIONS(3764), - [anon_sym_PIPE_EQ] = ACTIONS(3764), - [anon_sym_and_eq] = ACTIONS(3762), - [anon_sym_or_eq] = ACTIONS(3762), - [anon_sym_xor_eq] = ACTIONS(3762), - [anon_sym_LT_EQ_GT] = ACTIONS(3764), - [anon_sym_or] = ACTIONS(3762), - [anon_sym_and] = ACTIONS(3762), - [anon_sym_bitor] = ACTIONS(3762), - [anon_sym_xor] = ACTIONS(3762), - [anon_sym_bitand] = ACTIONS(3762), - [anon_sym_not_eq] = ACTIONS(3762), - [anon_sym_DASH_DASH] = ACTIONS(3764), - [anon_sym_PLUS_PLUS] = ACTIONS(3764), - [anon_sym_DOT] = ACTIONS(3762), - [anon_sym_DASH_GT] = ACTIONS(3764), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3762), - [anon_sym_decltype] = ACTIONS(3762), - [anon_sym_virtual] = ACTIONS(3762), - [anon_sym_template] = ACTIONS(3762), - [anon_sym_operator] = ACTIONS(3762), - }, - [1647] = { - [sym__expression] = STATE(3081), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [1630] = { + [sym__expression] = STATE(3075), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN2] = ACTIONS(1705), [anon_sym_BANG] = ACTIONS(1709), [anon_sym_TILDE] = ACTIONS(1709), [anon_sym_DASH] = ACTIONS(1707), [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), [anon_sym_COLON_COLON] = ACTIONS(1713), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), @@ -208185,28 +207902,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, - [1648] = { - [sym__expression] = STATE(3578), + [1631] = { + [sym__expression] = STATE(2963), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1632] = { + [sym__expression] = STATE(3999), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3108), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -208218,25 +208015,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3108), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -208253,142 +208050,1422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), + [anon_sym_delete] = ACTIONS(3045), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1649] = { - [sym__expression] = STATE(3560), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1650] = { - [sym__expression] = STATE(3071), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [1633] = { + [sym__expression] = STATE(3073), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN2] = ACTIONS(1705), [anon_sym_BANG] = ACTIONS(1709), [anon_sym_TILDE] = ACTIONS(1709), [anon_sym_DASH] = ACTIONS(1707), [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1634] = { + [sym__expression] = STATE(3072), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1635] = { + [sym__expression] = STATE(3772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1636] = { + [sym__expression] = STATE(2628), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1637] = { + [sym__expression] = STATE(4048), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1638] = { + [sym__expression] = STATE(3910), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1639] = { + [sym__expression] = STATE(3850), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1640] = { + [sym__expression] = STATE(3826), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1641] = { + [sym__expression] = STATE(2681), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(3803), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1642] = { + [sym__expression] = STATE(3909), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1643] = { + [sym__expression] = STATE(3777), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1644] = { + [sym__expression] = STATE(3906), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1645] = { + [sym__expression] = STATE(3583), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(3572), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1646] = { + [sym__expression] = STATE(3069), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1647] = { + [sym__expression] = STATE(3905), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1648] = { + [sym__expression] = STATE(3692), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1649] = { + [sym__expression] = STATE(3691), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1650] = { + [sym__expression] = STATE(3086), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), [anon_sym_COLON_COLON] = ACTIONS(1713), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), @@ -208426,107 +209503,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1533), }, [1651] = { - [sym__expression] = STATE(3814), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), + [sym__expression] = STATE(2957), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), }, [1652] = { - [sym__expression] = STATE(3937), + [sym__expression] = STATE(4032), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -208538,25 +209615,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -208573,600 +209650,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1653] = { - [sym__expression] = STATE(2479), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1654] = { - [sym__expression] = STATE(2479), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(3791), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1655] = { - [sym__expression] = STATE(3072), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1656] = { - [sym_template_argument_list] = STATE(1838), - [sym_identifier] = ACTIONS(3508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(3523), - [anon_sym_TILDE] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_extern] = ACTIONS(3508), - [anon_sym___attribute__] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), - [anon_sym___declspec] = ACTIONS(3508), - [anon_sym___based] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_register] = ACTIONS(3508), - [anon_sym_inline] = ACTIONS(3508), - [anon_sym_thread_local] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3508), - [anon_sym_restrict] = ACTIONS(3508), - [anon_sym__Atomic] = ACTIONS(3508), - [anon_sym_mutable] = ACTIONS(3508), - [anon_sym_constexpr] = ACTIONS(3508), - [anon_sym_constinit] = ACTIONS(3508), - [anon_sym_consteval] = ACTIONS(3508), - [anon_sym_COLON] = ACTIONS(3542), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3544), - [anon_sym_SLASH_EQ] = ACTIONS(3544), - [anon_sym_PERCENT_EQ] = ACTIONS(3544), - [anon_sym_PLUS_EQ] = ACTIONS(3544), - [anon_sym_DASH_EQ] = ACTIONS(3544), - [anon_sym_LT_LT_EQ] = ACTIONS(3544), - [anon_sym_GT_GT_EQ] = ACTIONS(3544), - [anon_sym_AMP_EQ] = ACTIONS(3544), - [anon_sym_CARET_EQ] = ACTIONS(3544), - [anon_sym_PIPE_EQ] = ACTIONS(3544), - [anon_sym_and_eq] = ACTIONS(3540), - [anon_sym_or_eq] = ACTIONS(3540), - [anon_sym_xor_eq] = ACTIONS(3540), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3518), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3518), - [anon_sym_not_eq] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3508), - [anon_sym_decltype] = ACTIONS(3508), - [anon_sym_virtual] = ACTIONS(3508), - [anon_sym_template] = ACTIONS(3508), - [anon_sym_operator] = ACTIONS(3508), - }, - [1657] = { - [sym__expression] = STATE(3073), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1658] = { - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3795), - [anon_sym_TILDE] = ACTIONS(3795), - [anon_sym_DASH] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(3793), - [anon_sym_STAR] = ACTIONS(3793), - [anon_sym_SLASH] = ACTIONS(3793), - [anon_sym_PERCENT] = ACTIONS(3793), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3795), - [anon_sym_PIPE] = ACTIONS(3793), - [anon_sym_CARET] = ACTIONS(3793), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3793), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3793), - [anon_sym_LT] = ACTIONS(3793), - [anon_sym_LT_LT] = ACTIONS(3793), - [anon_sym_GT_GT] = ACTIONS(3793), - [anon_sym_SEMI] = ACTIONS(3795), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3795), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3795), - [anon_sym_RBRACE] = ACTIONS(3795), - [anon_sym_LBRACK] = ACTIONS(3793), - [anon_sym_EQ] = ACTIONS(3793), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3795), - [anon_sym_SLASH_EQ] = ACTIONS(3795), - [anon_sym_PERCENT_EQ] = ACTIONS(3795), - [anon_sym_PLUS_EQ] = ACTIONS(3795), - [anon_sym_DASH_EQ] = ACTIONS(3795), - [anon_sym_LT_LT_EQ] = ACTIONS(3795), - [anon_sym_GT_GT_EQ] = ACTIONS(3795), - [anon_sym_AMP_EQ] = ACTIONS(3795), - [anon_sym_CARET_EQ] = ACTIONS(3795), - [anon_sym_PIPE_EQ] = ACTIONS(3795), - [anon_sym_and_eq] = ACTIONS(3793), - [anon_sym_or_eq] = ACTIONS(3793), - [anon_sym_xor_eq] = ACTIONS(3793), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3793), - [anon_sym_and] = ACTIONS(3793), - [anon_sym_bitor] = ACTIONS(3793), - [anon_sym_xor] = ACTIONS(3793), - [anon_sym_bitand] = ACTIONS(3793), - [anon_sym_not_eq] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3793), - [anon_sym_DASH_GT] = ACTIONS(3795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), - }, - [1659] = { - [sym__expression] = STATE(3075), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1660] = { - [sym__expression] = STATE(3929), + [sym__expression] = STATE(3893), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3108), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -209178,10 +209695,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3108), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1654] = { + [sym__expression] = STATE(3958), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1655] = { + [sym__expression] = STATE(3676), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -209225,108 +209902,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, + [1656] = { + [sym__expression] = STATE(3698), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1657] = { + [sym__expression] = STATE(3977), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1658] = { + [sym__expression] = STATE(3892), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1659] = { + [sym__expression] = STATE(3885), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1660] = { + [sym__expression] = STATE(3882), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, [1661] = { - [sym_template_argument_list] = STATE(1838), - [sym_identifier] = ACTIONS(3508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(3523), - [anon_sym_TILDE] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_extern] = ACTIONS(3508), - [anon_sym___attribute__] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), - [anon_sym___declspec] = ACTIONS(3508), - [anon_sym___based] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_register] = ACTIONS(3508), - [anon_sym_inline] = ACTIONS(3508), - [anon_sym_thread_local] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3508), - [anon_sym_restrict] = ACTIONS(3508), - [anon_sym__Atomic] = ACTIONS(3508), - [anon_sym_mutable] = ACTIONS(3508), - [anon_sym_constexpr] = ACTIONS(3508), - [anon_sym_constinit] = ACTIONS(3508), - [anon_sym_consteval] = ACTIONS(3508), - [anon_sym_COLON] = ACTIONS(3797), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3544), - [anon_sym_SLASH_EQ] = ACTIONS(3544), - [anon_sym_PERCENT_EQ] = ACTIONS(3544), - [anon_sym_PLUS_EQ] = ACTIONS(3544), - [anon_sym_DASH_EQ] = ACTIONS(3544), - [anon_sym_LT_LT_EQ] = ACTIONS(3544), - [anon_sym_GT_GT_EQ] = ACTIONS(3544), - [anon_sym_AMP_EQ] = ACTIONS(3544), - [anon_sym_CARET_EQ] = ACTIONS(3544), - [anon_sym_PIPE_EQ] = ACTIONS(3544), - [anon_sym_and_eq] = ACTIONS(3540), - [anon_sym_or_eq] = ACTIONS(3540), - [anon_sym_xor_eq] = ACTIONS(3540), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3518), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3518), - [anon_sym_not_eq] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3508), - [anon_sym_decltype] = ACTIONS(3508), - [anon_sym_virtual] = ACTIONS(3508), - [anon_sym_template] = ACTIONS(3508), - [anon_sym_operator] = ACTIONS(3508), - }, - [1662] = { - [sym__expression] = STATE(3935), + [sym__expression] = STATE(3876), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(3108), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -209338,25 +210335,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(3108), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -209373,70 +210370,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(3045), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1662] = { + [sym__expression] = STATE(3931), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1663] = { - [sym__expression] = STATE(3076), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [sym__expression] = STATE(2474), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), [sym_number_literal] = ACTIONS(1527), [anon_sym_L_SQUOTE] = ACTIONS(1529), [anon_sym_u_SQUOTE] = ACTIONS(1529), @@ -209453,40 +210530,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1533), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), + [anon_sym_delete] = ACTIONS(1535), [anon_sym_R_DQUOTE] = ACTIONS(1537), [anon_sym_LR_DQUOTE] = ACTIONS(1537), [anon_sym_uR_DQUOTE] = ACTIONS(1537), [anon_sym_UR_DQUOTE] = ACTIONS(1537), [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), [anon_sym_requires] = ACTIONS(1543), [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, [1664] = { - [sym__expression] = STATE(3680), + [sym__expression] = STATE(3585), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -209498,25 +210575,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -209533,1494 +210610,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), + [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1665] = { - [sym__expression] = STATE(3677), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1666] = { - [sym__expression] = STATE(2482), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1667] = { - [sym__expression] = STATE(2490), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(3799), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1668] = { - [sym__expression] = STATE(3085), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1669] = { - [sym__expression] = STATE(2493), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1670] = { - [sym__expression] = STATE(3675), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1671] = { - [sym__expression] = STATE(3084), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1672] = { - [sym__expression] = STATE(3066), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(3801), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1673] = { - [sym__expression] = STATE(3444), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3803), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1674] = { - [sym__expression] = STATE(3923), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1675] = { - [sym__expression] = STATE(3060), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1676] = { - [sym__expression] = STATE(3496), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1677] = { - [sym__expression] = STATE(3888), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1678] = { - [sym_template_argument_list] = STATE(1828), - [sym_identifier] = ACTIONS(3508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3523), - [anon_sym_extern] = ACTIONS(3508), - [anon_sym___attribute__] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), - [anon_sym___declspec] = ACTIONS(3508), - [anon_sym___based] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3536), - [anon_sym_EQ] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_register] = ACTIONS(3508), - [anon_sym_inline] = ACTIONS(3508), - [anon_sym_thread_local] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3508), - [anon_sym_restrict] = ACTIONS(3508), - [anon_sym__Atomic] = ACTIONS(3508), - [anon_sym_mutable] = ACTIONS(3508), - [anon_sym_constexpr] = ACTIONS(3508), - [anon_sym_constinit] = ACTIONS(3508), - [anon_sym_consteval] = ACTIONS(3508), - [anon_sym_COLON] = ACTIONS(3787), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3544), - [anon_sym_SLASH_EQ] = ACTIONS(3544), - [anon_sym_PERCENT_EQ] = ACTIONS(3544), - [anon_sym_PLUS_EQ] = ACTIONS(3544), - [anon_sym_DASH_EQ] = ACTIONS(3544), - [anon_sym_LT_LT_EQ] = ACTIONS(3544), - [anon_sym_GT_GT_EQ] = ACTIONS(3544), - [anon_sym_AMP_EQ] = ACTIONS(3544), - [anon_sym_CARET_EQ] = ACTIONS(3544), - [anon_sym_PIPE_EQ] = ACTIONS(3544), - [anon_sym_and_eq] = ACTIONS(3540), - [anon_sym_or_eq] = ACTIONS(3540), - [anon_sym_xor_eq] = ACTIONS(3540), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3518), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3518), - [anon_sym_not_eq] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3508), - [anon_sym_decltype] = ACTIONS(3508), - [anon_sym_virtual] = ACTIONS(3508), - [anon_sym_template] = ACTIONS(3508), - [anon_sym_operator] = ACTIONS(3508), - }, - [1679] = { - [sym__expression] = STATE(2935), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), + [sym__expression] = STATE(2946), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), + [sym_qualified_identifier] = STATE(3059), [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), }, - [1680] = { - [sym__expression] = STATE(3785), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1681] = { - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3795), - [anon_sym_TILDE] = ACTIONS(3795), - [anon_sym_DASH] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(3793), - [anon_sym_STAR] = ACTIONS(3793), - [anon_sym_SLASH] = ACTIONS(3793), - [anon_sym_PERCENT] = ACTIONS(3793), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3795), - [anon_sym_PIPE] = ACTIONS(3793), - [anon_sym_CARET] = ACTIONS(3793), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3793), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3793), - [anon_sym_LT] = ACTIONS(3793), - [anon_sym_LT_LT] = ACTIONS(3793), - [anon_sym_GT_GT] = ACTIONS(3793), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3795), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3795), - [anon_sym_LBRACK] = ACTIONS(3793), - [anon_sym_EQ] = ACTIONS(3793), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3795), - [anon_sym_SLASH_EQ] = ACTIONS(3795), - [anon_sym_PERCENT_EQ] = ACTIONS(3795), - [anon_sym_PLUS_EQ] = ACTIONS(3795), - [anon_sym_DASH_EQ] = ACTIONS(3795), - [anon_sym_LT_LT_EQ] = ACTIONS(3795), - [anon_sym_GT_GT_EQ] = ACTIONS(3795), - [anon_sym_AMP_EQ] = ACTIONS(3795), - [anon_sym_CARET_EQ] = ACTIONS(3795), - [anon_sym_PIPE_EQ] = ACTIONS(3795), - [anon_sym_and_eq] = ACTIONS(3793), - [anon_sym_or_eq] = ACTIONS(3793), - [anon_sym_xor_eq] = ACTIONS(3793), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3793), - [anon_sym_and] = ACTIONS(3793), - [anon_sym_bitor] = ACTIONS(3793), - [anon_sym_xor] = ACTIONS(3793), - [anon_sym_bitand] = ACTIONS(3793), - [anon_sym_not_eq] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3793), - [anon_sym_DASH_GT] = ACTIONS(3793), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), - [anon_sym_DOT_STAR] = ACTIONS(3795), - [anon_sym_DASH_GT_STAR] = ACTIONS(3795), - }, - [1682] = { - [sym__expression] = STATE(3847), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1683] = { - [sym__expression] = STATE(2565), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [1666] = { + [sym__expression] = STATE(2495), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN2] = ACTIONS(1507), [anon_sym_BANG] = ACTIONS(1511), @@ -211065,188 +210782,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, - [1684] = { - [sym_template_argument_list] = STATE(1828), - [sym_identifier] = ACTIONS(3508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3523), - [anon_sym_extern] = ACTIONS(3508), - [anon_sym___attribute__] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), - [anon_sym___declspec] = ACTIONS(3508), - [anon_sym___based] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3536), - [anon_sym_EQ] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_register] = ACTIONS(3508), - [anon_sym_inline] = ACTIONS(3508), - [anon_sym_thread_local] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3508), - [anon_sym_restrict] = ACTIONS(3508), - [anon_sym__Atomic] = ACTIONS(3508), - [anon_sym_mutable] = ACTIONS(3508), - [anon_sym_constexpr] = ACTIONS(3508), - [anon_sym_constinit] = ACTIONS(3508), - [anon_sym_consteval] = ACTIONS(3508), - [anon_sym_COLON] = ACTIONS(3807), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3544), - [anon_sym_SLASH_EQ] = ACTIONS(3544), - [anon_sym_PERCENT_EQ] = ACTIONS(3544), - [anon_sym_PLUS_EQ] = ACTIONS(3544), - [anon_sym_DASH_EQ] = ACTIONS(3544), - [anon_sym_LT_LT_EQ] = ACTIONS(3544), - [anon_sym_GT_GT_EQ] = ACTIONS(3544), - [anon_sym_AMP_EQ] = ACTIONS(3544), - [anon_sym_CARET_EQ] = ACTIONS(3544), - [anon_sym_PIPE_EQ] = ACTIONS(3544), - [anon_sym_and_eq] = ACTIONS(3540), - [anon_sym_or_eq] = ACTIONS(3540), - [anon_sym_xor_eq] = ACTIONS(3540), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3518), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3518), - [anon_sym_not_eq] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3508), - [anon_sym_decltype] = ACTIONS(3508), - [anon_sym_virtual] = ACTIONS(3508), - [anon_sym_template] = ACTIONS(3508), - [anon_sym_operator] = ACTIONS(3508), - }, - [1685] = { - [sym__expression] = STATE(3776), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1686] = { - [sym__expression] = STATE(3673), + [1667] = { + [sym__expression] = STATE(3875), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), + [sym_pointer_expression] = STATE(3108), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -211258,25 +210815,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), + [sym_qualified_identifier] = STATE(3108), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -211293,280 +210850,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), + [anon_sym_delete] = ACTIONS(3045), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1687] = { - [sym__expression] = STATE(3069), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1688] = { - [sym__expression] = STATE(3770), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), + [1668] = { + [sym__expression] = STATE(3690), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), [sym_subscript_expression] = STATE(3016), [sym_call_expression] = STATE(3016), [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), + [sym_compound_literal_expression] = STATE(3903), [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), [sym_string_literal] = STATE(3017), [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4913), [sym_qualified_identifier] = STATE(3016), [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), + [sym_user_defined_literal] = STATE(3903), [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), }, - [1689] = { - [sym__expression] = STATE(2994), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1690] = { - [sym__expression] = STATE(3940), + [1669] = { + [sym__expression] = STATE(4025), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -211578,10 +210975,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -211625,8 +211022,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1691] = { - [sym__expression] = STATE(3982), + [1670] = { + [sym__expression] = STATE(4018), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1671] = { + [sym__expression] = STATE(3731), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -211640,13 +211117,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -211705,122 +211182,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1692] = { - [sym__expression] = STATE(3661), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), + [1672] = { + [sym__expression] = STATE(3664), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3807), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1673] = { + [sym__expression] = STATE(2954), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1674] = { + [sym__expression] = STATE(3979), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1675] = { + [sym__expression] = STATE(3781), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), [sym_subscript_expression] = STATE(3016), [sym_call_expression] = STATE(3016), [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), + [sym_compound_literal_expression] = STATE(3903), [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), [sym_string_literal] = STATE(3017), [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4913), [sym_qualified_identifier] = STATE(3016), [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), + [sym_user_defined_literal] = STATE(3903), [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), [anon_sym_LBRACK] = ACTIONS(3809), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), }, - [1693] = { - [sym__expression] = STATE(2543), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [1676] = { + [sym__expression] = STATE(3093), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1677] = { + [sym__expression] = STATE(2575), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN2] = ACTIONS(1507), [anon_sym_BANG] = ACTIONS(1511), @@ -211865,3082 +211662,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, - [1694] = { - [sym__expression] = STATE(3672), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1695] = { - [sym__expression] = STATE(3496), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1696] = { - [sym__expression] = STATE(3549), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3811), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1697] = { - [sym__expression] = STATE(3671), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1698] = { - [sym__expression] = STATE(3658), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(3813), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1699] = { - [sym__expression] = STATE(3005), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1700] = { - [sym__expression] = STATE(3797), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1701] = { - [sym__expression] = STATE(3965), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1702] = { - [sym__expression] = STATE(3779), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(3815), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1703] = { - [sym_identifier] = ACTIONS(3744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3746), - [anon_sym_COMMA] = ACTIONS(3746), - [anon_sym_RPAREN] = ACTIONS(3746), - [anon_sym_LPAREN2] = ACTIONS(3746), - [anon_sym_TILDE] = ACTIONS(3746), - [anon_sym_DASH] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(3744), - [anon_sym_STAR] = ACTIONS(3744), - [anon_sym_SLASH] = ACTIONS(3744), - [anon_sym_PERCENT] = ACTIONS(3744), - [anon_sym_PIPE_PIPE] = ACTIONS(3746), - [anon_sym_AMP_AMP] = ACTIONS(3746), - [anon_sym_PIPE] = ACTIONS(3744), - [anon_sym_CARET] = ACTIONS(3744), - [anon_sym_AMP] = ACTIONS(3744), - [anon_sym_EQ_EQ] = ACTIONS(3746), - [anon_sym_BANG_EQ] = ACTIONS(3746), - [anon_sym_GT] = ACTIONS(3744), - [anon_sym_GT_EQ] = ACTIONS(3746), - [anon_sym_LT_EQ] = ACTIONS(3744), - [anon_sym_LT] = ACTIONS(3744), - [anon_sym_LT_LT] = ACTIONS(3744), - [anon_sym_GT_GT] = ACTIONS(3744), - [anon_sym_extern] = ACTIONS(3744), - [anon_sym___attribute__] = ACTIONS(3744), - [anon_sym_COLON_COLON] = ACTIONS(3746), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3746), - [anon_sym___declspec] = ACTIONS(3744), - [anon_sym___based] = ACTIONS(3744), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_LBRACK] = ACTIONS(3744), - [anon_sym_EQ] = ACTIONS(3744), - [anon_sym_static] = ACTIONS(3744), - [anon_sym_register] = ACTIONS(3744), - [anon_sym_inline] = ACTIONS(3744), - [anon_sym_thread_local] = ACTIONS(3744), - [anon_sym_const] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3744), - [anon_sym_restrict] = ACTIONS(3744), - [anon_sym__Atomic] = ACTIONS(3744), - [anon_sym_mutable] = ACTIONS(3744), - [anon_sym_constexpr] = ACTIONS(3744), - [anon_sym_constinit] = ACTIONS(3744), - [anon_sym_consteval] = ACTIONS(3744), - [anon_sym_QMARK] = ACTIONS(3746), - [anon_sym_STAR_EQ] = ACTIONS(3746), - [anon_sym_SLASH_EQ] = ACTIONS(3746), - [anon_sym_PERCENT_EQ] = ACTIONS(3746), - [anon_sym_PLUS_EQ] = ACTIONS(3746), - [anon_sym_DASH_EQ] = ACTIONS(3746), - [anon_sym_LT_LT_EQ] = ACTIONS(3746), - [anon_sym_GT_GT_EQ] = ACTIONS(3746), - [anon_sym_AMP_EQ] = ACTIONS(3746), - [anon_sym_CARET_EQ] = ACTIONS(3746), - [anon_sym_PIPE_EQ] = ACTIONS(3746), - [anon_sym_and_eq] = ACTIONS(3744), - [anon_sym_or_eq] = ACTIONS(3744), - [anon_sym_xor_eq] = ACTIONS(3744), - [anon_sym_LT_EQ_GT] = ACTIONS(3746), - [anon_sym_or] = ACTIONS(3744), - [anon_sym_and] = ACTIONS(3744), - [anon_sym_bitor] = ACTIONS(3744), - [anon_sym_xor] = ACTIONS(3744), - [anon_sym_bitand] = ACTIONS(3744), - [anon_sym_not_eq] = ACTIONS(3744), - [anon_sym_DASH_DASH] = ACTIONS(3746), - [anon_sym_PLUS_PLUS] = ACTIONS(3746), - [anon_sym_DOT] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3744), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3744), - [anon_sym_decltype] = ACTIONS(3744), - [anon_sym_virtual] = ACTIONS(3744), - [anon_sym_template] = ACTIONS(3744), - [anon_sym_operator] = ACTIONS(3744), - [anon_sym_DOT_STAR] = ACTIONS(3746), - [anon_sym_DASH_GT_STAR] = ACTIONS(3746), - }, - [1704] = { - [sym__expression] = STATE(3645), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1705] = { - [sym__expression] = STATE(3648), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(3817), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1706] = { - [sym__expression] = STATE(3062), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), + [1678] = { + [sym__expression] = STATE(2506), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), + [sym_qualified_identifier] = STATE(2512), [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1707] = { - [sym__expression] = STATE(3449), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1708] = { - [sym__expression] = STATE(3985), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1709] = { - [sym__expression] = STATE(3956), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1710] = { - [sym__expression] = STATE(3969), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3819), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1711] = { - [sym_template_argument_list] = STATE(1752), - [sym_identifier] = ACTIONS(3679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_RPAREN] = ACTIONS(3691), - [anon_sym_LPAREN2] = ACTIONS(3681), - [anon_sym_TILDE] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3686), - [anon_sym_STAR] = ACTIONS(3688), - [anon_sym_SLASH] = ACTIONS(3686), - [anon_sym_PERCENT] = ACTIONS(3686), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT] = ACTIONS(3686), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3784), - [anon_sym_LT_LT] = ACTIONS(3686), - [anon_sym_GT_GT] = ACTIONS(3686), - [anon_sym_SEMI] = ACTIONS(3691), - [anon_sym_extern] = ACTIONS(3679), - [anon_sym___attribute__] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3684), - [anon_sym___declspec] = ACTIONS(3679), - [anon_sym___based] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_EQ] = ACTIONS(3686), - [anon_sym_static] = ACTIONS(3679), - [anon_sym_register] = ACTIONS(3679), - [anon_sym_inline] = ACTIONS(3679), - [anon_sym_thread_local] = ACTIONS(3679), - [anon_sym_const] = ACTIONS(3679), - [anon_sym_volatile] = ACTIONS(3679), - [anon_sym_restrict] = ACTIONS(3679), - [anon_sym__Atomic] = ACTIONS(3679), - [anon_sym_mutable] = ACTIONS(3679), - [anon_sym_constexpr] = ACTIONS(3679), - [anon_sym_constinit] = ACTIONS(3679), - [anon_sym_consteval] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3691), - [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(3686), - [anon_sym_or_eq] = ACTIONS(3686), - [anon_sym_xor_eq] = ACTIONS(3686), - [anon_sym_LT_EQ_GT] = ACTIONS(3691), - [anon_sym_or] = ACTIONS(3686), - [anon_sym_and] = ACTIONS(3686), - [anon_sym_bitor] = ACTIONS(3686), - [anon_sym_xor] = ACTIONS(3686), - [anon_sym_bitand] = ACTIONS(3686), - [anon_sym_not_eq] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_DASH_GT] = ACTIONS(3691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3679), - [anon_sym_decltype] = ACTIONS(3679), - [anon_sym_virtual] = ACTIONS(3679), - [anon_sym_template] = ACTIONS(3679), - [anon_sym_operator] = ACTIONS(3679), - }, - [1712] = { - [sym__expression] = STATE(3777), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1713] = { - [sym__expression] = STATE(3922), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1714] = { - [sym__expression] = STATE(2975), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(3821), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1715] = { - [sym_identifier] = ACTIONS(3740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3742), - [anon_sym_COMMA] = ACTIONS(3742), - [anon_sym_RPAREN] = ACTIONS(3742), - [anon_sym_LPAREN2] = ACTIONS(3742), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3740), - [anon_sym_PLUS] = ACTIONS(3740), - [anon_sym_STAR] = ACTIONS(3740), - [anon_sym_SLASH] = ACTIONS(3740), - [anon_sym_PERCENT] = ACTIONS(3740), - [anon_sym_PIPE_PIPE] = ACTIONS(3742), - [anon_sym_AMP_AMP] = ACTIONS(3742), - [anon_sym_PIPE] = ACTIONS(3740), - [anon_sym_CARET] = ACTIONS(3740), - [anon_sym_AMP] = ACTIONS(3740), - [anon_sym_EQ_EQ] = ACTIONS(3742), - [anon_sym_BANG_EQ] = ACTIONS(3742), - [anon_sym_GT] = ACTIONS(3740), - [anon_sym_GT_EQ] = ACTIONS(3742), - [anon_sym_LT_EQ] = ACTIONS(3740), - [anon_sym_LT] = ACTIONS(3740), - [anon_sym_LT_LT] = ACTIONS(3740), - [anon_sym_GT_GT] = ACTIONS(3740), - [anon_sym_extern] = ACTIONS(3740), - [anon_sym___attribute__] = ACTIONS(3740), - [anon_sym_COLON_COLON] = ACTIONS(3742), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3742), - [anon_sym___declspec] = ACTIONS(3740), - [anon_sym___based] = ACTIONS(3740), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3740), - [anon_sym_EQ] = ACTIONS(3740), - [anon_sym_static] = ACTIONS(3740), - [anon_sym_register] = ACTIONS(3740), - [anon_sym_inline] = ACTIONS(3740), - [anon_sym_thread_local] = ACTIONS(3740), - [anon_sym_const] = ACTIONS(3740), - [anon_sym_volatile] = ACTIONS(3740), - [anon_sym_restrict] = ACTIONS(3740), - [anon_sym__Atomic] = ACTIONS(3740), - [anon_sym_mutable] = ACTIONS(3740), - [anon_sym_constexpr] = ACTIONS(3740), - [anon_sym_constinit] = ACTIONS(3740), - [anon_sym_consteval] = ACTIONS(3740), - [anon_sym_QMARK] = ACTIONS(3742), - [anon_sym_STAR_EQ] = ACTIONS(3742), - [anon_sym_SLASH_EQ] = ACTIONS(3742), - [anon_sym_PERCENT_EQ] = ACTIONS(3742), - [anon_sym_PLUS_EQ] = ACTIONS(3742), - [anon_sym_DASH_EQ] = ACTIONS(3742), - [anon_sym_LT_LT_EQ] = ACTIONS(3742), - [anon_sym_GT_GT_EQ] = ACTIONS(3742), - [anon_sym_AMP_EQ] = ACTIONS(3742), - [anon_sym_CARET_EQ] = ACTIONS(3742), - [anon_sym_PIPE_EQ] = ACTIONS(3742), - [anon_sym_and_eq] = ACTIONS(3740), - [anon_sym_or_eq] = ACTIONS(3740), - [anon_sym_xor_eq] = ACTIONS(3740), - [anon_sym_LT_EQ_GT] = ACTIONS(3742), - [anon_sym_or] = ACTIONS(3740), - [anon_sym_and] = ACTIONS(3740), - [anon_sym_bitor] = ACTIONS(3740), - [anon_sym_xor] = ACTIONS(3740), - [anon_sym_bitand] = ACTIONS(3740), - [anon_sym_not_eq] = ACTIONS(3740), - [anon_sym_DASH_DASH] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3742), - [anon_sym_DOT] = ACTIONS(3740), - [anon_sym_DASH_GT] = ACTIONS(3740), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3740), - [anon_sym_decltype] = ACTIONS(3740), - [anon_sym_virtual] = ACTIONS(3740), - [anon_sym_template] = ACTIONS(3740), - [anon_sym_operator] = ACTIONS(3740), - [anon_sym_DOT_STAR] = ACTIONS(3742), - [anon_sym_DASH_GT_STAR] = ACTIONS(3742), - }, - [1716] = { - [sym_identifier] = ACTIONS(3736), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3738), - [anon_sym_COMMA] = ACTIONS(3738), - [anon_sym_RPAREN] = ACTIONS(3738), - [anon_sym_LPAREN2] = ACTIONS(3738), - [anon_sym_TILDE] = ACTIONS(3738), - [anon_sym_DASH] = ACTIONS(3736), - [anon_sym_PLUS] = ACTIONS(3736), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3736), - [anon_sym_PERCENT] = ACTIONS(3736), - [anon_sym_PIPE_PIPE] = ACTIONS(3738), - [anon_sym_AMP_AMP] = ACTIONS(3738), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_CARET] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_EQ_EQ] = ACTIONS(3738), - [anon_sym_BANG_EQ] = ACTIONS(3738), - [anon_sym_GT] = ACTIONS(3736), - [anon_sym_GT_EQ] = ACTIONS(3738), - [anon_sym_LT_EQ] = ACTIONS(3736), - [anon_sym_LT] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3736), - [anon_sym_GT_GT] = ACTIONS(3736), - [anon_sym_extern] = ACTIONS(3736), - [anon_sym___attribute__] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3738), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3738), - [anon_sym___declspec] = ACTIONS(3736), - [anon_sym___based] = ACTIONS(3736), - [anon_sym_LBRACE] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3736), - [anon_sym_EQ] = ACTIONS(3736), - [anon_sym_static] = ACTIONS(3736), - [anon_sym_register] = ACTIONS(3736), - [anon_sym_inline] = ACTIONS(3736), - [anon_sym_thread_local] = ACTIONS(3736), - [anon_sym_const] = ACTIONS(3736), - [anon_sym_volatile] = ACTIONS(3736), - [anon_sym_restrict] = ACTIONS(3736), - [anon_sym__Atomic] = ACTIONS(3736), - [anon_sym_mutable] = ACTIONS(3736), - [anon_sym_constexpr] = ACTIONS(3736), - [anon_sym_constinit] = ACTIONS(3736), - [anon_sym_consteval] = ACTIONS(3736), - [anon_sym_QMARK] = ACTIONS(3738), - [anon_sym_STAR_EQ] = ACTIONS(3738), - [anon_sym_SLASH_EQ] = ACTIONS(3738), - [anon_sym_PERCENT_EQ] = ACTIONS(3738), - [anon_sym_PLUS_EQ] = ACTIONS(3738), - [anon_sym_DASH_EQ] = ACTIONS(3738), - [anon_sym_LT_LT_EQ] = ACTIONS(3738), - [anon_sym_GT_GT_EQ] = ACTIONS(3738), - [anon_sym_AMP_EQ] = ACTIONS(3738), - [anon_sym_CARET_EQ] = ACTIONS(3738), - [anon_sym_PIPE_EQ] = ACTIONS(3738), - [anon_sym_and_eq] = ACTIONS(3736), - [anon_sym_or_eq] = ACTIONS(3736), - [anon_sym_xor_eq] = ACTIONS(3736), - [anon_sym_LT_EQ_GT] = ACTIONS(3738), - [anon_sym_or] = ACTIONS(3736), - [anon_sym_and] = ACTIONS(3736), - [anon_sym_bitor] = ACTIONS(3736), - [anon_sym_xor] = ACTIONS(3736), - [anon_sym_bitand] = ACTIONS(3736), - [anon_sym_not_eq] = ACTIONS(3736), - [anon_sym_DASH_DASH] = ACTIONS(3738), - [anon_sym_PLUS_PLUS] = ACTIONS(3738), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_DASH_GT] = ACTIONS(3736), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3736), - [anon_sym_decltype] = ACTIONS(3736), - [anon_sym_virtual] = ACTIONS(3736), - [anon_sym_template] = ACTIONS(3736), - [anon_sym_operator] = ACTIONS(3736), - [anon_sym_DOT_STAR] = ACTIONS(3738), - [anon_sym_DASH_GT_STAR] = ACTIONS(3738), - }, - [1717] = { - [sym__expression] = STATE(3942), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1718] = { - [sym__expression] = STATE(3444), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1719] = { - [sym__expression] = STATE(3886), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1720] = { - [sym__expression] = STATE(3832), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1721] = { - [sym__expression] = STATE(3556), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1722] = { - [sym__expression] = STATE(3964), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1723] = { - [sym__expression] = STATE(3760), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1724] = { - [sym__expression] = STATE(3805), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1725] = { - [sym__expression] = STATE(3086), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_compl] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1726] = { - [sym__expression] = STATE(3955), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1727] = { - [sym__expression] = STATE(3870), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1728] = { - [sym_template_argument_list] = STATE(1838), - [sym_identifier] = ACTIONS(3508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(3523), - [anon_sym_TILDE] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_extern] = ACTIONS(3508), - [anon_sym___attribute__] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), - [anon_sym___declspec] = ACTIONS(3508), - [anon_sym___based] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_register] = ACTIONS(3508), - [anon_sym_inline] = ACTIONS(3508), - [anon_sym_thread_local] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3508), - [anon_sym_restrict] = ACTIONS(3508), - [anon_sym__Atomic] = ACTIONS(3508), - [anon_sym_mutable] = ACTIONS(3508), - [anon_sym_constexpr] = ACTIONS(3508), - [anon_sym_constinit] = ACTIONS(3508), - [anon_sym_consteval] = ACTIONS(3508), - [anon_sym_COLON] = ACTIONS(3807), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3544), - [anon_sym_SLASH_EQ] = ACTIONS(3544), - [anon_sym_PERCENT_EQ] = ACTIONS(3544), - [anon_sym_PLUS_EQ] = ACTIONS(3544), - [anon_sym_DASH_EQ] = ACTIONS(3544), - [anon_sym_LT_LT_EQ] = ACTIONS(3544), - [anon_sym_GT_GT_EQ] = ACTIONS(3544), - [anon_sym_AMP_EQ] = ACTIONS(3544), - [anon_sym_CARET_EQ] = ACTIONS(3544), - [anon_sym_PIPE_EQ] = ACTIONS(3544), - [anon_sym_and_eq] = ACTIONS(3540), - [anon_sym_or_eq] = ACTIONS(3540), - [anon_sym_xor_eq] = ACTIONS(3540), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3518), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3518), - [anon_sym_not_eq] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3508), - [anon_sym_decltype] = ACTIONS(3508), - [anon_sym_virtual] = ACTIONS(3508), - [anon_sym_template] = ACTIONS(3508), - [anon_sym_operator] = ACTIONS(3508), - }, - [1729] = { - [sym__expression] = STATE(3894), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(139), - [anon_sym_new] = ACTIONS(141), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1730] = { - [sym__expression] = STATE(3815), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1731] = { - [sym__expression] = STATE(2960), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1732] = { - [sym__expression] = STATE(2536), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), + [sym_user_defined_literal] = STATE(2513), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN2] = ACTIONS(1507), [anon_sym_BANG] = ACTIONS(1511), @@ -214985,88 +211742,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1533), [sym_nullptr] = ACTIONS(1533), }, - [1733] = { - [sym__expression] = STATE(2926), - [sym_conditional_expression] = STATE(3068), - [sym_assignment_expression] = STATE(3068), - [sym_pointer_expression] = STATE(3061), - [sym_unary_expression] = STATE(3068), - [sym_binary_expression] = STATE(3068), - [sym_update_expression] = STATE(3068), - [sym_cast_expression] = STATE(3068), - [sym_sizeof_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3068), - [sym_parenthesized_expression] = STATE(3061), - [sym_char_literal] = STATE(2931), - [sym_concatenated_string] = STATE(2931), - [sym_string_literal] = STATE(1820), - [sym__class_name] = STATE(6457), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3068), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(3068), - [sym_new_expression] = STATE(3068), - [sym_delete_expression] = STATE(3068), - [sym_requires_clause] = STATE(3068), - [sym_requires_expression] = STATE(3068), - [sym_lambda_expression] = STATE(3068), - [sym_lambda_capture_specifier] = STATE(4763), - [sym_fold_expression] = STATE(3068), - [sym_parameter_pack_expansion] = STATE(3068), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3061), - [sym_qualified_type_identifier] = STATE(6457), - [sym_user_defined_literal] = STATE(3068), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(3823), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_compl] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1681), - [anon_sym_u_DQUOTE] = ACTIONS(1681), - [anon_sym_U_DQUOTE] = ACTIONS(1681), - [anon_sym_u8_DQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1687), - [anon_sym_LR_DQUOTE] = ACTIONS(1687), - [anon_sym_uR_DQUOTE] = ACTIONS(1687), - [anon_sym_UR_DQUOTE] = ACTIONS(1687), - [anon_sym_u8R_DQUOTE] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_requires] = ACTIONS(1693), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - }, - [1734] = { - [sym__expression] = STATE(3676), + [1679] = { + [sym__expression] = STATE(3703), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), [sym_pointer_expression] = STATE(3058), @@ -215080,13 +211757,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(3058), [sym_compound_literal_expression] = STATE(3521), [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -215145,108 +211822,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1735] = { - [sym__expression] = STATE(3050), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1736] = { - [sym__expression] = STATE(3449), + [1680] = { + [sym__expression] = STATE(3734), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3058), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -215258,170 +211855,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3058), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3005), - [anon_sym_R_DQUOTE] = ACTIONS(137), - [anon_sym_LR_DQUOTE] = ACTIONS(137), - [anon_sym_uR_DQUOTE] = ACTIONS(137), - [anon_sym_UR_DQUOTE] = ACTIONS(137), - [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3009), - [anon_sym_requires] = ACTIONS(143), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - }, - [1737] = { - [sym__expression] = STATE(3049), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1738] = { - [sym__expression] = STATE(3898), - [sym_conditional_expression] = STATE(3521), - [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), - [sym_unary_expression] = STATE(3521), - [sym_binary_expression] = STATE(3521), - [sym_update_expression] = STATE(3521), - [sym_cast_expression] = STATE(3521), - [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), - [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), - [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), - [sym_co_await_expression] = STATE(3521), - [sym_new_expression] = STATE(3521), - [sym_delete_expression] = STATE(3521), - [sym_requires_clause] = STATE(3521), - [sym_requires_expression] = STATE(3521), - [sym_lambda_expression] = STATE(3521), - [sym_lambda_capture_specifier] = STATE(4775), - [sym_fold_expression] = STATE(3521), - [sym_parameter_pack_expansion] = STATE(3521), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), - [sym_qualified_type_identifier] = STATE(6367), - [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -215465,122 +211902,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, - [1739] = { - [sym__expression] = STATE(2540), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1740] = { + [1681] = { [sym__expression] = STATE(2669), - [sym_conditional_expression] = STATE(2709), - [sym_assignment_expression] = STATE(2709), - [sym_pointer_expression] = STATE(2706), - [sym_unary_expression] = STATE(2709), - [sym_binary_expression] = STATE(2709), - [sym_update_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_sizeof_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2706), - [sym_call_expression] = STATE(2706), - [sym_field_expression] = STATE(2706), - [sym_compound_literal_expression] = STATE(2709), - [sym_parenthesized_expression] = STATE(2706), - [sym_char_literal] = STATE(2583), - [sym_concatenated_string] = STATE(2583), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), [sym_string_literal] = STATE(1795), [sym__class_name] = STATE(6425), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2709), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), [sym_raw_string_literal] = STATE(1795), - [sym_co_await_expression] = STATE(2709), - [sym_new_expression] = STATE(2709), - [sym_delete_expression] = STATE(2709), - [sym_requires_clause] = STATE(2709), - [sym_requires_expression] = STATE(2709), - [sym_lambda_expression] = STATE(2709), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), [sym_lambda_capture_specifier] = STATE(4777), - [sym_fold_expression] = STATE(2709), - [sym_parameter_pack_expansion] = STATE(2709), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2706), + [sym_qualified_identifier] = STATE(2916), [sym_qualified_type_identifier] = STATE(6425), - [sym_user_defined_literal] = STATE(2709), + [sym_user_defined_literal] = STATE(2708), [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(1547), [anon_sym_BANG] = ACTIONS(1551), @@ -215625,428 +211982,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1571), [sym_nullptr] = ACTIONS(1571), }, - [1741] = { - [sym__expression] = STATE(2542), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1742] = { - [sym__expression] = STATE(2544), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1743] = { - [sym__expression] = STATE(2545), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1744] = { - [sym__expression] = STATE(3703), - [sym_conditional_expression] = STATE(3901), - [sym_assignment_expression] = STATE(3901), - [sym_pointer_expression] = STATE(3016), - [sym_unary_expression] = STATE(3901), - [sym_binary_expression] = STATE(3901), - [sym_update_expression] = STATE(3901), - [sym_cast_expression] = STATE(3901), - [sym_sizeof_expression] = STATE(3901), - [sym_subscript_expression] = STATE(3016), - [sym_call_expression] = STATE(3016), - [sym_field_expression] = STATE(3016), - [sym_compound_literal_expression] = STATE(3901), - [sym_parenthesized_expression] = STATE(3016), - [sym_char_literal] = STATE(3783), - [sym_concatenated_string] = STATE(3783), - [sym_string_literal] = STATE(3017), - [sym__class_name] = STATE(6582), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3901), - [sym_raw_string_literal] = STATE(3017), - [sym_co_await_expression] = STATE(3901), - [sym_new_expression] = STATE(3901), - [sym_delete_expression] = STATE(3901), - [sym_requires_clause] = STATE(3901), - [sym_requires_expression] = STATE(3901), - [sym_lambda_expression] = STATE(3901), - [sym_lambda_capture_specifier] = STATE(4769), - [sym_fold_expression] = STATE(3901), - [sym_parameter_pack_expansion] = STATE(3901), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4913), - [sym_qualified_identifier] = STATE(3016), - [sym_qualified_type_identifier] = STATE(6582), - [sym_user_defined_literal] = STATE(3901), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_compl] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2435), - [sym_number_literal] = ACTIONS(2437), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2441), - [anon_sym_u_DQUOTE] = ACTIONS(2441), - [anon_sym_U_DQUOTE] = ACTIONS(2441), - [anon_sym_u8_DQUOTE] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_R_DQUOTE] = ACTIONS(2455), - [anon_sym_LR_DQUOTE] = ACTIONS(2455), - [anon_sym_uR_DQUOTE] = ACTIONS(2455), - [anon_sym_UR_DQUOTE] = ACTIONS(2455), - [anon_sym_u8R_DQUOTE] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2461), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - }, - [1745] = { - [sym__expression] = STATE(2546), - [sym_conditional_expression] = STATE(2502), - [sym_assignment_expression] = STATE(2502), - [sym_pointer_expression] = STATE(2496), - [sym_unary_expression] = STATE(2502), - [sym_binary_expression] = STATE(2502), - [sym_update_expression] = STATE(2502), - [sym_cast_expression] = STATE(2502), - [sym_sizeof_expression] = STATE(2502), - [sym_subscript_expression] = STATE(2496), - [sym_call_expression] = STATE(2496), - [sym_field_expression] = STATE(2496), - [sym_compound_literal_expression] = STATE(2502), - [sym_parenthesized_expression] = STATE(2496), - [sym_char_literal] = STATE(2358), - [sym_concatenated_string] = STATE(2358), - [sym_string_literal] = STATE(1780), - [sym__class_name] = STATE(6210), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(2502), - [sym_raw_string_literal] = STATE(1780), - [sym_co_await_expression] = STATE(2502), - [sym_new_expression] = STATE(2502), - [sym_delete_expression] = STATE(2502), - [sym_requires_clause] = STATE(2502), - [sym_requires_expression] = STATE(2502), - [sym_lambda_expression] = STATE(2502), - [sym_lambda_capture_specifier] = STATE(4764), - [sym_fold_expression] = STATE(2502), - [sym_parameter_pack_expansion] = STATE(2502), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2496), - [sym_qualified_type_identifier] = STATE(6210), - [sym_user_defined_literal] = STATE(2502), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(1509), - [anon_sym_compl] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1529), - [anon_sym_u_SQUOTE] = ACTIONS(1529), - [anon_sym_U_SQUOTE] = ACTIONS(1529), - [anon_sym_u8_SQUOTE] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1535), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1541), - [anon_sym_requires] = ACTIONS(1543), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - }, - [1746] = { - [sym__expression] = STATE(3933), + [1682] = { + [sym__expression] = STATE(3824), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(2766), + [sym_pointer_expression] = STATE(3108), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(2766), - [sym_call_expression] = STATE(2766), - [sym_field_expression] = STATE(2766), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(2766), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -216058,10 +212015,5130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(2766), + [sym_qualified_identifier] = STATE(3108), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3811), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1683] = { + [sym__expression] = STATE(4015), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1684] = { + [sym__expression] = STATE(3004), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1685] = { + [sym__expression] = STATE(4045), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1686] = { + [sym__expression] = STATE(3805), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1687] = { + [sym__expression] = STATE(3785), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1688] = { + [sym_template_argument_list] = STATE(1817), + [sym_identifier] = ACTIONS(3450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3452), + [anon_sym_COMMA] = ACTIONS(3452), + [anon_sym_RPAREN] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym___attribute__] = ACTIONS(3450), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), + [anon_sym___declspec] = ACTIONS(3450), + [anon_sym___based] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_EQ] = ACTIONS(3450), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_register] = ACTIONS(3450), + [anon_sym_inline] = ACTIONS(3450), + [anon_sym_thread_local] = ACTIONS(3450), + [anon_sym_input] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym_restrict] = ACTIONS(3450), + [anon_sym__Atomic] = ACTIONS(3450), + [anon_sym_mutable] = ACTIONS(3450), + [anon_sym_constexpr] = ACTIONS(3450), + [anon_sym_constinit] = ACTIONS(3450), + [anon_sym_consteval] = ACTIONS(3450), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3515), + [anon_sym_SLASH_EQ] = ACTIONS(3515), + [anon_sym_PERCENT_EQ] = ACTIONS(3515), + [anon_sym_PLUS_EQ] = ACTIONS(3515), + [anon_sym_DASH_EQ] = ACTIONS(3515), + [anon_sym_LT_LT_EQ] = ACTIONS(3515), + [anon_sym_GT_GT_EQ] = ACTIONS(3515), + [anon_sym_AMP_EQ] = ACTIONS(3515), + [anon_sym_CARET_EQ] = ACTIONS(3515), + [anon_sym_PIPE_EQ] = ACTIONS(3515), + [anon_sym_and_eq] = ACTIONS(3511), + [anon_sym_or_eq] = ACTIONS(3511), + [anon_sym_xor_eq] = ACTIONS(3511), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3457), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3457), + [anon_sym_not_eq] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3450), + [anon_sym_decltype] = ACTIONS(3450), + [anon_sym_virtual] = ACTIONS(3450), + [anon_sym_template] = ACTIONS(3450), + [anon_sym_operator] = ACTIONS(3450), + }, + [1689] = { + [sym__expression] = STATE(3857), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1690] = { + [sym__expression] = STATE(3814), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1691] = { + [sym__expression] = STATE(3783), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1692] = { + [sym__expression] = STATE(3002), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(3813), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1693] = { + [sym__expression] = STATE(3770), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1694] = { + [sym__expression] = STATE(3071), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1695] = { + [sym__expression] = STATE(3937), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1696] = { + [sym__expression] = STATE(2699), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1697] = { + [sym__expression] = STATE(3066), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(3815), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1698] = { + [sym__expression] = STATE(2698), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1699] = { + [sym__expression] = STATE(3914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1700] = { + [sym__expression] = STATE(2697), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1701] = { + [sym__expression] = STATE(2696), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1702] = { + [sym__expression] = STATE(3082), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1703] = { + [sym__expression] = STATE(2695), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1704] = { + [sym__expression] = STATE(2694), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1705] = { + [sym__expression] = STATE(2955), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1706] = { + [sym__expression] = STATE(3723), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1707] = { + [sym__expression] = STATE(2690), + [sym_conditional_expression] = STATE(2708), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(2916), + [sym_unary_expression] = STATE(2708), + [sym_binary_expression] = STATE(2708), + [sym_update_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2916), + [sym_call_expression] = STATE(2916), + [sym_field_expression] = STATE(2916), + [sym_compound_literal_expression] = STATE(2708), + [sym_parenthesized_expression] = STATE(2916), + [sym_char_literal] = STATE(2588), + [sym_concatenated_string] = STATE(2588), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2708), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2708), + [sym_new_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_requires_clause] = STATE(2708), + [sym_requires_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2708), + [sym_parameter_pack_expansion] = STATE(2708), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2916), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2708), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1708] = { + [sym__expression] = STATE(3687), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1709] = { + [sym__expression] = STATE(2971), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1710] = { + [sym_identifier] = ACTIONS(3722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3734), + [anon_sym_RPAREN] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3727), + [anon_sym_DASH] = ACTIONS(3729), + [anon_sym_PLUS] = ACTIONS(3729), + [anon_sym_STAR] = ACTIONS(3731), + [anon_sym_SLASH] = ACTIONS(3729), + [anon_sym_PERCENT] = ACTIONS(3729), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3729), + [anon_sym_CARET] = ACTIONS(3729), + [anon_sym_AMP] = ACTIONS(3731), + [anon_sym_EQ_EQ] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_GT] = ACTIONS(3729), + [anon_sym_GT_EQ] = ACTIONS(3734), + [anon_sym_LT_EQ] = ACTIONS(3729), + [anon_sym_LT] = ACTIONS(3729), + [anon_sym_LT_LT] = ACTIONS(3729), + [anon_sym_GT_GT] = ACTIONS(3729), + [anon_sym_SEMI] = ACTIONS(3734), + [anon_sym_extern] = ACTIONS(3722), + [anon_sym___attribute__] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3727), + [anon_sym___declspec] = ACTIONS(3722), + [anon_sym___based] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3727), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(3729), + [anon_sym_static] = ACTIONS(3722), + [anon_sym_register] = ACTIONS(3722), + [anon_sym_inline] = ACTIONS(3722), + [anon_sym_thread_local] = ACTIONS(3722), + [anon_sym_input] = ACTIONS(3722), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_volatile] = ACTIONS(3722), + [anon_sym_restrict] = ACTIONS(3722), + [anon_sym__Atomic] = ACTIONS(3722), + [anon_sym_mutable] = ACTIONS(3722), + [anon_sym_constexpr] = ACTIONS(3722), + [anon_sym_constinit] = ACTIONS(3722), + [anon_sym_consteval] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_STAR_EQ] = ACTIONS(3734), + [anon_sym_SLASH_EQ] = ACTIONS(3734), + [anon_sym_PERCENT_EQ] = ACTIONS(3734), + [anon_sym_PLUS_EQ] = ACTIONS(3734), + [anon_sym_DASH_EQ] = ACTIONS(3734), + [anon_sym_LT_LT_EQ] = ACTIONS(3734), + [anon_sym_GT_GT_EQ] = ACTIONS(3734), + [anon_sym_AMP_EQ] = ACTIONS(3734), + [anon_sym_CARET_EQ] = ACTIONS(3734), + [anon_sym_PIPE_EQ] = ACTIONS(3734), + [anon_sym_and_eq] = ACTIONS(3729), + [anon_sym_or_eq] = ACTIONS(3729), + [anon_sym_xor_eq] = ACTIONS(3729), + [anon_sym_LT_EQ_GT] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3729), + [anon_sym_and] = ACTIONS(3729), + [anon_sym_bitor] = ACTIONS(3729), + [anon_sym_xor] = ACTIONS(3729), + [anon_sym_bitand] = ACTIONS(3729), + [anon_sym_not_eq] = ACTIONS(3729), + [anon_sym_DASH_DASH] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3729), + [anon_sym_DASH_GT] = ACTIONS(3734), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3722), + [anon_sym_decltype] = ACTIONS(3722), + [anon_sym_virtual] = ACTIONS(3722), + [anon_sym_template] = ACTIONS(3722), + [anon_sym_operator] = ACTIONS(3722), + }, + [1711] = { + [sym__expression] = STATE(3041), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1712] = { + [sym__expression] = STATE(2524), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1713] = { + [sym__expression] = STATE(2527), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1714] = { + [sym__expression] = STATE(2975), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(3817), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1715] = { + [sym__expression] = STATE(2528), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1716] = { + [sym__expression] = STATE(3002), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1717] = { + [sym__expression] = STATE(3789), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1718] = { + [sym__expression] = STATE(2529), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1719] = { + [sym__expression] = STATE(2530), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1720] = { + [sym__expression] = STATE(3552), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1721] = { + [sym__expression] = STATE(2561), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1722] = { + [sym__expression] = STATE(3049), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1723] = { + [sym__expression] = STATE(2535), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1724] = { + [sym__expression] = STATE(3050), + [sym_conditional_expression] = STATE(3111), + [sym_assignment_expression] = STATE(3111), + [sym_pointer_expression] = STATE(2878), + [sym_unary_expression] = STATE(3111), + [sym_binary_expression] = STATE(3111), + [sym_update_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_subscript_expression] = STATE(2878), + [sym_call_expression] = STATE(2878), + [sym_field_expression] = STATE(2878), + [sym_compound_literal_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(2878), + [sym_char_literal] = STATE(2999), + [sym_concatenated_string] = STATE(2999), + [sym_string_literal] = STATE(1830), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3111), + [sym_raw_string_literal] = STATE(1830), + [sym_co_await_expression] = STATE(3111), + [sym_new_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), + [sym_requires_clause] = STATE(3111), + [sym_requires_expression] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3111), + [sym_parameter_pack_expansion] = STATE(3111), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2878), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3111), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1725] = { + [sym__expression] = STATE(3530), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1726] = { + [sym__expression] = STATE(4003), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1727] = { + [sym__expression] = STATE(3763), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1728] = { + [sym_template_argument_list] = STATE(1754), + [sym_identifier] = ACTIONS(3537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3539), + [anon_sym_COMMA] = ACTIONS(3539), + [anon_sym_RPAREN] = ACTIONS(3539), + [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_STAR] = ACTIONS(3546), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_PIPE] = ACTIONS(3544), + [anon_sym_CARET] = ACTIONS(3544), + [anon_sym_AMP] = ACTIONS(3546), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_GT] = ACTIONS(3544), + [anon_sym_GT_EQ] = ACTIONS(3549), + [anon_sym_LT_EQ] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_extern] = ACTIONS(3537), + [anon_sym___attribute__] = ACTIONS(3537), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3542), + [anon_sym___declspec] = ACTIONS(3537), + [anon_sym___based] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3546), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_static] = ACTIONS(3537), + [anon_sym_register] = ACTIONS(3537), + [anon_sym_inline] = ACTIONS(3537), + [anon_sym_thread_local] = ACTIONS(3537), + [anon_sym_input] = ACTIONS(3537), + [anon_sym_const] = ACTIONS(3537), + [anon_sym_volatile] = ACTIONS(3537), + [anon_sym_restrict] = ACTIONS(3537), + [anon_sym__Atomic] = ACTIONS(3537), + [anon_sym_mutable] = ACTIONS(3537), + [anon_sym_constexpr] = ACTIONS(3537), + [anon_sym_constinit] = ACTIONS(3537), + [anon_sym_consteval] = ACTIONS(3537), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_STAR_EQ] = ACTIONS(3549), + [anon_sym_SLASH_EQ] = ACTIONS(3549), + [anon_sym_PERCENT_EQ] = ACTIONS(3549), + [anon_sym_PLUS_EQ] = ACTIONS(3549), + [anon_sym_DASH_EQ] = ACTIONS(3549), + [anon_sym_LT_LT_EQ] = ACTIONS(3549), + [anon_sym_GT_GT_EQ] = ACTIONS(3549), + [anon_sym_AMP_EQ] = ACTIONS(3549), + [anon_sym_CARET_EQ] = ACTIONS(3549), + [anon_sym_PIPE_EQ] = ACTIONS(3549), + [anon_sym_and_eq] = ACTIONS(3544), + [anon_sym_or_eq] = ACTIONS(3544), + [anon_sym_xor_eq] = ACTIONS(3544), + [anon_sym_LT_EQ_GT] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3544), + [anon_sym_and] = ACTIONS(3544), + [anon_sym_bitor] = ACTIONS(3544), + [anon_sym_xor] = ACTIONS(3544), + [anon_sym_bitand] = ACTIONS(3544), + [anon_sym_not_eq] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3549), + [anon_sym_PLUS_PLUS] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3544), + [anon_sym_DASH_GT] = ACTIONS(3549), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3537), + [anon_sym_decltype] = ACTIONS(3537), + [anon_sym_virtual] = ACTIONS(3537), + [anon_sym_template] = ACTIONS(3537), + [anon_sym_operator] = ACTIONS(3537), + }, + [1729] = { + [sym__expression] = STATE(2538), + [sym_conditional_expression] = STATE(2513), + [sym_assignment_expression] = STATE(2513), + [sym_pointer_expression] = STATE(2512), + [sym_unary_expression] = STATE(2513), + [sym_binary_expression] = STATE(2513), + [sym_update_expression] = STATE(2513), + [sym_cast_expression] = STATE(2513), + [sym_sizeof_expression] = STATE(2513), + [sym_subscript_expression] = STATE(2512), + [sym_call_expression] = STATE(2512), + [sym_field_expression] = STATE(2512), + [sym_compound_literal_expression] = STATE(2513), + [sym_parenthesized_expression] = STATE(2512), + [sym_char_literal] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_string_literal] = STATE(1779), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(2513), + [sym_raw_string_literal] = STATE(1779), + [sym_co_await_expression] = STATE(2513), + [sym_new_expression] = STATE(2513), + [sym_delete_expression] = STATE(2513), + [sym_requires_clause] = STATE(2513), + [sym_requires_expression] = STATE(2513), + [sym_lambda_expression] = STATE(2513), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2513), + [sym_parameter_pack_expansion] = STATE(2513), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2512), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2513), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1730] = { + [sym__expression] = STATE(3685), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1731] = { + [sym__expression] = STATE(2960), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1732] = { + [sym__expression] = STATE(3923), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3108), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3108), + [sym_call_expression] = STATE(3108), + [sym_field_expression] = STATE(3108), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3108), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3108), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_compl] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3045), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1733] = { + [sym__expression] = STATE(2959), + [sym_conditional_expression] = STATE(3061), + [sym_assignment_expression] = STATE(3061), + [sym_pointer_expression] = STATE(3059), + [sym_unary_expression] = STATE(3061), + [sym_binary_expression] = STATE(3061), + [sym_update_expression] = STATE(3061), + [sym_cast_expression] = STATE(3061), + [sym_sizeof_expression] = STATE(3061), + [sym_subscript_expression] = STATE(3059), + [sym_call_expression] = STATE(3059), + [sym_field_expression] = STATE(3059), + [sym_compound_literal_expression] = STATE(3061), + [sym_parenthesized_expression] = STATE(3059), + [sym_char_literal] = STATE(2949), + [sym_concatenated_string] = STATE(2949), + [sym_string_literal] = STATE(1828), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3061), + [sym_raw_string_literal] = STATE(1828), + [sym_co_await_expression] = STATE(3061), + [sym_new_expression] = STATE(3061), + [sym_delete_expression] = STATE(3061), + [sym_requires_clause] = STATE(3061), + [sym_requires_expression] = STATE(3061), + [sym_lambda_expression] = STATE(3061), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3061), + [sym_parameter_pack_expansion] = STATE(3061), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3059), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3061), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(3819), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_compl] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1687), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_u_DQUOTE] = ACTIONS(1691), + [anon_sym_U_DQUOTE] = ACTIONS(1691), + [anon_sym_u8_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_null] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_R_DQUOTE] = ACTIONS(1697), + [anon_sym_LR_DQUOTE] = ACTIONS(1697), + [anon_sym_uR_DQUOTE] = ACTIONS(1697), + [anon_sym_UR_DQUOTE] = ACTIONS(1697), + [anon_sym_u8R_DQUOTE] = ACTIONS(1697), + [anon_sym_co_await] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_requires] = ACTIONS(1703), + [sym_this] = ACTIONS(1693), + [sym_nullptr] = ACTIONS(1693), + }, + [1734] = { + [sym__expression] = STATE(3852), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1735] = { + [sym__expression] = STATE(3813), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1736] = { + [sym__expression] = STATE(3513), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1737] = { + [sym__expression] = STATE(3786), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1738] = { + [sym__expression] = STATE(3567), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1739] = { + [sym__expression] = STATE(3810), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1740] = { + [sym__expression] = STATE(3552), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1741] = { + [sym__expression] = STATE(3530), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3821), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1742] = { + [sym__expression] = STATE(4058), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1743] = { + [sym__expression] = STATE(3564), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1744] = { + [sym__expression] = STATE(3948), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1745] = { + [sym__expression] = STATE(3572), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1746] = { + [sym__expression] = STATE(3587), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -216106,107 +217183,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), }, [1747] = { - [sym__expression] = STATE(3040), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), - }, - [1748] = { - [sym__expression] = STATE(3899), + [sym__expression] = STATE(3562), [sym_conditional_expression] = STATE(3521), [sym_assignment_expression] = STATE(3521), - [sym_pointer_expression] = STATE(3097), + [sym_pointer_expression] = STATE(2770), [sym_unary_expression] = STATE(3521), [sym_binary_expression] = STATE(3521), [sym_update_expression] = STATE(3521), [sym_cast_expression] = STATE(3521), [sym_sizeof_expression] = STATE(3521), - [sym_subscript_expression] = STATE(3097), - [sym_call_expression] = STATE(3097), - [sym_field_expression] = STATE(3097), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), [sym_compound_literal_expression] = STATE(3521), - [sym_parenthesized_expression] = STATE(3097), - [sym_char_literal] = STATE(3372), - [sym_concatenated_string] = STATE(3372), - [sym_string_literal] = STATE(2568), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), [sym__class_name] = STATE(6367), - [sym_template_type] = STATE(3311), + [sym_template_type] = STATE(3275), [sym_template_function] = STATE(3521), - [sym_raw_string_literal] = STATE(2568), + [sym_raw_string_literal] = STATE(2571), [sym_co_await_expression] = STATE(3521), [sym_new_expression] = STATE(3521), [sym_delete_expression] = STATE(3521), @@ -216218,25 +217215,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(4894), - [sym_qualified_identifier] = STATE(3097), + [sym_qualified_identifier] = STATE(2770), [sym_qualified_type_identifier] = STATE(6367), [sym_user_defined_literal] = STATE(3521), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), [sym_primitive_type] = ACTIONS(1521), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -216253,1160 +217250,1254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(121), [anon_sym_R_DQUOTE] = ACTIONS(137), [anon_sym_LR_DQUOTE] = ACTIONS(137), [anon_sym_uR_DQUOTE] = ACTIONS(137), [anon_sym_UR_DQUOTE] = ACTIONS(137), [anon_sym_u8R_DQUOTE] = ACTIONS(137), - [anon_sym_co_await] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3035), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1748] = { + [sym__expression] = STATE(3568), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), [anon_sym_requires] = ACTIONS(143), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), }, [1749] = { - [sym__expression] = STATE(3082), - [sym_conditional_expression] = STATE(3098), - [sym_assignment_expression] = STATE(3098), - [sym_pointer_expression] = STATE(2876), - [sym_unary_expression] = STATE(3098), - [sym_binary_expression] = STATE(3098), - [sym_update_expression] = STATE(3098), - [sym_cast_expression] = STATE(3098), - [sym_sizeof_expression] = STATE(3098), - [sym_subscript_expression] = STATE(2876), - [sym_call_expression] = STATE(2876), - [sym_field_expression] = STATE(2876), - [sym_compound_literal_expression] = STATE(3098), - [sym_parenthesized_expression] = STATE(2876), - [sym_char_literal] = STATE(2988), - [sym_concatenated_string] = STATE(2988), - [sym_string_literal] = STATE(1834), - [sym__class_name] = STATE(6294), - [sym_template_type] = STATE(3311), - [sym_template_function] = STATE(3098), - [sym_raw_string_literal] = STATE(1834), - [sym_co_await_expression] = STATE(3098), - [sym_new_expression] = STATE(3098), - [sym_delete_expression] = STATE(3098), - [sym_requires_clause] = STATE(3098), - [sym_requires_expression] = STATE(3098), - [sym_lambda_expression] = STATE(3098), - [sym_lambda_capture_specifier] = STATE(4765), - [sym_fold_expression] = STATE(3098), - [sym_parameter_pack_expansion] = STATE(3098), + [sym__expression] = STATE(3576), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(4924), - [sym_qualified_identifier] = STATE(2876), - [sym_qualified_type_identifier] = STATE(6294), - [sym_user_defined_literal] = STATE(3098), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1427), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(1519), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_compl] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1441), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [sym_null] = ACTIONS(1449), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), [anon_sym_template] = ACTIONS(976), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_R_DQUOTE] = ACTIONS(1455), - [anon_sym_LR_DQUOTE] = ACTIONS(1455), - [anon_sym_uR_DQUOTE] = ACTIONS(1455), - [anon_sym_UR_DQUOTE] = ACTIONS(1455), - [anon_sym_u8R_DQUOTE] = ACTIONS(1455), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1459), - [anon_sym_requires] = ACTIONS(1461), - [sym_this] = ACTIONS(1449), - [sym_nullptr] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [1750] = { - [sym_template_argument_list] = STATE(1754), - [sym_identifier] = ACTIONS(3679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3681), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_LPAREN2] = ACTIONS(3681), - [anon_sym_TILDE] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3686), - [anon_sym_STAR] = ACTIONS(3688), - [anon_sym_SLASH] = ACTIONS(3686), - [anon_sym_PERCENT] = ACTIONS(3686), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT] = ACTIONS(3686), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3784), - [anon_sym_LT_LT] = ACTIONS(3686), - [anon_sym_GT_GT] = ACTIONS(3686), - [anon_sym_extern] = ACTIONS(3679), - [anon_sym___attribute__] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3684), - [anon_sym___declspec] = ACTIONS(3679), - [anon_sym___based] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_static] = ACTIONS(3679), - [anon_sym_register] = ACTIONS(3679), - [anon_sym_inline] = ACTIONS(3679), - [anon_sym_thread_local] = ACTIONS(3679), - [anon_sym_const] = ACTIONS(3679), - [anon_sym_volatile] = ACTIONS(3679), - [anon_sym_restrict] = ACTIONS(3679), - [anon_sym__Atomic] = ACTIONS(3679), - [anon_sym_mutable] = ACTIONS(3679), - [anon_sym_constexpr] = ACTIONS(3679), - [anon_sym_constinit] = ACTIONS(3679), - [anon_sym_consteval] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3691), - [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(3686), - [anon_sym_or_eq] = ACTIONS(3686), - [anon_sym_xor_eq] = ACTIONS(3686), - [anon_sym_LT_EQ_GT] = ACTIONS(3691), - [anon_sym_or] = ACTIONS(3686), - [anon_sym_and] = ACTIONS(3686), - [anon_sym_bitor] = ACTIONS(3686), - [anon_sym_xor] = ACTIONS(3686), - [anon_sym_bitand] = ACTIONS(3686), - [anon_sym_not_eq] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_DASH_GT] = ACTIONS(3691), + [sym__expression] = STATE(3689), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3679), - [anon_sym_decltype] = ACTIONS(3679), - [anon_sym_virtual] = ACTIONS(3679), - [anon_sym_template] = ACTIONS(3679), - [anon_sym_operator] = ACTIONS(3679), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [1751] = { - [sym_identifier] = ACTIONS(3766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3778), - [anon_sym_COMMA] = ACTIONS(3778), - [anon_sym_LPAREN2] = ACTIONS(3768), - [anon_sym_TILDE] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3773), - [anon_sym_PLUS] = ACTIONS(3773), - [anon_sym_STAR] = ACTIONS(3775), - [anon_sym_SLASH] = ACTIONS(3773), - [anon_sym_PERCENT] = ACTIONS(3773), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_AMP_AMP] = ACTIONS(3768), - [anon_sym_PIPE] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3773), - [anon_sym_AMP] = ACTIONS(3775), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_GT] = ACTIONS(3773), - [anon_sym_GT_EQ] = ACTIONS(3778), - [anon_sym_LT_EQ] = ACTIONS(3773), - [anon_sym_LT] = ACTIONS(3773), - [anon_sym_LT_LT] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3773), - [anon_sym_SEMI] = ACTIONS(3768), - [anon_sym_extern] = ACTIONS(3766), - [anon_sym___attribute__] = ACTIONS(3766), - [anon_sym_COLON_COLON] = ACTIONS(3771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3768), - [anon_sym___declspec] = ACTIONS(3766), - [anon_sym___based] = ACTIONS(3766), - [anon_sym_LBRACE] = ACTIONS(3771), - [anon_sym_RBRACE] = ACTIONS(3778), - [anon_sym_LBRACK] = ACTIONS(3775), - [anon_sym_EQ] = ACTIONS(3773), - [anon_sym_static] = ACTIONS(3766), - [anon_sym_register] = ACTIONS(3766), - [anon_sym_inline] = ACTIONS(3766), - [anon_sym_thread_local] = ACTIONS(3766), - [anon_sym_const] = ACTIONS(3766), - [anon_sym_volatile] = ACTIONS(3766), - [anon_sym_restrict] = ACTIONS(3766), - [anon_sym__Atomic] = ACTIONS(3766), - [anon_sym_mutable] = ACTIONS(3766), - [anon_sym_constexpr] = ACTIONS(3766), - [anon_sym_constinit] = ACTIONS(3766), - [anon_sym_consteval] = ACTIONS(3766), - [anon_sym_QMARK] = ACTIONS(3778), - [anon_sym_STAR_EQ] = ACTIONS(3778), - [anon_sym_SLASH_EQ] = ACTIONS(3778), - [anon_sym_PERCENT_EQ] = ACTIONS(3778), - [anon_sym_PLUS_EQ] = ACTIONS(3778), - [anon_sym_DASH_EQ] = ACTIONS(3778), - [anon_sym_LT_LT_EQ] = ACTIONS(3778), - [anon_sym_GT_GT_EQ] = ACTIONS(3778), - [anon_sym_AMP_EQ] = ACTIONS(3778), - [anon_sym_CARET_EQ] = ACTIONS(3778), - [anon_sym_PIPE_EQ] = ACTIONS(3778), - [anon_sym_and_eq] = ACTIONS(3773), - [anon_sym_or_eq] = ACTIONS(3773), - [anon_sym_xor_eq] = ACTIONS(3773), - [anon_sym_LT_EQ_GT] = ACTIONS(3778), - [anon_sym_or] = ACTIONS(3773), - [anon_sym_and] = ACTIONS(3773), - [anon_sym_bitor] = ACTIONS(3773), - [anon_sym_xor] = ACTIONS(3773), - [anon_sym_bitand] = ACTIONS(3773), - [anon_sym_not_eq] = ACTIONS(3773), - [anon_sym_DASH_DASH] = ACTIONS(3778), - [anon_sym_PLUS_PLUS] = ACTIONS(3778), - [anon_sym_DOT] = ACTIONS(3773), - [anon_sym_DASH_GT] = ACTIONS(3778), + [sym__expression] = STATE(3673), + [sym_conditional_expression] = STATE(3903), + [sym_assignment_expression] = STATE(3903), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3903), + [sym_binary_expression] = STATE(3903), + [sym_update_expression] = STATE(3903), + [sym_cast_expression] = STATE(3903), + [sym_sizeof_expression] = STATE(3903), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3903), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3793), + [sym_concatenated_string] = STATE(3793), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3903), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3903), + [sym_new_expression] = STATE(3903), + [sym_delete_expression] = STATE(3903), + [sym_requires_clause] = STATE(3903), + [sym_requires_expression] = STATE(3903), + [sym_lambda_expression] = STATE(3903), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3903), + [sym_parameter_pack_expansion] = STATE(3903), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3903), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(3823), + [sym_primitive_type] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3766), - [anon_sym_decltype] = ACTIONS(3766), - [anon_sym_virtual] = ACTIONS(3766), - [anon_sym_template] = ACTIONS(3766), - [anon_sym_operator] = ACTIONS(3766), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2609), + [anon_sym_R_DQUOTE] = ACTIONS(2611), + [anon_sym_LR_DQUOTE] = ACTIONS(2611), + [anon_sym_uR_DQUOTE] = ACTIONS(2611), + [anon_sym_UR_DQUOTE] = ACTIONS(2611), + [anon_sym_u8R_DQUOTE] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2617), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), }, [1752] = { - [sym_identifier] = ACTIONS(3766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3778), - [anon_sym_COMMA] = ACTIONS(3778), - [anon_sym_RPAREN] = ACTIONS(3778), - [anon_sym_LPAREN2] = ACTIONS(3768), - [anon_sym_TILDE] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3773), - [anon_sym_PLUS] = ACTIONS(3773), - [anon_sym_STAR] = ACTIONS(3775), - [anon_sym_SLASH] = ACTIONS(3773), - [anon_sym_PERCENT] = ACTIONS(3773), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_AMP_AMP] = ACTIONS(3768), - [anon_sym_PIPE] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3773), - [anon_sym_AMP] = ACTIONS(3775), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_GT] = ACTIONS(3773), - [anon_sym_GT_EQ] = ACTIONS(3778), - [anon_sym_LT_EQ] = ACTIONS(3773), - [anon_sym_LT] = ACTIONS(3773), - [anon_sym_LT_LT] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3773), - [anon_sym_SEMI] = ACTIONS(3778), - [anon_sym_extern] = ACTIONS(3766), - [anon_sym___attribute__] = ACTIONS(3766), - [anon_sym_COLON_COLON] = ACTIONS(3771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3771), - [anon_sym___declspec] = ACTIONS(3766), - [anon_sym___based] = ACTIONS(3766), - [anon_sym_LBRACE] = ACTIONS(3771), - [anon_sym_LBRACK] = ACTIONS(3775), - [anon_sym_EQ] = ACTIONS(3773), - [anon_sym_static] = ACTIONS(3766), - [anon_sym_register] = ACTIONS(3766), - [anon_sym_inline] = ACTIONS(3766), - [anon_sym_thread_local] = ACTIONS(3766), - [anon_sym_const] = ACTIONS(3766), - [anon_sym_volatile] = ACTIONS(3766), - [anon_sym_restrict] = ACTIONS(3766), - [anon_sym__Atomic] = ACTIONS(3766), - [anon_sym_mutable] = ACTIONS(3766), - [anon_sym_constexpr] = ACTIONS(3766), - [anon_sym_constinit] = ACTIONS(3766), - [anon_sym_consteval] = ACTIONS(3766), - [anon_sym_QMARK] = ACTIONS(3778), - [anon_sym_STAR_EQ] = ACTIONS(3778), - [anon_sym_SLASH_EQ] = ACTIONS(3778), - [anon_sym_PERCENT_EQ] = ACTIONS(3778), - [anon_sym_PLUS_EQ] = ACTIONS(3778), - [anon_sym_DASH_EQ] = ACTIONS(3778), - [anon_sym_LT_LT_EQ] = ACTIONS(3778), - [anon_sym_GT_GT_EQ] = ACTIONS(3778), - [anon_sym_AMP_EQ] = ACTIONS(3778), - [anon_sym_CARET_EQ] = ACTIONS(3778), - [anon_sym_PIPE_EQ] = ACTIONS(3778), - [anon_sym_and_eq] = ACTIONS(3773), - [anon_sym_or_eq] = ACTIONS(3773), - [anon_sym_xor_eq] = ACTIONS(3773), - [anon_sym_LT_EQ_GT] = ACTIONS(3778), - [anon_sym_or] = ACTIONS(3773), - [anon_sym_and] = ACTIONS(3773), - [anon_sym_bitor] = ACTIONS(3773), - [anon_sym_xor] = ACTIONS(3773), - [anon_sym_bitand] = ACTIONS(3773), - [anon_sym_not_eq] = ACTIONS(3773), - [anon_sym_DASH_DASH] = ACTIONS(3778), - [anon_sym_PLUS_PLUS] = ACTIONS(3778), - [anon_sym_DOT] = ACTIONS(3773), - [anon_sym_DASH_GT] = ACTIONS(3778), + [sym__expression] = STATE(3584), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3766), - [anon_sym_decltype] = ACTIONS(3766), - [anon_sym_virtual] = ACTIONS(3766), - [anon_sym_template] = ACTIONS(3766), - [anon_sym_operator] = ACTIONS(3766), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [1753] = { - [sym_template_argument_list] = STATE(1837), - [sym_identifier] = ACTIONS(3508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3523), - [anon_sym_COMMA] = ACTIONS(3523), - [anon_sym_RPAREN] = ACTIONS(3523), - [anon_sym_LPAREN2] = ACTIONS(3523), - [anon_sym_TILDE] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_extern] = ACTIONS(3508), - [anon_sym___attribute__] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), - [anon_sym___declspec] = ACTIONS(3508), - [anon_sym___based] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3508), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_register] = ACTIONS(3508), - [anon_sym_inline] = ACTIONS(3508), - [anon_sym_thread_local] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3508), - [anon_sym_restrict] = ACTIONS(3508), - [anon_sym__Atomic] = ACTIONS(3508), - [anon_sym_mutable] = ACTIONS(3508), - [anon_sym_constexpr] = ACTIONS(3508), - [anon_sym_constinit] = ACTIONS(3508), - [anon_sym_consteval] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3544), - [anon_sym_SLASH_EQ] = ACTIONS(3544), - [anon_sym_PERCENT_EQ] = ACTIONS(3544), - [anon_sym_PLUS_EQ] = ACTIONS(3544), - [anon_sym_DASH_EQ] = ACTIONS(3544), - [anon_sym_LT_LT_EQ] = ACTIONS(3544), - [anon_sym_GT_GT_EQ] = ACTIONS(3544), - [anon_sym_AMP_EQ] = ACTIONS(3544), - [anon_sym_CARET_EQ] = ACTIONS(3544), - [anon_sym_PIPE_EQ] = ACTIONS(3544), - [anon_sym_and_eq] = ACTIONS(3540), - [anon_sym_or_eq] = ACTIONS(3540), - [anon_sym_xor_eq] = ACTIONS(3540), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3518), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3518), - [anon_sym_not_eq] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3510), + [sym__expression] = STATE(3573), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2770), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2770), + [sym_call_expression] = STATE(2770), + [sym_field_expression] = STATE(2770), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2770), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2571), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3275), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2571), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2770), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3508), - [anon_sym_decltype] = ACTIONS(3508), - [anon_sym_virtual] = ACTIONS(3508), - [anon_sym_template] = ACTIONS(3508), - [anon_sym_operator] = ACTIONS(3508), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), }, [1754] = { - [sym_identifier] = ACTIONS(3766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3768), - [anon_sym_COMMA] = ACTIONS(3768), - [anon_sym_RPAREN] = ACTIONS(3768), - [anon_sym_LPAREN2] = ACTIONS(3768), - [anon_sym_TILDE] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3773), - [anon_sym_PLUS] = ACTIONS(3773), - [anon_sym_STAR] = ACTIONS(3775), - [anon_sym_SLASH] = ACTIONS(3773), - [anon_sym_PERCENT] = ACTIONS(3773), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_AMP_AMP] = ACTIONS(3768), - [anon_sym_PIPE] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3773), - [anon_sym_AMP] = ACTIONS(3775), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_GT] = ACTIONS(3773), - [anon_sym_GT_EQ] = ACTIONS(3778), - [anon_sym_LT_EQ] = ACTIONS(3773), - [anon_sym_LT] = ACTIONS(3773), - [anon_sym_LT_LT] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3773), - [anon_sym_extern] = ACTIONS(3766), - [anon_sym___attribute__] = ACTIONS(3766), - [anon_sym_COLON_COLON] = ACTIONS(3771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3771), - [anon_sym___declspec] = ACTIONS(3766), - [anon_sym___based] = ACTIONS(3766), - [anon_sym_LBRACE] = ACTIONS(3771), - [anon_sym_LBRACK] = ACTIONS(3775), - [anon_sym_EQ] = ACTIONS(3775), - [anon_sym_static] = ACTIONS(3766), - [anon_sym_register] = ACTIONS(3766), - [anon_sym_inline] = ACTIONS(3766), - [anon_sym_thread_local] = ACTIONS(3766), - [anon_sym_const] = ACTIONS(3766), - [anon_sym_volatile] = ACTIONS(3766), - [anon_sym_restrict] = ACTIONS(3766), - [anon_sym__Atomic] = ACTIONS(3766), - [anon_sym_mutable] = ACTIONS(3766), - [anon_sym_constexpr] = ACTIONS(3766), - [anon_sym_constinit] = ACTIONS(3766), - [anon_sym_consteval] = ACTIONS(3766), - [anon_sym_QMARK] = ACTIONS(3778), - [anon_sym_STAR_EQ] = ACTIONS(3778), - [anon_sym_SLASH_EQ] = ACTIONS(3778), - [anon_sym_PERCENT_EQ] = ACTIONS(3778), - [anon_sym_PLUS_EQ] = ACTIONS(3778), - [anon_sym_DASH_EQ] = ACTIONS(3778), - [anon_sym_LT_LT_EQ] = ACTIONS(3778), - [anon_sym_GT_GT_EQ] = ACTIONS(3778), - [anon_sym_AMP_EQ] = ACTIONS(3778), - [anon_sym_CARET_EQ] = ACTIONS(3778), - [anon_sym_PIPE_EQ] = ACTIONS(3778), - [anon_sym_and_eq] = ACTIONS(3773), - [anon_sym_or_eq] = ACTIONS(3773), - [anon_sym_xor_eq] = ACTIONS(3773), - [anon_sym_LT_EQ_GT] = ACTIONS(3778), - [anon_sym_or] = ACTIONS(3773), - [anon_sym_and] = ACTIONS(3773), - [anon_sym_bitor] = ACTIONS(3773), - [anon_sym_xor] = ACTIONS(3773), - [anon_sym_bitand] = ACTIONS(3773), - [anon_sym_not_eq] = ACTIONS(3773), - [anon_sym_DASH_DASH] = ACTIONS(3778), - [anon_sym_PLUS_PLUS] = ACTIONS(3778), - [anon_sym_DOT] = ACTIONS(3773), - [anon_sym_DASH_GT] = ACTIONS(3778), + [sym_identifier] = ACTIONS(3722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3724), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_RPAREN] = ACTIONS(3724), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3727), + [anon_sym_DASH] = ACTIONS(3729), + [anon_sym_PLUS] = ACTIONS(3729), + [anon_sym_STAR] = ACTIONS(3731), + [anon_sym_SLASH] = ACTIONS(3729), + [anon_sym_PERCENT] = ACTIONS(3729), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3729), + [anon_sym_CARET] = ACTIONS(3729), + [anon_sym_AMP] = ACTIONS(3731), + [anon_sym_EQ_EQ] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_GT] = ACTIONS(3729), + [anon_sym_GT_EQ] = ACTIONS(3734), + [anon_sym_LT_EQ] = ACTIONS(3729), + [anon_sym_LT] = ACTIONS(3729), + [anon_sym_LT_LT] = ACTIONS(3729), + [anon_sym_GT_GT] = ACTIONS(3729), + [anon_sym_extern] = ACTIONS(3722), + [anon_sym___attribute__] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3727), + [anon_sym___declspec] = ACTIONS(3722), + [anon_sym___based] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3727), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(3731), + [anon_sym_static] = ACTIONS(3722), + [anon_sym_register] = ACTIONS(3722), + [anon_sym_inline] = ACTIONS(3722), + [anon_sym_thread_local] = ACTIONS(3722), + [anon_sym_input] = ACTIONS(3722), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_volatile] = ACTIONS(3722), + [anon_sym_restrict] = ACTIONS(3722), + [anon_sym__Atomic] = ACTIONS(3722), + [anon_sym_mutable] = ACTIONS(3722), + [anon_sym_constexpr] = ACTIONS(3722), + [anon_sym_constinit] = ACTIONS(3722), + [anon_sym_consteval] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_STAR_EQ] = ACTIONS(3734), + [anon_sym_SLASH_EQ] = ACTIONS(3734), + [anon_sym_PERCENT_EQ] = ACTIONS(3734), + [anon_sym_PLUS_EQ] = ACTIONS(3734), + [anon_sym_DASH_EQ] = ACTIONS(3734), + [anon_sym_LT_LT_EQ] = ACTIONS(3734), + [anon_sym_GT_GT_EQ] = ACTIONS(3734), + [anon_sym_AMP_EQ] = ACTIONS(3734), + [anon_sym_CARET_EQ] = ACTIONS(3734), + [anon_sym_PIPE_EQ] = ACTIONS(3734), + [anon_sym_and_eq] = ACTIONS(3729), + [anon_sym_or_eq] = ACTIONS(3729), + [anon_sym_xor_eq] = ACTIONS(3729), + [anon_sym_LT_EQ_GT] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3729), + [anon_sym_and] = ACTIONS(3729), + [anon_sym_bitor] = ACTIONS(3729), + [anon_sym_xor] = ACTIONS(3729), + [anon_sym_bitand] = ACTIONS(3729), + [anon_sym_not_eq] = ACTIONS(3729), + [anon_sym_DASH_DASH] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3729), + [anon_sym_DASH_GT] = ACTIONS(3734), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3766), - [anon_sym_decltype] = ACTIONS(3766), - [anon_sym_virtual] = ACTIONS(3766), - [anon_sym_template] = ACTIONS(3766), - [anon_sym_operator] = ACTIONS(3766), + [sym_auto] = ACTIONS(3722), + [anon_sym_decltype] = ACTIONS(3722), + [anon_sym_virtual] = ACTIONS(3722), + [anon_sym_template] = ACTIONS(3722), + [anon_sym_operator] = ACTIONS(3722), }, [1755] = { - [sym_identifier] = ACTIONS(3758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3760), - [anon_sym_COMMA] = ACTIONS(3760), - [anon_sym_RPAREN] = ACTIONS(3760), - [anon_sym_LPAREN2] = ACTIONS(3760), - [anon_sym_TILDE] = ACTIONS(3760), - [anon_sym_DASH] = ACTIONS(3758), - [anon_sym_PLUS] = ACTIONS(3758), - [anon_sym_STAR] = ACTIONS(3758), - [anon_sym_SLASH] = ACTIONS(3758), - [anon_sym_PERCENT] = ACTIONS(3758), - [anon_sym_PIPE_PIPE] = ACTIONS(3760), - [anon_sym_AMP_AMP] = ACTIONS(3760), - [anon_sym_PIPE] = ACTIONS(3758), - [anon_sym_CARET] = ACTIONS(3758), - [anon_sym_AMP] = ACTIONS(3758), - [anon_sym_EQ_EQ] = ACTIONS(3760), - [anon_sym_BANG_EQ] = ACTIONS(3760), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_GT_EQ] = ACTIONS(3760), - [anon_sym_LT_EQ] = ACTIONS(3758), - [anon_sym_LT] = ACTIONS(3758), - [anon_sym_LT_LT] = ACTIONS(3758), - [anon_sym_GT_GT] = ACTIONS(3758), - [anon_sym_extern] = ACTIONS(3758), - [anon_sym___attribute__] = ACTIONS(3758), - [anon_sym_COLON_COLON] = ACTIONS(3760), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), - [anon_sym___declspec] = ACTIONS(3758), - [anon_sym___based] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3760), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_EQ] = ACTIONS(3758), - [anon_sym_static] = ACTIONS(3758), - [anon_sym_register] = ACTIONS(3758), - [anon_sym_inline] = ACTIONS(3758), - [anon_sym_thread_local] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_constinit] = ACTIONS(3758), - [anon_sym_consteval] = ACTIONS(3758), - [anon_sym_QMARK] = ACTIONS(3760), - [anon_sym_STAR_EQ] = ACTIONS(3760), - [anon_sym_SLASH_EQ] = ACTIONS(3760), - [anon_sym_PERCENT_EQ] = ACTIONS(3760), - [anon_sym_PLUS_EQ] = ACTIONS(3760), - [anon_sym_DASH_EQ] = ACTIONS(3760), - [anon_sym_LT_LT_EQ] = ACTIONS(3760), - [anon_sym_GT_GT_EQ] = ACTIONS(3760), - [anon_sym_AMP_EQ] = ACTIONS(3760), - [anon_sym_CARET_EQ] = ACTIONS(3760), - [anon_sym_PIPE_EQ] = ACTIONS(3760), - [anon_sym_LT_EQ_GT] = ACTIONS(3760), - [anon_sym_or] = ACTIONS(3758), - [anon_sym_and] = ACTIONS(3758), - [anon_sym_bitor] = ACTIONS(3758), - [anon_sym_xor] = ACTIONS(3758), - [anon_sym_bitand] = ACTIONS(3758), - [anon_sym_not_eq] = ACTIONS(3758), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_DOT] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3758), + [sym_identifier] = ACTIONS(3609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3611), + [anon_sym_RPAREN] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3609), + [anon_sym_SLASH] = ACTIONS(3609), + [anon_sym_PERCENT] = ACTIONS(3609), + [anon_sym_PIPE_PIPE] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_PIPE] = ACTIONS(3609), + [anon_sym_CARET] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_EQ_EQ] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_GT] = ACTIONS(3609), + [anon_sym_GT_EQ] = ACTIONS(3611), + [anon_sym_LT_EQ] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_LT_LT] = ACTIONS(3609), + [anon_sym_GT_GT] = ACTIONS(3609), + [anon_sym_extern] = ACTIONS(3609), + [anon_sym___attribute__] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3611), + [anon_sym___declspec] = ACTIONS(3609), + [anon_sym___based] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_register] = ACTIONS(3609), + [anon_sym_inline] = ACTIONS(3609), + [anon_sym_thread_local] = ACTIONS(3609), + [anon_sym_input] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3609), + [anon_sym_restrict] = ACTIONS(3609), + [anon_sym__Atomic] = ACTIONS(3609), + [anon_sym_mutable] = ACTIONS(3609), + [anon_sym_constexpr] = ACTIONS(3609), + [anon_sym_constinit] = ACTIONS(3609), + [anon_sym_consteval] = ACTIONS(3609), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_STAR_EQ] = ACTIONS(3611), + [anon_sym_SLASH_EQ] = ACTIONS(3611), + [anon_sym_PERCENT_EQ] = ACTIONS(3611), + [anon_sym_PLUS_EQ] = ACTIONS(3611), + [anon_sym_DASH_EQ] = ACTIONS(3611), + [anon_sym_LT_LT_EQ] = ACTIONS(3611), + [anon_sym_GT_GT_EQ] = ACTIONS(3611), + [anon_sym_AMP_EQ] = ACTIONS(3611), + [anon_sym_CARET_EQ] = ACTIONS(3611), + [anon_sym_PIPE_EQ] = ACTIONS(3611), + [anon_sym_LT_EQ_GT] = ACTIONS(3611), + [anon_sym_or] = ACTIONS(3609), + [anon_sym_and] = ACTIONS(3609), + [anon_sym_bitor] = ACTIONS(3609), + [anon_sym_xor] = ACTIONS(3609), + [anon_sym_bitand] = ACTIONS(3609), + [anon_sym_not_eq] = ACTIONS(3609), + [anon_sym_DASH_DASH] = ACTIONS(3611), + [anon_sym_PLUS_PLUS] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3609), + [anon_sym_DASH_GT] = ACTIONS(3609), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3758), - [anon_sym_decltype] = ACTIONS(3758), - [anon_sym_virtual] = ACTIONS(3758), - [anon_sym_template] = ACTIONS(3758), - [anon_sym_operator] = ACTIONS(3758), - [anon_sym_DOT_STAR] = ACTIONS(3760), - [anon_sym_DASH_GT_STAR] = ACTIONS(3760), + [sym_auto] = ACTIONS(3609), + [anon_sym_decltype] = ACTIONS(3609), + [anon_sym_virtual] = ACTIONS(3609), + [anon_sym_template] = ACTIONS(3609), + [anon_sym_operator] = ACTIONS(3609), + [anon_sym_DOT_STAR] = ACTIONS(3611), + [anon_sym_DASH_GT_STAR] = ACTIONS(3611), }, [1756] = { - [sym_identifier] = ACTIONS(3740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3742), - [anon_sym_COMMA] = ACTIONS(3742), - [anon_sym_RPAREN] = ACTIONS(3742), - [anon_sym_LPAREN2] = ACTIONS(3742), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3740), - [anon_sym_PLUS] = ACTIONS(3740), - [anon_sym_STAR] = ACTIONS(3740), - [anon_sym_SLASH] = ACTIONS(3740), - [anon_sym_PERCENT] = ACTIONS(3740), - [anon_sym_PIPE_PIPE] = ACTIONS(3742), - [anon_sym_AMP_AMP] = ACTIONS(3742), - [anon_sym_PIPE] = ACTIONS(3740), - [anon_sym_CARET] = ACTIONS(3740), - [anon_sym_AMP] = ACTIONS(3740), - [anon_sym_EQ_EQ] = ACTIONS(3742), - [anon_sym_BANG_EQ] = ACTIONS(3742), - [anon_sym_GT] = ACTIONS(3740), - [anon_sym_GT_EQ] = ACTIONS(3742), - [anon_sym_LT_EQ] = ACTIONS(3740), - [anon_sym_LT] = ACTIONS(3740), - [anon_sym_LT_LT] = ACTIONS(3740), - [anon_sym_GT_GT] = ACTIONS(3740), - [anon_sym_extern] = ACTIONS(3740), - [anon_sym___attribute__] = ACTIONS(3740), - [anon_sym_COLON_COLON] = ACTIONS(3742), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3742), - [anon_sym___declspec] = ACTIONS(3740), - [anon_sym___based] = ACTIONS(3740), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3740), - [anon_sym_EQ] = ACTIONS(3740), - [anon_sym_static] = ACTIONS(3740), - [anon_sym_register] = ACTIONS(3740), - [anon_sym_inline] = ACTIONS(3740), - [anon_sym_thread_local] = ACTIONS(3740), - [anon_sym_const] = ACTIONS(3740), - [anon_sym_volatile] = ACTIONS(3740), - [anon_sym_restrict] = ACTIONS(3740), - [anon_sym__Atomic] = ACTIONS(3740), - [anon_sym_mutable] = ACTIONS(3740), - [anon_sym_constexpr] = ACTIONS(3740), - [anon_sym_constinit] = ACTIONS(3740), - [anon_sym_consteval] = ACTIONS(3740), - [anon_sym_QMARK] = ACTIONS(3742), - [anon_sym_STAR_EQ] = ACTIONS(3742), - [anon_sym_SLASH_EQ] = ACTIONS(3742), - [anon_sym_PERCENT_EQ] = ACTIONS(3742), - [anon_sym_PLUS_EQ] = ACTIONS(3742), - [anon_sym_DASH_EQ] = ACTIONS(3742), - [anon_sym_LT_LT_EQ] = ACTIONS(3742), - [anon_sym_GT_GT_EQ] = ACTIONS(3742), - [anon_sym_AMP_EQ] = ACTIONS(3742), - [anon_sym_CARET_EQ] = ACTIONS(3742), - [anon_sym_PIPE_EQ] = ACTIONS(3742), - [anon_sym_LT_EQ_GT] = ACTIONS(3742), - [anon_sym_or] = ACTIONS(3740), - [anon_sym_and] = ACTIONS(3740), - [anon_sym_bitor] = ACTIONS(3740), - [anon_sym_xor] = ACTIONS(3740), - [anon_sym_bitand] = ACTIONS(3740), - [anon_sym_not_eq] = ACTIONS(3740), - [anon_sym_DASH_DASH] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3742), - [anon_sym_DOT] = ACTIONS(3740), - [anon_sym_DASH_GT] = ACTIONS(3740), + [sym_identifier] = ACTIONS(3576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3576), + [anon_sym_PERCENT] = ACTIONS(3576), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(3576), + [anon_sym_CARET] = ACTIONS(3576), + [anon_sym_AMP] = ACTIONS(3576), + [anon_sym_EQ_EQ] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_GT] = ACTIONS(3576), + [anon_sym_GT_EQ] = ACTIONS(3578), + [anon_sym_LT_EQ] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(3576), + [anon_sym_LT_LT] = ACTIONS(3576), + [anon_sym_GT_GT] = ACTIONS(3576), + [anon_sym_extern] = ACTIONS(3576), + [anon_sym___attribute__] = ACTIONS(3576), + [anon_sym_COLON_COLON] = ACTIONS(3578), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3578), + [anon_sym___declspec] = ACTIONS(3576), + [anon_sym___based] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_register] = ACTIONS(3576), + [anon_sym_inline] = ACTIONS(3576), + [anon_sym_thread_local] = ACTIONS(3576), + [anon_sym_input] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_volatile] = ACTIONS(3576), + [anon_sym_restrict] = ACTIONS(3576), + [anon_sym__Atomic] = ACTIONS(3576), + [anon_sym_mutable] = ACTIONS(3576), + [anon_sym_constexpr] = ACTIONS(3576), + [anon_sym_constinit] = ACTIONS(3576), + [anon_sym_consteval] = ACTIONS(3576), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_STAR_EQ] = ACTIONS(3578), + [anon_sym_SLASH_EQ] = ACTIONS(3578), + [anon_sym_PERCENT_EQ] = ACTIONS(3578), + [anon_sym_PLUS_EQ] = ACTIONS(3578), + [anon_sym_DASH_EQ] = ACTIONS(3578), + [anon_sym_LT_LT_EQ] = ACTIONS(3578), + [anon_sym_GT_GT_EQ] = ACTIONS(3578), + [anon_sym_AMP_EQ] = ACTIONS(3578), + [anon_sym_CARET_EQ] = ACTIONS(3578), + [anon_sym_PIPE_EQ] = ACTIONS(3578), + [anon_sym_LT_EQ_GT] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3576), + [anon_sym_and] = ACTIONS(3576), + [anon_sym_bitor] = ACTIONS(3576), + [anon_sym_xor] = ACTIONS(3576), + [anon_sym_bitand] = ACTIONS(3576), + [anon_sym_not_eq] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3576), + [anon_sym_DASH_GT] = ACTIONS(3576), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3740), - [anon_sym_decltype] = ACTIONS(3740), - [anon_sym_virtual] = ACTIONS(3740), - [anon_sym_template] = ACTIONS(3740), - [anon_sym_operator] = ACTIONS(3740), - [anon_sym_DOT_STAR] = ACTIONS(3742), - [anon_sym_DASH_GT_STAR] = ACTIONS(3742), + [sym_auto] = ACTIONS(3576), + [anon_sym_decltype] = ACTIONS(3576), + [anon_sym_virtual] = ACTIONS(3576), + [anon_sym_template] = ACTIONS(3576), + [anon_sym_operator] = ACTIONS(3576), + [anon_sym_DOT_STAR] = ACTIONS(3578), + [anon_sym_DASH_GT_STAR] = ACTIONS(3578), }, [1757] = { - [sym_identifier] = ACTIONS(3736), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3738), - [anon_sym_COMMA] = ACTIONS(3738), - [anon_sym_RPAREN] = ACTIONS(3738), - [anon_sym_LPAREN2] = ACTIONS(3738), - [anon_sym_TILDE] = ACTIONS(3738), - [anon_sym_DASH] = ACTIONS(3736), - [anon_sym_PLUS] = ACTIONS(3736), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3736), - [anon_sym_PERCENT] = ACTIONS(3736), - [anon_sym_PIPE_PIPE] = ACTIONS(3738), - [anon_sym_AMP_AMP] = ACTIONS(3738), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_CARET] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_EQ_EQ] = ACTIONS(3738), - [anon_sym_BANG_EQ] = ACTIONS(3738), - [anon_sym_GT] = ACTIONS(3736), - [anon_sym_GT_EQ] = ACTIONS(3738), - [anon_sym_LT_EQ] = ACTIONS(3736), - [anon_sym_LT] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3736), - [anon_sym_GT_GT] = ACTIONS(3736), - [anon_sym_extern] = ACTIONS(3736), - [anon_sym___attribute__] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3738), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3738), - [anon_sym___declspec] = ACTIONS(3736), - [anon_sym___based] = ACTIONS(3736), - [anon_sym_LBRACE] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3736), - [anon_sym_EQ] = ACTIONS(3736), - [anon_sym_static] = ACTIONS(3736), - [anon_sym_register] = ACTIONS(3736), - [anon_sym_inline] = ACTIONS(3736), - [anon_sym_thread_local] = ACTIONS(3736), - [anon_sym_const] = ACTIONS(3736), - [anon_sym_volatile] = ACTIONS(3736), - [anon_sym_restrict] = ACTIONS(3736), - [anon_sym__Atomic] = ACTIONS(3736), - [anon_sym_mutable] = ACTIONS(3736), - [anon_sym_constexpr] = ACTIONS(3736), - [anon_sym_constinit] = ACTIONS(3736), - [anon_sym_consteval] = ACTIONS(3736), - [anon_sym_QMARK] = ACTIONS(3738), - [anon_sym_STAR_EQ] = ACTIONS(3738), - [anon_sym_SLASH_EQ] = ACTIONS(3738), - [anon_sym_PERCENT_EQ] = ACTIONS(3738), - [anon_sym_PLUS_EQ] = ACTIONS(3738), - [anon_sym_DASH_EQ] = ACTIONS(3738), - [anon_sym_LT_LT_EQ] = ACTIONS(3738), - [anon_sym_GT_GT_EQ] = ACTIONS(3738), - [anon_sym_AMP_EQ] = ACTIONS(3738), - [anon_sym_CARET_EQ] = ACTIONS(3738), - [anon_sym_PIPE_EQ] = ACTIONS(3738), - [anon_sym_LT_EQ_GT] = ACTIONS(3738), - [anon_sym_or] = ACTIONS(3736), - [anon_sym_and] = ACTIONS(3736), - [anon_sym_bitor] = ACTIONS(3736), - [anon_sym_xor] = ACTIONS(3736), - [anon_sym_bitand] = ACTIONS(3736), - [anon_sym_not_eq] = ACTIONS(3736), - [anon_sym_DASH_DASH] = ACTIONS(3738), - [anon_sym_PLUS_PLUS] = ACTIONS(3738), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_DASH_GT] = ACTIONS(3736), + [sym_identifier] = ACTIONS(3690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3692), + [anon_sym_COMMA] = ACTIONS(3692), + [anon_sym_RPAREN] = ACTIONS(3692), + [anon_sym_LPAREN2] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3690), + [anon_sym_SLASH] = ACTIONS(3690), + [anon_sym_PERCENT] = ACTIONS(3690), + [anon_sym_PIPE_PIPE] = ACTIONS(3692), + [anon_sym_AMP_AMP] = ACTIONS(3692), + [anon_sym_PIPE] = ACTIONS(3690), + [anon_sym_CARET] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3690), + [anon_sym_EQ_EQ] = ACTIONS(3692), + [anon_sym_BANG_EQ] = ACTIONS(3692), + [anon_sym_GT] = ACTIONS(3690), + [anon_sym_GT_EQ] = ACTIONS(3692), + [anon_sym_LT_EQ] = ACTIONS(3690), + [anon_sym_LT] = ACTIONS(3690), + [anon_sym_LT_LT] = ACTIONS(3690), + [anon_sym_GT_GT] = ACTIONS(3690), + [anon_sym_extern] = ACTIONS(3690), + [anon_sym___attribute__] = ACTIONS(3690), + [anon_sym_COLON_COLON] = ACTIONS(3692), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3692), + [anon_sym___declspec] = ACTIONS(3690), + [anon_sym___based] = ACTIONS(3690), + [anon_sym_LBRACE] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3690), + [anon_sym_EQ] = ACTIONS(3690), + [anon_sym_static] = ACTIONS(3690), + [anon_sym_register] = ACTIONS(3690), + [anon_sym_inline] = ACTIONS(3690), + [anon_sym_thread_local] = ACTIONS(3690), + [anon_sym_input] = ACTIONS(3690), + [anon_sym_const] = ACTIONS(3690), + [anon_sym_volatile] = ACTIONS(3690), + [anon_sym_restrict] = ACTIONS(3690), + [anon_sym__Atomic] = ACTIONS(3690), + [anon_sym_mutable] = ACTIONS(3690), + [anon_sym_constexpr] = ACTIONS(3690), + [anon_sym_constinit] = ACTIONS(3690), + [anon_sym_consteval] = ACTIONS(3690), + [anon_sym_QMARK] = ACTIONS(3692), + [anon_sym_STAR_EQ] = ACTIONS(3692), + [anon_sym_SLASH_EQ] = ACTIONS(3692), + [anon_sym_PERCENT_EQ] = ACTIONS(3692), + [anon_sym_PLUS_EQ] = ACTIONS(3692), + [anon_sym_DASH_EQ] = ACTIONS(3692), + [anon_sym_LT_LT_EQ] = ACTIONS(3692), + [anon_sym_GT_GT_EQ] = ACTIONS(3692), + [anon_sym_AMP_EQ] = ACTIONS(3692), + [anon_sym_CARET_EQ] = ACTIONS(3692), + [anon_sym_PIPE_EQ] = ACTIONS(3692), + [anon_sym_LT_EQ_GT] = ACTIONS(3692), + [anon_sym_or] = ACTIONS(3690), + [anon_sym_and] = ACTIONS(3690), + [anon_sym_bitor] = ACTIONS(3690), + [anon_sym_xor] = ACTIONS(3690), + [anon_sym_bitand] = ACTIONS(3690), + [anon_sym_not_eq] = ACTIONS(3690), + [anon_sym_DASH_DASH] = ACTIONS(3692), + [anon_sym_PLUS_PLUS] = ACTIONS(3692), + [anon_sym_DOT] = ACTIONS(3690), + [anon_sym_DASH_GT] = ACTIONS(3690), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3736), - [anon_sym_decltype] = ACTIONS(3736), - [anon_sym_virtual] = ACTIONS(3736), - [anon_sym_template] = ACTIONS(3736), - [anon_sym_operator] = ACTIONS(3736), - [anon_sym_DOT_STAR] = ACTIONS(3738), - [anon_sym_DASH_GT_STAR] = ACTIONS(3738), + [sym_auto] = ACTIONS(3690), + [anon_sym_decltype] = ACTIONS(3690), + [anon_sym_virtual] = ACTIONS(3690), + [anon_sym_template] = ACTIONS(3690), + [anon_sym_operator] = ACTIONS(3690), + [anon_sym_DOT_STAR] = ACTIONS(3692), + [anon_sym_DASH_GT_STAR] = ACTIONS(3692), }, [1758] = { - [sym_identifier] = ACTIONS(3762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), - [anon_sym_COMMA] = ACTIONS(3764), - [anon_sym_RPAREN] = ACTIONS(3764), - [anon_sym_LPAREN2] = ACTIONS(3764), - [anon_sym_TILDE] = ACTIONS(3764), - [anon_sym_DASH] = ACTIONS(3762), - [anon_sym_PLUS] = ACTIONS(3762), - [anon_sym_STAR] = ACTIONS(3762), - [anon_sym_SLASH] = ACTIONS(3762), - [anon_sym_PERCENT] = ACTIONS(3762), - [anon_sym_PIPE_PIPE] = ACTIONS(3764), - [anon_sym_AMP_AMP] = ACTIONS(3764), - [anon_sym_PIPE] = ACTIONS(3762), - [anon_sym_CARET] = ACTIONS(3762), - [anon_sym_AMP] = ACTIONS(3762), - [anon_sym_EQ_EQ] = ACTIONS(3764), - [anon_sym_BANG_EQ] = ACTIONS(3764), - [anon_sym_GT] = ACTIONS(3762), - [anon_sym_GT_EQ] = ACTIONS(3764), - [anon_sym_LT_EQ] = ACTIONS(3762), - [anon_sym_LT] = ACTIONS(3762), - [anon_sym_LT_LT] = ACTIONS(3762), - [anon_sym_GT_GT] = ACTIONS(3762), - [anon_sym_extern] = ACTIONS(3762), - [anon_sym___attribute__] = ACTIONS(3762), - [anon_sym_COLON_COLON] = ACTIONS(3764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3764), - [anon_sym___declspec] = ACTIONS(3762), - [anon_sym___based] = ACTIONS(3762), - [anon_sym_LBRACE] = ACTIONS(3764), - [anon_sym_LBRACK] = ACTIONS(3762), - [anon_sym_EQ] = ACTIONS(3762), - [anon_sym_static] = ACTIONS(3762), - [anon_sym_register] = ACTIONS(3762), - [anon_sym_inline] = ACTIONS(3762), - [anon_sym_thread_local] = ACTIONS(3762), - [anon_sym_const] = ACTIONS(3762), - [anon_sym_volatile] = ACTIONS(3762), - [anon_sym_restrict] = ACTIONS(3762), - [anon_sym__Atomic] = ACTIONS(3762), - [anon_sym_mutable] = ACTIONS(3762), - [anon_sym_constexpr] = ACTIONS(3762), - [anon_sym_constinit] = ACTIONS(3762), - [anon_sym_consteval] = ACTIONS(3762), - [anon_sym_QMARK] = ACTIONS(3764), - [anon_sym_STAR_EQ] = ACTIONS(3764), - [anon_sym_SLASH_EQ] = ACTIONS(3764), - [anon_sym_PERCENT_EQ] = ACTIONS(3764), - [anon_sym_PLUS_EQ] = ACTIONS(3764), - [anon_sym_DASH_EQ] = ACTIONS(3764), - [anon_sym_LT_LT_EQ] = ACTIONS(3764), - [anon_sym_GT_GT_EQ] = ACTIONS(3764), - [anon_sym_AMP_EQ] = ACTIONS(3764), - [anon_sym_CARET_EQ] = ACTIONS(3764), - [anon_sym_PIPE_EQ] = ACTIONS(3764), - [anon_sym_LT_EQ_GT] = ACTIONS(3764), - [anon_sym_or] = ACTIONS(3762), - [anon_sym_and] = ACTIONS(3762), - [anon_sym_bitor] = ACTIONS(3762), - [anon_sym_xor] = ACTIONS(3762), - [anon_sym_bitand] = ACTIONS(3762), - [anon_sym_not_eq] = ACTIONS(3762), - [anon_sym_DASH_DASH] = ACTIONS(3764), - [anon_sym_PLUS_PLUS] = ACTIONS(3764), - [anon_sym_DOT] = ACTIONS(3762), - [anon_sym_DASH_GT] = ACTIONS(3762), + [sym_identifier] = ACTIONS(3722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3724), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_RPAREN] = ACTIONS(3724), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3727), + [anon_sym_DASH] = ACTIONS(3729), + [anon_sym_PLUS] = ACTIONS(3729), + [anon_sym_STAR] = ACTIONS(3731), + [anon_sym_SLASH] = ACTIONS(3729), + [anon_sym_PERCENT] = ACTIONS(3729), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3729), + [anon_sym_CARET] = ACTIONS(3729), + [anon_sym_AMP] = ACTIONS(3731), + [anon_sym_EQ_EQ] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_GT] = ACTIONS(3729), + [anon_sym_GT_EQ] = ACTIONS(3734), + [anon_sym_LT_EQ] = ACTIONS(3729), + [anon_sym_LT] = ACTIONS(3729), + [anon_sym_LT_LT] = ACTIONS(3729), + [anon_sym_GT_GT] = ACTIONS(3729), + [anon_sym_extern] = ACTIONS(3722), + [anon_sym___attribute__] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3727), + [anon_sym___declspec] = ACTIONS(3722), + [anon_sym___based] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3727), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(3731), + [anon_sym_static] = ACTIONS(3722), + [anon_sym_register] = ACTIONS(3722), + [anon_sym_inline] = ACTIONS(3722), + [anon_sym_thread_local] = ACTIONS(3722), + [anon_sym_input] = ACTIONS(3722), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_volatile] = ACTIONS(3722), + [anon_sym_restrict] = ACTIONS(3722), + [anon_sym__Atomic] = ACTIONS(3722), + [anon_sym_mutable] = ACTIONS(3722), + [anon_sym_constexpr] = ACTIONS(3722), + [anon_sym_constinit] = ACTIONS(3722), + [anon_sym_consteval] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_STAR_EQ] = ACTIONS(3734), + [anon_sym_SLASH_EQ] = ACTIONS(3734), + [anon_sym_PERCENT_EQ] = ACTIONS(3734), + [anon_sym_PLUS_EQ] = ACTIONS(3734), + [anon_sym_DASH_EQ] = ACTIONS(3734), + [anon_sym_LT_LT_EQ] = ACTIONS(3734), + [anon_sym_GT_GT_EQ] = ACTIONS(3734), + [anon_sym_AMP_EQ] = ACTIONS(3734), + [anon_sym_CARET_EQ] = ACTIONS(3734), + [anon_sym_PIPE_EQ] = ACTIONS(3734), + [anon_sym_LT_EQ_GT] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3729), + [anon_sym_and] = ACTIONS(3729), + [anon_sym_bitor] = ACTIONS(3729), + [anon_sym_xor] = ACTIONS(3729), + [anon_sym_bitand] = ACTIONS(3729), + [anon_sym_not_eq] = ACTIONS(3729), + [anon_sym_DASH_DASH] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3729), + [anon_sym_DASH_GT] = ACTIONS(3729), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3762), - [anon_sym_decltype] = ACTIONS(3762), - [anon_sym_virtual] = ACTIONS(3762), - [anon_sym_template] = ACTIONS(3762), - [anon_sym_operator] = ACTIONS(3762), - [anon_sym_DOT_STAR] = ACTIONS(3764), - [anon_sym_DASH_GT_STAR] = ACTIONS(3764), + [sym_auto] = ACTIONS(3722), + [anon_sym_decltype] = ACTIONS(3722), + [anon_sym_virtual] = ACTIONS(3722), + [anon_sym_template] = ACTIONS(3722), + [anon_sym_operator] = ACTIONS(3722), + [anon_sym_DOT_STAR] = ACTIONS(3734), + [anon_sym_DASH_GT_STAR] = ACTIONS(3734), }, [1759] = { - [sym_identifier] = ACTIONS(3750), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3752), - [anon_sym_COMMA] = ACTIONS(3752), - [anon_sym_RPAREN] = ACTIONS(3752), - [anon_sym_LPAREN2] = ACTIONS(3752), - [anon_sym_TILDE] = ACTIONS(3752), - [anon_sym_DASH] = ACTIONS(3750), - [anon_sym_PLUS] = ACTIONS(3750), - [anon_sym_STAR] = ACTIONS(3750), - [anon_sym_SLASH] = ACTIONS(3750), - [anon_sym_PERCENT] = ACTIONS(3750), - [anon_sym_PIPE_PIPE] = ACTIONS(3752), - [anon_sym_AMP_AMP] = ACTIONS(3752), - [anon_sym_PIPE] = ACTIONS(3750), - [anon_sym_CARET] = ACTIONS(3750), - [anon_sym_AMP] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3752), - [anon_sym_BANG_EQ] = ACTIONS(3752), - [anon_sym_GT] = ACTIONS(3750), - [anon_sym_GT_EQ] = ACTIONS(3752), - [anon_sym_LT_EQ] = ACTIONS(3750), - [anon_sym_LT] = ACTIONS(3750), - [anon_sym_LT_LT] = ACTIONS(3750), - [anon_sym_GT_GT] = ACTIONS(3750), - [anon_sym_extern] = ACTIONS(3750), - [anon_sym___attribute__] = ACTIONS(3750), - [anon_sym_COLON_COLON] = ACTIONS(3752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3752), - [anon_sym___declspec] = ACTIONS(3750), - [anon_sym___based] = ACTIONS(3750), - [anon_sym_LBRACE] = ACTIONS(3752), - [anon_sym_LBRACK] = ACTIONS(3750), - [anon_sym_EQ] = ACTIONS(3750), - [anon_sym_static] = ACTIONS(3750), - [anon_sym_register] = ACTIONS(3750), - [anon_sym_inline] = ACTIONS(3750), - [anon_sym_thread_local] = ACTIONS(3750), - [anon_sym_const] = ACTIONS(3750), - [anon_sym_volatile] = ACTIONS(3750), - [anon_sym_restrict] = ACTIONS(3750), - [anon_sym__Atomic] = ACTIONS(3750), - [anon_sym_mutable] = ACTIONS(3750), - [anon_sym_constexpr] = ACTIONS(3750), - [anon_sym_constinit] = ACTIONS(3750), - [anon_sym_consteval] = ACTIONS(3750), - [anon_sym_QMARK] = ACTIONS(3752), - [anon_sym_STAR_EQ] = ACTIONS(3752), - [anon_sym_SLASH_EQ] = ACTIONS(3752), - [anon_sym_PERCENT_EQ] = ACTIONS(3752), - [anon_sym_PLUS_EQ] = ACTIONS(3752), - [anon_sym_DASH_EQ] = ACTIONS(3752), - [anon_sym_LT_LT_EQ] = ACTIONS(3752), - [anon_sym_GT_GT_EQ] = ACTIONS(3752), - [anon_sym_AMP_EQ] = ACTIONS(3752), - [anon_sym_CARET_EQ] = ACTIONS(3752), - [anon_sym_PIPE_EQ] = ACTIONS(3752), - [anon_sym_LT_EQ_GT] = ACTIONS(3752), - [anon_sym_or] = ACTIONS(3750), - [anon_sym_and] = ACTIONS(3750), - [anon_sym_bitor] = ACTIONS(3750), - [anon_sym_xor] = ACTIONS(3750), - [anon_sym_bitand] = ACTIONS(3750), - [anon_sym_not_eq] = ACTIONS(3750), - [anon_sym_DASH_DASH] = ACTIONS(3752), - [anon_sym_PLUS_PLUS] = ACTIONS(3752), - [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_DASH_GT] = ACTIONS(3750), + [sym_identifier] = ACTIONS(3698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3700), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(3700), + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3698), + [anon_sym_SLASH] = ACTIONS(3698), + [anon_sym_PERCENT] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3700), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE] = ACTIONS(3698), + [anon_sym_CARET] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_EQ_EQ] = ACTIONS(3700), + [anon_sym_BANG_EQ] = ACTIONS(3700), + [anon_sym_GT] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3700), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3698), + [anon_sym_LT_LT] = ACTIONS(3698), + [anon_sym_GT_GT] = ACTIONS(3698), + [anon_sym_extern] = ACTIONS(3698), + [anon_sym___attribute__] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3700), + [anon_sym___declspec] = ACTIONS(3698), + [anon_sym___based] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_EQ] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_register] = ACTIONS(3698), + [anon_sym_inline] = ACTIONS(3698), + [anon_sym_thread_local] = ACTIONS(3698), + [anon_sym_input] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3698), + [anon_sym_restrict] = ACTIONS(3698), + [anon_sym__Atomic] = ACTIONS(3698), + [anon_sym_mutable] = ACTIONS(3698), + [anon_sym_constexpr] = ACTIONS(3698), + [anon_sym_constinit] = ACTIONS(3698), + [anon_sym_consteval] = ACTIONS(3698), + [anon_sym_QMARK] = ACTIONS(3700), + [anon_sym_STAR_EQ] = ACTIONS(3700), + [anon_sym_SLASH_EQ] = ACTIONS(3700), + [anon_sym_PERCENT_EQ] = ACTIONS(3700), + [anon_sym_PLUS_EQ] = ACTIONS(3700), + [anon_sym_DASH_EQ] = ACTIONS(3700), + [anon_sym_LT_LT_EQ] = ACTIONS(3700), + [anon_sym_GT_GT_EQ] = ACTIONS(3700), + [anon_sym_AMP_EQ] = ACTIONS(3700), + [anon_sym_CARET_EQ] = ACTIONS(3700), + [anon_sym_PIPE_EQ] = ACTIONS(3700), + [anon_sym_LT_EQ_GT] = ACTIONS(3700), + [anon_sym_or] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3698), + [anon_sym_bitor] = ACTIONS(3698), + [anon_sym_xor] = ACTIONS(3698), + [anon_sym_bitand] = ACTIONS(3698), + [anon_sym_not_eq] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_DASH_GT] = ACTIONS(3698), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3750), - [anon_sym_decltype] = ACTIONS(3750), - [anon_sym_virtual] = ACTIONS(3750), - [anon_sym_template] = ACTIONS(3750), - [anon_sym_operator] = ACTIONS(3750), - [anon_sym_DOT_STAR] = ACTIONS(3752), - [anon_sym_DASH_GT_STAR] = ACTIONS(3752), + [sym_auto] = ACTIONS(3698), + [anon_sym_decltype] = ACTIONS(3698), + [anon_sym_virtual] = ACTIONS(3698), + [anon_sym_template] = ACTIONS(3698), + [anon_sym_operator] = ACTIONS(3698), + [anon_sym_DOT_STAR] = ACTIONS(3700), + [anon_sym_DASH_GT_STAR] = ACTIONS(3700), }, [1760] = { - [sym_identifier] = ACTIONS(3766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3768), - [anon_sym_COMMA] = ACTIONS(3768), - [anon_sym_RPAREN] = ACTIONS(3768), - [anon_sym_LPAREN2] = ACTIONS(3768), - [anon_sym_TILDE] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3773), - [anon_sym_PLUS] = ACTIONS(3773), - [anon_sym_STAR] = ACTIONS(3775), - [anon_sym_SLASH] = ACTIONS(3773), - [anon_sym_PERCENT] = ACTIONS(3773), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_AMP_AMP] = ACTIONS(3768), - [anon_sym_PIPE] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3773), - [anon_sym_AMP] = ACTIONS(3775), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_GT] = ACTIONS(3773), - [anon_sym_GT_EQ] = ACTIONS(3778), - [anon_sym_LT_EQ] = ACTIONS(3773), - [anon_sym_LT] = ACTIONS(3773), - [anon_sym_LT_LT] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3773), - [anon_sym_extern] = ACTIONS(3766), - [anon_sym___attribute__] = ACTIONS(3766), - [anon_sym_COLON_COLON] = ACTIONS(3771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3771), - [anon_sym___declspec] = ACTIONS(3766), - [anon_sym___based] = ACTIONS(3766), - [anon_sym_LBRACE] = ACTIONS(3771), - [anon_sym_LBRACK] = ACTIONS(3775), - [anon_sym_EQ] = ACTIONS(3775), - [anon_sym_static] = ACTIONS(3766), - [anon_sym_register] = ACTIONS(3766), - [anon_sym_inline] = ACTIONS(3766), - [anon_sym_thread_local] = ACTIONS(3766), - [anon_sym_const] = ACTIONS(3766), - [anon_sym_volatile] = ACTIONS(3766), - [anon_sym_restrict] = ACTIONS(3766), - [anon_sym__Atomic] = ACTIONS(3766), - [anon_sym_mutable] = ACTIONS(3766), - [anon_sym_constexpr] = ACTIONS(3766), - [anon_sym_constinit] = ACTIONS(3766), - [anon_sym_consteval] = ACTIONS(3766), - [anon_sym_QMARK] = ACTIONS(3778), - [anon_sym_STAR_EQ] = ACTIONS(3778), - [anon_sym_SLASH_EQ] = ACTIONS(3778), - [anon_sym_PERCENT_EQ] = ACTIONS(3778), - [anon_sym_PLUS_EQ] = ACTIONS(3778), - [anon_sym_DASH_EQ] = ACTIONS(3778), - [anon_sym_LT_LT_EQ] = ACTIONS(3778), - [anon_sym_GT_GT_EQ] = ACTIONS(3778), - [anon_sym_AMP_EQ] = ACTIONS(3778), - [anon_sym_CARET_EQ] = ACTIONS(3778), - [anon_sym_PIPE_EQ] = ACTIONS(3778), - [anon_sym_LT_EQ_GT] = ACTIONS(3778), - [anon_sym_or] = ACTIONS(3773), - [anon_sym_and] = ACTIONS(3773), - [anon_sym_bitor] = ACTIONS(3773), - [anon_sym_xor] = ACTIONS(3773), - [anon_sym_bitand] = ACTIONS(3773), - [anon_sym_not_eq] = ACTIONS(3773), - [anon_sym_DASH_DASH] = ACTIONS(3778), - [anon_sym_PLUS_PLUS] = ACTIONS(3778), - [anon_sym_DOT] = ACTIONS(3773), - [anon_sym_DASH_GT] = ACTIONS(3773), + [sym_identifier] = ACTIONS(3580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3582), + [anon_sym_COMMA] = ACTIONS(3582), + [anon_sym_RPAREN] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_STAR] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_PERCENT] = ACTIONS(3580), + [anon_sym_PIPE_PIPE] = ACTIONS(3582), + [anon_sym_AMP_AMP] = ACTIONS(3582), + [anon_sym_PIPE] = ACTIONS(3580), + [anon_sym_CARET] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3580), + [anon_sym_EQ_EQ] = ACTIONS(3582), + [anon_sym_BANG_EQ] = ACTIONS(3582), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_GT_EQ] = ACTIONS(3582), + [anon_sym_LT_EQ] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_LT_LT] = ACTIONS(3580), + [anon_sym_GT_GT] = ACTIONS(3580), + [anon_sym_extern] = ACTIONS(3580), + [anon_sym___attribute__] = ACTIONS(3580), + [anon_sym_COLON_COLON] = ACTIONS(3582), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3582), + [anon_sym___declspec] = ACTIONS(3580), + [anon_sym___based] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_register] = ACTIONS(3580), + [anon_sym_inline] = ACTIONS(3580), + [anon_sym_thread_local] = ACTIONS(3580), + [anon_sym_input] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3580), + [anon_sym_restrict] = ACTIONS(3580), + [anon_sym__Atomic] = ACTIONS(3580), + [anon_sym_mutable] = ACTIONS(3580), + [anon_sym_constexpr] = ACTIONS(3580), + [anon_sym_constinit] = ACTIONS(3580), + [anon_sym_consteval] = ACTIONS(3580), + [anon_sym_QMARK] = ACTIONS(3582), + [anon_sym_STAR_EQ] = ACTIONS(3582), + [anon_sym_SLASH_EQ] = ACTIONS(3582), + [anon_sym_PERCENT_EQ] = ACTIONS(3582), + [anon_sym_PLUS_EQ] = ACTIONS(3582), + [anon_sym_DASH_EQ] = ACTIONS(3582), + [anon_sym_LT_LT_EQ] = ACTIONS(3582), + [anon_sym_GT_GT_EQ] = ACTIONS(3582), + [anon_sym_AMP_EQ] = ACTIONS(3582), + [anon_sym_CARET_EQ] = ACTIONS(3582), + [anon_sym_PIPE_EQ] = ACTIONS(3582), + [anon_sym_LT_EQ_GT] = ACTIONS(3582), + [anon_sym_or] = ACTIONS(3580), + [anon_sym_and] = ACTIONS(3580), + [anon_sym_bitor] = ACTIONS(3580), + [anon_sym_xor] = ACTIONS(3580), + [anon_sym_bitand] = ACTIONS(3580), + [anon_sym_not_eq] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_DASH_GT] = ACTIONS(3580), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3766), - [anon_sym_decltype] = ACTIONS(3766), - [anon_sym_virtual] = ACTIONS(3766), - [anon_sym_template] = ACTIONS(3766), - [anon_sym_operator] = ACTIONS(3766), - [anon_sym_DOT_STAR] = ACTIONS(3778), - [anon_sym_DASH_GT_STAR] = ACTIONS(3778), + [sym_auto] = ACTIONS(3580), + [anon_sym_decltype] = ACTIONS(3580), + [anon_sym_virtual] = ACTIONS(3580), + [anon_sym_template] = ACTIONS(3580), + [anon_sym_operator] = ACTIONS(3580), + [anon_sym_DOT_STAR] = ACTIONS(3582), + [anon_sym_DASH_GT_STAR] = ACTIONS(3582), }, [1761] = { - [sym_identifier] = ACTIONS(3744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3746), - [anon_sym_COMMA] = ACTIONS(3746), - [anon_sym_RPAREN] = ACTIONS(3746), - [anon_sym_LPAREN2] = ACTIONS(3746), - [anon_sym_TILDE] = ACTIONS(3746), - [anon_sym_DASH] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(3744), - [anon_sym_STAR] = ACTIONS(3744), - [anon_sym_SLASH] = ACTIONS(3744), - [anon_sym_PERCENT] = ACTIONS(3744), - [anon_sym_PIPE_PIPE] = ACTIONS(3746), - [anon_sym_AMP_AMP] = ACTIONS(3746), - [anon_sym_PIPE] = ACTIONS(3744), - [anon_sym_CARET] = ACTIONS(3744), - [anon_sym_AMP] = ACTIONS(3744), - [anon_sym_EQ_EQ] = ACTIONS(3746), - [anon_sym_BANG_EQ] = ACTIONS(3746), - [anon_sym_GT] = ACTIONS(3744), - [anon_sym_GT_EQ] = ACTIONS(3746), - [anon_sym_LT_EQ] = ACTIONS(3744), - [anon_sym_LT] = ACTIONS(3744), - [anon_sym_LT_LT] = ACTIONS(3744), - [anon_sym_GT_GT] = ACTIONS(3744), - [anon_sym_extern] = ACTIONS(3744), - [anon_sym___attribute__] = ACTIONS(3744), - [anon_sym_COLON_COLON] = ACTIONS(3746), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3746), - [anon_sym___declspec] = ACTIONS(3744), - [anon_sym___based] = ACTIONS(3744), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_LBRACK] = ACTIONS(3744), - [anon_sym_EQ] = ACTIONS(3744), - [anon_sym_static] = ACTIONS(3744), - [anon_sym_register] = ACTIONS(3744), - [anon_sym_inline] = ACTIONS(3744), - [anon_sym_thread_local] = ACTIONS(3744), - [anon_sym_const] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3744), - [anon_sym_restrict] = ACTIONS(3744), - [anon_sym__Atomic] = ACTIONS(3744), - [anon_sym_mutable] = ACTIONS(3744), - [anon_sym_constexpr] = ACTIONS(3744), - [anon_sym_constinit] = ACTIONS(3744), - [anon_sym_consteval] = ACTIONS(3744), - [anon_sym_QMARK] = ACTIONS(3746), - [anon_sym_STAR_EQ] = ACTIONS(3746), - [anon_sym_SLASH_EQ] = ACTIONS(3746), - [anon_sym_PERCENT_EQ] = ACTIONS(3746), - [anon_sym_PLUS_EQ] = ACTIONS(3746), - [anon_sym_DASH_EQ] = ACTIONS(3746), - [anon_sym_LT_LT_EQ] = ACTIONS(3746), - [anon_sym_GT_GT_EQ] = ACTIONS(3746), - [anon_sym_AMP_EQ] = ACTIONS(3746), - [anon_sym_CARET_EQ] = ACTIONS(3746), - [anon_sym_PIPE_EQ] = ACTIONS(3746), - [anon_sym_LT_EQ_GT] = ACTIONS(3746), - [anon_sym_or] = ACTIONS(3744), - [anon_sym_and] = ACTIONS(3744), - [anon_sym_bitor] = ACTIONS(3744), - [anon_sym_xor] = ACTIONS(3744), - [anon_sym_bitand] = ACTIONS(3744), - [anon_sym_not_eq] = ACTIONS(3744), - [anon_sym_DASH_DASH] = ACTIONS(3746), - [anon_sym_PLUS_PLUS] = ACTIONS(3746), - [anon_sym_DOT] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3744), + [sym_identifier] = ACTIONS(3682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3684), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_RPAREN] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_SLASH] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE] = ACTIONS(3682), + [anon_sym_CARET] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3682), + [anon_sym_GT_EQ] = ACTIONS(3684), + [anon_sym_LT_EQ] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(3682), + [anon_sym_LT_LT] = ACTIONS(3682), + [anon_sym_GT_GT] = ACTIONS(3682), + [anon_sym_extern] = ACTIONS(3682), + [anon_sym___attribute__] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3684), + [anon_sym___declspec] = ACTIONS(3682), + [anon_sym___based] = ACTIONS(3682), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3682), + [anon_sym_static] = ACTIONS(3682), + [anon_sym_register] = ACTIONS(3682), + [anon_sym_inline] = ACTIONS(3682), + [anon_sym_thread_local] = ACTIONS(3682), + [anon_sym_input] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), + [anon_sym_volatile] = ACTIONS(3682), + [anon_sym_restrict] = ACTIONS(3682), + [anon_sym__Atomic] = ACTIONS(3682), + [anon_sym_mutable] = ACTIONS(3682), + [anon_sym_constexpr] = ACTIONS(3682), + [anon_sym_constinit] = ACTIONS(3682), + [anon_sym_consteval] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [anon_sym_STAR_EQ] = ACTIONS(3684), + [anon_sym_SLASH_EQ] = ACTIONS(3684), + [anon_sym_PERCENT_EQ] = ACTIONS(3684), + [anon_sym_PLUS_EQ] = ACTIONS(3684), + [anon_sym_DASH_EQ] = ACTIONS(3684), + [anon_sym_LT_LT_EQ] = ACTIONS(3684), + [anon_sym_GT_GT_EQ] = ACTIONS(3684), + [anon_sym_AMP_EQ] = ACTIONS(3684), + [anon_sym_CARET_EQ] = ACTIONS(3684), + [anon_sym_PIPE_EQ] = ACTIONS(3684), + [anon_sym_LT_EQ_GT] = ACTIONS(3684), + [anon_sym_or] = ACTIONS(3682), + [anon_sym_and] = ACTIONS(3682), + [anon_sym_bitor] = ACTIONS(3682), + [anon_sym_xor] = ACTIONS(3682), + [anon_sym_bitand] = ACTIONS(3682), + [anon_sym_not_eq] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_DASH_GT] = ACTIONS(3682), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3744), - [anon_sym_decltype] = ACTIONS(3744), - [anon_sym_virtual] = ACTIONS(3744), - [anon_sym_template] = ACTIONS(3744), - [anon_sym_operator] = ACTIONS(3744), - [anon_sym_DOT_STAR] = ACTIONS(3746), - [anon_sym_DASH_GT_STAR] = ACTIONS(3746), + [sym_auto] = ACTIONS(3682), + [anon_sym_decltype] = ACTIONS(3682), + [anon_sym_virtual] = ACTIONS(3682), + [anon_sym_template] = ACTIONS(3682), + [anon_sym_operator] = ACTIONS(3682), + [anon_sym_DOT_STAR] = ACTIONS(3684), + [anon_sym_DASH_GT_STAR] = ACTIONS(3684), }, [1762] = { - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3795), - [anon_sym_TILDE] = ACTIONS(3795), - [anon_sym_DASH] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(3793), - [anon_sym_STAR] = ACTIONS(3793), - [anon_sym_SLASH] = ACTIONS(3793), - [anon_sym_PERCENT] = ACTIONS(3793), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3795), - [anon_sym_PIPE] = ACTIONS(3793), - [anon_sym_CARET] = ACTIONS(3793), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3793), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3793), - [anon_sym_LT] = ACTIONS(3793), - [anon_sym_LT_LT] = ACTIONS(3793), - [anon_sym_GT_GT] = ACTIONS(3793), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3795), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3795), - [anon_sym_LBRACK] = ACTIONS(3793), - [anon_sym_EQ] = ACTIONS(3793), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3795), - [anon_sym_SLASH_EQ] = ACTIONS(3795), - [anon_sym_PERCENT_EQ] = ACTIONS(3795), - [anon_sym_PLUS_EQ] = ACTIONS(3795), - [anon_sym_DASH_EQ] = ACTIONS(3795), - [anon_sym_LT_LT_EQ] = ACTIONS(3795), - [anon_sym_GT_GT_EQ] = ACTIONS(3795), - [anon_sym_AMP_EQ] = ACTIONS(3795), - [anon_sym_CARET_EQ] = ACTIONS(3795), - [anon_sym_PIPE_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3793), - [anon_sym_and] = ACTIONS(3793), - [anon_sym_bitor] = ACTIONS(3793), - [anon_sym_xor] = ACTIONS(3793), - [anon_sym_bitand] = ACTIONS(3793), - [anon_sym_not_eq] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3793), - [anon_sym_DASH_GT] = ACTIONS(3793), + [sym_identifier] = ACTIONS(3706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3708), + [anon_sym_COMMA] = ACTIONS(3708), + [anon_sym_RPAREN] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3708), + [anon_sym_TILDE] = ACTIONS(3708), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_PIPE_PIPE] = ACTIONS(3708), + [anon_sym_AMP_AMP] = ACTIONS(3708), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3708), + [anon_sym_BANG_EQ] = ACTIONS(3708), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_extern] = ACTIONS(3706), + [anon_sym___attribute__] = ACTIONS(3706), + [anon_sym_COLON_COLON] = ACTIONS(3708), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3708), + [anon_sym___declspec] = ACTIONS(3706), + [anon_sym___based] = ACTIONS(3706), + [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_EQ] = ACTIONS(3706), + [anon_sym_static] = ACTIONS(3706), + [anon_sym_register] = ACTIONS(3706), + [anon_sym_inline] = ACTIONS(3706), + [anon_sym_thread_local] = ACTIONS(3706), + [anon_sym_input] = ACTIONS(3706), + [anon_sym_const] = ACTIONS(3706), + [anon_sym_volatile] = ACTIONS(3706), + [anon_sym_restrict] = ACTIONS(3706), + [anon_sym__Atomic] = ACTIONS(3706), + [anon_sym_mutable] = ACTIONS(3706), + [anon_sym_constexpr] = ACTIONS(3706), + [anon_sym_constinit] = ACTIONS(3706), + [anon_sym_consteval] = ACTIONS(3706), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_STAR_EQ] = ACTIONS(3708), + [anon_sym_SLASH_EQ] = ACTIONS(3708), + [anon_sym_PERCENT_EQ] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3708), + [anon_sym_DASH_EQ] = ACTIONS(3708), + [anon_sym_LT_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_GT_EQ] = ACTIONS(3708), + [anon_sym_AMP_EQ] = ACTIONS(3708), + [anon_sym_CARET_EQ] = ACTIONS(3708), + [anon_sym_PIPE_EQ] = ACTIONS(3708), + [anon_sym_LT_EQ_GT] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_bitor] = ACTIONS(3706), + [anon_sym_xor] = ACTIONS(3706), + [anon_sym_bitand] = ACTIONS(3706), + [anon_sym_not_eq] = ACTIONS(3706), + [anon_sym_DASH_DASH] = ACTIONS(3708), + [anon_sym_PLUS_PLUS] = ACTIONS(3708), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3706), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), - [anon_sym_DOT_STAR] = ACTIONS(3795), - [anon_sym_DASH_GT_STAR] = ACTIONS(3795), + [sym_auto] = ACTIONS(3706), + [anon_sym_decltype] = ACTIONS(3706), + [anon_sym_virtual] = ACTIONS(3706), + [anon_sym_template] = ACTIONS(3706), + [anon_sym_operator] = ACTIONS(3706), + [anon_sym_DOT_STAR] = ACTIONS(3708), + [anon_sym_DASH_GT_STAR] = ACTIONS(3708), }, [1763] = { - [sym__declaration_modifiers] = STATE(2193), - [sym__declaration_specifiers] = STATE(3399), - [sym_attribute_specifier] = STATE(2193), - [sym_attribute_declaration] = STATE(2193), - [sym_ms_declspec_modifier] = STATE(2193), - [sym__abstract_declarator] = STATE(5666), + [sym__declaration_modifiers] = STATE(2091), + [sym__declaration_specifiers] = STATE(3432), + [sym_attribute_specifier] = STATE(2091), + [sym_attribute_declaration] = STATE(2091), + [sym_ms_declspec_modifier] = STATE(2091), + [sym__abstract_declarator] = STATE(5809), [sym_abstract_parenthesized_declarator] = STATE(5097), [sym_abstract_pointer_declarator] = STATE(5097), [sym_abstract_function_declarator] = STATE(5097), [sym_abstract_array_declarator] = STATE(5097), - [sym_storage_class_specifier] = STATE(2193), - [sym_type_qualifier] = STATE(2193), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym_storage_class_specifier] = STATE(2091), + [sym_type_qualifier] = STATE(2091), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_parameter_list] = STATE(4350), - [sym_parameter_declaration] = STATE(5821), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(2193), - [sym_dependent_type] = STATE(3504), - [sym_optional_parameter_declaration] = STATE(5821), - [sym_variadic_parameter_declaration] = STATE(5821), + [sym_parameter_declaration] = STATE(5829), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2091), + [sym_dependent_type] = STATE(3448), + [sym_optional_parameter_declaration] = STATE(5829), + [sym_variadic_parameter_declaration] = STATE(5829), [sym_abstract_reference_declarator] = STATE(5097), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(5385), - [sym_qualified_type_identifier] = STATE(3479), - [aux_sym__declaration_specifiers_repeat1] = STATE(2193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_qualified_type_identifier] = STATE(3443), + [aux_sym__declaration_specifiers_repeat1] = STATE(2091), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(3825), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3100), - [anon_sym_RPAREN] = ACTIONS(3102), - [anon_sym_LPAREN2] = ACTIONS(3827), - [anon_sym_STAR] = ACTIONS(3829), - [anon_sym_AMP_AMP] = ACTIONS(3831), - [anon_sym_AMP] = ACTIONS(3833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1465), + [anon_sym_RPAREN] = ACTIONS(3827), + [anon_sym_LPAREN2] = ACTIONS(3829), + [anon_sym_STAR] = ACTIONS(3831), + [anon_sym_AMP_AMP] = ACTIONS(3833), + [anon_sym_AMP] = ACTIONS(3835), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3835), + [anon_sym_COLON_COLON] = ACTIONS(3837), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3837), + [anon_sym_LBRACK] = ACTIONS(3839), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -217419,7 +218510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(1431), [anon_sym_class] = ACTIONS(1433), [anon_sym_struct] = ACTIONS(1435), @@ -217432,57 +218523,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_template] = ACTIONS(976), }, [1764] = { - [sym__declaration_modifiers] = STATE(2193), - [sym__declaration_specifiers] = STATE(3399), - [sym_attribute_specifier] = STATE(2193), - [sym_attribute_declaration] = STATE(2193), - [sym_ms_declspec_modifier] = STATE(2193), - [sym__abstract_declarator] = STATE(5809), + [sym__declaration_modifiers] = STATE(2091), + [sym__declaration_specifiers] = STATE(3432), + [sym_attribute_specifier] = STATE(2091), + [sym_attribute_declaration] = STATE(2091), + [sym_ms_declspec_modifier] = STATE(2091), + [sym__abstract_declarator] = STATE(5666), [sym_abstract_parenthesized_declarator] = STATE(5097), [sym_abstract_pointer_declarator] = STATE(5097), [sym_abstract_function_declarator] = STATE(5097), [sym_abstract_array_declarator] = STATE(5097), - [sym_storage_class_specifier] = STATE(2193), - [sym_type_qualifier] = STATE(2193), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [sym_storage_class_specifier] = STATE(2091), + [sym_type_qualifier] = STATE(2091), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_parameter_list] = STATE(4350), - [sym_parameter_declaration] = STATE(5829), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(2193), - [sym_dependent_type] = STATE(3504), - [sym_optional_parameter_declaration] = STATE(5829), - [sym_variadic_parameter_declaration] = STATE(5829), + [sym_parameter_declaration] = STATE(5821), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2091), + [sym_dependent_type] = STATE(3448), + [sym_optional_parameter_declaration] = STATE(5821), + [sym_variadic_parameter_declaration] = STATE(5821), [sym_abstract_reference_declarator] = STATE(5097), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(5385), - [sym_qualified_type_identifier] = STATE(3479), - [aux_sym__declaration_specifiers_repeat1] = STATE(2193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_qualified_type_identifier] = STATE(3443), + [aux_sym__declaration_specifiers_repeat1] = STATE(2091), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(3825), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1465), - [anon_sym_RPAREN] = ACTIONS(3839), - [anon_sym_LPAREN2] = ACTIONS(3827), - [anon_sym_STAR] = ACTIONS(3829), - [anon_sym_AMP_AMP] = ACTIONS(3831), - [anon_sym_AMP] = ACTIONS(3833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3100), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3829), + [anon_sym_STAR] = ACTIONS(3831), + [anon_sym_AMP_AMP] = ACTIONS(3833), + [anon_sym_AMP] = ACTIONS(3835), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3835), + [anon_sym_COLON_COLON] = ACTIONS(3837), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3837), + [anon_sym_LBRACK] = ACTIONS(3839), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -217495,7 +218587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(1431), [anon_sym_class] = ACTIONS(1433), [anon_sym_struct] = ACTIONS(1435), @@ -217508,688 +218600,697 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_template] = ACTIONS(976), }, [1765] = { - [sym_identifier] = ACTIONS(2825), - [anon_sym_LPAREN2] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2825), - [anon_sym_PLUS] = ACTIONS(2825), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_extern] = ACTIONS(2825), - [anon_sym___attribute__] = ACTIONS(2825), - [anon_sym_COLON_COLON] = ACTIONS(2827), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2827), - [anon_sym___declspec] = ACTIONS(2825), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(2825), - [anon_sym_register] = ACTIONS(2825), - [anon_sym_inline] = ACTIONS(2825), - [anon_sym_thread_local] = ACTIONS(2825), - [anon_sym_const] = ACTIONS(2825), - [anon_sym_volatile] = ACTIONS(2825), - [anon_sym_restrict] = ACTIONS(2825), - [anon_sym__Atomic] = ACTIONS(2825), - [anon_sym_mutable] = ACTIONS(2825), - [anon_sym_constexpr] = ACTIONS(2825), - [anon_sym_constinit] = ACTIONS(2825), - [anon_sym_consteval] = ACTIONS(2825), - [anon_sym_signed] = ACTIONS(2825), - [anon_sym_unsigned] = ACTIONS(2825), - [anon_sym_long] = ACTIONS(2825), - [anon_sym_short] = ACTIONS(2825), - [sym_primitive_type] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2825), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2825), - [anon_sym_union] = ACTIONS(2825), - [anon_sym_not] = ACTIONS(2825), - [anon_sym_compl] = ACTIONS(2825), - [anon_sym_DASH_DASH] = ACTIONS(2827), - [anon_sym_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_sizeof] = ACTIONS(2825), - [sym_number_literal] = ACTIONS(2827), - [anon_sym_L_SQUOTE] = ACTIONS(2827), - [anon_sym_u_SQUOTE] = ACTIONS(2827), - [anon_sym_U_SQUOTE] = ACTIONS(2827), - [anon_sym_u8_SQUOTE] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2827), - [anon_sym_L_DQUOTE] = ACTIONS(2827), - [anon_sym_u_DQUOTE] = ACTIONS(2827), - [anon_sym_U_DQUOTE] = ACTIONS(2827), - [anon_sym_u8_DQUOTE] = ACTIONS(2827), - [anon_sym_DQUOTE] = ACTIONS(2827), - [sym_true] = ACTIONS(2825), - [sym_false] = ACTIONS(2825), - [sym_null] = ACTIONS(2825), + [sym_identifier] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_extern] = ACTIONS(2645), + [anon_sym___attribute__] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2647), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2647), + [anon_sym___declspec] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_static] = ACTIONS(2645), + [anon_sym_register] = ACTIONS(2645), + [anon_sym_inline] = ACTIONS(2645), + [anon_sym_thread_local] = ACTIONS(2645), + [anon_sym_input] = ACTIONS(2645), + [anon_sym_const] = ACTIONS(2645), + [anon_sym_volatile] = ACTIONS(2645), + [anon_sym_restrict] = ACTIONS(2645), + [anon_sym__Atomic] = ACTIONS(2645), + [anon_sym_mutable] = ACTIONS(2645), + [anon_sym_constexpr] = ACTIONS(2645), + [anon_sym_constinit] = ACTIONS(2645), + [anon_sym_consteval] = ACTIONS(2645), + [anon_sym_signed] = ACTIONS(2645), + [anon_sym_unsigned] = ACTIONS(2645), + [anon_sym_long] = ACTIONS(2645), + [anon_sym_short] = ACTIONS(2645), + [sym_primitive_type] = ACTIONS(2645), + [anon_sym_enum] = ACTIONS(2645), + [anon_sym_class] = ACTIONS(2645), + [anon_sym_struct] = ACTIONS(2645), + [anon_sym_union] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_compl] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_sizeof] = ACTIONS(2645), + [sym_number_literal] = ACTIONS(2647), + [anon_sym_L_SQUOTE] = ACTIONS(2647), + [anon_sym_u_SQUOTE] = ACTIONS(2647), + [anon_sym_U_SQUOTE] = ACTIONS(2647), + [anon_sym_u8_SQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_L_DQUOTE] = ACTIONS(2647), + [anon_sym_u_DQUOTE] = ACTIONS(2647), + [anon_sym_U_DQUOTE] = ACTIONS(2647), + [anon_sym_u8_DQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [sym_true] = ACTIONS(2645), + [sym_false] = ACTIONS(2645), + [sym_null] = ACTIONS(2645), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2825), - [anon_sym_decltype] = ACTIONS(2825), - [anon_sym_virtual] = ACTIONS(2825), - [anon_sym_typename] = ACTIONS(2825), - [anon_sym_template] = ACTIONS(2825), - [anon_sym_delete] = ACTIONS(2825), - [anon_sym_R_DQUOTE] = ACTIONS(2827), - [anon_sym_LR_DQUOTE] = ACTIONS(2827), - [anon_sym_uR_DQUOTE] = ACTIONS(2827), - [anon_sym_UR_DQUOTE] = ACTIONS(2827), - [anon_sym_u8R_DQUOTE] = ACTIONS(2827), - [anon_sym_co_await] = ACTIONS(2825), - [anon_sym_new] = ACTIONS(2825), - [anon_sym_requires] = ACTIONS(2825), - [sym_this] = ACTIONS(2825), - [sym_nullptr] = ACTIONS(2825), + [sym_auto] = ACTIONS(2645), + [anon_sym_decltype] = ACTIONS(2645), + [anon_sym_virtual] = ACTIONS(2645), + [anon_sym_typename] = ACTIONS(2645), + [anon_sym_template] = ACTIONS(2645), + [anon_sym_delete] = ACTIONS(2645), + [anon_sym_R_DQUOTE] = ACTIONS(2647), + [anon_sym_LR_DQUOTE] = ACTIONS(2647), + [anon_sym_uR_DQUOTE] = ACTIONS(2647), + [anon_sym_UR_DQUOTE] = ACTIONS(2647), + [anon_sym_u8R_DQUOTE] = ACTIONS(2647), + [anon_sym_co_await] = ACTIONS(2645), + [anon_sym_new] = ACTIONS(2645), + [anon_sym_requires] = ACTIONS(2645), + [sym_this] = ACTIONS(2645), + [sym_nullptr] = ACTIONS(2645), }, [1766] = { - [sym_identifier] = ACTIONS(2920), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2920), - [anon_sym_PLUS] = ACTIONS(2920), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2920), - [anon_sym___attribute__] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2920), - [anon_sym_LBRACK] = ACTIONS(2920), - [anon_sym_static] = ACTIONS(2920), - [anon_sym_register] = ACTIONS(2920), - [anon_sym_inline] = ACTIONS(2920), - [anon_sym_thread_local] = ACTIONS(2920), - [anon_sym_const] = ACTIONS(2920), - [anon_sym_volatile] = ACTIONS(2920), - [anon_sym_restrict] = ACTIONS(2920), - [anon_sym__Atomic] = ACTIONS(2920), - [anon_sym_mutable] = ACTIONS(2920), - [anon_sym_constexpr] = ACTIONS(2920), - [anon_sym_constinit] = ACTIONS(2920), - [anon_sym_consteval] = ACTIONS(2920), - [anon_sym_signed] = ACTIONS(2920), - [anon_sym_unsigned] = ACTIONS(2920), - [anon_sym_long] = ACTIONS(2920), - [anon_sym_short] = ACTIONS(2920), - [sym_primitive_type] = ACTIONS(2920), - [anon_sym_enum] = ACTIONS(2920), - [anon_sym_class] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_union] = ACTIONS(2920), - [anon_sym_not] = ACTIONS(2920), - [anon_sym_compl] = ACTIONS(2920), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_sizeof] = ACTIONS(2920), - [sym_number_literal] = ACTIONS(2925), - [anon_sym_L_SQUOTE] = ACTIONS(2925), - [anon_sym_u_SQUOTE] = ACTIONS(2925), - [anon_sym_U_SQUOTE] = ACTIONS(2925), - [anon_sym_u8_SQUOTE] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_L_DQUOTE] = ACTIONS(2925), - [anon_sym_u_DQUOTE] = ACTIONS(2925), - [anon_sym_U_DQUOTE] = ACTIONS(2925), - [anon_sym_u8_DQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_true] = ACTIONS(2920), - [sym_false] = ACTIONS(2920), - [sym_null] = ACTIONS(2920), + [sym_identifier] = ACTIONS(2950), + [anon_sym_LPAREN2] = ACTIONS(2955), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2950), + [anon_sym_PLUS] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2955), + [anon_sym_extern] = ACTIONS(2950), + [anon_sym___attribute__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2955), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), + [anon_sym___declspec] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_register] = ACTIONS(2950), + [anon_sym_inline] = ACTIONS(2950), + [anon_sym_thread_local] = ACTIONS(2950), + [anon_sym_input] = ACTIONS(2950), + [anon_sym_const] = ACTIONS(2950), + [anon_sym_volatile] = ACTIONS(2950), + [anon_sym_restrict] = ACTIONS(2950), + [anon_sym__Atomic] = ACTIONS(2950), + [anon_sym_mutable] = ACTIONS(2950), + [anon_sym_constexpr] = ACTIONS(2950), + [anon_sym_constinit] = ACTIONS(2950), + [anon_sym_consteval] = ACTIONS(2950), + [anon_sym_signed] = ACTIONS(2950), + [anon_sym_unsigned] = ACTIONS(2950), + [anon_sym_long] = ACTIONS(2950), + [anon_sym_short] = ACTIONS(2950), + [sym_primitive_type] = ACTIONS(2950), + [anon_sym_enum] = ACTIONS(2950), + [anon_sym_class] = ACTIONS(2950), + [anon_sym_struct] = ACTIONS(2950), + [anon_sym_union] = ACTIONS(2950), + [anon_sym_not] = ACTIONS(2950), + [anon_sym_compl] = ACTIONS(2950), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_sizeof] = ACTIONS(2950), + [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(2950), + [sym_false] = ACTIONS(2950), + [sym_null] = ACTIONS(2950), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2920), - [anon_sym_decltype] = ACTIONS(2920), - [anon_sym_virtual] = ACTIONS(2920), - [anon_sym_typename] = ACTIONS(2920), - [anon_sym_template] = ACTIONS(2920), - [anon_sym_delete] = ACTIONS(2920), - [anon_sym_R_DQUOTE] = ACTIONS(2925), - [anon_sym_LR_DQUOTE] = ACTIONS(2925), - [anon_sym_uR_DQUOTE] = ACTIONS(2925), - [anon_sym_UR_DQUOTE] = ACTIONS(2925), - [anon_sym_u8R_DQUOTE] = ACTIONS(2925), - [anon_sym_co_await] = ACTIONS(2920), - [anon_sym_new] = ACTIONS(2920), - [anon_sym_requires] = ACTIONS(2920), - [sym_this] = ACTIONS(2920), - [sym_nullptr] = ACTIONS(2920), + [sym_auto] = ACTIONS(2950), + [anon_sym_decltype] = ACTIONS(2950), + [anon_sym_virtual] = ACTIONS(2950), + [anon_sym_typename] = ACTIONS(2950), + [anon_sym_template] = ACTIONS(2950), + [anon_sym_delete] = ACTIONS(2950), + [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(2950), + [anon_sym_new] = ACTIONS(2950), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2950), + [sym_nullptr] = ACTIONS(2950), }, [1767] = { - [sym_identifier] = ACTIONS(3758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3760), - [anon_sym_COMMA] = ACTIONS(3760), - [anon_sym_RPAREN] = ACTIONS(3760), - [anon_sym_LPAREN2] = ACTIONS(3760), - [anon_sym_TILDE] = ACTIONS(3760), - [anon_sym_DASH] = ACTIONS(3758), - [anon_sym_PLUS] = ACTIONS(3758), - [anon_sym_STAR] = ACTIONS(3760), - [anon_sym_SLASH] = ACTIONS(3758), - [anon_sym_PERCENT] = ACTIONS(3760), - [anon_sym_PIPE_PIPE] = ACTIONS(3760), - [anon_sym_AMP_AMP] = ACTIONS(3760), - [anon_sym_PIPE] = ACTIONS(3758), - [anon_sym_CARET] = ACTIONS(3760), - [anon_sym_AMP] = ACTIONS(3758), - [anon_sym_EQ_EQ] = ACTIONS(3760), - [anon_sym_BANG_EQ] = ACTIONS(3760), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_GT_EQ] = ACTIONS(3760), - [anon_sym_LT_EQ] = ACTIONS(3758), - [anon_sym_LT] = ACTIONS(3758), - [anon_sym_LT_LT] = ACTIONS(3760), - [anon_sym_GT_GT] = ACTIONS(3760), - [anon_sym_SEMI] = ACTIONS(3760), - [anon_sym_extern] = ACTIONS(3758), - [anon_sym___attribute__] = ACTIONS(3758), - [anon_sym_COLON_COLON] = ACTIONS(3760), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), - [anon_sym___declspec] = ACTIONS(3758), - [anon_sym___based] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3760), - [anon_sym_RBRACE] = ACTIONS(3760), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_EQ] = ACTIONS(3758), - [anon_sym_static] = ACTIONS(3758), - [anon_sym_register] = ACTIONS(3758), - [anon_sym_inline] = ACTIONS(3758), - [anon_sym_thread_local] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_constinit] = ACTIONS(3758), - [anon_sym_consteval] = ACTIONS(3758), - [anon_sym_COLON] = ACTIONS(3758), - [anon_sym_QMARK] = ACTIONS(3760), - [anon_sym_LT_EQ_GT] = ACTIONS(3760), - [anon_sym_or] = ACTIONS(3758), - [anon_sym_and] = ACTIONS(3758), - [anon_sym_bitor] = ACTIONS(3758), - [anon_sym_xor] = ACTIONS(3758), - [anon_sym_bitand] = ACTIONS(3758), - [anon_sym_not_eq] = ACTIONS(3758), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_DOT] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3760), + [sym_identifier] = ACTIONS(3580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3582), + [anon_sym_COMMA] = ACTIONS(3582), + [anon_sym_RPAREN] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_STAR] = ACTIONS(3582), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_PERCENT] = ACTIONS(3582), + [anon_sym_PIPE_PIPE] = ACTIONS(3582), + [anon_sym_AMP_AMP] = ACTIONS(3582), + [anon_sym_PIPE] = ACTIONS(3580), + [anon_sym_CARET] = ACTIONS(3582), + [anon_sym_AMP] = ACTIONS(3580), + [anon_sym_EQ_EQ] = ACTIONS(3582), + [anon_sym_BANG_EQ] = ACTIONS(3582), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_GT_EQ] = ACTIONS(3582), + [anon_sym_LT_EQ] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_LT_LT] = ACTIONS(3582), + [anon_sym_GT_GT] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_extern] = ACTIONS(3580), + [anon_sym___attribute__] = ACTIONS(3580), + [anon_sym_COLON_COLON] = ACTIONS(3582), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3582), + [anon_sym___declspec] = ACTIONS(3580), + [anon_sym___based] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_RBRACE] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_register] = ACTIONS(3580), + [anon_sym_inline] = ACTIONS(3580), + [anon_sym_thread_local] = ACTIONS(3580), + [anon_sym_input] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3580), + [anon_sym_restrict] = ACTIONS(3580), + [anon_sym__Atomic] = ACTIONS(3580), + [anon_sym_mutable] = ACTIONS(3580), + [anon_sym_constexpr] = ACTIONS(3580), + [anon_sym_constinit] = ACTIONS(3580), + [anon_sym_consteval] = ACTIONS(3580), + [anon_sym_COLON] = ACTIONS(3580), + [anon_sym_QMARK] = ACTIONS(3582), + [anon_sym_LT_EQ_GT] = ACTIONS(3582), + [anon_sym_or] = ACTIONS(3580), + [anon_sym_and] = ACTIONS(3580), + [anon_sym_bitor] = ACTIONS(3580), + [anon_sym_xor] = ACTIONS(3580), + [anon_sym_bitand] = ACTIONS(3580), + [anon_sym_not_eq] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_DASH_GT] = ACTIONS(3582), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3758), - [anon_sym_decltype] = ACTIONS(3758), - [anon_sym_final] = ACTIONS(3758), - [anon_sym_override] = ACTIONS(3758), - [anon_sym_virtual] = ACTIONS(3758), - [anon_sym_template] = ACTIONS(3758), - [anon_sym_operator] = ACTIONS(3758), - [anon_sym_try] = ACTIONS(3758), - [anon_sym_requires] = ACTIONS(3758), + [sym_auto] = ACTIONS(3580), + [anon_sym_decltype] = ACTIONS(3580), + [anon_sym_final] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_virtual] = ACTIONS(3580), + [anon_sym_template] = ACTIONS(3580), + [anon_sym_operator] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_requires] = ACTIONS(3580), }, [1768] = { - [sym_identifier] = ACTIONS(3750), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3752), - [anon_sym_COMMA] = ACTIONS(3752), - [anon_sym_RPAREN] = ACTIONS(3752), - [anon_sym_LPAREN2] = ACTIONS(3752), - [anon_sym_TILDE] = ACTIONS(3752), - [anon_sym_DASH] = ACTIONS(3750), - [anon_sym_PLUS] = ACTIONS(3750), - [anon_sym_STAR] = ACTIONS(3752), - [anon_sym_SLASH] = ACTIONS(3750), - [anon_sym_PERCENT] = ACTIONS(3752), - [anon_sym_PIPE_PIPE] = ACTIONS(3752), - [anon_sym_AMP_AMP] = ACTIONS(3752), - [anon_sym_PIPE] = ACTIONS(3750), - [anon_sym_CARET] = ACTIONS(3752), - [anon_sym_AMP] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3752), - [anon_sym_BANG_EQ] = ACTIONS(3752), - [anon_sym_GT] = ACTIONS(3750), - [anon_sym_GT_EQ] = ACTIONS(3752), - [anon_sym_LT_EQ] = ACTIONS(3750), - [anon_sym_LT] = ACTIONS(3750), - [anon_sym_LT_LT] = ACTIONS(3752), - [anon_sym_GT_GT] = ACTIONS(3752), - [anon_sym_SEMI] = ACTIONS(3752), - [anon_sym_extern] = ACTIONS(3750), - [anon_sym___attribute__] = ACTIONS(3750), - [anon_sym_COLON_COLON] = ACTIONS(3752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3752), - [anon_sym___declspec] = ACTIONS(3750), - [anon_sym___based] = ACTIONS(3750), - [anon_sym_LBRACE] = ACTIONS(3752), - [anon_sym_RBRACE] = ACTIONS(3752), - [anon_sym_LBRACK] = ACTIONS(3750), - [anon_sym_EQ] = ACTIONS(3750), - [anon_sym_static] = ACTIONS(3750), - [anon_sym_register] = ACTIONS(3750), - [anon_sym_inline] = ACTIONS(3750), - [anon_sym_thread_local] = ACTIONS(3750), - [anon_sym_const] = ACTIONS(3750), - [anon_sym_volatile] = ACTIONS(3750), - [anon_sym_restrict] = ACTIONS(3750), - [anon_sym__Atomic] = ACTIONS(3750), - [anon_sym_mutable] = ACTIONS(3750), - [anon_sym_constexpr] = ACTIONS(3750), - [anon_sym_constinit] = ACTIONS(3750), - [anon_sym_consteval] = ACTIONS(3750), - [anon_sym_COLON] = ACTIONS(3750), - [anon_sym_QMARK] = ACTIONS(3752), - [anon_sym_LT_EQ_GT] = ACTIONS(3752), - [anon_sym_or] = ACTIONS(3750), - [anon_sym_and] = ACTIONS(3750), - [anon_sym_bitor] = ACTIONS(3750), - [anon_sym_xor] = ACTIONS(3750), - [anon_sym_bitand] = ACTIONS(3750), - [anon_sym_not_eq] = ACTIONS(3750), - [anon_sym_DASH_DASH] = ACTIONS(3752), - [anon_sym_PLUS_PLUS] = ACTIONS(3752), - [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_DASH_GT] = ACTIONS(3752), + [sym_identifier] = ACTIONS(3576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3578), + [anon_sym_SLASH] = ACTIONS(3576), + [anon_sym_PERCENT] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(3576), + [anon_sym_CARET] = ACTIONS(3578), + [anon_sym_AMP] = ACTIONS(3576), + [anon_sym_EQ_EQ] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_GT] = ACTIONS(3576), + [anon_sym_GT_EQ] = ACTIONS(3578), + [anon_sym_LT_EQ] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(3576), + [anon_sym_LT_LT] = ACTIONS(3578), + [anon_sym_GT_GT] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym_extern] = ACTIONS(3576), + [anon_sym___attribute__] = ACTIONS(3576), + [anon_sym_COLON_COLON] = ACTIONS(3578), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3578), + [anon_sym___declspec] = ACTIONS(3576), + [anon_sym___based] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_RBRACE] = ACTIONS(3578), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_register] = ACTIONS(3576), + [anon_sym_inline] = ACTIONS(3576), + [anon_sym_thread_local] = ACTIONS(3576), + [anon_sym_input] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_volatile] = ACTIONS(3576), + [anon_sym_restrict] = ACTIONS(3576), + [anon_sym__Atomic] = ACTIONS(3576), + [anon_sym_mutable] = ACTIONS(3576), + [anon_sym_constexpr] = ACTIONS(3576), + [anon_sym_constinit] = ACTIONS(3576), + [anon_sym_consteval] = ACTIONS(3576), + [anon_sym_COLON] = ACTIONS(3576), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_LT_EQ_GT] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3576), + [anon_sym_and] = ACTIONS(3576), + [anon_sym_bitor] = ACTIONS(3576), + [anon_sym_xor] = ACTIONS(3576), + [anon_sym_bitand] = ACTIONS(3576), + [anon_sym_not_eq] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3576), + [anon_sym_DASH_GT] = ACTIONS(3578), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3750), - [anon_sym_decltype] = ACTIONS(3750), - [anon_sym_final] = ACTIONS(3750), - [anon_sym_override] = ACTIONS(3750), - [anon_sym_virtual] = ACTIONS(3750), - [anon_sym_template] = ACTIONS(3750), - [anon_sym_operator] = ACTIONS(3750), - [anon_sym_try] = ACTIONS(3750), - [anon_sym_requires] = ACTIONS(3750), + [sym_auto] = ACTIONS(3576), + [anon_sym_decltype] = ACTIONS(3576), + [anon_sym_final] = ACTIONS(3576), + [anon_sym_override] = ACTIONS(3576), + [anon_sym_virtual] = ACTIONS(3576), + [anon_sym_template] = ACTIONS(3576), + [anon_sym_operator] = ACTIONS(3576), + [anon_sym_try] = ACTIONS(3576), + [anon_sym_requires] = ACTIONS(3576), }, [1769] = { - [sym_identifier] = ACTIONS(3744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3746), - [anon_sym_COMMA] = ACTIONS(3746), - [anon_sym_RPAREN] = ACTIONS(3746), - [anon_sym_LPAREN2] = ACTIONS(3746), - [anon_sym_TILDE] = ACTIONS(3746), - [anon_sym_DASH] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(3744), - [anon_sym_STAR] = ACTIONS(3746), - [anon_sym_SLASH] = ACTIONS(3744), - [anon_sym_PERCENT] = ACTIONS(3746), - [anon_sym_PIPE_PIPE] = ACTIONS(3746), - [anon_sym_AMP_AMP] = ACTIONS(3746), - [anon_sym_PIPE] = ACTIONS(3744), - [anon_sym_CARET] = ACTIONS(3746), - [anon_sym_AMP] = ACTIONS(3744), - [anon_sym_EQ_EQ] = ACTIONS(3746), - [anon_sym_BANG_EQ] = ACTIONS(3746), - [anon_sym_GT] = ACTIONS(3744), - [anon_sym_GT_EQ] = ACTIONS(3746), - [anon_sym_LT_EQ] = ACTIONS(3744), - [anon_sym_LT] = ACTIONS(3744), - [anon_sym_LT_LT] = ACTIONS(3746), - [anon_sym_GT_GT] = ACTIONS(3746), - [anon_sym_SEMI] = ACTIONS(3746), - [anon_sym_extern] = ACTIONS(3744), - [anon_sym___attribute__] = ACTIONS(3744), - [anon_sym_COLON_COLON] = ACTIONS(3746), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3746), - [anon_sym___declspec] = ACTIONS(3744), - [anon_sym___based] = ACTIONS(3744), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_RBRACE] = ACTIONS(3746), - [anon_sym_LBRACK] = ACTIONS(3744), - [anon_sym_EQ] = ACTIONS(3744), - [anon_sym_static] = ACTIONS(3744), - [anon_sym_register] = ACTIONS(3744), - [anon_sym_inline] = ACTIONS(3744), - [anon_sym_thread_local] = ACTIONS(3744), - [anon_sym_const] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3744), - [anon_sym_restrict] = ACTIONS(3744), - [anon_sym__Atomic] = ACTIONS(3744), - [anon_sym_mutable] = ACTIONS(3744), - [anon_sym_constexpr] = ACTIONS(3744), - [anon_sym_constinit] = ACTIONS(3744), - [anon_sym_consteval] = ACTIONS(3744), - [anon_sym_COLON] = ACTIONS(3744), - [anon_sym_QMARK] = ACTIONS(3746), - [anon_sym_LT_EQ_GT] = ACTIONS(3746), - [anon_sym_or] = ACTIONS(3744), - [anon_sym_and] = ACTIONS(3744), - [anon_sym_bitor] = ACTIONS(3744), - [anon_sym_xor] = ACTIONS(3744), - [anon_sym_bitand] = ACTIONS(3744), - [anon_sym_not_eq] = ACTIONS(3744), - [anon_sym_DASH_DASH] = ACTIONS(3746), - [anon_sym_PLUS_PLUS] = ACTIONS(3746), - [anon_sym_DOT] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3746), + [sym_identifier] = ACTIONS(3698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3700), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(3700), + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3700), + [anon_sym_SLASH] = ACTIONS(3698), + [anon_sym_PERCENT] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3700), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE] = ACTIONS(3698), + [anon_sym_CARET] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_EQ_EQ] = ACTIONS(3700), + [anon_sym_BANG_EQ] = ACTIONS(3700), + [anon_sym_GT] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3700), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3698), + [anon_sym_LT_LT] = ACTIONS(3700), + [anon_sym_GT_GT] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3700), + [anon_sym_extern] = ACTIONS(3698), + [anon_sym___attribute__] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3700), + [anon_sym___declspec] = ACTIONS(3698), + [anon_sym___based] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_RBRACE] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_EQ] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_register] = ACTIONS(3698), + [anon_sym_inline] = ACTIONS(3698), + [anon_sym_thread_local] = ACTIONS(3698), + [anon_sym_input] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3698), + [anon_sym_restrict] = ACTIONS(3698), + [anon_sym__Atomic] = ACTIONS(3698), + [anon_sym_mutable] = ACTIONS(3698), + [anon_sym_constexpr] = ACTIONS(3698), + [anon_sym_constinit] = ACTIONS(3698), + [anon_sym_consteval] = ACTIONS(3698), + [anon_sym_COLON] = ACTIONS(3698), + [anon_sym_QMARK] = ACTIONS(3700), + [anon_sym_LT_EQ_GT] = ACTIONS(3700), + [anon_sym_or] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3698), + [anon_sym_bitor] = ACTIONS(3698), + [anon_sym_xor] = ACTIONS(3698), + [anon_sym_bitand] = ACTIONS(3698), + [anon_sym_not_eq] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_DASH_GT] = ACTIONS(3700), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3744), - [anon_sym_decltype] = ACTIONS(3744), - [anon_sym_final] = ACTIONS(3744), - [anon_sym_override] = ACTIONS(3744), - [anon_sym_virtual] = ACTIONS(3744), - [anon_sym_template] = ACTIONS(3744), - [anon_sym_operator] = ACTIONS(3744), - [anon_sym_try] = ACTIONS(3744), - [anon_sym_requires] = ACTIONS(3744), + [sym_auto] = ACTIONS(3698), + [anon_sym_decltype] = ACTIONS(3698), + [anon_sym_final] = ACTIONS(3698), + [anon_sym_override] = ACTIONS(3698), + [anon_sym_virtual] = ACTIONS(3698), + [anon_sym_template] = ACTIONS(3698), + [anon_sym_operator] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_requires] = ACTIONS(3698), }, [1770] = { - [sym_identifier] = ACTIONS(3762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), - [anon_sym_COMMA] = ACTIONS(3764), - [anon_sym_RPAREN] = ACTIONS(3764), - [anon_sym_LPAREN2] = ACTIONS(3764), - [anon_sym_TILDE] = ACTIONS(3764), - [anon_sym_DASH] = ACTIONS(3762), - [anon_sym_PLUS] = ACTIONS(3762), - [anon_sym_STAR] = ACTIONS(3764), - [anon_sym_SLASH] = ACTIONS(3762), - [anon_sym_PERCENT] = ACTIONS(3764), - [anon_sym_PIPE_PIPE] = ACTIONS(3764), - [anon_sym_AMP_AMP] = ACTIONS(3764), - [anon_sym_PIPE] = ACTIONS(3762), - [anon_sym_CARET] = ACTIONS(3764), - [anon_sym_AMP] = ACTIONS(3762), - [anon_sym_EQ_EQ] = ACTIONS(3764), - [anon_sym_BANG_EQ] = ACTIONS(3764), - [anon_sym_GT] = ACTIONS(3762), - [anon_sym_GT_EQ] = ACTIONS(3764), - [anon_sym_LT_EQ] = ACTIONS(3762), - [anon_sym_LT] = ACTIONS(3762), - [anon_sym_LT_LT] = ACTIONS(3764), - [anon_sym_GT_GT] = ACTIONS(3764), - [anon_sym_SEMI] = ACTIONS(3764), - [anon_sym_extern] = ACTIONS(3762), - [anon_sym___attribute__] = ACTIONS(3762), - [anon_sym_COLON_COLON] = ACTIONS(3764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3764), - [anon_sym___declspec] = ACTIONS(3762), - [anon_sym___based] = ACTIONS(3762), - [anon_sym_LBRACE] = ACTIONS(3764), - [anon_sym_RBRACE] = ACTIONS(3764), - [anon_sym_LBRACK] = ACTIONS(3762), - [anon_sym_EQ] = ACTIONS(3762), - [anon_sym_static] = ACTIONS(3762), - [anon_sym_register] = ACTIONS(3762), - [anon_sym_inline] = ACTIONS(3762), - [anon_sym_thread_local] = ACTIONS(3762), - [anon_sym_const] = ACTIONS(3762), - [anon_sym_volatile] = ACTIONS(3762), - [anon_sym_restrict] = ACTIONS(3762), - [anon_sym__Atomic] = ACTIONS(3762), - [anon_sym_mutable] = ACTIONS(3762), - [anon_sym_constexpr] = ACTIONS(3762), - [anon_sym_constinit] = ACTIONS(3762), - [anon_sym_consteval] = ACTIONS(3762), - [anon_sym_COLON] = ACTIONS(3762), - [anon_sym_QMARK] = ACTIONS(3764), - [anon_sym_LT_EQ_GT] = ACTIONS(3764), - [anon_sym_or] = ACTIONS(3762), - [anon_sym_and] = ACTIONS(3762), - [anon_sym_bitor] = ACTIONS(3762), - [anon_sym_xor] = ACTIONS(3762), - [anon_sym_bitand] = ACTIONS(3762), - [anon_sym_not_eq] = ACTIONS(3762), - [anon_sym_DASH_DASH] = ACTIONS(3764), - [anon_sym_PLUS_PLUS] = ACTIONS(3764), - [anon_sym_DOT] = ACTIONS(3762), - [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_identifier] = ACTIONS(3609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3611), + [anon_sym_RPAREN] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3611), + [anon_sym_SLASH] = ACTIONS(3609), + [anon_sym_PERCENT] = ACTIONS(3611), + [anon_sym_PIPE_PIPE] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_PIPE] = ACTIONS(3609), + [anon_sym_CARET] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_EQ_EQ] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_GT] = ACTIONS(3609), + [anon_sym_GT_EQ] = ACTIONS(3611), + [anon_sym_LT_EQ] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_LT_LT] = ACTIONS(3611), + [anon_sym_GT_GT] = ACTIONS(3611), + [anon_sym_SEMI] = ACTIONS(3611), + [anon_sym_extern] = ACTIONS(3609), + [anon_sym___attribute__] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3611), + [anon_sym___declspec] = ACTIONS(3609), + [anon_sym___based] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_RBRACE] = ACTIONS(3611), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_register] = ACTIONS(3609), + [anon_sym_inline] = ACTIONS(3609), + [anon_sym_thread_local] = ACTIONS(3609), + [anon_sym_input] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3609), + [anon_sym_restrict] = ACTIONS(3609), + [anon_sym__Atomic] = ACTIONS(3609), + [anon_sym_mutable] = ACTIONS(3609), + [anon_sym_constexpr] = ACTIONS(3609), + [anon_sym_constinit] = ACTIONS(3609), + [anon_sym_consteval] = ACTIONS(3609), + [anon_sym_COLON] = ACTIONS(3609), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_LT_EQ_GT] = ACTIONS(3611), + [anon_sym_or] = ACTIONS(3609), + [anon_sym_and] = ACTIONS(3609), + [anon_sym_bitor] = ACTIONS(3609), + [anon_sym_xor] = ACTIONS(3609), + [anon_sym_bitand] = ACTIONS(3609), + [anon_sym_not_eq] = ACTIONS(3609), + [anon_sym_DASH_DASH] = ACTIONS(3611), + [anon_sym_PLUS_PLUS] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3609), + [anon_sym_DASH_GT] = ACTIONS(3611), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3762), - [anon_sym_decltype] = ACTIONS(3762), - [anon_sym_final] = ACTIONS(3762), - [anon_sym_override] = ACTIONS(3762), - [anon_sym_virtual] = ACTIONS(3762), - [anon_sym_template] = ACTIONS(3762), - [anon_sym_operator] = ACTIONS(3762), - [anon_sym_try] = ACTIONS(3762), - [anon_sym_requires] = ACTIONS(3762), + [sym_auto] = ACTIONS(3609), + [anon_sym_decltype] = ACTIONS(3609), + [anon_sym_final] = ACTIONS(3609), + [anon_sym_override] = ACTIONS(3609), + [anon_sym_virtual] = ACTIONS(3609), + [anon_sym_template] = ACTIONS(3609), + [anon_sym_operator] = ACTIONS(3609), + [anon_sym_try] = ACTIONS(3609), + [anon_sym_requires] = ACTIONS(3609), }, [1771] = { - [sym_identifier] = ACTIONS(3736), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3738), - [anon_sym_COMMA] = ACTIONS(3738), - [anon_sym_RPAREN] = ACTIONS(3738), - [anon_sym_LPAREN2] = ACTIONS(3738), - [anon_sym_TILDE] = ACTIONS(3738), - [anon_sym_DASH] = ACTIONS(3736), - [anon_sym_PLUS] = ACTIONS(3736), - [anon_sym_STAR] = ACTIONS(3738), - [anon_sym_SLASH] = ACTIONS(3736), - [anon_sym_PERCENT] = ACTIONS(3738), - [anon_sym_PIPE_PIPE] = ACTIONS(3738), - [anon_sym_AMP_AMP] = ACTIONS(3738), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_CARET] = ACTIONS(3738), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_EQ_EQ] = ACTIONS(3738), - [anon_sym_BANG_EQ] = ACTIONS(3738), - [anon_sym_GT] = ACTIONS(3736), - [anon_sym_GT_EQ] = ACTIONS(3738), - [anon_sym_LT_EQ] = ACTIONS(3736), - [anon_sym_LT] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3738), - [anon_sym_GT_GT] = ACTIONS(3738), - [anon_sym_SEMI] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3736), - [anon_sym___attribute__] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3738), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3738), - [anon_sym___declspec] = ACTIONS(3736), - [anon_sym___based] = ACTIONS(3736), - [anon_sym_LBRACE] = ACTIONS(3738), - [anon_sym_RBRACE] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3736), - [anon_sym_EQ] = ACTIONS(3736), - [anon_sym_static] = ACTIONS(3736), - [anon_sym_register] = ACTIONS(3736), - [anon_sym_inline] = ACTIONS(3736), - [anon_sym_thread_local] = ACTIONS(3736), - [anon_sym_const] = ACTIONS(3736), - [anon_sym_volatile] = ACTIONS(3736), - [anon_sym_restrict] = ACTIONS(3736), - [anon_sym__Atomic] = ACTIONS(3736), - [anon_sym_mutable] = ACTIONS(3736), - [anon_sym_constexpr] = ACTIONS(3736), - [anon_sym_constinit] = ACTIONS(3736), - [anon_sym_consteval] = ACTIONS(3736), - [anon_sym_COLON] = ACTIONS(3736), - [anon_sym_QMARK] = ACTIONS(3738), - [anon_sym_LT_EQ_GT] = ACTIONS(3738), - [anon_sym_or] = ACTIONS(3736), - [anon_sym_and] = ACTIONS(3736), - [anon_sym_bitor] = ACTIONS(3736), - [anon_sym_xor] = ACTIONS(3736), - [anon_sym_bitand] = ACTIONS(3736), - [anon_sym_not_eq] = ACTIONS(3736), - [anon_sym_DASH_DASH] = ACTIONS(3738), - [anon_sym_PLUS_PLUS] = ACTIONS(3738), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_DASH_GT] = ACTIONS(3738), + [sym_identifier] = ACTIONS(3690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3692), + [anon_sym_COMMA] = ACTIONS(3692), + [anon_sym_RPAREN] = ACTIONS(3692), + [anon_sym_LPAREN2] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3692), + [anon_sym_SLASH] = ACTIONS(3690), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_PIPE_PIPE] = ACTIONS(3692), + [anon_sym_AMP_AMP] = ACTIONS(3692), + [anon_sym_PIPE] = ACTIONS(3690), + [anon_sym_CARET] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3690), + [anon_sym_EQ_EQ] = ACTIONS(3692), + [anon_sym_BANG_EQ] = ACTIONS(3692), + [anon_sym_GT] = ACTIONS(3690), + [anon_sym_GT_EQ] = ACTIONS(3692), + [anon_sym_LT_EQ] = ACTIONS(3690), + [anon_sym_LT] = ACTIONS(3690), + [anon_sym_LT_LT] = ACTIONS(3692), + [anon_sym_GT_GT] = ACTIONS(3692), + [anon_sym_SEMI] = ACTIONS(3692), + [anon_sym_extern] = ACTIONS(3690), + [anon_sym___attribute__] = ACTIONS(3690), + [anon_sym_COLON_COLON] = ACTIONS(3692), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3692), + [anon_sym___declspec] = ACTIONS(3690), + [anon_sym___based] = ACTIONS(3690), + [anon_sym_LBRACE] = ACTIONS(3692), + [anon_sym_RBRACE] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3690), + [anon_sym_EQ] = ACTIONS(3690), + [anon_sym_static] = ACTIONS(3690), + [anon_sym_register] = ACTIONS(3690), + [anon_sym_inline] = ACTIONS(3690), + [anon_sym_thread_local] = ACTIONS(3690), + [anon_sym_input] = ACTIONS(3690), + [anon_sym_const] = ACTIONS(3690), + [anon_sym_volatile] = ACTIONS(3690), + [anon_sym_restrict] = ACTIONS(3690), + [anon_sym__Atomic] = ACTIONS(3690), + [anon_sym_mutable] = ACTIONS(3690), + [anon_sym_constexpr] = ACTIONS(3690), + [anon_sym_constinit] = ACTIONS(3690), + [anon_sym_consteval] = ACTIONS(3690), + [anon_sym_COLON] = ACTIONS(3690), + [anon_sym_QMARK] = ACTIONS(3692), + [anon_sym_LT_EQ_GT] = ACTIONS(3692), + [anon_sym_or] = ACTIONS(3690), + [anon_sym_and] = ACTIONS(3690), + [anon_sym_bitor] = ACTIONS(3690), + [anon_sym_xor] = ACTIONS(3690), + [anon_sym_bitand] = ACTIONS(3690), + [anon_sym_not_eq] = ACTIONS(3690), + [anon_sym_DASH_DASH] = ACTIONS(3692), + [anon_sym_PLUS_PLUS] = ACTIONS(3692), + [anon_sym_DOT] = ACTIONS(3690), + [anon_sym_DASH_GT] = ACTIONS(3692), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3736), - [anon_sym_decltype] = ACTIONS(3736), - [anon_sym_final] = ACTIONS(3736), - [anon_sym_override] = ACTIONS(3736), - [anon_sym_virtual] = ACTIONS(3736), - [anon_sym_template] = ACTIONS(3736), - [anon_sym_operator] = ACTIONS(3736), - [anon_sym_try] = ACTIONS(3736), - [anon_sym_requires] = ACTIONS(3736), + [sym_auto] = ACTIONS(3690), + [anon_sym_decltype] = ACTIONS(3690), + [anon_sym_final] = ACTIONS(3690), + [anon_sym_override] = ACTIONS(3690), + [anon_sym_virtual] = ACTIONS(3690), + [anon_sym_template] = ACTIONS(3690), + [anon_sym_operator] = ACTIONS(3690), + [anon_sym_try] = ACTIONS(3690), + [anon_sym_requires] = ACTIONS(3690), }, [1772] = { - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3795), - [anon_sym_TILDE] = ACTIONS(3795), - [anon_sym_DASH] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(3793), - [anon_sym_STAR] = ACTIONS(3795), - [anon_sym_SLASH] = ACTIONS(3793), - [anon_sym_PERCENT] = ACTIONS(3795), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3795), - [anon_sym_PIPE] = ACTIONS(3793), - [anon_sym_CARET] = ACTIONS(3795), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3793), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3793), - [anon_sym_LT] = ACTIONS(3793), - [anon_sym_LT_LT] = ACTIONS(3795), - [anon_sym_GT_GT] = ACTIONS(3795), - [anon_sym_SEMI] = ACTIONS(3795), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3795), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3795), - [anon_sym_RBRACE] = ACTIONS(3795), - [anon_sym_LBRACK] = ACTIONS(3793), - [anon_sym_EQ] = ACTIONS(3793), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_COLON] = ACTIONS(3793), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3793), - [anon_sym_and] = ACTIONS(3793), - [anon_sym_bitor] = ACTIONS(3793), - [anon_sym_xor] = ACTIONS(3793), - [anon_sym_bitand] = ACTIONS(3793), - [anon_sym_not_eq] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3793), - [anon_sym_DASH_GT] = ACTIONS(3795), + [sym_identifier] = ACTIONS(3706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3708), + [anon_sym_COMMA] = ACTIONS(3708), + [anon_sym_RPAREN] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3708), + [anon_sym_TILDE] = ACTIONS(3708), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3708), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3708), + [anon_sym_PIPE_PIPE] = ACTIONS(3708), + [anon_sym_AMP_AMP] = ACTIONS(3708), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3708), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3708), + [anon_sym_BANG_EQ] = ACTIONS(3708), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3708), + [anon_sym_GT_GT] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3706), + [anon_sym___attribute__] = ACTIONS(3706), + [anon_sym_COLON_COLON] = ACTIONS(3708), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3708), + [anon_sym___declspec] = ACTIONS(3706), + [anon_sym___based] = ACTIONS(3706), + [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_RBRACE] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_EQ] = ACTIONS(3706), + [anon_sym_static] = ACTIONS(3706), + [anon_sym_register] = ACTIONS(3706), + [anon_sym_inline] = ACTIONS(3706), + [anon_sym_thread_local] = ACTIONS(3706), + [anon_sym_input] = ACTIONS(3706), + [anon_sym_const] = ACTIONS(3706), + [anon_sym_volatile] = ACTIONS(3706), + [anon_sym_restrict] = ACTIONS(3706), + [anon_sym__Atomic] = ACTIONS(3706), + [anon_sym_mutable] = ACTIONS(3706), + [anon_sym_constexpr] = ACTIONS(3706), + [anon_sym_constinit] = ACTIONS(3706), + [anon_sym_consteval] = ACTIONS(3706), + [anon_sym_COLON] = ACTIONS(3706), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_LT_EQ_GT] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_bitor] = ACTIONS(3706), + [anon_sym_xor] = ACTIONS(3706), + [anon_sym_bitand] = ACTIONS(3706), + [anon_sym_not_eq] = ACTIONS(3706), + [anon_sym_DASH_DASH] = ACTIONS(3708), + [anon_sym_PLUS_PLUS] = ACTIONS(3708), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3708), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_final] = ACTIONS(3793), - [anon_sym_override] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), - [anon_sym_try] = ACTIONS(3793), - [anon_sym_requires] = ACTIONS(3793), + [sym_auto] = ACTIONS(3706), + [anon_sym_decltype] = ACTIONS(3706), + [anon_sym_final] = ACTIONS(3706), + [anon_sym_override] = ACTIONS(3706), + [anon_sym_virtual] = ACTIONS(3706), + [anon_sym_template] = ACTIONS(3706), + [anon_sym_operator] = ACTIONS(3706), + [anon_sym_try] = ACTIONS(3706), + [anon_sym_requires] = ACTIONS(3706), }, [1773] = { - [sym_identifier] = ACTIONS(3740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3742), - [anon_sym_COMMA] = ACTIONS(3742), - [anon_sym_RPAREN] = ACTIONS(3742), - [anon_sym_LPAREN2] = ACTIONS(3742), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3740), - [anon_sym_PLUS] = ACTIONS(3740), - [anon_sym_STAR] = ACTIONS(3742), - [anon_sym_SLASH] = ACTIONS(3740), - [anon_sym_PERCENT] = ACTIONS(3742), - [anon_sym_PIPE_PIPE] = ACTIONS(3742), - [anon_sym_AMP_AMP] = ACTIONS(3742), - [anon_sym_PIPE] = ACTIONS(3740), - [anon_sym_CARET] = ACTIONS(3742), - [anon_sym_AMP] = ACTIONS(3740), - [anon_sym_EQ_EQ] = ACTIONS(3742), - [anon_sym_BANG_EQ] = ACTIONS(3742), - [anon_sym_GT] = ACTIONS(3740), - [anon_sym_GT_EQ] = ACTIONS(3742), - [anon_sym_LT_EQ] = ACTIONS(3740), - [anon_sym_LT] = ACTIONS(3740), - [anon_sym_LT_LT] = ACTIONS(3742), - [anon_sym_GT_GT] = ACTIONS(3742), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_extern] = ACTIONS(3740), - [anon_sym___attribute__] = ACTIONS(3740), - [anon_sym_COLON_COLON] = ACTIONS(3742), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3742), - [anon_sym___declspec] = ACTIONS(3740), - [anon_sym___based] = ACTIONS(3740), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_RBRACE] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3740), - [anon_sym_EQ] = ACTIONS(3740), - [anon_sym_static] = ACTIONS(3740), - [anon_sym_register] = ACTIONS(3740), - [anon_sym_inline] = ACTIONS(3740), - [anon_sym_thread_local] = ACTIONS(3740), - [anon_sym_const] = ACTIONS(3740), - [anon_sym_volatile] = ACTIONS(3740), - [anon_sym_restrict] = ACTIONS(3740), - [anon_sym__Atomic] = ACTIONS(3740), - [anon_sym_mutable] = ACTIONS(3740), - [anon_sym_constexpr] = ACTIONS(3740), - [anon_sym_constinit] = ACTIONS(3740), - [anon_sym_consteval] = ACTIONS(3740), - [anon_sym_COLON] = ACTIONS(3740), - [anon_sym_QMARK] = ACTIONS(3742), - [anon_sym_LT_EQ_GT] = ACTIONS(3742), - [anon_sym_or] = ACTIONS(3740), - [anon_sym_and] = ACTIONS(3740), - [anon_sym_bitor] = ACTIONS(3740), - [anon_sym_xor] = ACTIONS(3740), - [anon_sym_bitand] = ACTIONS(3740), - [anon_sym_not_eq] = ACTIONS(3740), - [anon_sym_DASH_DASH] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3742), - [anon_sym_DOT] = ACTIONS(3740), - [anon_sym_DASH_GT] = ACTIONS(3742), + [sym_identifier] = ACTIONS(3682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3684), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_RPAREN] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_STAR] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE] = ACTIONS(3682), + [anon_sym_CARET] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3682), + [anon_sym_GT_EQ] = ACTIONS(3684), + [anon_sym_LT_EQ] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(3682), + [anon_sym_LT_LT] = ACTIONS(3684), + [anon_sym_GT_GT] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3682), + [anon_sym___attribute__] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3684), + [anon_sym___declspec] = ACTIONS(3682), + [anon_sym___based] = ACTIONS(3682), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3682), + [anon_sym_static] = ACTIONS(3682), + [anon_sym_register] = ACTIONS(3682), + [anon_sym_inline] = ACTIONS(3682), + [anon_sym_thread_local] = ACTIONS(3682), + [anon_sym_input] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), + [anon_sym_volatile] = ACTIONS(3682), + [anon_sym_restrict] = ACTIONS(3682), + [anon_sym__Atomic] = ACTIONS(3682), + [anon_sym_mutable] = ACTIONS(3682), + [anon_sym_constexpr] = ACTIONS(3682), + [anon_sym_constinit] = ACTIONS(3682), + [anon_sym_consteval] = ACTIONS(3682), + [anon_sym_COLON] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [anon_sym_LT_EQ_GT] = ACTIONS(3684), + [anon_sym_or] = ACTIONS(3682), + [anon_sym_and] = ACTIONS(3682), + [anon_sym_bitor] = ACTIONS(3682), + [anon_sym_xor] = ACTIONS(3682), + [anon_sym_bitand] = ACTIONS(3682), + [anon_sym_not_eq] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_DASH_GT] = ACTIONS(3684), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3740), - [anon_sym_decltype] = ACTIONS(3740), - [anon_sym_final] = ACTIONS(3740), - [anon_sym_override] = ACTIONS(3740), - [anon_sym_virtual] = ACTIONS(3740), - [anon_sym_template] = ACTIONS(3740), - [anon_sym_operator] = ACTIONS(3740), - [anon_sym_try] = ACTIONS(3740), - [anon_sym_requires] = ACTIONS(3740), + [sym_auto] = ACTIONS(3682), + [anon_sym_decltype] = ACTIONS(3682), + [anon_sym_final] = ACTIONS(3682), + [anon_sym_override] = ACTIONS(3682), + [anon_sym_virtual] = ACTIONS(3682), + [anon_sym_template] = ACTIONS(3682), + [anon_sym_operator] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_requires] = ACTIONS(3682), }, [1774] = { - [sym_function_definition] = STATE(999), - [sym_declaration] = STATE(999), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4248), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_ms_call_modifier] = STATE(2166), - [sym_declaration_list] = STATE(999), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3418), + [sym_function_definition] = STATE(1024), + [sym_declaration] = STATE(1024), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4224), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_ms_call_modifier] = STATE(2036), + [sym_declaration_list] = STATE(1024), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3336), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(5396), - [sym_qualified_type_identifier] = STATE(3479), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [sym_identifier] = ACTIONS(2859), + [sym_qualified_type_identifier] = STATE(3443), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(2855), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(2861), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___cdecl] = ACTIONS(49), @@ -218203,6 +219304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -218215,7 +219317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -218228,38 +219330,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_template] = ACTIONS(976), }, [1775] = { - [sym_function_definition] = STATE(488), - [sym_declaration] = STATE(488), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4212), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_ms_call_modifier] = STATE(2136), - [sym_declaration_list] = STATE(488), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3418), + [sym_function_definition] = STATE(940), + [sym_declaration] = STATE(940), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4252), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_ms_call_modifier] = STATE(1997), + [sym_declaration_list] = STATE(940), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3336), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(5396), - [sym_qualified_type_identifier] = STATE(3479), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [sym_identifier] = ACTIONS(2859), + [sym_qualified_type_identifier] = STATE(3443), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(2855), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(2861), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___cdecl] = ACTIONS(49), @@ -218273,6 +219375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -218285,7 +219388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -218298,38 +219401,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_template] = ACTIONS(976), }, [1776] = { - [sym_function_definition] = STATE(939), - [sym_declaration] = STATE(939), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4249), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_ms_call_modifier] = STATE(2160), - [sym_declaration_list] = STATE(939), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3418), + [sym_function_definition] = STATE(512), + [sym_declaration] = STATE(512), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4215), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_ms_call_modifier] = STATE(2067), + [sym_declaration_list] = STATE(512), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3336), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(5396), - [sym_qualified_type_identifier] = STATE(3479), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [sym_identifier] = ACTIONS(2859), + [sym_qualified_type_identifier] = STATE(3443), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(2855), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(2861), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___cdecl] = ACTIONS(49), @@ -218343,6 +219446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -218355,7 +219459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -218368,108 +219472,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_template] = ACTIONS(976), }, [1777] = { - [sym_string_literal] = STATE(1777), - [sym_raw_string_literal] = STATE(1777), - [aux_sym_concatenated_string_repeat1] = STATE(1777), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3847), - [anon_sym_COMMA] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3849), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3849), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3847), - [anon_sym_PIPE] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_AMP] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3847), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_LT] = ACTIONS(3849), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3849), - [anon_sym_SEMI] = ACTIONS(3847), - [anon_sym_RBRACE] = ACTIONS(3847), - [anon_sym_LBRACK] = ACTIONS(3847), - [anon_sym_RBRACK] = ACTIONS(3847), - [anon_sym_EQ] = ACTIONS(3849), - [anon_sym_COLON] = ACTIONS(3847), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_STAR_EQ] = ACTIONS(3847), - [anon_sym_SLASH_EQ] = ACTIONS(3847), - [anon_sym_PERCENT_EQ] = ACTIONS(3847), - [anon_sym_PLUS_EQ] = ACTIONS(3847), - [anon_sym_DASH_EQ] = ACTIONS(3847), - [anon_sym_LT_LT_EQ] = ACTIONS(3847), - [anon_sym_GT_GT_EQ] = ACTIONS(3847), - [anon_sym_AMP_EQ] = ACTIONS(3847), - [anon_sym_CARET_EQ] = ACTIONS(3847), - [anon_sym_PIPE_EQ] = ACTIONS(3847), - [anon_sym_and_eq] = ACTIONS(3849), - [anon_sym_or_eq] = ACTIONS(3849), - [anon_sym_xor_eq] = ACTIONS(3849), - [anon_sym_LT_EQ_GT] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3849), - [anon_sym_bitor] = ACTIONS(3849), - [anon_sym_xor] = ACTIONS(3849), - [anon_sym_bitand] = ACTIONS(3849), - [anon_sym_not_eq] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3847), - [anon_sym_DOT] = ACTIONS(3849), - [anon_sym_DASH_GT] = ACTIONS(3847), - [anon_sym_L_DQUOTE] = ACTIONS(3851), - [anon_sym_u_DQUOTE] = ACTIONS(3851), - [anon_sym_U_DQUOTE] = ACTIONS(3851), - [anon_sym_u8_DQUOTE] = ACTIONS(3851), - [anon_sym_DQUOTE] = ACTIONS(3851), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3854), - [anon_sym_LR_DQUOTE] = ACTIONS(3854), - [anon_sym_uR_DQUOTE] = ACTIONS(3854), - [anon_sym_UR_DQUOTE] = ACTIONS(3854), - [anon_sym_u8R_DQUOTE] = ACTIONS(3854), - [sym_literal_suffix] = ACTIONS(3849), - }, - [1778] = { - [sym_function_definition] = STATE(968), - [sym_declaration] = STATE(968), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4237), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_ms_call_modifier] = STATE(2055), - [sym_declaration_list] = STATE(968), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(3418), + [sym_function_definition] = STATE(931), + [sym_declaration] = STATE(931), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_ms_call_modifier] = STATE(2043), + [sym_declaration_list] = STATE(931), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(3336), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(5396), - [sym_qualified_type_identifier] = STATE(3479), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [sym_identifier] = ACTIONS(2859), + [sym_qualified_type_identifier] = STATE(3443), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(2855), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(2861), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___cdecl] = ACTIONS(49), @@ -218478,11 +219512,12 @@ 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(3857), + [anon_sym_LBRACE] = ACTIONS(3847), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -218495,7 +219530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -218507,63 +219542,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(113), [anon_sym_template] = ACTIONS(976), }, - [1779] = { - [sym_string_literal] = STATE(1777), - [sym_raw_string_literal] = STATE(1777), - [aux_sym_concatenated_string_repeat1] = STATE(1777), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3859), - [anon_sym_COMMA] = ACTIONS(3859), - [anon_sym_RPAREN] = ACTIONS(3859), - [anon_sym_LPAREN2] = ACTIONS(3859), - [anon_sym_DASH] = ACTIONS(3861), - [anon_sym_PLUS] = ACTIONS(3861), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_SLASH] = ACTIONS(3861), - [anon_sym_PERCENT] = ACTIONS(3861), - [anon_sym_PIPE_PIPE] = ACTIONS(3859), - [anon_sym_AMP_AMP] = ACTIONS(3859), - [anon_sym_PIPE] = ACTIONS(3861), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_EQ_EQ] = ACTIONS(3859), - [anon_sym_BANG_EQ] = ACTIONS(3859), - [anon_sym_GT] = ACTIONS(3861), - [anon_sym_GT_EQ] = ACTIONS(3859), - [anon_sym_LT_EQ] = ACTIONS(3861), - [anon_sym_LT] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3861), - [anon_sym_GT_GT] = ACTIONS(3861), - [anon_sym_SEMI] = ACTIONS(3859), - [anon_sym_RBRACE] = ACTIONS(3859), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_RBRACK] = ACTIONS(3859), - [anon_sym_EQ] = ACTIONS(3861), - [anon_sym_COLON] = ACTIONS(3859), - [anon_sym_QMARK] = ACTIONS(3859), - [anon_sym_STAR_EQ] = ACTIONS(3859), - [anon_sym_SLASH_EQ] = ACTIONS(3859), - [anon_sym_PERCENT_EQ] = ACTIONS(3859), - [anon_sym_PLUS_EQ] = ACTIONS(3859), - [anon_sym_DASH_EQ] = ACTIONS(3859), - [anon_sym_LT_LT_EQ] = ACTIONS(3859), - [anon_sym_GT_GT_EQ] = ACTIONS(3859), - [anon_sym_AMP_EQ] = ACTIONS(3859), - [anon_sym_CARET_EQ] = ACTIONS(3859), - [anon_sym_PIPE_EQ] = ACTIONS(3859), - [anon_sym_and_eq] = ACTIONS(3861), - [anon_sym_or_eq] = ACTIONS(3861), - [anon_sym_xor_eq] = ACTIONS(3861), - [anon_sym_LT_EQ_GT] = ACTIONS(3859), - [anon_sym_or] = ACTIONS(3861), - [anon_sym_and] = ACTIONS(3861), - [anon_sym_bitor] = ACTIONS(3861), - [anon_sym_xor] = ACTIONS(3861), - [anon_sym_bitand] = ACTIONS(3861), - [anon_sym_not_eq] = ACTIONS(3861), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_PLUS_PLUS] = ACTIONS(3859), - [anon_sym_DOT] = ACTIONS(3861), - [anon_sym_DASH_GT] = ACTIONS(3859), + [1778] = { + [sym_string_literal] = STATE(1783), + [sym_raw_string_literal] = STATE(1783), + [aux_sym_concatenated_string_repeat1] = STATE(1783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3849), + [anon_sym_COMMA] = ACTIONS(3849), + [anon_sym_RPAREN] = ACTIONS(3849), + [anon_sym_LPAREN2] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3851), + [anon_sym_PLUS] = ACTIONS(3851), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_SLASH] = ACTIONS(3851), + [anon_sym_PERCENT] = ACTIONS(3851), + [anon_sym_PIPE_PIPE] = ACTIONS(3849), + [anon_sym_AMP_AMP] = ACTIONS(3849), + [anon_sym_PIPE] = ACTIONS(3851), + [anon_sym_CARET] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3851), + [anon_sym_EQ_EQ] = ACTIONS(3849), + [anon_sym_BANG_EQ] = ACTIONS(3849), + [anon_sym_GT] = ACTIONS(3851), + [anon_sym_GT_EQ] = ACTIONS(3849), + [anon_sym_LT_EQ] = ACTIONS(3851), + [anon_sym_LT] = ACTIONS(3851), + [anon_sym_LT_LT] = ACTIONS(3851), + [anon_sym_GT_GT] = ACTIONS(3851), + [anon_sym_SEMI] = ACTIONS(3849), + [anon_sym_RBRACE] = ACTIONS(3849), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_RBRACK] = ACTIONS(3849), + [anon_sym_EQ] = ACTIONS(3851), + [anon_sym_COLON] = ACTIONS(3849), + [anon_sym_QMARK] = ACTIONS(3849), + [anon_sym_STAR_EQ] = ACTIONS(3849), + [anon_sym_SLASH_EQ] = ACTIONS(3849), + [anon_sym_PERCENT_EQ] = ACTIONS(3849), + [anon_sym_PLUS_EQ] = ACTIONS(3849), + [anon_sym_DASH_EQ] = ACTIONS(3849), + [anon_sym_LT_LT_EQ] = ACTIONS(3849), + [anon_sym_GT_GT_EQ] = ACTIONS(3849), + [anon_sym_AMP_EQ] = ACTIONS(3849), + [anon_sym_CARET_EQ] = ACTIONS(3849), + [anon_sym_PIPE_EQ] = ACTIONS(3849), + [anon_sym_and_eq] = ACTIONS(3851), + [anon_sym_or_eq] = ACTIONS(3851), + [anon_sym_xor_eq] = ACTIONS(3851), + [anon_sym_LT_EQ_GT] = ACTIONS(3849), + [anon_sym_or] = ACTIONS(3851), + [anon_sym_and] = ACTIONS(3851), + [anon_sym_bitor] = ACTIONS(3851), + [anon_sym_xor] = ACTIONS(3851), + [anon_sym_bitand] = ACTIONS(3851), + [anon_sym_not_eq] = ACTIONS(3851), + [anon_sym_DASH_DASH] = ACTIONS(3849), + [anon_sym_PLUS_PLUS] = ACTIONS(3849), + [anon_sym_DOT] = ACTIONS(3851), + [anon_sym_DASH_GT] = ACTIONS(3849), [anon_sym_L_DQUOTE] = ACTIONS(1531), [anon_sym_u_DQUOTE] = ACTIONS(1531), [anon_sym_U_DQUOTE] = ACTIONS(1531), @@ -218575,180 +219610,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_uR_DQUOTE] = ACTIONS(1537), [anon_sym_UR_DQUOTE] = ACTIONS(1537), [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [sym_literal_suffix] = ACTIONS(3861), + [sym_literal_suffix] = ACTIONS(3851), + }, + [1779] = { + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [aux_sym_concatenated_string_repeat1] = STATE(1778), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(3462), + [anon_sym_RPAREN] = ACTIONS(3462), + [anon_sym_LPAREN2] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3457), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3462), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_RBRACK] = ACTIONS(3462), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_COLON] = ACTIONS(3462), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3462), + [anon_sym_SLASH_EQ] = ACTIONS(3462), + [anon_sym_PERCENT_EQ] = ACTIONS(3462), + [anon_sym_PLUS_EQ] = ACTIONS(3462), + [anon_sym_DASH_EQ] = ACTIONS(3462), + [anon_sym_LT_LT_EQ] = ACTIONS(3462), + [anon_sym_GT_GT_EQ] = ACTIONS(3462), + [anon_sym_AMP_EQ] = ACTIONS(3462), + [anon_sym_CARET_EQ] = ACTIONS(3462), + [anon_sym_PIPE_EQ] = ACTIONS(3462), + [anon_sym_and_eq] = ACTIONS(3457), + [anon_sym_or_eq] = ACTIONS(3457), + [anon_sym_xor_eq] = ACTIONS(3457), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3457), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3457), + [anon_sym_not_eq] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3462), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [sym_literal_suffix] = ACTIONS(3853), }, [1780] = { - [sym_string_literal] = STATE(1779), - [sym_raw_string_literal] = STATE(1779), - [aux_sym_concatenated_string_repeat1] = STATE(1779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_RPAREN] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(3510), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3518), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3510), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3518), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_RBRACE] = ACTIONS(3510), - [anon_sym_LBRACK] = ACTIONS(3510), - [anon_sym_RBRACK] = ACTIONS(3510), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_COLON] = ACTIONS(3510), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3510), - [anon_sym_SLASH_EQ] = ACTIONS(3510), - [anon_sym_PERCENT_EQ] = ACTIONS(3510), - [anon_sym_PLUS_EQ] = ACTIONS(3510), - [anon_sym_DASH_EQ] = ACTIONS(3510), - [anon_sym_LT_LT_EQ] = ACTIONS(3510), - [anon_sym_GT_GT_EQ] = ACTIONS(3510), - [anon_sym_AMP_EQ] = ACTIONS(3510), - [anon_sym_CARET_EQ] = ACTIONS(3510), - [anon_sym_PIPE_EQ] = ACTIONS(3510), - [anon_sym_and_eq] = ACTIONS(3518), - [anon_sym_or_eq] = ACTIONS(3518), - [anon_sym_xor_eq] = ACTIONS(3518), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3518), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3518), - [anon_sym_not_eq] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3510), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1537), - [anon_sym_LR_DQUOTE] = ACTIONS(1537), - [anon_sym_uR_DQUOTE] = ACTIONS(1537), - [anon_sym_UR_DQUOTE] = ACTIONS(1537), - [anon_sym_u8R_DQUOTE] = ACTIONS(1537), - [sym_literal_suffix] = ACTIONS(3863), - }, - [1781] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3795), - [anon_sym_DASH] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(3793), - [anon_sym_STAR] = ACTIONS(3793), - [anon_sym_SLASH] = ACTIONS(3793), - [anon_sym_PERCENT] = ACTIONS(3793), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3795), - [anon_sym_PIPE] = ACTIONS(3793), - [anon_sym_CARET] = ACTIONS(3793), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3793), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3793), - [anon_sym_LT] = ACTIONS(3793), - [anon_sym_LT_LT] = ACTIONS(3793), - [anon_sym_GT_GT] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3795), - [anon_sym_LBRACE] = ACTIONS(3795), - [anon_sym_LBRACK] = ACTIONS(3795), - [anon_sym_EQ] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3795), - [anon_sym_restrict] = ACTIONS(3795), - [anon_sym__Atomic] = ACTIONS(3795), - [anon_sym_mutable] = ACTIONS(3795), - [anon_sym_constexpr] = ACTIONS(3795), - [anon_sym_constinit] = ACTIONS(3795), - [anon_sym_consteval] = ACTIONS(3795), - [anon_sym_COLON] = ACTIONS(3793), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3795), - [anon_sym_SLASH_EQ] = ACTIONS(3795), - [anon_sym_PERCENT_EQ] = ACTIONS(3795), - [anon_sym_PLUS_EQ] = ACTIONS(3795), - [anon_sym_DASH_EQ] = ACTIONS(3795), - [anon_sym_LT_LT_EQ] = ACTIONS(3795), - [anon_sym_GT_GT_EQ] = ACTIONS(3795), - [anon_sym_AMP_EQ] = ACTIONS(3795), - [anon_sym_CARET_EQ] = ACTIONS(3795), - [anon_sym_PIPE_EQ] = ACTIONS(3795), - [anon_sym_and_eq] = ACTIONS(3795), - [anon_sym_or_eq] = ACTIONS(3795), - [anon_sym_xor_eq] = ACTIONS(3795), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3793), - [anon_sym_and] = ACTIONS(3793), - [anon_sym_bitor] = ACTIONS(3795), - [anon_sym_xor] = ACTIONS(3793), - [anon_sym_bitand] = ACTIONS(3795), - [anon_sym_not_eq] = ACTIONS(3795), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3793), - [anon_sym_DASH_GT] = ACTIONS(3793), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3795), - [anon_sym_decltype] = ACTIONS(3795), - [anon_sym_final] = ACTIONS(3795), - [anon_sym_override] = ACTIONS(3795), - [anon_sym_DOT_STAR] = ACTIONS(3795), - [anon_sym_DASH_GT_STAR] = ACTIONS(3795), - }, - [1782] = { - [sym_function_definition] = STATE(2313), - [sym_declaration] = STATE(2313), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4253), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_ms_call_modifier] = STATE(2118), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6974), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(4125), + [sym_function_definition] = STATE(2299), + [sym_declaration] = STATE(2299), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4220), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_ms_call_modifier] = STATE(2070), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(7139), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(4108), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(5396), - [sym_qualified_type_identifier] = STATE(4114), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [sym_identifier] = ACTIONS(3865), + [sym_qualified_type_identifier] = STATE(4102), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(3855), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(2861), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___cdecl] = ACTIONS(49), @@ -218761,6 +219727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -218773,11 +219740,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(3867), - [anon_sym_struct] = ACTIONS(3869), - [anon_sym_union] = ACTIONS(3871), + [anon_sym_class] = ACTIONS(3857), + [anon_sym_struct] = ACTIONS(3859), + [anon_sym_union] = ACTIONS(3861), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1781] = { + [sym_function_definition] = STATE(1989), + [sym_declaration] = STATE(1989), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4226), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_ms_call_modifier] = STATE(1991), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6988), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(4108), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5396), + [sym_qualified_type_identifier] = STATE(4102), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2861), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [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_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(3863), + [anon_sym_struct] = ACTIONS(3865), + [anon_sym_union] = ACTIONS(3867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1782] = { + [sym_function_definition] = STATE(2313), + [sym_declaration] = STATE(2313), + [sym__declaration_modifiers] = STATE(2154), + [sym__declaration_specifiers] = STATE(4231), + [sym_attribute_specifier] = STATE(2154), + [sym_attribute_declaration] = STATE(2154), + [sym_ms_declspec_modifier] = STATE(2154), + [sym_ms_call_modifier] = STATE(2076), + [sym_storage_class_specifier] = STATE(2154), + [sym_type_qualifier] = STATE(2154), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym__class_name] = STATE(6974), + [sym_virtual_function_specifier] = STATE(2154), + [sym_dependent_type] = STATE(3448), + [sym_template_type] = STATE(4108), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5396), + [sym_qualified_type_identifier] = STATE(4102), + [aux_sym__declaration_specifiers_repeat1] = STATE(2154), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2861), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [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_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(3869), + [anon_sym_struct] = ACTIONS(3871), + [anon_sym_union] = ACTIONS(3873), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), @@ -218786,791 +219893,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_template] = ACTIONS(976), }, [1783] = { - [sym_function_definition] = STATE(2127), - [sym_declaration] = STATE(2127), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4247), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_ms_call_modifier] = STATE(2119), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(6988), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(4125), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(5396), - [sym_qualified_type_identifier] = STATE(4114), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [sym_identifier] = ACTIONS(3865), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [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_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(3873), - [anon_sym_struct] = ACTIONS(3875), - [anon_sym_union] = ACTIONS(3877), + [sym_string_literal] = STATE(1783), + [sym_raw_string_literal] = STATE(1783), + [aux_sym_concatenated_string_repeat1] = STATE(1783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3875), + [anon_sym_COMMA] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3875), + [anon_sym_DASH] = ACTIONS(3877), + [anon_sym_PLUS] = ACTIONS(3877), + [anon_sym_STAR] = ACTIONS(3877), + [anon_sym_SLASH] = ACTIONS(3877), + [anon_sym_PERCENT] = ACTIONS(3877), + [anon_sym_PIPE_PIPE] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_PIPE] = ACTIONS(3877), + [anon_sym_CARET] = ACTIONS(3877), + [anon_sym_AMP] = ACTIONS(3877), + [anon_sym_EQ_EQ] = ACTIONS(3875), + [anon_sym_BANG_EQ] = ACTIONS(3875), + [anon_sym_GT] = ACTIONS(3877), + [anon_sym_GT_EQ] = ACTIONS(3875), + [anon_sym_LT_EQ] = ACTIONS(3877), + [anon_sym_LT] = ACTIONS(3877), + [anon_sym_LT_LT] = ACTIONS(3877), + [anon_sym_GT_GT] = ACTIONS(3877), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym_RBRACE] = ACTIONS(3875), + [anon_sym_LBRACK] = ACTIONS(3875), + [anon_sym_RBRACK] = ACTIONS(3875), + [anon_sym_EQ] = ACTIONS(3877), + [anon_sym_COLON] = ACTIONS(3875), + [anon_sym_QMARK] = ACTIONS(3875), + [anon_sym_STAR_EQ] = ACTIONS(3875), + [anon_sym_SLASH_EQ] = ACTIONS(3875), + [anon_sym_PERCENT_EQ] = ACTIONS(3875), + [anon_sym_PLUS_EQ] = ACTIONS(3875), + [anon_sym_DASH_EQ] = ACTIONS(3875), + [anon_sym_LT_LT_EQ] = ACTIONS(3875), + [anon_sym_GT_GT_EQ] = ACTIONS(3875), + [anon_sym_AMP_EQ] = ACTIONS(3875), + [anon_sym_CARET_EQ] = ACTIONS(3875), + [anon_sym_PIPE_EQ] = ACTIONS(3875), + [anon_sym_and_eq] = ACTIONS(3877), + [anon_sym_or_eq] = ACTIONS(3877), + [anon_sym_xor_eq] = ACTIONS(3877), + [anon_sym_LT_EQ_GT] = ACTIONS(3875), + [anon_sym_or] = ACTIONS(3877), + [anon_sym_and] = ACTIONS(3877), + [anon_sym_bitor] = ACTIONS(3877), + [anon_sym_xor] = ACTIONS(3877), + [anon_sym_bitand] = ACTIONS(3877), + [anon_sym_not_eq] = ACTIONS(3877), + [anon_sym_DASH_DASH] = ACTIONS(3875), + [anon_sym_PLUS_PLUS] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3877), + [anon_sym_DASH_GT] = ACTIONS(3875), + [anon_sym_L_DQUOTE] = ACTIONS(3879), + [anon_sym_u_DQUOTE] = ACTIONS(3879), + [anon_sym_U_DQUOTE] = ACTIONS(3879), + [anon_sym_u8_DQUOTE] = ACTIONS(3879), + [anon_sym_DQUOTE] = ACTIONS(3879), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(976), + [anon_sym_R_DQUOTE] = ACTIONS(3882), + [anon_sym_LR_DQUOTE] = ACTIONS(3882), + [anon_sym_uR_DQUOTE] = ACTIONS(3882), + [anon_sym_UR_DQUOTE] = ACTIONS(3882), + [anon_sym_u8R_DQUOTE] = ACTIONS(3882), + [sym_literal_suffix] = ACTIONS(3877), }, [1784] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3752), - [anon_sym_COMMA] = ACTIONS(3752), - [anon_sym_RPAREN] = ACTIONS(3752), - [anon_sym_LPAREN2] = ACTIONS(3752), - [anon_sym_DASH] = ACTIONS(3750), - [anon_sym_PLUS] = ACTIONS(3750), - [anon_sym_STAR] = ACTIONS(3750), - [anon_sym_SLASH] = ACTIONS(3750), - [anon_sym_PERCENT] = ACTIONS(3750), - [anon_sym_PIPE_PIPE] = ACTIONS(3752), - [anon_sym_AMP_AMP] = ACTIONS(3752), - [anon_sym_PIPE] = ACTIONS(3750), - [anon_sym_CARET] = ACTIONS(3750), - [anon_sym_AMP] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3752), - [anon_sym_BANG_EQ] = ACTIONS(3752), - [anon_sym_GT] = ACTIONS(3750), - [anon_sym_GT_EQ] = ACTIONS(3752), - [anon_sym_LT_EQ] = ACTIONS(3750), - [anon_sym_LT] = ACTIONS(3750), - [anon_sym_LT_LT] = ACTIONS(3750), - [anon_sym_GT_GT] = ACTIONS(3750), - [anon_sym_COLON_COLON] = ACTIONS(3752), - [anon_sym_LBRACE] = ACTIONS(3752), - [anon_sym_LBRACK] = ACTIONS(3752), - [anon_sym_EQ] = ACTIONS(3750), - [anon_sym_const] = ACTIONS(3750), - [anon_sym_volatile] = ACTIONS(3752), - [anon_sym_restrict] = ACTIONS(3752), - [anon_sym__Atomic] = ACTIONS(3752), - [anon_sym_mutable] = ACTIONS(3752), - [anon_sym_constexpr] = ACTIONS(3752), - [anon_sym_constinit] = ACTIONS(3752), - [anon_sym_consteval] = ACTIONS(3752), - [anon_sym_COLON] = ACTIONS(3750), - [anon_sym_QMARK] = ACTIONS(3752), - [anon_sym_STAR_EQ] = ACTIONS(3752), - [anon_sym_SLASH_EQ] = ACTIONS(3752), - [anon_sym_PERCENT_EQ] = ACTIONS(3752), - [anon_sym_PLUS_EQ] = ACTIONS(3752), - [anon_sym_DASH_EQ] = ACTIONS(3752), - [anon_sym_LT_LT_EQ] = ACTIONS(3752), - [anon_sym_GT_GT_EQ] = ACTIONS(3752), - [anon_sym_AMP_EQ] = ACTIONS(3752), - [anon_sym_CARET_EQ] = ACTIONS(3752), - [anon_sym_PIPE_EQ] = ACTIONS(3752), - [anon_sym_and_eq] = ACTIONS(3752), - [anon_sym_or_eq] = ACTIONS(3752), - [anon_sym_xor_eq] = ACTIONS(3752), - [anon_sym_LT_EQ_GT] = ACTIONS(3752), - [anon_sym_or] = ACTIONS(3750), - [anon_sym_and] = ACTIONS(3750), - [anon_sym_bitor] = ACTIONS(3752), - [anon_sym_xor] = ACTIONS(3750), - [anon_sym_bitand] = ACTIONS(3752), - [anon_sym_not_eq] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3752), - [anon_sym_PLUS_PLUS] = ACTIONS(3752), - [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_DASH_GT] = ACTIONS(3750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3582), + [anon_sym_COMMA] = ACTIONS(3582), + [anon_sym_RPAREN] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_STAR] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_PERCENT] = ACTIONS(3580), + [anon_sym_PIPE_PIPE] = ACTIONS(3582), + [anon_sym_AMP_AMP] = ACTIONS(3582), + [anon_sym_PIPE] = ACTIONS(3580), + [anon_sym_CARET] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3580), + [anon_sym_EQ_EQ] = ACTIONS(3582), + [anon_sym_BANG_EQ] = ACTIONS(3582), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_GT_EQ] = ACTIONS(3582), + [anon_sym_LT_EQ] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_LT_LT] = ACTIONS(3580), + [anon_sym_GT_GT] = ACTIONS(3580), + [anon_sym_COLON_COLON] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3582), + [anon_sym_restrict] = ACTIONS(3582), + [anon_sym__Atomic] = ACTIONS(3582), + [anon_sym_mutable] = ACTIONS(3582), + [anon_sym_constexpr] = ACTIONS(3582), + [anon_sym_constinit] = ACTIONS(3582), + [anon_sym_consteval] = ACTIONS(3582), + [anon_sym_COLON] = ACTIONS(3580), + [anon_sym_QMARK] = ACTIONS(3582), + [anon_sym_STAR_EQ] = ACTIONS(3582), + [anon_sym_SLASH_EQ] = ACTIONS(3582), + [anon_sym_PERCENT_EQ] = ACTIONS(3582), + [anon_sym_PLUS_EQ] = ACTIONS(3582), + [anon_sym_DASH_EQ] = ACTIONS(3582), + [anon_sym_LT_LT_EQ] = ACTIONS(3582), + [anon_sym_GT_GT_EQ] = ACTIONS(3582), + [anon_sym_AMP_EQ] = ACTIONS(3582), + [anon_sym_CARET_EQ] = ACTIONS(3582), + [anon_sym_PIPE_EQ] = ACTIONS(3582), + [anon_sym_and_eq] = ACTIONS(3582), + [anon_sym_or_eq] = ACTIONS(3582), + [anon_sym_xor_eq] = ACTIONS(3582), + [anon_sym_LT_EQ_GT] = ACTIONS(3582), + [anon_sym_or] = ACTIONS(3580), + [anon_sym_and] = ACTIONS(3580), + [anon_sym_bitor] = ACTIONS(3582), + [anon_sym_xor] = ACTIONS(3580), + [anon_sym_bitand] = ACTIONS(3582), + [anon_sym_not_eq] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_DASH_GT] = ACTIONS(3580), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3752), - [anon_sym_decltype] = ACTIONS(3752), - [anon_sym_final] = ACTIONS(3752), - [anon_sym_override] = ACTIONS(3752), - [anon_sym_DOT_STAR] = ACTIONS(3752), - [anon_sym_DASH_GT_STAR] = ACTIONS(3752), + [sym_auto] = ACTIONS(3582), + [anon_sym_decltype] = ACTIONS(3582), + [anon_sym_final] = ACTIONS(3582), + [anon_sym_override] = ACTIONS(3582), + [anon_sym_DOT_STAR] = ACTIONS(3582), + [anon_sym_DASH_GT_STAR] = ACTIONS(3582), }, [1785] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3746), - [anon_sym_COMMA] = ACTIONS(3746), - [anon_sym_RPAREN] = ACTIONS(3746), - [anon_sym_LPAREN2] = ACTIONS(3746), - [anon_sym_DASH] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(3744), - [anon_sym_STAR] = ACTIONS(3744), - [anon_sym_SLASH] = ACTIONS(3744), - [anon_sym_PERCENT] = ACTIONS(3744), - [anon_sym_PIPE_PIPE] = ACTIONS(3746), - [anon_sym_AMP_AMP] = ACTIONS(3746), - [anon_sym_PIPE] = ACTIONS(3744), - [anon_sym_CARET] = ACTIONS(3744), - [anon_sym_AMP] = ACTIONS(3744), - [anon_sym_EQ_EQ] = ACTIONS(3746), - [anon_sym_BANG_EQ] = ACTIONS(3746), - [anon_sym_GT] = ACTIONS(3744), - [anon_sym_GT_EQ] = ACTIONS(3746), - [anon_sym_LT_EQ] = ACTIONS(3744), - [anon_sym_LT] = ACTIONS(3744), - [anon_sym_LT_LT] = ACTIONS(3744), - [anon_sym_GT_GT] = ACTIONS(3744), - [anon_sym_COLON_COLON] = ACTIONS(3746), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_LBRACK] = ACTIONS(3746), - [anon_sym_EQ] = ACTIONS(3744), - [anon_sym_const] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3746), - [anon_sym_restrict] = ACTIONS(3746), - [anon_sym__Atomic] = ACTIONS(3746), - [anon_sym_mutable] = ACTIONS(3746), - [anon_sym_constexpr] = ACTIONS(3746), - [anon_sym_constinit] = ACTIONS(3746), - [anon_sym_consteval] = ACTIONS(3746), - [anon_sym_COLON] = ACTIONS(3744), - [anon_sym_QMARK] = ACTIONS(3746), - [anon_sym_STAR_EQ] = ACTIONS(3746), - [anon_sym_SLASH_EQ] = ACTIONS(3746), - [anon_sym_PERCENT_EQ] = ACTIONS(3746), - [anon_sym_PLUS_EQ] = ACTIONS(3746), - [anon_sym_DASH_EQ] = ACTIONS(3746), - [anon_sym_LT_LT_EQ] = ACTIONS(3746), - [anon_sym_GT_GT_EQ] = ACTIONS(3746), - [anon_sym_AMP_EQ] = ACTIONS(3746), - [anon_sym_CARET_EQ] = ACTIONS(3746), - [anon_sym_PIPE_EQ] = ACTIONS(3746), - [anon_sym_and_eq] = ACTIONS(3746), - [anon_sym_or_eq] = ACTIONS(3746), - [anon_sym_xor_eq] = ACTIONS(3746), - [anon_sym_LT_EQ_GT] = ACTIONS(3746), - [anon_sym_or] = ACTIONS(3744), - [anon_sym_and] = ACTIONS(3744), - [anon_sym_bitor] = ACTIONS(3746), - [anon_sym_xor] = ACTIONS(3744), - [anon_sym_bitand] = ACTIONS(3746), - [anon_sym_not_eq] = ACTIONS(3746), - [anon_sym_DASH_DASH] = ACTIONS(3746), - [anon_sym_PLUS_PLUS] = ACTIONS(3746), - [anon_sym_DOT] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3744), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3746), - [anon_sym_decltype] = ACTIONS(3746), - [anon_sym_final] = ACTIONS(3746), - [anon_sym_override] = ACTIONS(3746), - [anon_sym_DOT_STAR] = ACTIONS(3746), - [anon_sym_DASH_GT_STAR] = ACTIONS(3746), - }, - [1786] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3742), - [anon_sym_COMMA] = ACTIONS(3742), - [anon_sym_RPAREN] = ACTIONS(3742), - [anon_sym_LPAREN2] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3740), - [anon_sym_PLUS] = ACTIONS(3740), - [anon_sym_STAR] = ACTIONS(3740), - [anon_sym_SLASH] = ACTIONS(3740), - [anon_sym_PERCENT] = ACTIONS(3740), - [anon_sym_PIPE_PIPE] = ACTIONS(3742), - [anon_sym_AMP_AMP] = ACTIONS(3742), - [anon_sym_PIPE] = ACTIONS(3740), - [anon_sym_CARET] = ACTIONS(3740), - [anon_sym_AMP] = ACTIONS(3740), - [anon_sym_EQ_EQ] = ACTIONS(3742), - [anon_sym_BANG_EQ] = ACTIONS(3742), - [anon_sym_GT] = ACTIONS(3740), - [anon_sym_GT_EQ] = ACTIONS(3742), - [anon_sym_LT_EQ] = ACTIONS(3740), - [anon_sym_LT] = ACTIONS(3740), - [anon_sym_LT_LT] = ACTIONS(3740), - [anon_sym_GT_GT] = ACTIONS(3740), - [anon_sym_COLON_COLON] = ACTIONS(3742), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3742), - [anon_sym_EQ] = ACTIONS(3740), - [anon_sym_const] = ACTIONS(3740), - [anon_sym_volatile] = ACTIONS(3742), - [anon_sym_restrict] = ACTIONS(3742), - [anon_sym__Atomic] = ACTIONS(3742), - [anon_sym_mutable] = ACTIONS(3742), - [anon_sym_constexpr] = ACTIONS(3742), - [anon_sym_constinit] = ACTIONS(3742), - [anon_sym_consteval] = ACTIONS(3742), - [anon_sym_COLON] = ACTIONS(3740), - [anon_sym_QMARK] = ACTIONS(3742), - [anon_sym_STAR_EQ] = ACTIONS(3742), - [anon_sym_SLASH_EQ] = ACTIONS(3742), - [anon_sym_PERCENT_EQ] = ACTIONS(3742), - [anon_sym_PLUS_EQ] = ACTIONS(3742), - [anon_sym_DASH_EQ] = ACTIONS(3742), - [anon_sym_LT_LT_EQ] = ACTIONS(3742), - [anon_sym_GT_GT_EQ] = ACTIONS(3742), - [anon_sym_AMP_EQ] = ACTIONS(3742), - [anon_sym_CARET_EQ] = ACTIONS(3742), - [anon_sym_PIPE_EQ] = ACTIONS(3742), - [anon_sym_and_eq] = ACTIONS(3742), - [anon_sym_or_eq] = ACTIONS(3742), - [anon_sym_xor_eq] = ACTIONS(3742), - [anon_sym_LT_EQ_GT] = ACTIONS(3742), - [anon_sym_or] = ACTIONS(3740), - [anon_sym_and] = ACTIONS(3740), - [anon_sym_bitor] = ACTIONS(3742), - [anon_sym_xor] = ACTIONS(3740), - [anon_sym_bitand] = ACTIONS(3742), - [anon_sym_not_eq] = ACTIONS(3742), - [anon_sym_DASH_DASH] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3742), - [anon_sym_DOT] = ACTIONS(3740), - [anon_sym_DASH_GT] = ACTIONS(3740), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3742), - [anon_sym_decltype] = ACTIONS(3742), - [anon_sym_final] = ACTIONS(3742), - [anon_sym_override] = ACTIONS(3742), - [anon_sym_DOT_STAR] = ACTIONS(3742), - [anon_sym_DASH_GT_STAR] = ACTIONS(3742), - }, - [1787] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3738), - [anon_sym_COMMA] = ACTIONS(3738), - [anon_sym_RPAREN] = ACTIONS(3738), - [anon_sym_LPAREN2] = ACTIONS(3738), - [anon_sym_DASH] = ACTIONS(3736), - [anon_sym_PLUS] = ACTIONS(3736), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3736), - [anon_sym_PERCENT] = ACTIONS(3736), - [anon_sym_PIPE_PIPE] = ACTIONS(3738), - [anon_sym_AMP_AMP] = ACTIONS(3738), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_CARET] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_EQ_EQ] = ACTIONS(3738), - [anon_sym_BANG_EQ] = ACTIONS(3738), - [anon_sym_GT] = ACTIONS(3736), - [anon_sym_GT_EQ] = ACTIONS(3738), - [anon_sym_LT_EQ] = ACTIONS(3736), - [anon_sym_LT] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3736), - [anon_sym_GT_GT] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3738), - [anon_sym_EQ] = ACTIONS(3736), - [anon_sym_const] = ACTIONS(3736), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_restrict] = ACTIONS(3738), - [anon_sym__Atomic] = ACTIONS(3738), - [anon_sym_mutable] = ACTIONS(3738), - [anon_sym_constexpr] = ACTIONS(3738), - [anon_sym_constinit] = ACTIONS(3738), - [anon_sym_consteval] = ACTIONS(3738), - [anon_sym_COLON] = ACTIONS(3736), - [anon_sym_QMARK] = ACTIONS(3738), - [anon_sym_STAR_EQ] = ACTIONS(3738), - [anon_sym_SLASH_EQ] = ACTIONS(3738), - [anon_sym_PERCENT_EQ] = ACTIONS(3738), - [anon_sym_PLUS_EQ] = ACTIONS(3738), - [anon_sym_DASH_EQ] = ACTIONS(3738), - [anon_sym_LT_LT_EQ] = ACTIONS(3738), - [anon_sym_GT_GT_EQ] = ACTIONS(3738), - [anon_sym_AMP_EQ] = ACTIONS(3738), - [anon_sym_CARET_EQ] = ACTIONS(3738), - [anon_sym_PIPE_EQ] = ACTIONS(3738), - [anon_sym_and_eq] = ACTIONS(3738), - [anon_sym_or_eq] = ACTIONS(3738), - [anon_sym_xor_eq] = ACTIONS(3738), - [anon_sym_LT_EQ_GT] = ACTIONS(3738), - [anon_sym_or] = ACTIONS(3736), - [anon_sym_and] = ACTIONS(3736), - [anon_sym_bitor] = ACTIONS(3738), - [anon_sym_xor] = ACTIONS(3736), - [anon_sym_bitand] = ACTIONS(3738), - [anon_sym_not_eq] = ACTIONS(3738), - [anon_sym_DASH_DASH] = ACTIONS(3738), - [anon_sym_PLUS_PLUS] = ACTIONS(3738), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_DASH_GT] = ACTIONS(3736), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3738), - [anon_sym_decltype] = ACTIONS(3738), - [anon_sym_final] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_DOT_STAR] = ACTIONS(3738), - [anon_sym_DASH_GT_STAR] = ACTIONS(3738), - }, - [1788] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3760), - [anon_sym_COMMA] = ACTIONS(3760), - [anon_sym_RPAREN] = ACTIONS(3760), - [anon_sym_LPAREN2] = ACTIONS(3760), - [anon_sym_DASH] = ACTIONS(3758), - [anon_sym_PLUS] = ACTIONS(3758), - [anon_sym_STAR] = ACTIONS(3758), - [anon_sym_SLASH] = ACTIONS(3758), - [anon_sym_PERCENT] = ACTIONS(3758), - [anon_sym_PIPE_PIPE] = ACTIONS(3760), - [anon_sym_AMP_AMP] = ACTIONS(3760), - [anon_sym_PIPE] = ACTIONS(3758), - [anon_sym_CARET] = ACTIONS(3758), - [anon_sym_AMP] = ACTIONS(3758), - [anon_sym_EQ_EQ] = ACTIONS(3760), - [anon_sym_BANG_EQ] = ACTIONS(3760), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_GT_EQ] = ACTIONS(3760), - [anon_sym_LT_EQ] = ACTIONS(3758), - [anon_sym_LT] = ACTIONS(3758), - [anon_sym_LT_LT] = ACTIONS(3758), - [anon_sym_GT_GT] = ACTIONS(3758), - [anon_sym_COLON_COLON] = ACTIONS(3760), - [anon_sym_LBRACE] = ACTIONS(3760), - [anon_sym_LBRACK] = ACTIONS(3760), - [anon_sym_EQ] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3760), - [anon_sym_restrict] = ACTIONS(3760), - [anon_sym__Atomic] = ACTIONS(3760), - [anon_sym_mutable] = ACTIONS(3760), - [anon_sym_constexpr] = ACTIONS(3760), - [anon_sym_constinit] = ACTIONS(3760), - [anon_sym_consteval] = ACTIONS(3760), - [anon_sym_COLON] = ACTIONS(3758), - [anon_sym_QMARK] = ACTIONS(3760), - [anon_sym_STAR_EQ] = ACTIONS(3760), - [anon_sym_SLASH_EQ] = ACTIONS(3760), - [anon_sym_PERCENT_EQ] = ACTIONS(3760), - [anon_sym_PLUS_EQ] = ACTIONS(3760), - [anon_sym_DASH_EQ] = ACTIONS(3760), - [anon_sym_LT_LT_EQ] = ACTIONS(3760), - [anon_sym_GT_GT_EQ] = ACTIONS(3760), - [anon_sym_AMP_EQ] = ACTIONS(3760), - [anon_sym_CARET_EQ] = ACTIONS(3760), - [anon_sym_PIPE_EQ] = ACTIONS(3760), - [anon_sym_and_eq] = ACTIONS(3760), - [anon_sym_or_eq] = ACTIONS(3760), - [anon_sym_xor_eq] = ACTIONS(3760), - [anon_sym_LT_EQ_GT] = ACTIONS(3760), - [anon_sym_or] = ACTIONS(3758), - [anon_sym_and] = ACTIONS(3758), - [anon_sym_bitor] = ACTIONS(3760), - [anon_sym_xor] = ACTIONS(3758), - [anon_sym_bitand] = ACTIONS(3760), - [anon_sym_not_eq] = ACTIONS(3760), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_DOT] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3758), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3760), - [anon_sym_decltype] = ACTIONS(3760), - [anon_sym_final] = ACTIONS(3760), - [anon_sym_override] = ACTIONS(3760), - [anon_sym_DOT_STAR] = ACTIONS(3760), - [anon_sym_DASH_GT_STAR] = ACTIONS(3760), - }, - [1789] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), - [anon_sym_COMMA] = ACTIONS(3764), - [anon_sym_RPAREN] = ACTIONS(3764), - [anon_sym_LPAREN2] = ACTIONS(3764), - [anon_sym_DASH] = ACTIONS(3762), - [anon_sym_PLUS] = ACTIONS(3762), - [anon_sym_STAR] = ACTIONS(3762), - [anon_sym_SLASH] = ACTIONS(3762), - [anon_sym_PERCENT] = ACTIONS(3762), - [anon_sym_PIPE_PIPE] = ACTIONS(3764), - [anon_sym_AMP_AMP] = ACTIONS(3764), - [anon_sym_PIPE] = ACTIONS(3762), - [anon_sym_CARET] = ACTIONS(3762), - [anon_sym_AMP] = ACTIONS(3762), - [anon_sym_EQ_EQ] = ACTIONS(3764), - [anon_sym_BANG_EQ] = ACTIONS(3764), - [anon_sym_GT] = ACTIONS(3762), - [anon_sym_GT_EQ] = ACTIONS(3764), - [anon_sym_LT_EQ] = ACTIONS(3762), - [anon_sym_LT] = ACTIONS(3762), - [anon_sym_LT_LT] = ACTIONS(3762), - [anon_sym_GT_GT] = ACTIONS(3762), - [anon_sym_COLON_COLON] = ACTIONS(3764), - [anon_sym_LBRACE] = ACTIONS(3764), - [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_EQ] = ACTIONS(3762), - [anon_sym_const] = ACTIONS(3762), - [anon_sym_volatile] = ACTIONS(3764), - [anon_sym_restrict] = ACTIONS(3764), - [anon_sym__Atomic] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3764), - [anon_sym_constexpr] = ACTIONS(3764), - [anon_sym_constinit] = ACTIONS(3764), - [anon_sym_consteval] = ACTIONS(3764), - [anon_sym_COLON] = ACTIONS(3762), - [anon_sym_QMARK] = ACTIONS(3764), - [anon_sym_STAR_EQ] = ACTIONS(3764), - [anon_sym_SLASH_EQ] = ACTIONS(3764), - [anon_sym_PERCENT_EQ] = ACTIONS(3764), - [anon_sym_PLUS_EQ] = ACTIONS(3764), - [anon_sym_DASH_EQ] = ACTIONS(3764), - [anon_sym_LT_LT_EQ] = ACTIONS(3764), - [anon_sym_GT_GT_EQ] = ACTIONS(3764), - [anon_sym_AMP_EQ] = ACTIONS(3764), - [anon_sym_CARET_EQ] = ACTIONS(3764), - [anon_sym_PIPE_EQ] = ACTIONS(3764), - [anon_sym_and_eq] = ACTIONS(3764), - [anon_sym_or_eq] = ACTIONS(3764), - [anon_sym_xor_eq] = ACTIONS(3764), - [anon_sym_LT_EQ_GT] = ACTIONS(3764), - [anon_sym_or] = ACTIONS(3762), - [anon_sym_and] = ACTIONS(3762), - [anon_sym_bitor] = ACTIONS(3764), - [anon_sym_xor] = ACTIONS(3762), - [anon_sym_bitand] = ACTIONS(3764), - [anon_sym_not_eq] = ACTIONS(3764), - [anon_sym_DASH_DASH] = ACTIONS(3764), - [anon_sym_PLUS_PLUS] = ACTIONS(3764), - [anon_sym_DOT] = ACTIONS(3762), - [anon_sym_DASH_GT] = ACTIONS(3762), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3764), - [anon_sym_decltype] = ACTIONS(3764), - [anon_sym_final] = ACTIONS(3764), - [anon_sym_override] = ACTIONS(3764), - [anon_sym_DOT_STAR] = ACTIONS(3764), - [anon_sym_DASH_GT_STAR] = ACTIONS(3764), - }, - [1790] = { - [sym_function_definition] = STATE(2462), - [sym_declaration] = STATE(2462), - [sym__declaration_modifiers] = STATE(2188), - [sym__declaration_specifiers] = STATE(4252), - [sym_attribute_specifier] = STATE(2188), - [sym_attribute_declaration] = STATE(2188), - [sym_ms_declspec_modifier] = STATE(2188), - [sym_ms_call_modifier] = STATE(2145), - [sym_storage_class_specifier] = STATE(2188), - [sym_type_qualifier] = STATE(2188), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym__class_name] = STATE(7139), - [sym_virtual_function_specifier] = STATE(2188), - [sym_dependent_type] = STATE(3504), - [sym_template_type] = STATE(4125), - [sym_dependent_type_identifier] = STATE(6970), - [sym__scope_resolution] = STATE(5396), - [sym_qualified_type_identifier] = STATE(4114), - [aux_sym__declaration_specifiers_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), - [sym_identifier] = ACTIONS(3865), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), - [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_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(3879), - [anon_sym_struct] = ACTIONS(3881), - [anon_sym_union] = ACTIONS(3883), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(976), - }, - [1791] = { - [sym_template_argument_list] = STATE(1827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_RPAREN] = ACTIONS(3512), - [anon_sym_LPAREN2] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3536), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3516), - [anon_sym_restrict] = ACTIONS(3516), - [anon_sym__Atomic] = ACTIONS(3516), - [anon_sym_mutable] = ACTIONS(3516), - [anon_sym_constexpr] = ACTIONS(3516), - [anon_sym_constinit] = ACTIONS(3516), - [anon_sym_consteval] = ACTIONS(3516), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3510), - [anon_sym_SLASH_EQ] = ACTIONS(3510), - [anon_sym_PERCENT_EQ] = ACTIONS(3510), - [anon_sym_PLUS_EQ] = ACTIONS(3510), - [anon_sym_DASH_EQ] = ACTIONS(3510), - [anon_sym_LT_LT_EQ] = ACTIONS(3510), - [anon_sym_GT_GT_EQ] = ACTIONS(3510), - [anon_sym_AMP_EQ] = ACTIONS(3510), - [anon_sym_CARET_EQ] = ACTIONS(3510), - [anon_sym_PIPE_EQ] = ACTIONS(3510), - [anon_sym_and_eq] = ACTIONS(3887), - [anon_sym_or_eq] = ACTIONS(3887), - [anon_sym_xor_eq] = ACTIONS(3887), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3510), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3510), - [anon_sym_not_eq] = ACTIONS(3510), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3518), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3516), - [anon_sym_decltype] = ACTIONS(3516), - [anon_sym_DOT_STAR] = ACTIONS(3510), - [anon_sym_DASH_GT_STAR] = ACTIONS(3510), - }, - [1792] = { - [sym_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [aux_sym_concatenated_string_repeat1] = STATE(1792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3847), - [anon_sym_COMMA] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3849), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3849), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3847), - [anon_sym_PIPE] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_AMP] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3847), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_LT] = ACTIONS(3849), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3849), - [anon_sym_LBRACK] = ACTIONS(3847), - [anon_sym_EQ] = ACTIONS(3849), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_STAR_EQ] = ACTIONS(3847), - [anon_sym_SLASH_EQ] = ACTIONS(3847), - [anon_sym_PERCENT_EQ] = ACTIONS(3847), - [anon_sym_PLUS_EQ] = ACTIONS(3847), - [anon_sym_DASH_EQ] = ACTIONS(3847), - [anon_sym_LT_LT_EQ] = ACTIONS(3847), - [anon_sym_GT_GT_EQ] = ACTIONS(3847), - [anon_sym_AMP_EQ] = ACTIONS(3847), - [anon_sym_CARET_EQ] = ACTIONS(3847), - [anon_sym_PIPE_EQ] = ACTIONS(3847), - [anon_sym_and_eq] = ACTIONS(3849), - [anon_sym_or_eq] = ACTIONS(3849), - [anon_sym_xor_eq] = ACTIONS(3849), - [anon_sym_LT_EQ_GT] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3849), - [anon_sym_bitor] = ACTIONS(3849), - [anon_sym_xor] = ACTIONS(3849), - [anon_sym_bitand] = ACTIONS(3849), - [anon_sym_not_eq] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3847), - [anon_sym_DOT] = ACTIONS(3849), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3892), - [anon_sym_LR_DQUOTE] = ACTIONS(3892), - [anon_sym_uR_DQUOTE] = ACTIONS(3892), - [anon_sym_UR_DQUOTE] = ACTIONS(3892), - [anon_sym_u8R_DQUOTE] = ACTIONS(3892), - [anon_sym_DOT_STAR] = ACTIONS(3847), - [anon_sym_DASH_GT_STAR] = ACTIONS(3847), - [sym_literal_suffix] = ACTIONS(3849), - }, - [1793] = { - [sym_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [aux_sym_concatenated_string_repeat1] = STATE(1792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3859), - [anon_sym_COMMA] = ACTIONS(3859), - [anon_sym_RPAREN] = ACTIONS(3859), - [anon_sym_LPAREN2] = ACTIONS(3859), - [anon_sym_DASH] = ACTIONS(3861), - [anon_sym_PLUS] = ACTIONS(3861), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_SLASH] = ACTIONS(3861), - [anon_sym_PERCENT] = ACTIONS(3861), - [anon_sym_PIPE_PIPE] = ACTIONS(3859), - [anon_sym_AMP_AMP] = ACTIONS(3859), - [anon_sym_PIPE] = ACTIONS(3861), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_EQ_EQ] = ACTIONS(3859), - [anon_sym_BANG_EQ] = ACTIONS(3859), - [anon_sym_GT] = ACTIONS(3861), - [anon_sym_GT_EQ] = ACTIONS(3859), - [anon_sym_LT_EQ] = ACTIONS(3861), - [anon_sym_LT] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3861), - [anon_sym_GT_GT] = ACTIONS(3861), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_EQ] = ACTIONS(3861), - [anon_sym_QMARK] = ACTIONS(3859), - [anon_sym_STAR_EQ] = ACTIONS(3859), - [anon_sym_SLASH_EQ] = ACTIONS(3859), - [anon_sym_PERCENT_EQ] = ACTIONS(3859), - [anon_sym_PLUS_EQ] = ACTIONS(3859), - [anon_sym_DASH_EQ] = ACTIONS(3859), - [anon_sym_LT_LT_EQ] = ACTIONS(3859), - [anon_sym_GT_GT_EQ] = ACTIONS(3859), - [anon_sym_AMP_EQ] = ACTIONS(3859), - [anon_sym_CARET_EQ] = ACTIONS(3859), - [anon_sym_PIPE_EQ] = ACTIONS(3859), - [anon_sym_and_eq] = ACTIONS(3861), - [anon_sym_or_eq] = ACTIONS(3861), - [anon_sym_xor_eq] = ACTIONS(3861), - [anon_sym_LT_EQ_GT] = ACTIONS(3859), - [anon_sym_or] = ACTIONS(3861), - [anon_sym_and] = ACTIONS(3861), - [anon_sym_bitor] = ACTIONS(3861), - [anon_sym_xor] = ACTIONS(3861), - [anon_sym_bitand] = ACTIONS(3861), - [anon_sym_not_eq] = ACTIONS(3861), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_PLUS_PLUS] = ACTIONS(3859), - [anon_sym_DOT] = ACTIONS(3861), - [anon_sym_DASH_GT] = ACTIONS(3861), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_DOT_STAR] = ACTIONS(3859), - [anon_sym_DASH_GT_STAR] = ACTIONS(3859), - [sym_literal_suffix] = ACTIONS(3861), - }, - [1794] = { - [sym_template_argument_list] = STATE(1811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_LPAREN2] = ACTIONS(3681), - [anon_sym_DASH] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3686), - [anon_sym_STAR] = ACTIONS(3688), - [anon_sym_SLASH] = ACTIONS(3686), - [anon_sym_PERCENT] = ACTIONS(3686), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT] = ACTIONS(3686), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3693), - [anon_sym_LT_LT] = ACTIONS(3686), - [anon_sym_GT_GT] = ACTIONS(3686), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3684), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_RPAREN] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_SLASH] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE] = ACTIONS(3682), + [anon_sym_CARET] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3682), + [anon_sym_GT_EQ] = ACTIONS(3684), + [anon_sym_LT_EQ] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(3682), + [anon_sym_LT_LT] = ACTIONS(3682), + [anon_sym_GT_GT] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3684), [anon_sym_LBRACE] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_EQ] = ACTIONS(3686), - [anon_sym_const] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_EQ] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), [anon_sym_volatile] = ACTIONS(3684), [anon_sym_restrict] = ACTIONS(3684), [anon_sym__Atomic] = ACTIONS(3684), @@ -219578,348 +220066,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(3684), [anon_sym_constinit] = ACTIONS(3684), [anon_sym_consteval] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3691), - [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(3691), - [anon_sym_or_eq] = ACTIONS(3691), - [anon_sym_xor_eq] = ACTIONS(3691), - [anon_sym_LT_EQ_GT] = ACTIONS(3691), - [anon_sym_or] = ACTIONS(3686), - [anon_sym_and] = ACTIONS(3686), - [anon_sym_bitor] = ACTIONS(3691), - [anon_sym_xor] = ACTIONS(3686), - [anon_sym_bitand] = ACTIONS(3691), - [anon_sym_not_eq] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_DASH_GT] = ACTIONS(3686), + [anon_sym_COLON] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [anon_sym_STAR_EQ] = ACTIONS(3684), + [anon_sym_SLASH_EQ] = ACTIONS(3684), + [anon_sym_PERCENT_EQ] = ACTIONS(3684), + [anon_sym_PLUS_EQ] = ACTIONS(3684), + [anon_sym_DASH_EQ] = ACTIONS(3684), + [anon_sym_LT_LT_EQ] = ACTIONS(3684), + [anon_sym_GT_GT_EQ] = ACTIONS(3684), + [anon_sym_AMP_EQ] = ACTIONS(3684), + [anon_sym_CARET_EQ] = ACTIONS(3684), + [anon_sym_PIPE_EQ] = ACTIONS(3684), + [anon_sym_and_eq] = ACTIONS(3684), + [anon_sym_or_eq] = ACTIONS(3684), + [anon_sym_xor_eq] = ACTIONS(3684), + [anon_sym_LT_EQ_GT] = ACTIONS(3684), + [anon_sym_or] = ACTIONS(3682), + [anon_sym_and] = ACTIONS(3682), + [anon_sym_bitor] = ACTIONS(3684), + [anon_sym_xor] = ACTIONS(3682), + [anon_sym_bitand] = ACTIONS(3684), + [anon_sym_not_eq] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_DASH_GT] = ACTIONS(3682), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(3684), [anon_sym_decltype] = ACTIONS(3684), - [anon_sym_DOT_STAR] = ACTIONS(3691), - [anon_sym_DASH_GT_STAR] = ACTIONS(3691), + [anon_sym_final] = ACTIONS(3684), + [anon_sym_override] = ACTIONS(3684), + [anon_sym_DOT_STAR] = ACTIONS(3684), + [anon_sym_DASH_GT_STAR] = ACTIONS(3684), }, - [1795] = { - [sym_string_literal] = STATE(1793), - [sym_raw_string_literal] = STATE(1793), - [aux_sym_concatenated_string_repeat1] = STATE(1793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_RPAREN] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(3510), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3518), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3510), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3518), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3510), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3510), - [anon_sym_SLASH_EQ] = ACTIONS(3510), - [anon_sym_PERCENT_EQ] = ACTIONS(3510), - [anon_sym_PLUS_EQ] = ACTIONS(3510), - [anon_sym_DASH_EQ] = ACTIONS(3510), - [anon_sym_LT_LT_EQ] = ACTIONS(3510), - [anon_sym_GT_GT_EQ] = ACTIONS(3510), - [anon_sym_AMP_EQ] = ACTIONS(3510), - [anon_sym_CARET_EQ] = ACTIONS(3510), - [anon_sym_PIPE_EQ] = ACTIONS(3510), - [anon_sym_and_eq] = ACTIONS(3518), - [anon_sym_or_eq] = ACTIONS(3518), - [anon_sym_xor_eq] = ACTIONS(3518), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3518), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3518), - [anon_sym_not_eq] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3518), - [anon_sym_L_DQUOTE] = ACTIONS(1569), - [anon_sym_u_DQUOTE] = ACTIONS(1569), - [anon_sym_U_DQUOTE] = ACTIONS(1569), - [anon_sym_u8_DQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), + [1786] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3700), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(3700), + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3698), + [anon_sym_SLASH] = ACTIONS(3698), + [anon_sym_PERCENT] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3700), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE] = ACTIONS(3698), + [anon_sym_CARET] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_EQ_EQ] = ACTIONS(3700), + [anon_sym_BANG_EQ] = ACTIONS(3700), + [anon_sym_GT] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3700), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3698), + [anon_sym_LT_LT] = ACTIONS(3698), + [anon_sym_GT_GT] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3700), + [anon_sym_EQ] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3700), + [anon_sym__Atomic] = ACTIONS(3700), + [anon_sym_mutable] = ACTIONS(3700), + [anon_sym_constexpr] = ACTIONS(3700), + [anon_sym_constinit] = ACTIONS(3700), + [anon_sym_consteval] = ACTIONS(3700), + [anon_sym_COLON] = ACTIONS(3698), + [anon_sym_QMARK] = ACTIONS(3700), + [anon_sym_STAR_EQ] = ACTIONS(3700), + [anon_sym_SLASH_EQ] = ACTIONS(3700), + [anon_sym_PERCENT_EQ] = ACTIONS(3700), + [anon_sym_PLUS_EQ] = ACTIONS(3700), + [anon_sym_DASH_EQ] = ACTIONS(3700), + [anon_sym_LT_LT_EQ] = ACTIONS(3700), + [anon_sym_GT_GT_EQ] = ACTIONS(3700), + [anon_sym_AMP_EQ] = ACTIONS(3700), + [anon_sym_CARET_EQ] = ACTIONS(3700), + [anon_sym_PIPE_EQ] = ACTIONS(3700), + [anon_sym_and_eq] = ACTIONS(3700), + [anon_sym_or_eq] = ACTIONS(3700), + [anon_sym_xor_eq] = ACTIONS(3700), + [anon_sym_LT_EQ_GT] = ACTIONS(3700), + [anon_sym_or] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3698), + [anon_sym_bitor] = ACTIONS(3700), + [anon_sym_xor] = ACTIONS(3698), + [anon_sym_bitand] = ACTIONS(3700), + [anon_sym_not_eq] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_DASH_GT] = ACTIONS(3698), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1575), - [anon_sym_LR_DQUOTE] = ACTIONS(1575), - [anon_sym_uR_DQUOTE] = ACTIONS(1575), - [anon_sym_UR_DQUOTE] = ACTIONS(1575), - [anon_sym_u8R_DQUOTE] = ACTIONS(1575), - [anon_sym_DOT_STAR] = ACTIONS(3510), - [anon_sym_DASH_GT_STAR] = ACTIONS(3510), - [sym_literal_suffix] = ACTIONS(3895), + [sym_auto] = ACTIONS(3700), + [anon_sym_decltype] = ACTIONS(3700), + [anon_sym_final] = ACTIONS(3700), + [anon_sym_override] = ACTIONS(3700), + [anon_sym_DOT_STAR] = ACTIONS(3700), + [anon_sym_DASH_GT_STAR] = ACTIONS(3700), }, - [1796] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3795), - [anon_sym_DASH] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(3793), - [anon_sym_STAR] = ACTIONS(3793), - [anon_sym_SLASH] = ACTIONS(3793), - [anon_sym_PERCENT] = ACTIONS(3793), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3795), - [anon_sym_PIPE] = ACTIONS(3793), - [anon_sym_CARET] = ACTIONS(3793), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3793), - [anon_sym_GT_EQ] = ACTIONS(3793), - [anon_sym_LT_EQ] = ACTIONS(3793), - [anon_sym_LT] = ACTIONS(3793), - [anon_sym_LT_LT] = ACTIONS(3793), - [anon_sym_GT_GT] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3795), - [anon_sym_LBRACE] = ACTIONS(3795), - [anon_sym_LBRACK] = ACTIONS(3795), - [anon_sym_EQ] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3795), - [anon_sym_restrict] = ACTIONS(3795), - [anon_sym__Atomic] = ACTIONS(3795), - [anon_sym_mutable] = ACTIONS(3795), - [anon_sym_constexpr] = ACTIONS(3795), - [anon_sym_constinit] = ACTIONS(3795), - [anon_sym_consteval] = ACTIONS(3795), - [anon_sym_COLON] = ACTIONS(3793), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3795), - [anon_sym_SLASH_EQ] = ACTIONS(3795), - [anon_sym_PERCENT_EQ] = ACTIONS(3795), - [anon_sym_PLUS_EQ] = ACTIONS(3795), - [anon_sym_DASH_EQ] = ACTIONS(3795), - [anon_sym_LT_LT_EQ] = ACTIONS(3795), - [anon_sym_GT_GT_EQ] = ACTIONS(3793), - [anon_sym_AMP_EQ] = ACTIONS(3795), - [anon_sym_CARET_EQ] = ACTIONS(3795), - [anon_sym_PIPE_EQ] = ACTIONS(3795), - [anon_sym_and_eq] = ACTIONS(3795), - [anon_sym_or_eq] = ACTIONS(3795), - [anon_sym_xor_eq] = ACTIONS(3795), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3793), - [anon_sym_and] = ACTIONS(3793), - [anon_sym_bitor] = ACTIONS(3795), - [anon_sym_xor] = ACTIONS(3793), - [anon_sym_bitand] = ACTIONS(3795), - [anon_sym_not_eq] = ACTIONS(3795), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3793), - [anon_sym_DASH_GT] = ACTIONS(3795), + [1787] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3576), + [anon_sym_PERCENT] = ACTIONS(3576), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(3576), + [anon_sym_CARET] = ACTIONS(3576), + [anon_sym_AMP] = ACTIONS(3576), + [anon_sym_EQ_EQ] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_GT] = ACTIONS(3576), + [anon_sym_GT_EQ] = ACTIONS(3578), + [anon_sym_LT_EQ] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(3576), + [anon_sym_LT_LT] = ACTIONS(3576), + [anon_sym_GT_GT] = ACTIONS(3576), + [anon_sym_COLON_COLON] = ACTIONS(3578), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_EQ] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_volatile] = ACTIONS(3578), + [anon_sym_restrict] = ACTIONS(3578), + [anon_sym__Atomic] = ACTIONS(3578), + [anon_sym_mutable] = ACTIONS(3578), + [anon_sym_constexpr] = ACTIONS(3578), + [anon_sym_constinit] = ACTIONS(3578), + [anon_sym_consteval] = ACTIONS(3578), + [anon_sym_COLON] = ACTIONS(3576), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_STAR_EQ] = ACTIONS(3578), + [anon_sym_SLASH_EQ] = ACTIONS(3578), + [anon_sym_PERCENT_EQ] = ACTIONS(3578), + [anon_sym_PLUS_EQ] = ACTIONS(3578), + [anon_sym_DASH_EQ] = ACTIONS(3578), + [anon_sym_LT_LT_EQ] = ACTIONS(3578), + [anon_sym_GT_GT_EQ] = ACTIONS(3578), + [anon_sym_AMP_EQ] = ACTIONS(3578), + [anon_sym_CARET_EQ] = ACTIONS(3578), + [anon_sym_PIPE_EQ] = ACTIONS(3578), + [anon_sym_and_eq] = ACTIONS(3578), + [anon_sym_or_eq] = ACTIONS(3578), + [anon_sym_xor_eq] = ACTIONS(3578), + [anon_sym_LT_EQ_GT] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3576), + [anon_sym_and] = ACTIONS(3576), + [anon_sym_bitor] = ACTIONS(3578), + [anon_sym_xor] = ACTIONS(3576), + [anon_sym_bitand] = ACTIONS(3578), + [anon_sym_not_eq] = ACTIONS(3578), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3576), + [anon_sym_DASH_GT] = ACTIONS(3576), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3795), - [anon_sym_decltype] = ACTIONS(3795), - [anon_sym_final] = ACTIONS(3795), - [anon_sym_override] = ACTIONS(3795), - [anon_sym_GT2] = ACTIONS(3795), + [sym_auto] = ACTIONS(3578), + [anon_sym_decltype] = ACTIONS(3578), + [anon_sym_final] = ACTIONS(3578), + [anon_sym_override] = ACTIONS(3578), + [anon_sym_DOT_STAR] = ACTIONS(3578), + [anon_sym_DASH_GT_STAR] = ACTIONS(3578), }, - [1797] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3746), - [anon_sym_COMMA] = ACTIONS(3746), - [anon_sym_LPAREN2] = ACTIONS(3746), - [anon_sym_DASH] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(3744), - [anon_sym_STAR] = ACTIONS(3744), - [anon_sym_SLASH] = ACTIONS(3744), - [anon_sym_PERCENT] = ACTIONS(3744), - [anon_sym_PIPE_PIPE] = ACTIONS(3746), - [anon_sym_AMP_AMP] = ACTIONS(3746), - [anon_sym_PIPE] = ACTIONS(3744), - [anon_sym_CARET] = ACTIONS(3744), - [anon_sym_AMP] = ACTIONS(3744), - [anon_sym_EQ_EQ] = ACTIONS(3746), - [anon_sym_BANG_EQ] = ACTIONS(3746), - [anon_sym_GT] = ACTIONS(3744), - [anon_sym_GT_EQ] = ACTIONS(3744), - [anon_sym_LT_EQ] = ACTIONS(3744), - [anon_sym_LT] = ACTIONS(3744), - [anon_sym_LT_LT] = ACTIONS(3744), - [anon_sym_GT_GT] = ACTIONS(3744), - [anon_sym_COLON_COLON] = ACTIONS(3746), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_LBRACK] = ACTIONS(3746), - [anon_sym_EQ] = ACTIONS(3744), - [anon_sym_const] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3746), - [anon_sym_restrict] = ACTIONS(3746), - [anon_sym__Atomic] = ACTIONS(3746), - [anon_sym_mutable] = ACTIONS(3746), - [anon_sym_constexpr] = ACTIONS(3746), - [anon_sym_constinit] = ACTIONS(3746), - [anon_sym_consteval] = ACTIONS(3746), - [anon_sym_COLON] = ACTIONS(3744), - [anon_sym_QMARK] = ACTIONS(3746), - [anon_sym_STAR_EQ] = ACTIONS(3746), - [anon_sym_SLASH_EQ] = ACTIONS(3746), - [anon_sym_PERCENT_EQ] = ACTIONS(3746), - [anon_sym_PLUS_EQ] = ACTIONS(3746), - [anon_sym_DASH_EQ] = ACTIONS(3746), - [anon_sym_LT_LT_EQ] = ACTIONS(3746), - [anon_sym_GT_GT_EQ] = ACTIONS(3744), - [anon_sym_AMP_EQ] = ACTIONS(3746), - [anon_sym_CARET_EQ] = ACTIONS(3746), - [anon_sym_PIPE_EQ] = ACTIONS(3746), - [anon_sym_and_eq] = ACTIONS(3746), - [anon_sym_or_eq] = ACTIONS(3746), - [anon_sym_xor_eq] = ACTIONS(3746), - [anon_sym_LT_EQ_GT] = ACTIONS(3746), - [anon_sym_or] = ACTIONS(3744), - [anon_sym_and] = ACTIONS(3744), - [anon_sym_bitor] = ACTIONS(3746), - [anon_sym_xor] = ACTIONS(3744), - [anon_sym_bitand] = ACTIONS(3746), - [anon_sym_not_eq] = ACTIONS(3746), - [anon_sym_DASH_DASH] = ACTIONS(3746), - [anon_sym_PLUS_PLUS] = ACTIONS(3746), - [anon_sym_DOT] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3746), + [1788] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3611), + [anon_sym_RPAREN] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3609), + [anon_sym_SLASH] = ACTIONS(3609), + [anon_sym_PERCENT] = ACTIONS(3609), + [anon_sym_PIPE_PIPE] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_PIPE] = ACTIONS(3609), + [anon_sym_CARET] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_EQ_EQ] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_GT] = ACTIONS(3609), + [anon_sym_GT_EQ] = ACTIONS(3611), + [anon_sym_LT_EQ] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_LT_LT] = ACTIONS(3609), + [anon_sym_GT_GT] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_LBRACK] = ACTIONS(3611), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3611), + [anon_sym_restrict] = ACTIONS(3611), + [anon_sym__Atomic] = ACTIONS(3611), + [anon_sym_mutable] = ACTIONS(3611), + [anon_sym_constexpr] = ACTIONS(3611), + [anon_sym_constinit] = ACTIONS(3611), + [anon_sym_consteval] = ACTIONS(3611), + [anon_sym_COLON] = ACTIONS(3609), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_STAR_EQ] = ACTIONS(3611), + [anon_sym_SLASH_EQ] = ACTIONS(3611), + [anon_sym_PERCENT_EQ] = ACTIONS(3611), + [anon_sym_PLUS_EQ] = ACTIONS(3611), + [anon_sym_DASH_EQ] = ACTIONS(3611), + [anon_sym_LT_LT_EQ] = ACTIONS(3611), + [anon_sym_GT_GT_EQ] = ACTIONS(3611), + [anon_sym_AMP_EQ] = ACTIONS(3611), + [anon_sym_CARET_EQ] = ACTIONS(3611), + [anon_sym_PIPE_EQ] = ACTIONS(3611), + [anon_sym_and_eq] = ACTIONS(3611), + [anon_sym_or_eq] = ACTIONS(3611), + [anon_sym_xor_eq] = ACTIONS(3611), + [anon_sym_LT_EQ_GT] = ACTIONS(3611), + [anon_sym_or] = ACTIONS(3609), + [anon_sym_and] = ACTIONS(3609), + [anon_sym_bitor] = ACTIONS(3611), + [anon_sym_xor] = ACTIONS(3609), + [anon_sym_bitand] = ACTIONS(3611), + [anon_sym_not_eq] = ACTIONS(3611), + [anon_sym_DASH_DASH] = ACTIONS(3611), + [anon_sym_PLUS_PLUS] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3609), + [anon_sym_DASH_GT] = ACTIONS(3609), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3746), - [anon_sym_decltype] = ACTIONS(3746), - [anon_sym_final] = ACTIONS(3746), - [anon_sym_override] = ACTIONS(3746), - [anon_sym_GT2] = ACTIONS(3746), + [sym_auto] = ACTIONS(3611), + [anon_sym_decltype] = ACTIONS(3611), + [anon_sym_final] = ACTIONS(3611), + [anon_sym_override] = ACTIONS(3611), + [anon_sym_DOT_STAR] = ACTIONS(3611), + [anon_sym_DASH_GT_STAR] = ACTIONS(3611), }, - [1798] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3897), - [anon_sym_COMMA] = ACTIONS(3897), - [anon_sym_RPAREN] = ACTIONS(3897), - [anon_sym_LPAREN2] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3899), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3899), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_CARET] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3899), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3897), - [anon_sym_RBRACE] = ACTIONS(3897), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_RBRACK] = ACTIONS(3897), - [anon_sym_EQ] = ACTIONS(3899), - [anon_sym_COLON] = ACTIONS(3897), - [anon_sym_QMARK] = ACTIONS(3897), - [anon_sym_STAR_EQ] = ACTIONS(3897), - [anon_sym_SLASH_EQ] = ACTIONS(3897), - [anon_sym_PERCENT_EQ] = ACTIONS(3897), - [anon_sym_PLUS_EQ] = ACTIONS(3897), - [anon_sym_DASH_EQ] = ACTIONS(3897), - [anon_sym_LT_LT_EQ] = ACTIONS(3897), - [anon_sym_GT_GT_EQ] = ACTIONS(3897), - [anon_sym_AMP_EQ] = ACTIONS(3897), - [anon_sym_CARET_EQ] = ACTIONS(3897), - [anon_sym_PIPE_EQ] = ACTIONS(3897), - [anon_sym_and_eq] = ACTIONS(3899), - [anon_sym_or_eq] = ACTIONS(3899), - [anon_sym_xor_eq] = ACTIONS(3899), - [anon_sym_LT_EQ_GT] = ACTIONS(3897), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_bitor] = ACTIONS(3899), - [anon_sym_xor] = ACTIONS(3899), - [anon_sym_bitand] = ACTIONS(3899), - [anon_sym_not_eq] = ACTIONS(3899), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_L_DQUOTE] = ACTIONS(3897), - [anon_sym_u_DQUOTE] = ACTIONS(3897), - [anon_sym_U_DQUOTE] = ACTIONS(3897), - [anon_sym_u8_DQUOTE] = ACTIONS(3897), - [anon_sym_DQUOTE] = ACTIONS(3897), + [1789] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3708), + [anon_sym_COMMA] = ACTIONS(3708), + [anon_sym_RPAREN] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3708), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_PIPE_PIPE] = ACTIONS(3708), + [anon_sym_AMP_AMP] = ACTIONS(3708), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3708), + [anon_sym_BANG_EQ] = ACTIONS(3708), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_COLON_COLON] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_EQ] = ACTIONS(3706), + [anon_sym_const] = ACTIONS(3706), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_COLON] = ACTIONS(3706), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_STAR_EQ] = ACTIONS(3708), + [anon_sym_SLASH_EQ] = ACTIONS(3708), + [anon_sym_PERCENT_EQ] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3708), + [anon_sym_DASH_EQ] = ACTIONS(3708), + [anon_sym_LT_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_GT_EQ] = ACTIONS(3708), + [anon_sym_AMP_EQ] = ACTIONS(3708), + [anon_sym_CARET_EQ] = ACTIONS(3708), + [anon_sym_PIPE_EQ] = ACTIONS(3708), + [anon_sym_and_eq] = ACTIONS(3708), + [anon_sym_or_eq] = ACTIONS(3708), + [anon_sym_xor_eq] = ACTIONS(3708), + [anon_sym_LT_EQ_GT] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_bitor] = ACTIONS(3708), + [anon_sym_xor] = ACTIONS(3706), + [anon_sym_bitand] = ACTIONS(3708), + [anon_sym_not_eq] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3708), + [anon_sym_PLUS_PLUS] = ACTIONS(3708), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3706), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3897), - [anon_sym_LR_DQUOTE] = ACTIONS(3897), - [anon_sym_uR_DQUOTE] = ACTIONS(3897), - [anon_sym_UR_DQUOTE] = ACTIONS(3897), - [anon_sym_u8R_DQUOTE] = ACTIONS(3897), - [sym_literal_suffix] = ACTIONS(3899), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_final] = ACTIONS(3708), + [anon_sym_override] = ACTIONS(3708), + [anon_sym_DOT_STAR] = ACTIONS(3708), + [anon_sym_DASH_GT_STAR] = ACTIONS(3708), }, - [1799] = { - [sym__declaration_modifiers] = STATE(2193), - [sym__declaration_specifiers] = STATE(3398), - [sym_attribute_specifier] = STATE(2193), - [sym_attribute_declaration] = STATE(2193), - [sym_ms_declspec_modifier] = STATE(2193), - [sym_storage_class_specifier] = STATE(2193), - [sym_type_qualifier] = STATE(2193), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), + [1790] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3692), + [anon_sym_COMMA] = ACTIONS(3692), + [anon_sym_RPAREN] = ACTIONS(3692), + [anon_sym_LPAREN2] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3690), + [anon_sym_SLASH] = ACTIONS(3690), + [anon_sym_PERCENT] = ACTIONS(3690), + [anon_sym_PIPE_PIPE] = ACTIONS(3692), + [anon_sym_AMP_AMP] = ACTIONS(3692), + [anon_sym_PIPE] = ACTIONS(3690), + [anon_sym_CARET] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3690), + [anon_sym_EQ_EQ] = ACTIONS(3692), + [anon_sym_BANG_EQ] = ACTIONS(3692), + [anon_sym_GT] = ACTIONS(3690), + [anon_sym_GT_EQ] = ACTIONS(3692), + [anon_sym_LT_EQ] = ACTIONS(3690), + [anon_sym_LT] = ACTIONS(3690), + [anon_sym_LT_LT] = ACTIONS(3690), + [anon_sym_GT_GT] = ACTIONS(3690), + [anon_sym_COLON_COLON] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3692), + [anon_sym_EQ] = ACTIONS(3690), + [anon_sym_const] = ACTIONS(3690), + [anon_sym_volatile] = ACTIONS(3692), + [anon_sym_restrict] = ACTIONS(3692), + [anon_sym__Atomic] = ACTIONS(3692), + [anon_sym_mutable] = ACTIONS(3692), + [anon_sym_constexpr] = ACTIONS(3692), + [anon_sym_constinit] = ACTIONS(3692), + [anon_sym_consteval] = ACTIONS(3692), + [anon_sym_COLON] = ACTIONS(3690), + [anon_sym_QMARK] = ACTIONS(3692), + [anon_sym_STAR_EQ] = ACTIONS(3692), + [anon_sym_SLASH_EQ] = ACTIONS(3692), + [anon_sym_PERCENT_EQ] = ACTIONS(3692), + [anon_sym_PLUS_EQ] = ACTIONS(3692), + [anon_sym_DASH_EQ] = ACTIONS(3692), + [anon_sym_LT_LT_EQ] = ACTIONS(3692), + [anon_sym_GT_GT_EQ] = ACTIONS(3692), + [anon_sym_AMP_EQ] = ACTIONS(3692), + [anon_sym_CARET_EQ] = ACTIONS(3692), + [anon_sym_PIPE_EQ] = ACTIONS(3692), + [anon_sym_and_eq] = ACTIONS(3692), + [anon_sym_or_eq] = ACTIONS(3692), + [anon_sym_xor_eq] = ACTIONS(3692), + [anon_sym_LT_EQ_GT] = ACTIONS(3692), + [anon_sym_or] = ACTIONS(3690), + [anon_sym_and] = ACTIONS(3690), + [anon_sym_bitor] = ACTIONS(3692), + [anon_sym_xor] = ACTIONS(3690), + [anon_sym_bitand] = ACTIONS(3692), + [anon_sym_not_eq] = ACTIONS(3692), + [anon_sym_DASH_DASH] = ACTIONS(3692), + [anon_sym_PLUS_PLUS] = ACTIONS(3692), + [anon_sym_DOT] = ACTIONS(3690), + [anon_sym_DASH_GT] = ACTIONS(3690), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3692), + [anon_sym_decltype] = ACTIONS(3692), + [anon_sym_final] = ACTIONS(3692), + [anon_sym_override] = ACTIONS(3692), + [anon_sym_DOT_STAR] = ACTIONS(3692), + [anon_sym_DASH_GT_STAR] = ACTIONS(3692), + }, + [1791] = { + [sym__declaration_modifiers] = STATE(2091), + [sym__declaration_specifiers] = STATE(3424), + [sym_attribute_specifier] = STATE(2091), + [sym_attribute_declaration] = STATE(2091), + [sym_ms_declspec_modifier] = STATE(2091), + [sym_storage_class_specifier] = STATE(2091), + [sym_type_qualifier] = STATE(2091), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), [sym_parameter_declaration] = STATE(5849), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(2193), - [sym_dependent_type] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2091), + [sym_dependent_type] = STATE(3448), [sym_type_parameter_declaration] = STATE(5849), [sym_variadic_type_parameter_declaration] = STATE(5849), [sym_optional_type_parameter_declaration] = STATE(5849), [sym_template_template_parameter_declaration] = STATE(5849), [sym_optional_parameter_declaration] = STATE(5849), [sym_variadic_parameter_declaration] = STATE(5849), - [sym_template_type] = STATE(3418), + [sym_template_type] = STATE(3336), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(5385), - [sym_qualified_type_identifier] = STATE(3479), - [aux_sym__declaration_specifiers_repeat1] = STATE(2193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_qualified_type_identifier] = STATE(3443), + [aux_sym__declaration_specifiers_repeat1] = STATE(2091), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(3825), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3835), + [anon_sym_COLON_COLON] = ACTIONS(3837), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -219932,316 +220500,454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(1431), - [anon_sym_class] = ACTIONS(3901), + [anon_sym_class] = ACTIONS(3885), [anon_sym_struct] = ACTIONS(1435), [anon_sym_union] = ACTIONS(1437), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(3903), - [anon_sym_template] = ACTIONS(3905), - [anon_sym_GT2] = ACTIONS(3907), + [anon_sym_typename] = ACTIONS(3887), + [anon_sym_template] = ACTIONS(3889), + [anon_sym_GT2] = ACTIONS(3891), }, - [1800] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3909), - [anon_sym_COMMA] = ACTIONS(3909), - [anon_sym_RPAREN] = ACTIONS(3909), - [anon_sym_LPAREN2] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3911), - [anon_sym_PLUS] = ACTIONS(3911), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3911), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3909), - [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_CARET] = ACTIONS(3911), - [anon_sym_AMP] = ACTIONS(3911), - [anon_sym_EQ_EQ] = ACTIONS(3909), - [anon_sym_BANG_EQ] = ACTIONS(3909), - [anon_sym_GT] = ACTIONS(3911), - [anon_sym_GT_EQ] = ACTIONS(3909), - [anon_sym_LT_EQ] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(3911), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3911), - [anon_sym_SEMI] = ACTIONS(3909), - [anon_sym_RBRACE] = ACTIONS(3909), - [anon_sym_LBRACK] = ACTIONS(3909), - [anon_sym_RBRACK] = ACTIONS(3909), - [anon_sym_EQ] = ACTIONS(3911), - [anon_sym_COLON] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_STAR_EQ] = ACTIONS(3909), - [anon_sym_SLASH_EQ] = ACTIONS(3909), - [anon_sym_PERCENT_EQ] = ACTIONS(3909), - [anon_sym_PLUS_EQ] = ACTIONS(3909), - [anon_sym_DASH_EQ] = ACTIONS(3909), - [anon_sym_LT_LT_EQ] = ACTIONS(3909), - [anon_sym_GT_GT_EQ] = ACTIONS(3909), - [anon_sym_AMP_EQ] = ACTIONS(3909), - [anon_sym_CARET_EQ] = ACTIONS(3909), - [anon_sym_PIPE_EQ] = ACTIONS(3909), - [anon_sym_and_eq] = ACTIONS(3911), - [anon_sym_or_eq] = ACTIONS(3911), - [anon_sym_xor_eq] = ACTIONS(3911), - [anon_sym_LT_EQ_GT] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3911), - [anon_sym_and] = ACTIONS(3911), - [anon_sym_bitor] = ACTIONS(3911), - [anon_sym_xor] = ACTIONS(3911), - [anon_sym_bitand] = ACTIONS(3911), - [anon_sym_not_eq] = ACTIONS(3911), - [anon_sym_DASH_DASH] = ACTIONS(3909), - [anon_sym_PLUS_PLUS] = ACTIONS(3909), - [anon_sym_DOT] = ACTIONS(3911), - [anon_sym_DASH_GT] = ACTIONS(3909), - [anon_sym_L_DQUOTE] = ACTIONS(3909), - [anon_sym_u_DQUOTE] = ACTIONS(3909), - [anon_sym_U_DQUOTE] = ACTIONS(3909), - [anon_sym_u8_DQUOTE] = ACTIONS(3909), - [anon_sym_DQUOTE] = ACTIONS(3909), + [1792] = { + [sym_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [aux_sym_concatenated_string_repeat1] = STATE(1792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3875), + [anon_sym_COMMA] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3875), + [anon_sym_DASH] = ACTIONS(3877), + [anon_sym_PLUS] = ACTIONS(3877), + [anon_sym_STAR] = ACTIONS(3877), + [anon_sym_SLASH] = ACTIONS(3877), + [anon_sym_PERCENT] = ACTIONS(3877), + [anon_sym_PIPE_PIPE] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_PIPE] = ACTIONS(3877), + [anon_sym_CARET] = ACTIONS(3877), + [anon_sym_AMP] = ACTIONS(3877), + [anon_sym_EQ_EQ] = ACTIONS(3875), + [anon_sym_BANG_EQ] = ACTIONS(3875), + [anon_sym_GT] = ACTIONS(3877), + [anon_sym_GT_EQ] = ACTIONS(3875), + [anon_sym_LT_EQ] = ACTIONS(3877), + [anon_sym_LT] = ACTIONS(3877), + [anon_sym_LT_LT] = ACTIONS(3877), + [anon_sym_GT_GT] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3875), + [anon_sym_EQ] = ACTIONS(3877), + [anon_sym_QMARK] = ACTIONS(3875), + [anon_sym_STAR_EQ] = ACTIONS(3875), + [anon_sym_SLASH_EQ] = ACTIONS(3875), + [anon_sym_PERCENT_EQ] = ACTIONS(3875), + [anon_sym_PLUS_EQ] = ACTIONS(3875), + [anon_sym_DASH_EQ] = ACTIONS(3875), + [anon_sym_LT_LT_EQ] = ACTIONS(3875), + [anon_sym_GT_GT_EQ] = ACTIONS(3875), + [anon_sym_AMP_EQ] = ACTIONS(3875), + [anon_sym_CARET_EQ] = ACTIONS(3875), + [anon_sym_PIPE_EQ] = ACTIONS(3875), + [anon_sym_and_eq] = ACTIONS(3877), + [anon_sym_or_eq] = ACTIONS(3877), + [anon_sym_xor_eq] = ACTIONS(3877), + [anon_sym_LT_EQ_GT] = ACTIONS(3875), + [anon_sym_or] = ACTIONS(3877), + [anon_sym_and] = ACTIONS(3877), + [anon_sym_bitor] = ACTIONS(3877), + [anon_sym_xor] = ACTIONS(3877), + [anon_sym_bitand] = ACTIONS(3877), + [anon_sym_not_eq] = ACTIONS(3877), + [anon_sym_DASH_DASH] = ACTIONS(3875), + [anon_sym_PLUS_PLUS] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3877), + [anon_sym_DASH_GT] = ACTIONS(3877), + [anon_sym_L_DQUOTE] = ACTIONS(3893), + [anon_sym_u_DQUOTE] = ACTIONS(3893), + [anon_sym_U_DQUOTE] = ACTIONS(3893), + [anon_sym_u8_DQUOTE] = ACTIONS(3893), + [anon_sym_DQUOTE] = ACTIONS(3893), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3909), - [anon_sym_LR_DQUOTE] = ACTIONS(3909), - [anon_sym_uR_DQUOTE] = ACTIONS(3909), - [anon_sym_UR_DQUOTE] = ACTIONS(3909), - [anon_sym_u8R_DQUOTE] = ACTIONS(3909), - [sym_literal_suffix] = ACTIONS(3911), + [anon_sym_R_DQUOTE] = ACTIONS(3896), + [anon_sym_LR_DQUOTE] = ACTIONS(3896), + [anon_sym_uR_DQUOTE] = ACTIONS(3896), + [anon_sym_UR_DQUOTE] = ACTIONS(3896), + [anon_sym_u8R_DQUOTE] = ACTIONS(3896), + [anon_sym_DOT_STAR] = ACTIONS(3875), + [anon_sym_DASH_GT_STAR] = ACTIONS(3875), + [sym_literal_suffix] = ACTIONS(3877), }, - [1801] = { - [sym_template_argument_list] = STATE(1856), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_RPAREN] = ACTIONS(3523), - [anon_sym_LPAREN2] = ACTIONS(3523), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_STAR] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_EQ_EQ] = ACTIONS(3510), - [anon_sym_BANG_EQ] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3510), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3518), - [anon_sym_GT_GT] = ACTIONS(3518), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3523), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3516), - [anon_sym_restrict] = ACTIONS(3516), - [anon_sym__Atomic] = ACTIONS(3516), - [anon_sym_mutable] = ACTIONS(3516), - [anon_sym_constexpr] = ACTIONS(3516), - [anon_sym_constinit] = ACTIONS(3516), - [anon_sym_consteval] = ACTIONS(3516), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_STAR_EQ] = ACTIONS(3510), - [anon_sym_SLASH_EQ] = ACTIONS(3510), - [anon_sym_PERCENT_EQ] = ACTIONS(3510), - [anon_sym_PLUS_EQ] = ACTIONS(3510), - [anon_sym_DASH_EQ] = ACTIONS(3510), - [anon_sym_LT_LT_EQ] = ACTIONS(3510), - [anon_sym_GT_GT_EQ] = ACTIONS(3510), - [anon_sym_AMP_EQ] = ACTIONS(3510), - [anon_sym_CARET_EQ] = ACTIONS(3510), - [anon_sym_PIPE_EQ] = ACTIONS(3510), - [anon_sym_and_eq] = ACTIONS(3887), - [anon_sym_or_eq] = ACTIONS(3887), - [anon_sym_xor_eq] = ACTIONS(3887), - [anon_sym_LT_EQ_GT] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3518), - [anon_sym_and] = ACTIONS(3518), - [anon_sym_bitor] = ACTIONS(3510), - [anon_sym_xor] = ACTIONS(3518), - [anon_sym_bitand] = ACTIONS(3510), - [anon_sym_not_eq] = ACTIONS(3510), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3518), - [anon_sym_DASH_GT] = ACTIONS(3518), + [1793] = { + [sym_template_argument_list] = STATE(1803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3549), + [anon_sym_RPAREN] = ACTIONS(3539), + [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_STAR] = ACTIONS(3546), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_PIPE] = ACTIONS(3544), + [anon_sym_CARET] = ACTIONS(3544), + [anon_sym_AMP] = ACTIONS(3546), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_GT] = ACTIONS(3544), + [anon_sym_GT_EQ] = ACTIONS(3549), + [anon_sym_LT_EQ] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3549), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3546), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3537), + [anon_sym_volatile] = ACTIONS(3542), + [anon_sym_restrict] = ACTIONS(3542), + [anon_sym__Atomic] = ACTIONS(3542), + [anon_sym_mutable] = ACTIONS(3542), + [anon_sym_constexpr] = ACTIONS(3542), + [anon_sym_constinit] = ACTIONS(3542), + [anon_sym_consteval] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_STAR_EQ] = ACTIONS(3549), + [anon_sym_SLASH_EQ] = ACTIONS(3549), + [anon_sym_PERCENT_EQ] = ACTIONS(3549), + [anon_sym_PLUS_EQ] = ACTIONS(3549), + [anon_sym_DASH_EQ] = ACTIONS(3549), + [anon_sym_LT_LT_EQ] = ACTIONS(3549), + [anon_sym_GT_GT_EQ] = ACTIONS(3549), + [anon_sym_AMP_EQ] = ACTIONS(3549), + [anon_sym_CARET_EQ] = ACTIONS(3549), + [anon_sym_PIPE_EQ] = ACTIONS(3549), + [anon_sym_and_eq] = ACTIONS(3549), + [anon_sym_or_eq] = ACTIONS(3549), + [anon_sym_xor_eq] = ACTIONS(3549), + [anon_sym_LT_EQ_GT] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3544), + [anon_sym_and] = ACTIONS(3544), + [anon_sym_bitor] = ACTIONS(3549), + [anon_sym_xor] = ACTIONS(3544), + [anon_sym_bitand] = ACTIONS(3549), + [anon_sym_not_eq] = ACTIONS(3549), + [anon_sym_DASH_DASH] = ACTIONS(3549), + [anon_sym_PLUS_PLUS] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3544), + [anon_sym_DASH_GT] = ACTIONS(3544), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3516), - [anon_sym_decltype] = ACTIONS(3516), - [anon_sym_DOT_STAR] = ACTIONS(3510), - [anon_sym_DASH_GT_STAR] = ACTIONS(3510), + [sym_auto] = ACTIONS(3542), + [anon_sym_decltype] = ACTIONS(3542), + [anon_sym_DOT_STAR] = ACTIONS(3549), + [anon_sym_DASH_GT_STAR] = ACTIONS(3549), }, - [1802] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3760), - [anon_sym_COMMA] = ACTIONS(3760), - [anon_sym_LPAREN2] = ACTIONS(3760), - [anon_sym_DASH] = ACTIONS(3758), - [anon_sym_PLUS] = ACTIONS(3758), - [anon_sym_STAR] = ACTIONS(3758), - [anon_sym_SLASH] = ACTIONS(3758), - [anon_sym_PERCENT] = ACTIONS(3758), - [anon_sym_PIPE_PIPE] = ACTIONS(3760), - [anon_sym_AMP_AMP] = ACTIONS(3760), - [anon_sym_PIPE] = ACTIONS(3758), - [anon_sym_CARET] = ACTIONS(3758), - [anon_sym_AMP] = ACTIONS(3758), - [anon_sym_EQ_EQ] = ACTIONS(3760), - [anon_sym_BANG_EQ] = ACTIONS(3760), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_GT_EQ] = ACTIONS(3758), - [anon_sym_LT_EQ] = ACTIONS(3758), - [anon_sym_LT] = ACTIONS(3758), - [anon_sym_LT_LT] = ACTIONS(3758), - [anon_sym_GT_GT] = ACTIONS(3758), - [anon_sym_COLON_COLON] = ACTIONS(3760), - [anon_sym_LBRACE] = ACTIONS(3760), - [anon_sym_LBRACK] = ACTIONS(3760), - [anon_sym_EQ] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3760), - [anon_sym_restrict] = ACTIONS(3760), - [anon_sym__Atomic] = ACTIONS(3760), - [anon_sym_mutable] = ACTIONS(3760), - [anon_sym_constexpr] = ACTIONS(3760), - [anon_sym_constinit] = ACTIONS(3760), - [anon_sym_consteval] = ACTIONS(3760), - [anon_sym_COLON] = ACTIONS(3758), - [anon_sym_QMARK] = ACTIONS(3760), - [anon_sym_STAR_EQ] = ACTIONS(3760), - [anon_sym_SLASH_EQ] = ACTIONS(3760), - [anon_sym_PERCENT_EQ] = ACTIONS(3760), - [anon_sym_PLUS_EQ] = ACTIONS(3760), - [anon_sym_DASH_EQ] = ACTIONS(3760), - [anon_sym_LT_LT_EQ] = ACTIONS(3760), - [anon_sym_GT_GT_EQ] = ACTIONS(3758), - [anon_sym_AMP_EQ] = ACTIONS(3760), - [anon_sym_CARET_EQ] = ACTIONS(3760), - [anon_sym_PIPE_EQ] = ACTIONS(3760), - [anon_sym_and_eq] = ACTIONS(3760), - [anon_sym_or_eq] = ACTIONS(3760), - [anon_sym_xor_eq] = ACTIONS(3760), - [anon_sym_LT_EQ_GT] = ACTIONS(3760), - [anon_sym_or] = ACTIONS(3758), - [anon_sym_and] = ACTIONS(3758), - [anon_sym_bitor] = ACTIONS(3760), - [anon_sym_xor] = ACTIONS(3758), - [anon_sym_bitand] = ACTIONS(3760), - [anon_sym_not_eq] = ACTIONS(3760), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_DOT] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3760), + [1794] = { + [sym_template_argument_list] = STATE(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(3462), + [anon_sym_RPAREN] = ACTIONS(3497), + [anon_sym_LPAREN2] = ACTIONS(3497), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3464), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3899), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3455), + [anon_sym_restrict] = ACTIONS(3455), + [anon_sym__Atomic] = ACTIONS(3455), + [anon_sym_mutable] = ACTIONS(3455), + [anon_sym_constexpr] = ACTIONS(3455), + [anon_sym_constinit] = ACTIONS(3455), + [anon_sym_consteval] = ACTIONS(3455), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3462), + [anon_sym_SLASH_EQ] = ACTIONS(3462), + [anon_sym_PERCENT_EQ] = ACTIONS(3462), + [anon_sym_PLUS_EQ] = ACTIONS(3462), + [anon_sym_DASH_EQ] = ACTIONS(3462), + [anon_sym_LT_LT_EQ] = ACTIONS(3462), + [anon_sym_GT_GT_EQ] = ACTIONS(3462), + [anon_sym_AMP_EQ] = ACTIONS(3462), + [anon_sym_CARET_EQ] = ACTIONS(3462), + [anon_sym_PIPE_EQ] = ACTIONS(3462), + [anon_sym_and_eq] = ACTIONS(3901), + [anon_sym_or_eq] = ACTIONS(3901), + [anon_sym_xor_eq] = ACTIONS(3901), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3462), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3462), + [anon_sym_not_eq] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3457), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3760), - [anon_sym_decltype] = ACTIONS(3760), - [anon_sym_final] = ACTIONS(3760), - [anon_sym_override] = ACTIONS(3760), - [anon_sym_GT2] = ACTIONS(3760), + [sym_auto] = ACTIONS(3455), + [anon_sym_decltype] = ACTIONS(3455), + [anon_sym_DOT_STAR] = ACTIONS(3462), + [anon_sym_DASH_GT_STAR] = ACTIONS(3462), }, - [1803] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3752), - [anon_sym_COMMA] = ACTIONS(3752), - [anon_sym_LPAREN2] = ACTIONS(3752), - [anon_sym_DASH] = ACTIONS(3750), - [anon_sym_PLUS] = ACTIONS(3750), - [anon_sym_STAR] = ACTIONS(3750), - [anon_sym_SLASH] = ACTIONS(3750), - [anon_sym_PERCENT] = ACTIONS(3750), - [anon_sym_PIPE_PIPE] = ACTIONS(3752), - [anon_sym_AMP_AMP] = ACTIONS(3752), - [anon_sym_PIPE] = ACTIONS(3750), - [anon_sym_CARET] = ACTIONS(3750), - [anon_sym_AMP] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3752), - [anon_sym_BANG_EQ] = ACTIONS(3752), - [anon_sym_GT] = ACTIONS(3750), - [anon_sym_GT_EQ] = ACTIONS(3750), - [anon_sym_LT_EQ] = ACTIONS(3750), - [anon_sym_LT] = ACTIONS(3750), - [anon_sym_LT_LT] = ACTIONS(3750), - [anon_sym_GT_GT] = ACTIONS(3750), - [anon_sym_COLON_COLON] = ACTIONS(3752), - [anon_sym_LBRACE] = ACTIONS(3752), - [anon_sym_LBRACK] = ACTIONS(3752), - [anon_sym_EQ] = ACTIONS(3750), - [anon_sym_const] = ACTIONS(3750), - [anon_sym_volatile] = ACTIONS(3752), - [anon_sym_restrict] = ACTIONS(3752), - [anon_sym__Atomic] = ACTIONS(3752), - [anon_sym_mutable] = ACTIONS(3752), - [anon_sym_constexpr] = ACTIONS(3752), - [anon_sym_constinit] = ACTIONS(3752), - [anon_sym_consteval] = ACTIONS(3752), - [anon_sym_COLON] = ACTIONS(3750), - [anon_sym_QMARK] = ACTIONS(3752), - [anon_sym_STAR_EQ] = ACTIONS(3752), - [anon_sym_SLASH_EQ] = ACTIONS(3752), - [anon_sym_PERCENT_EQ] = ACTIONS(3752), - [anon_sym_PLUS_EQ] = ACTIONS(3752), - [anon_sym_DASH_EQ] = ACTIONS(3752), - [anon_sym_LT_LT_EQ] = ACTIONS(3752), - [anon_sym_GT_GT_EQ] = ACTIONS(3750), - [anon_sym_AMP_EQ] = ACTIONS(3752), - [anon_sym_CARET_EQ] = ACTIONS(3752), - [anon_sym_PIPE_EQ] = ACTIONS(3752), - [anon_sym_and_eq] = ACTIONS(3752), - [anon_sym_or_eq] = ACTIONS(3752), - [anon_sym_xor_eq] = ACTIONS(3752), - [anon_sym_LT_EQ_GT] = ACTIONS(3752), - [anon_sym_or] = ACTIONS(3750), - [anon_sym_and] = ACTIONS(3750), - [anon_sym_bitor] = ACTIONS(3752), - [anon_sym_xor] = ACTIONS(3750), - [anon_sym_bitand] = ACTIONS(3752), - [anon_sym_not_eq] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3752), - [anon_sym_PLUS_PLUS] = ACTIONS(3752), - [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_DASH_GT] = ACTIONS(3752), + [1795] = { + [sym_string_literal] = STATE(1796), + [sym_raw_string_literal] = STATE(1796), + [aux_sym_concatenated_string_repeat1] = STATE(1796), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(3462), + [anon_sym_RPAREN] = ACTIONS(3462), + [anon_sym_LPAREN2] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3457), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3462), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3462), + [anon_sym_SLASH_EQ] = ACTIONS(3462), + [anon_sym_PERCENT_EQ] = ACTIONS(3462), + [anon_sym_PLUS_EQ] = ACTIONS(3462), + [anon_sym_DASH_EQ] = ACTIONS(3462), + [anon_sym_LT_LT_EQ] = ACTIONS(3462), + [anon_sym_GT_GT_EQ] = ACTIONS(3462), + [anon_sym_AMP_EQ] = ACTIONS(3462), + [anon_sym_CARET_EQ] = ACTIONS(3462), + [anon_sym_PIPE_EQ] = ACTIONS(3462), + [anon_sym_and_eq] = ACTIONS(3457), + [anon_sym_or_eq] = ACTIONS(3457), + [anon_sym_xor_eq] = ACTIONS(3457), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3457), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3457), + [anon_sym_not_eq] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3457), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3752), - [anon_sym_decltype] = ACTIONS(3752), - [anon_sym_final] = ACTIONS(3752), - [anon_sym_override] = ACTIONS(3752), - [anon_sym_GT2] = ACTIONS(3752), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_DOT_STAR] = ACTIONS(3462), + [anon_sym_DASH_GT_STAR] = ACTIONS(3462), + [sym_literal_suffix] = ACTIONS(3903), }, - [1804] = { - [sym_template_argument_list] = STATE(1822), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_LPAREN2] = ACTIONS(3681), - [anon_sym_DASH] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3686), - [anon_sym_STAR] = ACTIONS(3688), - [anon_sym_SLASH] = ACTIONS(3686), - [anon_sym_PERCENT] = ACTIONS(3686), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT] = ACTIONS(3686), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3916), - [anon_sym_LT_LT] = ACTIONS(3686), - [anon_sym_GT_GT] = ACTIONS(3686), - [anon_sym_COLON_COLON] = ACTIONS(3529), + [1796] = { + [sym_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [aux_sym_concatenated_string_repeat1] = STATE(1792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3849), + [anon_sym_COMMA] = ACTIONS(3849), + [anon_sym_RPAREN] = ACTIONS(3849), + [anon_sym_LPAREN2] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3851), + [anon_sym_PLUS] = ACTIONS(3851), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_SLASH] = ACTIONS(3851), + [anon_sym_PERCENT] = ACTIONS(3851), + [anon_sym_PIPE_PIPE] = ACTIONS(3849), + [anon_sym_AMP_AMP] = ACTIONS(3849), + [anon_sym_PIPE] = ACTIONS(3851), + [anon_sym_CARET] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3851), + [anon_sym_EQ_EQ] = ACTIONS(3849), + [anon_sym_BANG_EQ] = ACTIONS(3849), + [anon_sym_GT] = ACTIONS(3851), + [anon_sym_GT_EQ] = ACTIONS(3849), + [anon_sym_LT_EQ] = ACTIONS(3851), + [anon_sym_LT] = ACTIONS(3851), + [anon_sym_LT_LT] = ACTIONS(3851), + [anon_sym_GT_GT] = ACTIONS(3851), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_EQ] = ACTIONS(3851), + [anon_sym_QMARK] = ACTIONS(3849), + [anon_sym_STAR_EQ] = ACTIONS(3849), + [anon_sym_SLASH_EQ] = ACTIONS(3849), + [anon_sym_PERCENT_EQ] = ACTIONS(3849), + [anon_sym_PLUS_EQ] = ACTIONS(3849), + [anon_sym_DASH_EQ] = ACTIONS(3849), + [anon_sym_LT_LT_EQ] = ACTIONS(3849), + [anon_sym_GT_GT_EQ] = ACTIONS(3849), + [anon_sym_AMP_EQ] = ACTIONS(3849), + [anon_sym_CARET_EQ] = ACTIONS(3849), + [anon_sym_PIPE_EQ] = ACTIONS(3849), + [anon_sym_and_eq] = ACTIONS(3851), + [anon_sym_or_eq] = ACTIONS(3851), + [anon_sym_xor_eq] = ACTIONS(3851), + [anon_sym_LT_EQ_GT] = ACTIONS(3849), + [anon_sym_or] = ACTIONS(3851), + [anon_sym_and] = ACTIONS(3851), + [anon_sym_bitor] = ACTIONS(3851), + [anon_sym_xor] = ACTIONS(3851), + [anon_sym_bitand] = ACTIONS(3851), + [anon_sym_not_eq] = ACTIONS(3851), + [anon_sym_DASH_DASH] = ACTIONS(3849), + [anon_sym_PLUS_PLUS] = ACTIONS(3849), + [anon_sym_DOT] = ACTIONS(3851), + [anon_sym_DASH_GT] = ACTIONS(3851), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_DOT_STAR] = ACTIONS(3849), + [anon_sym_DASH_GT_STAR] = ACTIONS(3849), + [sym_literal_suffix] = ACTIONS(3851), + }, + [1797] = { + [sym__declaration_modifiers] = STATE(2091), + [sym__declaration_specifiers] = STATE(3424), + [sym_attribute_specifier] = STATE(2091), + [sym_attribute_declaration] = STATE(2091), + [sym_ms_declspec_modifier] = STATE(2091), + [sym_storage_class_specifier] = STATE(2091), + [sym_type_qualifier] = STATE(2091), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_parameter_declaration] = STATE(5895), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2091), + [sym_dependent_type] = STATE(3448), + [sym_type_parameter_declaration] = STATE(5895), + [sym_variadic_type_parameter_declaration] = STATE(5895), + [sym_optional_type_parameter_declaration] = STATE(5895), + [sym_template_template_parameter_declaration] = STATE(5895), + [sym_optional_parameter_declaration] = STATE(5895), + [sym_variadic_parameter_declaration] = STATE(5895), + [sym_template_type] = STATE(3336), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5385), + [sym_qualified_type_identifier] = STATE(3443), + [aux_sym__declaration_specifiers_repeat1] = STATE(2091), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(3825), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3837), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(3885), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(3887), + [anon_sym_template] = ACTIONS(3889), + [anon_sym_GT2] = ACTIONS(3905), + }, + [1798] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3684), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_SLASH] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE] = ACTIONS(3682), + [anon_sym_CARET] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3682), + [anon_sym_GT_EQ] = ACTIONS(3682), + [anon_sym_LT_EQ] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(3682), + [anon_sym_LT_LT] = ACTIONS(3682), + [anon_sym_GT_GT] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3684), [anon_sym_LBRACE] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_EQ] = ACTIONS(3686), - [anon_sym_const] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_EQ] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), [anon_sym_volatile] = ACTIONS(3684), [anon_sym_restrict] = ACTIONS(3684), [anon_sym__Atomic] = ACTIONS(3684), @@ -220249,79 +220955,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(3684), [anon_sym_constinit] = ACTIONS(3684), [anon_sym_consteval] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3691), - [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(3691), - [anon_sym_or_eq] = ACTIONS(3691), - [anon_sym_xor_eq] = ACTIONS(3691), - [anon_sym_LT_EQ_GT] = ACTIONS(3691), - [anon_sym_or] = ACTIONS(3686), - [anon_sym_and] = ACTIONS(3686), - [anon_sym_bitor] = ACTIONS(3691), - [anon_sym_xor] = ACTIONS(3686), - [anon_sym_bitand] = ACTIONS(3691), - [anon_sym_not_eq] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_DASH_GT] = ACTIONS(3686), + [anon_sym_COLON] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [anon_sym_STAR_EQ] = ACTIONS(3684), + [anon_sym_SLASH_EQ] = ACTIONS(3684), + [anon_sym_PERCENT_EQ] = ACTIONS(3684), + [anon_sym_PLUS_EQ] = ACTIONS(3684), + [anon_sym_DASH_EQ] = ACTIONS(3684), + [anon_sym_LT_LT_EQ] = ACTIONS(3684), + [anon_sym_GT_GT_EQ] = ACTIONS(3682), + [anon_sym_AMP_EQ] = ACTIONS(3684), + [anon_sym_CARET_EQ] = ACTIONS(3684), + [anon_sym_PIPE_EQ] = ACTIONS(3684), + [anon_sym_and_eq] = ACTIONS(3684), + [anon_sym_or_eq] = ACTIONS(3684), + [anon_sym_xor_eq] = ACTIONS(3684), + [anon_sym_LT_EQ_GT] = ACTIONS(3684), + [anon_sym_or] = ACTIONS(3682), + [anon_sym_and] = ACTIONS(3682), + [anon_sym_bitor] = ACTIONS(3684), + [anon_sym_xor] = ACTIONS(3682), + [anon_sym_bitand] = ACTIONS(3684), + [anon_sym_not_eq] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_DASH_GT] = ACTIONS(3684), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(3684), [anon_sym_decltype] = ACTIONS(3684), - [anon_sym_DOT_STAR] = ACTIONS(3691), - [anon_sym_DASH_GT_STAR] = ACTIONS(3691), + [anon_sym_final] = ACTIONS(3684), + [anon_sym_override] = ACTIONS(3684), + [anon_sym_GT2] = ACTIONS(3684), }, - [1805] = { - [sym__declaration_modifiers] = STATE(2193), - [sym__declaration_specifiers] = STATE(3398), - [sym_attribute_specifier] = STATE(2193), - [sym_attribute_declaration] = STATE(2193), - [sym_ms_declspec_modifier] = STATE(2193), - [sym_storage_class_specifier] = STATE(2193), - [sym_type_qualifier] = STATE(2193), - [sym__type_specifier] = STATE(3274), - [sym_sized_type_specifier] = STATE(3504), - [sym_enum_specifier] = STATE(3504), - [sym_struct_specifier] = STATE(3504), - [sym_union_specifier] = STATE(3504), - [sym_parameter_declaration] = STATE(5895), - [sym_placeholder_type_specifier] = STATE(3504), - [sym_decltype_auto] = STATE(3522), - [sym_decltype] = STATE(3504), - [sym_class_specifier] = STATE(3504), - [sym_virtual_function_specifier] = STATE(2193), - [sym_dependent_type] = STATE(3504), - [sym_type_parameter_declaration] = STATE(5895), - [sym_variadic_type_parameter_declaration] = STATE(5895), - [sym_optional_type_parameter_declaration] = STATE(5895), - [sym_template_template_parameter_declaration] = STATE(5895), - [sym_optional_parameter_declaration] = STATE(5895), - [sym_variadic_parameter_declaration] = STATE(5895), - [sym_template_type] = STATE(3418), + [1799] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3708), + [anon_sym_COMMA] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3708), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_PIPE_PIPE] = ACTIONS(3708), + [anon_sym_AMP_AMP] = ACTIONS(3708), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3708), + [anon_sym_BANG_EQ] = ACTIONS(3708), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_COLON_COLON] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_EQ] = ACTIONS(3706), + [anon_sym_const] = ACTIONS(3706), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_COLON] = ACTIONS(3706), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_STAR_EQ] = ACTIONS(3708), + [anon_sym_SLASH_EQ] = ACTIONS(3708), + [anon_sym_PERCENT_EQ] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3708), + [anon_sym_DASH_EQ] = ACTIONS(3708), + [anon_sym_LT_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_GT_EQ] = ACTIONS(3706), + [anon_sym_AMP_EQ] = ACTIONS(3708), + [anon_sym_CARET_EQ] = ACTIONS(3708), + [anon_sym_PIPE_EQ] = ACTIONS(3708), + [anon_sym_and_eq] = ACTIONS(3708), + [anon_sym_or_eq] = ACTIONS(3708), + [anon_sym_xor_eq] = ACTIONS(3708), + [anon_sym_LT_EQ_GT] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_bitor] = ACTIONS(3708), + [anon_sym_xor] = ACTIONS(3706), + [anon_sym_bitand] = ACTIONS(3708), + [anon_sym_not_eq] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3708), + [anon_sym_PLUS_PLUS] = ACTIONS(3708), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_final] = ACTIONS(3708), + [anon_sym_override] = ACTIONS(3708), + [anon_sym_GT2] = ACTIONS(3708), + }, + [1800] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3907), + [anon_sym_COMMA] = ACTIONS(3907), + [anon_sym_RPAREN] = ACTIONS(3907), + [anon_sym_LPAREN2] = ACTIONS(3907), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3909), + [anon_sym_SLASH] = ACTIONS(3909), + [anon_sym_PERCENT] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3907), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3907), + [anon_sym_BANG_EQ] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_GT_EQ] = ACTIONS(3907), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_LT_LT] = ACTIONS(3909), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3907), + [anon_sym_RBRACE] = ACTIONS(3907), + [anon_sym_LBRACK] = ACTIONS(3907), + [anon_sym_RBRACK] = ACTIONS(3907), + [anon_sym_EQ] = ACTIONS(3909), + [anon_sym_COLON] = ACTIONS(3907), + [anon_sym_QMARK] = ACTIONS(3907), + [anon_sym_STAR_EQ] = ACTIONS(3907), + [anon_sym_SLASH_EQ] = ACTIONS(3907), + [anon_sym_PERCENT_EQ] = ACTIONS(3907), + [anon_sym_PLUS_EQ] = ACTIONS(3907), + [anon_sym_DASH_EQ] = ACTIONS(3907), + [anon_sym_LT_LT_EQ] = ACTIONS(3907), + [anon_sym_GT_GT_EQ] = ACTIONS(3907), + [anon_sym_AMP_EQ] = ACTIONS(3907), + [anon_sym_CARET_EQ] = ACTIONS(3907), + [anon_sym_PIPE_EQ] = ACTIONS(3907), + [anon_sym_and_eq] = ACTIONS(3909), + [anon_sym_or_eq] = ACTIONS(3909), + [anon_sym_xor_eq] = ACTIONS(3909), + [anon_sym_LT_EQ_GT] = ACTIONS(3907), + [anon_sym_or] = ACTIONS(3909), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_bitor] = ACTIONS(3909), + [anon_sym_xor] = ACTIONS(3909), + [anon_sym_bitand] = ACTIONS(3909), + [anon_sym_not_eq] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(3907), + [anon_sym_PLUS_PLUS] = ACTIONS(3907), + [anon_sym_DOT] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(3907), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3907), + [anon_sym_LR_DQUOTE] = ACTIONS(3907), + [anon_sym_uR_DQUOTE] = ACTIONS(3907), + [anon_sym_UR_DQUOTE] = ACTIONS(3907), + [anon_sym_u8R_DQUOTE] = ACTIONS(3907), + [sym_literal_suffix] = ACTIONS(3909), + }, + [1801] = { + [sym__declaration_modifiers] = STATE(2091), + [sym__declaration_specifiers] = STATE(3424), + [sym_attribute_specifier] = STATE(2091), + [sym_attribute_declaration] = STATE(2091), + [sym_ms_declspec_modifier] = STATE(2091), + [sym_storage_class_specifier] = STATE(2091), + [sym_type_qualifier] = STATE(2091), + [sym__type_specifier] = STATE(3272), + [sym_sized_type_specifier] = STATE(3448), + [sym_enum_specifier] = STATE(3448), + [sym_struct_specifier] = STATE(3448), + [sym_union_specifier] = STATE(3448), + [sym_parameter_declaration] = STATE(6451), + [sym_placeholder_type_specifier] = STATE(3448), + [sym_decltype_auto] = STATE(3481), + [sym_decltype] = STATE(3448), + [sym_class_specifier] = STATE(3448), + [sym_virtual_function_specifier] = STATE(2091), + [sym_dependent_type] = STATE(3448), + [sym_type_parameter_declaration] = STATE(6451), + [sym_variadic_type_parameter_declaration] = STATE(6451), + [sym_optional_type_parameter_declaration] = STATE(6451), + [sym_template_template_parameter_declaration] = STATE(6451), + [sym_optional_parameter_declaration] = STATE(6451), + [sym_variadic_parameter_declaration] = STATE(6451), + [sym_template_type] = STATE(3336), [sym_dependent_type_identifier] = STATE(6970), [sym__scope_resolution] = STATE(5385), - [sym_qualified_type_identifier] = STATE(3479), - [aux_sym__declaration_specifiers_repeat1] = STATE(2193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_qualified_type_identifier] = STATE(3443), + [aux_sym__declaration_specifiers_repeat1] = STATE(2091), + [aux_sym_sized_type_specifier_repeat1] = STATE(3277), [sym_identifier] = ACTIONS(3825), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3835), + [anon_sym_COLON_COLON] = ACTIONS(3837), [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_input] = ACTIONS(55), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -220334,87 +221177,622 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2865), [anon_sym_enum] = ACTIONS(1431), - [anon_sym_class] = ACTIONS(3901), + [anon_sym_class] = ACTIONS(3885), [anon_sym_struct] = ACTIONS(1435), [anon_sym_union] = ACTIONS(1437), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(3903), - [anon_sym_template] = ACTIONS(3905), - [anon_sym_GT2] = ACTIONS(3919), + [anon_sym_typename] = ACTIONS(3887), + [anon_sym_template] = ACTIONS(3889), + }, + [1802] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3911), + [anon_sym_RPAREN] = ACTIONS(3911), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_SLASH] = ACTIONS(3913), + [anon_sym_PERCENT] = ACTIONS(3913), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3913), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_EQ_EQ] = ACTIONS(3911), + [anon_sym_BANG_EQ] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_GT_EQ] = ACTIONS(3911), + [anon_sym_LT_EQ] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_LT_LT] = ACTIONS(3913), + [anon_sym_GT_GT] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym_RBRACE] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(3911), + [anon_sym_RBRACK] = ACTIONS(3911), + [anon_sym_EQ] = ACTIONS(3913), + [anon_sym_COLON] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3911), + [anon_sym_STAR_EQ] = ACTIONS(3911), + [anon_sym_SLASH_EQ] = ACTIONS(3911), + [anon_sym_PERCENT_EQ] = ACTIONS(3911), + [anon_sym_PLUS_EQ] = ACTIONS(3911), + [anon_sym_DASH_EQ] = ACTIONS(3911), + [anon_sym_LT_LT_EQ] = ACTIONS(3911), + [anon_sym_GT_GT_EQ] = ACTIONS(3911), + [anon_sym_AMP_EQ] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3911), + [anon_sym_and_eq] = ACTIONS(3913), + [anon_sym_or_eq] = ACTIONS(3913), + [anon_sym_xor_eq] = ACTIONS(3913), + [anon_sym_LT_EQ_GT] = ACTIONS(3911), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_bitor] = ACTIONS(3913), + [anon_sym_xor] = ACTIONS(3913), + [anon_sym_bitand] = ACTIONS(3913), + [anon_sym_not_eq] = ACTIONS(3913), + [anon_sym_DASH_DASH] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(3911), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_DASH_GT] = ACTIONS(3911), + [anon_sym_L_DQUOTE] = ACTIONS(3911), + [anon_sym_u_DQUOTE] = ACTIONS(3911), + [anon_sym_U_DQUOTE] = ACTIONS(3911), + [anon_sym_u8_DQUOTE] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3911), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [sym_literal_suffix] = ACTIONS(3913), + }, + [1803] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3734), + [anon_sym_RPAREN] = ACTIONS(3724), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3729), + [anon_sym_PLUS] = ACTIONS(3729), + [anon_sym_STAR] = ACTIONS(3731), + [anon_sym_SLASH] = ACTIONS(3729), + [anon_sym_PERCENT] = ACTIONS(3729), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3729), + [anon_sym_CARET] = ACTIONS(3729), + [anon_sym_AMP] = ACTIONS(3731), + [anon_sym_EQ_EQ] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_GT] = ACTIONS(3729), + [anon_sym_GT_EQ] = ACTIONS(3734), + [anon_sym_LT_EQ] = ACTIONS(3729), + [anon_sym_LT] = ACTIONS(3729), + [anon_sym_LT_LT] = ACTIONS(3729), + [anon_sym_GT_GT] = ACTIONS(3729), + [anon_sym_COLON_COLON] = ACTIONS(3727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACE] = ACTIONS(3727), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(3729), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_volatile] = ACTIONS(3727), + [anon_sym_restrict] = ACTIONS(3727), + [anon_sym__Atomic] = ACTIONS(3727), + [anon_sym_mutable] = ACTIONS(3727), + [anon_sym_constexpr] = ACTIONS(3727), + [anon_sym_constinit] = ACTIONS(3727), + [anon_sym_consteval] = ACTIONS(3727), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_STAR_EQ] = ACTIONS(3734), + [anon_sym_SLASH_EQ] = ACTIONS(3734), + [anon_sym_PERCENT_EQ] = ACTIONS(3734), + [anon_sym_PLUS_EQ] = ACTIONS(3734), + [anon_sym_DASH_EQ] = ACTIONS(3734), + [anon_sym_LT_LT_EQ] = ACTIONS(3734), + [anon_sym_GT_GT_EQ] = ACTIONS(3734), + [anon_sym_AMP_EQ] = ACTIONS(3734), + [anon_sym_CARET_EQ] = ACTIONS(3734), + [anon_sym_PIPE_EQ] = ACTIONS(3734), + [anon_sym_and_eq] = ACTIONS(3734), + [anon_sym_or_eq] = ACTIONS(3734), + [anon_sym_xor_eq] = ACTIONS(3734), + [anon_sym_LT_EQ_GT] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3729), + [anon_sym_and] = ACTIONS(3729), + [anon_sym_bitor] = ACTIONS(3734), + [anon_sym_xor] = ACTIONS(3729), + [anon_sym_bitand] = ACTIONS(3734), + [anon_sym_not_eq] = ACTIONS(3734), + [anon_sym_DASH_DASH] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3729), + [anon_sym_DASH_GT] = ACTIONS(3729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3727), + [anon_sym_decltype] = ACTIONS(3727), + [anon_sym_DOT_STAR] = ACTIONS(3734), + [anon_sym_DASH_GT_STAR] = ACTIONS(3734), + }, + [1804] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3915), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3917), + [anon_sym_PLUS] = ACTIONS(3917), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_SLASH] = ACTIONS(3917), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_PIPE] = ACTIONS(3917), + [anon_sym_CARET] = ACTIONS(3917), + [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_EQ_EQ] = ACTIONS(3915), + [anon_sym_BANG_EQ] = ACTIONS(3915), + [anon_sym_GT] = ACTIONS(3917), + [anon_sym_GT_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(3917), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3917), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_RBRACE] = ACTIONS(3915), + [anon_sym_LBRACK] = ACTIONS(3915), + [anon_sym_RBRACK] = ACTIONS(3915), + [anon_sym_EQ] = ACTIONS(3917), + [anon_sym_COLON] = ACTIONS(3915), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_and_eq] = ACTIONS(3917), + [anon_sym_or_eq] = ACTIONS(3917), + [anon_sym_xor_eq] = ACTIONS(3917), + [anon_sym_LT_EQ_GT] = ACTIONS(3915), + [anon_sym_or] = ACTIONS(3917), + [anon_sym_and] = ACTIONS(3917), + [anon_sym_bitor] = ACTIONS(3917), + [anon_sym_xor] = ACTIONS(3917), + [anon_sym_bitand] = ACTIONS(3917), + [anon_sym_not_eq] = ACTIONS(3917), + [anon_sym_DASH_DASH] = ACTIONS(3915), + [anon_sym_PLUS_PLUS] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(3917), + [anon_sym_DASH_GT] = ACTIONS(3915), + [anon_sym_L_DQUOTE] = ACTIONS(3915), + [anon_sym_u_DQUOTE] = ACTIONS(3915), + [anon_sym_U_DQUOTE] = ACTIONS(3915), + [anon_sym_u8_DQUOTE] = ACTIONS(3915), + [anon_sym_DQUOTE] = ACTIONS(3915), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3915), + [anon_sym_LR_DQUOTE] = ACTIONS(3915), + [anon_sym_uR_DQUOTE] = ACTIONS(3915), + [anon_sym_UR_DQUOTE] = ACTIONS(3915), + [anon_sym_u8R_DQUOTE] = ACTIONS(3915), + [sym_literal_suffix] = ACTIONS(3917), + }, + [1805] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3692), + [anon_sym_COMMA] = ACTIONS(3692), + [anon_sym_LPAREN2] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3690), + [anon_sym_SLASH] = ACTIONS(3690), + [anon_sym_PERCENT] = ACTIONS(3690), + [anon_sym_PIPE_PIPE] = ACTIONS(3692), + [anon_sym_AMP_AMP] = ACTIONS(3692), + [anon_sym_PIPE] = ACTIONS(3690), + [anon_sym_CARET] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3690), + [anon_sym_EQ_EQ] = ACTIONS(3692), + [anon_sym_BANG_EQ] = ACTIONS(3692), + [anon_sym_GT] = ACTIONS(3690), + [anon_sym_GT_EQ] = ACTIONS(3690), + [anon_sym_LT_EQ] = ACTIONS(3690), + [anon_sym_LT] = ACTIONS(3690), + [anon_sym_LT_LT] = ACTIONS(3690), + [anon_sym_GT_GT] = ACTIONS(3690), + [anon_sym_COLON_COLON] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3692), + [anon_sym_EQ] = ACTIONS(3690), + [anon_sym_const] = ACTIONS(3690), + [anon_sym_volatile] = ACTIONS(3692), + [anon_sym_restrict] = ACTIONS(3692), + [anon_sym__Atomic] = ACTIONS(3692), + [anon_sym_mutable] = ACTIONS(3692), + [anon_sym_constexpr] = ACTIONS(3692), + [anon_sym_constinit] = ACTIONS(3692), + [anon_sym_consteval] = ACTIONS(3692), + [anon_sym_COLON] = ACTIONS(3690), + [anon_sym_QMARK] = ACTIONS(3692), + [anon_sym_STAR_EQ] = ACTIONS(3692), + [anon_sym_SLASH_EQ] = ACTIONS(3692), + [anon_sym_PERCENT_EQ] = ACTIONS(3692), + [anon_sym_PLUS_EQ] = ACTIONS(3692), + [anon_sym_DASH_EQ] = ACTIONS(3692), + [anon_sym_LT_LT_EQ] = ACTIONS(3692), + [anon_sym_GT_GT_EQ] = ACTIONS(3690), + [anon_sym_AMP_EQ] = ACTIONS(3692), + [anon_sym_CARET_EQ] = ACTIONS(3692), + [anon_sym_PIPE_EQ] = ACTIONS(3692), + [anon_sym_and_eq] = ACTIONS(3692), + [anon_sym_or_eq] = ACTIONS(3692), + [anon_sym_xor_eq] = ACTIONS(3692), + [anon_sym_LT_EQ_GT] = ACTIONS(3692), + [anon_sym_or] = ACTIONS(3690), + [anon_sym_and] = ACTIONS(3690), + [anon_sym_bitor] = ACTIONS(3692), + [anon_sym_xor] = ACTIONS(3690), + [anon_sym_bitand] = ACTIONS(3692), + [anon_sym_not_eq] = ACTIONS(3692), + [anon_sym_DASH_DASH] = ACTIONS(3692), + [anon_sym_PLUS_PLUS] = ACTIONS(3692), + [anon_sym_DOT] = ACTIONS(3690), + [anon_sym_DASH_GT] = ACTIONS(3692), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3692), + [anon_sym_decltype] = ACTIONS(3692), + [anon_sym_final] = ACTIONS(3692), + [anon_sym_override] = ACTIONS(3692), + [anon_sym_GT2] = ACTIONS(3692), }, [1806] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3921), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_LPAREN2] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3923), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_CARET] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3923), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_SEMI] = ACTIONS(3921), - [anon_sym_RBRACE] = ACTIONS(3921), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_RBRACK] = ACTIONS(3921), - [anon_sym_EQ] = ACTIONS(3923), - [anon_sym_COLON] = ACTIONS(3921), - [anon_sym_QMARK] = ACTIONS(3921), - [anon_sym_STAR_EQ] = ACTIONS(3921), - [anon_sym_SLASH_EQ] = ACTIONS(3921), - [anon_sym_PERCENT_EQ] = ACTIONS(3921), - [anon_sym_PLUS_EQ] = ACTIONS(3921), - [anon_sym_DASH_EQ] = ACTIONS(3921), - [anon_sym_LT_LT_EQ] = ACTIONS(3921), - [anon_sym_GT_GT_EQ] = ACTIONS(3921), - [anon_sym_AMP_EQ] = ACTIONS(3921), - [anon_sym_CARET_EQ] = ACTIONS(3921), - [anon_sym_PIPE_EQ] = ACTIONS(3921), - [anon_sym_and_eq] = ACTIONS(3923), - [anon_sym_or_eq] = ACTIONS(3923), - [anon_sym_xor_eq] = ACTIONS(3923), - [anon_sym_LT_EQ_GT] = ACTIONS(3921), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_bitor] = ACTIONS(3923), - [anon_sym_xor] = ACTIONS(3923), - [anon_sym_bitand] = ACTIONS(3923), - [anon_sym_not_eq] = ACTIONS(3923), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_L_DQUOTE] = ACTIONS(3921), - [anon_sym_u_DQUOTE] = ACTIONS(3921), - [anon_sym_U_DQUOTE] = ACTIONS(3921), - [anon_sym_u8_DQUOTE] = ACTIONS(3921), - [anon_sym_DQUOTE] = ACTIONS(3921), + [sym_template_argument_list] = STATE(1823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3549), + [anon_sym_RPAREN] = ACTIONS(3539), + [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_STAR] = ACTIONS(3546), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_PIPE] = ACTIONS(3544), + [anon_sym_CARET] = ACTIONS(3544), + [anon_sym_AMP] = ACTIONS(3546), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_GT] = ACTIONS(3544), + [anon_sym_GT_EQ] = ACTIONS(3549), + [anon_sym_LT_EQ] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3919), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3537), + [anon_sym_volatile] = ACTIONS(3542), + [anon_sym_restrict] = ACTIONS(3542), + [anon_sym__Atomic] = ACTIONS(3542), + [anon_sym_mutable] = ACTIONS(3542), + [anon_sym_constexpr] = ACTIONS(3542), + [anon_sym_constinit] = ACTIONS(3542), + [anon_sym_consteval] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_STAR_EQ] = ACTIONS(3549), + [anon_sym_SLASH_EQ] = ACTIONS(3549), + [anon_sym_PERCENT_EQ] = ACTIONS(3549), + [anon_sym_PLUS_EQ] = ACTIONS(3549), + [anon_sym_DASH_EQ] = ACTIONS(3549), + [anon_sym_LT_LT_EQ] = ACTIONS(3549), + [anon_sym_GT_GT_EQ] = ACTIONS(3549), + [anon_sym_AMP_EQ] = ACTIONS(3549), + [anon_sym_CARET_EQ] = ACTIONS(3549), + [anon_sym_PIPE_EQ] = ACTIONS(3549), + [anon_sym_and_eq] = ACTIONS(3549), + [anon_sym_or_eq] = ACTIONS(3549), + [anon_sym_xor_eq] = ACTIONS(3549), + [anon_sym_LT_EQ_GT] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3544), + [anon_sym_and] = ACTIONS(3544), + [anon_sym_bitor] = ACTIONS(3549), + [anon_sym_xor] = ACTIONS(3544), + [anon_sym_bitand] = ACTIONS(3549), + [anon_sym_not_eq] = ACTIONS(3549), + [anon_sym_DASH_DASH] = ACTIONS(3549), + [anon_sym_PLUS_PLUS] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3544), + [anon_sym_DASH_GT] = ACTIONS(3544), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3921), - [anon_sym_LR_DQUOTE] = ACTIONS(3921), - [anon_sym_uR_DQUOTE] = ACTIONS(3921), - [anon_sym_UR_DQUOTE] = ACTIONS(3921), - [anon_sym_u8R_DQUOTE] = ACTIONS(3921), - [sym_literal_suffix] = ACTIONS(3923), + [sym_auto] = ACTIONS(3542), + [anon_sym_decltype] = ACTIONS(3542), + [anon_sym_DOT_STAR] = ACTIONS(3549), + [anon_sym_DASH_GT_STAR] = ACTIONS(3549), }, [1807] = { + [sym_template_argument_list] = STATE(1881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(3462), + [anon_sym_RPAREN] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3452), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PERCENT] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3922), + [anon_sym_LT_LT] = ACTIONS(3457), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3455), + [anon_sym_restrict] = ACTIONS(3455), + [anon_sym__Atomic] = ACTIONS(3455), + [anon_sym_mutable] = ACTIONS(3455), + [anon_sym_constexpr] = ACTIONS(3455), + [anon_sym_constinit] = ACTIONS(3455), + [anon_sym_consteval] = ACTIONS(3455), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_STAR_EQ] = ACTIONS(3462), + [anon_sym_SLASH_EQ] = ACTIONS(3462), + [anon_sym_PERCENT_EQ] = ACTIONS(3462), + [anon_sym_PLUS_EQ] = ACTIONS(3462), + [anon_sym_DASH_EQ] = ACTIONS(3462), + [anon_sym_LT_LT_EQ] = ACTIONS(3462), + [anon_sym_GT_GT_EQ] = ACTIONS(3462), + [anon_sym_AMP_EQ] = ACTIONS(3462), + [anon_sym_CARET_EQ] = ACTIONS(3462), + [anon_sym_PIPE_EQ] = ACTIONS(3462), + [anon_sym_and_eq] = ACTIONS(3901), + [anon_sym_or_eq] = ACTIONS(3901), + [anon_sym_xor_eq] = ACTIONS(3901), + [anon_sym_LT_EQ_GT] = ACTIONS(3462), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_and] = ACTIONS(3457), + [anon_sym_bitor] = ACTIONS(3462), + [anon_sym_xor] = ACTIONS(3457), + [anon_sym_bitand] = ACTIONS(3462), + [anon_sym_not_eq] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DASH_GT] = ACTIONS(3457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3455), + [anon_sym_decltype] = ACTIONS(3455), + [anon_sym_DOT_STAR] = ACTIONS(3462), + [anon_sym_DASH_GT_STAR] = ACTIONS(3462), + }, + [1808] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3576), + [anon_sym_PERCENT] = ACTIONS(3576), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(3576), + [anon_sym_CARET] = ACTIONS(3576), + [anon_sym_AMP] = ACTIONS(3576), + [anon_sym_EQ_EQ] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_GT] = ACTIONS(3576), + [anon_sym_GT_EQ] = ACTIONS(3576), + [anon_sym_LT_EQ] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(3576), + [anon_sym_LT_LT] = ACTIONS(3576), + [anon_sym_GT_GT] = ACTIONS(3576), + [anon_sym_COLON_COLON] = ACTIONS(3578), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_EQ] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_volatile] = ACTIONS(3578), + [anon_sym_restrict] = ACTIONS(3578), + [anon_sym__Atomic] = ACTIONS(3578), + [anon_sym_mutable] = ACTIONS(3578), + [anon_sym_constexpr] = ACTIONS(3578), + [anon_sym_constinit] = ACTIONS(3578), + [anon_sym_consteval] = ACTIONS(3578), + [anon_sym_COLON] = ACTIONS(3576), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_STAR_EQ] = ACTIONS(3578), + [anon_sym_SLASH_EQ] = ACTIONS(3578), + [anon_sym_PERCENT_EQ] = ACTIONS(3578), + [anon_sym_PLUS_EQ] = ACTIONS(3578), + [anon_sym_DASH_EQ] = ACTIONS(3578), + [anon_sym_LT_LT_EQ] = ACTIONS(3578), + [anon_sym_GT_GT_EQ] = ACTIONS(3576), + [anon_sym_AMP_EQ] = ACTIONS(3578), + [anon_sym_CARET_EQ] = ACTIONS(3578), + [anon_sym_PIPE_EQ] = ACTIONS(3578), + [anon_sym_and_eq] = ACTIONS(3578), + [anon_sym_or_eq] = ACTIONS(3578), + [anon_sym_xor_eq] = ACTIONS(3578), + [anon_sym_LT_EQ_GT] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3576), + [anon_sym_and] = ACTIONS(3576), + [anon_sym_bitor] = ACTIONS(3578), + [anon_sym_xor] = ACTIONS(3576), + [anon_sym_bitand] = ACTIONS(3578), + [anon_sym_not_eq] = ACTIONS(3578), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3576), + [anon_sym_DASH_GT] = ACTIONS(3578), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3578), + [anon_sym_decltype] = ACTIONS(3578), + [anon_sym_final] = ACTIONS(3578), + [anon_sym_override] = ACTIONS(3578), + [anon_sym_GT2] = ACTIONS(3578), + }, + [1809] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3609), + [anon_sym_SLASH] = ACTIONS(3609), + [anon_sym_PERCENT] = ACTIONS(3609), + [anon_sym_PIPE_PIPE] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_PIPE] = ACTIONS(3609), + [anon_sym_CARET] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_EQ_EQ] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_GT] = ACTIONS(3609), + [anon_sym_GT_EQ] = ACTIONS(3609), + [anon_sym_LT_EQ] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_LT_LT] = ACTIONS(3609), + [anon_sym_GT_GT] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_LBRACK] = ACTIONS(3611), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3611), + [anon_sym_restrict] = ACTIONS(3611), + [anon_sym__Atomic] = ACTIONS(3611), + [anon_sym_mutable] = ACTIONS(3611), + [anon_sym_constexpr] = ACTIONS(3611), + [anon_sym_constinit] = ACTIONS(3611), + [anon_sym_consteval] = ACTIONS(3611), + [anon_sym_COLON] = ACTIONS(3609), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_STAR_EQ] = ACTIONS(3611), + [anon_sym_SLASH_EQ] = ACTIONS(3611), + [anon_sym_PERCENT_EQ] = ACTIONS(3611), + [anon_sym_PLUS_EQ] = ACTIONS(3611), + [anon_sym_DASH_EQ] = ACTIONS(3611), + [anon_sym_LT_LT_EQ] = ACTIONS(3611), + [anon_sym_GT_GT_EQ] = ACTIONS(3609), + [anon_sym_AMP_EQ] = ACTIONS(3611), + [anon_sym_CARET_EQ] = ACTIONS(3611), + [anon_sym_PIPE_EQ] = ACTIONS(3611), + [anon_sym_and_eq] = ACTIONS(3611), + [anon_sym_or_eq] = ACTIONS(3611), + [anon_sym_xor_eq] = ACTIONS(3611), + [anon_sym_LT_EQ_GT] = ACTIONS(3611), + [anon_sym_or] = ACTIONS(3609), + [anon_sym_and] = ACTIONS(3609), + [anon_sym_bitor] = ACTIONS(3611), + [anon_sym_xor] = ACTIONS(3609), + [anon_sym_bitand] = ACTIONS(3611), + [anon_sym_not_eq] = ACTIONS(3611), + [anon_sym_DASH_DASH] = ACTIONS(3611), + [anon_sym_PLUS_PLUS] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3609), + [anon_sym_DASH_GT] = ACTIONS(3611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3611), + [anon_sym_decltype] = ACTIONS(3611), + [anon_sym_final] = ACTIONS(3611), + [anon_sym_override] = ACTIONS(3611), + [anon_sym_GT2] = ACTIONS(3611), + }, + [1810] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3700), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3698), + [anon_sym_SLASH] = ACTIONS(3698), + [anon_sym_PERCENT] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3700), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE] = ACTIONS(3698), + [anon_sym_CARET] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_EQ_EQ] = ACTIONS(3700), + [anon_sym_BANG_EQ] = ACTIONS(3700), + [anon_sym_GT] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3698), + [anon_sym_LT_LT] = ACTIONS(3698), + [anon_sym_GT_GT] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3700), + [anon_sym_EQ] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3700), + [anon_sym__Atomic] = ACTIONS(3700), + [anon_sym_mutable] = ACTIONS(3700), + [anon_sym_constexpr] = ACTIONS(3700), + [anon_sym_constinit] = ACTIONS(3700), + [anon_sym_consteval] = ACTIONS(3700), + [anon_sym_COLON] = ACTIONS(3698), + [anon_sym_QMARK] = ACTIONS(3700), + [anon_sym_STAR_EQ] = ACTIONS(3700), + [anon_sym_SLASH_EQ] = ACTIONS(3700), + [anon_sym_PERCENT_EQ] = ACTIONS(3700), + [anon_sym_PLUS_EQ] = ACTIONS(3700), + [anon_sym_DASH_EQ] = ACTIONS(3700), + [anon_sym_LT_LT_EQ] = ACTIONS(3700), + [anon_sym_GT_GT_EQ] = ACTIONS(3698), + [anon_sym_AMP_EQ] = ACTIONS(3700), + [anon_sym_CARET_EQ] = ACTIONS(3700), + [anon_sym_PIPE_EQ] = ACTIONS(3700), + [anon_sym_and_eq] = ACTIONS(3700), + [anon_sym_or_eq] = ACTIONS(3700), + [anon_sym_xor_eq] = ACTIONS(3700), + [anon_sym_LT_EQ_GT] = ACTIONS(3700), + [anon_sym_or] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3698), + [anon_sym_bitor] = ACTIONS(3700), + [anon_sym_xor] = ACTIONS(3698), + [anon_sym_bitand] = ACTIONS(3700), + [anon_sym_not_eq] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_DASH_GT] = ACTIONS(3700), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3700), + [anon_sym_decltype] = ACTIONS(3700), + [anon_sym_final] = ACTIONS(3700), + [anon_sym_override] = ACTIONS(3700), + [anon_sym_GT2] = ACTIONS(3700), + }, + [1811] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(3925), [anon_sym_COMMA] = ACTIONS(3925), [anon_sym_RPAREN] = ACTIONS(3925), @@ -220481,273 +221859,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u8R_DQUOTE] = ACTIONS(3925), [sym_literal_suffix] = ACTIONS(3927), }, - [1808] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), - [anon_sym_COMMA] = ACTIONS(3764), - [anon_sym_LPAREN2] = ACTIONS(3764), - [anon_sym_DASH] = ACTIONS(3762), - [anon_sym_PLUS] = ACTIONS(3762), - [anon_sym_STAR] = ACTIONS(3762), - [anon_sym_SLASH] = ACTIONS(3762), - [anon_sym_PERCENT] = ACTIONS(3762), - [anon_sym_PIPE_PIPE] = ACTIONS(3764), - [anon_sym_AMP_AMP] = ACTIONS(3764), - [anon_sym_PIPE] = ACTIONS(3762), - [anon_sym_CARET] = ACTIONS(3762), - [anon_sym_AMP] = ACTIONS(3762), - [anon_sym_EQ_EQ] = ACTIONS(3764), - [anon_sym_BANG_EQ] = ACTIONS(3764), - [anon_sym_GT] = ACTIONS(3762), - [anon_sym_GT_EQ] = ACTIONS(3762), - [anon_sym_LT_EQ] = ACTIONS(3762), - [anon_sym_LT] = ACTIONS(3762), - [anon_sym_LT_LT] = ACTIONS(3762), - [anon_sym_GT_GT] = ACTIONS(3762), - [anon_sym_COLON_COLON] = ACTIONS(3764), - [anon_sym_LBRACE] = ACTIONS(3764), - [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_EQ] = ACTIONS(3762), - [anon_sym_const] = ACTIONS(3762), - [anon_sym_volatile] = ACTIONS(3764), - [anon_sym_restrict] = ACTIONS(3764), - [anon_sym__Atomic] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3764), - [anon_sym_constexpr] = ACTIONS(3764), - [anon_sym_constinit] = ACTIONS(3764), - [anon_sym_consteval] = ACTIONS(3764), - [anon_sym_COLON] = ACTIONS(3762), - [anon_sym_QMARK] = ACTIONS(3764), - [anon_sym_STAR_EQ] = ACTIONS(3764), - [anon_sym_SLASH_EQ] = ACTIONS(3764), - [anon_sym_PERCENT_EQ] = ACTIONS(3764), - [anon_sym_PLUS_EQ] = ACTIONS(3764), - [anon_sym_DASH_EQ] = ACTIONS(3764), - [anon_sym_LT_LT_EQ] = ACTIONS(3764), - [anon_sym_GT_GT_EQ] = ACTIONS(3762), - [anon_sym_AMP_EQ] = ACTIONS(3764), - [anon_sym_CARET_EQ] = ACTIONS(3764), - [anon_sym_PIPE_EQ] = ACTIONS(3764), - [anon_sym_and_eq] = ACTIONS(3764), - [anon_sym_or_eq] = ACTIONS(3764), - [anon_sym_xor_eq] = ACTIONS(3764), - [anon_sym_LT_EQ_GT] = ACTIONS(3764), - [anon_sym_or] = ACTIONS(3762), - [anon_sym_and] = ACTIONS(3762), - [anon_sym_bitor] = ACTIONS(3764), - [anon_sym_xor] = ACTIONS(3762), - [anon_sym_bitand] = ACTIONS(3764), - [anon_sym_not_eq] = ACTIONS(3764), - [anon_sym_DASH_DASH] = ACTIONS(3764), - [anon_sym_PLUS_PLUS] = ACTIONS(3764), - [anon_sym_DOT] = ACTIONS(3762), - [anon_sym_DASH_GT] = ACTIONS(3764), + [1812] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3582), + [anon_sym_COMMA] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_STAR] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_PERCENT] = ACTIONS(3580), + [anon_sym_PIPE_PIPE] = ACTIONS(3582), + [anon_sym_AMP_AMP] = ACTIONS(3582), + [anon_sym_PIPE] = ACTIONS(3580), + [anon_sym_CARET] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3580), + [anon_sym_EQ_EQ] = ACTIONS(3582), + [anon_sym_BANG_EQ] = ACTIONS(3582), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_GT_EQ] = ACTIONS(3580), + [anon_sym_LT_EQ] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_LT_LT] = ACTIONS(3580), + [anon_sym_GT_GT] = ACTIONS(3580), + [anon_sym_COLON_COLON] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3582), + [anon_sym_restrict] = ACTIONS(3582), + [anon_sym__Atomic] = ACTIONS(3582), + [anon_sym_mutable] = ACTIONS(3582), + [anon_sym_constexpr] = ACTIONS(3582), + [anon_sym_constinit] = ACTIONS(3582), + [anon_sym_consteval] = ACTIONS(3582), + [anon_sym_COLON] = ACTIONS(3580), + [anon_sym_QMARK] = ACTIONS(3582), + [anon_sym_STAR_EQ] = ACTIONS(3582), + [anon_sym_SLASH_EQ] = ACTIONS(3582), + [anon_sym_PERCENT_EQ] = ACTIONS(3582), + [anon_sym_PLUS_EQ] = ACTIONS(3582), + [anon_sym_DASH_EQ] = ACTIONS(3582), + [anon_sym_LT_LT_EQ] = ACTIONS(3582), + [anon_sym_GT_GT_EQ] = ACTIONS(3580), + [anon_sym_AMP_EQ] = ACTIONS(3582), + [anon_sym_CARET_EQ] = ACTIONS(3582), + [anon_sym_PIPE_EQ] = ACTIONS(3582), + [anon_sym_and_eq] = ACTIONS(3582), + [anon_sym_or_eq] = ACTIONS(3582), + [anon_sym_xor_eq] = ACTIONS(3582), + [anon_sym_LT_EQ_GT] = ACTIONS(3582), + [anon_sym_or] = ACTIONS(3580), + [anon_sym_and] = ACTIONS(3580), + [anon_sym_bitor] = ACTIONS(3582), + [anon_sym_xor] = ACTIONS(3580), + [anon_sym_bitand] = ACTIONS(3582), + [anon_sym_not_eq] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_DASH_GT] = ACTIONS(3582), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3764), - [anon_sym_decltype] = ACTIONS(3764), - [anon_sym_final] = ACTIONS(3764), - [anon_sym_override] = ACTIONS(3764), - [anon_sym_GT2] = ACTIONS(3764), - }, - [1809] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3742), - [anon_sym_COMMA] = ACTIONS(3742), - [anon_sym_LPAREN2] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3740), - [anon_sym_PLUS] = ACTIONS(3740), - [anon_sym_STAR] = ACTIONS(3740), - [anon_sym_SLASH] = ACTIONS(3740), - [anon_sym_PERCENT] = ACTIONS(3740), - [anon_sym_PIPE_PIPE] = ACTIONS(3742), - [anon_sym_AMP_AMP] = ACTIONS(3742), - [anon_sym_PIPE] = ACTIONS(3740), - [anon_sym_CARET] = ACTIONS(3740), - [anon_sym_AMP] = ACTIONS(3740), - [anon_sym_EQ_EQ] = ACTIONS(3742), - [anon_sym_BANG_EQ] = ACTIONS(3742), - [anon_sym_GT] = ACTIONS(3740), - [anon_sym_GT_EQ] = ACTIONS(3740), - [anon_sym_LT_EQ] = ACTIONS(3740), - [anon_sym_LT] = ACTIONS(3740), - [anon_sym_LT_LT] = ACTIONS(3740), - [anon_sym_GT_GT] = ACTIONS(3740), - [anon_sym_COLON_COLON] = ACTIONS(3742), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3742), - [anon_sym_EQ] = ACTIONS(3740), - [anon_sym_const] = ACTIONS(3740), - [anon_sym_volatile] = ACTIONS(3742), - [anon_sym_restrict] = ACTIONS(3742), - [anon_sym__Atomic] = ACTIONS(3742), - [anon_sym_mutable] = ACTIONS(3742), - [anon_sym_constexpr] = ACTIONS(3742), - [anon_sym_constinit] = ACTIONS(3742), - [anon_sym_consteval] = ACTIONS(3742), - [anon_sym_COLON] = ACTIONS(3740), - [anon_sym_QMARK] = ACTIONS(3742), - [anon_sym_STAR_EQ] = ACTIONS(3742), - [anon_sym_SLASH_EQ] = ACTIONS(3742), - [anon_sym_PERCENT_EQ] = ACTIONS(3742), - [anon_sym_PLUS_EQ] = ACTIONS(3742), - [anon_sym_DASH_EQ] = ACTIONS(3742), - [anon_sym_LT_LT_EQ] = ACTIONS(3742), - [anon_sym_GT_GT_EQ] = ACTIONS(3740), - [anon_sym_AMP_EQ] = ACTIONS(3742), - [anon_sym_CARET_EQ] = ACTIONS(3742), - [anon_sym_PIPE_EQ] = ACTIONS(3742), - [anon_sym_and_eq] = ACTIONS(3742), - [anon_sym_or_eq] = ACTIONS(3742), - [anon_sym_xor_eq] = ACTIONS(3742), - [anon_sym_LT_EQ_GT] = ACTIONS(3742), - [anon_sym_or] = ACTIONS(3740), - [anon_sym_and] = ACTIONS(3740), - [anon_sym_bitor] = ACTIONS(3742), - [anon_sym_xor] = ACTIONS(3740), - [anon_sym_bitand] = ACTIONS(3742), - [anon_sym_not_eq] = ACTIONS(3742), - [anon_sym_DASH_DASH] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3742), - [anon_sym_DOT] = ACTIONS(3740), - [anon_sym_DASH_GT] = ACTIONS(3742), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3742), - [anon_sym_decltype] = ACTIONS(3742), - [anon_sym_final] = ACTIONS(3742), - [anon_sym_override] = ACTIONS(3742), - [anon_sym_GT2] = ACTIONS(3742), - }, - [1810] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3738), - [anon_sym_COMMA] = ACTIONS(3738), - [anon_sym_LPAREN2] = ACTIONS(3738), - [anon_sym_DASH] = ACTIONS(3736), - [anon_sym_PLUS] = ACTIONS(3736), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3736), - [anon_sym_PERCENT] = ACTIONS(3736), - [anon_sym_PIPE_PIPE] = ACTIONS(3738), - [anon_sym_AMP_AMP] = ACTIONS(3738), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_CARET] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_EQ_EQ] = ACTIONS(3738), - [anon_sym_BANG_EQ] = ACTIONS(3738), - [anon_sym_GT] = ACTIONS(3736), - [anon_sym_GT_EQ] = ACTIONS(3736), - [anon_sym_LT_EQ] = ACTIONS(3736), - [anon_sym_LT] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3736), - [anon_sym_GT_GT] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3738), - [anon_sym_EQ] = ACTIONS(3736), - [anon_sym_const] = ACTIONS(3736), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_restrict] = ACTIONS(3738), - [anon_sym__Atomic] = ACTIONS(3738), - [anon_sym_mutable] = ACTIONS(3738), - [anon_sym_constexpr] = ACTIONS(3738), - [anon_sym_constinit] = ACTIONS(3738), - [anon_sym_consteval] = ACTIONS(3738), - [anon_sym_COLON] = ACTIONS(3736), - [anon_sym_QMARK] = ACTIONS(3738), - [anon_sym_STAR_EQ] = ACTIONS(3738), - [anon_sym_SLASH_EQ] = ACTIONS(3738), - [anon_sym_PERCENT_EQ] = ACTIONS(3738), - [anon_sym_PLUS_EQ] = ACTIONS(3738), - [anon_sym_DASH_EQ] = ACTIONS(3738), - [anon_sym_LT_LT_EQ] = ACTIONS(3738), - [anon_sym_GT_GT_EQ] = ACTIONS(3736), - [anon_sym_AMP_EQ] = ACTIONS(3738), - [anon_sym_CARET_EQ] = ACTIONS(3738), - [anon_sym_PIPE_EQ] = ACTIONS(3738), - [anon_sym_and_eq] = ACTIONS(3738), - [anon_sym_or_eq] = ACTIONS(3738), - [anon_sym_xor_eq] = ACTIONS(3738), - [anon_sym_LT_EQ_GT] = ACTIONS(3738), - [anon_sym_or] = ACTIONS(3736), - [anon_sym_and] = ACTIONS(3736), - [anon_sym_bitor] = ACTIONS(3738), - [anon_sym_xor] = ACTIONS(3736), - [anon_sym_bitand] = ACTIONS(3738), - [anon_sym_not_eq] = ACTIONS(3738), - [anon_sym_DASH_DASH] = ACTIONS(3738), - [anon_sym_PLUS_PLUS] = ACTIONS(3738), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_DASH_GT] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3738), - [anon_sym_decltype] = ACTIONS(3738), - [anon_sym_final] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_GT2] = ACTIONS(3738), - }, - [1811] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3778), - [anon_sym_COMMA] = ACTIONS(3778), - [anon_sym_RPAREN] = ACTIONS(3768), - [anon_sym_LPAREN2] = ACTIONS(3768), - [anon_sym_DASH] = ACTIONS(3773), - [anon_sym_PLUS] = ACTIONS(3773), - [anon_sym_STAR] = ACTIONS(3775), - [anon_sym_SLASH] = ACTIONS(3773), - [anon_sym_PERCENT] = ACTIONS(3773), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_AMP_AMP] = ACTIONS(3768), - [anon_sym_PIPE] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3773), - [anon_sym_AMP] = ACTIONS(3775), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_GT] = ACTIONS(3773), - [anon_sym_GT_EQ] = ACTIONS(3778), - [anon_sym_LT_EQ] = ACTIONS(3773), - [anon_sym_LT] = ACTIONS(3773), - [anon_sym_LT_LT] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3773), - [anon_sym_COLON_COLON] = ACTIONS(3771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3778), - [anon_sym_LBRACE] = ACTIONS(3771), - [anon_sym_LBRACK] = ACTIONS(3775), - [anon_sym_EQ] = ACTIONS(3773), - [anon_sym_const] = ACTIONS(3766), - [anon_sym_volatile] = ACTIONS(3771), - [anon_sym_restrict] = ACTIONS(3771), - [anon_sym__Atomic] = ACTIONS(3771), - [anon_sym_mutable] = ACTIONS(3771), - [anon_sym_constexpr] = ACTIONS(3771), - [anon_sym_constinit] = ACTIONS(3771), - [anon_sym_consteval] = ACTIONS(3771), - [anon_sym_QMARK] = ACTIONS(3778), - [anon_sym_STAR_EQ] = ACTIONS(3778), - [anon_sym_SLASH_EQ] = ACTIONS(3778), - [anon_sym_PERCENT_EQ] = ACTIONS(3778), - [anon_sym_PLUS_EQ] = ACTIONS(3778), - [anon_sym_DASH_EQ] = ACTIONS(3778), - [anon_sym_LT_LT_EQ] = ACTIONS(3778), - [anon_sym_GT_GT_EQ] = ACTIONS(3778), - [anon_sym_AMP_EQ] = ACTIONS(3778), - [anon_sym_CARET_EQ] = ACTIONS(3778), - [anon_sym_PIPE_EQ] = ACTIONS(3778), - [anon_sym_and_eq] = ACTIONS(3778), - [anon_sym_or_eq] = ACTIONS(3778), - [anon_sym_xor_eq] = ACTIONS(3778), - [anon_sym_LT_EQ_GT] = ACTIONS(3778), - [anon_sym_or] = ACTIONS(3773), - [anon_sym_and] = ACTIONS(3773), - [anon_sym_bitor] = ACTIONS(3778), - [anon_sym_xor] = ACTIONS(3773), - [anon_sym_bitand] = ACTIONS(3778), - [anon_sym_not_eq] = ACTIONS(3778), - [anon_sym_DASH_DASH] = ACTIONS(3778), - [anon_sym_PLUS_PLUS] = ACTIONS(3778), - [anon_sym_DOT] = ACTIONS(3773), - [anon_sym_DASH_GT] = ACTIONS(3773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3771), - [anon_sym_decltype] = ACTIONS(3771), - [anon_sym_DOT_STAR] = ACTIONS(3778), - [anon_sym_DASH_GT_STAR] = ACTIONS(3778), + [sym_auto] = ACTIONS(3582), + [anon_sym_decltype] = ACTIONS(3582), + [anon_sym_final] = ACTIONS(3582), + [anon_sym_override] = ACTIONS(3582), + [anon_sym_GT2] = ACTIONS(3582), }, }; @@ -220755,7 +221932,7 @@ static const uint16_t ts_small_parse_table[] = { [0] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3740), 18, + ACTIONS(3682), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -220774,7 +221951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3742), 45, + ACTIONS(3684), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -220820,1102 +221997,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [71] = 30, + [71] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1431), 1, - anon_sym_enum, - ACTIONS(1435), 1, - anon_sym_struct, - ACTIONS(1437), 1, - anon_sym_union, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(3835), 1, - anon_sym_COLON_COLON, - ACTIONS(3901), 1, - anon_sym_class, - ACTIONS(3903), 1, - anon_sym_typename, - ACTIONS(3905), 1, - anon_sym_template, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3398), 1, - sym__declaration_specifiers, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(5385), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(6451), 7, - sym_parameter_declaration, - sym_type_parameter_declaration, - sym_variadic_type_parameter_declaration, - sym_optional_type_parameter_declaration, - sym_template_template_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2193), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [196] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3793), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3795), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [267] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3758), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3760), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3764), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [409] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1817), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3933), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3929), 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_EQ, - sym_primitive_type, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(3931), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [484] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1818), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3936), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3939), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3847), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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_DASH_GT, - anon_sym_GT2, - ACTIONS(3849), 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, - [561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3736), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3738), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [632] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3942), 1, - sym_literal_suffix, - STATE(1823), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1681), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1687), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3510), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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_DASH_GT, - anon_sym_GT2, - ACTIONS(3518), 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, - [711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3744), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3746), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [782] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3766), 1, - anon_sym_const, - ACTIONS(3775), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(3768), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - ACTIONS(3771), 11, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - ACTIONS(3773), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3778), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [861] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1818), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1681), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1687), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3859), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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_DASH_GT, - anon_sym_GT2, - ACTIONS(3861), 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, - [938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3752), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [1009] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3944), 1, - sym_identifier, - ACTIONS(3952), 1, - sym_primitive_type, - STATE(1817), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3950), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3948), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_auto, - anon_sym_decltype, - ACTIONS(3946), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [1088] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3508), 1, - anon_sym_const, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(3954), 1, - anon_sym_LT, - STATE(3154), 1, - sym_template_argument_list, - ACTIONS(3520), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(3957), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(3523), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(3516), 9, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - ACTIONS(3510), 11, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(3959), 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(3518), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - [1178] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3766), 1, - anon_sym_const, - ACTIONS(3768), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - ACTIONS(3775), 3, - anon_sym_STAR, + ACTIONS(3731), 2, anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(3771), 11, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - ACTIONS(3773), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3778), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [1256] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3775), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(3771), 3, + ACTIONS(3727), 3, anon_sym_TILDE, anon_sym_COLON_COLON, anon_sym_LBRACE, - ACTIONS(3768), 5, + ACTIONS(3724), 5, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3773), 14, + ACTIONS(3729), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -221930,7 +222028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(3778), 16, + ACTIONS(3734), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PERCENT, @@ -221947,7 +222045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3766), 22, + ACTIONS(3722), 23, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -221956,6 +222054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -221970,7 +222069,1231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [1334] = 3, + [150] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1815), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3929), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3932), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3875), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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_DASH_GT, + anon_sym_GT2, + ACTIONS(3877), 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, + [227] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1816), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3939), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3935), 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_EQ, + sym_primitive_type, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(3937), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [302] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3731), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(3727), 4, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3724), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(3734), 13, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3729), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3722), 24, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [381] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3942), 1, + sym_identifier, + ACTIONS(3950), 1, + sym_primitive_type, + STATE(1816), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3948), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3946), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_auto, + anon_sym_decltype, + ACTIONS(3944), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3582), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [531] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3731), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(3724), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(3727), 4, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3729), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3734), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3722), 23, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3576), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3578), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3698), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3700), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [752] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3722), 1, + anon_sym_const, + ACTIONS(3731), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(3724), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + ACTIONS(3727), 11, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3729), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3734), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3609), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3611), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3706), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3708), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3690), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3692), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [1044] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1815), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1691), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1697), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3849), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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_DASH_GT, + anon_sym_GT2, + ACTIONS(3851), 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, + [1121] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3952), 1, + sym_literal_suffix, + STATE(1827), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1691), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1697), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3462), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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_DASH_GT, + anon_sym_GT2, + ACTIONS(3457), 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, + [1200] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(1465), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3827), 1, + anon_sym_RPAREN, + ACTIONS(3837), 1, + anon_sym_COLON_COLON, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3432), 1, + sym__declaration_specifiers, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(5829), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2091), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [1328] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3954), 1, + sym_literal_suffix, + STATE(1840), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1447), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1455), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3457), 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(3462), 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, + [1406] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3450), 1, + anon_sym_const, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_LBRACE, + ACTIONS(3956), 1, + anon_sym_LT, + STATE(3164), 1, + sym_template_argument_list, + ACTIONS(3459), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(3959), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(3452), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(3455), 9, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3462), 11, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3961), 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(3457), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [1496] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3927), 26, @@ -222037,10 +223360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [1404] = 3, + [1566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3899), 26, + ACTIONS(3917), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -222067,7 +223390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(3897), 36, + ACTIONS(3915), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -222104,712 +223427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [1474] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3911), 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(3909), 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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [1544] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1833), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1447), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1455), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3861), 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(3859), 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, - [1620] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1833), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3961), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3964), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3849), 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(3847), 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, - [1696] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, - sym_literal_suffix, - STATE(1832), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1447), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1455), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3518), 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(3510), 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, - [1774] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3679), 1, - anon_sym_const, - ACTIONS(3969), 1, - anon_sym_LT, - STATE(1847), 1, - sym_template_argument_list, - ACTIONS(3688), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(3681), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(3684), 10, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - ACTIONS(3686), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3691), 23, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [1858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3923), 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(3921), 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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [1928] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3775), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(3771), 4, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3768), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(3778), 13, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(3773), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(3766), 23, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [2006] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3775), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(3768), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(3771), 4, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3773), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(3778), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(3766), 22, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [2084] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3976), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_COLON, - STATE(2144), 1, - sym_field_declaration_list, - STATE(5570), 1, - sym_virtual_specifier, - STATE(6601), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3974), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3972), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [2165] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3976), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_COLON, - STATE(2096), 1, - sym_field_declaration_list, - STATE(5595), 1, - sym_virtual_specifier, - STATE(6583), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3984), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3982), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [2246] = 32, + [1636] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -222836,742 +223454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1451), 1, anon_sym_typename, - ACTIONS(1465), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(3835), 1, - anon_sym_COLON_COLON, - ACTIONS(3839), 1, - anon_sym_RPAREN, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3399), 1, - sym__declaration_specifiers, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(5385), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(5829), 3, - sym_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2193), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [2373] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3976), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_COLON, - STATE(2130), 1, - sym_field_declaration_list, - STATE(5568), 1, - sym_virtual_specifier, - STATE(6610), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3988), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3986), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [2454] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3976), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_COLON, - STATE(2157), 1, - sym_field_declaration_list, - STATE(5611), 1, - sym_virtual_specifier, - STATE(6567), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3992), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3990), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [2535] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3994), 1, - sym_identifier, - ACTIONS(3998), 1, - sym_primitive_type, - STATE(1846), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3996), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3946), 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(3948), 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_auto, - anon_sym_decltype, - [2612] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3976), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_COLON, - STATE(2140), 1, - sym_field_declaration_list, - STATE(5602), 1, - sym_virtual_specifier, - STATE(6574), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4002), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4000), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [2693] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1846), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4004), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3931), 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(3929), 29, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - [2766] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3766), 1, - anon_sym_const, - ACTIONS(3775), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(3768), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(3771), 11, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - ACTIONS(3773), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3778), 23, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [2843] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3976), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_COLON, - STATE(2137), 1, - sym_field_declaration_list, - STATE(5569), 1, - sym_virtual_specifier, - STATE(6606), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4009), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4007), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [2924] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3976), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_COLON, - STATE(2014), 1, - sym_field_declaration_list, - STATE(5682), 1, - sym_virtual_specifier, - STATE(6510), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4013), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4011), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [3005] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3976), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_COLON, - STATE(2016), 1, - sym_field_declaration_list, - STATE(5679), 1, - sym_virtual_specifier, - STATE(6515), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4017), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4015), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [3086] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1431), 1, - anon_sym_enum, - ACTIONS(1433), 1, - anon_sym_class, - ACTIONS(1435), 1, - anon_sym_struct, - ACTIONS(1437), 1, - anon_sym_union, - ACTIONS(1451), 1, - anon_sym_typename, - ACTIONS(2869), 1, + ACTIONS(2865), 1, sym_primitive_type, ACTIONS(3100), 1, anon_sym_DOT_DOT_DOT, @@ -223579,19 +223462,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, ACTIONS(3825), 1, sym_identifier, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - STATE(3274), 1, + STATE(3272), 1, sym__type_specifier, - STATE(3289), 1, + STATE(3277), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3399), 1, - sym__declaration_specifiers, - STATE(3418), 1, + STATE(3336), 1, sym_template_type, - STATE(3479), 1, + STATE(3432), 1, + sym__declaration_specifiers, + STATE(3443), 1, sym_qualified_type_identifier, - STATE(3522), 1, + STATE(3481), 1, sym_decltype_auto, STATE(5385), 1, sym__scope_resolution, @@ -223606,12 +223489,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(55), 5, + ACTIONS(55), 6, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, @@ -223621,7 +223505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2193), 8, + STATE(2091), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -223630,7 +223514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual_function_specifier, aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, + STATE(3448), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -223639,23 +223523,1128 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [3213] = 9, + [1764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + STATE(1835), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3963), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3966), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3877), 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(3875), 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, + [1840] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3537), 1, + anon_sym_const, + ACTIONS(3969), 1, + anon_sym_LT, + STATE(1845), 1, + sym_template_argument_list, + ACTIONS(3546), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(3539), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(3542), 10, anon_sym_LBRACE, - ACTIONS(3978), 1, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3544), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3549), 23, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [1924] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3722), 1, + anon_sym_const, + ACTIONS(3724), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + ACTIONS(3731), 3, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(3727), 11, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3729), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3734), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [2002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3909), 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(3907), 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_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [2072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3913), 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(3911), 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_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [2142] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1835), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1447), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1455), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3851), 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(3849), 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, + [2218] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1841), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3972), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3937), 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(3935), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [2291] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LBRACE, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2022), 1, + STATE(2122), 1, + sym_field_declaration_list, + STATE(5611), 1, + sym_virtual_specifier, + STATE(6567), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3977), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3975), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [2372] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LBRACE, + ACTIONS(3981), 1, + anon_sym_COLON, + STATE(2116), 1, + sym_field_declaration_list, + STATE(5602), 1, + sym_virtual_specifier, + STATE(6574), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3987), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3985), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [2453] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LBRACE, + ACTIONS(3981), 1, + anon_sym_COLON, + STATE(2137), 1, + sym_field_declaration_list, + STATE(5569), 1, + sym_virtual_specifier, + STATE(6606), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3991), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3989), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [2534] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3722), 1, + anon_sym_const, + ACTIONS(3731), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(3724), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(3727), 11, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3729), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3734), 23, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [2611] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1417), 1, + anon_sym_RPAREN, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3837), 1, + anon_sym_COLON_COLON, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3432), 1, + sym__declaration_specifiers, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(5841), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2091), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [2736] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3837), 1, + anon_sym_COLON_COLON, + ACTIONS(3993), 1, + anon_sym_DOT_DOT_DOT, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3432), 1, + sym__declaration_specifiers, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(6429), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2091), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [2861] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LBRACE, + ACTIONS(3981), 1, + anon_sym_COLON, + STATE(2145), 1, + sym_field_declaration_list, + STATE(5682), 1, + sym_virtual_specifier, + STATE(6510), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3997), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3995), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [2942] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LBRACE, + ACTIONS(3981), 1, + anon_sym_COLON, + STATE(2141), 1, + sym_field_declaration_list, + STATE(5679), 1, + sym_virtual_specifier, + STATE(6515), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4001), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3999), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [3023] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LBRACE, + ACTIONS(3981), 1, + anon_sym_COLON, + STATE(2138), 1, sym_field_declaration_list, STATE(5669), 1, sym_virtual_specifier, STATE(6518), 1, sym_base_class_clause, - ACTIONS(3980), 2, + ACTIONS(3983), 2, anon_sym_final, anon_sym_override, - ACTIONS(4021), 18, + ACTIONS(4005), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -223674,7 +224663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4019), 36, + ACTIONS(4003), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -223711,27 +224700,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [3294] = 11, + [3104] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1517), 1, - anon_sym_LBRACE, - ACTIONS(4025), 1, + ACTIONS(4007), 1, + sym_identifier, + ACTIONS(4011), 1, + sym_primitive_type, + STATE(1841), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4009), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3944), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4029), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4031), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(3946), 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_auto, - ACTIONS(4033), 1, anon_sym_decltype, - STATE(2153), 1, - sym_decltype_auto, - STATE(2159), 1, - sym_new_declarator, - STATE(2554), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4027), 18, + [3181] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LBRACE, + ACTIONS(3981), 1, + anon_sym_COLON, + STATE(2109), 1, + sym_field_declaration_list, + STATE(5595), 1, + sym_virtual_specifier, + STATE(6583), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4015), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -223750,7 +224805,369 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4023), 33, + ACTIONS(4013), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [3262] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LBRACE, + ACTIONS(3981), 1, + anon_sym_COLON, + STATE(2142), 1, + sym_field_declaration_list, + STATE(5568), 1, + sym_virtual_specifier, + STATE(6610), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4019), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4017), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [3343] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LBRACE, + ACTIONS(3981), 1, + anon_sym_COLON, + STATE(2121), 1, + sym_field_declaration_list, + STATE(5570), 1, + sym_virtual_specifier, + STATE(6601), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4023), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4021), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [3424] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2436), 1, + sym_field_declaration_list, + STATE(5768), 1, + sym_virtual_specifier, + STATE(6273), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3987), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3985), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3504] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2399), 1, + sym_field_declaration_list, + STATE(5812), 1, + sym_virtual_specifier, + STATE(6297), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4001), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3999), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3584] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LBRACE, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + sym_auto, + ACTIONS(4037), 1, + anon_sym_decltype, + STATE(2107), 1, + sym_decltype_auto, + STATE(2131), 1, + sym_new_declarator, + STATE(2557), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4031), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4027), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -223784,7 +225201,412 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [3378] = 3, + [3668] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(4039), 1, + anon_sym_LT, + STATE(1904), 1, + sym_template_argument_list, + ACTIONS(3537), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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(3542), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [3742] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4042), 1, + anon_sym_catch, + STATE(1868), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2370), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2368), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [3814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3909), 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(3907), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_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, + [3882] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4042), 1, + anon_sym_catch, + STATE(1868), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2355), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2353), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [3954] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4042), 1, + anon_sym_catch, + STATE(1868), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2374), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2372), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [4026] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2440), 1, + sym_field_declaration_list, + STATE(5759), 1, + sym_virtual_specifier, + STATE(6269), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4015), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4013), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [4106] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3927), 27, @@ -223849,521 +225671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [3446] = 9, + [4174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2433), 1, - sym_field_declaration_list, - STATE(5801), 1, - sym_virtual_specifier, - STATE(6295), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4021), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4019), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [3526] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3766), 1, - anon_sym_const, - ACTIONS(3775), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(3768), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - ACTIONS(3771), 11, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - ACTIONS(3773), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3778), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [3602] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2292), 1, - sym_field_declaration_list, - STATE(5720), 1, - sym_virtual_specifier, - STATE(6245), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4009), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4007), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [3682] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2228), 1, - sym_field_declaration_list, - STATE(5781), 1, - sym_virtual_specifier, - STATE(6278), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3992), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3990), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [3762] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2415), 1, - sym_field_declaration_list, - STATE(5725), 1, - sym_virtual_specifier, - STATE(6255), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3974), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3972), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [3842] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1417), 1, - anon_sym_RPAREN, - ACTIONS(1431), 1, - anon_sym_enum, - ACTIONS(1433), 1, - anon_sym_class, - ACTIONS(1435), 1, - anon_sym_struct, - ACTIONS(1437), 1, - anon_sym_union, - ACTIONS(1451), 1, - anon_sym_typename, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(3835), 1, - anon_sym_COLON_COLON, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3399), 1, - sym__declaration_specifiers, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(5385), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(5841), 3, - sym_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2193), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [3966] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3923), 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(3921), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_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, - [4034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4039), 27, + ACTIONS(4046), 27, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -224391,7 +225702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(4037), 33, + ACTIONS(4044), 33, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -224425,166 +225736,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - [4102] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2224), 1, - sym_field_declaration_list, - STATE(5768), 1, - sym_virtual_specifier, - STATE(6273), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4002), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4000), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [4182] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(4043), 1, - anon_sym_LT, - STATE(1882), 1, - sym_template_argument_list, - ACTIONS(4041), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(3534), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [4256] = 11, + [4242] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1517), 1, anon_sym_LBRACE, - ACTIONS(4025), 1, - anon_sym_LPAREN2, ACTIONS(4029), 1, - anon_sym_LBRACK, - ACTIONS(4031), 1, - sym_auto, + anon_sym_LPAREN2, ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + sym_auto, + ACTIONS(4037), 1, anon_sym_decltype, - STATE(2153), 1, - sym_decltype_auto, - STATE(2158), 1, + STATE(2099), 1, sym_new_declarator, - STATE(2476), 2, + STATE(2107), 1, + sym_decltype_auto, + STATE(2574), 2, sym_argument_list, sym_initializer_list, - ACTIONS(4047), 18, + ACTIONS(4050), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -224603,7 +225775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4045), 33, + ACTIONS(4048), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -224637,455 +225809,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [4340] = 9, + [4326] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2425), 1, - sym_field_declaration_list, - STATE(5812), 1, - sym_virtual_specifier, - STATE(6297), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4017), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4015), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [4420] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1431), 1, - anon_sym_enum, - ACTIONS(1433), 1, - anon_sym_class, - ACTIONS(1435), 1, - anon_sym_struct, - ACTIONS(1437), 1, - anon_sym_union, - ACTIONS(1451), 1, - anon_sym_typename, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(3835), 1, - anon_sym_COLON_COLON, - ACTIONS(4049), 1, - anon_sym_DOT_DOT_DOT, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3399), 1, - sym__declaration_specifiers, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(5385), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(6429), 3, - sym_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2193), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [4544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3899), 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(3897), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_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, - [4612] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1517), 1, - anon_sym_LBRACE, ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4029), 1, - anon_sym_LBRACK, - ACTIONS(4031), 1, - sym_auto, - ACTIONS(4033), 1, - anon_sym_decltype, - STATE(2124), 1, - sym_new_declarator, - STATE(2153), 1, - sym_decltype_auto, - STATE(2487), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4053), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4051), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [4696] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4057), 27, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - 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(4055), 33, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_template, - anon_sym_try, - anon_sym_delete, - anon_sym_throw, - anon_sym_co_return, - anon_sym_co_yield, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - [4764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3911), 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(3909), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_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, - [4832] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2406), 1, + STATE(2366), 1, sym_field_declaration_list, STATE(5808), 1, sym_virtual_specifier, STATE(6299), 1, sym_base_class_clause, - ACTIONS(3980), 2, + ACTIONS(3983), 2, anon_sym_final, anon_sym_override, - ACTIONS(4013), 19, + ACTIONS(3997), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -225105,7 +225845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4011), 34, + ACTIONS(3995), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -225140,502 +225880,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [4912] = 6, + [4406] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(4059), 1, - anon_sym_LT, - STATE(1882), 1, - sym_template_argument_list, - ACTIONS(3679), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(3684), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [4986] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2221), 1, - sym_field_declaration_list, - STATE(5759), 1, - sym_virtual_specifier, - STATE(6269), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - 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_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3982), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [5066] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1517), 1, - anon_sym_LBRACE, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4029), 1, - anon_sym_LBRACK, - ACTIONS(4031), 1, - sym_auto, - ACTIONS(4033), 1, - anon_sym_decltype, - STATE(2138), 1, - sym_new_declarator, - STATE(2153), 1, - sym_decltype_auto, - STATE(2513), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4064), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4062), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [5150] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2262), 1, - sym_field_declaration_list, - STATE(5715), 1, - sym_virtual_specifier, - STATE(6241), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - 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_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3986), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [5230] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1877), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4066), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3931), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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_DASH_GT, - anon_sym_GT2, - ACTIONS(3929), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - 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, - [5301] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4071), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4069), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [5368] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(4073), 1, - anon_sym_LT, - STATE(1923), 1, - sym_template_argument_list, - ACTIONS(4041), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(3534), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [5441] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4075), 1, + ACTIONS(4052), 1, anon_sym_catch, - STATE(1899), 2, + STATE(1868), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - ACTIONS(2370), 6, + ACTIONS(2361), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2368), 50, + ACTIONS(2359), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -225655,6 +225915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -225686,10 +225947,935 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [5512] = 3, + [4478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 19, + ACTIONS(3917), 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(3915), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_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, + [4546] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LBRACE, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + sym_auto, + ACTIONS(4037), 1, + anon_sym_decltype, + STATE(2107), 1, + sym_decltype_auto, + STATE(2153), 1, + sym_new_declarator, + STATE(2517), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4057), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4055), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [4630] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3837), 1, + anon_sym_COLON_COLON, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3432), 1, + sym__declaration_specifiers, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(6438), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2091), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [4752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4061), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + 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(4059), 33, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_template, + anon_sym_try, + anon_sym_delete, + anon_sym_throw, + anon_sym_co_return, + anon_sym_co_yield, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + [4820] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(4065), 1, + anon_sym_LT, + STATE(1904), 1, + sym_template_argument_list, + ACTIONS(4063), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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(3469), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [4894] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2429), 1, + sym_field_declaration_list, + STATE(5801), 1, + sym_virtual_specifier, + STATE(6295), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4005), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4003), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [4974] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2445), 1, + sym_field_declaration_list, + STATE(5725), 1, + sym_virtual_specifier, + STATE(6255), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4023), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4021), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [5054] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LBRACE, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + sym_auto, + ACTIONS(4037), 1, + anon_sym_decltype, + STATE(2107), 1, + sym_decltype_auto, + STATE(2129), 1, + sym_new_declarator, + STATE(2555), 2, + sym_argument_list, + sym_initializer_list, + 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_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4067), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [5138] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2406), 1, + sym_field_declaration_list, + STATE(5715), 1, + sym_virtual_specifier, + STATE(6241), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4019), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4017), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [5218] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2427), 1, + sym_field_declaration_list, + STATE(5720), 1, + sym_virtual_specifier, + STATE(6245), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3991), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3989), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [5298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3913), 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(3911), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_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, + [5366] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2428), 1, + sym_field_declaration_list, + STATE(5781), 1, + sym_virtual_specifier, + STATE(6278), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3977), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3975), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [5446] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3722), 1, + anon_sym_const, + ACTIONS(3731), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(3724), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + ACTIONS(3727), 11, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3729), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3734), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [5522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3690), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -225709,7 +226895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3764), 40, + ACTIONS(3692), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -225750,10 +226936,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - [5579] = 3, + [5589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3766), 19, + ACTIONS(4073), 13, + 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(4071), 46, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [5656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3576), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -225773,7 +227023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3771), 40, + ACTIONS(3578), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -225814,7 +227064,906 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - [5646] = 3, + [5723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(3582), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [5790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3698), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(3700), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [5857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3609), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(3611), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [5924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3706), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(3708), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [5991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(3684), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [6058] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1890), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4075), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3937), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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_DASH_GT, + anon_sym_GT2, + ACTIONS(3935), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + 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, + [6129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3909), 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(3907), 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_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [6196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4080), 13, + 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(4078), 46, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [6263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4084), 13, + 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(4082), 46, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [6330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4088), 13, + 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(4086), 46, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [6397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4092), 13, + 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(4090), 46, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [6464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4096), 13, + 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(4094), 46, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [6531] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2453), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2015), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2017), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [6600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4100), 13, + 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(4098), 46, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [6667] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3927), 23, @@ -225878,16 +228027,598 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [5713] = 6, + [6734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(4104), 13, + 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, - ACTIONS(4077), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4102), 46, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [6801] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4106), 1, + sym_identifier, + ACTIONS(4110), 1, + sym_primitive_type, + STATE(1890), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4108), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3944), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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_DASH_GT, + anon_sym_GT2, + ACTIONS(3946), 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, - STATE(1923), 1, + 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_auto, + anon_sym_decltype, + [6876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4114), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4112), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [6943] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4118), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4116), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [7012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3722), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(3727), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [7079] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4124), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4122), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [7148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 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(3915), 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_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [7215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4128), 13, + 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(4126), 46, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4132), 13, + 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(4130), 46, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7349] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(4134), 1, + anon_sym_LT, + STATE(1934), 1, sym_template_argument_list, - ACTIONS(3679), 19, + ACTIONS(3537), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -225907,7 +228638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3684), 37, + ACTIONS(3542), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -225945,21 +228676,5639 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [5786] = 7, + [7422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, - sym_identifier, - ACTIONS(4084), 1, + ACTIONS(4139), 13, + 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(4137), 46, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, - STATE(1877), 1, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7489] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(4141), 1, + anon_sym_LT, + STATE(1934), 1, + sym_template_argument_list, + ACTIONS(4063), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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(3469), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [7562] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4124), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4122), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [7631] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4145), 13, + 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(4143), 46, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4145), 13, + 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(4143), 46, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4145), 13, + 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(4143), 46, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4149), 13, + 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(4147), 46, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3913), 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(3911), 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_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [7966] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(4153), 1, + anon_sym_LBRACK, + ACTIONS(4155), 1, + sym_auto, + ACTIONS(4157), 1, + anon_sym_decltype, + STATE(2410), 1, + sym_new_declarator, + STATE(2460), 1, + sym_decltype_auto, + STATE(2844), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4031), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4027), 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, + [8048] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2617), 1, + sym_field_declaration_list, + STATE(5615), 1, + sym_virtual_specifier, + STATE(6188), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4023), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4021), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [8126] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(5018), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5483), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3495), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [8240] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 1, + sym_identifier, + ACTIONS(4181), 1, + sym_primitive_type, + STATE(1922), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(4082), 4, + ACTIONS(4179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3944), 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_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_DASH_GT, + ACTIONS(3946), 26, + anon_sym_DASH, + 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_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_requires, + [8314] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1922), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4183), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3937), 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_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_DASH_GT, + ACTIONS(3935), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_requires, + [8384] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4186), 1, + anon_sym_catch, + STATE(1923), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2361), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2359), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [8454] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4124), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4122), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [8522] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 1, + anon_sym_catch, + STATE(1961), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2370), 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(2368), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [8592] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(4957), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5480), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3495), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [8706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4114), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4112), 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_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [8772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4191), 1, + anon_sym_catch, + STATE(1923), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2355), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2353), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [8842] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(4153), 1, + anon_sym_LBRACK, + ACTIONS(4155), 1, + sym_auto, + ACTIONS(4157), 1, + anon_sym_decltype, + STATE(2413), 1, + sym_new_declarator, + STATE(2460), 1, + sym_decltype_auto, + STATE(2771), 2, + sym_argument_list, + sym_initializer_list, + 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(4067), 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, + [8924] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(4980), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5483), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3495), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [9038] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 1, + anon_sym_catch, + STATE(1961), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2374), 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(2372), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [9108] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(5081), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5456), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3495), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [9222] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(4153), 1, + anon_sym_LBRACK, + ACTIONS(4155), 1, + sym_auto, + ACTIONS(4157), 1, + anon_sym_decltype, + STATE(2460), 1, + sym_decltype_auto, + STATE(2462), 1, + sym_new_declarator, + STATE(2815), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4050), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4048), 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, + [9304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3722), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(3727), 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_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [9370] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4193), 1, + sym_identifier, + ACTIONS(4197), 1, + sym_primitive_type, + STATE(1956), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4195), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, ACTIONS(3946), 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_auto, + anon_sym_decltype, + ACTIONS(3944), 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, + [9444] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(4987), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5454), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3495), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [9558] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(5046), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5494), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3495), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [9672] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2633), 1, + sym_field_declaration_list, + STATE(5636), 1, + sym_virtual_specifier, + STATE(6173), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3977), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3975), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [9750] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4191), 1, + anon_sym_catch, + STATE(1923), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2374), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2372), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [9820] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + STATE(3282), 1, + sym_template_argument_list, + ACTIONS(4201), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4199), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [9890] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2643), 1, + sym_field_declaration_list, + STATE(5664), 1, + sym_virtual_specifier, + STATE(6216), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3997), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3995), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [9968] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 1, + anon_sym_catch, + STATE(1961), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2355), 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(2353), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [10038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2379), 52, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [10104] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2641), 1, + sym_field_declaration_list, + STATE(5658), 1, + sym_virtual_specifier, + STATE(6214), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4001), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3999), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [10182] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2630), 1, + sym_field_declaration_list, + STATE(5630), 1, + sym_virtual_specifier, + STATE(6200), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3987), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3985), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [10260] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2626), 1, + sym_field_declaration_list, + STATE(5626), 1, + sym_virtual_specifier, + STATE(6196), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4015), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4013), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [10338] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4118), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4116), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [10406] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(4953), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5494), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3495), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [10520] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2611), 1, + sym_field_declaration_list, + STATE(5599), 1, + sym_virtual_specifier, + STATE(6183), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3991), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3989), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [10598] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(4961), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5488), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3495), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [10712] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2639), 1, + sym_field_declaration_list, + STATE(5649), 1, + sym_virtual_specifier, + STATE(6212), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4005), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4003), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [10790] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4191), 1, + anon_sym_catch, + STATE(1923), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2370), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2368), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [10860] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(5000), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5456), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3495), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [10974] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4207), 1, + anon_sym_COLON, + STATE(2078), 1, + sym__enum_base_clause, + STATE(2134), 1, + sym_enumerator_list, + ACTIONS(4205), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4203), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [11046] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4124), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4122), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [11114] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1956), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4209), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3935), 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, + 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(3937), 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, + [11184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2015), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2017), 52, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [11250] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2607), 1, + sym_field_declaration_list, + STATE(5583), 1, + sym_virtual_specifier, + STATE(6179), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4019), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4017), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [11328] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(4065), 1, + anon_sym_LT, + STATE(1904), 1, + sym_template_argument_list, + ACTIONS(3450), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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(3455), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [11400] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(4972), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5462), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3495), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [11514] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4212), 1, + anon_sym_catch, + STATE(1961), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2361), 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(2359), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [11584] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4207), 1, + anon_sym_COLON, + STATE(1977), 1, + sym__enum_base_clause, + STATE(2087), 1, + sym_enumerator_list, + ACTIONS(4217), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4215), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [11656] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(5001), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5488), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3495), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [11770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4124), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4122), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [11836] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(4153), 1, + anon_sym_LBRACK, + ACTIONS(4155), 1, + sym_auto, + ACTIONS(4157), 1, + anon_sym_decltype, + STATE(2457), 1, + sym_new_declarator, + STATE(2460), 1, + sym_decltype_auto, + STATE(2728), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4057), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4055), 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, + [11918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1999), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2001), 52, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [11984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4219), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [12049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2685), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [12114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4223), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [12179] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2898), 1, + sym_field_declaration_list, + STATE(5788), 1, + sym_virtual_specifier, + STATE(6415), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3991), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(3989), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [12256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4219), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [12321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4231), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4229), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [12386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4235), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4233), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [12451] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2941), 1, + sym_field_declaration_list, + STATE(5622), 1, + sym_virtual_specifier, + STATE(6306), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4005), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4003), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [12528] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2928), 1, + sym_field_declaration_list, + STATE(5692), 1, + sym_virtual_specifier, + STATE(6328), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3977), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(3975), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [12605] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2937), 1, + sym_field_declaration_list, + STATE(5755), 1, + sym_virtual_specifier, + STATE(6293), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4001), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(3999), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [12682] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2125), 1, + sym_enumerator_list, + ACTIONS(4239), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4237), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [12749] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2918), 1, + sym_field_declaration_list, + STATE(5589), 1, + sym_virtual_specifier, + STATE(6289), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3997), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(3995), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [12826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2731), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2729), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [12891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2725), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [12956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2723), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2721), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2717), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2671), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2669), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2753), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2751), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4241), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4245), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4245), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4251), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4249), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4253), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4259), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13606] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4295), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2154), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [13723] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(4261), 1, + anon_sym_LT, + STATE(2069), 1, + sym_template_argument_list, + ACTIONS(4063), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_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(3469), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -225979,12 +234328,3232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(3948), 28, + [13794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4265), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4263), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4269), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4267), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4273), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4271), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4275), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [14054] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4293), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2154), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [14171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4281), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4279), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [14236] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2902), 1, + sym_field_declaration_list, + STATE(5786), 1, + sym_virtual_specifier, + STATE(6374), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4023), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4021), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [14313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4285), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4283), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [14378] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4289), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2154), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [14495] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4304), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2154), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [14612] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4257), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2154), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [14729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2413), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2411), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [14794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2425), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [14859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2425), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [14924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2699), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2697), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [14989] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4273), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2154), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [15106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2765), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2763), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2809), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2807), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15236] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4296), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2154), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [15353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2805), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2803), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15418] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4303), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2154), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [15535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2413), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2411), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2737), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2735), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2691), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2689), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4275), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2825), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2823), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15860] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2924), 1, + sym_field_declaration_list, + STATE(5703), 1, + sym_virtual_specifier, + STATE(6333), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3987), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(3985), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [15937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2741), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2739), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2685), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4289), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4287), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2683), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2681), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2679), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2677), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16262] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2919), 1, + sym_field_declaration_list, + STATE(5710), 1, + sym_virtual_specifier, + STATE(6339), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4015), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4013), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [16339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4265), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4263), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2673), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2817), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2815), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2667), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2665), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4291), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2801), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2799), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4297), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4295), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4301), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4299), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4305), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4303), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3722), 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(3727), 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_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [16989] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4272), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2154), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [17106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4309), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4307), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [17171] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4311), 1, + anon_sym_COLON, + STATE(2207), 1, + sym__enum_base_clause, + STATE(2420), 1, + sym_enumerator_list, + ACTIONS(4205), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4203), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [17242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2635), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2633), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [17307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2639), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2637), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [17372] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4124), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -226000,20 +237569,3246 @@ 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(4122), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [17439] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4124), 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(4122), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [17506] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4261), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2154), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [17623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4114), 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(4112), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [17688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4315), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4313), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [17753] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(4317), 1, + anon_sym_LT, + STATE(2069), 1, + sym_template_argument_list, + ACTIONS(3537), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_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(3542), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [17824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2777), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2775), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [17889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2783), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [17954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2641), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4315), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4313), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4322), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4320), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18149] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4311), 1, + anon_sym_COLON, + STATE(2296), 1, + sym__enum_base_clause, + STATE(2376), 1, + sym_enumerator_list, + ACTIONS(4217), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4215), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [18220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2797), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2795), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2793), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2791), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2417), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2415), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2821), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2819), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4326), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4324), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18545] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4330), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4328), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4334), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4332), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2625), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2623), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18740] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2894), 1, + sym_field_declaration_list, + STATE(5797), 1, + sym_virtual_specifier, + STATE(6388), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4019), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4017), 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_DOT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - [5861] = 30, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [18817] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + sym_auto, + ACTIONS(4037), 1, + anon_sym_decltype, + STATE(2107), 1, + sym_decltype_auto, + ACTIONS(4338), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4336), 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_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_DASH_GT, + [18888] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2453), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2015), 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(2017), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18955] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2647), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2645), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2749), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2747), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19085] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2453), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2015), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2017), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19152] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4277), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2154), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [19269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4124), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4122), 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_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [19334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3722), 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(3727), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [19399] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4305), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2154), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [19516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2447), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2445), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2431), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2429), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2745), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2743), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19711] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4342), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4340), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [19778] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2749), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2747), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19843] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + STATE(3272), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4290), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2154), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [19960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2435), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2433), 51, + 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [20025] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2105), 1, + sym_enumerator_list, + ACTIONS(4346), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4344), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [20092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4350), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4348), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [20156] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(4352), 1, + anon_sym_LT, + STATE(2035), 1, + sym_template_argument_list, + ACTIONS(4063), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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(3469), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [20226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4354), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [20290] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4340), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [20354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4360), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4358), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [20418] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(4141), 1, + anon_sym_LT, + STATE(1934), 1, + sym_template_argument_list, + ACTIONS(3450), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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(3455), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [20488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4364), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4362), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [20552] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2717), 1, + sym_field_declaration_list, + STATE(5811), 1, + sym_virtual_specifier, + STATE(6175), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3991), 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(3989), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [20628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4368), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [20692] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1615), 1, + sym_primitive_type, + ACTIONS(1617), 1, + anon_sym_enum, + ACTIONS(1619), 1, + anon_sym_class, + ACTIONS(1621), 1, + anon_sym_struct, + ACTIONS(1623), 1, + anon_sym_union, + ACTIONS(1625), 1, + sym_auto, + ACTIONS(1627), 1, + anon_sym_decltype, + ACTIONS(1631), 1, + anon_sym_typename, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(4372), 1, + anon_sym_COLON_COLON, + STATE(3336), 1, + sym_template_type, + STATE(3422), 1, + sym__type_specifier, + STATE(3606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3901), 1, + sym_decltype_auto, + STATE(3925), 1, + sym_qualified_type_identifier, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1613), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3375), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3854), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [20806] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_LBRACE, + ACTIONS(4374), 1, + anon_sym_LT, + STATE(2224), 1, + sym_template_argument_list, + ACTIONS(3457), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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(3462), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [20878] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2809), 1, + sym_field_declaration_list, + STATE(5700), 1, + sym_virtual_specifier, + STATE(6493), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3997), 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(3995), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [20954] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -226040,43 +240835,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1451), 1, anon_sym_typename, - ACTIONS(2869), 1, + ACTIONS(2865), 1, sym_primitive_type, ACTIONS(3825), 1, sym_identifier, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - STATE(3274), 1, + STATE(3263), 1, sym__type_specifier, - STATE(3289), 1, + STATE(3277), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3399), 1, - sym__declaration_specifiers, - STATE(3418), 1, + STATE(3336), 1, sym_template_type, - STATE(3479), 1, + STATE(3443), 1, sym_qualified_type_identifier, - STATE(3522), 1, + STATE(3481), 1, sym_decltype_auto, STATE(5385), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(6438), 3, - sym_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(55), 5, + ACTIONS(55), 6, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, @@ -226086,7 +240876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2193), 8, + STATE(3375), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -226095,7 +240885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual_function_specifier, aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, + STATE(3448), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -226104,12 +240894,10 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [5982] = 4, + [21068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4088), 19, + ACTIONS(4379), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -226124,12 +240912,11 @@ 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, - ACTIONS(4086), 39, + ACTIONS(4377), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -226144,6 +240931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -226167,12 +240955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [6051] = 3, + [21132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 19, + ACTIONS(4383), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -226187,12 +240973,11 @@ 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, - ACTIONS(3795), 40, + ACTIONS(4381), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -226203,11 +240988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -226231,14 +241016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [6118] = 4, + [21196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4088), 19, + ACTIONS(4387), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -226253,12 +241034,11 @@ 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, - ACTIONS(4086), 39, + ACTIONS(4385), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -226273,6 +241053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -226296,12 +241077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [6187] = 3, + [21260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3923), 23, + ACTIONS(4342), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -226318,76 +241097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(3921), 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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [6254] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4094), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4092), 39, + ACTIONS(4340), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -226402,6 +241114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -226425,31 +241138,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [6323] = 5, + [21324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_catch, - STATE(1899), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2374), 6, + ACTIONS(4391), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4389), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [21388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4395), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4393), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [21452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2372), 50, + ACTIONS(2379), 50, 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -226462,6 +241288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -226493,1122 +241320,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [6394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3736), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(3738), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [6461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3744), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(3746), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [6528] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3740), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(3742), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [6595] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3911), 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(3909), 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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [6662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3758), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(3760), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [6729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(3752), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [6796] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4096), 1, anon_sym_catch, - STATE(1899), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2363), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2361), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [6867] = 3, + [21516] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3899), 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(3897), 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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [6934] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4075), 1, - anon_sym_catch, - STATE(1899), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2357), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2355), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [7005] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(4043), 1, - anon_sym_LT, - STATE(1882), 1, - sym_template_argument_list, - ACTIONS(3508), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(3516), 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, + ACTIONS(1517), 1, 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_DASH_GT, - sym_auto, - anon_sym_decltype, - [7077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4088), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4086), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4029), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [7143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4101), 13, - 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(4099), 45, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [7209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4105), 13, - 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(4103), 45, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [7275] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4107), 1, - sym_identifier, - ACTIONS(4111), 1, - sym_primitive_type, - STATE(1929), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4109), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3948), 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_auto, - anon_sym_decltype, - ACTIONS(3946), 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, - [7349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4115), 13, - 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(4113), 45, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [7415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4119), 13, - 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(4117), 45, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [7481] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4121), 1, - sym_identifier, - ACTIONS(4125), 1, - sym_primitive_type, - STATE(1917), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4123), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3946), 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_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_DASH_GT, - ACTIONS(3948), 26, - anon_sym_DASH, - 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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_requires, - [7555] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1557), 1, - anon_sym_LBRACE, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4129), 1, - anon_sym_LBRACK, - ACTIONS(4131), 1, - sym_auto, - ACTIONS(4133), 1, - anon_sym_decltype, - STATE(2246), 1, - sym_decltype_auto, - STATE(2247), 1, - sym_new_declarator, - STATE(2815), 2, + STATE(2509), 2, sym_argument_list, sym_initializer_list, - ACTIONS(4064), 19, + ACTIONS(4399), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -227627,8 +241350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4062), 30, + ACTIONS(4397), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -227637,2427 +241359,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4137), 13, - 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(4135), 45, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [7703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4141), 13, - 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(4139), 45, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [7769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4145), 13, - 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(4143), 45, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [7835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4137), 13, - 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(4135), 45, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [7901] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2638), 1, - sym_field_declaration_list, - STATE(5649), 1, - sym_virtual_specifier, - STATE(6212), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4021), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4019), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [7979] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4151), 13, - 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(4149), 45, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [8045] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1917), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4153), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3931), 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_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_DASH_GT, - ACTIONS(3929), 28, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_requires, - [8115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 13, - 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(4156), 45, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [8181] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1557), 1, - anon_sym_LBRACE, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4129), 1, - anon_sym_LBRACK, - ACTIONS(4131), 1, - sym_auto, - ACTIONS(4133), 1, - anon_sym_decltype, - STATE(2246), 1, - sym_decltype_auto, - STATE(2310), 1, - sym_new_declarator, - STATE(2844), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4053), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4051), 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, - [8263] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1557), 1, - anon_sym_LBRACE, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4129), 1, - anon_sym_LBRACK, - ACTIONS(4131), 1, - sym_auto, - ACTIONS(4133), 1, - anon_sym_decltype, - STATE(2215), 1, - sym_new_declarator, - STATE(2246), 1, - sym_decltype_auto, - STATE(2771), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4047), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4045), 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, - [8345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4137), 13, - 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(4135), 45, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [8411] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4164), 1, - anon_sym_COLON, - STATE(1961), 1, - sym__enum_base_clause, - STATE(2097), 1, - sym_enumerator_list, - ACTIONS(4162), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4160), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [8483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3766), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(3771), 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_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [8549] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4164), 1, - anon_sym_COLON, - STATE(1947), 1, - sym__enum_base_clause, - STATE(2004), 1, - sym_enumerator_list, - ACTIONS(4168), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4166), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [8621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4172), 13, - 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(4170), 45, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [8687] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2640), 1, - sym_field_declaration_list, - STATE(5658), 1, - sym_virtual_specifier, - STATE(6214), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4017), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4015), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [8765] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2547), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2335), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2337), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [8833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4176), 13, - 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(4174), 45, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [8899] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1929), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4178), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3929), 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, - 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(3931), 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, - [8969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4071), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4069), 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_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [9035] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2642), 1, - sym_field_declaration_list, - STATE(5664), 1, - sym_virtual_specifier, - STATE(6216), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4013), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4011), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [9113] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2606), 1, - sym_field_declaration_list, - STATE(5583), 1, - sym_virtual_specifier, - STATE(6179), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3988), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3986), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [9191] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2632), 1, - sym_field_declaration_list, - STATE(5636), 1, - sym_virtual_specifier, - STATE(6173), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3992), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3990), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [9269] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1557), 1, - anon_sym_LBRACE, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4129), 1, - anon_sym_LBRACK, - ACTIONS(4131), 1, - sym_auto, - ACTIONS(4133), 1, - anon_sym_decltype, - STATE(2246), 1, - sym_decltype_auto, - STATE(2449), 1, - sym_new_declarator, - STATE(2728), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4027), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4023), 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, - [9351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4183), 13, - 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(4181), 45, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [9417] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4094), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4092), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [9485] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - STATE(3299), 1, - sym_template_argument_list, - ACTIONS(4187), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4185), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [9555] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2658), 1, - sym_field_declaration_list, - STATE(5630), 1, - sym_virtual_specifier, - STATE(6200), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4002), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4000), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [9633] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2625), 1, - sym_field_declaration_list, - STATE(5626), 1, - sym_virtual_specifier, - STATE(6196), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3984), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3982), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [9711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4191), 13, - 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(4189), 45, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [9777] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2610), 1, - sym_field_declaration_list, - STATE(5599), 1, - sym_virtual_specifier, - STATE(6183), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4009), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4007), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [9855] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4088), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4086), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [9923] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4088), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4086), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [9991] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2614), 1, - sym_field_declaration_list, - STATE(5615), 1, - sym_virtual_specifier, - STATE(6188), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3974), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3972), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [10069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3766), 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(3771), 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_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [10134] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(4193), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - ACTIONS(4041), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_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(3534), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [10205] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2047), 1, - sym_enumerator_list, - ACTIONS(4197), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4195), 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_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -230083,207 +241385,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [10272] = 9, + [21586] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2857), 1, - sym_field_declaration_list, - STATE(5797), 1, - sym_virtual_specifier, - STATE(6388), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3988), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(3986), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [10349] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, + ACTIONS(4120), 1, anon_sym_COLON_COLON, - ACTIONS(4203), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4201), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [10416] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4205), 1, - anon_sym_catch, - STATE(1967), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2357), 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(2355), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [10485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4071), 21, + ACTIONS(4118), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -230305,222 +241412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4069), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [10550] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_LBRACK, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4213), 1, - anon_sym_COLON_COLON, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - STATE(4822), 1, - sym__scope_resolution, - STATE(4980), 1, - sym_function_declarator, - STATE(5475), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(5483), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3510), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(5152), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [10663] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4031), 1, - sym_auto, - ACTIONS(4033), 1, - anon_sym_decltype, - STATE(2153), 1, - sym_decltype_auto, - ACTIONS(4225), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4223), 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_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_DASH_GT, - [10734] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4088), 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(4086), 35, + ACTIONS(4116), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -230555,5799 +241447,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [10801] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_LBRACK, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4213), 1, - anon_sym_COLON_COLON, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - STATE(4822), 1, - sym__scope_resolution, - STATE(4953), 1, - sym_function_declarator, - STATE(5475), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(5494), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3510), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(5152), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [10914] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3766), 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(3771), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [10979] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_LBRACK, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4213), 1, - anon_sym_COLON_COLON, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - STATE(4822), 1, - sym__scope_resolution, - STATE(5081), 1, - sym_function_declarator, - STATE(5475), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(5456), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3510), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(5152), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [11092] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2902), 1, - sym_field_declaration_list, - STATE(5703), 1, - sym_virtual_specifier, - STATE(6333), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4002), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4000), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [11169] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2898), 1, - sym_field_declaration_list, - STATE(5710), 1, - sym_virtual_specifier, - STATE(6339), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3984), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(3982), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [11246] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_LBRACK, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4213), 1, - anon_sym_COLON_COLON, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - STATE(4822), 1, - sym__scope_resolution, - STATE(4987), 1, - sym_function_declarator, - STATE(5475), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(5454), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3510), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(5152), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [11359] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1991), 1, - sym_enumerator_list, - ACTIONS(4229), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4227), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [11426] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_LBRACK, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4213), 1, - anon_sym_COLON_COLON, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - STATE(4822), 1, - sym__scope_resolution, - STATE(4972), 1, - sym_function_declarator, - STATE(5475), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(5462), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3510), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(5152), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [11539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2335), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2337), 51, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - anon_sym_catch, - [11604] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4231), 1, - anon_sym_COLON, - STATE(2197), 1, - sym__enum_base_clause, - STATE(2243), 1, - sym_enumerator_list, - ACTIONS(4162), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4160), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [11675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4088), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4086), 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_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [11740] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4233), 1, - anon_sym_catch, - STATE(1989), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2357), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2355), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [11809] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4235), 1, - anon_sym_catch, - STATE(1967), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2363), 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(2361), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [11878] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2920), 1, - sym_field_declaration_list, - STATE(5692), 1, - sym_virtual_specifier, - STATE(6328), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3992), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(3990), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [11955] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_LBRACK, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4213), 1, - anon_sym_COLON_COLON, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - STATE(4822), 1, - sym__scope_resolution, - STATE(4957), 1, - sym_function_declarator, - STATE(5475), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(5480), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3510), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(5152), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [12068] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4233), 1, - anon_sym_catch, - STATE(1989), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2370), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2368), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [12137] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_LBRACK, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4213), 1, - anon_sym_COLON_COLON, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - STATE(4822), 1, - sym__scope_resolution, - STATE(4961), 1, - sym_function_declarator, - STATE(5475), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(5488), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3510), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(5152), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [12250] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4088), 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(4086), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [12317] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2919), 1, - sym_field_declaration_list, - STATE(5622), 1, - sym_virtual_specifier, - STATE(6306), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4021), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4019), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [12394] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2870), 1, - sym_field_declaration_list, - STATE(5788), 1, - sym_virtual_specifier, - STATE(6415), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4009), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4007), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [12471] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2917), 1, - sym_field_declaration_list, - STATE(5755), 1, - sym_virtual_specifier, - STATE(6293), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4017), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4015), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [12548] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2878), 1, - sym_field_declaration_list, - STATE(5786), 1, - sym_virtual_specifier, - STATE(6374), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3974), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(3972), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [12625] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2912), 1, - sym_field_declaration_list, - STATE(5589), 1, - sym_virtual_specifier, - STATE(6289), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4013), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4011), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [12702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2386), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2384), 51, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - anon_sym_catch, - [12767] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_LBRACK, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4213), 1, - anon_sym_COLON_COLON, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - STATE(4822), 1, - sym__scope_resolution, - STATE(5046), 1, - sym_function_declarator, - STATE(5475), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(5494), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3510), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(5152), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [12880] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_LBRACK, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4213), 1, - anon_sym_COLON_COLON, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - STATE(4822), 1, - sym__scope_resolution, - STATE(5018), 1, - sym_function_declarator, - STATE(5475), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(5483), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3510), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(5152), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [12993] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4233), 1, - anon_sym_catch, - STATE(1989), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2374), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2372), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [13062] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4205), 1, - anon_sym_catch, - STATE(1967), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2370), 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(2368), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [13131] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4205), 1, - anon_sym_catch, - STATE(1967), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2374), 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(2372), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [13200] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_LBRACK, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4213), 1, - anon_sym_COLON_COLON, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - STATE(4822), 1, - sym__scope_resolution, - STATE(5001), 1, - sym_function_declarator, - STATE(5475), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(5488), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3510), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(5152), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [13313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2327), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2329), 51, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - anon_sym_catch, - [13378] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(4238), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - ACTIONS(3679), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_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(3684), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [13449] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4231), 1, - anon_sym_COLON, - STATE(2189), 1, - sym__enum_base_clause, - STATE(2398), 1, - sym_enumerator_list, - ACTIONS(4168), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4166), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [13520] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_LBRACK, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4213), 1, - anon_sym_COLON_COLON, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - STATE(4822), 1, - sym__scope_resolution, - STATE(5000), 1, - sym_function_declarator, - STATE(5475), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(5456), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3510), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(5152), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [13633] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4241), 1, - anon_sym_catch, - STATE(1989), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2363), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2361), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [13702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2699), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2697), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [13766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4246), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4244), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [13830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4250), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4248), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [13894] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4254), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4252), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [13958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4258), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4256), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [14022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4254), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4252), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [14086] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4262), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4260), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [14150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4203), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4201), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [14214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4266), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4264), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [14278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4270), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4268), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [14342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4270), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4268), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [14406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4272), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [14470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4278), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4276), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [14534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4282), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4280), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [14598] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4286), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4284), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [14662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4290), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4288), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [14726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2787), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2785), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [14790] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - STATE(3299), 1, - sym_template_argument_list, - ACTIONS(4187), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4185), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [14858] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1669), 1, - anon_sym_LBRACE, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(4294), 1, - anon_sym_LBRACK, - ACTIONS(4296), 1, - sym_auto, - ACTIONS(4298), 1, - anon_sym_decltype, - STATE(2652), 1, - sym_decltype_auto, - STATE(2659), 1, - sym_new_declarator, - STATE(3036), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4053), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4051), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [14938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4302), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4300), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [15002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4306), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4304), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [15066] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4310), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4308), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [15130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4314), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4312), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [15194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4316), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [15258] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4320), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [15322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4326), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4324), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [15386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4328), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [15450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2739), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2737), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [15514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2735), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2733), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [15578] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2725), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [15642] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4334), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4332), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [15706] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2713), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [15770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4338), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4336), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [15834] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4342), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4340), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [15898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4346), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4344), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [15962] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2707), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2705), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [16026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4350), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4348), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [16090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4354), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4352), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [16154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2557), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2555), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [16218] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4354), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4352), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [16282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2557), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2555), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [16346] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2537), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2535), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [16410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4358), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4356), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [16474] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2831), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2829), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [16538] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4362), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4360), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [16602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4366), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4364), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [16666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4370), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4368), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [16730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4374), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4372), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [16794] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(4073), 1, - anon_sym_LT, - STATE(1923), 1, - sym_template_argument_list, - ACTIONS(3508), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(3516), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [16864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2721), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [16928] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2835), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2833), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [16992] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(4376), 1, - anon_sym_LT, - STATE(1945), 1, - sym_template_argument_list, - ACTIONS(3679), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(3684), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [17062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2703), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2701), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [17126] = 29, + [21652] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___attribute__, ACTIONS(45), 1, anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, ACTIONS(109), 1, anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, ACTIONS(976), 1, anon_sym_template, ACTIONS(1393), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, + ACTIONS(2855), 1, sym_identifier, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(2869), 1, + ACTIONS(2865), 1, sym_primitive_type, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, + ACTIONS(2867), 1, + anon_sym_enum, + ACTIONS(2869), 1, + anon_sym_class, + ACTIONS(2871), 1, + anon_sym_struct, + ACTIONS(2873), 1, + anon_sym_union, + ACTIONS(2875), 1, + anon_sym_typename, + STATE(3336), 1, sym_template_type, - STATE(3479), 1, + STATE(3443), 1, sym_qualified_type_identifier, - STATE(3522), 1, + STATE(3479), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3481), 1, sym_decltype_auto, - STATE(4285), 1, - sym__declaration_specifiers, + STATE(4066), 1, + sym__type_specifier, STATE(5396), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(59), 4, + ACTIONS(2863), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(55), 5, + ACTIONS(55), 6, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, @@ -236357,7 +241515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2188), 8, + STATE(3375), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -236366,7 +241524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual_function_specifier, aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, + STATE(3448), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -236375,1722 +241533,23 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [17242] = 29, + [21766] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4277), 1, - sym__declaration_specifiers, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2188), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [17358] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4288), 1, - sym__declaration_specifiers, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2188), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [17474] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2651), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2649), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [17538] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4381), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4379), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3981), 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, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [17602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2541), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2539), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [17666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2769), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [17730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4385), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4383), 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, + ACTIONS(4366), 1, 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_DASH_GT, - sym_auto, - anon_sym_decltype, - [17794] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4389), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4387), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [17858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4393), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4391), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [17922] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2547), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2335), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2337), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [17988] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4397), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4395), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [18052] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4268), 1, - sym__declaration_specifiers, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2188), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [18168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4401), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4399), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [18232] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4405), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4403), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [18296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2691), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2689), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [18360] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4255), 1, - sym__declaration_specifiers, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2188), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [18476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2605), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2603), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [18540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4409), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4407), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [18604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2687), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2685), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [18668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2687), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2685), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [18732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2605), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2603), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [18796] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4413), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4411), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [18860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4417), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4415), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [18924] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1669), 1, - anon_sym_LBRACE, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(4294), 1, - anon_sym_LBRACK, - ACTIONS(4296), 1, - sym_auto, - ACTIONS(4298), 1, - anon_sym_decltype, - STATE(2652), 1, - sym_decltype_auto, - STATE(2660), 1, - sym_new_declarator, - STATE(3046), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4064), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4062), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [19004] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4421), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4419), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [19068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2683), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2681), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [19132] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2759), 1, + STATE(2806), 1, sym_field_declaration_list, - STATE(5633), 1, + STATE(5731), 1, sym_virtual_specifier, - STATE(6312), 1, + STATE(6462), 1, sym_base_class_clause, - ACTIONS(3980), 2, + ACTIONS(3983), 2, anon_sym_final, anon_sym_override, - ACTIONS(3992), 10, + ACTIONS(4001), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -238101,7 +241560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(3990), 39, + ACTIONS(3999), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -238141,24 +241600,83 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [19208] = 3, + [21842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4427), 6, + ACTIONS(4403), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4401), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [21906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2015), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4425), 50, + anon_sym_RBRACE, + ACTIONS(2017), 49, 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -238171,6 +241689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -238202,24 +241721,519 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19272] = 3, + anon_sym_catch, + [21970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 6, + ACTIONS(4407), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4405), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [22034] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + STATE(3282), 1, + sym_template_argument_list, + ACTIONS(4201), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4199), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [22102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4409), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [22166] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4415), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4413), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [22230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4417), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [22294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4421), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [22358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4124), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4122), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [22422] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2804), 1, + sym_field_declaration_list, + STATE(5745), 1, + sym_virtual_specifier, + STATE(6441), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4005), 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(4003), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [22498] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1999), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4429), 50, + anon_sym_RBRACE, + ACTIONS(2001), 49, 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -238232,6 +242246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -238263,277 +242278,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19336] = 3, + anon_sym_catch, + [22562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4435), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4427), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4433), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [19400] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4439), 6, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4425), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4437), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [19464] = 29, + [22626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4307), 1, - sym__declaration_specifiers, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2188), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [19580] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4439), 6, + ACTIONS(4431), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4429), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4437), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [19644] = 3, + [22690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4433), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [22754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4439), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4437), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [22818] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4443), 18, @@ -238594,7 +242584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [19708] = 3, + [22882] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4447), 18, @@ -238655,7 +242645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [19772] = 3, + [22946] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4451), 18, @@ -238716,323 +242706,2713 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [19836] = 3, + [23010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4455), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2825), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [19900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4435), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4433), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [19964] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4455), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4453), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [20028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4459), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4457), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [20092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2775), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [20156] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(4461), 1, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(2184), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4453), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [23074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4459), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4457), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [23138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4463), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4461), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [23202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4467), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4465), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [23266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4471), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4469), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [23330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4475), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4473), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [23394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4477), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [23458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4483), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4481), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [23522] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LBRACE, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + STATE(2559), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4487), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4485), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_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_DASH_GT, + [23592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4491), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4489), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [23656] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LBRACE, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + STATE(2502), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4495), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4493), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_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_DASH_GT, + [23726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1999), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2001), 50, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [23790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2015), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2017), 50, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [23854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4497), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [23918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4503), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4501), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [23982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4507), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4505), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [24046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4511), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4509), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [24110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4515), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4513), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [24174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4517), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [24238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4523), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4521), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [24302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4527), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4525), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [24366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4529), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [24430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4533), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [24494] = 3, + ACTIONS(3), 1, + sym_comment, + 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(4537), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [24558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4543), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4541), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [24622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4547), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + 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), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [24686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4551), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4549), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [24750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4555), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + 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), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [24814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4559), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4557), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [24878] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1679), 1, + anon_sym_LBRACE, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(4563), 1, + anon_sym_LBRACK, + ACTIONS(4565), 1, + sym_auto, + ACTIONS(4567), 1, + anon_sym_decltype, + STATE(2652), 1, + sym_decltype_auto, + STATE(2665), 1, + sym_new_declarator, + STATE(2987), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4069), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4067), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [24958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4571), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4569), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [25022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4575), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4573), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [25086] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LBRACE, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + STATE(2577), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4579), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4577), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_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_DASH_GT, + [25156] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + STATE(3263), 1, + sym__type_specifier, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3375), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [25270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4583), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4581), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [25334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4587), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + 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), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [25398] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1679), 1, + anon_sym_LBRACE, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(4563), 1, + anon_sym_LBRACK, + ACTIONS(4565), 1, + sym_auto, + ACTIONS(4567), 1, + anon_sym_decltype, + STATE(2652), 1, + sym_decltype_auto, + STATE(2659), 1, + sym_new_declarator, + STATE(3039), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4031), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4027), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [25478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4591), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4589), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [25542] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1679), 1, + anon_sym_LBRACE, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(4563), 1, + anon_sym_LBRACK, + ACTIONS(4565), 1, + sym_auto, + ACTIONS(4567), 1, + anon_sym_decltype, + STATE(2652), 1, + sym_decltype_auto, + STATE(2660), 1, + sym_new_declarator, + STATE(2984), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4050), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4048), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [25622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4595), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4593), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [25686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4599), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4597), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [25750] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1679), 1, + anon_sym_LBRACE, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(4563), 1, + anon_sym_LBRACK, + ACTIONS(4565), 1, + sym_auto, + ACTIONS(4567), 1, + anon_sym_decltype, + STATE(2652), 1, + sym_decltype_auto, + STATE(2663), 1, + sym_new_declarator, + STATE(2998), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4057), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4055), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [25830] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2753), 1, + sym_field_declaration_list, + STATE(5575), 1, + sym_virtual_specifier, + STATE(6251), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4015), 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(4013), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [25906] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3542), 1, + anon_sym_LBRACE, + ACTIONS(4601), 1, + anon_sym_LT, + STATE(2224), 1, sym_template_argument_list, - ACTIONS(3518), 18, + ACTIONS(3544), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -239051,7 +245431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3510), 34, + ACTIONS(3549), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -239086,71 +245466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20228] = 3, + [25978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [20292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4466), 18, + ACTIONS(4606), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -239169,7 +245488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4464), 38, + ACTIONS(4604), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -239208,24 +245527,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [20356] = 3, + [26042] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 6, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2758), 1, + sym_field_declaration_list, + STATE(5581), 1, + sym_virtual_specifier, + STATE(6283), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3987), 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(3985), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [26118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2789), 50, + anon_sym_RBRACE, + ACTIONS(2379), 49, 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -239238,6 +245622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -239269,193 +245654,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20420] = 3, + anon_sym_catch, + [26182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [20484] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2803), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [20548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4470), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4468), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [20612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4203), 18, + ACTIONS(4610), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -239474,7 +245677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4201), 38, + ACTIONS(4608), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -239513,24 +245716,591 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [20676] = 3, + [26246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 6, + ACTIONS(4614), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4612), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [26310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4618), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4616), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [26374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4622), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4620), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [26438] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2722), 1, + sym_field_declaration_list, + STATE(5722), 1, + sym_virtual_specifier, + STATE(6191), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4023), 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(4021), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [26514] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(4624), 1, + anon_sym_LT, + STATE(2035), 1, + sym_template_argument_list, + ACTIONS(3537), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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(3542), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [26584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4629), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4627), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [26648] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2712), 1, + sym_field_declaration_list, + STATE(5689), 1, + sym_virtual_specifier, + STATE(6168), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4019), 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(4017), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [26724] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2761), 1, + sym_field_declaration_list, + STATE(5633), 1, + sym_virtual_specifier, + STATE(6312), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3977), 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(3975), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [26800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(3549), 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_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_DASH_GT, + anon_sym_try, + [26863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4309), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2805), 50, + anon_sym_RBRACE, + ACTIONS(4307), 48, 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -239543,6 +246313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -239574,24 +246345,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20740] = 3, + [26926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 6, + ACTIONS(4277), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2757), 50, + anon_sym_RBRACE, + ACTIONS(4275), 48, 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -239604,6 +246373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -239635,24 +246405,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20804] = 3, + [26989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 6, + ACTIONS(2447), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2797), 50, + anon_sym_RBRACE, + ACTIONS(2445), 48, 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -239665,6 +246433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -239696,329 +246465,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20868] = 3, + [27052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4472), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [20932] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4478), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4476), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [20996] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4482), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4480), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [21060] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4486), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4484), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [21124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4490), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4488), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [21188] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2711), 6, + ACTIONS(2679), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2709), 50, + ACTIONS(2677), 49, 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -240031,6 +246493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -240062,7 +246525,2182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [21252] = 3, + [27115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2683), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2681), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [27178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2447), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2445), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [27241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2685), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [27304] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_LBRACE, + ACTIONS(3899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4634), 1, + anon_sym_LT, + ACTIONS(4637), 1, + anon_sym_LBRACK, + STATE(2448), 1, + sym_template_argument_list, + ACTIONS(4631), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3457), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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(3462), 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, + [27381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2685), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [27444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2691), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2689), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [27507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2699), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2697), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [27570] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_LBRACE, + ACTIONS(4642), 1, + anon_sym_LT, + ACTIONS(4645), 1, + anon_sym_LBRACK, + STATE(2554), 1, + sym_template_argument_list, + ACTIONS(4640), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3457), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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(3462), 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, + [27645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4281), 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(4279), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [27708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4114), 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(4112), 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_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2413), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2411), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [27834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2777), 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(2775), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [27897] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4342), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4340), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4235), 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(4233), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2745), 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(2743), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2741), 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(2739), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4273), 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(4271), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4297), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4295), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4301), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4299), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2737), 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(2735), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4309), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4307), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 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(2783), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2731), 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(2729), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 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(2725), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2821), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2819), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28718] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2456), 1, + sym_enumerator_list, + ACTIONS(4346), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4344), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [28783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4269), 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(4267), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2671), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2669), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4265), 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(4263), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2723), 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(2721), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [29035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 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(2717), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [29098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4315), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4313), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [29161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4315), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4313), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [29224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4322), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4320), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [29287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2639), 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(2637), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [29350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4326), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4324), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [29413] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2719), 6, @@ -240072,4239 +248710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2717), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [21316] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(4492), 1, - anon_sym_LT, - STATE(1945), 1, - sym_template_argument_list, - ACTIONS(4041), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(3534), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [21386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2763), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2761), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [21450] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2755), 1, - sym_field_declaration_list, - STATE(5581), 1, - sym_virtual_specifier, - STATE(6283), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4002), 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(4000), 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_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [21526] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2740), 1, - sym_field_declaration_list, - STATE(5575), 1, - sym_virtual_specifier, - STATE(6251), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3984), 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(3982), 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_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [21602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4494), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [21666] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1669), 1, - anon_sym_LBRACE, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(4294), 1, - anon_sym_LBRACK, - ACTIONS(4296), 1, - sym_auto, - ACTIONS(4298), 1, - anon_sym_decltype, - STATE(2652), 1, - sym_decltype_auto, - STATE(2664), 1, - sym_new_declarator, - STATE(2987), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4027), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4023), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [21746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4500), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4498), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [21810] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4256), 1, - sym__declaration_specifiers, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2188), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [21926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4504), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4502), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [21990] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4508), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4506), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [22054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4512), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4510), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [22118] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2748), 1, - sym_field_declaration_list, - STATE(5689), 1, - sym_virtual_specifier, - STATE(6168), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3988), 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(3986), 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_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [22194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4516), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4514), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [22258] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2714), 1, - sym_field_declaration_list, - STATE(5811), 1, - sym_virtual_specifier, - STATE(6175), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4009), 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(4007), 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_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [22334] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2807), 1, - sym_field_declaration_list, - STATE(5700), 1, - sym_virtual_specifier, - STATE(6493), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4013), 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(4011), 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_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [22410] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4297), 1, - sym__declaration_specifiers, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2188), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [22526] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4299), 1, - sym__declaration_specifiers, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2188), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [22642] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2720), 1, - sym_field_declaration_list, - STATE(5722), 1, - sym_virtual_specifier, - STATE(6191), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3974), 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(3972), 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_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [22718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2579), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2577), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [22782] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2804), 1, - sym_field_declaration_list, - STATE(5731), 1, - sym_virtual_specifier, - STATE(6462), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4017), 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(4015), 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_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [22858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4520), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4518), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [22922] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1517), 1, - anon_sym_LBRACE, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - STATE(2470), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4524), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4522), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_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_DASH_GT, - [22992] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2802), 1, - sym_field_declaration_list, - STATE(5745), 1, - sym_virtual_specifier, - STATE(6441), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4021), 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(4019), 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_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [23068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4528), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4526), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [23132] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4532), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4530), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [23196] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4536), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4534), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [23260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4540), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4538), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [23324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4544), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4542), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [23388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4548), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4546), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [23452] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2547), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2335), 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(2337), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [23518] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4552), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4550), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [23582] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1669), 1, - anon_sym_LBRACE, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(4294), 1, - anon_sym_LBRACK, - ACTIONS(4296), 1, - sym_auto, - ACTIONS(4298), 1, - anon_sym_decltype, - STATE(2652), 1, - sym_decltype_auto, - STATE(2665), 1, - sym_new_declarator, - STATE(3056), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4047), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4045), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [23662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4556), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4554), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [23726] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4275), 1, - sym__declaration_specifiers, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2188), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [23842] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4560), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4558), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [23906] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1517), 1, - anon_sym_LBRACE, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - STATE(2474), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4564), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4562), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_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_DASH_GT, - [23976] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4568), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4566), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [24040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4572), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4570), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [24104] = 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(4574), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [24168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4580), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - 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), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [24232] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4584), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4582), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [24296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4588), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4586), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [24360] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4308), 1, - sym__declaration_specifiers, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2188), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [24476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4592), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4590), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [24540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2847), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2845), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [24604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4596), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4594), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [24668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2839), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2837), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [24732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4600), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4598), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [24796] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2755), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2753), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [24860] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4094), 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(4092), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [24926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4604), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4602), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [24990] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2675), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2673), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [25054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4608), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4606), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [25118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4612), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4610), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [25182] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4616), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4614), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [25246] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1517), 1, - anon_sym_LBRACE, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - STATE(2488), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4620), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4618), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_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_DASH_GT, - [25316] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1517), 1, - anon_sym_LBRACE, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - STATE(2514), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4624), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4622), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_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_DASH_GT, - [25386] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4270), 1, - sym__declaration_specifiers, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2188), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [25502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2509), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2507), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [25566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2695), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2693), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [25630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2781), 50, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [25694] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3684), 1, - anon_sym_LBRACE, - ACTIONS(4626), 1, - anon_sym_LT, - STATE(2184), 1, - sym_template_argument_list, - ACTIONS(3686), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(3691), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4088), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4086), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [25830] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - STATE(3274), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4306), 1, - sym__declaration_specifiers, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2188), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [25946] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2335), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2337), 49, + ACTIONS(2717), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -244322,6 +248728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -244353,517 +248760,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - anon_sym_catch, - [26009] = 4, + [29476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4088), 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(4086), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [26074] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4088), 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(4086), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [26139] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4631), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(4629), 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_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_DASH_GT, - anon_sym_try, - [26202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2335), 7, + ACTIONS(4330), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2337), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - anon_sym_catch, - [26265] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4086), 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_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_DASH_GT, - ACTIONS(4088), 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___based, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [26328] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_LBRACE, - ACTIONS(4633), 1, - anon_sym_LPAREN2, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - sym_auto, - ACTIONS(4639), 1, - anon_sym_decltype, - STATE(2795), 1, - sym_new_declarator, - STATE(2845), 1, - sym_decltype_auto, - STATE(3111), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4027), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4023), 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, - [26407] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_LBRACE, - ACTIONS(4633), 1, - anon_sym_LPAREN2, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - sym_auto, - ACTIONS(4639), 1, - anon_sym_decltype, - STATE(2725), 1, - sym_new_declarator, - STATE(2845), 1, - sym_decltype_auto, - STATE(3128), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4053), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4051), 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, - [26486] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3771), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3773), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(3778), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [26551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2327), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2329), 49, + ACTIONS(4328), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -244881,6 +248788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -244912,423 +248820,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - anon_sym_catch, - [26614] = 10, + [29539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(4334), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(3885), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4644), 1, - anon_sym_LT, + ACTIONS(4332), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [29602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2691), 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(2689), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [29665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 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(4275), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [29728] = 6, + ACTIONS(3), 1, + sym_comment, ACTIONS(4647), 1, - anon_sym_LBRACK, - STATE(2284), 1, - sym_template_argument_list, - ACTIONS(4641), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(3518), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(3510), 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, - [26691] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(3913), 1, - anon_sym_LT, - ACTIONS(4652), 1, - anon_sym_LBRACK, - STATE(2980), 1, - sym_template_argument_list, - ACTIONS(3887), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4650), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3518), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(3510), 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, - [26768] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3684), 1, - anon_sym_LBRACE, - ACTIONS(3693), 1, - anon_sym_LT, - STATE(2284), 1, - sym_template_argument_list, - ACTIONS(3686), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(3691), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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, - [26839] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4029), 1, - anon_sym_LBRACK, - STATE(2464), 1, - sym_new_declarator, - ACTIONS(4656), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4654), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_RBRACK, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [26906] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1615), 1, - sym_primitive_type, - ACTIONS(1617), 1, - anon_sym_enum, - ACTIONS(1619), 1, - anon_sym_class, - ACTIONS(1621), 1, - anon_sym_struct, - ACTIONS(1623), 1, - anon_sym_union, - ACTIONS(1625), 1, - sym_auto, - ACTIONS(1627), 1, - anon_sym_decltype, - ACTIONS(1631), 1, - anon_sym_typename, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(4658), 1, - anon_sym_COLON_COLON, - STATE(3418), 1, - sym_template_type, - STATE(3528), 1, - sym__type_specifier, - STATE(3792), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4026), 1, - sym_decltype_auto, - STATE(4041), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(1613), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3411), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(4019), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [27019] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4203), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4201), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [27084] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4660), 1, - anon_sym_COLON, - STATE(2575), 1, + STATE(2483), 1, sym__enum_base_clause, - STATE(2636), 1, + STATE(2647), 1, sym_enumerator_list, - ACTIONS(4162), 20, + ACTIONS(4217), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -245349,7 +249030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4160), 32, + ACTIONS(4215), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -245382,13 +249063,13 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [27153] = 4, + [29797] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3771), 2, + ACTIONS(3727), 2, anon_sym_COLON_COLON, anon_sym_LBRACE, - ACTIONS(3773), 19, + ACTIONS(3729), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -245408,7 +249089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3778), 34, + ACTIONS(3734), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -245443,10 +249124,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [27218] = 3, + [29862] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4071), 17, + ACTIONS(1837), 1, + anon_sym_LBRACE, + ACTIONS(4649), 1, + anon_sym_LPAREN2, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + sym_auto, + ACTIONS(4655), 1, + anon_sym_decltype, + STATE(2727), 1, + sym_new_declarator, + STATE(2842), 1, + sym_decltype_auto, + STATE(3124), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4031), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -245461,22 +249159,17 @@ 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(4069), 38, + ACTIONS(4027), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -245497,22 +249190,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [27281] = 6, + [29941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4660), 1, + ACTIONS(3544), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(3549), 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_LBRACE, + anon_sym_RBRACE, anon_sym_COLON, - STATE(2467), 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_DASH_GT, + anon_sym_try, + [30004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2667), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2665), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [30067] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_COLON, + STATE(2475), 1, sym__enum_base_clause, - STATE(2646), 1, + STATE(2637), 1, sym_enumerator_list, - ACTIONS(4168), 20, + ACTIONS(4205), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -245533,7 +249342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4166), 32, + ACTIONS(4203), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -245566,5631 +249375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [27350] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(4652), 1, - anon_sym_LBRACK, - ACTIONS(4662), 1, - anon_sym_LT, - STATE(2492), 1, - sym_template_argument_list, - ACTIONS(4650), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3518), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(3510), 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, - [27425] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - STATE(3279), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3411), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [27538] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2240), 1, - sym_enumerator_list, - ACTIONS(4197), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4195), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [27603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2386), 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(2384), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - anon_sym_catch, - [27666] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4094), 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(4092), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [27731] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_LBRACE, - ACTIONS(4633), 1, - anon_sym_LPAREN2, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - sym_auto, - ACTIONS(4639), 1, - anon_sym_decltype, - STATE(2733), 1, - sym_new_declarator, - STATE(2845), 1, - sym_decltype_auto, - STATE(3134), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4064), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4062), 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, - [27810] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1431), 1, - anon_sym_enum, - ACTIONS(1433), 1, - anon_sym_class, - ACTIONS(1435), 1, - anon_sym_struct, - ACTIONS(1437), 1, - anon_sym_union, - ACTIONS(1451), 1, - anon_sym_typename, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(3835), 1, - anon_sym_COLON_COLON, - STATE(3279), 1, - sym__type_specifier, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(5385), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3411), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [27923] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1393), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(2871), 1, - anon_sym_enum, - ACTIONS(2873), 1, - anon_sym_class, - ACTIONS(2875), 1, - anon_sym_struct, - ACTIONS(2877), 1, - anon_sym_union, - ACTIONS(2879), 1, - anon_sym_typename, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3522), 1, - sym_decltype_auto, - STATE(4074), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3411), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [28036] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4131), 1, - sym_auto, - ACTIONS(4133), 1, - anon_sym_decltype, - STATE(2246), 1, - sym_decltype_auto, - ACTIONS(4225), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4223), 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, - [28105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(3691), 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_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_DASH_GT, - anon_sym_try, - [28168] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2347), 1, - sym_enumerator_list, - ACTIONS(4229), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4227), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [28233] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_LBRACE, - ACTIONS(4633), 1, - anon_sym_LPAREN2, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - sym_auto, - ACTIONS(4639), 1, - anon_sym_decltype, - STATE(2765), 1, - sym_new_declarator, - STATE(2845), 1, - sym_decltype_auto, - STATE(3119), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4047), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4045), 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, - [28312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(3691), 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_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_DASH_GT, - anon_sym_try, - [28375] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2327), 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(2329), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - anon_sym_catch, - [28438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(3691), 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_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_DASH_GT, - anon_sym_try, - [28501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(3691), 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_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_DASH_GT, - anon_sym_try, - [28564] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(3691), 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_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_DASH_GT, - anon_sym_try, - [28627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2386), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2384), 49, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - anon_sym_catch, - [28690] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4552), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4550), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [28752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4439), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4437), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [28814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4540), 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(4538), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [28876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4401), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4399), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [28938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4405), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4403), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2839), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2837), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [29062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4667), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4665), 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_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_DASH_GT, - [29124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4409), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4407), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2755), 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(2753), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [29248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4459), 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(4457), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [29310] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1557), 1, - anon_sym_LBRACE, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - STATE(2843), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4620), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4618), 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, - [29378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4413), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4411), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29440] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4443), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4441), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4417), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4415), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29564] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2675), 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(2673), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [29626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4466), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4464), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4474), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4472), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4494), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29812] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4536), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4534), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4572), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4570), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4576), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4574), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4612), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4610), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30060] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4671), 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_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_DASH_GT, - ACTIONS(4669), 29, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - 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, - [30122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4616), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4614), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30184] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(4677), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(4675), 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(4673), 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, - [30250] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4374), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4372), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2579), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2577), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [30374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4490), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4488), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30436] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4421), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4419), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30498] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4504), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4502), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2835), 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(2833), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [30622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4508), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4506), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4512), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4510), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4516), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4514), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4584), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4582), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4381), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4379), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30932] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4500), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4498), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3793), 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(3795), 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_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [31056] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4478), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4476), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [31118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2651), 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(2649), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [31180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4486), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4484), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [31242] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4604), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4602), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [31304] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1557), 1, - anon_sym_LBRACE, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - STATE(2879), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4564), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4562), 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, - [31372] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4687), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(4685), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(4683), 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(4681), 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, - [31438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2791), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2789), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [31500] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4482), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4480), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [31562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4258), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4256), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [31624] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4528), 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(4526), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [31686] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(4689), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(2887), 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(2885), 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, - [31752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4071), 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(4069), 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_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [31814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2799), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2797), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [31876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2651), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2649), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [31938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4693), 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_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_DASH_GT, - ACTIONS(4691), 29, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - 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, - [32000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2687), 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(2685), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [32062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2687), 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(2685), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [32124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4520), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4518), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [32186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2847), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2845), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [32248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4544), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4542), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [32310] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2769), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [32372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2759), 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(2757), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [32434] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4306), 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(4304), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [32496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4310), 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(4308), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [32558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2775), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [32620] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2775), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [32682] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2787), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2785), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [32744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2509), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2507), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [32806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2807), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2805), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [32868] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4250), 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(4248), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [32930] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4455), 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(4453), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [32992] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3684), 1, - anon_sym_LBRACE, - ACTIONS(3784), 1, - anon_sym_LT, - STATE(2175), 1, - sym_template_argument_list, - ACTIONS(3686), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(3691), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_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_DASH_GT, - [33062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2695), 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(2693), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [33124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4548), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4546), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [33186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4435), 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(4433), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [33248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2739), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2737), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [33310] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4439), 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(4437), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [33372] = 3, + [30136] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2699), 7, @@ -251201,7 +249386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2697), 47, + ACTIONS(2697), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -251218,6 +249403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -251249,135 +249435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [33434] = 3, + [30199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4397), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4395), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [33496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4439), 7, + ACTIONS(2765), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4437), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [33558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2795), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 48, + ACTIONS(2763), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -251395,6 +249463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -251426,13 +249495,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [33620] = 4, + [30262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3771), 2, + ACTIONS(4120), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3773), 20, + ACTIONS(4124), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -251446,14 +249514,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(3778), 32, + ACTIONS(4122), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -251463,7 +249528,75 @@ 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [30327] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4033), 1, + anon_sym_LBRACK, + STATE(2464), 1, + sym_new_declarator, + ACTIONS(4659), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4657), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -251484,22 +249617,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [33684] = 3, + anon_sym_DASH_GT, + [30394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4435), 7, + ACTIONS(2647), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4433), 47, + ACTIONS(2645), 49, 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, @@ -251514,6 +249646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -251545,18 +249678,1210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [33746] = 7, + [30457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(4265), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(3684), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4263), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [30520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 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(4245), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [30583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2723), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2721), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [30646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2417), 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(2415), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [30709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4285), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4283), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [30772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2753), 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(2751), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [30835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2725), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [30898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 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(4291), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [30961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2825), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2823), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2435), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2433), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4289), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4287), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2641), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2639), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2637), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4305), 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(4303), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2825), 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(2823), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4663), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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(3916), 1, - anon_sym_LT, - STATE(2492), 1, - sym_template_argument_list, - ACTIONS(3686), 18, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4661), 42, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [31465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 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(4241), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4223), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 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(2425), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2431), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2429), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -251567,15 +250892,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3691), 32, + ACTIONS(3549), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -251585,7 +250911,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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -251606,12 +250936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [33816] = 3, + anon_sym_DASH_GT, + anon_sym_try, + [31780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 7, + ACTIONS(4285), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -251619,7 +250949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2785), 47, + ACTIONS(4283), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -251636,6 +250966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -251667,10 +250998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [33878] = 3, + [31843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 7, + ACTIONS(2427), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -251678,7 +251009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2789), 47, + ACTIONS(2425), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -251695,6 +251026,1936 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2731), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2729), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2737), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2735), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4297), 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(4295), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4289), 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(4287), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2741), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2739), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2745), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2743), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4301), 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(4299), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4122), 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_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_DASH_GT, + ACTIONS(4124), 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___based, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [32410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(3549), 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_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_DASH_GT, + anon_sym_try, + [32473] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4124), 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(4122), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [32538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2749), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2747), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2749), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2747), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2413), 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(2411), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2801), 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(2799), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4305), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4303), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4291), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4265), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4263), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2635), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2633), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2753), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2751), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 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(4223), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4275), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33231] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_LBRACE, + ACTIONS(4649), 1, + anon_sym_LPAREN2, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + sym_auto, + ACTIONS(4655), 1, + anon_sym_decltype, + STATE(2797), 1, + sym_new_declarator, + STATE(2842), 1, + sym_decltype_auto, + STATE(3145), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4057), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4055), 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, + [33310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(3549), 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_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_DASH_GT, + anon_sym_try, + [33373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4275), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2821), 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(2819), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4265), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4263), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4269), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4267), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2625), 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(2623), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4219), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4273), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4271), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4315), 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(4313), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4315), 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(4313), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -251729,132 +252990,14 @@ static const uint16_t ts_small_parse_table[] = { [33940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4554), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [34002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2795), 7, + ACTIONS(4221), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2793), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [34064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2557), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2555), 48, + ACTIONS(4219), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -251872,6 +253015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -251903,142 +253047,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [34126] = 3, + [34003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4558), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [34188] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(3885), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4641), 1, - anon_sym_LPAREN2, - ACTIONS(4647), 1, - anon_sym_LBRACK, - ACTIONS(4695), 1, - anon_sym_LT, - STATE(2175), 1, - sym_template_argument_list, - ACTIONS(3518), 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(3510), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [34264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2735), 6, + ACTIONS(4322), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2733), 48, + anon_sym_RBRACE, + ACTIONS(4320), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4231), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4229), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -252056,6 +253135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -252087,10 +253167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [34326] = 3, + [34129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 7, + ACTIONS(4259), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -252098,7 +253178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4252), 47, + ACTIONS(4257), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -252115,6 +253195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -252146,548 +253227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [34388] = 3, + [34192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 7, + ACTIONS(4235), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4252), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [34450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2803), 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(2801), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [34512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2807), 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(2805), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [34574] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4203), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4201), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [34636] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4262), 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(4260), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [34698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 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(4272), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [34760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2711), 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(2709), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [34822] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4393), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4391), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [34884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4568), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4566), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [34946] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2725), 48, + ACTIONS(4233), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -252705,6 +253255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -252736,10 +253287,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [35008] = 3, + [34255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4580), 19, + ACTIONS(4281), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4279), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34318] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4155), 1, + sym_auto, + ACTIONS(4157), 1, + anon_sym_decltype, + STATE(2460), 1, + sym_decltype_auto, + ACTIONS(4338), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -252759,7 +253376,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4578), 35, + ACTIONS(4336), 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, + [34387] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2422), 1, + sym_enumerator_list, + ACTIONS(4239), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4237), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -252795,70 +253471,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [35070] = 4, + [34452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 1, + ACTIONS(4326), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4088), 11, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4324), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34515] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3729), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4086), 42, + ACTIONS(3734), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [35134] = 3, + [34580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2541), 7, + ACTIONS(4255), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -252866,7 +253603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2539), 47, + ACTIONS(4253), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -252883,6 +253620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -252914,10 +253652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [35196] = 3, + [34643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2537), 7, + ACTIONS(2817), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -252925,7 +253663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2535), 47, + ACTIONS(2815), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -252942,6 +253680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -252973,17 +253712,507 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [35258] = 6, + [34706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(4330), 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(4328), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4334), 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(4332), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2625), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2623), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2777), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2775), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2793), 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(2791), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [35021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2797), 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(2795), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [35084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(4665), 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_LBRACE, - ACTIONS(4127), 1, + 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_DASH_GT, + anon_sym_try, + [35147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2417), 6, anon_sym_LPAREN2, - STATE(2886), 2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2415), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [35210] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_LBRACE, + ACTIONS(4649), 1, + anon_sym_LPAREN2, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + sym_auto, + ACTIONS(4655), 1, + anon_sym_decltype, + STATE(2769), 1, + sym_new_declarator, + STATE(2842), 1, + sym_decltype_auto, + STATE(3139), 2, sym_argument_list, sym_initializer_list, - ACTIONS(4524), 19, + ACTIONS(4069), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -252998,12 +254227,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(4522), 31, + ACTIONS(4067), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -253012,7 +254238,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, @@ -253024,62 +254249,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [35326] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4088), 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(4086), 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_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -253089,23 +254258,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [35390] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [35289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4540), 6, + ACTIONS(2635), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4538), 48, + anon_sym_RBRACE, + ACTIONS(2633), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [35352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2783), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -253123,6 +254348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -253154,17 +254380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [35452] = 3, + [35415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 6, + ACTIONS(4251), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4530), 48, + ACTIONS(4249), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -253182,6 +254408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -253213,17 +254440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [35514] = 3, + [35478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 6, + ACTIONS(4255), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4526), 48, + ACTIONS(4253), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -253241,6 +254468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -253272,397 +254500,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [35576] = 27, + [35541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(3104), 1, - anon_sym_LPAREN2, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4702), 1, - anon_sym_STAR, - ACTIONS(4704), 1, - anon_sym_AMP_AMP, - ACTIONS(4706), 1, - anon_sym_AMP, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(4710), 1, - anon_sym_LBRACK, - STATE(4345), 1, - sym_parameter_list, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4973), 1, - sym__scope_resolution, - STATE(5180), 1, - sym__declarator, - STATE(5375), 1, - sym__abstract_declarator, - STATE(7219), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(4700), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(3232), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3250), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [35686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4389), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4387), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [35748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4600), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4598), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [35810] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4290), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4288), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [35872] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2319), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4712), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3931), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(3929), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_requires, - [35938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4385), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4383), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [36000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2557), 6, + ACTIONS(4259), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2555), 48, + ACTIONS(4257), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -253680,6 +254528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -253711,10 +254560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [36062] = 3, + [35604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 7, + ACTIONS(4251), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -253722,7 +254571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4429), 47, + ACTIONS(4249), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -253739,6 +254588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -253770,76 +254620,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [36124] = 3, + [35667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2719), 7, + ACTIONS(4243), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2717), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [36186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2831), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2829), 48, + ACTIONS(4241), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -253857,6 +254648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -253888,1027 +254680,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [36248] = 3, + [35730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 7, + ACTIONS(4247), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2721), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [36310] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4608), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4606), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [36372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2579), 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(2577), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [36434] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4427), 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(4425), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [36496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4316), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [36558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4314), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4312), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [36620] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4302), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4300), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [36682] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4592), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4590), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [36744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2775), 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(2773), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [36806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2799), 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(2797), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [36868] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 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(2781), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [36930] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4596), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4594), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [36992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 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(3764), 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_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [37054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3758), 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(3760), 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_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [37116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 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(3752), 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_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [37178] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4715), 1, - anon_sym_COLON, - STATE(2691), 1, - sym__enum_base_clause, - STATE(2911), 1, - sym_enumerator_list, - ACTIONS(4168), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4166), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [37246] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4717), 1, - sym_identifier, - ACTIONS(4721), 1, - sym_primitive_type, - STATE(2319), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4719), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3946), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(3948), 28, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_requires, - [37316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2763), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2761), 48, + ACTIONS(4245), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -254926,6 +254708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -254957,79 +254740,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [37378] = 3, + [35793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3766), 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(3771), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4247), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(4245), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [35856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 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, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [37440] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2713), 48, + ACTIONS(2641), 48, 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, @@ -255044,6 +254828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -255075,134 +254860,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [37502] = 3, + [35919] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2705), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [37564] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, + ACTIONS(3469), 1, anon_sym_LBRACE, - ACTIONS(3540), 1, - anon_sym_EQ, - ACTIONS(4723), 1, + ACTIONS(3922), 1, anon_sym_LT, - STATE(3323), 1, + ACTIONS(4645), 1, + anon_sym_LBRACK, + STATE(2977), 1, sym_template_argument_list, - ACTIONS(3544), 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, + ACTIONS(3901), 3, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3518), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3510), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4640), 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_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [37638] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4246), 19, + anon_sym_LBRACK_LBRACK, + ACTIONS(3457), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -255213,7 +254892,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -255222,18 +254900,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4244), 35, + ACTIONS(3462), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -255245,33 +254919,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [37700] = 3, + [35996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2703), 6, + ACTIONS(2749), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2701), 48, + anon_sym_RBRACE, + ACTIONS(2747), 48, 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, @@ -255286,6 +254955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -255317,17 +254987,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [37762] = 3, + [36059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2691), 6, + ACTIONS(2413), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2689), 48, + ACTIONS(2411), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -255345,6 +255015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -255376,16 +255047,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [37824] = 6, + [36122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(2749), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4193), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2747), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36185] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3542), 1, + anon_sym_LBRACE, + ACTIONS(3551), 1, anon_sym_LT, - STATE(1956), 1, + STATE(2448), 1, sym_template_argument_list, - ACTIONS(3508), 19, + ACTIONS(3544), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -255395,26 +255128,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3516), 32, + anon_sym_DASH_GT, + ACTIONS(3549), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -255422,6 +255156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -255434,24 +255169,382 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [37892] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [36256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2687), 6, + ACTIONS(2805), 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(2803), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2809), 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(2807), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 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(4245), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2793), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2791), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 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(4219), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2797), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2795), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 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(2685), 48, 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, @@ -255466,6 +255559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -255497,76 +255591,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [37954] = 3, + [36697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 7, + ACTIONS(2801), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2603), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [38016] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2687), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2685), 48, + ACTIONS(2799), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -255584,6 +255619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -255615,17 +255651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [38078] = 3, + [36760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 6, + ACTIONS(2805), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 48, + ACTIONS(2803), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -255643,6 +255679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -255674,69 +255711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [38140] = 3, + [36823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4728), 25, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4726), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_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_DASH_GT, - [38202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2605), 7, + ACTIONS(4221), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -255744,7 +255722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2603), 47, + ACTIONS(4219), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -255761,6 +255739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -255792,129 +255771,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [38264] = 3, + [36886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2825), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [38326] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3863), 1, - sym_literal_suffix, - ACTIONS(3518), 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(3510), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_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_DASH_GT, - [38390] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4370), 7, + ACTIONS(4231), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -255922,7 +255782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4368), 47, + ACTIONS(4229), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -255939,6 +255799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -255970,10 +255831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [38452] = 3, + [36949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 7, + ACTIONS(2683), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -255981,366 +255842,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4264), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [38514] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4734), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4732), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(4730), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [38578] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2509), 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(2507), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [38640] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4742), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(4740), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(4738), 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(4736), 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, - [38706] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2739), 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(2737), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [38768] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2775), 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(2773), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [38830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2683), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, ACTIONS(2681), 48, 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, @@ -256355,6 +255859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -256386,10 +255891,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [38892] = 3, + [37012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4270), 7, + ACTIONS(2809), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2807), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2425), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2679), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -256397,7 +256022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4268), 47, + ACTIONS(2677), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -256414,6 +256039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -256445,15 +256071,1103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [38954] = 5, + [37201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 1, + ACTIONS(2435), 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(2433), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2817), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2815), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2673), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37390] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_LBRACE, + ACTIONS(4649), 1, + anon_sym_LPAREN2, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + sym_auto, + ACTIONS(4655), 1, + anon_sym_decltype, + STATE(2736), 1, + sym_new_declarator, + STATE(2842), 1, + sym_decltype_auto, + STATE(3110), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4050), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4048), 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, + [37469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 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(2673), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4671), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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(4669), 42, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [37595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2671), 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(2669), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 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(2685), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2647), 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(2645), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37784] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4118), 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(4116), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [37849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2667), 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(2665), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2425), 49, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2431), 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(2429), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [38038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2413), 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(2411), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [38101] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2765), 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(2763), 48, + 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_typedef, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [38164] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + STATE(3282), 1, + sym_template_argument_list, + ACTIONS(4201), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4199), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [38230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4610), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4608), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4675), 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_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_DASH_GT, + ACTIONS(4673), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + 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, + [38354] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4683), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(4744), 2, + ACTIONS(4681), 2, anon_sym_delete, anon_sym_new, - ACTIONS(2863), 20, + ACTIONS(4679), 20, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, @@ -256474,7 +257188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DASH_GT, - ACTIONS(2861), 31, + ACTIONS(4677), 31, anon_sym_COMMA, anon_sym_TILDE, anon_sym_PIPE_PIPE, @@ -256506,34 +257220,888 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT_STAR, anon_sym_LPAREN_RPAREN, anon_sym_LBRACK_RBRACK, - [39020] = 3, + [38420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4270), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4555), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4268), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4553), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3706), 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(3708), 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_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [38544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4533), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4517), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4587), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4585), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3609), 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(3611), 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_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [38792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3698), 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(3700), 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_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [38854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4543), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4541), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4547), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4545), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38978] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4685), 1, + anon_sym_COLON, + STATE(2686), 1, + sym__enum_base_clause, + STATE(2935), 1, + sym_enumerator_list, + ACTIONS(4205), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4203), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39046] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2879), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4687), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(2859), 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(2857), 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, + [39112] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_EQ, + ACTIONS(4689), 1, + anon_sym_LT, + STATE(3337), 1, + sym_template_argument_list, + ACTIONS(3515), 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(3457), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3462), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_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_DASH_GT, + [39186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4559), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4557), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4692), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_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_DASH_GT, + [39310] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4696), 1, + sym_identifier, + ACTIONS(4700), 1, + sym_primitive_type, + STATE(2402), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4698), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3944), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3946), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -256542,6 +258110,774 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, 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_requires, + [39380] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(4261), 1, + anon_sym_LT, + STATE(2069), 1, + sym_template_argument_list, + ACTIONS(3450), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_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(3455), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [39448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4360), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4358), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4368), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4591), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4589), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4381), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4364), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4362), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4622), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4620), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4583), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4581), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4395), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4393), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39944] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_LBRACE, + ACTIONS(3899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4631), 1, + anon_sym_LPAREN2, + ACTIONS(4637), 1, + anon_sym_LBRACK, + ACTIONS(4702), 1, + anon_sym_LT, + STATE(2298), 1, + sym_template_argument_list, + ACTIONS(3457), 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(3462), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [40020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4537), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [40082] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2889), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4705), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(2885), 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(2883), 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, + [40148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4709), 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_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_DASH_GT, + ACTIONS(4707), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -256551,80 +258887,499 @@ static const uint16_t ts_small_parse_table[] = { 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_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_typename, anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [39082] = 3, + [40210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4575), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2733), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4573), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [39144] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [40272] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(4713), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(4711), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [40336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4507), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4505), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [40398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4717), 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_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_DASH_GT, + [40460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4595), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4593), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [40522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4599), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4597), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [40584] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3542), 1, + anon_sym_LBRACE, + ACTIONS(3657), 1, + anon_sym_LT, + STATE(2298), 1, + sym_template_argument_list, + ACTIONS(3544), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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(3549), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_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_DASH_GT, + [40654] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4685), 1, + anon_sym_COLON, + STATE(2691), 1, + sym__enum_base_clause, + STATE(2890), 1, + sym_enumerator_list, + ACTIONS(4217), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4215), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [40722] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4451), 19, @@ -256683,10 +259438,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [39206] = 3, + [40784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 25, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4118), 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(4116), 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_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [40848] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_LBRACE, + ACTIONS(3922), 1, + anon_sym_LT, + STATE(2977), 1, + sym_template_argument_list, + ACTIONS(3901), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3457), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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(3462), 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, + [40920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3722), 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(3727), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -256703,33 +259594,260 @@ static const uint16_t ts_small_parse_table[] = { 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_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [40982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4527), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4525), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4523), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4521), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4475), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4473), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41168] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2402), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4721), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3937), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(4746), 29, + anon_sym_GT2, + ACTIONS(3935), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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, @@ -256740,17 +259858,312 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [39268] = 5, + anon_sym_requires, + [41234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4756), 1, + ACTIONS(4614), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4612), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4618), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4616), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41358] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4124), 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(4122), 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_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [41422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4529), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4340), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41546] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4730), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(4754), 2, + ACTIONS(4728), 2, anon_sym_delete, anon_sym_new, - ACTIONS(4752), 20, + ACTIONS(4726), 20, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, @@ -256771,7 +260184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DASH_GT, - ACTIONS(4750), 31, + ACTIONS(4724), 31, anon_sym_COMMA, anon_sym_TILDE, anon_sym_PIPE_PIPE, @@ -256803,320 +260216,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT_STAR, anon_sym_LPAREN_RPAREN, anon_sym_LBRACK_RBRACK, - [39334] = 3, + [41612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4760), 13, + ACTIONS(4379), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4377), 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_DASH_GT, - anon_sym_GT2, - ACTIONS(4758), 41, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [39396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 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(2725), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [39458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2605), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2603), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [39520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2605), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2603), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [39582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 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(2713), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [39644] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(3540), 1, - anon_sym_EQ, - ACTIONS(4652), 1, - anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_LT, - STATE(3323), 1, - sym_template_argument_list, - ACTIONS(4650), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3544), 13, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -257130,7 +260265,1282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3518), 16, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41674] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + STATE(2886), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4495), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4493), 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, + [41742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4354), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41804] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4124), 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(4122), 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_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [41868] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + STATE(2843), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4487), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4485), 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, + [41936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4503), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4501), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41998] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3853), 1, + sym_literal_suffix, + ACTIONS(3457), 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(3462), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_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_DASH_GT, + [42062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4350), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4348), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 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(3684), 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_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [42186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 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(3582), 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_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [42248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3576), 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(3578), 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_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [42310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4497), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4483), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4481), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4471), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4469), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4551), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4549), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42558] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4738), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4736), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(4734), 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(4732), 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, + [42624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3690), 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(3692), 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_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [42686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4463), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4461), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4511), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4509), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4459), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4457), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4515), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4513), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4443), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4441), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42996] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_LBRACE, + ACTIONS(4374), 1, + anon_sym_LT, + ACTIONS(4645), 1, + anon_sym_LBRACK, + STATE(2224), 1, + sym_template_argument_list, + ACTIONS(4640), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3457), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257143,11 +261553,12 @@ static const uint16_t ts_small_parse_table[] = { 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(3510), 17, + ACTIONS(3462), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -257158,6 +261569,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -257165,34 +261589,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [39722] = 3, + [43070] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4270), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4268), 48, - 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_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(47), 1, anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_STAR, + ACTIONS(4746), 1, + anon_sym_AMP_AMP, + ACTIONS(4748), 1, + anon_sym_AMP, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(4752), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(4350), 1, + sym_parameter_list, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5180), 1, + sym__declarator, + STATE(5397), 1, + sym__abstract_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4742), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3236), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3253), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2905), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -257201,57 +261660,435 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [39784] = 3, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [43180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4270), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4491), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4268), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4489), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4439), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4437), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4477), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4433), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4425), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4421), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43552] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(4752), 1, + anon_sym_LBRACK, + ACTIONS(4754), 1, + anon_sym_STAR, + ACTIONS(4756), 1, + anon_sym_AMP_AMP, + ACTIONS(4758), 1, + anon_sym_AMP, + STATE(4345), 1, + sym_parameter_list, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5180), 1, + sym__declarator, + STATE(5375), 1, + sym__abstract_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4742), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(3219), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3253), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2905), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -257260,266 +262097,557 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [39846] = 3, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [43662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4419), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4264), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4417), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [39908] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43724] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2557), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2555), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(3542), 1, + anon_sym_LBRACE, + ACTIONS(3919), 1, + anon_sym_LT, + STATE(2554), 1, + sym_template_argument_list, + ACTIONS(3544), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3549), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [39970] = 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, + [43794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4415), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2705), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4413), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [40032] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4391), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2833), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4389), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [40094] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4467), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4465), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4453), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4571), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4569), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44104] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4766), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4764), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(4762), 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(4760), 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, + [44170] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3729), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(3734), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, + [44234] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4447), 19, @@ -257578,16 +262706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [40156] = 6, + [44296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 1, - anon_sym_COLON, - STATE(2685), 1, - sym__enum_base_clause, - STATE(2909), 1, - sym_enumerator_list, - ACTIONS(4162), 16, + ACTIONS(4342), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257602,9 +262724,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(4160), 35, + ACTIONS(4340), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -257627,11 +262752,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, @@ -257640,246 +262765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [40224] = 3, + [44358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4468), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [40286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4459), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4457), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [40348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4455), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4453), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [40410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4435), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4433), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [40472] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4088), 16, + ACTIONS(4431), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257894,9 +262783,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(4086), 38, + ACTIONS(4429), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -257908,7 +262800,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -257920,6 +262811,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4114), 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(4112), 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_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -257929,311 +262877,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, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [40534] = 3, + anon_sym_requires, + [44482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4437), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [40596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4435), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4433), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [40658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4431), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4429), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [40720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4427), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4425), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [40782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2759), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2757), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [40844] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4286), 19, + ACTIONS(4606), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -258253,7 +262906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4284), 35, + ACTIONS(4604), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -258289,69 +262942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [40906] = 3, + [44544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2703), 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(2701), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [40968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4282), 19, + ACTIONS(4629), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -258371,7 +262965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4280), 35, + ACTIONS(4627), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -258407,634 +263001,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [41030] = 3, + [44606] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2557), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2555), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [41092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2781), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [41154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4346), 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(4344), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [41216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4278), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4276), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_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(3469), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [41278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2691), 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(2689), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [41340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - 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(3511), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4320), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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(4645), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [41402] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2537), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2535), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [41464] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - STATE(3299), 1, + ACTIONS(4689), 1, + anon_sym_LT, + STATE(3337), 1, sym_template_argument_list, - ACTIONS(4187), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4185), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4640), 2, 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [41530] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2721), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [41592] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2717), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [41654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4326), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4324), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_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(3515), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -259048,33 +263033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [41716] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(4461), 1, - anon_sym_LT, - ACTIONS(4652), 1, - anon_sym_LBRACK, - STATE(2184), 1, - sym_template_argument_list, - ACTIONS(4650), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3518), 17, + ACTIONS(3457), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -259087,12 +263046,11 @@ static const uint16_t ts_small_parse_table[] = { 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(3510), 30, + ACTIONS(3462), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -259103,19 +263061,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -259123,128 +263068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [41790] = 3, + [44684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4764), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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(4762), 41, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [41852] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4366), 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(4364), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [41914] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4588), 19, + ACTIONS(4407), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -259264,7 +263091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4586), 35, + ACTIONS(4405), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -259300,1994 +263127,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [41976] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4350), 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(4348), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [42038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3744), 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(3746), 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_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [42100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3740), 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(3742), 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_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [42162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3736), 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(3738), 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_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [42224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2711), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2709), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [42286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2699), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2697), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [42348] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4094), 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(4092), 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_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [42412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2541), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2539), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [42474] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(3913), 1, - anon_sym_LT, - STATE(2980), 1, - sym_template_argument_list, - ACTIONS(3887), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3518), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(3510), 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, - [42546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4328), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [42608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2695), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2693), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [42670] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 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(2769), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [42732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4334), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4332), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [42794] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(3104), 1, - anon_sym_LPAREN2, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(4710), 1, - anon_sym_LBRACK, - ACTIONS(4766), 1, - anon_sym_STAR, - ACTIONS(4768), 1, - anon_sym_AMP_AMP, - ACTIONS(4770), 1, - anon_sym_AMP, - STATE(4350), 1, - sym_parameter_list, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4973), 1, - sym__scope_resolution, - STATE(5180), 1, - sym__declarator, - STATE(5397), 1, - sym__abstract_declarator, - STATE(7219), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(4700), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3217), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3250), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [42904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4362), 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(4360), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [42966] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4272), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [43028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2675), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2673), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [43090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4338), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4336), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [43152] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2847), 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(2845), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [43214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4262), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4260), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [43276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2755), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2753), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [43338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4370), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4368), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [43400] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4366), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4364), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [43462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4362), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4360), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [43524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4358), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4356), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [43586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4354), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4352), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [43648] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4354), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4352), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [43710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4350), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4348), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [43772] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4346), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4344), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [43834] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4342), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4340), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [43896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2827), 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(2825), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [43958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2831), 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(2829), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [44020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4203), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4201), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [44082] = 6, + [44746] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 1, anon_sym_LBRACE, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, STATE(2814), 2, sym_argument_list, sym_initializer_list, - ACTIONS(4624), 19, + ACTIONS(4579), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261307,7 +263157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4622), 31, + ACTIONS(4577), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261339,195 +263189,316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [44150] = 3, + [44814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4403), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4356), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [44212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4254), 6, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4401), 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_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4252), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [44274] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4342), 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(4340), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [44336] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - ACTIONS(4662), 1, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4124), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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(2492), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4122), 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_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4409), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [45000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4770), 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_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_DASH_GT, + ACTIONS(4768), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + 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, + [45062] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + STATE(2879), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4399), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4397), 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, + [45130] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_LBRACE, + ACTIONS(4642), 1, + anon_sym_LT, + STATE(2554), 1, sym_template_argument_list, - ACTIONS(3518), 18, + ACTIONS(3457), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261546,7 +263517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3510), 32, + ACTIONS(3462), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261579,597 +263550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [44406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2763), 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(2761), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [44468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2839), 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(2837), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [44530] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4470), 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(4468), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [44592] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2683), 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(2681), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [44654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4254), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4252), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [44716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4354), 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(4352), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [44778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4354), 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(4352), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [44840] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4250), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4248), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [44902] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4532), 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(4530), 47, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [44964] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4310), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4308), 48, - 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_typedef, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [45026] = 3, + [45200] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4774), 18, @@ -262228,66 +263609,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [45088] = 3, + [45262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4306), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4387), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4304), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4385), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [45150] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [45324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4126), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4128), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [45385] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4778), 18, @@ -262345,69 +263784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [45211] = 4, + [45446] = 3, ACTIONS(3), 1, sym_comment, - STATE(2634), 1, - sym_enumerator_list, - ACTIONS(4197), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4195), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [45274] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4691), 18, + ACTIONS(4707), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262426,7 +263806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4693), 35, + ACTIONS(4709), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262462,72 +263842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [45335] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(3540), 1, - anon_sym_EQ, - ACTIONS(3787), 1, - anon_sym_COLON, - ACTIONS(4723), 1, - anon_sym_LT, - STATE(3323), 1, - sym_template_argument_list, - ACTIONS(3544), 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(3518), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3510), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [45410] = 3, + [45507] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4782), 18, @@ -262585,10 +263900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [45471] = 3, + [45568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4113), 18, + ACTIONS(3544), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262607,7 +263922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4115), 35, + ACTIONS(3549), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262643,153 +263958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [45532] = 6, + [45629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(4492), 1, - anon_sym_LT, - STATE(1945), 1, - sym_template_argument_list, - ACTIONS(3508), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3516), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(4788), 1, anon_sym_PIPE_PIPE, + ACTIONS(4790), 1, anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [45599] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4784), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4792), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4794), 1, - anon_sym_AMP_AMP, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_AMP, - ACTIONS(4806), 1, - anon_sym_GT_EQ, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4812), 1, - anon_sym_EQ, - ACTIONS(4814), 1, - anon_sym_QMARK, - ACTIONS(4816), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4818), 1, - anon_sym_or, - ACTIONS(4820), 1, - anon_sym_and, - ACTIONS(4822), 1, - anon_sym_bitor, - ACTIONS(4824), 1, - anon_sym_bitand, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4798), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4808), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4802), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4804), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, ACTIONS(4786), 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, - [45708] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4834), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262808,7 +263984,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4832), 35, + ACTIONS(4784), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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_DASH_GT, + [45694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4794), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4792), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262844,74 +264076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [45769] = 9, + [45755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3209), 1, - sym_field_declaration_list, - STATE(5724), 1, - sym_virtual_specifier, - STATE(6358), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3974), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(3972), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [45842] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4840), 18, + ACTIONS(4102), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262930,7 +264098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4838), 35, + ACTIONS(4104), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262966,885 +264134,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [45903] = 3, + [45816] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4844), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4842), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4029), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_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_DASH_GT, - [45964] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(4723), 1, - anon_sym_LT, - ACTIONS(4846), 1, - anon_sym_COMMA, - ACTIONS(4848), 1, - anon_sym_RBRACK, - ACTIONS(4851), 1, - anon_sym_EQ, - STATE(3323), 1, - sym_template_argument_list, - STATE(5939), 1, - aux_sym_structured_binding_declarator_repeat1, - ACTIONS(4853), 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(3510), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(3518), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - [46043] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4857), 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(4855), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [46114] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4296), 1, - sym_auto, - ACTIONS(4298), 1, - anon_sym_decltype, - STATE(2652), 1, - sym_decltype_auto, - ACTIONS(4225), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4223), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [46181] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3188), 1, - sym_field_declaration_list, - STATE(5732), 1, - sym_virtual_specifier, - STATE(6348), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3988), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(3986), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [46254] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4861), 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(4859), 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, - [46327] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4816), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4808), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4865), 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(4863), 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, - [46408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4869), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4867), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [46469] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4203), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4201), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [46532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4873), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4871), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [46593] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4875), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [46654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4879), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [46715] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4792), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4794), 1, - anon_sym_AMP_AMP, - ACTIONS(4796), 1, - anon_sym_PIPE, ACTIONS(4800), 1, - anon_sym_AMP, - ACTIONS(4806), 1, - anon_sym_GT_EQ, - ACTIONS(4810), 1, anon_sym_LBRACK, - ACTIONS(4816), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4818), 1, - anon_sym_or, - ACTIONS(4820), 1, - anon_sym_and, - ACTIONS(4822), 1, - anon_sym_bitor, - ACTIONS(4824), 1, - anon_sym_bitand, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, - ACTIONS(4885), 1, - anon_sym_EQ, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(4788), 2, + ACTIONS(4798), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4798), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4808), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4802), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4804), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4883), 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, - [46820] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4792), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4794), 1, - anon_sym_AMP_AMP, - ACTIONS(4796), 1, anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_AMP, - ACTIONS(4806), 1, - anon_sym_GT_EQ, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4816), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4818), 1, - anon_sym_or, - ACTIONS(4820), 1, - anon_sym_and, - ACTIONS(4822), 1, - anon_sym_bitor, - ACTIONS(4824), 1, - anon_sym_bitand, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(4889), 1, - anon_sym_EQ, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4798), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(4808), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4802), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4804), 3, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4887), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4796), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, @@ -263862,22 +264191,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [46925] = 10, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [45887] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(3540), 1, + STATE(2620), 1, + sym_enumerator_list, + ACTIONS(4346), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_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(3542), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4344), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [45950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3549), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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, - ACTIONS(4723), 1, - anon_sym_LT, - STATE(3323), 1, - sym_template_argument_list, - ACTIONS(3544), 13, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -263891,7 +264307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3518), 16, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [46011] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4768), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -263902,15 +264328,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3510), 18, + ACTIONS(4770), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -263918,8 +264347,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -263927,13 +264372,504 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [47000] = 4, + [46072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3771), 2, - anon_sym_COLON_COLON, + ACTIONS(3544), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3549), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [46133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3549), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [46194] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4812), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4814), 1, + anon_sym_AMP_AMP, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_AMP, + ACTIONS(4826), 1, + anon_sym_GT_EQ, + ACTIONS(4830), 1, + anon_sym_EQ, + ACTIONS(4832), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4834), 1, + anon_sym_or, + ACTIONS(4836), 1, + anon_sym_and, + ACTIONS(4838), 1, + anon_sym_bitor, + ACTIONS(4840), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4818), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4828), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4822), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4824), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4806), 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, + [46299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3549), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [46360] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2496), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3851), 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(3849), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_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_DASH_GT, + [46427] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2635), 1, + sym_enumerator_list, + ACTIONS(4239), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4237), 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_LBRACE, - ACTIONS(3773), 19, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [46490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4645), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4640), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [46551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4844), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [46612] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4153), 1, + anon_sym_LBRACK, + STATE(2662), 1, + sym_new_declarator, + ACTIONS(4659), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -263953,7 +264889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3778), 32, + ACTIONS(4657), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -263963,7 +264899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -263986,73 +264922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [47063] = 8, + [46677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4893), 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(4891), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [47134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4117), 18, + ACTIONS(4850), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264071,7 +264944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4119), 35, + ACTIONS(4848), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264107,7 +264980,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [47195] = 3, + [46738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4854), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4852), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [46799] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4832), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4828), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4858), 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(4856), 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, + [46880] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4862), 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(4860), 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, + [46953] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4143), 18, @@ -264165,10 +265228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [47256] = 3, + [47014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 18, + ACTIONS(4143), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264187,7 +265250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3510), 35, + ACTIONS(4145), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264223,10 +265286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [47317] = 3, + [47075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 18, + ACTIONS(4143), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264245,7 +265308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(2327), 35, + ACTIONS(4145), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264281,10 +265344,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [47378] = 3, + [47136] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4181), 18, + STATE(2494), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4868), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(4864), 17, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(4866), 26, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + 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, + [47201] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4812), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4814), 1, + anon_sym_AMP_AMP, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_AMP, + ACTIONS(4826), 1, + anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4834), 1, + anon_sym_or, + ACTIONS(4836), 1, + anon_sym_and, + ACTIONS(4838), 1, + anon_sym_bitor, + ACTIONS(4840), 1, + anon_sym_bitand, + ACTIONS(4873), 1, + anon_sym_EQ, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4818), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4828), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4822), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4824), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4871), 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, + [47306] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2496), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4875), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4878), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3877), 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(3875), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_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_DASH_GT, + [47373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4883), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264303,7 +265567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4183), 35, + ACTIONS(4881), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264339,132 +265603,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [47439] = 5, + [47434] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4899), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4897), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(4889), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4895), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_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_DASH_GT, - [47504] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4732), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4730), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [47565] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4907), 1, - anon_sym_LT, - STATE(2574), 1, + STATE(2546), 1, sym_template_argument_list, - ACTIONS(4905), 17, + ACTIONS(4887), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264482,7 +265628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4903), 34, + ACTIONS(4885), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264517,10 +265663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [47630] = 3, + [47499] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 18, + STATE(2078), 1, + sym__enum_base_clause, + STATE(2134), 1, + sym_enumerator_list, + ACTIONS(4205), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264539,7 +265689,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3510), 35, + ACTIONS(4203), 33, + 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [47564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4673), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4675), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264575,10 +265781,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [47691] = 3, + [47625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4746), 18, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4342), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4340), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [47688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264597,7 +265862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4748), 35, + ACTIONS(4892), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264633,14 +265898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [47752] = 5, + [47749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4129), 1, - anon_sym_LBRACK, - STATE(2663), 1, - sym_new_declarator, - ACTIONS(4656), 19, + ACTIONS(4896), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264659,8 +265920,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, + ACTIONS(2453), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, - ACTIONS(4654), 32, + [47810] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(4352), 1, + anon_sym_LT, + STATE(2035), 1, + sym_template_argument_list, + ACTIONS(3450), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3455), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264671,6 +265992,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -264682,278 +266004,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, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [47817] = 9, + [47877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3200), 1, - sym_field_declaration_list, - STATE(5701), 1, - sym_virtual_specifier, - STATE(6371), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3984), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(3982), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [47890] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3197), 1, - sym_field_declaration_list, - STATE(5696), 1, - sym_virtual_specifier, - STATE(6377), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4002), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4000), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [47963] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3148), 1, - sym_field_declaration_list, - STATE(5691), 1, - sym_virtual_specifier, - STATE(6383), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3992), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(3990), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [48036] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(3540), 1, - anon_sym_EQ, - ACTIONS(3807), 1, - anon_sym_COLON, - ACTIONS(4723), 1, - anon_sym_LT, - STATE(3323), 1, - sym_template_argument_list, - ACTIONS(3544), 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(3518), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3510), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [48111] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 18, + ACTIONS(4078), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264972,7 +266039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4151), 35, + ACTIONS(4080), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -265008,11 +266075,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [48172] = 4, + [47938] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4901), 1, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4812), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4814), 1, anon_sym_AMP_AMP, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_AMP, + ACTIONS(4826), 1, + anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4834), 1, + anon_sym_or, + ACTIONS(4836), 1, + anon_sym_and, + ACTIONS(4838), 1, + anon_sym_bitor, + ACTIONS(4840), 1, + anon_sym_bitand, + ACTIONS(4898), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4902), 1, + anon_sym_EQ, + ACTIONS(4904), 1, + anon_sym_QMARK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4818), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4828), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4822), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4824), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4900), 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, + [48047] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_EQ, + ACTIONS(3766), 1, + anon_sym_COLON, + ACTIONS(4689), 1, + anon_sym_LT, + STATE(3337), 1, + sym_template_argument_list, + ACTIONS(3515), 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(3457), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3462), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [48122] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4908), 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(4906), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [48193] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4912), 18, anon_sym_DASH, anon_sym_PLUS, @@ -265032,64 +266307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4910), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_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_DASH_GT, - [48235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4174), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4176), 35, + ACTIONS(4910), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -265125,43 +266343,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [48296] = 3, + [48254] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 18, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4812), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4814), 1, + anon_sym_AMP_AMP, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_AMP, + ACTIONS(4826), 1, + anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4834), 1, + anon_sym_or, + ACTIONS(4836), 1, + anon_sym_and, + ACTIONS(4838), 1, + anon_sym_bitor, + ACTIONS(4840), 1, + anon_sym_bitand, + ACTIONS(4898), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4916), 1, + anon_sym_EQ, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4818), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4828), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(4822), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4824), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4158), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(4914), 19, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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, @@ -265176,72 +266424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [48357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4916), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4914), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [48418] = 3, + [48361] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4920), 18, @@ -265299,7 +266482,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [48479] = 3, + [48422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3457), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3462), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [48483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3457), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3462), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [48544] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4924), 18, @@ -265357,280 +266656,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [48540] = 25, + [48605] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4792), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4794), 1, - anon_sym_AMP_AMP, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_AMP, - ACTIONS(4806), 1, - anon_sym_GT_EQ, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4816), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4818), 1, - anon_sym_or, - ACTIONS(4820), 1, - anon_sym_and, - ACTIONS(4822), 1, - anon_sym_bitor, - ACTIONS(4824), 1, - anon_sym_bitand, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(4928), 1, - anon_sym_EQ, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4798), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4808), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4802), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4804), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4926), 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, - [48645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4932), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4930), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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, + ACTIONS(3981), 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, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [48706] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4934), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [48767] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2519), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4938), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4941), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3849), 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(3847), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_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_DASH_GT, - [48834] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3213), 1, + STATE(3189), 1, sym_field_declaration_list, - STATE(5728), 1, + STATE(5732), 1, sym_virtual_specifier, - STATE(6355), 1, + STATE(6348), 1, sym_base_class_clause, - ACTIONS(3980), 2, + ACTIONS(3983), 2, anon_sym_final, anon_sym_override, - ACTIONS(4009), 12, + ACTIONS(4019), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -265643,7 +266685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4007), 34, + ACTIONS(4017), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -265678,7 +266720,1838 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [48907] = 3, + [48678] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3197), 1, + sym_field_declaration_list, + STATE(5728), 1, + sym_virtual_specifier, + STATE(6355), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3991), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(3989), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [48751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4928), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [48812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4073), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [48873] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3208), 1, + sym_field_declaration_list, + STATE(5724), 1, + sym_virtual_specifier, + STATE(6358), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4023), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4021), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [48946] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_EQ, + ACTIONS(4689), 1, + anon_sym_LT, + ACTIONS(4932), 1, + anon_sym_COLON, + STATE(3337), 1, + sym_template_argument_list, + ACTIONS(3515), 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(3457), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3462), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [49021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4130), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4132), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [49082] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 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(4934), 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, + [49157] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 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(4934), 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, + [49230] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4814), 1, + anon_sym_AMP_AMP, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_AMP, + ACTIONS(4826), 1, + anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4836), 1, + anon_sym_and, + ACTIONS(4838), 1, + anon_sym_bitor, + ACTIONS(4840), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4818), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4828), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4822), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4824), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [49331] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(3106), 1, + anon_sym_STAR, + ACTIONS(3108), 1, + anon_sym_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4742), 1, + anon_sym_RPAREN, + ACTIONS(4752), 1, + anon_sym_LBRACK, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + STATE(4350), 1, + sym_parameter_list, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5321), 1, + sym__declarator, + STATE(5397), 1, + sym__abstract_declarator, + STATE(6985), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3257), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [49440] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(4713), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(4711), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, + [49503] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_AMP, + ACTIONS(4826), 1, + anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4838), 1, + anon_sym_bitor, + ACTIONS(4840), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4818), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4828), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4822), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4824), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(4934), 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, + [49600] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4820), 1, + anon_sym_AMP, + ACTIONS(4826), 1, + anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4840), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4818), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4828), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4822), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4824), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(4934), 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, + [49693] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4820), 1, + anon_sym_AMP, + ACTIONS(4826), 1, + anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4840), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4828), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4822), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4824), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 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, + [49784] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4826), 1, + anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4828), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4822), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4824), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 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, + [49871] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3203), 1, + sym_field_declaration_list, + STATE(5701), 1, + sym_virtual_specifier, + STATE(6371), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4015), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4013), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [49944] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3200), 1, + sym_field_declaration_list, + STATE(5696), 1, + sym_virtual_specifier, + STATE(6377), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3987), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(3985), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [50017] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3190), 1, + sym_field_declaration_list, + STATE(5691), 1, + sym_virtual_specifier, + STATE(6383), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3977), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(3975), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [50090] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1977), 1, + sym__enum_base_clause, + STATE(2087), 1, + sym_enumerator_list, + ACTIONS(4217), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4215), 33, + 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [50155] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4832), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4828), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 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(4934), 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, + [50236] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 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(4934), 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, + [50313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4139), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [50374] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4828), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 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(4934), 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, + [50453] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3178), 1, + sym_field_declaration_list, + STATE(5519), 1, + sym_virtual_specifier, + STATE(6404), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4005), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4003), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [50526] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3175), 1, + sym_field_declaration_list, + STATE(5650), 1, + sym_virtual_specifier, + STATE(6407), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4001), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(3999), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [50599] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3172), 1, + sym_field_declaration_list, + STATE(5646), 1, + sym_virtual_specifier, + STATE(6409), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3997), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(3995), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [50672] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(4942), 1, + anon_sym_LT, + STATE(2719), 1, + sym_template_argument_list, + ACTIONS(3469), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4063), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [50739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4149), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [50800] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4946), 18, @@ -265736,22 +268609,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [48968] = 10, + [50861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(4667), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4665), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [50922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4950), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4948), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [50983] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(3534), 1, + ACTIONS(3469), 1, anon_sym_LBRACE, - ACTIONS(3540), 1, + ACTIONS(3511), 1, anon_sym_EQ, - ACTIONS(3797), 1, + ACTIONS(3584), 1, anon_sym_COLON, - ACTIONS(4723), 1, + ACTIONS(4689), 1, anon_sym_LT, - STATE(3323), 1, + STATE(3337), 1, sym_template_argument_list, - ACTIONS(3544), 13, + ACTIONS(3515), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -265765,7 +268754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3518), 16, + ACTIONS(3457), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -265782,7 +268771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3510), 18, + ACTIONS(3462), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -265801,22 +268790,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [49043] = 10, + [51058] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4954), 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(4952), 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, + [51131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4844), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [51192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4956), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [51253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4713), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4711), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [51314] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(3534), 1, + ACTIONS(3469), 1, anon_sym_LBRACE, - ACTIONS(3540), 1, - anon_sym_EQ, - ACTIONS(4723), 1, + ACTIONS(4689), 1, anon_sym_LT, - ACTIONS(4948), 1, - anon_sym_COLON, - STATE(3323), 1, + ACTIONS(4960), 1, + anon_sym_COMMA, + ACTIONS(4963), 1, + anon_sym_RBRACK, + ACTIONS(4966), 1, + anon_sym_EQ, + STATE(3337), 1, sym_template_argument_list, - ACTIONS(3544), 13, + STATE(5939), 1, + aux_sym_structured_binding_declarator_repeat1, + ACTIONS(4968), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -265830,7 +269061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3518), 16, + ACTIONS(3457), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -265847,16 +269078,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3510), 18, + ACTIONS(3462), 16, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -265866,1652 +269095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [49118] = 3, + [51393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4952), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4950), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [49179] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3187), 1, - sym_field_declaration_list, - STATE(5519), 1, - sym_virtual_specifier, - STATE(6404), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4021), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4019), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [49252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4956), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4954), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [49313] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4960), 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(4958), 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, - [49386] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3185), 1, - sym_field_declaration_list, - STATE(5650), 1, - sym_virtual_specifier, - STATE(6407), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4017), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4015), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [49459] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3183), 1, - sym_field_declaration_list, - STATE(5646), 1, - sym_virtual_specifier, - STATE(6409), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4013), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4011), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [49532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4139), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4141), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [49593] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4631), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4629), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [49654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4103), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4105), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [49715] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4099), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4101), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [49776] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3691), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [49837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3691), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [49898] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4808), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4964), 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(4962), 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, - [49977] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1961), 1, - sym__enum_base_clause, - STATE(2097), 1, - sym_enumerator_list, - ACTIONS(4162), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4160), 33, - 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [50042] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4964), 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(4962), 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, - [50119] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4816), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4808), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4964), 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(4962), 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, - [50200] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4806), 1, - anon_sym_GT_EQ, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4816), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4808), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4804), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4962), 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, - [50285] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4806), 1, - anon_sym_GT_EQ, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4816), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4808), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4802), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4804), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4962), 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, - [50372] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4800), 1, - anon_sym_AMP, - ACTIONS(4806), 1, - anon_sym_GT_EQ, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4816), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4824), 1, - anon_sym_bitand, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4808), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4802), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4804), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4962), 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, - [50463] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4968), 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(4966), 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, - [50536] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4800), 1, - anon_sym_AMP, - ACTIONS(4806), 1, - anon_sym_GT_EQ, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4816), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4824), 1, - anon_sym_bitand, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4798), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4808), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4802), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4804), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 4, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(4962), 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, - [50629] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_AMP, - ACTIONS(4806), 1, - anon_sym_GT_EQ, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4816), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4822), 1, - anon_sym_bitor, - ACTIONS(4824), 1, - anon_sym_bitand, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4798), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4808), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4802), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4804), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(4962), 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, - [50726] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4794), 1, - anon_sym_AMP_AMP, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_AMP, - ACTIONS(4806), 1, - anon_sym_GT_EQ, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4816), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4820), 1, - anon_sym_and, - ACTIONS(4822), 1, - anon_sym_bitor, - ACTIONS(4824), 1, - anon_sym_bitand, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4798), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4808), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4964), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(4790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4802), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4804), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [50827] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4964), 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(4962), 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, - [50900] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4964), 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(4962), 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, - [50975] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(3540), 1, - anon_sym_EQ, - ACTIONS(3730), 1, - anon_sym_COLON, - ACTIONS(4723), 1, - anon_sym_LT, - STATE(3323), 1, + STATE(3282), 1, sym_template_argument_list, - ACTIONS(3544), 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(3518), 16, + ACTIONS(4201), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -267522,35 +269113,55 @@ 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3510), 18, + anon_sym_DASH_GT, + ACTIONS(4199), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - [51050] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [51458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 18, + ACTIONS(3727), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3729), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -267569,7 +269180,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3691), 35, + anon_sym_DASH_GT, + ACTIONS(3734), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -267579,11 +269191,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, @@ -267604,182 +269212,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [51111] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4189), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4191), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [51172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3691), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [51233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4170), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4172), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [51294] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [51521] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4972), 18, @@ -267837,10 +269272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [51355] = 3, + [51582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4652), 18, + ACTIONS(2017), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -267859,7 +269294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4650), 35, + ACTIONS(2015), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -267895,10 +269330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [51416] = 3, + [51643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4669), 18, + ACTIONS(4976), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -267917,7 +269352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4671), 35, + ACTIONS(4974), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -267953,73 +269388,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [51477] = 26, + [51704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4784), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4792), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4794), 1, - anon_sym_AMP_AMP, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_AMP, - ACTIONS(4806), 1, - anon_sym_GT_EQ, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4816), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4818), 1, - anon_sym_or, - ACTIONS(4820), 1, - anon_sym_and, - ACTIONS(4822), 1, - anon_sym_bitor, - ACTIONS(4824), 1, - anon_sym_bitand, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(4976), 1, - anon_sym_EQ, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4788), 2, + ACTIONS(2001), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4798), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4808), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4802), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4804), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4974), 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(1999), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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, @@ -268034,89 +269439,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [51584] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(3104), 1, - anon_sym_LPAREN2, - ACTIONS(3106), 1, - anon_sym_STAR, - ACTIONS(3108), 1, - anon_sym_AMP_AMP, - ACTIONS(3110), 1, - anon_sym_AMP, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4700), 1, - anon_sym_RPAREN, - ACTIONS(4710), 1, - anon_sym_LBRACK, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - STATE(4350), 1, - sym_parameter_list, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4992), 1, - sym__scope_resolution, - STATE(5321), 1, - sym__declarator, - STATE(5397), 1, - sym__abstract_declarator, - STATE(6985), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3249), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3262), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [51693] = 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_DASH_GT, + [51765] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4980), 18, @@ -268138,7 +269468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(2547), 35, + ACTIONS(4978), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -268174,12 +269504,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [51754] = 4, + [51826] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4982), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4732), 20, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4812), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4814), 1, + anon_sym_AMP_AMP, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_AMP, + ACTIONS(4826), 1, + anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4834), 1, + anon_sym_or, + ACTIONS(4836), 1, + anon_sym_and, + ACTIONS(4838), 1, + anon_sym_bitor, + ACTIONS(4840), 1, + anon_sym_bitand, + ACTIONS(4984), 1, + anon_sym_EQ, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4818), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4828), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4822), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4824), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4982), 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, + [51931] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4826), 1, + anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4828), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4824), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 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, + [52016] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(4942), 1, + anon_sym_LT, + STATE(2719), 1, + sym_template_argument_list, + ACTIONS(3542), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(3537), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [52083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -268193,14 +269732,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(4730), 32, + ACTIONS(4986), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -268210,7 +269747,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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -268231,12 +269772,430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [51817] = 6, + anon_sym_DASH_GT, + [52144] = 3, ACTIONS(3), 1, sym_comment, - STATE(2519), 3, + ACTIONS(4992), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4990), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [52205] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4082), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4084), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [52266] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4565), 1, + sym_auto, + ACTIONS(4567), 1, + anon_sym_decltype, + STATE(2652), 1, + sym_decltype_auto, + ACTIONS(4338), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4336), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [52333] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_EQ, + ACTIONS(3624), 1, + anon_sym_COLON, + ACTIONS(4689), 1, + anon_sym_LT, + STATE(3337), 1, + sym_template_argument_list, + ACTIONS(3515), 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(3457), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3462), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [52408] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4790), 1, + anon_sym_AMP_AMP, + ACTIONS(4996), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4994), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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_DASH_GT, + [52471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4098), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4100), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [52532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4088), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [52593] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4998), 1, + sym_literal_suffix, + STATE(2482), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, @@ -268252,7 +270211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(3861), 16, + ACTIONS(3457), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -268268,8 +270227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(3859), 24, + ACTIONS(3462), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -268294,10 +270252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [51884] = 3, + [52662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4986), 18, + ACTIONS(4090), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -268316,7 +270274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4984), 35, + ACTIONS(4092), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -268352,10 +270310,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [51945] = 3, + [52723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4990), 18, + ACTIONS(4094), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -268374,7 +270332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4988), 35, + ACTIONS(4096), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -268410,145 +270368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [52006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4994), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4992), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [52067] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4792), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4794), 1, - anon_sym_AMP_AMP, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_AMP, - ACTIONS(4806), 1, - anon_sym_GT_EQ, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4816), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4818), 1, - anon_sym_or, - ACTIONS(4820), 1, - anon_sym_and, - ACTIONS(4822), 1, - anon_sym_bitor, - ACTIONS(4824), 1, - anon_sym_bitand, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(4998), 1, - anon_sym_EQ, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4798), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4808), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4802), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4804), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4996), 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, - [52172] = 3, + [52784] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5002), 18, @@ -268606,575 +270426,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [52233] = 5, + [52845] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - STATE(3299), 1, - sym_template_argument_list, - ACTIONS(4187), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4185), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4029), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + ACTIONS(4800), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [52298] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - sym_literal_suffix, - STATE(2561), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3518), 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(3510), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_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_DASH_GT, - [52367] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2569), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5010), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, ACTIONS(5006), 17, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(5008), 26, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5004), 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, + [52918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5008), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [52979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5012), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_DASH_GT, + [53040] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - 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, - [52432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(2335), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [52493] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4137), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [52554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4137), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [52615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4137), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [52676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5015), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5013), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [52737] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2619), 1, - sym_enumerator_list, - ACTIONS(4229), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4227), 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, + ACTIONS(3469), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [52800] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1947), 1, - sym__enum_base_clause, - STATE(2004), 1, - sym_enumerator_list, - ACTIONS(4168), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - 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(3511), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4166), 33, - 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_LBRACE, - anon_sym_LBRACK, + ACTIONS(3513), 1, anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(4689), 1, + anon_sym_LT, + STATE(3337), 1, + sym_template_argument_list, + ACTIONS(3515), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -269188,19 +270635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [52865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4986), 18, + ACTIONS(3457), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269211,18 +270646,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, - ACTIONS(4984), 35, + ACTIONS(3462), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269230,24 +270662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -269255,84 +270671,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [52926] = 3, + [53115] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3691), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_DASH_GT, - [52987] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(3534), 1, + ACTIONS(3469), 1, anon_sym_LBRACE, - ACTIONS(4723), 1, - anon_sym_LT, - ACTIONS(4848), 1, - anon_sym_RBRACK, - ACTIONS(4851), 1, + ACTIONS(3511), 1, anon_sym_EQ, - ACTIONS(5017), 1, + ACTIONS(3694), 1, + anon_sym_COLON, + ACTIONS(4689), 1, + anon_sym_LT, + STATE(3337), 1, + sym_template_argument_list, + ACTIONS(3515), 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(3457), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3462), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - STATE(3323), 1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_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_DASH_GT, + [53190] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4812), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4814), 1, + anon_sym_AMP_AMP, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_AMP, + ACTIONS(4826), 1, + anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4834), 1, + anon_sym_or, + ACTIONS(4836), 1, + anon_sym_and, + ACTIONS(4838), 1, + anon_sym_bitor, + ACTIONS(4840), 1, + anon_sym_bitand, + ACTIONS(5018), 1, + anon_sym_EQ, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4818), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4828), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4810), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4822), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4824), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5016), 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, + [53295] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_LBRACE, + ACTIONS(4689), 1, + anon_sym_LT, + ACTIONS(4963), 1, + anon_sym_RBRACK, + ACTIONS(4966), 1, + anon_sym_EQ, + ACTIONS(5020), 1, + anon_sym_COMMA, + STATE(3337), 1, sym_template_argument_list, STATE(5939), 1, aux_sym_structured_binding_declarator_repeat1, - ACTIONS(4853), 13, + ACTIONS(4968), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -269346,24 +270849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3510), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(3518), 16, + ACTIONS(3457), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269380,10 +270866,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - [53066] = 3, + ACTIONS(3462), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [53374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4652), 20, + ACTIONS(4645), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269404,7 +270907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4650), 32, + ACTIONS(4640), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -269437,67 +270940,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [53126] = 25, + [53434] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(4976), 1, + ACTIONS(4916), 1, anon_sym_EQ, - ACTIONS(5020), 1, + ACTIONS(5022), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5026), 1, - anon_sym_PIPE_PIPE, ACTIONS(5028), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(5030), 1, + anon_sym_AMP_AMP, + ACTIONS(5032), 1, anon_sym_PIPE, - ACTIONS(5034), 1, + ACTIONS(5036), 1, anon_sym_AMP, - ACTIONS(5040), 1, + ACTIONS(5042), 1, anon_sym_GT_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, ACTIONS(5046), 1, - anon_sym_LT_EQ_GT, + anon_sym_LBRACK, ACTIONS(5048), 1, - anon_sym_or, + anon_sym_LT_EQ_GT, ACTIONS(5050), 1, - anon_sym_and, + anon_sym_or, ACTIONS(5052), 1, - anon_sym_bitor, + anon_sym_and, ACTIONS(5054), 1, + anon_sym_bitor, + ACTIONS(5056), 1, anon_sym_bitand, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, - ACTIONS(5022), 2, + ACTIONS(5024), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5032), 2, + ACTIONS(5034), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5042), 2, + ACTIONS(5044), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5056), 2, + ACTIONS(5058), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5024), 3, + ACTIONS(5026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5036), 3, + ACTIONS(5038), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5038), 3, + ACTIONS(5040), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4974), 18, + ACTIONS(4914), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_QMARK, @@ -269516,20 +271019,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [53230] = 9, + [53538] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(3534), 1, + ACTIONS(3469), 1, anon_sym_LBRACE, - ACTIONS(4723), 1, + ACTIONS(4689), 1, anon_sym_LT, - ACTIONS(4851), 1, + ACTIONS(4966), 1, anon_sym_EQ, - STATE(3323), 1, + STATE(3337), 1, sym_template_argument_list, - ACTIONS(4853), 13, + ACTIONS(4968), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -269543,7 +271046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3518), 16, + ACTIONS(3457), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269560,7 +271063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3510), 18, + ACTIONS(3462), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -269579,70 +271082,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [53302] = 4, + [53610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3895), 1, - sym_literal_suffix, - ACTIONS(3518), 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(3510), 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, - [53364] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5060), 1, + ACTIONS(5062), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(4732), 19, + ACTIONS(4713), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269662,7 +271107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4730), 32, + ACTIONS(4711), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -269695,18 +271140,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [53426] = 7, + [53672] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4637), 1, + anon_sym_LBRACK, + ACTIONS(4631), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3457), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3462), 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, + [53738] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4637), 1, + anon_sym_LBRACK, + ACTIONS(4631), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3457), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3462), 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, + [53804] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3903), 1, + sym_literal_suffix, + ACTIONS(3457), 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(3462), 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, + [53866] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(3684), 1, + ACTIONS(3542), 1, anon_sym_LBRACE, ACTIONS(3969), 1, anon_sym_LT, - STATE(2828), 1, + STATE(2859), 1, sym_template_argument_list, - ACTIONS(3686), 19, + ACTIONS(3544), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269726,7 +271349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3691), 29, + ACTIONS(3549), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -269756,130 +271379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [53494] = 6, + [53934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3885), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4647), 1, - anon_sym_LBRACK, - ACTIONS(4641), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(3518), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3510), 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, - [53560] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3885), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4647), 1, - anon_sym_LBRACK, - ACTIONS(4641), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(3518), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3510), 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, - [53626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4203), 20, + ACTIONS(4342), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269900,7 +271403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4201), 32, + ACTIONS(4340), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -269933,21 +271436,21 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [53686] = 9, + [53994] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(3534), 1, + ACTIONS(3469), 1, anon_sym_LBRACE, - ACTIONS(3954), 1, + ACTIONS(3956), 1, anon_sym_LT, - STATE(3593), 1, + STATE(3598), 1, sym_template_argument_list, - ACTIONS(3957), 2, + ACTIONS(3959), 2, anon_sym_EQ, anon_sym_GT_GT_EQ, - ACTIONS(3959), 12, + ACTIONS(3961), 12, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -269960,7 +271463,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3510), 17, + ACTIONS(3457), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3462), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -269978,2245 +271499,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(3518), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - [53758] = 6, + [54066] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(5062), 1, - anon_sym_LT, - STATE(2930), 1, - sym_template_argument_list, - ACTIONS(3534), 6, + ACTIONS(4151), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4041), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [53824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4302), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4300), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [53884] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4857), 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(4855), 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, - [53952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4314), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4312), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54012] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4316), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4385), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4383), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54132] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4389), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4387), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54192] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4393), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4391), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4397), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4395), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4401), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4399), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4405), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4403), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4409), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4407), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4413), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4411), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4417), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4415), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4421), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4419), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4520), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4518), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4544), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4542), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54792] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4548), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4546), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54852] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4552), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4550), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4556), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4554), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54972] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4560), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4558), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [55032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4568), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4566), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [55092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4580), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4578), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [55152] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4584), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4582), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [55212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4588), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4586), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [55272] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5056), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4861), 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(4859), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55342] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, ACTIONS(5046), 1, - anon_sym_LT_EQ_GT, - STATE(2849), 1, + anon_sym_LBRACK, + STATE(2851), 1, sym_argument_list, - ACTIONS(5022), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5056), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5024), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4865), 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(4863), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4592), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4590), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [55480] = 3, - ACTIONS(3), 1, - sym_comment, - 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_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4594), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [55540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4246), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4244), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [55600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4608), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4606), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [55660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4482), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4480), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [55720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4443), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4441), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [55780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4466), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4464), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [55840] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4889), 1, - anon_sym_EQ, - ACTIONS(5026), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_AMP_AMP, - ACTIONS(5030), 1, - anon_sym_PIPE, - ACTIONS(5034), 1, - anon_sym_AMP, - ACTIONS(5040), 1, - anon_sym_GT_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5046), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5048), 1, - anon_sym_or, - ACTIONS(5050), 1, - anon_sym_and, - ACTIONS(5052), 1, - anon_sym_bitor, - ACTIONS(5054), 1, - anon_sym_bitand, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5022), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5032), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5056), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5024), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5036), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5038), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4887), 19, - 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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55942] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4474), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4472), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [56002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4494), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [56062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4536), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4534), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [56122] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4893), 17, + ACTIONS(4908), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272234,7 +271529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4891), 30, + ACTIONS(4906), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -272265,10 +271560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [56190] = 3, + [54134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4490), 20, + ACTIONS(4587), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272289,7 +271584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4488), 32, + ACTIONS(4585), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -272322,10 +271617,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [56250] = 3, + [54194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4576), 20, + ACTIONS(4519), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272346,7 +271641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4574), 32, + ACTIONS(4517), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -272379,10 +271674,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [56310] = 3, + [54254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4612), 20, + ACTIONS(4507), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272403,7 +271698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4610), 32, + ACTIONS(4505), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -272436,10 +271731,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [56370] = 3, + [54314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 20, + ACTIONS(4387), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272460,7 +271755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4614), 32, + ACTIONS(4385), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -272493,10 +271788,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [56430] = 3, + [54374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 20, + ACTIONS(4379), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272517,7 +271812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4372), 32, + ACTIONS(4377), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -272550,10 +271845,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [56490] = 3, + [54434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4381), 20, + ACTIONS(4591), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272574,7 +271869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4379), 32, + ACTIONS(4589), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -272607,10 +271902,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [56550] = 3, + [54494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4500), 20, + ACTIONS(4364), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272631,7 +271926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4498), 32, + ACTIONS(4362), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -272664,10 +271959,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [56610] = 3, + [54554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 20, + ACTIONS(4622), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272688,7 +271983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4476), 32, + ACTIONS(4620), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -272721,10 +272016,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [56670] = 3, + [54614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 20, + ACTIONS(4539), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272745,7 +272040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4484), 32, + ACTIONS(4537), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -272778,10 +272073,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [56730] = 3, + [54674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4338), 20, + ACTIONS(4575), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272802,7 +272097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4336), 32, + ACTIONS(4573), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -272835,10 +272130,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [56790] = 3, + [54734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 20, + ACTIONS(4595), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272859,7 +272154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4332), 32, + ACTIONS(4593), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -272892,10 +272187,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [56850] = 3, + [54794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 20, + ACTIONS(4599), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272916,7 +272211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4328), 32, + ACTIONS(4597), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -272949,407 +272244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [56910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4326), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4324), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [56970] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4320), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [57030] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2723), 1, - sym_enumerator_list, - ACTIONS(4229), 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(4227), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [57092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4278), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4276), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [57152] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4282), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4280), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [57212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4286), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_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), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [57272] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4447), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4445), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [57332] = 3, + [54854] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4451), 20, @@ -273406,70 +272301,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [57392] = 6, + [54914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(5062), 1, - anon_sym_LT, - STATE(2930), 1, - sym_template_argument_list, - ACTIONS(3684), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(3679), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [57458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4290), 20, + ACTIONS(4475), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273490,7 +272325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4288), 32, + ACTIONS(4473), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -273523,10 +272358,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [57518] = 3, + [54974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4600), 20, + ACTIONS(4531), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273547,7 +272382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4598), 32, + ACTIONS(4529), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -273580,10 +272415,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [57578] = 3, + [55034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4604), 20, + ACTIONS(4583), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273604,7 +272439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4602), 32, + ACTIONS(4581), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -273637,10 +272472,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [57638] = 3, + [55094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 20, + ACTIONS(4350), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273661,7 +272496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4514), 32, + ACTIONS(4348), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -273694,10 +272529,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [57698] = 3, + [55154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4512), 20, + ACTIONS(4551), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273718,7 +272553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4510), 32, + ACTIONS(4549), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -273751,10 +272586,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [57758] = 3, + [55214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4508), 20, + ACTIONS(4511), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273775,7 +272610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4506), 32, + ACTIONS(4509), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -273808,10 +272643,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [57818] = 3, + [55274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 20, + ACTIONS(4491), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273832,7 +272667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4502), 32, + ACTIONS(4489), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -273865,10 +272700,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [57878] = 3, + [55334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 20, + ACTIONS(4479), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273889,7 +272724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4201), 32, + ACTIONS(4477), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -273922,10 +272757,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [57938] = 3, + [55394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4572), 20, + ACTIONS(4467), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273946,7 +272781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4570), 32, + ACTIONS(4465), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -273979,17 +272814,22 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [57998] = 6, + [55454] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1669), 1, - anon_sym_LBRACE, - ACTIONS(4292), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - STATE(3030), 2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + STATE(2851), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4524), 20, + ACTIONS(5058), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4862), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273999,25 +272839,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(4522), 28, + ACTIONS(4860), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -274025,6 +272863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -274035,49 +272874,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [58064] = 6, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [55524] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1669), 1, - anon_sym_LBRACE, - ACTIONS(4292), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - STATE(3032), 2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, + anon_sym_LT_EQ_GT, + STATE(2851), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4564), 20, + ACTIONS(5024), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5044), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5058), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4858), 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(4562), 28, + ACTIONS(4856), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -274085,24 +272930,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_DASH_GT, - anon_sym_GT2, - [58130] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [55602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4258), 20, + ACTIONS(4455), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274123,7 +272966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4256), 32, + ACTIONS(4453), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -274156,12 +272999,1633 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [58190] = 4, + [55662] = 3, ACTIONS(3), 1, sym_comment, - STATE(2761), 1, + ACTIONS(4447), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4445), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4431), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4429), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4407), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4405), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4403), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4401), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4629), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4627), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4391), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4389), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56022] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(4830), 1, + anon_sym_EQ, + ACTIONS(5028), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5030), 1, + anon_sym_AMP_AMP, + ACTIONS(5032), 1, + anon_sym_PIPE, + ACTIONS(5036), 1, + anon_sym_AMP, + ACTIONS(5042), 1, + anon_sym_GT_EQ, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5050), 1, + anon_sym_or, + ACTIONS(5052), 1, + anon_sym_and, + ACTIONS(5054), 1, + anon_sym_bitor, + ACTIONS(5056), 1, + anon_sym_bitand, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5024), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5034), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5044), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5058), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5038), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5040), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4806), 19, + 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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [56124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4415), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4413), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4417), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4421), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56304] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4798), 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(4796), 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, + [56372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4425), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4433), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4606), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4604), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4443), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4441), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4459), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4457), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4463), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4461), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4471), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4469), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4483), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4481), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4497), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4503), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4501), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4515), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4513), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4523), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4521), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4527), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4525), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4533), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4543), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4541), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4547), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4545), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4360), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4358), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57392] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2725), 1, sym_enumerator_list, - ACTIONS(4197), 10, + ACTIONS(4346), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -274172,7 +274636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4195), 41, + ACTIONS(4344), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -274214,7 +274678,868 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [58252] = 3, + [57454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4368), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4381), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4395), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4393), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4614), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4612), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4610), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4608), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4409), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4555), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4553), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4559), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4557), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4571), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4569), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4618), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4616), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4340), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4439), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4437), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58174] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1679), 1, + anon_sym_LBRACE, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + STATE(3056), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4495), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4493), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [58240] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1679), 1, + anon_sym_LBRACE, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + STATE(3053), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4399), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4397), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [58306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4354), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58366] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4774), 19, @@ -274271,17 +275596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [58312] = 6, + [58426] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1669), 1, + ACTIONS(1679), 1, anon_sym_LBRACE, - ACTIONS(4292), 1, + ACTIONS(4561), 1, anon_sym_LPAREN2, - STATE(3053), 2, + STATE(2985), 2, sym_argument_list, sym_initializer_list, - ACTIONS(4624), 20, + ACTIONS(4579), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274302,7 +275627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4622), 28, + ACTIONS(4577), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -274331,17 +275656,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [58378] = 6, + [58492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1669), 1, - anon_sym_LBRACE, - ACTIONS(4292), 1, + STATE(2763), 1, + sym_enumerator_list, + ACTIONS(4239), 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(4237), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(3037), 2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [58554] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1679), 1, + anon_sym_LBRACE, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + STATE(3036), 2, sym_argument_list, sym_initializer_list, - ACTIONS(4620), 20, + ACTIONS(4487), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274362,7 +275745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4618), 28, + ACTIONS(4485), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -274391,90 +275774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [58444] = 26, + [58620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4812), 1, - anon_sym_EQ, - ACTIONS(5020), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5026), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_AMP_AMP, - ACTIONS(5030), 1, - anon_sym_PIPE, - ACTIONS(5034), 1, - anon_sym_AMP, - ACTIONS(5040), 1, - anon_sym_GT_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5046), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5048), 1, - anon_sym_or, - ACTIONS(5050), 1, - anon_sym_and, - ACTIONS(5052), 1, - anon_sym_bitor, - ACTIONS(5054), 1, - anon_sym_bitand, - ACTIONS(5064), 1, - anon_sym_QMARK, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5022), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5032), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5056), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5024), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5036), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5038), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4786), 17, - 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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4726), 26, + ACTIONS(4692), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -274501,7 +275804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - ACTIONS(4728), 26, + ACTIONS(4694), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274528,83 +275831,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_literal_suffix, - [58610] = 7, + [58680] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3885), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4647), 1, - anon_sym_LBRACK, - ACTIONS(4641), 2, - anon_sym_RPAREN, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(3887), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3518), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - 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(4902), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3510), 26, + ACTIONS(5022), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5028), 1, anon_sym_PIPE_PIPE, + ACTIONS(5030), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5032), 1, + anon_sym_PIPE, + ACTIONS(5036), 1, + anon_sym_AMP, + ACTIONS(5042), 1, anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58678] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, + ACTIONS(5046), 1, anon_sym_LBRACK, - STATE(2849), 1, + ACTIONS(5048), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5050), 1, + anon_sym_or, + ACTIONS(5052), 1, + anon_sym_and, + ACTIONS(5054), 1, + anon_sym_bitor, + ACTIONS(5056), 1, + anon_sym_bitand, + ACTIONS(5064), 1, + anon_sym_QMARK, + STATE(2851), 1, sym_argument_list, - ACTIONS(5056), 2, + ACTIONS(5024), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5034), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5044), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5058), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4968), 17, + ACTIONS(5026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5038), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5040), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4900), 17, + 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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58786] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4637), 1, + anon_sym_LBRACK, + ACTIONS(4631), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3901), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3457), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274622,7 +275943,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4966), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3462), 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, + [58854] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5006), 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(5004), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -274651,12 +276034,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [58748] = 4, + [58924] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 1, + ACTIONS(4120), 1, anon_sym_COLON_COLON, - ACTIONS(4203), 16, + ACTIONS(4342), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274673,7 +276056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4201), 35, + ACTIONS(4340), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -274709,16 +276092,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [58810] = 6, + [58986] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5066), 1, sym_auto, ACTIONS(5068), 1, anon_sym_decltype, - STATE(2852), 1, + STATE(2854), 1, sym_decltype_auto, - ACTIONS(4225), 10, + ACTIONS(4338), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -274729,7 +276112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4223), 39, + ACTIONS(4336), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -274769,10 +276152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_requires, - [58876] = 3, + [59052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 20, + ACTIONS(4988), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274793,7 +276176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5000), 32, + ACTIONS(4986), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -274826,10 +276209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [58936] = 3, + [59112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 20, + ACTIONS(3544), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274850,7 +276233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3691), 32, + ACTIONS(3549), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -274883,10 +276266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [58996] = 3, + [59172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 20, + ACTIONS(3544), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274907,7 +276290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3691), 32, + ACTIONS(3549), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -274940,65 +276323,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [59056] = 24, + [59232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4885), 1, + ACTIONS(3544), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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, - ACTIONS(5026), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3549), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, + [59292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(3549), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, + [59352] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(4984), 1, + anon_sym_EQ, ACTIONS(5028), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(5030), 1, + anon_sym_AMP_AMP, + ACTIONS(5032), 1, anon_sym_PIPE, - ACTIONS(5034), 1, + ACTIONS(5036), 1, anon_sym_AMP, - ACTIONS(5040), 1, + ACTIONS(5042), 1, anon_sym_GT_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, ACTIONS(5046), 1, - anon_sym_LT_EQ_GT, + anon_sym_LBRACK, ACTIONS(5048), 1, - anon_sym_or, + anon_sym_LT_EQ_GT, ACTIONS(5050), 1, - anon_sym_and, + anon_sym_or, ACTIONS(5052), 1, - anon_sym_bitor, + anon_sym_and, ACTIONS(5054), 1, + anon_sym_bitor, + ACTIONS(5056), 1, anon_sym_bitand, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, - ACTIONS(5022), 2, + ACTIONS(5024), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5032), 2, + ACTIONS(5034), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5042), 2, + ACTIONS(5044), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5056), 2, + ACTIONS(5058), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5024), 3, + ACTIONS(5026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5036), 3, + ACTIONS(5038), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5038), 3, + ACTIONS(5040), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4883), 19, + ACTIONS(4982), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -275018,12 +276515,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [59158] = 4, + [59454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(3549), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, + [59514] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5070), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(4732), 20, + ACTIONS(4713), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275044,7 +276598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4730), 31, + ACTIONS(4711), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -275076,41 +276630,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [59220] = 3, + [59576] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 20, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5018), 1, + anon_sym_EQ, + ACTIONS(5028), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5030), 1, + anon_sym_AMP_AMP, + ACTIONS(5032), 1, + anon_sym_PIPE, + ACTIONS(5036), 1, + anon_sym_AMP, + ACTIONS(5042), 1, + anon_sym_GT_EQ, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5050), 1, + anon_sym_or, + ACTIONS(5052), 1, + anon_sym_and, + ACTIONS(5054), 1, + anon_sym_bitor, + ACTIONS(5056), 1, + anon_sym_bitand, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5024), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5034), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5044), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5058), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5038), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5040), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3691), 32, + ACTIONS(5016), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -275125,49 +276706,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [59280] = 3, + [59678] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 20, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(4873), 1, + anon_sym_EQ, + ACTIONS(5028), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5030), 1, + anon_sym_AMP_AMP, + ACTIONS(5032), 1, + anon_sym_PIPE, + ACTIONS(5036), 1, + anon_sym_AMP, + ACTIONS(5042), 1, + anon_sym_GT_EQ, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5050), 1, + anon_sym_or, + ACTIONS(5052), 1, + anon_sym_and, + ACTIONS(5054), 1, + anon_sym_bitor, + ACTIONS(5056), 1, + anon_sym_bitand, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5024), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5034), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5044), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5058), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5038), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5040), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3691), 32, + ACTIONS(4871), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -275182,24 +276784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [59340] = 6, + [59780] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4637), 1, + ACTIONS(4653), 1, sym_auto, - ACTIONS(4639), 1, + ACTIONS(4655), 1, anon_sym_decltype, - STATE(2845), 1, + STATE(2842), 1, sym_decltype_auto, - ACTIONS(4225), 16, + ACTIONS(4338), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275216,7 +276812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4223), 33, + ACTIONS(4336), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -275250,10 +276846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [59406] = 3, + [59846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 20, + ACTIONS(4713), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275274,7 +276870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3691), 32, + ACTIONS(4711), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -275307,227 +276903,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [59466] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4998), 1, - anon_sym_EQ, - ACTIONS(5026), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_AMP_AMP, - ACTIONS(5030), 1, - anon_sym_PIPE, - ACTIONS(5034), 1, - anon_sym_AMP, - ACTIONS(5040), 1, - anon_sym_GT_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5046), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5048), 1, - anon_sym_or, - ACTIONS(5050), 1, - anon_sym_and, - ACTIONS(5052), 1, - anon_sym_bitor, - ACTIONS(5054), 1, - anon_sym_bitand, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5022), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5032), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5056), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5024), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5036), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5038), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4996), 19, - 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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59568] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4928), 1, - anon_sym_EQ, - ACTIONS(5026), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_AMP_AMP, - ACTIONS(5030), 1, - anon_sym_PIPE, - ACTIONS(5034), 1, - anon_sym_AMP, - ACTIONS(5040), 1, - anon_sym_GT_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5046), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5048), 1, - anon_sym_or, - ACTIONS(5050), 1, - anon_sym_and, - ACTIONS(5052), 1, - anon_sym_bitor, - ACTIONS(5054), 1, - anon_sym_bitand, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5022), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5032), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5056), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5024), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5036), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5038), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4926), 19, - 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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59670] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4732), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(4730), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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, - [59730] = 5, + [59906] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5072), 1, anon_sym_LT, - STATE(2729), 1, + STATE(2733), 1, sym_template_argument_list, - ACTIONS(4905), 18, + ACTIONS(4887), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275546,7 +276929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4903), 32, + ACTIONS(4885), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -275579,70 +276962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [59794] = 4, + [59970] = 4, ACTIONS(3), 1, sym_comment, - STATE(2887), 1, - sym_enumerator_list, - ACTIONS(4229), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4227), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59856] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, + ACTIONS(4120), 1, anon_sym_COLON_COLON, - ACTIONS(4203), 11, + ACTIONS(4342), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -275654,7 +276979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_COLON, anon_sym_DOT, - ACTIONS(4201), 40, + ACTIONS(4340), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -275695,18 +277020,76 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [59918] = 7, + [60032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + STATE(2908), 1, + sym_enumerator_list, + ACTIONS(4346), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4344), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60094] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(3534), 1, + ACTIONS(3469), 1, anon_sym_LBRACE, ACTIONS(5075), 1, anon_sym_LT, - STATE(2828), 1, + STATE(2859), 1, sym_template_argument_list, - ACTIONS(3518), 19, + ACTIONS(3457), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275726,7 +277109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3510), 29, + ACTIONS(3462), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -275756,10 +277139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [59986] = 3, + [60162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 20, + ACTIONS(4667), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275780,7 +277163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4629), 32, + ACTIONS(4665), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -275813,22 +277196,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [60046] = 8, + [60222] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(5044), 1, + ACTIONS(5046), 1, anon_sym_LBRACK, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, - ACTIONS(5056), 2, + ACTIONS(5058), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4960), 17, + ACTIONS(4954), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275846,7 +277229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4958), 28, + ACTIONS(4952), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -275875,32 +277258,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [60116] = 11, + [60292] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(5044), 1, + ACTIONS(5046), 1, anon_sym_LBRACK, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, - ACTIONS(5022), 2, + ACTIONS(5024), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5042), 2, + ACTIONS(5044), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5056), 2, + ACTIONS(5058), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5024), 3, + ACTIONS(5026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4964), 10, + ACTIONS(4936), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -275911,7 +277294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4962), 28, + ACTIONS(4934), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -275940,12 +277323,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [60192] = 4, + [60368] = 4, ACTIONS(3), 1, sym_comment, - STATE(2914), 1, + STATE(2931), 1, sym_enumerator_list, - ACTIONS(4197), 16, + ACTIONS(4239), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275962,7 +277345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4195), 35, + ACTIONS(4237), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -275998,29 +277381,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [60254] = 10, + [60430] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(5044), 1, + ACTIONS(5046), 1, anon_sym_LBRACK, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, - ACTIONS(5022), 2, + ACTIONS(5024), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5056), 2, + ACTIONS(5058), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5024), 3, + ACTIONS(5026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4964), 12, + ACTIONS(4936), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -276033,7 +277416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4962), 28, + ACTIONS(4934), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -276062,34 +277445,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [60328] = 12, + [60504] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, anon_sym_LT_EQ_GT, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, - ACTIONS(5022), 2, + ACTIONS(5024), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5042), 2, + ACTIONS(5044), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5056), 2, + ACTIONS(5058), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5024), 3, + ACTIONS(5026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4964), 10, + ACTIONS(4936), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -276100,7 +277483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4962), 27, + ACTIONS(4934), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -276128,40 +277511,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [60406] = 14, + [60582] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(5040), 1, + ACTIONS(5042), 1, anon_sym_GT_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, anon_sym_LT_EQ_GT, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, - ACTIONS(5022), 2, + ACTIONS(5024), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5042), 2, + ACTIONS(5044), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5056), 2, + ACTIONS(5058), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5024), 3, + ACTIONS(5026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5040), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60664] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5042), 1, + anon_sym_GT_EQ, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, + anon_sym_LT_EQ_GT, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5024), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5044), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5058), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(5038), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5040), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4964), 7, + ACTIONS(4936), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -276169,14 +277624,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4962), 26, + ACTIONS(4934), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -276193,55 +277646,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor_eq, anon_sym_bitor, anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [60488] = 15, + [60748] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(5040), 1, + ACTIONS(5036), 1, + anon_sym_AMP, + ACTIONS(5042), 1, anon_sym_GT_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, anon_sym_LT_EQ_GT, - STATE(2849), 1, + ACTIONS(5056), 1, + anon_sym_bitand, + STATE(2851), 1, sym_argument_list, - ACTIONS(5022), 2, + ACTIONS(5024), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5042), 2, + ACTIONS(5044), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5056), 2, + ACTIONS(5058), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5024), 3, + ACTIONS(5026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5036), 3, + ACTIONS(5038), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5038), 3, + ACTIONS(5040), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4964), 7, + ACTIONS(4936), 6, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4962), 23, + ACTIONS(4934), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -276262,58 +277717,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_bitor, - anon_sym_bitand, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [60572] = 17, + [60836] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(5034), 1, + ACTIONS(5036), 1, anon_sym_AMP, - ACTIONS(5040), 1, + ACTIONS(5042), 1, anon_sym_GT_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5056), 1, + anon_sym_bitand, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5024), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5034), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5044), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5058), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5038), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5040), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(4934), 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60926] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5032), 1, + anon_sym_PIPE, + ACTIONS(5036), 1, + anon_sym_AMP, + ACTIONS(5042), 1, + anon_sym_GT_EQ, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, anon_sym_LT_EQ_GT, ACTIONS(5054), 1, + anon_sym_bitor, + ACTIONS(5056), 1, anon_sym_bitand, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, - ACTIONS(5022), 2, + ACTIONS(5024), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5042), 2, + ACTIONS(5034), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5044), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5056), 2, + ACTIONS(5058), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5024), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5036), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5038), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 6, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4936), 3, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - ACTIONS(4962), 22, + ACTIONS(5026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5038), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5040), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -276333,139 +277863,68 @@ 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_DOT_STAR, anon_sym_DASH_GT_STAR, - [60660] = 18, + [61020] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5034), 1, - anon_sym_AMP, - ACTIONS(5040), 1, - anon_sym_GT_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5046), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5054), 1, - anon_sym_bitand, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5022), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5032), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5056), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5024), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5036), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5038), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 4, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(4962), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60750] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, ACTIONS(5030), 1, + anon_sym_AMP_AMP, + ACTIONS(5032), 1, anon_sym_PIPE, - ACTIONS(5034), 1, + ACTIONS(5036), 1, anon_sym_AMP, - ACTIONS(5040), 1, + ACTIONS(5042), 1, anon_sym_GT_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, anon_sym_LT_EQ_GT, ACTIONS(5052), 1, - anon_sym_bitor, + anon_sym_and, ACTIONS(5054), 1, + anon_sym_bitor, + ACTIONS(5056), 1, anon_sym_bitand, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, - ACTIONS(5022), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5032), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5056), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4964), 3, + ACTIONS(4936), 2, anon_sym_EQ, anon_sym_or, - anon_sym_and, - ACTIONS(5024), 3, + ACTIONS(5024), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5034), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5044), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5058), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5036), 3, + ACTIONS(5038), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5038), 3, + ACTIONS(5040), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4962), 21, + ACTIONS(4934), 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, @@ -276482,98 +277941,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [60844] = 22, + [61118] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(5028), 1, - anon_sym_AMP_AMP, - ACTIONS(5030), 1, - anon_sym_PIPE, - ACTIONS(5034), 1, - anon_sym_AMP, - ACTIONS(5040), 1, - anon_sym_GT_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, ACTIONS(5046), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5050), 1, - anon_sym_and, - ACTIONS(5052), 1, - anon_sym_bitor, - ACTIONS(5054), 1, - anon_sym_bitand, - STATE(2849), 1, - sym_argument_list, - ACTIONS(4964), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(5022), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5032), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5056), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5024), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5036), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5038), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60942] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, anon_sym_LBRACK, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, - ACTIONS(5056), 2, + ACTIONS(5058), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4964), 17, + ACTIONS(4936), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -276591,7 +277974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4962), 28, + ACTIONS(4934), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -276620,26 +278003,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [61012] = 9, + [61188] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(5044), 1, + ACTIONS(5046), 1, anon_sym_LBRACK, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, - ACTIONS(5056), 2, + ACTIONS(5058), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5024), 3, + ACTIONS(5026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4964), 14, + ACTIONS(4936), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -276654,7 +278037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4962), 28, + ACTIONS(4934), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -276683,10 +278066,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [61084] = 3, + [61260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 19, + ACTIONS(4946), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -276706,7 +278089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2547), 32, + ACTIONS(4944), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -276739,7 +278122,1127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [61143] = 3, + [61319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4595), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4593), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4575), 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(4573), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4595), 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(4593), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4599), 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(4597), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 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(4449), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3457), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3462), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2453), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4507), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4505), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4475), 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(4473), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 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(4529), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4583), 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(4581), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4350), 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(4348), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4713), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4711), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4551), 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(4549), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4511), 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(4509), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4491), 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(4489), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 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(3722), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [62322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 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(4477), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4467), 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(4465), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 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(4453), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62499] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4447), 10, @@ -276795,10 +279298,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [61202] = 3, + [62558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4417), 10, + ACTIONS(4431), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -276809,7 +279312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4415), 41, + ACTIONS(4429), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -276851,10 +279354,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [61261] = 3, + [62617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4421), 10, + ACTIONS(4407), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -276865,7 +279368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4419), 41, + ACTIONS(4405), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -276907,10 +279410,125 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [61320] = 3, + [62676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 19, + ACTIONS(4403), 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(4401), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62735] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_LBRACE, + ACTIONS(4649), 1, + anon_sym_LPAREN2, + STATE(3112), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4495), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4493), 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, + [62800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -276930,7 +279548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3510), 32, + ACTIONS(4928), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -276963,10 +279581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [61379] = 3, + [62859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4652), 19, + ACTIONS(4645), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -276986,7 +279604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4650), 32, + ACTIONS(4640), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -277019,66 +279637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [61438] = 3, + [62918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 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(4518), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [61497] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3518), 19, + ACTIONS(4719), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -277098,7 +279660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3510), 32, + ACTIONS(4717), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -277131,10 +279693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [61556] = 3, + [62977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 19, + ACTIONS(4071), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -277154,7 +279716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4992), 32, + ACTIONS(4073), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -277187,458 +279749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [61615] = 3, + [63036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4548), 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(4546), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [61674] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4552), 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(4550), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [61733] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4556), 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(4554), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [61792] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4560), 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(4558), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [61851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4512), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4510), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4568), 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(4566), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [61969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4580), 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(4578), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [62028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4584), 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(4582), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [62087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 19, + ACTIONS(3544), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -277658,7 +279772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3691), 32, + ACTIONS(3549), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -277691,297 +279805,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [62146] = 3, + [63095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4588), 10, + ACTIONS(4950), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4586), 41, + anon_sym_DASH_GT, + ACTIONS(4948), 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_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [62205] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 10, + ACTIONS(4130), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4590), 41, + anon_sym_DASH_GT, + ACTIONS(4132), 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_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [62264] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 10, + ACTIONS(3544), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4594), 41, + anon_sym_DASH_GT, + ACTIONS(3549), 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_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [62323] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63272] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4246), 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(4244), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + ACTIONS(1837), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [62382] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4608), 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(4606), 41, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4649), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [62441] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_LBRACE, - ACTIONS(4633), 1, - anon_sym_LPAREN2, - STATE(3133), 2, + STATE(3114), 2, sym_argument_list, sym_initializer_list, - ACTIONS(4524), 16, + ACTIONS(4399), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -277998,7 +280000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4522), 31, + ACTIONS(4397), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -278030,10 +280032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [62506] = 3, + [63337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 19, + ACTIONS(3544), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -278053,7 +280055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3691), 32, + ACTIONS(3549), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -278086,517 +280088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [62565] = 3, + [63396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4667), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4665), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62624] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4972), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4970), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5015), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5013), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62742] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3691), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4170), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4172), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3691), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62919] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_LBRACE, - ACTIONS(4633), 1, - anon_sym_LPAREN2, - STATE(3131), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4564), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4562), 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, - [62984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4189), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4191), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3691), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4482), 10, + ACTIONS(4629), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -278607,7 +280102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4480), 41, + ACTIONS(4627), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -278649,10 +280144,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [63161] = 3, + [63455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4490), 10, + ACTIONS(4606), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -278663,7 +280158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4488), 41, + ACTIONS(4604), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -278705,7 +280200,1127 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [63220] = 3, + [63514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4391), 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(4389), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4622), 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(4620), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4364), 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(4362), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63691] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4591), 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(4589), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4379), 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(4377), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4387), 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(4385), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3549), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4507), 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(4505), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 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(4517), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4587), 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(4585), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4354), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [64163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3549), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [64222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4415), 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(4413), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 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(4417), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4139), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [64399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 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(4421), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4149), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [64517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 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(4425), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 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(4433), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4439), 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(4437), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64694] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4443), 10, @@ -278761,10 +281376,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [63279] = 3, + [64753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 10, + ACTIONS(4459), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -278775,7 +281390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4464), 41, + ACTIONS(4457), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -278817,10 +281432,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [63338] = 3, + [64812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 10, + ACTIONS(4463), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -278831,7 +281446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4472), 41, + ACTIONS(4461), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -278873,10 +281488,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [63397] = 3, + [64871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4409), 10, + ACTIONS(4471), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -278887,7 +281502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4407), 41, + ACTIONS(4469), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -278929,10 +281544,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [63456] = 3, + [64930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4405), 10, + ACTIONS(4483), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -278943,7 +281558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4403), 41, + ACTIONS(4481), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -278985,10 +281600,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [63515] = 3, + [64989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4401), 10, + ACTIONS(4499), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -278999,7 +281614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4399), 41, + ACTIONS(4497), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279041,10 +281656,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [63574] = 3, + [65048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4397), 10, + ACTIONS(4503), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -279055,7 +281670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4395), 41, + ACTIONS(4501), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279097,514 +281712,69 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [63633] = 3, + [65107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4393), 10, + ACTIONS(3899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4631), 1, + anon_sym_LPAREN2, + ACTIONS(4637), 1, + anon_sym_LBRACK, + ACTIONS(3457), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4391), 41, + ACTIONS(3462), 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_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [63692] = 3, + [65172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 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(4387), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [63751] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4385), 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(4383), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [63810] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4544), 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(4542), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [63869] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 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(4316), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [63928] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4314), 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(4312), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [63987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4302), 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(4300), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [64046] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 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(4494), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [64105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4536), 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(4534), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [64164] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4099), 19, + ACTIONS(4958), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -279624,7 +281794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4101), 32, + ACTIONS(4956), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279657,577 +281827,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [64223] = 3, + [65231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4572), 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(4570), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + ACTIONS(1837), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [64282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4103), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4105), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4649), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [64341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4576), 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(4574), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [64400] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4612), 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(4610), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [64459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4616), 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(4614), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [64518] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4374), 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(4372), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [64577] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4381), 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(4379), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [64636] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4500), 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(4498), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [64695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4478), 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(4476), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [64754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4486), 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(4484), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [64813] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_LBRACE, - ACTIONS(4633), 1, - anon_sym_LPAREN2, - STATE(3127), 2, + STATE(3125), 2, sym_argument_list, sym_initializer_list, - ACTIONS(4620), 16, + ACTIONS(4487), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280244,7 +281854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4618), 31, + ACTIONS(4485), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280276,12 +281886,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [64878] = 5, + [65296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 1, + ACTIONS(3511), 1, anon_sym_EQ, - ACTIONS(3544), 13, + ACTIONS(3515), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -280295,7 +281905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3518), 17, + ACTIONS(3457), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280313,7 +281923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3510), 20, + ACTIONS(3462), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280334,66 +281944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [64941] = 3, + [65359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4258), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4256), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4956), 19, + ACTIONS(4972), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280413,7 +281967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4954), 32, + ACTIONS(4970), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280446,18 +282000,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65059] = 8, + [65418] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 1, + ACTIONS(3511), 1, anon_sym_EQ, - ACTIONS(3885), 1, + ACTIONS(3899), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4641), 1, + ACTIONS(4631), 1, anon_sym_LPAREN2, - ACTIONS(4647), 1, + ACTIONS(4637), 1, anon_sym_LBRACK, - ACTIONS(3544), 13, + ACTIONS(3515), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -280471,25 +282025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3510), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(3518), 17, + ACTIONS(3457), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280507,12 +282043,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - [65128] = 50, + ACTIONS(3462), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [65487] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(5044), 1, + ACTIONS(5046), 1, anon_sym_LBRACK, ACTIONS(5078), 1, anon_sym_DOT_DOT_DOT, @@ -280598,86 +282152,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, ACTIONS(5162), 1, anon_sym_DASH_GT_STAR, - STATE(1523), 1, + STATE(1683), 1, sym__binary_fold_operator, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, STATE(7216), 1, sym__fold_operator, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(5158), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [65281] = 3, + [65640] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4838), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65340] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(3534), 1, + ACTIONS(3469), 1, anon_sym_LBRACE, - ACTIONS(4723), 1, + ACTIONS(4689), 1, anon_sym_LT, ACTIONS(5164), 1, anon_sym_EQ, - STATE(3323), 1, + STATE(3337), 1, sym_template_argument_list, ACTIONS(5166), 13, anon_sym_STAR_EQ, @@ -280693,7 +282191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3510), 16, + ACTIONS(3462), 16, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -280710,7 +282208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3518), 17, + ACTIONS(3457), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280728,12 +282226,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - [65411] = 50, + [65711] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(3899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4631), 1, anon_sym_LPAREN2, - ACTIONS(5044), 1, + ACTIONS(4637), 1, + anon_sym_LBRACK, + ACTIONS(3457), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3462), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [65776] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, anon_sym_LBRACK, ACTIONS(5078), 1, anon_sym_DOT_DOT_DOT, @@ -280819,81 +282376,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(5170), 1, anon_sym_RPAREN, - STATE(1523), 1, + STATE(1683), 1, sym__binary_fold_operator, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, STATE(7216), 1, sym__fold_operator, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(5158), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [65564] = 6, + [65929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3885), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4641), 1, - anon_sym_LPAREN2, - ACTIONS(4647), 1, - anon_sym_LBRACK, - ACTIONS(3518), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3510), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [65629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4762), 25, + ACTIONS(4661), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_const, @@ -280919,7 +282417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - ACTIONS(4764), 26, + ACTIONS(4663), 26, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -280946,12 +282444,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [65688] = 4, + [65988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 1, + ACTIONS(4713), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(4711), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_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_DASH_GT, + [66047] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, anon_sym_COLON_COLON, - ACTIONS(4094), 13, + ACTIONS(4118), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -280965,7 +282519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_COLON, anon_sym_DOT, - ACTIONS(4092), 37, + ACTIONS(4116), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -281003,16 +282557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [65749] = 6, + [66108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3885), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4641), 1, - anon_sym_LPAREN2, - ACTIONS(4647), 1, - anon_sym_LBRACK, - ACTIONS(3518), 18, + ACTIONS(4618), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -281027,76 +282575,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(3510), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [65814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4732), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(4730), 32, + ACTIONS(4616), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -281108,20 +282600,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_DASH_GT, - [65873] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 10, + ACTIONS(4342), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -281132,7 +282627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4201), 41, + ACTIONS(4340), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281174,10 +282669,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [65932] = 3, + [66226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4932), 19, + ACTIONS(4883), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -281197,7 +282692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4930), 32, + ACTIONS(4881), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281230,12 +282725,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65991] = 50, + [66285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4571), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4569), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5044), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66344] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, anon_sym_LBRACK, ACTIONS(5078), 1, anon_sym_DOT_DOT_DOT, @@ -281321,24 +282872,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(5172), 1, anon_sym_RPAREN, - STATE(1523), 1, + STATE(1683), 1, sym__binary_fold_operator, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, STATE(7216), 1, sym__fold_operator, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(5158), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [66144] = 50, + [66497] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(5044), 1, + ACTIONS(5046), 1, anon_sym_LBRACK, ACTIONS(5078), 1, anon_sym_DOT_DOT_DOT, @@ -281424,24 +282975,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(5174), 1, anon_sym_RPAREN, - STATE(1523), 1, + STATE(1683), 1, sym__binary_fold_operator, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, STATE(7216), 1, sym__fold_operator, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(5158), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [66297] = 50, + [66650] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(5044), 1, + ACTIONS(5046), 1, anon_sym_LBRACK, ACTIONS(5078), 1, anon_sym_DOT_DOT_DOT, @@ -281527,24 +283078,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(5176), 1, anon_sym_RPAREN, - STATE(1523), 1, + STATE(1683), 1, sym__binary_fold_operator, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, STATE(7216), 1, sym__fold_operator, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(5158), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [66450] = 50, + [66803] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(5044), 1, + ACTIONS(5046), 1, anon_sym_LBRACK, ACTIONS(5078), 1, anon_sym_DOT_DOT_DOT, @@ -281630,24 +283181,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(5178), 1, anon_sym_RPAREN, - STATE(1523), 1, + STATE(1683), 1, sym__binary_fold_operator, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, STATE(7216), 1, sym__fold_operator, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(5158), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [66603] = 50, + [66956] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(5044), 1, + ACTIONS(5046), 1, anon_sym_LBRACK, ACTIONS(5078), 1, anon_sym_DOT_DOT_DOT, @@ -281733,24 +283284,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(5180), 1, anon_sym_RPAREN, - STATE(1523), 1, + STATE(1683), 1, sym__binary_fold_operator, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, STATE(7216), 1, sym__fold_operator, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(5158), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [66756] = 50, + [67109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(5184), 6, anon_sym_LPAREN2, - ACTIONS(5044), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5182), 45, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [67168] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, anon_sym_LBRACK, ACTIONS(5078), 1, anon_sym_DOT_DOT_DOT, @@ -281834,335 +283441,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT_STAR, ACTIONS(5168), 1, anon_sym_COMMA, - ACTIONS(5182), 1, - anon_sym_RPAREN, - STATE(1523), 1, - sym__binary_fold_operator, - STATE(2849), 1, - sym_argument_list, - STATE(7216), 1, - sym__fold_operator, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [66909] = 50, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5078), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5084), 1, - anon_sym_DASH, - ACTIONS(5086), 1, - anon_sym_PLUS, - ACTIONS(5088), 1, - anon_sym_STAR, - ACTIONS(5090), 1, - anon_sym_SLASH, - ACTIONS(5092), 1, - anon_sym_PERCENT, - ACTIONS(5094), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5096), 1, - anon_sym_AMP_AMP, - ACTIONS(5098), 1, - anon_sym_PIPE, - ACTIONS(5100), 1, - anon_sym_CARET, - ACTIONS(5102), 1, - anon_sym_AMP, - ACTIONS(5104), 1, - anon_sym_EQ_EQ, - ACTIONS(5106), 1, - anon_sym_BANG_EQ, - ACTIONS(5108), 1, - anon_sym_GT, - ACTIONS(5110), 1, - anon_sym_GT_EQ, - ACTIONS(5112), 1, - anon_sym_LT_EQ, - ACTIONS(5114), 1, - anon_sym_LT, - ACTIONS(5116), 1, - anon_sym_LT_LT, - ACTIONS(5118), 1, - anon_sym_GT_GT, - ACTIONS(5120), 1, - anon_sym_EQ, - ACTIONS(5122), 1, - anon_sym_QMARK, - ACTIONS(5124), 1, - anon_sym_STAR_EQ, - ACTIONS(5126), 1, - anon_sym_SLASH_EQ, - ACTIONS(5128), 1, - anon_sym_PERCENT_EQ, - ACTIONS(5130), 1, - anon_sym_PLUS_EQ, - ACTIONS(5132), 1, - anon_sym_DASH_EQ, - ACTIONS(5134), 1, - anon_sym_LT_LT_EQ, - ACTIONS(5136), 1, - anon_sym_GT_GT_EQ, - ACTIONS(5138), 1, - anon_sym_AMP_EQ, - ACTIONS(5140), 1, - anon_sym_CARET_EQ, - ACTIONS(5142), 1, - anon_sym_PIPE_EQ, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5146), 1, - anon_sym_or, - ACTIONS(5148), 1, - anon_sym_and, - ACTIONS(5150), 1, - anon_sym_bitor, - ACTIONS(5152), 1, - anon_sym_xor, - ACTIONS(5154), 1, - anon_sym_bitand, - ACTIONS(5156), 1, - anon_sym_not_eq, - ACTIONS(5160), 1, - anon_sym_DOT_STAR, - ACTIONS(5162), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(5168), 1, - anon_sym_COMMA, - ACTIONS(5184), 1, - anon_sym_RPAREN, - STATE(1523), 1, - sym__binary_fold_operator, - STATE(2849), 1, - sym_argument_list, - STATE(7216), 1, - sym__fold_operator, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [67062] = 50, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5078), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5084), 1, - anon_sym_DASH, - ACTIONS(5086), 1, - anon_sym_PLUS, - ACTIONS(5088), 1, - anon_sym_STAR, - ACTIONS(5090), 1, - anon_sym_SLASH, - ACTIONS(5092), 1, - anon_sym_PERCENT, - ACTIONS(5094), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5096), 1, - anon_sym_AMP_AMP, - ACTIONS(5098), 1, - anon_sym_PIPE, - ACTIONS(5100), 1, - anon_sym_CARET, - ACTIONS(5102), 1, - anon_sym_AMP, - ACTIONS(5104), 1, - anon_sym_EQ_EQ, - ACTIONS(5106), 1, - anon_sym_BANG_EQ, - ACTIONS(5108), 1, - anon_sym_GT, - ACTIONS(5110), 1, - anon_sym_GT_EQ, - ACTIONS(5112), 1, - anon_sym_LT_EQ, - ACTIONS(5114), 1, - anon_sym_LT, - ACTIONS(5116), 1, - anon_sym_LT_LT, - ACTIONS(5118), 1, - anon_sym_GT_GT, - ACTIONS(5120), 1, - anon_sym_EQ, - ACTIONS(5122), 1, - anon_sym_QMARK, - ACTIONS(5124), 1, - anon_sym_STAR_EQ, - ACTIONS(5126), 1, - anon_sym_SLASH_EQ, - ACTIONS(5128), 1, - anon_sym_PERCENT_EQ, - ACTIONS(5130), 1, - anon_sym_PLUS_EQ, - ACTIONS(5132), 1, - anon_sym_DASH_EQ, - ACTIONS(5134), 1, - anon_sym_LT_LT_EQ, - ACTIONS(5136), 1, - anon_sym_GT_GT_EQ, - ACTIONS(5138), 1, - anon_sym_AMP_EQ, - ACTIONS(5140), 1, - anon_sym_CARET_EQ, - ACTIONS(5142), 1, - anon_sym_PIPE_EQ, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5146), 1, - anon_sym_or, - ACTIONS(5148), 1, - anon_sym_and, - ACTIONS(5150), 1, - anon_sym_bitor, - ACTIONS(5152), 1, - anon_sym_xor, - ACTIONS(5154), 1, - anon_sym_bitand, - ACTIONS(5156), 1, - anon_sym_not_eq, - ACTIONS(5160), 1, - anon_sym_DOT_STAR, - ACTIONS(5162), 1, - anon_sym_DASH_GT_STAR, ACTIONS(5186), 1, anon_sym_RPAREN, - STATE(1523), 1, + STATE(1683), 1, sym__binary_fold_operator, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, STATE(7216), 1, sym__fold_operator, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(5158), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [67215] = 50, + [67321] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4151), 1, anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5078), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5084), 1, - anon_sym_DASH, - ACTIONS(5086), 1, - anon_sym_PLUS, - ACTIONS(5088), 1, - anon_sym_STAR, - ACTIONS(5090), 1, - anon_sym_SLASH, - ACTIONS(5092), 1, - anon_sym_PERCENT, - ACTIONS(5094), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5096), 1, - anon_sym_AMP_AMP, - ACTIONS(5098), 1, - anon_sym_PIPE, - ACTIONS(5100), 1, - anon_sym_CARET, - ACTIONS(5102), 1, - anon_sym_AMP, - ACTIONS(5104), 1, - anon_sym_EQ_EQ, - ACTIONS(5106), 1, - anon_sym_BANG_EQ, - ACTIONS(5108), 1, - anon_sym_GT, - ACTIONS(5110), 1, - anon_sym_GT_EQ, - ACTIONS(5112), 1, - anon_sym_LT_EQ, - ACTIONS(5114), 1, - anon_sym_LT, - ACTIONS(5116), 1, - anon_sym_LT_LT, - ACTIONS(5118), 1, - anon_sym_GT_GT, - ACTIONS(5120), 1, - anon_sym_EQ, - ACTIONS(5122), 1, - anon_sym_QMARK, - ACTIONS(5124), 1, - anon_sym_STAR_EQ, - ACTIONS(5126), 1, - anon_sym_SLASH_EQ, - ACTIONS(5128), 1, - anon_sym_PERCENT_EQ, - ACTIONS(5130), 1, - anon_sym_PLUS_EQ, - ACTIONS(5132), 1, - anon_sym_DASH_EQ, - ACTIONS(5134), 1, - anon_sym_LT_LT_EQ, - ACTIONS(5136), 1, - anon_sym_GT_GT_EQ, - ACTIONS(5138), 1, - anon_sym_AMP_EQ, - ACTIONS(5140), 1, - anon_sym_CARET_EQ, - ACTIONS(5142), 1, - anon_sym_PIPE_EQ, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5146), 1, - anon_sym_or, - ACTIONS(5148), 1, - anon_sym_and, - ACTIONS(5150), 1, - anon_sym_bitor, - ACTIONS(5152), 1, - anon_sym_xor, - ACTIONS(5154), 1, - anon_sym_bitand, - ACTIONS(5156), 1, - anon_sym_not_eq, - ACTIONS(5160), 1, - anon_sym_DOT_STAR, - ACTIONS(5162), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(5188), 1, - anon_sym_RPAREN, - STATE(1523), 1, - sym__binary_fold_operator, - STATE(2849), 1, - sym_argument_list, - STATE(7216), 1, - sym__fold_operator, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [67368] = 50, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, + ACTIONS(5046), 1, anon_sym_LBRACK, ACTIONS(5078), 1, anon_sym_DOT_DOT_DOT, @@ -282246,24 +283544,1008 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT_STAR, ACTIONS(5168), 1, anon_sym_COMMA, - ACTIONS(5190), 1, + ACTIONS(5188), 1, anon_sym_RPAREN, - STATE(1523), 1, + STATE(1683), 1, sym__binary_fold_operator, - STATE(2849), 1, + STATE(2851), 1, sym_argument_list, STATE(7216), 1, sym__fold_operator, - ACTIONS(5058), 2, + ACTIONS(5060), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(5158), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [67521] = 3, + [67474] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 19, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5084), 1, + anon_sym_DASH, + ACTIONS(5086), 1, + anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_STAR, + ACTIONS(5090), 1, + anon_sym_SLASH, + ACTIONS(5092), 1, + anon_sym_PERCENT, + ACTIONS(5094), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5096), 1, + anon_sym_AMP_AMP, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5100), 1, + anon_sym_CARET, + ACTIONS(5102), 1, + anon_sym_AMP, + ACTIONS(5104), 1, + anon_sym_EQ_EQ, + ACTIONS(5106), 1, + anon_sym_BANG_EQ, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5110), 1, + anon_sym_GT_EQ, + ACTIONS(5112), 1, + anon_sym_LT_EQ, + ACTIONS(5114), 1, + anon_sym_LT, + ACTIONS(5116), 1, + anon_sym_LT_LT, + ACTIONS(5118), 1, + anon_sym_GT_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5124), 1, + anon_sym_STAR_EQ, + ACTIONS(5126), 1, + anon_sym_SLASH_EQ, + ACTIONS(5128), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5130), 1, + anon_sym_PLUS_EQ, + ACTIONS(5132), 1, + anon_sym_DASH_EQ, + ACTIONS(5134), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5136), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5138), 1, + anon_sym_AMP_EQ, + ACTIONS(5140), 1, + anon_sym_CARET_EQ, + ACTIONS(5142), 1, + anon_sym_PIPE_EQ, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5146), 1, + anon_sym_or, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5156), 1, + anon_sym_not_eq, + ACTIONS(5160), 1, + anon_sym_DOT_STAR, + ACTIONS(5162), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5190), 1, + anon_sym_RPAREN, + STATE(1683), 1, + sym__binary_fold_operator, + STATE(2851), 1, + sym_argument_list, + STATE(7216), 1, + sym__fold_operator, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [67627] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5084), 1, + anon_sym_DASH, + ACTIONS(5086), 1, + anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_STAR, + ACTIONS(5090), 1, + anon_sym_SLASH, + ACTIONS(5092), 1, + anon_sym_PERCENT, + ACTIONS(5094), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5096), 1, + anon_sym_AMP_AMP, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5100), 1, + anon_sym_CARET, + ACTIONS(5102), 1, + anon_sym_AMP, + ACTIONS(5104), 1, + anon_sym_EQ_EQ, + ACTIONS(5106), 1, + anon_sym_BANG_EQ, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5110), 1, + anon_sym_GT_EQ, + ACTIONS(5112), 1, + anon_sym_LT_EQ, + ACTIONS(5114), 1, + anon_sym_LT, + ACTIONS(5116), 1, + anon_sym_LT_LT, + ACTIONS(5118), 1, + anon_sym_GT_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5124), 1, + anon_sym_STAR_EQ, + ACTIONS(5126), 1, + anon_sym_SLASH_EQ, + ACTIONS(5128), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5130), 1, + anon_sym_PLUS_EQ, + ACTIONS(5132), 1, + anon_sym_DASH_EQ, + ACTIONS(5134), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5136), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5138), 1, + anon_sym_AMP_EQ, + ACTIONS(5140), 1, + anon_sym_CARET_EQ, + ACTIONS(5142), 1, + anon_sym_PIPE_EQ, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5146), 1, + anon_sym_or, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5156), 1, + anon_sym_not_eq, + ACTIONS(5160), 1, + anon_sym_DOT_STAR, + ACTIONS(5162), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5192), 1, + anon_sym_RPAREN, + STATE(1683), 1, + sym__binary_fold_operator, + STATE(2851), 1, + sym_argument_list, + STATE(7216), 1, + sym__fold_operator, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [67780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4614), 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(4612), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [67839] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5084), 1, + anon_sym_DASH, + ACTIONS(5086), 1, + anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_STAR, + ACTIONS(5090), 1, + anon_sym_SLASH, + ACTIONS(5092), 1, + anon_sym_PERCENT, + ACTIONS(5094), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5096), 1, + anon_sym_AMP_AMP, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5100), 1, + anon_sym_CARET, + ACTIONS(5102), 1, + anon_sym_AMP, + ACTIONS(5104), 1, + anon_sym_EQ_EQ, + ACTIONS(5106), 1, + anon_sym_BANG_EQ, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5110), 1, + anon_sym_GT_EQ, + ACTIONS(5112), 1, + anon_sym_LT_EQ, + ACTIONS(5114), 1, + anon_sym_LT, + ACTIONS(5116), 1, + anon_sym_LT_LT, + ACTIONS(5118), 1, + anon_sym_GT_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5124), 1, + anon_sym_STAR_EQ, + ACTIONS(5126), 1, + anon_sym_SLASH_EQ, + ACTIONS(5128), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5130), 1, + anon_sym_PLUS_EQ, + ACTIONS(5132), 1, + anon_sym_DASH_EQ, + ACTIONS(5134), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5136), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5138), 1, + anon_sym_AMP_EQ, + ACTIONS(5140), 1, + anon_sym_CARET_EQ, + ACTIONS(5142), 1, + anon_sym_PIPE_EQ, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5146), 1, + anon_sym_or, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5156), 1, + anon_sym_not_eq, + ACTIONS(5160), 1, + anon_sym_DOT_STAR, + ACTIONS(5162), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(5194), 1, + anon_sym_RPAREN, + STATE(1683), 1, + sym__binary_fold_operator, + STATE(2851), 1, + sym_argument_list, + STATE(7216), 1, + sym__fold_operator, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [67992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3578), 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(3576), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [68051] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_LBRACE, + ACTIONS(4649), 1, + anon_sym_LPAREN2, + STATE(3137), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4579), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4577), 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, + [68116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3582), 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(3580), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [68175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3684), 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(3682), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [68234] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4559), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4557), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4990), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3700), 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(3698), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [68411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3611), 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(3609), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [68470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4515), 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(4513), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [68529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4523), 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(4521), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [68588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4527), 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(4525), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [68647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282283,7 +284565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5000), 32, + ACTIONS(4986), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -282316,405 +284598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [67580] = 3, + [68706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4302), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4300), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4314), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4312), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3736), 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(3738), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [67757] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_LBRACE, - ACTIONS(4633), 1, - anon_sym_LPAREN2, - STATE(3121), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4624), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4622), 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, - [67822] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3740), 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(3742), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [67881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3744), 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(3746), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [67940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4504), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4502), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67999] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4413), 10, + ACTIONS(4535), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -282725,7 +284612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4411), 41, + ACTIONS(4533), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282767,10 +284654,124 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [68058] = 3, + [68765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 16, + ACTIONS(4543), 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(4541), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [68824] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5196), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5198), 1, + anon_sym_AMP_AMP, + ACTIONS(4784), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4786), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [68887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4555), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282787,7 +284788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4441), 35, + ACTIONS(4553), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282823,10 +284824,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [68117] = 3, + [68946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 19, + ACTIONS(4547), 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(4545), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [69005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4360), 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(4358), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [69064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282846,7 +284959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4934), 32, + ACTIONS(5012), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282879,10 +284992,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [68176] = 3, + [69123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4338), 10, + ACTIONS(5002), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5000), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -282893,7 +285062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4336), 41, + ACTIONS(4368), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282935,10 +285104,235 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [68235] = 3, + [69241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 10, + ACTIONS(4086), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4088), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4098), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4100), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5200), 1, + anon_sym_AMP_AMP, + ACTIONS(4996), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4994), 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, + [69420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4082), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4084), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69479] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -282949,7 +285343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4332), 41, + ACTIONS(4381), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282991,10 +285385,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [68294] = 3, + [69538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 10, + ACTIONS(4395), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -283005,7 +285399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4328), 41, + ACTIONS(4393), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -283047,10 +285441,459 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [68353] = 3, + [69597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3750), 13, + ACTIONS(3708), 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(3706), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [69656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3692), 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(3690), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [69715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5008), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4587), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4585), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1999), 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(2001), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [69892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2015), 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(2017), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [69951] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4122), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4124), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [70012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4517), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3576), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -283064,7 +285907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_COLON, anon_sym_DOT, - ACTIONS(3752), 38, + ACTIONS(3578), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -283103,10 +285946,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [68412] = 3, + [70130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 10, + ACTIONS(4667), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4665), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4094), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4096), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4092), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 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(3582), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [70366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 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(3684), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [70425] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4122), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4124), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [70486] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4112), 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(4114), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [70545] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4610), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -283117,7 +286353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4324), 41, + ACTIONS(4608), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -283159,49 +286395,49 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [68471] = 3, + [70604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 10, + ACTIONS(4391), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4320), 41, + anon_sym_DASH_GT, + ACTIONS(4389), 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_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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, @@ -283211,14 +286447,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [68530] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3758), 13, + ACTIONS(4768), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4770), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4409), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4978), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4976), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4974), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3698), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -283232,7 +286692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_COLON, anon_sym_DOT, - ACTIONS(3760), 38, + ACTIONS(3700), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -283271,683 +286731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [68589] = 3, + [70958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4278), 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(4276), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [68648] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4282), 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(4280), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [68707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4508), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4506), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4286), 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(4284), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [68825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4139), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4141), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4920), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4918), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68943] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4916), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4914), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4451), 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(4449), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [69061] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4156), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4158), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4174), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4176), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69179] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5192), 1, - anon_sym_AMP_AMP, - ACTIONS(4912), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4910), 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, - [69240] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4151), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69299] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 13, + ACTIONS(3609), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -283961,7 +286748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_COLON, anon_sym_DOT, - ACTIONS(3764), 38, + ACTIONS(3611), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -284000,10 +286787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [69358] = 3, + [71017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 13, + ACTIONS(3706), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -284017,7 +286804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_COLON, anon_sym_DOT, - ACTIONS(3795), 38, + ACTIONS(3708), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -284056,405 +286843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [69417] = 3, + [71076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4871), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3766), 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(3771), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [69535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4071), 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(4069), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [69594] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4088), 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(4086), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [69655] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4088), 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(4086), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [69716] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3771), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3773), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3778), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [69777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2329), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2327), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4385), 16, + ACTIONS(4610), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -284471,7 +286863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4383), 35, + ACTIONS(4608), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -284507,119 +286899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [69895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2335), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69954] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4631), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4629), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70013] = 3, + [71135] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4143), 19, @@ -284675,10 +286955,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [70072] = 3, + [71194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4117), 19, + ACTIONS(3690), 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(3692), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [71253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -284698,7 +287034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4119), 32, + ACTIONS(4844), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -284731,10 +287067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [70131] = 3, + [71312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 16, + ACTIONS(4143), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -284749,9 +287085,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(4387), 35, + ACTIONS(4145), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -284761,7 +287100,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, @@ -284774,6 +287112,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3722), 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(3727), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -284783,14 +287172,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70190] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [71430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 10, + ACTIONS(4411), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -284801,7 +287193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4288), 41, + ACTIONS(4409), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -284843,24 +287235,26 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [70249] = 3, + [71489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4600), 10, + ACTIONS(4114), 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(4598), 41, + ACTIONS(4112), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -284869,14 +287263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -284884,7 +287274,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -284898,809 +287287,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [70308] = 3, + [71548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4393), 16, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4124), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4391), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70367] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4181), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4183), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70426] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4516), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4514), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4732), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4730), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4397), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4395), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4879), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70662] = 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4875), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4604), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4602), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4401), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4399), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4137), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4405), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4403), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70957] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4986), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4984), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71016] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4137), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4409), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4407), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4604), 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_COLON, anon_sym_DOT, - ACTIONS(4602), 41, + ACTIONS(4122), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -285709,14 +287321,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -285724,7 +287331,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -285738,529 +287344,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [71193] = 3, + [71609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 16, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4124), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4411), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4417), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4415), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4421), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4419), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4520), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4518), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4544), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4542), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71488] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4548), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4546), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71547] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4137), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71606] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4552), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4550), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4556), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4554), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71724] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4516), 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_COLON, anon_sym_DOT, - ACTIONS(4514), 41, + ACTIONS(4122), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -286269,14 +287378,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -286284,7 +287388,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -286298,41 +287401,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [71783] = 3, + [71670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4512), 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(4510), 41, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5204), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5202), 45, + anon_sym_AMP, + 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_LBRACK, - anon_sym_RBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -286340,2104 +287441,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, 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_DASH_GT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, anon_sym_requires, - [71842] = 3, + [71729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4508), 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(4506), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + ACTIONS(3727), 2, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [71901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4504), 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(4502), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [71960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4986), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4984), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72019] = 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4842), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4952), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4950), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4203), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4201), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72196] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4560), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4558), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4600), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4598), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72314] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4568), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4566), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4290), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4288), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4580), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4578), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4584), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4582), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72550] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3887), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3518), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3510), 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, - [72611] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4203), 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(4201), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [72670] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4588), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4586), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4834), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4832), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4258), 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(4256), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [72847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4652), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4650), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4113), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4115), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4592), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4590), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4596), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4594), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73083] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4203), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4201), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73142] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4782), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4780), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4246), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4244), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4451), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4449), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73319] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4869), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4867), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4608), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4606), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73437] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4691), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4693), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4482), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4480), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4490), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4488), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4669), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4671), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73673] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4466), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4464), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4316), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73791] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5192), 1, - anon_sym_AMP_AMP, - ACTIONS(5194), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4897), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4895), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4474), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4472), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4494), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73972] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4536), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4534), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [74031] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4294), 1, - anon_sym_LBRACK, - STATE(2953), 1, - sym_new_declarator, - ACTIONS(4656), 20, + ACTIONS(3729), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -288458,7 +287488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4654), 29, + ACTIONS(3734), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -288466,7 +287496,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, anon_sym_SLASH_EQ, @@ -288488,66 +287518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [74094] = 3, + [71790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4572), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4570), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [74153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4746), 19, + ACTIONS(2001), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -288567,7 +287541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4748), 32, + ACTIONS(1999), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -288600,10 +287574,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [74212] = 3, + [71849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4778), 19, + ACTIONS(4143), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -288623,7 +287597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4776), 32, + ACTIONS(4145), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -288656,10 +287630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [74271] = 3, + [71908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4990), 19, + ACTIONS(2017), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -288679,7 +287653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4988), 32, + ACTIONS(2015), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -288712,10 +287686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [74330] = 3, + [71967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4447), 16, + ACTIONS(4387), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -288732,7 +287706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4445), 35, + ACTIONS(4385), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -288768,49 +287742,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [74389] = 3, + [72026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 16, + ACTIONS(4555), 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(4484), 35, + ACTIONS(4553), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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, @@ -288820,109 +287794,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [74448] = 3, + anon_sym_requires, + [72085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4946), 19, + ACTIONS(4559), 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(4944), 32, + ACTIONS(4557), 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [74507] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4478), 16, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4476), 35, - 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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, @@ -288932,53 +287850,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [74566] = 3, + anon_sym_requires, + [72144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4500), 16, + ACTIONS(4571), 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(4498), 35, + ACTIONS(4569), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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, @@ -288988,795 +287906,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [74625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4286), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [74684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4320), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [74743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4326), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4324), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [74802] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4381), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4379), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [74861] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4374), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4372), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [74920] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4282), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4280), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [74979] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4328), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4334), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4332), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4338), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4336), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75156] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4616), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4614), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5000), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75274] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4612), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4610), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4576), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4574), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75392] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4278), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4276), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75451] = 3, + anon_sym_requires, + [72203] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4924), 19, @@ -289832,145 +287966,2675 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [75510] = 24, + [72262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(4920), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4918), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4618), 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(4616), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [72380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4844), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4340), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72498] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4614), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4612), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4379), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4377), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72616] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4591), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4589), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4645), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4640), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4364), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4362), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4622), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4620), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72852] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3901), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3457), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3462), 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, + [72913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4912), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4910), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 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(4340), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [73031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4340), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4078), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4080), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4395), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4393), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 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(4354), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [73267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4537), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4892), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4575), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4573), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4381), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 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(4537), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [73562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4368), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4599), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4597), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4449), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4475), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4473), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4529), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4583), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4581), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4350), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4348), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4551), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4549), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4511), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4509), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4491), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4489), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4477), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4467), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4465), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4453), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4447), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4445), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4854), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4852), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4794), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4792), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4360), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4358), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4431), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4429), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4407), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4405), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4403), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4401), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4707), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4709), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4629), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4627), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4606), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4604), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74919] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4547), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4545), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4102), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4104), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75037] = 5, + ACTIONS(3), 1, + sym_comment, ACTIONS(5200), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5204), 1, - anon_sym_PIPE, - ACTIONS(5208), 1, - anon_sym_AMP, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5220), 1, - anon_sym_or, - ACTIONS(5222), 1, - anon_sym_and, - ACTIONS(5224), 1, - anon_sym_bitor, - ACTIONS(5226), 1, - anon_sym_bitand, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(4889), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5196), 2, + ACTIONS(5206), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4786), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5206), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5210), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5212), 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(4887), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4784), 30, 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, - [75610] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5200), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5202), 1, - anon_sym_AMP_AMP, - ACTIONS(5204), 1, - anon_sym_PIPE, - ACTIONS(5208), 1, - anon_sym_AMP, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5220), 1, - anon_sym_or, - ACTIONS(5222), 1, - anon_sym_and, - ACTIONS(5224), 1, - anon_sym_bitor, - ACTIONS(5226), 1, - anon_sym_bitand, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5234), 1, - anon_sym_DOT_DOT_DOT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(4976), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5196), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5206), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5210), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5212), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4974), 15, - anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289978,59 +290642,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [75712] = 12, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(3457), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3462), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5196), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4964), 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(4962), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290038,6 +290698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -290048,15 +290709,745 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [75788] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 1, + ACTIONS(4415), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4413), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(3059), 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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4543), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4541), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4417), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75336] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5198), 1, + anon_sym_AMP_AMP, + ACTIONS(4994), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4996), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [75397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4421), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4782), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4780), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4425), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4433), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4439), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4437), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4533), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4443), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4441), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4459), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4457), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75869] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4563), 1, + anon_sym_LBRACK, + STATE(2951), 1, sym_new_declarator, - ACTIONS(4656), 16, + ACTIONS(4659), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4657), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [75932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4463), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -290073,7 +291464,971 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4654), 32, + ACTIONS(4461), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4471), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4469), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4483), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4481), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4850), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4848), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4778), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4776), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4497), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4503), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4501), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4527), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4525), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4523), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4521), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76463] = 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), 45, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [76522] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4116), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4118), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [76583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4515), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4513), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4126), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4128), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4986), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4673), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4675), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4122), 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(4124), 44, + anon_sym_AMP, + 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [76878] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 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(4934), 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, + [76952] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4651), 1, + anon_sym_LBRACK, + STATE(3078), 1, + sym_new_declarator, + ACTIONS(4659), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4657), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -290106,416 +292461,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [75850] = 3, + [77014] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3771), 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(3766), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [75908] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3942), 1, - sym_literal_suffix, - ACTIONS(3510), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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_DASH_GT, - anon_sym_GT2, - ACTIONS(3518), 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, - [75968] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4960), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_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(4958), 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, - [76038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3911), 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(3909), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_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_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, - [76096] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(4857), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_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(4855), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_GT2, - [76164] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4968), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_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(4966), 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, - [76234] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5200), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5202), 1, - anon_sym_AMP_AMP, - ACTIONS(5204), 1, - anon_sym_PIPE, - ACTIONS(5208), 1, - anon_sym_AMP, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5220), 1, - anon_sym_or, - ACTIONS(5222), 1, - anon_sym_and, ACTIONS(5224), 1, - anon_sym_bitor, - ACTIONS(5226), 1, - anon_sym_bitand, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(4928), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5196), 2, + anon_sym_LT, + STATE(3026), 1, + sym_template_argument_list, + ACTIONS(4887), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5206), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5210), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5212), 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(4926), 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(4885), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290529,63 +292510,71 @@ 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_DASH_GT, anon_sym_GT2, - [76334] = 3, + [77076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 6, + ACTIONS(3952), 1, + sym_literal_suffix, + ACTIONS(3462), 23, + 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(5236), 44, - anon_sym_AMP, - 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_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [76392] = 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3457), 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, + [77136] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3927), 16, @@ -290640,838 +292629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [76450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3738), 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(3736), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [76508] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5240), 1, - anon_sym_AMP_AMP, - ACTIONS(4910), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4912), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [76568] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3742), 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(3740), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [76626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3746), 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(3744), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [76684] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5200), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5202), 1, - anon_sym_AMP_AMP, - ACTIONS(5204), 1, - anon_sym_PIPE, - ACTIONS(5208), 1, - anon_sym_AMP, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5220), 1, - anon_sym_or, - ACTIONS(5222), 1, - anon_sym_and, - ACTIONS(5224), 1, - anon_sym_bitor, - ACTIONS(5226), 1, - anon_sym_bitand, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(4885), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5196), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5206), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5210), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5212), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4883), 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, - [76784] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3752), 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(3750), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [76842] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3760), 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(3758), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [76900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3764), 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(3762), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [76958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3795), 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(3793), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [77016] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4861), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_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(4859), 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, - [77086] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5200), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5202), 1, - anon_sym_AMP_AMP, - ACTIONS(5204), 1, - anon_sym_PIPE, - ACTIONS(5208), 1, - anon_sym_AMP, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5220), 1, - anon_sym_or, - ACTIONS(5222), 1, - anon_sym_and, - ACTIONS(5224), 1, - anon_sym_bitor, - ACTIONS(5226), 1, - anon_sym_bitand, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5234), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5242), 1, - anon_sym_QMARK, - STATE(2993), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5196), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5206), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5210), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5212), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4786), 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, - [77190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2327), 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(2329), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [77248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2335), 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(2337), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [77306] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5196), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4865), 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(4863), 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, - [77384] = 3, + [77194] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4774), 20, @@ -291526,10 +292684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [77442] = 3, + [77252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3899), 16, + ACTIONS(3909), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -291546,7 +292704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(3897), 34, + ACTIONS(3907), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -291581,121 +292739,602 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [77500] = 3, + [77310] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5246), 6, + ACTIONS(4561), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5244), 44, - anon_sym_AMP, - 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, + ACTIONS(5216), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [77558] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4092), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5006), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_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(5004), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4094), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [77618] = 3, + 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, + [77380] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 12, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(4908), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_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(4906), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [77448] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, + anon_sym_AMP_AMP, + ACTIONS(5233), 1, + anon_sym_PIPE, + ACTIONS(5237), 1, + anon_sym_AMP, + ACTIONS(5245), 1, + anon_sym_QMARK, + ACTIONS(5247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5249), 1, + anon_sym_or, + ACTIONS(5251), 1, + anon_sym_and, + ACTIONS(5253), 1, + anon_sym_bitor, + ACTIONS(5255), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(4902), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5243), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5241), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4900), 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, + [77552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 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(3915), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_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_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, + [77610] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4862), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_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(4860), 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, + [77680] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, + anon_sym_LT_EQ_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5243), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4858), 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(4856), 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, + [77758] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, + anon_sym_AMP_AMP, + ACTIONS(5233), 1, + anon_sym_PIPE, + ACTIONS(5237), 1, + anon_sym_AMP, + ACTIONS(5247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5249), 1, + anon_sym_or, + ACTIONS(5251), 1, + anon_sym_and, + ACTIONS(5253), 1, + anon_sym_bitor, + ACTIONS(5255), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(4830), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5243), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5241), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4806), 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, + [77858] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(4798), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_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(4796), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [77926] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, + anon_sym_AMP_AMP, + ACTIONS(5233), 1, + anon_sym_PIPE, + ACTIONS(5237), 1, + anon_sym_AMP, + ACTIONS(5247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5249), 1, + anon_sym_or, + ACTIONS(5251), 1, + anon_sym_and, + ACTIONS(5253), 1, + anon_sym_bitor, + ACTIONS(5255), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(4984), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5243), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5241), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4982), 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, + [78026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4124), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -291708,7 +293347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4086), 38, + ACTIONS(4122), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -291747,1117 +293386,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [77676] = 3, + [78084] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 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(4088), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [77734] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5248), 1, - anon_sym_LT, - STATE(3008), 1, - sym_template_argument_list, - ACTIONS(4905), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_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(4903), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [77796] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(4893), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_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(4891), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_GT2, - [77864] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5240), 1, - anon_sym_AMP_AMP, - ACTIONS(5251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4897), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [77926] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5208), 1, - anon_sym_AMP, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5226), 1, - anon_sym_bitand, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5196), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5210), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5212), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4962), 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, - [78012] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5196), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4964), 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(4962), 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, - [78090] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5196), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5212), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 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(4962), 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, - [78170] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5196), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5210), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5212), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 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(4962), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_GT2, - [78252] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4086), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4088), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [78312] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5208), 1, - anon_sym_AMP, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5226), 1, - anon_sym_bitand, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5196), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5206), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5210), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5212), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(4962), 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, - [78400] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5204), 1, - anon_sym_PIPE, - ACTIONS(5208), 1, - anon_sym_AMP, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5224), 1, - anon_sym_bitor, - ACTIONS(5226), 1, - anon_sym_bitand, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5196), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5206), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5210), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4964), 4, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(5212), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [78492] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5202), 1, - anon_sym_AMP_AMP, - ACTIONS(5204), 1, - anon_sym_PIPE, - ACTIONS(5208), 1, - anon_sym_AMP, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5222), 1, - anon_sym_and, - ACTIONS(5224), 1, - anon_sym_bitor, - ACTIONS(5226), 1, - anon_sym_bitand, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5196), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5206), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4964), 3, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - ACTIONS(5198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5210), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5212), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_GT2, - [78588] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4964), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_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(4962), 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, - [78658] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5253), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4732), 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(4730), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [78718] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4086), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4088), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [78778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5257), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5255), 44, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [78836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 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(4071), 43, - anon_sym_AMP, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [78894] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5200), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5202), 1, - anon_sym_AMP_AMP, - ACTIONS(5204), 1, - anon_sym_PIPE, - ACTIONS(5208), 1, - anon_sym_AMP, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_LT_EQ_GT, ACTIONS(5220), 1, - anon_sym_or, - ACTIONS(5222), 1, - anon_sym_and, - ACTIONS(5224), 1, - anon_sym_bitor, - ACTIONS(5226), 1, - anon_sym_bitand, - ACTIONS(5230), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, - STATE(2993), 1, + ACTIONS(5247), 1, + anon_sym_LT_EQ_GT, + STATE(3015), 1, sym_argument_list, - ACTIONS(4998), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5196), 2, + ACTIONS(5212), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5206), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5228), 2, + ACTIONS(5218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, + ACTIONS(5243), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5210), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5212), 4, + ACTIONS(4936), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4996), 16, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 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, + [78162] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, + anon_sym_LT_EQ_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5243), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5241), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 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(4934), 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, + [78242] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, + anon_sym_LT_EQ_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5243), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5241), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 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(4934), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_GT2, + [78324] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5237), 1, + anon_sym_AMP, + ACTIONS(5247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5255), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5243), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5241), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 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, + [78410] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, + anon_sym_AMP_AMP, + ACTIONS(5233), 1, + anon_sym_PIPE, + ACTIONS(5237), 1, + anon_sym_AMP, + ACTIONS(5247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5249), 1, + anon_sym_or, + ACTIONS(5251), 1, + anon_sym_and, + ACTIONS(5253), 1, + anon_sym_bitor, + ACTIONS(5255), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5018), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5243), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5241), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5016), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_QMARK, @@ -292874,29 +293729,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_GT2, - [78994] = 10, + [78510] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, - STATE(2993), 1, + ACTIONS(5237), 1, + anon_sym_AMP, + ACTIONS(5247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5255), 1, + anon_sym_bitand, + STATE(3015), 1, sym_argument_list, - ACTIONS(5228), 2, + ACTIONS(5212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, + ACTIONS(5235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5243), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4964), 16, + ACTIONS(5239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5241), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(4934), 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, + [78598] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5233), 1, + anon_sym_PIPE, + ACTIONS(5237), 1, + anon_sym_AMP, + ACTIONS(5247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5253), 1, + anon_sym_bitor, + ACTIONS(5255), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5212), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5243), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4936), 4, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(5241), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [78690] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5231), 1, + anon_sym_AMP_AMP, + ACTIONS(5233), 1, + anon_sym_PIPE, + ACTIONS(5237), 1, + anon_sym_AMP, + ACTIONS(5247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5251), 1, + anon_sym_and, + ACTIONS(5253), 1, + anon_sym_bitor, + ACTIONS(5255), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5243), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4936), 3, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + ACTIONS(5214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5241), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [78786] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -292911,7 +293981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4962), 24, + ACTIONS(4934), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -292936,10 +294006,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [79066] = 3, + [78856] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3923), 16, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 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(4934), 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, + [78928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3913), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -292956,7 +294088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(3921), 34, + ACTIONS(3911), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -292991,51 +294123,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [79124] = 11, + [78986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(5257), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(4713), 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(4711), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [79046] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, - STATE(2993), 1, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, + anon_sym_AMP_AMP, + ACTIONS(5233), 1, + anon_sym_PIPE, + ACTIONS(5237), 1, + anon_sym_AMP, + ACTIONS(5247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5249), 1, + anon_sym_or, + ACTIONS(5251), 1, + anon_sym_and, + ACTIONS(5253), 1, + anon_sym_bitor, + ACTIONS(5255), 1, + anon_sym_bitand, + STATE(3015), 1, sym_argument_list, - ACTIONS(5196), 2, + ACTIONS(4873), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5212), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5228), 2, + ACTIONS(5218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5198), 3, + ACTIONS(5235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5243), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4964), 14, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5241), 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, - ACTIONS(4962), 24, + ACTIONS(4871), 16, 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, @@ -293049,39 +294254,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_GT2, - [79198] = 3, + [79146] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4561), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5216), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4728), 27, + ACTIONS(4954), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293098,24 +294288,41 @@ 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, + ACTIONS(4952), 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_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, - [79256] = 4, + anon_sym_GT2, + [79216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3771), 2, + ACTIONS(3727), 2, anon_sym_COLON_COLON, anon_sym_LBRACE, - ACTIONS(3773), 16, + ACTIONS(3729), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293132,7 +294339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3778), 32, + ACTIONS(3734), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -293165,31 +294372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [79316] = 3, + [79276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4149), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4151), 29, + ACTIONS(4692), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -293208,1246 +294394,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4694), 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_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4117), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4119), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4994), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4992), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4667), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4665), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4189), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4191), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4170), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4172), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4972), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4970), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79715] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, - sym_literal_suffix, - ACTIONS(3518), 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(3510), 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, - [79774] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4873), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4871), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4980), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(2547), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79888] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3885), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4647), 1, - anon_sym_LBRACK, - ACTIONS(4641), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(3518), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(3510), 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [79951] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4857), 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(4855), 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, - [80016] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4986), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4984), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [80073] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4861), 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(4859), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80140] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4865), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(4863), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80215] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4889), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5150), 1, - anon_sym_bitor, - ACTIONS(5152), 1, - anon_sym_xor, - ACTIONS(5154), 1, - anon_sym_bitand, - ACTIONS(5265), 1, - anon_sym_PIPE, - ACTIONS(5267), 1, - anon_sym_CARET, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5273), 1, - anon_sym_GT_EQ, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5146), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5148), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5156), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5271), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4887), 16, - 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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80312] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4893), 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(4891), 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, - [80377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4669), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4671), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [80434] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4137), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [80491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4137), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [80548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4137), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [80605] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3691), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [80662] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(3003), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5275), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5278), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3847), 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(3849), 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, @@ -294456,169 +294427,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - [80725] = 3, + [79334] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4652), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_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(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(4650), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(5222), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [80782] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4812), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5227), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5122), 1, - anon_sym_QMARK, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5150), 1, - anon_sym_bitor, - ACTIONS(5152), 1, - anon_sym_xor, - ACTIONS(5154), 1, - anon_sym_bitand, - ACTIONS(5265), 1, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, + anon_sym_AMP_AMP, + ACTIONS(5233), 1, anon_sym_PIPE, - ACTIONS(5267), 1, - anon_sym_CARET, - ACTIONS(5269), 1, + ACTIONS(5237), 1, anon_sym_AMP, - ACTIONS(5273), 1, - anon_sym_GT_EQ, - STATE(2849), 1, + ACTIONS(5247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5249), 1, + anon_sym_or, + ACTIONS(5251), 1, + anon_sym_and, + ACTIONS(5253), 1, + anon_sym_bitor, + ACTIONS(5255), 1, + anon_sym_bitand, + STATE(3015), 1, sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5146), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5148), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, + ACTIONS(4916), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5212), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5263), 2, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5243), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5156), 3, + ACTIONS(5214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5239), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5271), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4786), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 20, - 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(5241), 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(3691), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(4914), 15, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -294632,677 +294503,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, anon_sym_GT2, - [80940] = 5, + [79436] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5281), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5283), 1, - anon_sym_AMP_AMP, - ACTIONS(4897), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_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(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(4895), 27, - 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, + ACTIONS(5222), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [81001] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5015), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5013), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [81058] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3691), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [81115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3691), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [81172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4099), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4101), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [81229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4139), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4141), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [81286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4778), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4776), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [81343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4946), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4944), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [81400] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4924), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4922), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [81457] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3957), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(3959), 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(3510), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - 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_DASH_GT, - anon_sym_GT2, - ACTIONS(3518), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - 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, - [81518] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5285), 1, - sym_literal_suffix, - STATE(3074), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2441), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2455), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3518), 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(3510), 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [81583] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4998), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5150), 1, - anon_sym_bitor, - ACTIONS(5152), 1, - anon_sym_xor, - ACTIONS(5154), 1, - anon_sym_bitand, - ACTIONS(5265), 1, - anon_sym_PIPE, - ACTIONS(5267), 1, - anon_sym_CARET, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5273), 1, - anon_sym_GT_EQ, - STATE(2849), 1, + STATE(3015), 1, sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5146), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5148), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, + ACTIONS(5212), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5263), 2, + ACTIONS(5218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5243), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5156), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5261), 3, + ACTIONS(5214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5271), 3, + ACTIONS(4936), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4996), 16, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -295310,16 +294557,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [81680] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [79512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 20, + ACTIONS(5259), 1, + anon_sym_AMP_AMP, + ACTIONS(4996), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295340,7 +294594,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4158), 29, + ACTIONS(4994), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [79571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4854), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4852), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -295370,12 +294677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [81737] = 4, + [79628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5283), 1, - anon_sym_AMP_AMP, - ACTIONS(4912), 20, + ACTIONS(4098), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295396,60 +294701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4910), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [81796] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4181), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4183), 29, + ACTIONS(4100), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -295479,4238 +294731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [81853] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4691), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4693), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [81910] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4976), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5078), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5150), 1, - anon_sym_bitor, - ACTIONS(5152), 1, - anon_sym_xor, - ACTIONS(5154), 1, - anon_sym_bitand, - ACTIONS(5265), 1, - anon_sym_PIPE, - ACTIONS(5267), 1, - anon_sym_CARET, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5273), 1, - anon_sym_GT_EQ, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5146), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5148), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5156), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5271), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4974), 15, - 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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [82009] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4869), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4867), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82066] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4932), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4930), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4728), 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(4726), 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, - [82180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(2335), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2329), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(2327), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4990), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4988), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4782), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4780), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4113), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4115), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4834), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4832), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4952), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4950), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3691), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82636] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4844), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4842), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82693] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4875), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4879), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4732), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4730), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4143), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4145), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82921] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4964), 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(4962), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [82988] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4964), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5150), 1, - anon_sym_bitor, - ACTIONS(5152), 1, - anon_sym_xor, - ACTIONS(5154), 1, - anon_sym_bitand, - ACTIONS(5265), 1, - anon_sym_PIPE, - ACTIONS(5267), 1, - anon_sym_CARET, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5273), 1, - anon_sym_GT_EQ, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5148), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5156), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5271), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83083] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4174), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4176), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [83140] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4964), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5150), 1, - anon_sym_bitor, - ACTIONS(5152), 1, - anon_sym_xor, - ACTIONS(5154), 1, - anon_sym_bitand, - ACTIONS(5265), 1, - anon_sym_PIPE, - ACTIONS(5267), 1, - anon_sym_CARET, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5273), 1, - anon_sym_GT_EQ, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5156), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5271), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83233] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5152), 1, - anon_sym_xor, - ACTIONS(5154), 1, - anon_sym_bitand, - ACTIONS(5267), 1, - anon_sym_CARET, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5273), 1, - anon_sym_GT_EQ, - STATE(2849), 1, - sym_argument_list, - ACTIONS(4964), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5156), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5271), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83322] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5154), 1, - anon_sym_bitand, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5273), 1, - anon_sym_GT_EQ, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4964), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(5156), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5271), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4916), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4914), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [83464] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5273), 1, - anon_sym_GT_EQ, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5156), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5271), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(4962), 23, - 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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83545] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5273), 1, - anon_sym_GT_EQ, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5271), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(4962), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83624] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4964), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(4962), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83699] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4964), 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(4962), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83770] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4964), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(4962), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4986), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4984), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [83900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4920), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4918), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [83957] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4934), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [84014] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5287), 1, - anon_sym_LT, - STATE(2574), 1, - sym_template_argument_list, - ACTIONS(4905), 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(4903), 30, - 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_DASH_GT, - [84075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4840), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4838), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [84132] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4968), 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(4966), 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, - [84201] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, - anon_sym_EQ, - ACTIONS(4853), 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(3518), 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(3510), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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_DASH_GT, - [84262] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4774), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4772), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [84319] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4857), 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(4855), 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, - [84386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3518), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3510), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [84443] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4861), 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(4859), 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, - [84512] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5300), 1, - anon_sym_LT_EQ_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4865), 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(4863), 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, - [84589] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4889), 1, - anon_sym_EQ, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5300), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5302), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5306), 1, - anon_sym_PIPE, - ACTIONS(5310), 1, - anon_sym_AMP, - ACTIONS(5316), 1, - anon_sym_GT_EQ, - ACTIONS(5318), 1, - anon_sym_or, - ACTIONS(5320), 1, - anon_sym_and, - ACTIONS(5322), 1, - anon_sym_bitor, - ACTIONS(5324), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5308), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5314), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4887), 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, - [84690] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4893), 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(4891), 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, - [84757] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_EQ, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5300), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5302), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5306), 1, - anon_sym_PIPE, - ACTIONS(5310), 1, - anon_sym_AMP, - ACTIONS(5316), 1, - anon_sym_GT_EQ, - ACTIONS(5318), 1, - anon_sym_or, - ACTIONS(5320), 1, - anon_sym_and, - ACTIONS(5322), 1, - anon_sym_bitor, - ACTIONS(5324), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5308), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5314), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4996), 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, - [84858] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4784), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4976), 1, - anon_sym_EQ, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5300), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5302), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5306), 1, - anon_sym_PIPE, - ACTIONS(5310), 1, - anon_sym_AMP, - ACTIONS(5316), 1, - anon_sym_GT_EQ, - ACTIONS(5318), 1, - anon_sym_or, - ACTIONS(5320), 1, - anon_sym_and, - ACTIONS(5322), 1, - anon_sym_bitor, - ACTIONS(5324), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5308), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5314), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4974), 15, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [84961] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3518), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3510), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [85018] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4964), 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(4962), 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, - [85089] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4964), 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(4962), 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, - [85158] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5300), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5306), 1, - anon_sym_PIPE, - ACTIONS(5310), 1, - anon_sym_AMP, - ACTIONS(5316), 1, - anon_sym_GT_EQ, - ACTIONS(5320), 1, - anon_sym_and, - ACTIONS(5322), 1, - anon_sym_bitor, - ACTIONS(5324), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4964), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5308), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5314), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [85255] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5300), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5306), 1, - anon_sym_PIPE, - ACTIONS(5310), 1, - anon_sym_AMP, - ACTIONS(5316), 1, - anon_sym_GT_EQ, - ACTIONS(5322), 1, - anon_sym_bitor, - ACTIONS(5324), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5308), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4964), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5314), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [85348] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5300), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5310), 1, - anon_sym_AMP, - ACTIONS(5316), 1, - anon_sym_GT_EQ, - ACTIONS(5324), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5308), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5314), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 4, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(4962), 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, - [85437] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(3003), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2441), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2455), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3859), 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(3861), 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, - [85500] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5300), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5310), 1, - anon_sym_AMP, - ACTIONS(5316), 1, - anon_sym_GT_EQ, - ACTIONS(5324), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5314), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4962), 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, - [85587] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5300), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5316), 1, - anon_sym_GT_EQ, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5314), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4962), 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, - [85670] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4956), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4954), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [85727] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4960), 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(4958), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [85794] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4928), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5150), 1, - anon_sym_bitor, - ACTIONS(5152), 1, - anon_sym_xor, - ACTIONS(5154), 1, - anon_sym_bitand, - ACTIONS(5265), 1, - anon_sym_PIPE, - ACTIONS(5267), 1, - anon_sym_CARET, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5273), 1, - anon_sym_GT_EQ, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5146), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5148), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5156), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5271), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4926), 16, - 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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [85891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4746), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4748), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [85948] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5300), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5316), 1, - anon_sym_GT_EQ, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5314), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4964), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4962), 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, - [86029] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(5044), 1, - anon_sym_LBRACK, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4964), 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(4962), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [86098] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - ACTIONS(4885), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5150), 1, - anon_sym_bitor, - ACTIONS(5152), 1, - anon_sym_xor, - ACTIONS(5154), 1, - anon_sym_bitand, - ACTIONS(5265), 1, - anon_sym_PIPE, - ACTIONS(5267), 1, - anon_sym_CARET, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5273), 1, - anon_sym_GT_EQ, - STATE(2849), 1, - sym_argument_list, - ACTIONS(5058), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5146), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5148), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5158), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5259), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5156), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5271), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4883), 16, - 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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [86195] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5300), 1, - anon_sym_LT_EQ_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4964), 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(4962), 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, - [86272] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4964), 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(4962), 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, - [86345] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4964), 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(4962), 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, - [86420] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4960), 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(4958), 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, - [86489] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4928), 1, - anon_sym_EQ, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5300), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5302), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5306), 1, - anon_sym_PIPE, - ACTIONS(5310), 1, - anon_sym_AMP, - ACTIONS(5316), 1, - anon_sym_GT_EQ, - ACTIONS(5318), 1, - anon_sym_or, - ACTIONS(5320), 1, - anon_sym_and, - ACTIONS(5322), 1, - anon_sym_bitor, - ACTIONS(5324), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5308), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5314), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4926), 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, - [86590] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4885), 1, - anon_sym_EQ, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5300), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5302), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5306), 1, - anon_sym_PIPE, - ACTIONS(5310), 1, - anon_sym_AMP, - ACTIONS(5316), 1, - anon_sym_GT_EQ, - ACTIONS(5318), 1, - anon_sym_or, - ACTIONS(5320), 1, - anon_sym_and, - ACTIONS(5322), 1, - anon_sym_bitor, - ACTIONS(5324), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5308), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5314), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4883), 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, - [86691] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4784), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4812), 1, - anon_sym_EQ, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5300), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5302), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5306), 1, - anon_sym_PIPE, - ACTIONS(5310), 1, - anon_sym_AMP, - ACTIONS(5316), 1, - anon_sym_GT_EQ, - ACTIONS(5318), 1, - anon_sym_or, - ACTIONS(5320), 1, - anon_sym_and, - ACTIONS(5322), 1, - anon_sym_bitor, - ACTIONS(5324), 1, - anon_sym_bitand, - ACTIONS(5326), 1, - anon_sym_QMARK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4826), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5308), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5314), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4786), 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, - [86796] = 3, + [79685] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5002), 20, @@ -299764,10 +294785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [86853] = 3, + [79742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 20, + ACTIONS(5014), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299788,7 +294809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4629), 29, + ACTIONS(5012), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -299818,10 +294839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [86910] = 3, + [79799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 20, + ACTIONS(4992), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299842,7 +294863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4105), 29, + ACTIONS(4990), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -299872,10 +294893,660 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [86967] = 3, + [79856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4174), 16, + ACTIONS(4972), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4970), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [79913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4956), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [79970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4944), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80027] = 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(4717), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4088), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4713), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4711), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4665), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4149), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4139), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4130), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4132), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4073), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4928), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80540] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3954), 1, + sym_literal_suffix, + ACTIONS(3457), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299890,9 +295561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4176), 32, + ACTIONS(3462), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299915,20 +295592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [87023] = 3, + [80599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4746), 16, + ACTIONS(4896), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299938,23 +295609,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(4748), 32, + ACTIONS(2453), 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, @@ -299963,95 +295636,3178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [87079] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4203), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4201), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [87137] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_EQ, - ACTIONS(5166), 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(3510), 17, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80656] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4637), 1, + anon_sym_LBRACK, + ACTIONS(4631), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3457), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(3462), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80719] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4908), 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(4906), 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, + [80784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5008), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80841] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4862), 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(4860), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80908] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4858), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(4856), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80983] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5259), 1, + anon_sym_AMP_AMP, + ACTIONS(5267), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4786), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4784), 27, + 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_DASH_GT, + anon_sym_GT2, + [81044] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(4830), 1, + anon_sym_EQ, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5269), 1, + anon_sym_PIPE, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_AMP, + ACTIONS(5277), 1, + anon_sym_GT_EQ, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5146), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5148), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5275), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4806), 16, + 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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [81141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4082), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4084), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81198] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4798), 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(4796), 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, + [81263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4768), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4770), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4145), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4145), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4145), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3549), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4844), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81605] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3959), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(3961), 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(3462), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + 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_DASH_GT, + anon_sym_GT2, + ACTIONS(3457), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + 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, + [81666] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5279), 1, + sym_literal_suffix, + STATE(3074), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2597), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2611), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3457), 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(3462), 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81731] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3018), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5281), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5284), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3875), 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3877), 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, + [81794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4645), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4640), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4883), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4881), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3549), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3549), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3549), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3549), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4707), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4709), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4950), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4948), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2017), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(2015), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(1999), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4126), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4128), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4778), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4776), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4850), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4848), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4782), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4780), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82592] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(4873), 1, + anon_sym_EQ, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5269), 1, + anon_sym_PIPE, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_AMP, + ACTIONS(5277), 1, + anon_sym_GT_EQ, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5146), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5148), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5275), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4871), 16, + 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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4102), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4104), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4092), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4978), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82860] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(4916), 1, + anon_sym_EQ, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5269), 1, + anon_sym_PIPE, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_AMP, + ACTIONS(5277), 1, + anon_sym_GT_EQ, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5146), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5148), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5275), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4914), 15, + 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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4094), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4096), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [83016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4976), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4974), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [83073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4922), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [83130] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 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(4934), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4920), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4918), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [83254] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(4936), 1, + anon_sym_EQ, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5269), 1, + anon_sym_PIPE, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_AMP, + ACTIONS(5277), 1, + anon_sym_GT_EQ, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5148), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5275), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83349] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(4936), 1, + anon_sym_EQ, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5269), 1, + anon_sym_PIPE, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_AMP, + ACTIONS(5277), 1, + anon_sym_GT_EQ, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5275), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83442] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_AMP, + ACTIONS(5277), 1, + anon_sym_GT_EQ, + STATE(2851), 1, + sym_argument_list, + ACTIONS(4936), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5275), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83531] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5273), 1, + anon_sym_AMP, + ACTIONS(5277), 1, + anon_sym_GT_EQ, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4936), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5275), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83616] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5277), 1, + anon_sym_GT_EQ, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5275), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(4934), 23, + 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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83697] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5277), 1, + anon_sym_GT_EQ, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5275), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(4934), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83776] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(4934), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83851] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 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(4934), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83922] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(4934), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4844), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [84052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4912), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4910), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [84109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4078), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4080), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [84166] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5287), 1, + anon_sym_LT, + STATE(2546), 1, + sym_template_argument_list, + ACTIONS(4887), 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(4885), 30, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -300062,6 +298818,19 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -300069,7 +298838,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3518), 17, + [84227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4892), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [84284] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5006), 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(5004), 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, + [84353] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 1, + anon_sym_EQ, + ACTIONS(4968), 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(3457), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300087,10 +298989,1251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - [87197] = 3, + ACTIONS(3462), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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_DASH_GT, + [84414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 16, + ACTIONS(3457), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3462), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [84471] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4908), 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(4906), 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, + [84538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3457), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3462), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [84595] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4862), 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(4860), 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, + [84664] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4858), 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(4856), 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, + [84741] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4830), 1, + anon_sym_EQ, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_AMP_AMP, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5318), 1, + anon_sym_or, + ACTIONS(5320), 1, + anon_sym_and, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4806), 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, + [84842] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4798), 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(4796), 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, + [84909] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4873), 1, + anon_sym_EQ, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_AMP_AMP, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5318), 1, + anon_sym_or, + ACTIONS(5320), 1, + anon_sym_and, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4871), 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, + [85010] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4898), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4916), 1, + anon_sym_EQ, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_AMP_AMP, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5318), 1, + anon_sym_or, + ACTIONS(5320), 1, + anon_sym_and, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4914), 15, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [85113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4794), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4792), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [85170] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 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(4934), 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, + [85241] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 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(4934), 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, + [85310] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5304), 1, + anon_sym_AMP_AMP, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5320), 1, + anon_sym_and, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [85407] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4936), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [85500] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(4934), 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, + [85589] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3018), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2597), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2611), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3849), 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3851), 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, + [85652] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 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, + [85739] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 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, + [85822] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4954), 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(4952), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4774), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300107,7 +300250,1052 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3510), 32, + ACTIONS(4772), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 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(4692), 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, + [86003] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5018), 1, + anon_sym_EQ, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5269), 1, + anon_sym_PIPE, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_AMP, + ACTIONS(5277), 1, + anon_sym_GT_EQ, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5146), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5148), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5275), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5016), 16, + 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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86100] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 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, + [86181] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + anon_sym_LBRACK, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 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(4934), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4673), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4675), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [86307] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 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(4934), 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, + [86384] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 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(4934), 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, + [86457] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 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(4934), 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, + [86532] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4954), 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(4952), 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, + [86601] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5018), 1, + anon_sym_EQ, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_AMP_AMP, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5318), 1, + anon_sym_or, + ACTIONS(5320), 1, + anon_sym_and, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5016), 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, + [86702] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4984), 1, + anon_sym_EQ, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_AMP_AMP, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5318), 1, + anon_sym_or, + ACTIONS(5320), 1, + anon_sym_and, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4982), 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, + [86803] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4898), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4902), 1, + anon_sym_EQ, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_AMP_AMP, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5318), 1, + anon_sym_or, + ACTIONS(5320), 1, + anon_sym_and, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + ACTIONS(5326), 1, + anon_sym_QMARK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4842), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4900), 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, + [86908] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(4984), 1, + anon_sym_EQ, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5269), 1, + anon_sym_PIPE, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_AMP, + ACTIONS(5277), 1, + anon_sym_GT_EQ, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5146), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5148), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5275), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4982), 16, + 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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4986), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [87062] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + ACTIONS(4902), 1, + anon_sym_EQ, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5269), 1, + anon_sym_PIPE, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_AMP, + ACTIONS(5277), 1, + anon_sym_GT_EQ, + STATE(2851), 1, + sym_argument_list, + ACTIONS(5060), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5146), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5148), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5263), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5275), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4900), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4098), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4100), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300140,813 +301328,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [87253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4869), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4867), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [87309] = 5, + [87219] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5328), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5330), 1, - anon_sym_AMP_AMP, - ACTIONS(4897), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4895), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [87369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4924), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4922), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [87425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4946), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4944), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [87481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4778), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4776), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [87537] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4139), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4141), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [87593] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4137), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [87649] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4137), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [87705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4137), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [87761] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4980), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(2547), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [87817] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2329), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(2327), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [87873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4181), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4183), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [87929] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4972), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4970), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [87985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4170), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4172), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4189), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4191), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88097] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5332), 1, sym_auto, - ACTIONS(5334), 1, + ACTIONS(5330), 1, anon_sym_decltype, - STATE(3173), 1, + STATE(3161), 1, sym_decltype_auto, - ACTIONS(4225), 12, + ACTIONS(4338), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -300959,7 +301350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4223), 33, + ACTIONS(4336), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -300993,10 +301384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT2, anon_sym_requires, - [88159] = 3, + [87281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 16, + ACTIONS(3690), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301011,12 +301402,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(4101), 32, + ACTIONS(3692), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301024,6 +301415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -301035,21 +301427,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88215] = 3, + anon_sym_DASH_GT, + [87337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 16, + ACTIONS(3706), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301064,12 +301455,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(4105), 32, + ACTIONS(3708), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301077,6 +301468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -301088,27 +301480,400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88271] = 6, + anon_sym_DASH_GT, + [87393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3609), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3611), 30, + 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_DASH_GT, + [87449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3698), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3700), 30, + 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_DASH_GT, + [87505] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, anon_sym_COLON_COLON, - ACTIONS(5336), 1, + ACTIONS(4342), 12, + anon_sym_DASH, + anon_sym_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(3224), 1, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4340), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [87563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3684), 30, + 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_DASH_GT, + [87619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3582), 30, + 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_DASH_GT, + [87675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3576), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3578), 30, + 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_DASH_GT, + [87731] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1774), 1, + sym_string_literal, + ACTIONS(5336), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5334), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5332), 36, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [87791] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5338), 1, + anon_sym_LT, + STATE(3243), 1, sym_template_argument_list, - ACTIONS(3679), 18, + ACTIONS(4063), 18, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -301127,7 +301892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - ACTIONS(3684), 27, + ACTIONS(3469), 27, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -301155,10 +301920,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [88333] = 3, + [87853] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4956), 16, + STATE(1777), 1, + sym_string_literal, + ACTIONS(5336), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5334), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5332), 36, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [87913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4794), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301175,7 +301995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4954), 32, + ACTIONS(4792), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301208,10 +302028,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [88389] = 3, + [87969] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 16, + ACTIONS(5164), 1, + anon_sym_EQ, + ACTIONS(5166), 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(3457), 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(3462), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_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_DASH_GT, + [88029] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301228,7 +302103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4838), 32, + ACTIONS(1999), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301261,10 +302136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [88445] = 3, + [88085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 16, + ACTIONS(5002), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301281,7 +302156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4934), 32, + ACTIONS(5000), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301314,7 +302189,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [88501] = 3, + [88141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3457), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(3462), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4892), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4078), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4080), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4912), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4910), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88365] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4854), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4852), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88421] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4920), 16, @@ -301367,10 +302507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [88557] = 3, + [88477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 16, + ACTIONS(4924), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301387,7 +302527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4158), 32, + ACTIONS(4922), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301420,12 +302560,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [88613] = 4, + [88533] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5330), 1, + ACTIONS(5340), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(4912), 16, + ACTIONS(4786), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301442,12 +302584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4910), 31, + ACTIONS(4784), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -301474,484 +302615,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [88671] = 3, + [88593] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4149), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4151), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1775), 1, + sym_string_literal, + ACTIONS(5336), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5334), 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4143), 16, - 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_DOT, - anon_sym_DASH_GT, - ACTIONS(4145), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4117), 16, - 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(5332), 36, anon_sym_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(4119), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + 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, - [88839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4879), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4875), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4844), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4842), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [89007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4952), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4950), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [89063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4834), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4832), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [89119] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4113), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(4115), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [89175] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [88653] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4782), 16, @@ -302004,10 +302723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [89231] = 3, + [88709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4916), 16, + ACTIONS(4850), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302024,7 +302743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4914), 32, + ACTIONS(4848), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302057,10 +302776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [89287] = 3, + [88765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4990), 16, + ACTIONS(4778), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302077,7 +302796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4988), 32, + ACTIONS(4776), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302110,16 +302829,1291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [89343] = 6, + [88821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(4126), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4128), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4976), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4974), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4978), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4145), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4145), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89101] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4145), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4092), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4094), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4096), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4768), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4770), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4082), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4084), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89381] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1776), 1, + sym_string_literal, + ACTIONS(5336), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5334), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(5336), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5332), 36, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [89441] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5342), 1, + anon_sym_AMP_AMP, + ACTIONS(4996), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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(3224), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4994), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4088), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(2453), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(5012), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4990), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4970), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4102), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4104), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4139), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4707), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4709), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4673), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4675), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [90003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2017), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(2015), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [90059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4928), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [90115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4073), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [90171] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5338), 1, + anon_sym_LT, + STATE(3243), 1, sym_template_argument_list, - ACTIONS(4041), 18, + ACTIONS(3537), 18, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -302138,7 +304132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - ACTIONS(3534), 27, + ACTIONS(3542), 27, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -302166,381 +304160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [89405] = 3, + [90233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3795), 30, - 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_DASH_GT, - [89461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3764), 30, - 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_DASH_GT, - [89517] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3758), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3760), 30, - 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_DASH_GT, - [89573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3752), 30, - 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_DASH_GT, - [89629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3744), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3746), 30, - 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_DASH_GT, - [89685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3740), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3742), 30, - 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_DASH_GT, - [89741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3736), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3738), 30, - 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_DASH_GT, - [89797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 16, + ACTIONS(4130), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302557,7 +304180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2335), 32, + ACTIONS(4132), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302590,10 +304213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [89853] = 3, + [90289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4669), 16, + ACTIONS(4147), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302610,7 +304233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4671), 32, + ACTIONS(4149), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302643,10 +304266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [89909] = 3, + [90345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4691), 16, + ACTIONS(4958), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302663,7 +304286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4693), 32, + ACTIONS(4956), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302696,10 +304319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [89965] = 3, + [90401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 12, + ACTIONS(4342), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -302712,7 +304335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4554), 35, + ACTIONS(4340), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -302748,10 +304371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [90020] = 3, + [90456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 12, + ACTIONS(4364), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -302764,7 +304387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4614), 35, + ACTIONS(4362), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -302800,10 +304423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [90075] = 3, + [90511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4490), 12, + ACTIONS(4507), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -302816,7 +304439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4488), 35, + ACTIONS(4505), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -302852,118 +304475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [90130] = 5, + [90566] = 3, ACTIONS(3), 1, sym_comment, - STATE(1774), 1, - sym_string_literal, - ACTIONS(5342), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5340), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5338), 35, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [90189] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1775), 1, - sym_string_literal, - ACTIONS(5342), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5340), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5338), 35, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [90248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4258), 12, + ACTIONS(4618), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -302976,7 +304491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4256), 35, + ACTIONS(4616), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303012,10 +304527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [90303] = 3, + [90621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 12, + ACTIONS(4571), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303028,7 +304543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4201), 35, + ACTIONS(4569), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303064,14 +304579,430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [90358] = 7, + [90676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3766), 1, - anon_sym_const, - ACTIONS(3775), 1, + ACTIONS(4559), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3768), 7, + 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(4557), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4555), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4553), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4517), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90841] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4587), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4585), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4387), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4385), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4409), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4379), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4377), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91061] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4610), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4608), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91116] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3722), 1, + anon_sym_const, + ACTIONS(3731), 1, + anon_sym_AMP, + ACTIONS(3724), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303079,7 +305010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_LBRACK, anon_sym_GT2, - ACTIONS(3773), 10, + ACTIONS(3729), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303090,7 +305021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3771), 11, + ACTIONS(3727), 11, anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_volatile, @@ -303102,7 +305033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - ACTIONS(3778), 17, + ACTIONS(3734), 17, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -303120,64 +305051,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [90421] = 5, + [91179] = 3, ACTIONS(3), 1, sym_comment, - STATE(1776), 1, - sym_string_literal, - ACTIONS(5342), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5340), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5338), 35, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [90480] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4302), 12, + ACTIONS(4614), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303190,7 +305067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4300), 35, + ACTIONS(4612), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303226,10 +305103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [90535] = 3, + [91234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 12, + ACTIONS(4395), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303242,7 +305119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4312), 35, + ACTIONS(4393), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303278,10 +305155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [90590] = 3, + [91289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 12, + ACTIONS(4383), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303294,7 +305171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4316), 35, + ACTIONS(4381), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303330,10 +305207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [90645] = 3, + [91344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 12, + ACTIONS(4370), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303346,7 +305223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4383), 35, + ACTIONS(4368), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303382,10 +305259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [90700] = 3, + [91399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 12, + ACTIONS(4360), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303398,7 +305275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4387), 35, + ACTIONS(4358), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303434,10 +305311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [90755] = 3, + [91454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4393), 12, + ACTIONS(4547), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303450,7 +305327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4391), 35, + ACTIONS(4545), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303486,10 +305363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [90810] = 3, + [91509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4397), 12, + ACTIONS(4591), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303502,7 +305379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4395), 35, + ACTIONS(4589), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303538,10 +305415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [90865] = 3, + [91564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4401), 12, + ACTIONS(4543), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303554,7 +305431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4399), 35, + ACTIONS(4541), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303590,10 +305467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [90920] = 3, + [91619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4405), 12, + ACTIONS(4535), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303606,7 +305483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4403), 35, + ACTIONS(4533), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303642,10 +305519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [90975] = 3, + [91674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4409), 12, + ACTIONS(4622), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303658,7 +305535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4407), 35, + ACTIONS(4620), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303694,10 +305571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [91030] = 3, + [91729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 12, + ACTIONS(4527), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303710,7 +305587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4411), 35, + ACTIONS(4525), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303746,10 +305623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [91085] = 3, + [91784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 12, + ACTIONS(4539), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303762,7 +305639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4201), 35, + ACTIONS(4537), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303798,10 +305675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [91140] = 3, + [91839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 12, + ACTIONS(4523), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303814,7 +305691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4502), 35, + ACTIONS(4521), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303850,10 +305727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [91195] = 3, + [91894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4417), 12, + ACTIONS(4515), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303866,7 +305743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4415), 35, + ACTIONS(4513), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303902,10 +305779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [91250] = 3, + [91949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4508), 12, + ACTIONS(4575), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303918,7 +305795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4506), 35, + ACTIONS(4573), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303954,10 +305831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [91305] = 3, + [92004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4512), 12, + ACTIONS(4595), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303970,7 +305847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4510), 35, + ACTIONS(4593), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304006,10 +305883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [91360] = 3, + [92059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 12, + ACTIONS(4503), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -304022,7 +305899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4514), 35, + ACTIONS(4501), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304058,10 +305935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [91415] = 3, + [92114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4604), 12, + ACTIONS(4599), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -304074,7 +305951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4602), 35, + ACTIONS(4597), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304110,10 +305987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [91470] = 3, + [92169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4421), 12, + ACTIONS(4499), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -304126,7 +306003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4419), 35, + ACTIONS(4497), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304162,163 +306039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [91525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4600), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4598), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [91580] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4290), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4288), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [91635] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4520), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4518), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [91690] = 3, + [92224] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4451), 12, @@ -304370,10 +306091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [91745] = 3, + [92279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4447), 12, + ACTIONS(4483), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -304386,7 +306107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4445), 35, + ACTIONS(4481), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304422,10 +306143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [91800] = 3, + [92334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4286), 12, + ACTIONS(4471), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -304438,7 +306159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4284), 35, + ACTIONS(4469), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304474,10 +306195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [91855] = 3, + [92389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4282), 12, + ACTIONS(4475), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -304490,7 +306211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4280), 35, + ACTIONS(4473), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304526,10 +306247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [91910] = 3, + [92444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4278), 12, + ACTIONS(4463), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -304542,7 +306263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4276), 35, + ACTIONS(4461), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304578,10 +306299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [91965] = 3, + [92499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 12, + ACTIONS(4531), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -304594,7 +306315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4320), 35, + ACTIONS(4529), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304630,10 +306351,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [92020] = 3, + [92554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 12, + ACTIONS(4459), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -304646,7 +306367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4324), 35, + ACTIONS(4457), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304682,10 +306403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [92075] = 3, + [92609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 12, + ACTIONS(4583), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -304698,7 +306419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4328), 35, + ACTIONS(4581), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304734,10 +306455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [92130] = 3, + [92664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 12, + ACTIONS(4350), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -304750,7 +306471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4332), 35, + ACTIONS(4348), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304786,10 +306507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [92185] = 3, + [92719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4338), 12, + ACTIONS(4551), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -304802,7 +306523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4336), 35, + ACTIONS(4549), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304838,10 +306559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [92240] = 3, + [92774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4544), 12, + ACTIONS(4342), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -304854,7 +306575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4542), 35, + ACTIONS(4340), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304890,10 +306611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [92295] = 3, + [92829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 12, + ACTIONS(4356), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -304906,7 +306627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4484), 35, + ACTIONS(4354), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304942,633 +306663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [92350] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4478), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4476), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [92405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4500), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4498), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [92460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4381), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4379), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [92515] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4374), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4372), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [92570] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1778), 1, - sym_string_literal, - ACTIONS(5342), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5340), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5338), 35, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [92629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4612), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4610), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [92684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4576), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4574), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [92739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4572), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4570), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [92794] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4536), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4534), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [92849] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4494), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [92904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4474), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4472), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [92959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4466), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(4464), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [93014] = 3, + [92884] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4443), 12, @@ -305620,10 +306715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [93069] = 3, + [92939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4548), 12, + ACTIONS(4511), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -305636,7 +306731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4546), 35, + ACTIONS(4509), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -305672,10 +306767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [93124] = 3, + [92994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4482), 12, + ACTIONS(4439), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -305688,7 +306783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4480), 35, + ACTIONS(4437), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -305724,10 +306819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [93179] = 3, + [93049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 12, + ACTIONS(4491), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -305740,7 +306835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4606), 35, + ACTIONS(4489), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -305776,10 +306871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [93234] = 3, + [93104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4246), 12, + ACTIONS(4435), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -305792,7 +306887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4244), 35, + ACTIONS(4433), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -305828,10 +306923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [93289] = 3, + [93159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 12, + ACTIONS(4427), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -305844,7 +306939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4594), 35, + ACTIONS(4425), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -305880,10 +306975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [93344] = 3, + [93214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 12, + ACTIONS(4423), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -305896,7 +306991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4590), 35, + ACTIONS(4421), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -305932,10 +307027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [93399] = 3, + [93269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4588), 12, + ACTIONS(4419), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -305948,7 +307043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4586), 35, + ACTIONS(4417), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -305984,10 +307079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [93454] = 3, + [93324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4584), 12, + ACTIONS(4415), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -306000,7 +307095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4582), 35, + ACTIONS(4413), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -306036,10 +307131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [93509] = 3, + [93379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4580), 12, + ACTIONS(4391), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -306052,7 +307147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4578), 35, + ACTIONS(4389), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -306088,10 +307183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [93564] = 3, + [93434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4568), 12, + ACTIONS(4479), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -306104,7 +307199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4566), 35, + ACTIONS(4477), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -306140,10 +307235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [93619] = 3, + [93489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 12, + ACTIONS(4467), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -306156,7 +307251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4558), 35, + ACTIONS(4465), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -306192,10 +307287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [93674] = 3, + [93544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4552), 12, + ACTIONS(4455), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -306208,7 +307303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4550), 35, + ACTIONS(4453), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -306244,12 +307339,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [93729] = 4, + [93599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4088), 18, + ACTIONS(4606), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4604), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4629), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4627), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4447), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4445), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4431), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4429), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4407), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4405), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4403), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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(4401), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3690), 18, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -306268,57 +307673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - ACTIONS(4086), 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, - [93785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5344), 18, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(5346), 28, + ACTIONS(3692), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -306347,292 +307702,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [93839] = 23, + [93983] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(3104), 1, - anon_sym_LPAREN2, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, - anon_sym_LBRACK, - ACTIONS(4766), 1, - anon_sym_STAR, - ACTIONS(4768), 1, - anon_sym_AMP_AMP, - ACTIONS(4770), 1, - anon_sym_AMP, - STATE(4350), 1, - sym_parameter_list, - STATE(4973), 1, - sym__scope_resolution, - STATE(5162), 1, - sym__declarator, - STATE(5337), 1, - sym__abstract_declarator, - STATE(7219), 1, - sym_ms_based_modifier, - ACTIONS(5348), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [93933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4088), 18, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4086), 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, - [93987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2599), 18, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(2601), 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, - [94041] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4094), 18, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4092), 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, - [94097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3923), 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, + ACTIONS(5344), 1, 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(3921), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_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, - [94151] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(5350), 1, - anon_sym_LT, - STATE(2343), 1, + STATE(2398), 1, sym_template_argument_list, - ACTIONS(3679), 9, + ACTIONS(4063), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -306642,7 +307721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_COLON, anon_sym_DOT, - ACTIONS(3684), 34, + ACTIONS(3469), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306677,10 +307756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - [94211] = 3, + [94043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 18, + ACTIONS(5346), 18, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -306699,7 +307778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - ACTIONS(5355), 28, + ACTIONS(5348), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -306728,10 +307807,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [94265] = 3, + [94097] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3766), 18, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5350), 1, + anon_sym_LT, + STATE(3282), 1, + sym_template_argument_list, + ACTIONS(3469), 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(4063), 30, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [94157] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(4752), 1, + anon_sym_LBRACK, + ACTIONS(4754), 1, + anon_sym_STAR, + ACTIONS(4756), 1, + anon_sym_AMP_AMP, + ACTIONS(4758), 1, + anon_sym_AMP, + STATE(4345), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5162), 1, + sym__declarator, + STATE(5348), 1, + sym__abstract_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(5352), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [94251] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5354), 1, + anon_sym_LT, + STATE(2398), 1, + sym_template_argument_list, + ACTIONS(3537), 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(3542), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_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_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [94311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3909), 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(3907), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_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, + [94365] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2549), 18, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -306750,7 +308059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - ACTIONS(3771), 28, + ACTIONS(2551), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -306779,7 +308088,366 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [94319] = 3, + [94419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5357), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(5359), 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, + [94473] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4124), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(4122), 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, + [94529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 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(3915), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_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, + [94583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3706), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3708), 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, + [94637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5361), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(5363), 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, + [94691] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4118), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(4116), 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, + [94747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5365), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(5367), 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, + [94801] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3927), 18, @@ -306830,317 +308498,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [94373] = 6, + [94855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(4120), 1, anon_sym_COLON_COLON, - ACTIONS(5357), 1, - anon_sym_LT, - STATE(2343), 1, - sym_template_argument_list, - ACTIONS(4041), 9, + ACTIONS(4124), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(4122), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3534), 34, + 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, + [94911] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3609), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3611), 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, + [94965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3698), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3700), 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, + [95019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2535), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(2537), 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, + [95073] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3235), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5369), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3937), 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_RBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3935), 28, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [94433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5359), 18, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, + anon_sym_virtual, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(5361), 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, - [94487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4071), 18, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4069), 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, - [94541] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4088), 18, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4086), 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, - [94597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5363), 18, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(5365), 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, - [94651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3911), 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(3909), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_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, - [94705] = 23, + [95131] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -307153,32 +308769,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(3104), 1, anon_sym_LPAREN2, - ACTIONS(4698), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(4702), 1, + ACTIONS(4744), 1, anon_sym_STAR, - ACTIONS(4704), 1, + ACTIONS(4746), 1, anon_sym_AMP_AMP, - ACTIONS(4706), 1, + ACTIONS(4748), 1, anon_sym_AMP, - ACTIONS(4708), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4752), 1, anon_sym_LBRACK, - STATE(4345), 1, + STATE(4350), 1, sym_parameter_list, STATE(4973), 1, sym__scope_resolution, STATE(5162), 1, sym__declarator, - STATE(5348), 1, + STATE(5337), 1, sym__abstract_declarator, STATE(7219), 1, sym_ms_based_modifier, - ACTIONS(5348), 2, + ACTIONS(5352), 2, anon_sym_COMMA, - anon_sym_GT2, - STATE(4393), 2, + anon_sym_RPAREN, + STATE(4401), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(6970), 2, @@ -307211,10 +308827,217 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [94799] = 3, + [95225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3899), 18, + ACTIONS(4124), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(4122), 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, + [95279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5372), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(5374), 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, + [95333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3684), 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, + [95387] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5350), 1, + anon_sym_LT, + STATE(3282), 1, + sym_template_argument_list, + ACTIONS(3542), 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(3537), 30, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [95447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3913), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -307233,7 +309056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(3897), 28, + ACTIONS(3911), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -307262,10 +309085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [94853] = 3, + [95501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5367), 18, + ACTIONS(3580), 18, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -307284,7 +309107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - ACTIONS(5369), 28, + ACTIONS(3582), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -307313,10 +309136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [94907] = 3, + [95555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3736), 18, + ACTIONS(3722), 18, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -307335,7 +309158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - ACTIONS(3738), 28, + ACTIONS(3727), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -307364,10 +309187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [94961] = 3, + [95609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3740), 18, + ACTIONS(4114), 18, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -307386,7 +309209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - ACTIONS(3742), 28, + ACTIONS(4112), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -307415,10 +309238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [95015] = 3, + [95663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3744), 18, + ACTIONS(3576), 18, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -307437,7 +309260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - ACTIONS(3746), 28, + ACTIONS(3578), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -307466,315 +309289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [95069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 18, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3752), 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, - [95123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3758), 18, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3760), 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, - [95177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2563), 18, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(2565), 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, - [95231] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 18, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3764), 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, - [95285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3793), 18, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3795), 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, - [95339] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(5371), 1, - anon_sym_LT, - STATE(3299), 1, - sym_template_argument_list, - ACTIONS(3534), 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(4041), 29, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [95398] = 23, + [95717] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -307787,33 +309302,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(5373), 1, + ACTIONS(5376), 1, sym_identifier, - ACTIONS(5375), 1, + ACTIONS(5378), 1, anon_sym_STAR, - ACTIONS(5377), 1, + ACTIONS(5380), 1, anon_sym_AMP_AMP, - ACTIONS(5379), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5381), 1, + ACTIONS(5384), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - STATE(4390), 1, + STATE(4383), 1, sym_ms_unaligned_ptr_modifier, STATE(4962), 1, sym__scope_resolution, - STATE(5306), 1, + STATE(5303), 1, sym__declarator, STATE(6725), 1, sym_ms_based_modifier, ACTIONS(2903), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3260), 2, + STATE(3261), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3614), 2, + STATE(3591), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(6970), 2, @@ -307844,7 +309359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [95491] = 23, + [95810] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -307857,995 +309372,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4207), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(4978), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - ACTIONS(5385), 1, + ACTIONS(5388), 1, anon_sym_STAR, - ACTIONS(5387), 1, + ACTIONS(5390), 1, anon_sym_AMP_AMP, - ACTIONS(5389), 1, + ACTIONS(5392), 1, anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4992), 1, - sym__scope_resolution, - STATE(5360), 1, - sym__declarator, - STATE(6734), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3258), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3629), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [95584] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4992), 1, - sym__scope_resolution, - STATE(5324), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3270), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3610), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [95677] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(5371), 1, - anon_sym_LT, - STATE(3299), 1, - sym_template_argument_list, - ACTIONS(3684), 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(3679), 29, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [95736] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5385), 1, - anon_sym_STAR, - ACTIONS(5387), 1, - anon_sym_AMP_AMP, - ACTIONS(5389), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4992), 1, - sym__scope_resolution, - STATE(5360), 1, - sym__declarator, - STATE(6734), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3629), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4290), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [95829] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4992), 1, - sym__scope_resolution, - STATE(5324), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3610), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4290), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [95922] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5391), 1, - anon_sym_STAR, - ACTIONS(5393), 1, - anon_sym_AMP_AMP, - ACTIONS(5395), 1, - anon_sym_AMP, - STATE(4390), 1, + STATE(4383), 1, sym_ms_unaligned_ptr_modifier, STATE(4973), 1, sym__scope_resolution, - STATE(5162), 1, - sym__declarator, - STATE(7219), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3644), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4290), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [96015] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5397), 1, - anon_sym_STAR, - ACTIONS(5399), 1, - anon_sym_AMP_AMP, - ACTIONS(5401), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4973), 1, - sym__scope_resolution, - STATE(5115), 1, + STATE(5088), 1, sym__declarator, STATE(6665), 1, sym_ms_based_modifier, ACTIONS(2903), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3622), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4290), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [96108] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4992), 1, - sym__scope_resolution, - STATE(5321), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, STATE(3249), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3624), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [96201] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5385), 1, - anon_sym_STAR, - ACTIONS(5387), 1, - anon_sym_AMP_AMP, - ACTIONS(5389), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4992), 1, - sym__scope_resolution, - STATE(5357), 1, - sym__declarator, - STATE(6734), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3248), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3625), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [96294] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4973), 1, - sym__scope_resolution, - STATE(5108), 1, - sym__declarator, - STATE(7048), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3256), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3623), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [96387] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5391), 1, - anon_sym_STAR, - ACTIONS(5393), 1, - anon_sym_AMP_AMP, - ACTIONS(5395), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4973), 1, - sym__scope_resolution, - STATE(5180), 1, - sym__declarator, - STATE(7219), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3250), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3638), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [96480] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4973), 1, - sym__scope_resolution, - STATE(5112), 1, - sym__declarator, - STATE(7048), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3619), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4290), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [96573] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4973), 1, - sym__scope_resolution, - STATE(5108), 1, - sym__declarator, - STATE(7048), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3623), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4290), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [96666] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5385), 1, - anon_sym_STAR, - ACTIONS(5387), 1, - anon_sym_AMP_AMP, - ACTIONS(5389), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4992), 1, - sym__scope_resolution, - STATE(5363), 1, - sym__declarator, - STATE(6734), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3635), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4290), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [96759] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4973), 1, - sym__scope_resolution, - STATE(5102), 1, - sym__declarator, - STATE(7048), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3257), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, STATE(3609), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, @@ -308877,7 +309429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [96852] = 23, + [95903] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -308890,33 +309442,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(5373), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(5375), 1, - anon_sym_STAR, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_AMP, - ACTIONS(5381), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - STATE(4390), 1, + ACTIONS(5388), 1, + anon_sym_STAR, + ACTIONS(5390), 1, + anon_sym_AMP_AMP, + ACTIONS(5392), 1, + anon_sym_AMP, + STATE(4383), 1, sym_ms_unaligned_ptr_modifier, - STATE(4962), 1, + STATE(4973), 1, sym__scope_resolution, - STATE(5303), 1, + STATE(5088), 1, sym__declarator, - STATE(6725), 1, + STATE(6665), 1, sym_ms_based_modifier, ACTIONS(2903), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3595), 2, + STATE(3609), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4290), 2, + STATE(4271), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, STATE(6970), 2, @@ -308947,41 +309499,56 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [96945] = 5, + [95996] = 23, ACTIONS(3), 1, sym_comment, - STATE(3261), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5409), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3931), 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(3929), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(47), 1, anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(5388), 1, + anon_sym_STAR, + ACTIONS(5390), 1, + anon_sym_AMP_AMP, + ACTIONS(5392), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5115), 1, + sym__declarator, + STATE(6665), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3626), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -308990,16 +309557,509 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96089] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, anon_sym_template, + ACTIONS(1501), 1, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [97002] = 23, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5394), 1, + anon_sym_STAR, + ACTIONS(5396), 1, + anon_sym_AMP_AMP, + ACTIONS(5398), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5180), 1, + sym__declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3253), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3656), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96182] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5108), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3256), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3630), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96275] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5406), 1, + anon_sym_STAR, + ACTIONS(5408), 1, + anon_sym_AMP_AMP, + ACTIONS(5410), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5360), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3254), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3637), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96368] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5394), 1, + anon_sym_STAR, + ACTIONS(5396), 1, + anon_sym_AMP_AMP, + ACTIONS(5398), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5162), 1, + sym__declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3653), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96461] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5406), 1, + anon_sym_STAR, + ACTIONS(5408), 1, + anon_sym_AMP_AMP, + ACTIONS(5410), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5363), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3639), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96554] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5313), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3603), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96647] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5112), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3629), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96740] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -309018,13 +310078,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3110), 1, anon_sym_AMP, - ACTIONS(4207), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(4710), 1, + ACTIONS(4752), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, - ACTIONS(5348), 1, + ACTIONS(5352), 1, anon_sym_RPAREN, STATE(4350), 1, sym_parameter_list, @@ -309036,7 +310096,7 @@ static const uint16_t ts_small_parse_table[] = { sym__abstract_declarator, STATE(6985), 1, sym_ms_based_modifier, - STATE(4393), 2, + STATE(4401), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(6970), 2, @@ -309069,7 +310129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [97095] = 23, + [96833] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -309082,33 +310142,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4698), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(4708), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - ACTIONS(5397), 1, + ACTIONS(5400), 1, anon_sym_STAR, - ACTIONS(5399), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(5401), 1, + ACTIONS(5404), 1, anon_sym_AMP, - STATE(4390), 1, + STATE(4383), 1, sym_ms_unaligned_ptr_modifier, STATE(4973), 1, sym__scope_resolution, - STATE(5157), 1, + STATE(5108), 1, sym__declarator, - STATE(6665), 1, + STATE(7048), 1, sym_ms_based_modifier, ACTIONS(2903), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3268), 2, + STATE(3630), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4271), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3617), 2, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96926] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5376), 1, + sym_identifier, + ACTIONS(5378), 1, + anon_sym_STAR, + ACTIONS(5380), 1, + anon_sym_AMP_AMP, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4962), 1, + sym__scope_resolution, + STATE(5303), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3591), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [97019] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5102), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3258), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3614), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(6970), 2, @@ -309139,7 +310339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [97188] = 23, + [97112] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -309152,19 +310352,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(5373), 1, + ACTIONS(5376), 1, sym_identifier, - ACTIONS(5375), 1, + ACTIONS(5378), 1, anon_sym_STAR, - ACTIONS(5377), 1, + ACTIONS(5380), 1, anon_sym_AMP_AMP, - ACTIONS(5379), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5381), 1, + ACTIONS(5384), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - STATE(4390), 1, + STATE(4383), 1, sym_ms_unaligned_ptr_modifier, STATE(4962), 1, sym__scope_resolution, @@ -309178,7 +310378,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3602), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4290), 2, + STATE(4271), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, STATE(6970), 2, @@ -309209,7 +310409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [97281] = 23, + [97205] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -309222,33 +310422,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(5373), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(5375), 1, - anon_sym_STAR, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_AMP, - ACTIONS(5381), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - STATE(4390), 1, + ACTIONS(5388), 1, + anon_sym_STAR, + ACTIONS(5390), 1, + anon_sym_AMP_AMP, + ACTIONS(5392), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5157), 1, + sym__declarator, + STATE(6665), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3248), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3621), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [97298] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + ACTIONS(5416), 1, + sym_auto, + ACTIONS(5418), 1, + anon_sym_decltype, + STATE(3451), 1, + sym_decltype_auto, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5412), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3314), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5414), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + [97371] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5406), 1, + anon_sym_STAR, + ACTIONS(5408), 1, + anon_sym_AMP_AMP, + ACTIONS(5410), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5360), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3637), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [97464] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5376), 1, + sym_identifier, + ACTIONS(5378), 1, + anon_sym_STAR, + ACTIONS(5380), 1, + anon_sym_AMP_AMP, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + STATE(4383), 1, sym_ms_unaligned_ptr_modifier, STATE(4962), 1, sym__scope_resolution, - STATE(5303), 1, + STATE(5306), 1, sym__declarator, STATE(6725), 1, sym_ms_based_modifier, ACTIONS(2903), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3264), 2, + STATE(3259), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3595), 2, + STATE(3646), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(6970), 2, @@ -309279,7 +310679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [97374] = 23, + [97557] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -309292,229 +310692,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4698), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(4708), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - ACTIONS(5391), 1, + ACTIONS(5394), 1, anon_sym_STAR, - ACTIONS(5393), 1, + ACTIONS(5396), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, + ACTIONS(5398), 1, anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4973), 1, - sym__scope_resolution, - STATE(5167), 1, - sym__declarator, - STATE(7219), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3639), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4290), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [97467] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5397), 1, - anon_sym_STAR, - ACTIONS(5399), 1, - anon_sym_AMP_AMP, - ACTIONS(5401), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4973), 1, - sym__scope_resolution, - STATE(5088), 1, - sym__declarator, - STATE(6665), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3251), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3608), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [97560] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5397), 1, - anon_sym_STAR, - ACTIONS(5399), 1, - anon_sym_AMP_AMP, - ACTIONS(5401), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4973), 1, - sym__scope_resolution, - STATE(5088), 1, - sym__declarator, - STATE(6665), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3608), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4290), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [97653] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5391), 1, - anon_sym_STAR, - ACTIONS(5393), 1, - anon_sym_AMP_AMP, - ACTIONS(5395), 1, - anon_sym_AMP, - STATE(4390), 1, + STATE(4383), 1, sym_ms_unaligned_ptr_modifier, STATE(4973), 1, sym__scope_resolution, @@ -309525,10 +310715,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2903), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3266), 2, + STATE(3269), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3644), 2, + STATE(3653), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(6970), 2, @@ -309559,7 +310749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [97746] = 23, + [97650] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -309578,27 +310768,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(4207), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(4978), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - STATE(4390), 1, + STATE(4383), 1, sym_ms_unaligned_ptr_modifier, STATE(4992), 1, sym__scope_resolution, - STATE(5313), 1, + STATE(5324), 1, sym__declarator, STATE(6985), 1, sym_ms_based_modifier, ACTIONS(2903), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3603), 2, + STATE(3255), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3611), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4290), 2, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [97743] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5321), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3624), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [97836] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5394), 1, + anon_sym_STAR, + ACTIONS(5396), 1, + anon_sym_AMP_AMP, + ACTIONS(5398), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5167), 1, + sym__declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3655), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4271), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, STATE(6970), 2, @@ -309629,197 +310959,56 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [97839] = 11, + [97929] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(5066), 1, - sym_auto, - ACTIONS(5068), 1, - anon_sym_decltype, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(5414), 1, - anon_sym_LBRACK, - STATE(2852), 1, - sym_decltype_auto, - STATE(3381), 1, - sym_new_declarator, - STATE(3470), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4053), 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(4051), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [97907] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - STATE(3299), 1, - sym_template_argument_list, - ACTIONS(4187), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4185), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [97963] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(5357), 1, - anon_sym_LT, - STATE(2343), 1, - sym_template_argument_list, - ACTIONS(3508), 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(3516), 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_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_DASH_GT, - sym_auto, - anon_sym_decltype, - [98021] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - ACTIONS(5420), 1, - sym_auto, - ACTIONS(5422), 1, - anon_sym_decltype, - STATE(3455), 1, - sym_decltype_auto, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5416), 6, - anon_sym_AMP, + ACTIONS(47), 1, anon_sym___based, - anon_sym_LBRACK, - sym_identifier, + ACTIONS(976), 1, anon_sym_template, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(4219), 8, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5406), 1, + anon_sym_STAR, + ACTIONS(5408), 1, + anon_sym_AMP_AMP, + ACTIONS(5410), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5357), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3264), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3650), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -309828,7 +311017,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3332), 8, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [98022] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5324), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3611), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [98115] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + ACTIONS(5416), 1, + sym_auto, + ACTIONS(5418), 1, + anon_sym_decltype, + STATE(3451), 1, + sym_decltype_auto, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5420), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3315), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -309837,7 +311148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual_function_specifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(5418), 10, + ACTIONS(5422), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -309848,7 +311159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_EQ, anon_sym_GT2, - [98093] = 11, + [98188] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1469), 1, @@ -309857,64 +311168,18 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(5068), 1, anon_sym_decltype, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(5414), 1, - anon_sym_LBRACK, - STATE(2852), 1, - sym_decltype_auto, - STATE(3373), 1, - sym_new_declarator, - STATE(3458), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4047), 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(4045), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [98161] = 6, - ACTIONS(3), 1, - sym_comment, ACTIONS(5424), 1, - anon_sym_COLON, - STATE(2662), 1, - sym__enum_base_clause, - STATE(2812), 1, - sym_enumerator_list, - ACTIONS(4168), 9, + anon_sym_LPAREN2, + ACTIONS(5426), 1, + anon_sym_LBRACK, + STATE(2854), 1, + sym_decltype_auto, + STATE(3404), 1, + sym_new_declarator, + STATE(3522), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4069), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -309924,11 +311189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4166), 32, + ACTIONS(4067), 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, @@ -309940,10 +311204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -309955,9 +311216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [98219] = 11, + [98256] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1469), 1, @@ -309966,18 +311225,18 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(5068), 1, anon_sym_decltype, - ACTIONS(5412), 1, + ACTIONS(5424), 1, anon_sym_LPAREN2, - ACTIONS(5414), 1, + ACTIONS(5426), 1, anon_sym_LBRACK, - STATE(2852), 1, + STATE(2854), 1, sym_decltype_auto, - STATE(3384), 1, + STATE(3473), 1, sym_new_declarator, - STATE(3429), 2, + STATE(3528), 2, sym_argument_list, sym_initializer_list, - ACTIONS(4064), 9, + ACTIONS(4031), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -309987,7 +311246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4062), 26, + ACTIONS(4027), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -310014,94 +311273,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [98287] = 11, + [98324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(5066), 1, - sym_auto, - ACTIONS(5068), 1, - anon_sym_decltype, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(5414), 1, - anon_sym_LBRACK, - STATE(2852), 1, - sym_decltype_auto, - STATE(3382), 1, - sym_new_declarator, - STATE(3519), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4027), 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(4023), 26, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4116), 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_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_DASH_GT, - [98355] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4215), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - ACTIONS(5420), 1, - sym_auto, - ACTIONS(5422), 1, - anon_sym_decltype, - STATE(3455), 1, - sym_decltype_auto, - ACTIONS(4209), 5, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4118), 30, + anon_sym_AMP, 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_thread_local, - ACTIONS(5426), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4219), 8, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -310110,345 +311312,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3360), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5428), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - [98427] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5424), 1, anon_sym_COLON, - STATE(2643), 1, - sym__enum_base_clause, - STATE(2763), 1, - sym_enumerator_list, - ACTIONS(4162), 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(4160), 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_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_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - [98485] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [98378] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, + ACTIONS(5428), 1, + anon_sym_LBRACE, ACTIONS(5430), 1, - anon_sym_LT, - STATE(2824), 1, - sym_template_argument_list, - ACTIONS(3679), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_GT, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3684), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [98542] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4086), 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(4088), 29, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [98595] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3746), 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(3744), 29, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [98646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 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(4071), 29, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [98697] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - STATE(3482), 1, - sym_field_declaration_list, - STATE(5789), 1, - sym_virtual_specifier, - STATE(6285), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4000), 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(4002), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [98760] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - STATE(3495), 1, + STATE(3497), 1, sym_field_declaration_list, STATE(5593), 1, sym_virtual_specifier, STATE(6580), 1, sym_base_class_clause, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(3972), 12, + ACTIONS(4021), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -310461,7 +311352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(3974), 24, + ACTIONS(4023), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -310472,6 +311363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -310486,17 +311378,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [98823] = 3, + [98442] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3742), 14, + ACTIONS(5434), 1, + sym_identifier, + ACTIONS(5439), 1, + sym_primitive_type, + STATE(3235), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5437), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3944), 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, @@ -310504,7 +311406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(3740), 29, + ACTIONS(3946), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -310515,6 +311417,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [98502] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + STATE(3282), 1, + sym_template_argument_list, + ACTIONS(4201), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4199), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [98558] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5441), 1, + anon_sym_LT, + STATE(3282), 1, + sym_template_argument_list, + ACTIONS(3469), 11, + 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, + ACTIONS(4063), 30, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -310534,180 +311534,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [98874] = 9, + [98616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - STATE(3472), 1, - sym_field_declaration_list, - STATE(5769), 1, - sym_virtual_specifier, - STATE(6274), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3990), 12, + ACTIONS(3708), 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_EQ, - anon_sym_GT2, - ACTIONS(3992), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [98937] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5439), 1, - sym_identifier, - ACTIONS(5444), 1, - sym_primitive_type, - STATE(3261), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5442), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3946), 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(3948), 23, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [98996] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(5446), 1, - anon_sym_LT, - STATE(2824), 1, - sym_template_argument_list, - ACTIONS(4041), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3534), 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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3706), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [99053] = 9, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [98668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(3700), 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, - ACTIONS(5435), 1, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3698), 30, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - STATE(3430), 1, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [98720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 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(3722), 30, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [98772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3684), 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(3682), 30, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [98824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3582), 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(3580), 30, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [98876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3578), 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(3576), 30, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [98928] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + STATE(3505), 1, + sym_field_declaration_list, + STATE(5618), 1, + sym_virtual_specifier, + STATE(6564), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3989), 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(3991), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [98992] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + STATE(3409), 1, sym_field_declaration_list, STATE(5734), 1, sym_virtual_specifier, STATE(6494), 1, sym_base_class_clause, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(4011), 12, + ACTIONS(3995), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -310720,7 +311912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4013), 24, + ACTIONS(3997), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -310731,6 +311923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -310745,23 +311938,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [99116] = 9, + [99056] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - STATE(3512), 1, + STATE(3411), 1, sym_field_declaration_list, - STATE(5621), 1, + STATE(5782), 1, sym_virtual_specifier, - STATE(6550), 1, + STATE(6544), 1, sym_base_class_clause, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(3986), 12, + ACTIONS(3999), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -310774,7 +311967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(3988), 24, + ACTIONS(4001), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -310785,6 +311978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -310799,16 +311993,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [99179] = 6, + [99120] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + STATE(3442), 1, + sym_field_declaration_list, + STATE(5769), 1, + sym_virtual_specifier, + STATE(6274), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3975), 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(5448), 1, - anon_sym_LT, - STATE(3299), 1, - sym_template_argument_list, - ACTIONS(3684), 11, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3977), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [99184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4112), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -310818,9 +312061,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3679), 29, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4114), 30, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -310831,6 +312077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -310853,333 +312100,20 @@ static const uint16_t ts_small_parse_table[] = { [99236] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - STATE(3428), 1, - sym_field_declaration_list, - STATE(5765), 1, - sym_virtual_specifier, - STATE(6323), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3982), 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(3984), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [99299] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(5066), 1, - sym_auto, - ACTIONS(5068), 1, - anon_sym_decltype, - ACTIONS(5414), 1, - anon_sym_LBRACK, - ACTIONS(5450), 1, - anon_sym_LPAREN2, - STATE(2852), 1, - sym_decltype_auto, - STATE(3491), 1, - sym_new_declarator, - STATE(3519), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4027), 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(4023), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_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_DASH_GT, - [99366] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(5448), 1, - anon_sym_LT, - STATE(3299), 1, - sym_template_argument_list, - ACTIONS(3534), 11, - 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, - ACTIONS(4041), 29, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4086), 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(4088), 29, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99474] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(5066), 1, - sym_auto, - ACTIONS(5068), 1, - anon_sym_decltype, - ACTIONS(5414), 1, - anon_sym_LBRACK, - ACTIONS(5450), 1, - anon_sym_LPAREN2, - STATE(2852), 1, - sym_decltype_auto, - STATE(3434), 1, - sym_new_declarator, - STATE(3429), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4064), 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(4062), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_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_DASH_GT, - [99541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3771), 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(3766), 29, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99592] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - STATE(3439), 1, + STATE(3413), 1, sym_field_declaration_list, STATE(5540), 1, sym_virtual_specifier, STATE(6566), 1, sym_base_class_clause, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(4019), 12, + ACTIONS(4003), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311192,7 +312126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4021), 24, + ACTIONS(4005), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -311203,6 +312137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -311217,574 +312152,862 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [99655] = 4, + [99300] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(4086), 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(4088), 29, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99708] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - STATE(3433), 1, - sym_field_declaration_list, - STATE(5782), 1, - sym_virtual_specifier, - STATE(6544), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4015), 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(4017), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [99771] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(5066), 1, - sym_auto, - ACTIONS(5068), 1, - anon_sym_decltype, - ACTIONS(5414), 1, - anon_sym_LBRACK, - ACTIONS(5450), 1, - anon_sym_LPAREN2, - STATE(2852), 1, - sym_decltype_auto, - STATE(3525), 1, - sym_new_declarator, - STATE(3470), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4053), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(5344), 1, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4051), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_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_DASH_GT, - [99838] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3795), 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(3793), 29, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99889] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - STATE(3502), 1, - sym_field_declaration_list, - STATE(5618), 1, - sym_virtual_specifier, - STATE(6564), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4007), 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(4009), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [99952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3738), 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(3736), 29, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3764), 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(3762), 29, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3760), 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(3758), 29, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3752), 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(3750), 29, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100156] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(5066), 1, - sym_auto, - ACTIONS(5068), 1, - anon_sym_decltype, - ACTIONS(5414), 1, - anon_sym_LBRACK, - ACTIONS(5450), 1, - anon_sym_LPAREN2, - STATE(2852), 1, - sym_decltype_auto, - STATE(3464), 1, - sym_new_declarator, - STATE(3458), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4047), 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(4045), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_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_DASH_GT, - [100223] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4092), 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(4094), 29, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100276] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(5448), 1, - anon_sym_LT, - STATE(3299), 1, + STATE(2398), 1, sym_template_argument_list, - ACTIONS(4185), 12, + ACTIONS(3450), 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(3455), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [99358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3611), 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(3609), 30, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [99410] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5441), 1, + anon_sym_LT, + STATE(3282), 1, + sym_template_argument_list, + ACTIONS(3542), 11, + 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, + ACTIONS(3537), 30, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [99468] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5443), 1, + anon_sym_COLON, + STATE(2664), 1, + sym__enum_base_clause, + STATE(2816), 1, + sym_enumerator_list, + ACTIONS(4217), 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(4215), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [99526] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(5426), 1, + anon_sym_LBRACK, + STATE(2854), 1, + sym_decltype_auto, + STATE(3408), 1, + sym_new_declarator, + STATE(3516), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4050), 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(4048), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [99594] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + STATE(3499), 1, + sym_field_declaration_list, + STATE(5621), 1, + sym_virtual_specifier, + STATE(6550), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4017), 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(4019), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [99658] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + STATE(3446), 1, + sym_field_declaration_list, + STATE(5789), 1, + sym_virtual_specifier, + STATE(6285), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3985), 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(3987), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [99722] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(5426), 1, + anon_sym_LBRACK, + STATE(2854), 1, + sym_decltype_auto, + STATE(3429), 1, + sym_new_declarator, + STATE(3540), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4057), 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(4055), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [99790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3692), 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(3690), 30, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [99842] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4122), 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(4124), 30, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [99896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4122), 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(4124), 30, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [99948] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5443), 1, + anon_sym_COLON, + STATE(2646), 1, + sym__enum_base_clause, + STATE(2765), 1, + sym_enumerator_list, + ACTIONS(4205), 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(4203), 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_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_DASH_GT, + sym_auto, + anon_sym_decltype, + [100006] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + STATE(3492), 1, + sym_field_declaration_list, + STATE(5765), 1, + sym_virtual_specifier, + STATE(6323), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4013), 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(4015), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [100070] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4122), 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(4124), 30, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100124] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(5426), 1, + anon_sym_LBRACK, + ACTIONS(5445), 1, + anon_sym_LPAREN2, + STATE(2854), 1, + sym_decltype_auto, + STATE(3520), 1, + sym_new_declarator, + STATE(3516), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4050), 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(4048), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_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_DASH_GT, + [100191] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(5426), 1, + anon_sym_LBRACK, + ACTIONS(5445), 1, + anon_sym_LPAREN2, + STATE(2854), 1, + sym_decltype_auto, + STATE(3510), 1, + sym_new_declarator, + STATE(3540), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4057), 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(4055), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_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_DASH_GT, + [100258] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5441), 1, + anon_sym_LT, + STATE(3282), 1, + sym_template_argument_list, + ACTIONS(4199), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311797,7 +313020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4187), 27, + ACTIONS(4201), 28, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -311808,6 +313031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -311825,7 +313049,524 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [100332] = 25, + [100315] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(5426), 1, + anon_sym_LBRACK, + ACTIONS(5445), 1, + anon_sym_LPAREN2, + STATE(2854), 1, + sym_decltype_auto, + STATE(3559), 1, + sym_new_declarator, + STATE(3522), 2, + sym_argument_list, + sym_initializer_list, + 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(4067), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_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_DASH_GT, + [100382] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(5426), 1, + anon_sym_LBRACK, + ACTIONS(5445), 1, + anon_sym_LPAREN2, + STATE(2854), 1, + sym_decltype_auto, + STATE(3518), 1, + sym_new_declarator, + STATE(3528), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4031), 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(4027), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_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_DASH_GT, + [100449] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5447), 1, + anon_sym_LT, + STATE(2853), 1, + sym_template_argument_list, + ACTIONS(3537), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3542), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [100506] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5450), 1, + anon_sym_LT, + STATE(2853), 1, + sym_template_argument_list, + ACTIONS(4063), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3469), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [100563] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5350), 1, + anon_sym_LT, + STATE(3282), 1, + sym_template_argument_list, + ACTIONS(3455), 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(3450), 28, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100620] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5452), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3324), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5454), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + [100684] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5456), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3324), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5458), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + [100748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3073), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3071), 36, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [100798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3077), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3075), 36, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [100848] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5467), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5463), 4, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(5465), 5, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_explicit, + anon_sym_operator, + ACTIONS(5470), 12, + 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_decltype, + anon_sym_typename, + ACTIONS(5460), 19, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_template, + [100904] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -311844,31 +313585,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1499), 1, anon_sym_typename, - ACTIONS(5452), 1, + ACTIONS(5472), 1, sym_identifier, - ACTIONS(5454), 1, + ACTIONS(5474), 1, anon_sym_RPAREN, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(5458), 1, + ACTIONS(5478), 1, sym_primitive_type, - STATE(1909), 1, + STATE(1921), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, + STATE(2685), 1, sym_template_type, - STATE(2779), 1, + STATE(2781), 1, sym_qualified_type_identifier, - STATE(2880), 1, + STATE(2884), 1, sym_decltype_auto, - STATE(4211), 1, + STATE(4195), 1, sym__type_specifier, STATE(5389), 1, sym__scope_resolution, - STATE(6071), 1, + STATE(5837), 1, sym_type_descriptor, STATE(6970), 1, sym_dependent_type_identifier, - STATE(3426), 2, + STATE(3425), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1483), 4, @@ -311885,7 +313626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2877), 8, + STATE(2880), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -311894,27 +313635,27 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [100426] = 11, + [100998] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(3013), 1, anon_sym_LBRACE, - ACTIONS(5332), 1, + ACTIONS(5328), 1, sym_auto, - ACTIONS(5334), 1, + ACTIONS(5330), 1, anon_sym_decltype, - ACTIONS(5460), 1, + ACTIONS(5480), 1, anon_sym_LPAREN2, - ACTIONS(5462), 1, + ACTIONS(5482), 1, anon_sym_LBRACK, - STATE(3173), 1, + STATE(3161), 1, sym_decltype_auto, - STATE(3566), 1, + STATE(3580), 1, sym_new_declarator, - STATE(3833), 2, + STATE(3946), 2, sym_argument_list, sym_initializer_list, - ACTIONS(4053), 11, + ACTIONS(4050), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -311926,7 +313667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4051), 22, + ACTIONS(4048), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -311949,10 +313690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [100492] = 3, + [101064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 17, + ACTIONS(5484), 17, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -311970,7 +313711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - ACTIONS(5466), 25, + ACTIONS(5486), 25, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -311996,27 +313737,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [100542] = 11, + [101114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5332), 36, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [101164] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(3013), 1, anon_sym_LBRACE, - ACTIONS(5332), 1, + ACTIONS(5328), 1, sym_auto, - ACTIONS(5334), 1, + ACTIONS(5330), 1, anon_sym_decltype, - ACTIONS(5460), 1, + ACTIONS(5480), 1, anon_sym_LPAREN2, - ACTIONS(5462), 1, + ACTIONS(5482), 1, anon_sym_LBRACK, - STATE(3173), 1, + STATE(3161), 1, + sym_decltype_auto, + STATE(3566), 1, + sym_new_declarator, + STATE(3863), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4057), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4055), 22, + 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_DASH_GT, + anon_sym_GT2, + [101230] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5495), 1, + anon_sym___attribute__, + ACTIONS(5498), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5501), 1, + anon_sym___declspec, + ACTIONS(5507), 1, + anon_sym_virtual, + ACTIONS(5488), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(5492), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5504), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3324), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5490), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + [101294] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5472), 1, + sym_identifier, + ACTIONS(5476), 1, + anon_sym_COLON_COLON, + ACTIONS(5478), 1, + sym_primitive_type, + ACTIONS(5510), 1, + anon_sym_RPAREN, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(4195), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6071), 1, + sym_type_descriptor, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3425), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [101388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5514), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5512), 36, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [101438] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_LBRACE, + ACTIONS(5328), 1, + sym_auto, + ACTIONS(5330), 1, + anon_sym_decltype, + ACTIONS(5480), 1, + anon_sym_LPAREN2, + ACTIONS(5482), 1, + anon_sym_LBRACK, + STATE(3161), 1, sym_decltype_auto, STATE(3582), 1, sym_new_declarator, - STATE(3983), 2, + STATE(4022), 2, sym_argument_list, sym_initializer_list, - ACTIONS(4047), 11, + ACTIONS(4069), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -312028,7 +314041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4045), 22, + ACTIONS(4067), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -312051,126 +314064,437 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [100608] = 11, + [101504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, - anon_sym_LBRACE, - ACTIONS(5332), 1, - sym_auto, - ACTIONS(5334), 1, - anon_sym_decltype, - ACTIONS(5460), 1, + ACTIONS(5518), 6, anon_sym_LPAREN2, - ACTIONS(5462), 1, - anon_sym_LBRACK, - STATE(3173), 1, - sym_decltype_auto, - STATE(3540), 1, - sym_new_declarator, - STATE(3861), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4027), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4023), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_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_DASH_GT, - anon_sym_GT2, - [100674] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 1, - anon_sym_LBRACE, - ACTIONS(5332), 1, - sym_auto, - ACTIONS(5334), 1, - anon_sym_decltype, - ACTIONS(5460), 1, - anon_sym_LPAREN2, - ACTIONS(5462), 1, - anon_sym_LBRACK, - STATE(3173), 1, - sym_decltype_auto, - STATE(3546), 1, - sym_new_declarator, - STATE(3852), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4064), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4062), 22, - 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_DASH_GT, - anon_sym_GT2, - [100740] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, anon_sym_COLON_COLON, - ACTIONS(5371), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5516), 36, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [101554] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_LBRACE, + ACTIONS(5328), 1, + sym_auto, + ACTIONS(5330), 1, + anon_sym_decltype, + ACTIONS(5480), 1, + anon_sym_LPAREN2, + ACTIONS(5482), 1, + anon_sym_LBRACK, + STATE(3161), 1, + sym_decltype_auto, + STATE(3574), 1, + sym_new_declarator, + STATE(3843), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4031), 11, + anon_sym_DASH, + anon_sym_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(3299), 1, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4027), 22, + 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_DASH_GT, + anon_sym_GT2, + [101620] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5472), 1, + sym_identifier, + ACTIONS(5476), 1, + anon_sym_COLON_COLON, + ACTIONS(5478), 1, + sym_primitive_type, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(4195), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6662), 1, + sym_type_descriptor, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3425), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [101711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 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(4073), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [101760] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5350), 1, + anon_sym_LT, + ACTIONS(5522), 1, + anon_sym_EQ, + STATE(3282), 1, sym_template_argument_list, - ACTIONS(3516), 12, + ACTIONS(5520), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(3469), 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(4063), 28, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + 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_template, + anon_sym_operator, + [101819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4149), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [101868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4078), 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(4080), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [101917] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5472), 1, + sym_identifier, + ACTIONS(5476), 1, + anon_sym_COLON_COLON, + ACTIONS(5478), 1, + sym_primitive_type, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(4195), 1, + sym__type_specifier, + STATE(5067), 1, + sym_type_descriptor, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3425), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [102008] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4340), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -312183,7 +314507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(3508), 27, + ACTIONS(4342), 28, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -312194,6 +314518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -312211,7 +314536,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [100796] = 25, + [102059] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3729), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3734), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_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_DASH_GT, + [102110] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -312230,31 +314602,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1499), 1, anon_sym_typename, - ACTIONS(5452), 1, + ACTIONS(5472), 1, sym_identifier, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(5458), 1, + ACTIONS(5478), 1, sym_primitive_type, - ACTIONS(5468), 1, - anon_sym_RPAREN, - STATE(1909), 1, + STATE(1921), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, + STATE(2685), 1, sym_template_type, - STATE(2779), 1, + STATE(2781), 1, sym_qualified_type_identifier, - STATE(2880), 1, + STATE(2884), 1, sym_decltype_auto, - STATE(4211), 1, + STATE(4195), 1, sym__type_specifier, STATE(5389), 1, sym__scope_resolution, - STATE(5837), 1, + STATE(6313), 1, sym_type_descriptor, STATE(6970), 1, sym_dependent_type_identifier, - STATE(3426), 2, + STATE(3425), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1483), 4, @@ -312271,7 +314641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2877), 8, + STATE(2880), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -312280,312 +314650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [100890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4139), 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(4141), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [100939] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5477), 1, - anon_sym___attribute__, - ACTIONS(5480), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5483), 1, - anon_sym___declspec, - ACTIONS(5489), 1, - anon_sym_virtual, - ACTIONS(5474), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5470), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5486), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3322), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5472), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - [101002] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3771), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3773), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3778), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_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_DASH_GT, - [101053] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(3835), 1, - anon_sym_COLON_COLON, - ACTIONS(5492), 1, - anon_sym_enum, - ACTIONS(5494), 1, - anon_sym_class, - ACTIONS(5496), 1, - anon_sym_struct, - ACTIONS(5498), 1, - anon_sym_union, - ACTIONS(5500), 1, - anon_sym_typename, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3522), 1, - sym_decltype_auto, - STATE(4118), 1, - sym__type_specifier, - STATE(5067), 1, - sym_type_descriptor, - STATE(5385), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3405), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [101144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4099), 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(4101), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [101193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4189), 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(4191), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [101242] = 24, + [102201] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -312604,29 +314669,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1499), 1, anon_sym_typename, - ACTIONS(5452), 1, + ACTIONS(5472), 1, sym_identifier, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(5458), 1, + ACTIONS(5478), 1, sym_primitive_type, - STATE(1909), 1, + STATE(1921), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, + STATE(2685), 1, sym_template_type, - STATE(2779), 1, + STATE(2781), 1, sym_qualified_type_identifier, - STATE(2880), 1, + STATE(2884), 1, sym_decltype_auto, - STATE(4211), 1, + STATE(4195), 1, sym__type_specifier, STATE(5389), 1, sym__scope_resolution, - STATE(6922), 1, - sym_type_descriptor, STATE(6970), 1, sym_dependent_type_identifier, - STATE(3426), 2, + STATE(7224), 1, + sym_type_descriptor, + STATE(3425), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1483), 4, @@ -312643,7 +314708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2877), 8, + STATE(2880), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -312652,7 +314717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [101333] = 24, + [102292] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -312671,798 +314736,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1499), 1, anon_sym_typename, - ACTIONS(5452), 1, + ACTIONS(5472), 1, sym_identifier, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(5458), 1, + ACTIONS(5478), 1, sym_primitive_type, - STATE(1909), 1, + STATE(1921), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, + STATE(2685), 1, sym_template_type, - STATE(2779), 1, + STATE(2781), 1, sym_qualified_type_identifier, - STATE(2880), 1, + STATE(2884), 1, sym_decltype_auto, - STATE(4211), 1, - sym__type_specifier, - STATE(5067), 1, - sym_type_descriptor, - STATE(5389), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3426), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [101424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4156), 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(4158), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [101473] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1487), 1, - anon_sym_enum, - ACTIONS(1489), 1, - anon_sym_class, - ACTIONS(1491), 1, - anon_sym_struct, - ACTIONS(1493), 1, - anon_sym_union, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(1499), 1, - anon_sym_typename, - ACTIONS(5452), 1, - sym_identifier, - ACTIONS(5456), 1, - anon_sym_COLON_COLON, - ACTIONS(5458), 1, - sym_primitive_type, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(4211), 1, - sym__type_specifier, - STATE(5389), 1, - sym__scope_resolution, - STATE(6662), 1, - sym_type_descriptor, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3426), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [101564] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 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(2335), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [101613] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5502), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3322), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5504), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - [101676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4174), 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(4176), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [101725] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5508), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5506), 35, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [101774] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1487), 1, - anon_sym_enum, - ACTIONS(1489), 1, - anon_sym_class, - ACTIONS(1491), 1, - anon_sym_struct, - ACTIONS(1493), 1, - anon_sym_union, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(1499), 1, - anon_sym_typename, - ACTIONS(5452), 1, - sym_identifier, - ACTIONS(5456), 1, - anon_sym_COLON_COLON, - ACTIONS(5458), 1, - sym_primitive_type, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(4211), 1, - sym__type_specifier, - STATE(5389), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(7049), 1, - sym_type_descriptor, - STATE(3426), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [101865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4103), 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(4105), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [101914] = 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), 35, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [101963] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1487), 1, - anon_sym_enum, - ACTIONS(1489), 1, - anon_sym_class, - ACTIONS(1491), 1, - anon_sym_struct, - ACTIONS(1493), 1, - anon_sym_union, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(1499), 1, - anon_sym_typename, - ACTIONS(5452), 1, - sym_identifier, - ACTIONS(5456), 1, - anon_sym_COLON_COLON, - ACTIONS(5458), 1, - sym_primitive_type, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(4211), 1, - sym__type_specifier, - STATE(5389), 1, - sym__scope_resolution, - STATE(6819), 1, - sym_type_descriptor, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3426), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [102054] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1615), 1, - sym_primitive_type, - ACTIONS(1617), 1, - anon_sym_enum, - ACTIONS(1619), 1, - anon_sym_class, - ACTIONS(1621), 1, - anon_sym_struct, - ACTIONS(1623), 1, - anon_sym_union, - ACTIONS(1625), 1, - sym_auto, - ACTIONS(1627), 1, - anon_sym_decltype, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(4658), 1, - anon_sym_COLON_COLON, - ACTIONS(5516), 1, - anon_sym_typename, - STATE(3418), 1, - sym_template_type, - STATE(4026), 1, - sym_decltype_auto, - STATE(4041), 1, - sym_qualified_type_identifier, - STATE(4073), 1, - sym__type_specifier, - STATE(4175), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5067), 1, - sym_type_descriptor, - STATE(5381), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3390), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5514), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4019), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [102145] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(2871), 1, - anon_sym_enum, - ACTIONS(2873), 1, - anon_sym_class, - ACTIONS(2875), 1, - anon_sym_struct, - ACTIONS(2877), 1, - anon_sym_union, - ACTIONS(2879), 1, - anon_sym_typename, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3522), 1, - sym_decltype_auto, - STATE(4191), 1, - sym__type_specifier, - STATE(5067), 1, - sym_type_descriptor, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3404), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [102236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5340), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5338), 35, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [102285] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1487), 1, - anon_sym_enum, - ACTIONS(1489), 1, - anon_sym_class, - ACTIONS(1491), 1, - anon_sym_struct, - ACTIONS(1493), 1, - anon_sym_union, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(1499), 1, - anon_sym_typename, - ACTIONS(5452), 1, - sym_identifier, - ACTIONS(5456), 1, - anon_sym_COLON_COLON, - ACTIONS(5458), 1, - sym_primitive_type, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(4211), 1, + STATE(4195), 1, sym__type_specifier, STATE(5389), 1, sym__scope_resolution, @@ -313470,7 +314758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dependent_type_identifier, STATE(7155), 1, sym_type_descriptor, - STATE(3426), 2, + STATE(3425), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1483), 4, @@ -313487,7 +314775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2877), 8, + STATE(2880), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -313496,98 +314784,73 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [102376] = 3, + [102383] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4170), 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(4172), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [102425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 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(4151), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5472), 1, + sym_identifier, + ACTIONS(5476), 1, + anon_sym_COLON_COLON, + ACTIONS(5478), 1, + sym_primitive_type, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(4195), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(7049), 1, + sym_type_descriptor, + STATE(3425), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, [102474] = 24, ACTIONS(3), 1, sym_comment, @@ -313597,31 +314860,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2859), 1, + ACTIONS(2855), 1, sym_identifier, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(2869), 1, + ACTIONS(2865), 1, sym_primitive_type, - ACTIONS(2873), 1, - anon_sym_class, - ACTIONS(2875), 1, - anon_sym_struct, - ACTIONS(2877), 1, - anon_sym_union, - ACTIONS(5518), 1, + ACTIONS(2867), 1, anon_sym_enum, - ACTIONS(5520), 1, + ACTIONS(2869), 1, + anon_sym_class, + ACTIONS(2871), 1, + anon_sym_struct, + ACTIONS(2873), 1, + anon_sym_union, + ACTIONS(2875), 1, anon_sym_typename, - STATE(3418), 1, + STATE(3336), 1, sym_template_type, - STATE(3479), 1, + STATE(3443), 1, sym_qualified_type_identifier, - STATE(3505), 1, + STATE(3479), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3522), 1, + STATE(3481), 1, sym_decltype_auto, - STATE(4198), 1, + STATE(4213), 1, sym__type_specifier, STATE(5067), 1, sym_type_descriptor, @@ -313629,10 +314892,10 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(3385), 2, + STATE(3509), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2867), 4, + ACTIONS(2863), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -313646,7 +314909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3504), 8, + STATE(3448), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -313655,53 +314918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [102565] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4137), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [102614] = 24, + [102565] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -313720,29 +314937,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1499), 1, anon_sym_typename, - ACTIONS(5452), 1, + ACTIONS(5472), 1, sym_identifier, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(5458), 1, + ACTIONS(5478), 1, sym_primitive_type, - STATE(1909), 1, + STATE(1921), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, + STATE(2685), 1, sym_template_type, - STATE(2779), 1, + STATE(2781), 1, sym_qualified_type_identifier, - STATE(2880), 1, + STATE(2884), 1, sym_decltype_auto, - STATE(4211), 1, + STATE(4195), 1, sym__type_specifier, STATE(5389), 1, sym__scope_resolution, + STATE(6922), 1, + sym_type_descriptor, STATE(6970), 1, sym_dependent_type_identifier, - STATE(7224), 1, - sym_type_descriptor, - STATE(3426), 2, + STATE(3425), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1483), 4, @@ -313759,7 +314976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2877), 8, + STATE(2880), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -313768,7 +314985,112 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [102705] = 24, + [102656] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5426), 1, + anon_sym_LBRACK, + STATE(3431), 1, + sym_new_declarator, + ACTIONS(4659), 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(4657), 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_LBRACE, + anon_sym_RBRACE, + 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_DASH_GT, + [102709] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + ACTIONS(5416), 1, + sym_auto, + ACTIONS(5418), 1, + anon_sym_decltype, + ACTIONS(5524), 1, + anon_sym_SEMI, + STATE(3451), 1, + sym_decltype_auto, + ACTIONS(5422), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5420), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3315), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [102780] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -313787,29 +315109,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1499), 1, anon_sym_typename, - ACTIONS(5452), 1, + ACTIONS(5472), 1, sym_identifier, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(5458), 1, + ACTIONS(5478), 1, sym_primitive_type, - STATE(1909), 1, + STATE(1921), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, + STATE(2685), 1, sym_template_type, - STATE(2779), 1, + STATE(2781), 1, sym_qualified_type_identifier, - STATE(2880), 1, + STATE(2884), 1, sym_decltype_auto, - STATE(4211), 1, + STATE(4195), 1, sym__type_specifier, - STATE(5154), 1, - sym_type_descriptor, STATE(5389), 1, sym__scope_resolution, + STATE(6748), 1, + sym_type_descriptor, STATE(6970), 1, sym_dependent_type_identifier, - STATE(3426), 2, + STATE(3425), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1483), 4, @@ -313826,7 +315148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2877), 8, + STATE(2880), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -313835,62 +315157,16 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [102796] = 3, + [102871] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 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(2327), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5526), 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_DASH_GT, - anon_sym_requires, - [102845] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5522), 1, - anon_sym_COLON, - STATE(3190), 1, + STATE(3183), 1, sym_enumerator_list, - STATE(3435), 1, + STATE(3535), 1, sym__enum_base_clause, - ACTIONS(4162), 11, + ACTIONS(4205), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -313902,7 +315178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4160), 27, + ACTIONS(4203), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -313930,222 +315206,27 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [102900] = 24, + [102926] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1487), 1, - anon_sym_enum, - ACTIONS(1489), 1, - anon_sym_class, - ACTIONS(1491), 1, - anon_sym_struct, - ACTIONS(1493), 1, - anon_sym_union, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(1499), 1, - anon_sym_typename, - ACTIONS(5452), 1, - sym_identifier, - ACTIONS(5456), 1, - anon_sym_COLON_COLON, - ACTIONS(5458), 1, - sym_primitive_type, - STATE(1909), 1, + STATE(3348), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(4211), 1, - sym__type_specifier, - STATE(5389), 1, - sym__scope_resolution, - STATE(6942), 1, - sym_type_descriptor, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3426), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1483), 4, + ACTIONS(5528), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [102991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4137), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(3937), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_requires, - [103040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4117), 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(4119), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [103089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4181), 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(4183), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [103138] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3073), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3071), 35, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(3935), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -314156,6 +315237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -314164,68 +315246,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, anon_sym_operator, - [103187] = 24, + anon_sym_try, + anon_sym_requires, + [102979] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(2017), 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(2015), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [103028] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, ACTIONS(976), 1, anon_sym_template, - ACTIONS(1615), 1, + ACTIONS(2865), 1, sym_primitive_type, - ACTIONS(1625), 1, - sym_auto, - ACTIONS(1627), 1, - anon_sym_decltype, - ACTIONS(2859), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(5524), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(5526), 1, + ACTIONS(5531), 1, anon_sym_enum, - ACTIONS(5528), 1, + ACTIONS(5533), 1, anon_sym_class, - ACTIONS(5530), 1, + ACTIONS(5535), 1, anon_sym_struct, - ACTIONS(5532), 1, + ACTIONS(5537), 1, anon_sym_union, - ACTIONS(5534), 1, + ACTIONS(5539), 1, anon_sym_typename, - STATE(3418), 1, + STATE(3336), 1, sym_template_type, - STATE(4026), 1, - sym_decltype_auto, - STATE(4041), 1, + STATE(3443), 1, sym_qualified_type_identifier, - STATE(4175), 1, + STATE(3479), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4222), 1, + STATE(3481), 1, + sym_decltype_auto, + STATE(4119), 1, sym__type_specifier, STATE(5067), 1, sym_type_descriptor, - STATE(5435), 1, + STATE(5385), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(3386), 2, + STATE(3487), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(5514), 4, + ACTIONS(2863), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -314239,7 +315358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4019), 8, + STATE(3448), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -314248,7 +315367,218 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [103278] = 3, + [103119] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5526), 1, + anon_sym_COLON, + STATE(3168), 1, + sym_enumerator_list, + STATE(3548), 1, + sym__enum_base_clause, + ACTIONS(4217), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4215), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [103174] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2581), 1, + anon_sym_enum, + ACTIONS(2583), 1, + anon_sym_class, + ACTIONS(2585), 1, + anon_sym_struct, + ACTIONS(2587), 1, + anon_sym_union, + ACTIONS(2601), 1, + sym_auto, + ACTIONS(2603), 1, + anon_sym_decltype, + ACTIONS(2605), 1, + anon_sym_typename, + ACTIONS(5541), 1, + sym_identifier, + ACTIONS(5543), 1, + anon_sym_COLON_COLON, + ACTIONS(5545), 1, + sym_primitive_type, + STATE(2373), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3100), 1, + sym_template_type, + STATE(3151), 1, + sym_qualified_type_identifier, + STATE(3195), 1, + sym_decltype_auto, + STATE(4205), 1, + sym__type_specifier, + STATE(5154), 1, + sym_type_descriptor, + STATE(5420), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3397), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2577), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3194), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [103265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 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(4139), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [103314] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5416), 1, + sym_auto, + ACTIONS(5418), 1, + anon_sym_decltype, + STATE(3451), 1, + sym_decltype_auto, + ACTIONS(4336), 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(4338), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [103369] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4143), 9, @@ -314294,165 +315624,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_requires, - [103327] = 24, + [103418] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1487), 1, - anon_sym_enum, - ACTIONS(1489), 1, - anon_sym_class, - ACTIONS(1491), 1, - anon_sym_struct, - ACTIONS(1493), 1, - anon_sym_union, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(1499), 1, - anon_sym_typename, - ACTIONS(5452), 1, - sym_identifier, - ACTIONS(5456), 1, - anon_sym_COLON_COLON, - ACTIONS(5458), 1, - sym_primitive_type, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(4211), 1, - sym__type_specifier, - STATE(5389), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(7117), 1, - sym_type_descriptor, - STATE(3426), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [103418] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1487), 1, - anon_sym_enum, - ACTIONS(1489), 1, - anon_sym_class, - ACTIONS(1491), 1, - anon_sym_struct, - ACTIONS(1493), 1, - anon_sym_union, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(1499), 1, - anon_sym_typename, - ACTIONS(5452), 1, - sym_identifier, - ACTIONS(5456), 1, - anon_sym_COLON_COLON, - ACTIONS(5458), 1, - sym_primitive_type, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(4211), 1, - sym__type_specifier, - STATE(5389), 1, - sym__scope_resolution, - STATE(6748), 1, - sym_type_descriptor, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3426), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [103509] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, + ACTIONS(4165), 1, anon_sym___attribute__, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4221), 1, + ACTIONS(4175), 1, anon_sym_virtual, - ACTIONS(4209), 5, + ACTIONS(5416), 1, + sym_auto, + ACTIONS(5418), 1, + anon_sym_decltype, + ACTIONS(5547), 1, + anon_sym_SEMI, + STATE(3451), 1, + sym_decltype_auto, + ACTIONS(5422), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(4163), 6, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(5536), 6, + anon_sym_input, + ACTIONS(5420), 6, anon_sym_AMP, anon_sym___based, anon_sym_LBRACK, sym_identifier, anon_sym_template, anon_sym_operator, - ACTIONS(4219), 8, + ACTIONS(4173), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -314461,7 +315672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3322), 8, + STATE(3315), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -314470,55 +315681,56 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual_function_specifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(5538), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - [103572] = 6, + [103489] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5547), 2, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5543), 4, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(5545), 5, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_explicit, - anon_sym_operator, - ACTIONS(5550), 12, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(2869), 1, + anon_sym_class, + ACTIONS(2871), 1, + anon_sym_struct, + ACTIONS(2873), 1, + anon_sym_union, + ACTIONS(5549), 1, + anon_sym_enum, + ACTIONS(5551), 1, + anon_sym_typename, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3479), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3481), 1, + sym_decltype_auto, + STATE(4198), 1, + sym__type_specifier, + STATE(5067), 1, + sym_type_descriptor, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3482), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2863), 4, 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_decltype, - anon_sym_typename, - ACTIONS(5540), 18, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -314527,107 +315739,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_template, - [103627] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5522), 1, - anon_sym_COLON, - STATE(3180), 1, - sym_enumerator_list, - STATE(3427), 1, - sym__enum_base_clause, - ACTIONS(4168), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4166), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [103682] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5414), 1, - anon_sym_LBRACK, - STATE(3424), 1, - sym_new_declarator, - ACTIONS(4656), 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(4654), 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_LBRACE, - anon_sym_RBRACE, - 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_DASH_GT, - [103735] = 24, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [103580] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -314646,29 +315767,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1499), 1, anon_sym_typename, - ACTIONS(5452), 1, + ACTIONS(5472), 1, sym_identifier, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(5458), 1, + ACTIONS(5478), 1, sym_primitive_type, - STATE(1909), 1, + STATE(1921), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, + STATE(2685), 1, sym_template_type, - STATE(2779), 1, + STATE(2781), 1, sym_qualified_type_identifier, - STATE(2880), 1, + STATE(2884), 1, sym_decltype_auto, - STATE(4211), 1, + STATE(4195), 1, sym__type_specifier, STATE(5389), 1, sym__scope_resolution, - STATE(6313), 1, + STATE(6942), 1, sym_type_descriptor, STATE(6970), 1, sym_dependent_type_identifier, - STATE(3426), 2, + STATE(3425), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1483), 4, @@ -314685,7 +315806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2877), 8, + STATE(2880), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -314694,1443 +315815,294 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [103826] = 3, + [103671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 6, + ACTIONS(4143), 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(4145), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [103720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 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(4145), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [103769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 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(4092), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [103818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4094), 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(4096), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [103867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4102), 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(4104), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [103916] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + ACTIONS(5416), 1, + sym_auto, + ACTIONS(5418), 1, + anon_sym_decltype, + ACTIONS(5553), 1, + anon_sym_SEMI, + STATE(3451), 1, + sym_decltype_auto, + ACTIONS(5422), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3075), 35, - anon_sym_AMP, + ACTIONS(4163), 6, 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [103875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_input, + ACTIONS(5420), 6, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4137), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [103924] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4113), 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(4115), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [103973] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(5552), 1, - sym_identifier, - ACTIONS(5554), 1, - anon_sym_COLON_COLON, - ACTIONS(5558), 1, - sym_primitive_type, - ACTIONS(5560), 1, - anon_sym_enum, - ACTIONS(5562), 1, - anon_sym_class, - ACTIONS(5564), 1, - anon_sym_struct, - ACTIONS(5566), 1, - anon_sym_union, - ACTIONS(5568), 1, - sym_auto, - ACTIONS(5570), 1, - anon_sym_decltype, - ACTIONS(5572), 1, - anon_sym_typename, - STATE(4139), 1, - sym__type_specifier, - STATE(4279), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4436), 1, - sym_template_type, - STATE(4486), 1, - sym_decltype_auto, - STATE(4489), 1, - sym_qualified_type_identifier, - STATE(5154), 1, - sym_type_descriptor, - STATE(5354), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3420), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5556), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4488), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [104064] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(3835), 1, - anon_sym_COLON_COLON, - ACTIONS(5494), 1, - anon_sym_class, - ACTIONS(5496), 1, - anon_sym_struct, - ACTIONS(5498), 1, - anon_sym_union, - ACTIONS(5574), 1, - anon_sym_enum, - ACTIONS(5576), 1, - anon_sym_typename, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3522), 1, - sym_decltype_auto, - STATE(4079), 1, - sym__type_specifier, - STATE(5067), 1, - sym_type_descriptor, - STATE(5385), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3400), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [104155] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1489), 1, - anon_sym_class, - ACTIONS(1491), 1, - anon_sym_struct, - ACTIONS(1493), 1, - anon_sym_union, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(5452), 1, - sym_identifier, - ACTIONS(5456), 1, - anon_sym_COLON_COLON, - ACTIONS(5458), 1, - sym_primitive_type, - ACTIONS(5578), 1, - anon_sym_enum, - ACTIONS(5580), 1, - anon_sym_typename, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(4276), 1, - sym__type_specifier, - STATE(5154), 1, - sym_type_descriptor, - STATE(5389), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3419), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [104246] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2425), 1, - anon_sym_enum, - ACTIONS(2427), 1, - anon_sym_class, - ACTIONS(2429), 1, - anon_sym_struct, - ACTIONS(2431), 1, - anon_sym_union, - ACTIONS(2445), 1, - sym_auto, - ACTIONS(2447), 1, - anon_sym_decltype, - ACTIONS(2449), 1, - anon_sym_typename, - ACTIONS(5582), 1, - sym_identifier, - ACTIONS(5584), 1, - anon_sym_COLON_COLON, - ACTIONS(5586), 1, - sym_primitive_type, - STATE(2341), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3096), 1, - sym_template_type, - STATE(3152), 1, - sym_decltype_auto, - STATE(3167), 1, - sym_qualified_type_identifier, - STATE(4205), 1, - sym__type_specifier, - STATE(5154), 1, - sym_type_descriptor, - STATE(5420), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3388), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2421), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3153), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [104337] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - sym_literal_suffix, - ACTIONS(3518), 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(3510), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_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_DASH_GT, - [104387] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - STATE(3469), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4620), 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(4618), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [104441] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4942), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(4358), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [104529] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4945), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3374), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [104617] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5420), 1, - sym_auto, - ACTIONS(5422), 1, - anon_sym_decltype, - STATE(3455), 1, - sym_decltype_auto, - ACTIONS(4223), 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(4225), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, sym_identifier, - anon_sym_virtual, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [104671] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4907), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(4358), 2, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3315), 8, + 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(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [104759] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4914), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(4358), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [104847] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4905), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3378), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [104935] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4912), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3377), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [105023] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - STATE(3460), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4524), 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(4522), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [105077] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - STATE(3463), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4624), 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(4622), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [105131] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4926), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(4358), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [105219] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - STATE(3514), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4564), 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(4562), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [105273] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(2873), 1, - anon_sym_class, - ACTIONS(2875), 1, - anon_sym_struct, - ACTIONS(2877), 1, - anon_sym_union, - ACTIONS(5518), 1, - anon_sym_enum, - ACTIONS(5520), 1, - anon_sym_typename, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3522), 1, - sym_decltype_auto, - STATE(4196), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(4358), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [105361] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1615), 1, - sym_primitive_type, - ACTIONS(1625), 1, - sym_auto, - ACTIONS(1627), 1, - anon_sym_decltype, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(5524), 1, - anon_sym_COLON_COLON, - ACTIONS(5526), 1, - anon_sym_enum, - ACTIONS(5528), 1, - anon_sym_class, - ACTIONS(5530), 1, - anon_sym_struct, - ACTIONS(5532), 1, - anon_sym_union, - ACTIONS(5534), 1, - anon_sym_typename, - STATE(3418), 1, - sym_template_type, - STATE(4026), 1, - sym_decltype_auto, - STATE(4041), 1, - sym_qualified_type_identifier, - STATE(4175), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4226), 1, - sym__type_specifier, - STATE(5435), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(4358), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5514), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4019), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [105449] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3387), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5598), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3931), 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(3929), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [105501] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2425), 1, - anon_sym_enum, - ACTIONS(2427), 1, - anon_sym_class, - ACTIONS(2429), 1, - anon_sym_struct, - ACTIONS(2431), 1, - anon_sym_union, - ACTIONS(2445), 1, - sym_auto, - ACTIONS(2447), 1, - anon_sym_decltype, - ACTIONS(2449), 1, - anon_sym_typename, - ACTIONS(5582), 1, - sym_identifier, - ACTIONS(5584), 1, - anon_sym_COLON_COLON, - ACTIONS(5586), 1, - sym_primitive_type, - STATE(2341), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3096), 1, - sym_template_type, - STATE(3152), 1, - sym_decltype_auto, - STATE(3167), 1, - sym_qualified_type_identifier, - STATE(4203), 1, - sym__type_specifier, - STATE(5420), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(4358), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2421), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3153), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [105589] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - STATE(3299), 1, - sym_template_argument_list, - ACTIONS(4187), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4185), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [105641] = 23, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [103987] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -316151,28 +316123,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(3825), 1, sym_identifier, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5516), 1, + ACTIONS(5557), 1, anon_sym_typename, - STATE(3418), 1, + STATE(3336), 1, sym_template_type, - STATE(4026), 1, + STATE(3901), 1, sym_decltype_auto, - STATE(4041), 1, + STATE(3925), 1, sym_qualified_type_identifier, - STATE(4065), 1, + STATE(4083), 1, sym__type_specifier, - STATE(4175), 1, + STATE(4140), 1, aux_sym_sized_type_specifier_repeat1, + STATE(5067), 1, + sym_type_descriptor, STATE(5381), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(4358), 2, + STATE(3385), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(5514), 4, + ACTIONS(5555), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -316186,7 +316160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4019), 8, + STATE(3854), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -316195,49 +316169,51 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [105729] = 23, + [104078] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2859), 1, + ACTIONS(5559), 1, sym_identifier, - ACTIONS(2865), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, - ACTIONS(2869), 1, + ACTIONS(5565), 1, sym_primitive_type, - ACTIONS(5588), 1, + ACTIONS(5567), 1, anon_sym_enum, - ACTIONS(5590), 1, + ACTIONS(5569), 1, anon_sym_class, - ACTIONS(5592), 1, + ACTIONS(5571), 1, anon_sym_struct, - ACTIONS(5594), 1, + ACTIONS(5573), 1, anon_sym_union, - ACTIONS(5596), 1, + ACTIONS(5575), 1, + sym_auto, + ACTIONS(5577), 1, + anon_sym_decltype, + ACTIONS(5579), 1, anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4909), 1, + STATE(4146), 1, sym__type_specifier, - STATE(5396), 1, + STATE(4269), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4434), 1, + sym_template_type, + STATE(4485), 1, + sym_decltype_auto, + STATE(4488), 1, + sym_qualified_type_identifier, + STATE(5154), 1, + sym_type_descriptor, + STATE(5354), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(4358), 2, + STATE(3428), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(59), 4, + ACTIONS(5563), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -316251,7 +316227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3504), 8, + STATE(4486), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -316260,1596 +316236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [105817] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - ACTIONS(5420), 1, - sym_auto, - ACTIONS(5422), 1, - anon_sym_decltype, - ACTIONS(5601), 1, - anon_sym_SEMI, - STATE(3455), 1, - sym_decltype_auto, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5418), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5416), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3332), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [105887] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4915), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3391), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [105975] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4932), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3383), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [106063] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4916), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(4358), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [106151] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4890), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3395), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [106239] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - ACTIONS(5420), 1, - sym_auto, - ACTIONS(5422), 1, - anon_sym_decltype, - ACTIONS(5603), 1, - anon_sym_SEMI, - STATE(3455), 1, - sym_decltype_auto, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5418), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5416), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3332), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [106309] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(3104), 1, - anon_sym_LPAREN2, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4702), 1, - anon_sym_STAR, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(4710), 1, - anon_sym_LBRACK, - ACTIONS(5605), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5609), 1, - anon_sym_AMP_AMP, - ACTIONS(5611), 1, - anon_sym_AMP, - ACTIONS(5613), 1, - anon_sym_EQ, - STATE(4345), 1, - sym_parameter_list, - STATE(4973), 1, - sym__scope_resolution, - STATE(5254), 1, - sym__declarator, - STATE(5513), 1, - sym__abstract_declarator, - STATE(5973), 1, - sym_variadic_declarator, - STATE(5974), 1, - sym_variadic_reference_declarator, - STATE(7219), 1, - sym_ms_based_modifier, - ACTIONS(5607), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [106401] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(3104), 1, - anon_sym_LPAREN2, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(4710), 1, - anon_sym_LBRACK, - ACTIONS(4766), 1, - anon_sym_STAR, - ACTIONS(5605), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5615), 1, - anon_sym_AMP_AMP, - ACTIONS(5617), 1, - anon_sym_AMP, - ACTIONS(5619), 1, - anon_sym_EQ, - STATE(4350), 1, - sym_parameter_list, - STATE(4973), 1, - sym__scope_resolution, - STATE(5262), 1, - sym__declarator, - STATE(5517), 1, - sym__abstract_declarator, - STATE(5973), 1, - sym_variadic_declarator, - STATE(5974), 1, - sym_variadic_reference_declarator, - STATE(7219), 1, - sym_ms_based_modifier, - ACTIONS(5607), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [106493] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(3835), 1, - anon_sym_COLON_COLON, - ACTIONS(5494), 1, - anon_sym_class, - ACTIONS(5496), 1, - anon_sym_struct, - ACTIONS(5498), 1, - anon_sym_union, - ACTIONS(5574), 1, - anon_sym_enum, - ACTIONS(5576), 1, - anon_sym_typename, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3522), 1, - sym_decltype_auto, - STATE(4106), 1, - sym__type_specifier, - STATE(5385), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(4358), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [106581] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4990), 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(4988), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [106629] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - ACTIONS(5420), 1, - sym_auto, - ACTIONS(5422), 1, - anon_sym_decltype, - ACTIONS(5621), 1, - anon_sym_SEMI, - STATE(3455), 1, - sym_decltype_auto, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5418), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5416), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3332), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [106699] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - ACTIONS(5420), 1, - sym_auto, - ACTIONS(5422), 1, - anon_sym_decltype, - ACTIONS(5623), 1, - anon_sym_SEMI, - STATE(3455), 1, - sym_decltype_auto, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5418), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5416), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3332), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [106769] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(2871), 1, - anon_sym_enum, - ACTIONS(2873), 1, - anon_sym_class, - ACTIONS(2875), 1, - anon_sym_struct, - ACTIONS(2877), 1, - anon_sym_union, - ACTIONS(2879), 1, - anon_sym_typename, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3522), 1, - sym_decltype_auto, - STATE(4209), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(4358), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [106857] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(3835), 1, - anon_sym_COLON_COLON, - ACTIONS(5492), 1, - anon_sym_enum, - ACTIONS(5494), 1, - anon_sym_class, - ACTIONS(5496), 1, - anon_sym_struct, - ACTIONS(5498), 1, - anon_sym_union, - ACTIONS(5500), 1, - anon_sym_typename, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3522), 1, - sym_decltype_auto, - STATE(4121), 1, - sym__type_specifier, - STATE(5385), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(4358), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [106945] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4893), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(4358), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [107033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4844), 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(4842), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [107081] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(5371), 1, - anon_sym_LT, - ACTIONS(5627), 1, - anon_sym_EQ, - STATE(3299), 1, - sym_template_argument_list, - ACTIONS(5625), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(3534), 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(4041), 27, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - 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_template, - anon_sym_operator, - [107139] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4920), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3406), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [107227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 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(4934), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [107275] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_COLON_COLON, - ACTIONS(5632), 1, - anon_sym___attribute__, - ACTIONS(5635), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5638), 1, - anon_sym___declspec, - ACTIONS(5644), 1, - anon_sym_virtual, - ACTIONS(5629), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5641), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3411), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5470), 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, - [107337] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - ACTIONS(5420), 1, - sym_auto, - ACTIONS(5422), 1, - anon_sym_decltype, - ACTIONS(5647), 1, - anon_sym_SEMI, - STATE(3455), 1, - sym_decltype_auto, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5418), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5416), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3332), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [107407] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - ACTIONS(5420), 1, - sym_auto, - ACTIONS(5422), 1, - anon_sym_decltype, - ACTIONS(5649), 1, - anon_sym_SEMI, - STATE(3455), 1, - sym_decltype_auto, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5418), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5416), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3332), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [107477] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4901), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3416), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [107565] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4902), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(3421), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [107653] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4895), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(4358), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [107741] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, - anon_sym___attribute__, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4221), 1, - anon_sym_virtual, - ACTIONS(5420), 1, - sym_auto, - ACTIONS(5422), 1, - anon_sym_decltype, - ACTIONS(5651), 1, - anon_sym_SEMI, - STATE(3455), 1, - sym_decltype_auto, - ACTIONS(4209), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5418), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5416), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4219), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3332), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [107811] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4201), 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(4203), 27, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [107861] = 23, + [104169] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -317864,31 +316251,33 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1497), 1, anon_sym_decltype, - ACTIONS(5452), 1, + ACTIONS(5472), 1, sym_identifier, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(5458), 1, + ACTIONS(5478), 1, sym_primitive_type, - ACTIONS(5578), 1, + ACTIONS(5581), 1, anon_sym_enum, - ACTIONS(5580), 1, + ACTIONS(5583), 1, anon_sym_typename, - STATE(1909), 1, + STATE(1921), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, + STATE(2685), 1, sym_template_type, - STATE(2779), 1, + STATE(2781), 1, sym_qualified_type_identifier, - STATE(2880), 1, + STATE(2884), 1, sym_decltype_auto, - STATE(4266), 1, + STATE(4279), 1, sym__type_specifier, + STATE(5154), 1, + sym_type_descriptor, STATE(5389), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(4358), 2, + STATE(3507), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1483), 4, @@ -317905,7 +316294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2877), 8, + STATE(2880), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -317914,140 +316303,10 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [107949] = 23, + [104260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(5552), 1, - sym_identifier, - ACTIONS(5554), 1, - anon_sym_COLON_COLON, - ACTIONS(5558), 1, - sym_primitive_type, - ACTIONS(5560), 1, - anon_sym_enum, - ACTIONS(5562), 1, - anon_sym_class, - ACTIONS(5564), 1, - anon_sym_struct, - ACTIONS(5566), 1, - anon_sym_union, - ACTIONS(5568), 1, - sym_auto, - ACTIONS(5570), 1, - anon_sym_decltype, - ACTIONS(5572), 1, - anon_sym_typename, - STATE(4179), 1, - sym__type_specifier, - STATE(4279), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4436), 1, - sym_template_type, - STATE(4486), 1, - sym_decltype_auto, - STATE(4489), 1, - sym_qualified_type_identifier, - STATE(5354), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(4358), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5556), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4488), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [108037] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(4929), 1, - sym__type_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - STATE(4358), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [108125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4980), 9, + ACTIONS(4086), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -318057,7 +316316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(2547), 31, + ACTIONS(4088), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -318089,10 +316348,2776 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [108173] = 3, + anon_sym_requires, + [104309] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4728), 16, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + ACTIONS(5416), 1, + sym_auto, + ACTIONS(5418), 1, + anon_sym_decltype, + ACTIONS(5585), 1, + anon_sym_SEMI, + STATE(3451), 1, + sym_decltype_auto, + ACTIONS(5422), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5420), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3315), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [104380] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + ACTIONS(5416), 1, + sym_auto, + ACTIONS(5418), 1, + anon_sym_decltype, + ACTIONS(5587), 1, + anon_sym_SEMI, + STATE(3451), 1, + sym_decltype_auto, + ACTIONS(5422), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5420), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3315), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [104451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4098), 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(4100), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [104500] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1615), 1, + sym_primitive_type, + ACTIONS(1625), 1, + sym_auto, + ACTIONS(1627), 1, + anon_sym_decltype, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(5589), 1, + anon_sym_COLON_COLON, + ACTIONS(5591), 1, + anon_sym_enum, + ACTIONS(5593), 1, + anon_sym_class, + ACTIONS(5595), 1, + anon_sym_struct, + ACTIONS(5597), 1, + anon_sym_union, + ACTIONS(5599), 1, + anon_sym_typename, + STATE(3336), 1, + sym_template_type, + STATE(3901), 1, + sym_decltype_auto, + STATE(3925), 1, + sym_qualified_type_identifier, + STATE(4140), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4222), 1, + sym__type_specifier, + STATE(5067), 1, + sym_type_descriptor, + STATE(5435), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3438), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5555), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3854), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104591] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5472), 1, + sym_identifier, + ACTIONS(5476), 1, + anon_sym_COLON_COLON, + ACTIONS(5478), 1, + sym_primitive_type, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(4195), 1, + sym__type_specifier, + STATE(5154), 1, + sym_type_descriptor, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3425), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4082), 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(4084), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [104731] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5490), 1, + anon_sym_COLON_COLON, + ACTIONS(5604), 1, + anon_sym___attribute__, + ACTIONS(5607), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5610), 1, + anon_sym___declspec, + ACTIONS(5616), 1, + anon_sym_virtual, + ACTIONS(5601), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5613), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3375), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5488), 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, + [104794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 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(1999), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [104843] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + ACTIONS(5416), 1, + sym_auto, + ACTIONS(5418), 1, + anon_sym_decltype, + ACTIONS(5619), 1, + anon_sym_SEMI, + STATE(3451), 1, + sym_decltype_auto, + ACTIONS(5422), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5420), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3315), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [104914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4126), 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(4128), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [104963] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3837), 1, + anon_sym_COLON_COLON, + ACTIONS(5533), 1, + anon_sym_class, + ACTIONS(5535), 1, + anon_sym_struct, + ACTIONS(5537), 1, + anon_sym_union, + ACTIONS(5621), 1, + anon_sym_enum, + ACTIONS(5623), 1, + anon_sym_typename, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3479), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3481), 1, + sym_decltype_auto, + STATE(4087), 1, + sym__type_specifier, + STATE(5067), 1, + sym_type_descriptor, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3391), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2863), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4130), 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(4132), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [105103] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym___attribute__, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4175), 1, + anon_sym_virtual, + ACTIONS(5416), 1, + sym_auto, + ACTIONS(5418), 1, + anon_sym_decltype, + ACTIONS(5625), 1, + anon_sym_SEMI, + STATE(3451), 1, + sym_decltype_auto, + ACTIONS(5422), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(4163), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5420), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4173), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3315), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [105174] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5472), 1, + sym_identifier, + ACTIONS(5476), 1, + anon_sym_COLON_COLON, + ACTIONS(5478), 1, + sym_primitive_type, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(4195), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6819), 1, + sym_type_descriptor, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3425), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105265] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5472), 1, + sym_identifier, + ACTIONS(5476), 1, + anon_sym_COLON_COLON, + ACTIONS(5478), 1, + sym_primitive_type, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(4195), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(7117), 1, + sym_type_descriptor, + STATE(3425), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105356] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3872), 1, + sym_field_declaration_list, + STATE(5531), 1, + sym_virtual_specifier, + STATE(6486), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4021), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4023), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [105416] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1615), 1, + sym_primitive_type, + ACTIONS(1617), 1, + anon_sym_enum, + ACTIONS(1619), 1, + anon_sym_class, + ACTIONS(1621), 1, + anon_sym_struct, + ACTIONS(1623), 1, + anon_sym_union, + ACTIONS(1625), 1, + sym_auto, + ACTIONS(1627), 1, + anon_sym_decltype, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(4372), 1, + anon_sym_COLON_COLON, + ACTIONS(5557), 1, + anon_sym_typename, + STATE(3336), 1, + sym_template_type, + STATE(3901), 1, + sym_decltype_auto, + STATE(3925), 1, + sym_qualified_type_identifier, + STATE(4069), 1, + sym__type_specifier, + STATE(4140), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5555), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3854), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105504] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4915), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3485), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105592] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4916), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105680] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4890), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3387), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4385), 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(4387), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [105816] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4926), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105904] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3837), 1, + anon_sym_COLON_COLON, + ACTIONS(5533), 1, + anon_sym_class, + ACTIONS(5535), 1, + anon_sym_struct, + ACTIONS(5537), 1, + anon_sym_union, + ACTIONS(5621), 1, + anon_sym_enum, + ACTIONS(5623), 1, + anon_sym_typename, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3479), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3481), 1, + sym_decltype_auto, + STATE(4105), 1, + sym__type_specifier, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2863), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4393), 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(4395), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [106040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4381), 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(4383), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [106088] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4932), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3390), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [106176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 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(4370), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [106224] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5639), 1, + anon_sym_LBRACE, + STATE(3490), 1, + sym_enumerator_list, + ACTIONS(4237), 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(4239), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_requires, + [106276] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2581), 1, + anon_sym_enum, + ACTIONS(2583), 1, + anon_sym_class, + ACTIONS(2585), 1, + anon_sym_struct, + ACTIONS(2587), 1, + anon_sym_union, + ACTIONS(2601), 1, + sym_auto, + ACTIONS(2603), 1, + anon_sym_decltype, + ACTIONS(2605), 1, + anon_sym_typename, + ACTIONS(5541), 1, + sym_identifier, + ACTIONS(5543), 1, + anon_sym_COLON_COLON, + ACTIONS(5545), 1, + sym_primitive_type, + STATE(2373), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3100), 1, + sym_template_type, + STATE(3151), 1, + sym_qualified_type_identifier, + STATE(3195), 1, + sym_decltype_auto, + STATE(4214), 1, + sym__type_specifier, + STATE(5420), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2577), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3194), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [106364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4358), 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(4360), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [106412] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4942), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [106500] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4945), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3399), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [106588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4597), 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(4599), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [106636] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4914), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [106724] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4905), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3402), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [106812] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + STATE(3529), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4487), 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(4485), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [106866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4593), 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(4595), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [106914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4437), 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(4439), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [106962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4545), 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(4547), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107010] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + STATE(3551), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4399), 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(4397), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [107064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4541), 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(4543), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4533), 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(4535), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 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(4527), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4521), 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(4523), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4513), 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(4515), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4573), 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(4575), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4537), 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(4539), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4620), 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(4622), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4362), 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(4364), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4589), 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(4591), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 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(4379), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 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(2453), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [107640] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -318109,7 +319134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(4726), 24, + ACTIONS(4692), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -318134,7 +319159,491 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [108221] = 3, + [107688] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5643), 1, + anon_sym___attribute__, + ACTIONS(5645), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5647), 1, + anon_sym___declspec, + ACTIONS(5651), 1, + sym_auto, + ACTIONS(5653), 1, + anon_sym_decltype, + ACTIONS(5655), 1, + anon_sym_virtual, + STATE(4017), 1, + sym_decltype_auto, + ACTIONS(5412), 4, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(5641), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5414), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5649), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3593), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [107756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4794), 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(4792), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [107804] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(4752), 1, + anon_sym_LBRACK, + ACTIONS(4754), 1, + anon_sym_STAR, + ACTIONS(5657), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5661), 1, + anon_sym_AMP_AMP, + ACTIONS(5663), 1, + anon_sym_AMP, + ACTIONS(5665), 1, + anon_sym_EQ, + STATE(4345), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5254), 1, + sym__declarator, + STATE(5513), 1, + sym__abstract_declarator, + STATE(5973), 1, + sym_variadic_declarator, + STATE(5974), 1, + sym_variadic_reference_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(5659), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [107896] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5472), 1, + sym_identifier, + ACTIONS(5476), 1, + anon_sym_COLON_COLON, + ACTIONS(5478), 1, + sym_primitive_type, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(4190), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [107984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4449), 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(4451), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [108032] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5639), 1, + anon_sym_LBRACE, + ACTIONS(5667), 1, + anon_sym_COLON, + STATE(3483), 1, + sym_enumerator_list, + STATE(3486), 1, + sym__enum_base_clause, + ACTIONS(4203), 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(4205), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [108088] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5559), 1, + sym_identifier, + ACTIONS(5561), 1, + anon_sym_COLON_COLON, + ACTIONS(5565), 1, + sym_primitive_type, + ACTIONS(5567), 1, + anon_sym_enum, + ACTIONS(5569), 1, + anon_sym_class, + ACTIONS(5571), 1, + anon_sym_struct, + ACTIONS(5573), 1, + anon_sym_union, + ACTIONS(5575), 1, + sym_auto, + ACTIONS(5577), 1, + anon_sym_decltype, + ACTIONS(5579), 1, + anon_sym_typename, + STATE(4159), 1, + sym__type_specifier, + STATE(4269), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4434), 1, + sym_template_type, + STATE(4485), 1, + sym_decltype_auto, + STATE(4488), 1, + sym_qualified_type_identifier, + STATE(5354), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5563), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4486), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [108176] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + STATE(3514), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4579), 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(4577), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [108230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4604), 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(4606), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [108278] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4774), 9, @@ -318179,16 +319688,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [108269] = 6, + [108326] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_STAR, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(5446), 1, + ACTIONS(4752), 1, + anon_sym_LBRACK, + ACTIONS(5657), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5669), 1, + anon_sym_AMP_AMP, + ACTIONS(5671), 1, + anon_sym_AMP, + ACTIONS(5673), 1, + anon_sym_EQ, + STATE(4350), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5262), 1, + sym__declarator, + STATE(5517), 1, + sym__abstract_declarator, + STATE(5973), 1, + sym_variadic_declarator, + STATE(5974), 1, + sym_variadic_reference_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(5659), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [108418] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5450), 1, anon_sym_LT, - STATE(2824), 1, + STATE(2853), 1, sym_template_argument_list, - ACTIONS(3508), 10, + ACTIONS(3450), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -318199,7 +319775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3516), 27, + ACTIONS(3455), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -318227,49 +319803,104 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [108323] = 23, + [108472] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(5643), 1, + anon_sym___attribute__, + ACTIONS(5645), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5647), 1, + anon_sym___declspec, + ACTIONS(5651), 1, + sym_auto, + ACTIONS(5653), 1, + anon_sym_decltype, + ACTIONS(5655), 1, + anon_sym_virtual, + STATE(4017), 1, + sym_decltype_auto, + ACTIONS(5420), 4, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(5641), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5422), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5649), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3625), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [108540] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, ACTIONS(976), 1, anon_sym_template, - ACTIONS(1487), 1, - anon_sym_enum, - ACTIONS(1489), 1, - anon_sym_class, - ACTIONS(1491), 1, - anon_sym_struct, - ACTIONS(1493), 1, - anon_sym_union, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(1499), 1, - anon_sym_typename, - ACTIONS(5452), 1, + ACTIONS(2855), 1, sym_identifier, - ACTIONS(5456), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(5458), 1, + ACTIONS(2865), 1, sym_primitive_type, - STATE(1909), 1, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, + STATE(3336), 1, sym_template_type, - STATE(2779), 1, + STATE(3443), 1, sym_qualified_type_identifier, - STATE(2880), 1, + STATE(3481), 1, sym_decltype_auto, - STATE(4186), 1, + STATE(4907), 1, sym__type_specifier, - STATE(5389), 1, + STATE(5396), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(4358), 2, + STATE(4370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1483), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -318283,7 +319914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2877), 8, + STATE(3448), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -318292,79 +319923,54 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [108411] = 4, + [108628] = 23, ACTIONS(3), 1, sym_comment, - STATE(3192), 1, - sym_enumerator_list, - ACTIONS(4197), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4195), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + ACTIONS(105), 1, sym_auto, + ACTIONS(107), 1, anon_sym_decltype, - anon_sym_GT2, - [108460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4472), 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(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4474), 26, - anon_sym_AMP, - 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_thread_local, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4912), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3435), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -318373,1023 +319979,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [108507] = 3, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [108716] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4916), 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(4914), 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, + ACTIONS(3981), 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_DASH_GT, - [108554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4320), 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(5627), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4322), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [108601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 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(4326), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [108648] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4086), 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(4088), 27, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [108695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4328), 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(4330), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [108742] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(5450), 1, - anon_sym_LPAREN2, - STATE(3514), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4564), 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(4562), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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_DASH_GT, - [108795] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3206), 1, - sym_enumerator_list, - ACTIONS(4229), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4227), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [108844] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4407), 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(4409), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [108891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4403), 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(4405), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [108938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4332), 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(4334), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [108985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4336), 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(4338), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [109032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4399), 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(4401), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [109079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4956), 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(4954), 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_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [109126] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4960), 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(4958), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [109185] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2643), 1, - sym__enum_base_clause, - STATE(2763), 1, - sym_enumerator_list, - ACTIONS(4162), 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(4160), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - [109236] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4857), 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(4855), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [109293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4395), 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(4397), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [109340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4391), 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(4393), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [109387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4387), 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(4389), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [109434] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2662), 1, - sym__enum_base_clause, - STATE(2812), 1, - sym_enumerator_list, - ACTIONS(4168), 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(4166), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - 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_DASH_GT, - sym_auto, - anon_sym_decltype, - [109485] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4893), 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(4891), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [109542] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4383), 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(4385), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [109589] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4017), 1, + STATE(4051), 1, sym_field_declaration_list, - STATE(5539), 1, + STATE(5805), 1, sym_virtual_specifier, - STATE(6480), 1, + STATE(6532), 1, sym_base_class_clause, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(3986), 7, + ACTIONS(3995), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -319397,7 +320012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_EQ, - ACTIONS(3988), 25, + ACTIONS(3997), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -319408,6 +320023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -319423,178 +320039,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [109648] = 3, + [108776] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4415), 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(4417), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, + ACTIONS(976), 1, anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [109695] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4012), 1, - sym_field_declaration_list, - STATE(5535), 1, - sym_virtual_specifier, - STATE(6483), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4007), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4009), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, + ACTIONS(1615), 1, + sym_primitive_type, + ACTIONS(1625), 1, sym_auto, + ACTIONS(1627), 1, anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [109754] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4005), 1, - sym_field_declaration_list, - STATE(5531), 1, - sym_virtual_specifier, - STATE(6486), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3972), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(3974), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(2855), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [109813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4602), 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(5589), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4604), 26, - anon_sym_AMP, - 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_thread_local, + ACTIONS(5591), 1, + anon_sym_enum, + ACTIONS(5593), 1, + anon_sym_class, + ACTIONS(5595), 1, + anon_sym_struct, + ACTIONS(5597), 1, + anon_sym_union, + ACTIONS(5599), 1, + anon_sym_typename, + STATE(3336), 1, + sym_template_type, + STATE(3901), 1, + sym_decltype_auto, + STATE(3925), 1, + sym_qualified_type_identifier, + STATE(4140), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4242), 1, + sym__type_specifier, + STATE(5435), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5555), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -319603,298 +320095,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [109860] = 5, + STATE(3854), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [108864] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5659), 1, - anon_sym_AMP_AMP, - ACTIONS(4897), 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(4895), 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, - 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_or, - anon_sym_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, - [109911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4419), 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(5639), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4421), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [109958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4840), 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(4838), 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, + ACTIONS(5667), 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_DASH_GT, - [110005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4379), 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(4381), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [110052] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4782), 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(4780), 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_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [110099] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4058), 1, - sym_field_declaration_list, - STATE(5784), 1, - sym_virtual_specifier, - STATE(6498), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3982), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(3984), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [110158] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_LBRACE, - ACTIONS(5663), 1, - anon_sym_COLON, - STATE(3520), 1, + STATE(3395), 1, sym_enumerator_list, - STATE(3523), 1, + STATE(3396), 1, sym__enum_base_clause, - ACTIONS(4160), 11, + ACTIONS(4215), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -319906,7 +320127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4162), 24, + ACTIONS(4217), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -319917,6 +320138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -319931,10 +320153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [110213] = 3, + [108920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 9, + ACTIONS(4992), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -319944,7 +320166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4918), 30, + ACTIONS(4990), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -319960,6 +320182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -319975,57 +320198,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [110260] = 6, + [108968] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(5450), 1, - anon_sym_LPAREN2, - STATE(3469), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4620), 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(4618), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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_DASH_GT, - [110313] = 3, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4929), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [109056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 13, + ACTIONS(4457), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -320039,7 +320280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4516), 26, + ACTIONS(4459), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -320050,6 +320291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -320066,10 +320308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [110360] = 3, + [109104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4598), 13, + ACTIONS(4340), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -320083,7 +320325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4600), 26, + ACTIONS(4342), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -320094,6 +320336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -320110,55 +320353,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [110407] = 4, + [109152] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, - anon_sym_AMP_AMP, - ACTIONS(4912), 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(4910), 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_CARET, - anon_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_or, - anon_sym_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, - [110456] = 3, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4895), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [109240] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 13, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4902), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3441), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [109328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4433), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -320172,7 +320500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4374), 26, + ACTIONS(4435), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -320183,6 +320511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -320199,146 +320528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [110503] = 3, + [109376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 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(4879), 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_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [110550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 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(4875), 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_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [110597] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_LBRACE, - ACTIONS(5663), 1, - anon_sym_COLON, - STATE(3480), 1, - sym__enum_base_clause, - STATE(3484), 1, - sym_enumerator_list, - ACTIONS(4166), 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(4168), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [110652] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4614), 13, + ACTIONS(4461), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -320352,7 +320545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4616), 26, + ACTIONS(4463), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -320363,6 +320556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -320379,10 +320573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [110699] = 3, + [109424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 13, + ACTIONS(4340), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -320396,7 +320590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4608), 26, + ACTIONS(4342), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -320407,6 +320601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -320423,14 +320618,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [110746] = 3, + [109472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 3, + ACTIONS(4608), 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(3911), 36, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4610), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3915), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3917), 37, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -320444,6 +320684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -320467,10 +320708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_typename, anon_sym_template, - [110793] = 3, + [109568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4244), 13, + ACTIONS(4409), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -320484,7 +320725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4246), 26, + ACTIONS(4411), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -320495,6 +320736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -320511,245 +320753,826 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [110840] = 3, + [109616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4610), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(4122), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4612), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [110887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4574), 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(4576), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [110934] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4280), 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(4282), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [110981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4201), 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(4203), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [111028] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_LBRACE, - STATE(3459), 1, - sym_enumerator_list, - ACTIONS(4195), 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(4197), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_requires, - [111079] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, anon_sym_COLON, - ACTIONS(5655), 1, + anon_sym_GT2, + ACTIONS(4124), 28, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4616), 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, - STATE(4059), 1, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4618), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3907), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3909), 37, + 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_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_typename, + anon_sym_template, + [109760] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(4001), 1, + sym_field_declaration_list, + STATE(5783), 1, + sym_virtual_specifier, + STATE(6529), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3999), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4001), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 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(4427), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109868] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4901), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3444), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [109956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4569), 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(4571), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110004] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3954), 1, + sym_field_declaration_list, + STATE(5758), 1, + sym_virtual_specifier, + STATE(6522), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4003), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4005), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4505), 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(4507), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4517), 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(4519), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4585), 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(4587), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4441), 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(4443), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110256] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3982), 1, + sym_field_declaration_list, + STATE(5605), 1, + sym_virtual_specifier, + STATE(6504), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3975), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(3977), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4557), 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(4559), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4501), 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(4503), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4553), 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(4555), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4612), 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(4614), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110508] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3830), 1, sym_field_declaration_list, STATE(5654), 1, sym_virtual_specifier, STATE(6501), 1, sym_base_class_clause, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(4000), 7, + ACTIONS(3985), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -320757,7 +321580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_EQ, - ACTIONS(4002), 25, + ACTIONS(3987), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -320768,6 +321591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -320783,10 +321607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [111138] = 3, + [110568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 13, + ACTIONS(4421), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -320800,7 +321624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4572), 26, + ACTIONS(4423), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -320811,6 +321635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -320827,54 +321652,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [111185] = 3, + [110616] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3925), 3, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3927), 36, - 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_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4920), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3491), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, 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, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [110704] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(4055), 1, + sym_field_declaration_list, + STATE(5784), 1, + sym_virtual_specifier, + STATE(6498), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4013), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4015), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [111232] = 3, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 13, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + STATE(3541), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4495), 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(4493), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [110818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 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(4922), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [110866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4401), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -320888,7 +321878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4286), 26, + ACTIONS(4403), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -320899,6 +321889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -320915,7 +321906,1015 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [111279] = 3, + [110914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4389), 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(4391), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4405), 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(4407), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4413), 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(4415), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111058] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5439), 1, + sym_primitive_type, + ACTIONS(5675), 1, + sym_identifier, + STATE(3235), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5437), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3944), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3946), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_try, + anon_sym_requires, + [111114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4627), 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(4629), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4354), 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(4356), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111210] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(2869), 1, + anon_sym_class, + ACTIONS(2871), 1, + anon_sym_struct, + ACTIONS(2873), 1, + anon_sym_union, + ACTIONS(5549), 1, + anon_sym_enum, + ACTIONS(5551), 1, + anon_sym_typename, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3479), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3481), 1, + sym_decltype_auto, + STATE(4191), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2863), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [111298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4497), 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(4499), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111346] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + STATE(3282), 1, + sym_template_argument_list, + ACTIONS(4201), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4199), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [111398] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4909), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [111486] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5639), 1, + anon_sym_LBRACE, + STATE(3477), 1, + sym_enumerator_list, + ACTIONS(4344), 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(4346), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_requires, + [111538] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3837), 1, + anon_sym_COLON_COLON, + ACTIONS(5531), 1, + anon_sym_enum, + ACTIONS(5533), 1, + anon_sym_class, + ACTIONS(5535), 1, + anon_sym_struct, + ACTIONS(5537), 1, + anon_sym_union, + ACTIONS(5539), 1, + anon_sym_typename, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3479), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3481), 1, + sym_decltype_auto, + STATE(4118), 1, + sym__type_specifier, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2863), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [111626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4481), 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(4483), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111674] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3890), 1, + sym_field_declaration_list, + STATE(5535), 1, + sym_virtual_specifier, + STATE(6483), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3989), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(3991), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4469), 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(4471), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111782] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(4893), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [111870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 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(4419), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111918] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3913), 1, + sym_field_declaration_list, + STATE(5539), 1, + sym_virtual_specifier, + STATE(6480), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4017), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4019), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4429), 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(4431), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112026] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym___attribute__, + ACTIONS(5687), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5690), 1, + anon_sym___declspec, + ACTIONS(5696), 1, + anon_sym_virtual, + ACTIONS(5699), 1, + anon_sym_explicit, + ACTIONS(5679), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(5677), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(5681), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5693), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3495), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + [112090] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4445), 13, @@ -320932,7 +322931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4447), 26, + ACTIONS(4447), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -320943,6 +322942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -320959,31 +322959,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [111326] = 9, + [112138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(3991), 1, - sym_field_declaration_list, - STATE(5605), 1, - sym_virtual_specifier, - STATE(6504), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3990), 7, + ACTIONS(4453), 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(3992), 25, + anon_sym_GT2, + ACTIONS(4455), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -320994,6 +322987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -321006,34 +323000,28 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [111385] = 9, + [112186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4040), 1, - sym_field_declaration_list, - STATE(5758), 1, - sym_virtual_specifier, - STATE(6522), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4019), 7, + ACTIONS(4473), 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(4021), 25, + anon_sym_GT2, + ACTIONS(4475), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -321044,6 +323032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -321056,13 +323045,241 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [111444] = 3, + [112234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 9, + ACTIONS(4529), 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(4531), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4465), 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(4467), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4477), 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(4479), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4581), 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(4583), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4489), 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(4491), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112474] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4998), 1, + sym_literal_suffix, + ACTIONS(3457), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -321071,8 +323288,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4867), 30, + ACTIONS(3462), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -321094,19 +323317,13 @@ static const uint16_t ts_small_parse_table[] = { 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_DASH_GT, - [111491] = 3, + [112524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4594), 13, + ACTIONS(4509), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -321120,7 +323337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4596), 26, + ACTIONS(4511), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -321131,6 +323348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -321147,107 +323365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [111538] = 9, + [112572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4020), 1, - sym_field_declaration_list, - STATE(5783), 1, - sym_virtual_specifier, - STATE(6529), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4015), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4017), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [111597] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(5450), 1, - anon_sym_LPAREN2, - STATE(3463), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4624), 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(4622), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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_DASH_GT, - [111650] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4449), 13, + ACTIONS(4348), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -321261,7 +323382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4451), 26, + ACTIONS(4350), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -321272,6 +323393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -321288,587 +323410,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [111697] = 3, + [112620] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4411), 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(4413), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, + ACTIONS(976), 1, anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [111744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4590), 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(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5472), 1, + sym_identifier, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4592), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [111791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4586), 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(4588), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [111838] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4964), 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(4962), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [111897] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 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(4584), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [111944] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4033), 1, - sym_field_declaration_list, - STATE(5805), 1, - sym_virtual_specifier, - STATE(6532), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4011), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4013), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [112003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4578), 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(4580), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [112050] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4861), 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(4859), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [112109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4566), 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(4568), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [112156] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4558), 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(4560), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [112203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4534), 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(4536), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [112250] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4201), 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(4203), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [112297] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5444), 1, + ACTIONS(5478), 1, sym_primitive_type, - ACTIONS(5665), 1, - sym_identifier, - STATE(3261), 1, + ACTIONS(5581), 1, + anon_sym_enum, + ACTIONS(5583), 1, + anon_sym_typename, + STATE(1921), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5442), 4, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(4262), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3946), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3948), 22, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -321877,15 +323466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_try, - anon_sym_requires, - [112352] = 3, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [112708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 13, + ACTIONS(4549), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -321899,7 +323492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4556), 26, + ACTIONS(4551), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -321910,6 +323503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -321926,535 +323520,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [112399] = 3, + [112756] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 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(4552), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, + ACTIONS(105), 1, sym_auto, + ACTIONS(107), 1, anon_sym_decltype, - anon_sym_virtual, + ACTIONS(976), 1, anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [112446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4924), 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(4922), 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_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [112493] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4494), 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(4496), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(2855), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [112540] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5674), 1, - anon_sym___attribute__, - ACTIONS(5677), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5680), 1, - anon_sym___declspec, - ACTIONS(5686), 1, - anon_sym_virtual, - ACTIONS(5689), 1, - anon_sym_explicit, - ACTIONS(5669), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(5671), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5667), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5683), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3510), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - [112603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4546), 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(4548), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [112650] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4542), 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(4544), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [112697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 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(4520), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [112744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4834), 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(4832), 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_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [112791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4484), 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(4486), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [112838] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 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(4504), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [112885] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4276), 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(4278), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [112932] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5694), 1, - anon_sym___attribute__, - ACTIONS(5696), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5698), 1, - anon_sym___declspec, - ACTIONS(5702), 1, - sym_auto, - ACTIONS(5704), 1, - anon_sym_decltype, - ACTIONS(5706), 1, - anon_sym_virtual, - STATE(3999), 1, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(2867), 1, + anon_sym_enum, + ACTIONS(2869), 1, + anon_sym_class, + ACTIONS(2871), 1, + anon_sym_struct, + ACTIONS(2873), 1, + anon_sym_union, + ACTIONS(2875), 1, + anon_sym_typename, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3479), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3481), 1, sym_decltype_auto, - ACTIONS(5416), 4, - anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_operator, - ACTIONS(5692), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5418), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5700), 8, + STATE(4200), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2863), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -322463,16 +323576,579 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3738), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [112999] = 3, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [112844] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5445), 1, + anon_sym_LPAREN2, + STATE(3514), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4579), 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(4577), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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_DASH_GT, + [112897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3073), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3071), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [112944] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + ACTIONS(5702), 1, + anon_sym_SEMI, + STATE(3411), 1, + sym_field_declaration_list, + STATE(5782), 1, + sym_virtual_specifier, + STATE(6544), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3999), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4001), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [113005] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4862), 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(4860), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [113064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 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(5012), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [113111] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + ACTIONS(5702), 1, + anon_sym_SEMI, + STATE(3409), 1, + sym_field_declaration_list, + STATE(5734), 1, + sym_virtual_specifier, + STATE(6494), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3995), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3997), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [113172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 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(5000), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [113219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4854), 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(4852), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [113266] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5445), 1, + anon_sym_LPAREN2, + STATE(3541), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4495), 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(4493), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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_DASH_GT, + [113319] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3442), 1, + sym_field_declaration_list, + STATE(5769), 1, + sym_virtual_specifier, + STATE(6274), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3977), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(3975), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [113378] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5445), 1, + anon_sym_LPAREN2, + STATE(3551), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4399), 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(4397), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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_DASH_GT, + [113431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3457), 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(3462), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [113478] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4972), 9, @@ -322516,24 +324192,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [113046] = 3, + [113525] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + ACTIONS(5706), 1, + anon_sym_SEMI, + STATE(3411), 1, + sym_field_declaration_list, + STATE(5782), 1, + sym_virtual_specifier, + STATE(6544), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3999), 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(4478), 26, + ACTIONS(4001), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -322544,6 +324228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -322558,12 +324243,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [113093] = 3, + [113586] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 9, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3446), 1, + sym_field_declaration_list, + STATE(5789), 1, + sym_virtual_specifier, + STATE(6285), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3987), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(3985), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [113645] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + ACTIONS(5706), 1, + anon_sym_SEMI, + STATE(3409), 1, + sym_field_declaration_list, + STATE(5734), 1, + sym_virtual_specifier, + STATE(6494), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3995), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3997), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [113706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5518), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5516), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [113753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3077), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3075), 27, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [113800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4976), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -322573,7 +324445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(3510), 30, + ACTIONS(4974), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -322604,151 +324476,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [113140] = 3, + [113847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4256), 13, + ACTIONS(4980), 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(4978), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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(4258), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [113187] = 5, + 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_DASH_GT, + [113894] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_LBRACE, - STATE(3475), 1, - sym_enumerator_list, - ACTIONS(4227), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4029), 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(4229), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4800), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_requires, - [113238] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4464), 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(4466), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [113285] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(5450), 1, - anon_sym_LPAREN2, - STATE(3460), 2, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + STATE(2485), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4524), 9, + ACTIONS(4908), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -322757,10 +324542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4522), 26, + ACTIONS(4906), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -322771,6 +324556,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [113951] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5708), 1, + anon_sym_AMP_AMP, + ACTIONS(4996), 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(4994), 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_CARET, + anon_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, @@ -322785,10 +324614,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [113338] = 3, + [114000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4946), 9, + ACTIONS(4920), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -322798,7 +324627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4944), 30, + ACTIONS(4918), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -322829,7 +324658,485 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [113385] = 3, + [114047] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3499), 1, + sym_field_declaration_list, + STATE(5621), 1, + sym_virtual_specifier, + STATE(6550), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4019), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4017), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [114106] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3505), 1, + sym_field_declaration_list, + STATE(5618), 1, + sym_virtual_specifier, + STATE(6564), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3991), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(3989), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [114165] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3213), 1, + sym_enumerator_list, + ACTIONS(4346), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4344), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [114214] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + ACTIONS(5706), 1, + anon_sym_SEMI, + STATE(3413), 1, + sym_field_declaration_list, + STATE(5540), 1, + sym_virtual_specifier, + STATE(6566), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4003), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4005), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [114275] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3497), 1, + sym_field_declaration_list, + STATE(5593), 1, + sym_virtual_specifier, + STATE(6580), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4023), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4021), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [114334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 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(4956), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [114381] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4954), 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(4952), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [114440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4928), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [114487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 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(4892), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [114534] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3492), 1, + sym_field_declaration_list, + STATE(5765), 1, + sym_virtual_specifier, + STATE(6323), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4015), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4013), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [114593] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4778), 9, @@ -322873,108 +325180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [113432] = 13, + [114640] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5694), 1, - anon_sym___attribute__, - ACTIONS(5696), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5698), 1, - anon_sym___declspec, - ACTIONS(5702), 1, - sym_auto, - ACTIONS(5704), 1, - anon_sym_decltype, - ACTIONS(5706), 1, - anon_sym_virtual, - STATE(3999), 1, - sym_decltype_auto, - ACTIONS(5426), 4, - anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_operator, - ACTIONS(5692), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5428), 7, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(5708), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5700), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3808), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [113499] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4480), 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(4482), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [113546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4952), 9, + ACTIONS(5710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4786), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -322984,7 +325197,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4950), 30, + ACTIONS(4784), 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, + 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_or, + anon_sym_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, + [114691] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2646), 1, + sym__enum_base_clause, + STATE(2765), 1, + sym_enumerator_list, + ACTIONS(4205), 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(4203), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + [114742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4850), 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(4848), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -323015,413 +325316,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [113593] = 3, + [114789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4488), 13, + ACTIONS(4782), 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(4780), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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(4490), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [113640] = 3, + 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_DASH_GT, + [114836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 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(4512), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [113687] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4506), 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(4508), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [113734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4316), 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(4318), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [113781] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4498), 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(4500), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [113828] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 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(4290), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [113875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4441), 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(4443), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [113922] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4312), 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(4314), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [113969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4300), 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(4302), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [114016] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 1, - anon_sym_LBRACE, - ACTIONS(5460), 1, - anon_sym_LPAREN2, - STATE(3820), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4624), 11, + STATE(3186), 1, + sym_enumerator_list, + ACTIONS(4239), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -323433,9 +325377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4622), 23, + ACTIONS(4237), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -323444,6 +325389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -323456,33 +325402,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [114068] = 10, + [114885] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5708), 1, + ACTIONS(5702), 1, anon_sym_SEMI, - STATE(3439), 1, + STATE(3413), 1, sym_field_declaration_list, STATE(5540), 1, sym_virtual_specifier, STATE(6566), 1, sym_base_class_clause, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(4019), 6, + ACTIONS(4003), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4021), 24, + ACTIONS(4005), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -323493,6 +325441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -323507,1073 +325456,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [114128] = 10, + [114946] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5710), 1, + ACTIONS(5712), 1, anon_sym_SEMI, - STATE(3439), 1, - sym_field_declaration_list, - STATE(5540), 1, - sym_virtual_specifier, - STATE(6566), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4019), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4021), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [114188] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3472), 1, - sym_field_declaration_list, - STATE(5769), 1, - sym_virtual_specifier, - STATE(6274), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3992), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(3990), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [114246] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(3104), 1, - anon_sym_LPAREN2, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4702), 1, - anon_sym_STAR, - ACTIONS(4704), 1, - anon_sym_AMP_AMP, - ACTIONS(4706), 1, - anon_sym_AMP, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(4710), 1, - anon_sym_LBRACK, - ACTIONS(5605), 1, - anon_sym_DOT_DOT_DOT, - STATE(4345), 1, - sym_parameter_list, - STATE(4973), 1, - sym__scope_resolution, - STATE(5161), 1, - sym__declarator, - STATE(5339), 1, - sym__abstract_declarator, - STATE(5869), 1, - sym_variadic_declarator, - STATE(7219), 1, - sym_ms_based_modifier, - ACTIONS(5712), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [114332] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3439), 1, - sym_field_declaration_list, - STATE(5540), 1, - sym_virtual_specifier, - STATE(6566), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4021), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4019), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [114390] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 1, - anon_sym_LBRACE, - ACTIONS(5460), 1, - anon_sym_LPAREN2, - STATE(3871), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4564), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4562), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_GT2, - [114442] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3482), 1, - sym_field_declaration_list, - STATE(5789), 1, - sym_virtual_specifier, - STATE(6285), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4002), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4000), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [114500] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3433), 1, + STATE(3411), 1, sym_field_declaration_list, STATE(5782), 1, sym_virtual_specifier, STATE(6544), 1, sym_base_class_clause, - ACTIONS(3980), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(4017), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4015), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [114558] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4996), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [114644] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3430), 1, - sym_field_declaration_list, - STATE(5734), 1, - sym_virtual_specifier, - STATE(6494), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4013), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4011), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [114702] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3428), 1, - sym_field_declaration_list, - STATE(5765), 1, - sym_virtual_specifier, - STATE(6323), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3984), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(3982), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [114760] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4926), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [114846] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4964), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [114920] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4964), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [114984] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4865), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4863), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [115052] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4964), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [115114] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [115198] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [115280] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(4964), 1, - anon_sym_PIPE, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5742), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [115360] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4786), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [115450] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - ACTIONS(5708), 1, - anon_sym_SEMI, - STATE(3433), 1, - sym_field_declaration_list, - STATE(5782), 1, - sym_virtual_specifier, - STATE(6544), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4015), 6, + ACTIONS(3999), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4017), 24, + ACTIONS(4001), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -324584,6 +325492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -324598,32 +325507,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [115510] = 10, + [115007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - ACTIONS(5708), 1, + ACTIONS(4912), 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(4910), 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, - STATE(3430), 1, + 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_DASH_GT, + [115054] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 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(4934), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [115113] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3409), 1, sym_field_declaration_list, STATE(5734), 1, sym_virtual_specifier, STATE(6494), 1, sym_base_class_clause, - ACTIONS(5437), 2, + ACTIONS(3983), 2, anon_sym_final, anon_sym_override, - ACTIONS(4011), 6, + ACTIONS(3997), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(3995), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [115172] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + ACTIONS(5712), 1, + anon_sym_SEMI, + STATE(3413), 1, + sym_field_declaration_list, + STATE(5540), 1, + sym_virtual_specifier, + STATE(6566), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4003), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4013), 24, + ACTIONS(4005), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -324634,6 +325687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -324648,16 +325702,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [115570] = 6, + [115233] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - ACTIONS(3516), 8, + ACTIONS(3455), 8, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, @@ -324666,7 +325720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3508), 27, + ACTIONS(3450), 28, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -324677,6 +325731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -324694,364 +325749,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [115622] = 23, + [115286] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4887), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [115708] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(4964), 1, - anon_sym_PIPE, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5742), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - [115786] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 1, - anon_sym_LBRACE, - ACTIONS(5460), 1, - anon_sym_LPAREN2, - STATE(3883), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4524), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4522), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_GT2, - [115838] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4883), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [115924] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4964), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [115996] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5710), 1, - anon_sym_SEMI, - STATE(3433), 1, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3411), 1, sym_field_declaration_list, STATE(5782), 1, sym_virtual_specifier, STATE(6544), 1, sym_base_class_clause, - ACTIONS(5437), 2, + ACTIONS(3983), 2, anon_sym_final, anon_sym_override, - ACTIONS(4015), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4017), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [116056] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3495), 1, - sym_field_declaration_list, - STATE(5593), 1, - sym_virtual_specifier, - STATE(6580), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3974), 3, + ACTIONS(4001), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(3972), 28, + ACTIONS(3999), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -325067,6 +325785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325080,7 +325799,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [116114] = 23, + [115345] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4798), 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(4796), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [115402] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3413), 1, + sym_field_declaration_list, + STATE(5540), 1, + sym_virtual_specifier, + STATE(6566), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4005), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4003), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [115461] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5445), 1, + anon_sym_LPAREN2, + STATE(3529), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4487), 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(4485), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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_DASH_GT, + [115514] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + ACTIONS(5712), 1, + anon_sym_SEMI, + STATE(3409), 1, + sym_field_declaration_list, + STATE(5734), 1, + sym_virtual_specifier, + STATE(6494), 1, + sym_base_class_clause, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3995), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3997), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [115575] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2664), 1, + sym__enum_base_clause, + STATE(2816), 1, + sym_enumerator_list, + ACTIONS(4217), 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(4215), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + 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_DASH_GT, + sym_auto, + anon_sym_decltype, + [115626] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4936), 1, + anon_sym_PIPE, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [115704] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -325093,19 +326114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(3104), 1, anon_sym_LPAREN2, - ACTIONS(4698), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(4710), 1, - anon_sym_LBRACK, - ACTIONS(4766), 1, + ACTIONS(4744), 1, anon_sym_STAR, - ACTIONS(4768), 1, + ACTIONS(4746), 1, anon_sym_AMP_AMP, - ACTIONS(4770), 1, + ACTIONS(4748), 1, anon_sym_AMP, - ACTIONS(5605), 1, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(4752), 1, + anon_sym_LBRACK, + ACTIONS(5657), 1, anon_sym_DOT_DOT_DOT, STATE(4350), 1, sym_parameter_list, @@ -325119,7 +326140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variadic_declarator, STATE(7219), 1, sym_ms_based_modifier, - ACTIONS(5712), 2, + ACTIONS(5734), 2, anon_sym_COMMA, anon_sym_RPAREN, STATE(6970), 2, @@ -325143,331 +326164,34 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [116200] = 14, + [115790] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4964), 5, - anon_sym_PIPE, + ACTIONS(5720), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, + ACTIONS(5726), 1, 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, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, anon_sym_bitand, - anon_sym_not_eq, - [116268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3073), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3071), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [116314] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - ACTIONS(5710), 1, - anon_sym_SEMI, - STATE(3430), 1, - sym_field_declaration_list, - STATE(5734), 1, - sym_virtual_specifier, - STATE(6494), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4011), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4013), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [116374] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - ACTIONS(5748), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_field_declaration_list, - STATE(5540), 1, - sym_virtual_specifier, - STATE(6566), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4019), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4021), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [116434] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3502), 1, - sym_field_declaration_list, - STATE(5618), 1, - sym_virtual_specifier, - STATE(6564), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4009), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4007), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [116492] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3512), 1, - sym_field_declaration_list, - STATE(5621), 1, - sym_virtual_specifier, - STATE(6550), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3988), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(3986), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [116550] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, + anon_sym_PIPE, ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - STATE(2562), 1, + anon_sym_bitor, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -325476,211 +326200,86 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4974), 5, + ACTIONS(4934), 8, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [116638] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - ACTIONS(5748), 1, - anon_sym_SEMI, - STATE(3433), 1, - sym_field_declaration_list, - STATE(5782), 1, - sym_virtual_specifier, - STATE(6544), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4015), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4017), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [116698] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - ACTIONS(5748), 1, - anon_sym_SEMI, - STATE(3430), 1, - sym_field_declaration_list, - STATE(5734), 1, - sym_virtual_specifier, - STATE(6494), 1, - sym_base_class_clause, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4011), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4013), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [116758] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5750), 1, - anon_sym_COMMA, - ACTIONS(5752), 1, - anon_sym_SEMI, - ACTIONS(5754), 1, - anon_sym_RBRACE, - STATE(2562), 1, - sym_argument_list, - STATE(5884), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_or, - ACTIONS(5722), 2, + [115874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4671), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [116854] = 6, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, + ACTIONS(4669), 28, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [115920] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3013), 1, anon_sym_LBRACE, - ACTIONS(5460), 1, + ACTIONS(5480), 1, anon_sym_LPAREN2, - STATE(3830), 2, + STATE(3834), 2, sym_argument_list, sym_initializer_list, - ACTIONS(4620), 11, + ACTIONS(4579), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -325692,7 +326291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4618), 23, + ACTIONS(4577), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -325716,108 +326315,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [116906] = 3, + [115972] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4029), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3075), 26, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4800), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [116952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5508), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5506), 26, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [116998] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4936), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [116034] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4936), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -325826,16 +326397,973 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4964), 5, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [116108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4663), 10, + 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, + anon_sym_DASH_GT, + ACTIONS(4661), 28, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [116154] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_COMMA, + ACTIONS(5750), 1, + anon_sym_SEMI, + ACTIONS(5752), 1, + anon_sym_RBRACE, + ACTIONS(5754), 1, + anon_sym_QMARK, + STATE(2485), 1, + sym_argument_list, + STATE(5884), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [116250] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(4752), 1, + anon_sym_LBRACK, + ACTIONS(4754), 1, + anon_sym_STAR, + ACTIONS(4756), 1, + anon_sym_AMP_AMP, + ACTIONS(4758), 1, + anon_sym_AMP, + ACTIONS(5657), 1, + anon_sym_DOT_DOT_DOT, + STATE(4345), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5161), 1, + sym__declarator, + STATE(5339), 1, + sym__abstract_declarator, + STATE(5869), 1, + sym_variadic_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(5734), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [116336] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [116418] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4936), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4962), 19, + ACTIONS(4934), 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, + [116482] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_LBRACE, + ACTIONS(5480), 1, + anon_sym_LPAREN2, + STATE(3971), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4495), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4493), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_GT2, + [116534] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4900), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [116624] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4936), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [116696] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4914), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [116784] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4858), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4856), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [116852] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4871), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [116938] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_LBRACE, + ACTIONS(5480), 1, + anon_sym_LPAREN2, + STATE(3967), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4399), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4397), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_GT2, + [116990] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4982), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [117076] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_LBRACE, + ACTIONS(5480), 1, + anon_sym_LPAREN2, + STATE(3842), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4487), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4485), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_GT2, + [117128] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4806), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [117214] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4936), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [117282] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4936), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -325855,16 +327383,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [117064] = 27, + [117348] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5016), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [117434] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4936), 1, + anon_sym_PIPE, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [117514] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, ACTIONS(5756), 1, anon_sym_DOT_DOT_DOT, @@ -325890,7 +327541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, ACTIONS(5794), 1, anon_sym_GT2, - STATE(2993), 1, + STATE(3015), 1, sym_argument_list, STATE(6055), 1, aux_sym_template_argument_list_repeat1, @@ -325921,321 +327572,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [117157] = 27, + [117607] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(5216), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5758), 1, - anon_sym_COMMA, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - anon_sym_PIPE, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5784), 1, - anon_sym_QMARK, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_bitor, - ACTIONS(5790), 1, - anon_sym_bitand, - ACTIONS(5796), 1, - anon_sym_GT2, - STATE(2993), 1, - sym_argument_list, - STATE(6003), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5766), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5768), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [117250] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4760), 10, - 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, - anon_sym_DASH_GT, - ACTIONS(4758), 27, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [117295] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5758), 1, - anon_sym_COMMA, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - anon_sym_PIPE, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5784), 1, - anon_sym_QMARK, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_bitor, - ACTIONS(5790), 1, - anon_sym_bitand, - ACTIONS(5798), 1, - anon_sym_GT2, - STATE(2993), 1, - sym_argument_list, - STATE(5934), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5766), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5768), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [117388] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5758), 1, - anon_sym_COMMA, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - anon_sym_PIPE, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5784), 1, - anon_sym_QMARK, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_bitor, - ACTIONS(5790), 1, - anon_sym_bitand, - ACTIONS(5800), 1, - anon_sym_GT2, - STATE(2993), 1, - sym_argument_list, - STATE(5907), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5766), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5768), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [117481] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5796), 1, anon_sym_COMMA, - STATE(2562), 1, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5822), 1, + anon_sym_RBRACK, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + STATE(5940), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, + ACTIONS(5798), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5716), 2, + ACTIONS(5800), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, + ACTIONS(5804), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5722), 2, + ACTIONS(5806), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5726), 2, + ACTIONS(5810), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5820), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5804), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(5730), 3, + ACTIONS(5814), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5816), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [117572] = 27, + [117700] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, ACTIONS(5756), 1, anon_sym_DOT_DOT_DOT, @@ -326259,9 +327671,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, ACTIONS(5790), 1, anon_sym_bitand, - ACTIONS(5806), 1, + ACTIONS(5832), 1, anon_sym_GT2, - STATE(2993), 1, + STATE(3015), 1, sym_argument_list, STATE(5964), 1, aux_sym_template_argument_list_repeat1, @@ -326292,13 +327704,449 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [117665] = 4, + [117793] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3771), 2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5376), 1, + sym_identifier, + ACTIONS(5378), 1, + anon_sym_STAR, + ACTIONS(5380), 1, + anon_sym_AMP_AMP, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + STATE(4962), 1, + sym__scope_resolution, + STATE(5302), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [117870] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5836), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [117961] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5643), 1, + anon_sym___attribute__, + ACTIONS(5645), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5647), 1, + anon_sym___declspec, + ACTIONS(5655), 1, + anon_sym_virtual, + ACTIONS(5452), 4, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(5641), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5454), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5649), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3634), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [118020] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5838), 1, + anon_sym_GT2, + STATE(3015), 1, + sym_argument_list, + STATE(5934), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [118113] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(5842), 1, + anon_sym_RBRACE, + STATE(2485), 1, + sym_argument_list, + STATE(5892), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [118206] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5844), 1, + anon_sym_GT2, + STATE(3015), 1, + sym_argument_list, + STATE(5907), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [118299] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5846), 1, + anon_sym_COMMA, + ACTIONS(5848), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + STATE(5915), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [118392] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 2, anon_sym_COLON_COLON, anon_sym_LBRACE, - ACTIONS(3773), 11, + ACTIONS(3729), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -326310,7 +328158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3778), 24, + ACTIONS(3734), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -326335,16 +328183,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [117712] = 27, + [118439] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5852), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [118530] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, ACTIONS(5756), 1, anon_sym_DOT_DOT_DOT, @@ -326368,9 +328281,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, ACTIONS(5790), 1, anon_sym_bitand, - ACTIONS(5808), 1, + ACTIONS(5854), 1, anon_sym_GT2, - STATE(2993), 1, + STATE(3015), 1, sym_argument_list, STATE(5988), 1, aux_sym_template_argument_list_repeat1, @@ -326401,74 +328314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [117805] = 19, + [118623] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(5373), 1, - sym_identifier, - ACTIONS(5375), 1, - anon_sym_STAR, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_AMP, - ACTIONS(5381), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - STATE(4962), 1, - sym__scope_resolution, - STATE(5302), 1, - sym__declarator, - STATE(6725), 1, - sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [117882] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, ACTIONS(5756), 1, anon_sym_DOT_DOT_DOT, @@ -326492,338 +328347,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, ACTIONS(5790), 1, anon_sym_bitand, - ACTIONS(5810), 1, + ACTIONS(5856), 1, anon_sym_GT2, - STATE(2993), 1, - sym_argument_list, - STATE(6022), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5766), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5768), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [117975] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5812), 1, - anon_sym_COMMA, - ACTIONS(5814), 1, - anon_sym_RBRACE, - STATE(2562), 1, - sym_argument_list, - STATE(5892), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [118068] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5758), 1, - anon_sym_COMMA, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - anon_sym_PIPE, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5784), 1, - anon_sym_QMARK, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_bitor, - ACTIONS(5790), 1, - anon_sym_bitand, - ACTIONS(5816), 1, - anon_sym_GT2, - STATE(2993), 1, - sym_argument_list, - STATE(6107), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5766), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5768), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [118161] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5820), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5818), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [118252] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5822), 1, - anon_sym_COMMA, - ACTIONS(5824), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - STATE(5915), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [118345] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5758), 1, - anon_sym_COMMA, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - anon_sym_PIPE, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5784), 1, - anon_sym_QMARK, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_bitor, - ACTIONS(5790), 1, - anon_sym_bitand, - ACTIONS(5826), 1, - anon_sym_GT2, - STATE(2993), 1, + STATE(3015), 1, sym_argument_list, STATE(5888), 1, aux_sym_template_argument_list_repeat1, @@ -326854,7 +328380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [118438] = 19, + [118716] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -326867,17 +328393,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(5373), 1, + ACTIONS(5376), 1, sym_identifier, - ACTIONS(5375), 1, + ACTIONS(5378), 1, anon_sym_STAR, - ACTIONS(5377), 1, + ACTIONS(5380), 1, anon_sym_AMP_AMP, - ACTIONS(5379), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5381), 1, + ACTIONS(5384), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, STATE(4962), 1, sym__scope_resolution, @@ -326885,7 +328411,7 @@ static const uint16_t ts_small_parse_table[] = { sym__declarator, STATE(6725), 1, sym_ms_based_modifier, - STATE(4393), 2, + STATE(4401), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(6970), 2, @@ -326912,7 +328438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [118515] = 19, + [118793] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -326931,11 +328457,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(4207), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(4978), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, STATE(4992), 1, sym__scope_resolution, @@ -326943,7 +328469,7 @@ static const uint16_t ts_small_parse_table[] = { sym__declarator, STATE(6985), 1, sym_ms_based_modifier, - STATE(4393), 2, + STATE(4401), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(6970), 2, @@ -326970,58 +328496,16 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [118592] = 3, + [118870] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4764), 10, - 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, - anon_sym_DASH_GT, - ACTIONS(4762), 27, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [118637] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, ACTIONS(5756), 1, anon_sym_DOT_DOT_DOT, @@ -327045,9 +328529,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, ACTIONS(5790), 1, anon_sym_bitand, - ACTIONS(5828), 1, + ACTIONS(5858), 1, anon_sym_GT2, - STATE(2993), 1, + STATE(3015), 1, + sym_argument_list, + STATE(6022), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [118963] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5860), 1, + anon_sym_GT2, + STATE(3015), 1, + sym_argument_list, + STATE(6107), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [119056] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5862), 1, + sym_identifier, + ACTIONS(5867), 1, + sym_primitive_type, + STATE(3348), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5865), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3944), 8, + 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(3946), 22, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + [119109] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5869), 1, + anon_sym_GT2, + STATE(3015), 1, sym_argument_list, STATE(6030), 1, aux_sym_template_argument_list_repeat1, @@ -327078,16 +328740,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [118730] = 27, + [119202] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(5873), 1, + anon_sym_RBRACE, + STATE(2485), 1, + sym_argument_list, + STATE(6027), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [119295] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5388), 1, + anon_sym_STAR, + ACTIONS(5390), 1, + anon_sym_AMP_AMP, + ACTIONS(5392), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5115), 1, + sym__declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [119372] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, ACTIONS(5756), 1, anon_sym_DOT_DOT_DOT, @@ -327111,9 +328897,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, ACTIONS(5790), 1, anon_sym_bitand, - ACTIONS(5830), 1, + ACTIONS(5875), 1, anon_sym_GT2, - STATE(2993), 1, + STATE(3015), 1, sym_argument_list, STATE(6083), 1, aux_sym_template_argument_list_repeat1, @@ -327144,189 +328930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [118823] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5832), 1, - anon_sym_COMMA, - ACTIONS(5834), 1, - anon_sym_RBRACE, - STATE(2562), 1, - sym_argument_list, - STATE(6027), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [118916] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5397), 1, - anon_sym_STAR, - ACTIONS(5399), 1, - anon_sym_AMP_AMP, - ACTIONS(5401), 1, - anon_sym_AMP, - STATE(4973), 1, - sym__scope_resolution, - STATE(5115), 1, - sym__declarator, - STATE(6665), 1, - sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [118993] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4973), 1, - sym__scope_resolution, - STATE(5108), 1, - sym__declarator, - STATE(7048), 1, - sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [119070] = 19, + [119465] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -327345,11 +328949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(4207), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(4978), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, STATE(4992), 1, sym__scope_resolution, @@ -327357,7 +328961,7 @@ static const uint16_t ts_small_parse_table[] = { sym__declarator, STATE(6985), 1, sym_ms_based_modifier, - STATE(4393), 2, + STATE(4401), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(6970), 2, @@ -327384,44 +328988,44 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [119147] = 27, + [119542] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(5822), 1, + ACTIONS(5846), 1, anon_sym_COMMA, - ACTIONS(5836), 1, + ACTIONS(5877), 1, anon_sym_RPAREN, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, STATE(5814), 1, aux_sym_argument_list_repeat1, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -327430,36 +329034,160 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [119240] = 27, + [119635] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5879), 1, + anon_sym_COMMA, + ACTIONS(5881), 1, + anon_sym_RBRACE, + STATE(2485), 1, + sym_argument_list, + STATE(6001), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [119728] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5108), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [119805] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, ACTIONS(5756), 1, anon_sym_DOT_DOT_DOT, @@ -327483,9 +329211,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, ACTIONS(5790), 1, anon_sym_bitand, - ACTIONS(5838), 1, + ACTIONS(5883), 1, anon_sym_GT2, - STATE(2993), 1, + STATE(3015), 1, sym_argument_list, STATE(5984), 1, aux_sym_template_argument_list_repeat1, @@ -327516,454 +329244,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [119333] = 27, + [119898] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5840), 1, - anon_sym_COMMA, - ACTIONS(5842), 1, - anon_sym_RBRACE, - STATE(2562), 1, - sym_argument_list, - STATE(6001), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [119426] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(5373), 1, - sym_identifier, - ACTIONS(5375), 1, - anon_sym_STAR, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_AMP, - ACTIONS(5381), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - STATE(4962), 1, - sym__scope_resolution, - STATE(5303), 1, - sym__declarator, - STATE(6725), 1, - sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [119503] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5844), 1, - anon_sym_COMMA, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5870), 1, - anon_sym_RBRACK, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - STATE(6028), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [119596] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5754), 1, - anon_sym_RBRACE, - ACTIONS(5880), 1, - anon_sym_COMMA, - STATE(2562), 1, - sym_argument_list, - STATE(5884), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [119689] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5397), 1, - anon_sym_STAR, - ACTIONS(5399), 1, - anon_sym_AMP_AMP, - ACTIONS(5401), 1, - anon_sym_AMP, - STATE(4973), 1, - sym__scope_resolution, - STATE(5088), 1, - sym__declarator, - STATE(6665), 1, - sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [119766] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5822), 1, - anon_sym_COMMA, - ACTIONS(5882), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - STATE(6035), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [119859] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4973), 1, - sym__scope_resolution, - STATE(5118), 1, - sym__declarator, - STATE(7048), 1, - sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [119936] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, ACTIONS(5756), 1, anon_sym_DOT_DOT_DOT, @@ -327987,11 +329277,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, ACTIONS(5790), 1, anon_sym_bitand, - ACTIONS(5884), 1, + ACTIONS(5885), 1, anon_sym_GT2, - STATE(2993), 1, + STATE(3015), 1, sym_argument_list, - STATE(5863), 1, + STATE(6003), 1, aux_sym_template_argument_list_repeat1, ACTIONS(5760), 2, anon_sym_DASH, @@ -328020,16 +329310,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [120029] = 27, + [119991] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5796), 1, + anon_sym_COMMA, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + ACTIONS(5887), 1, + anon_sym_RBRACK, + STATE(2485), 1, + sym_argument_list, + STATE(6028), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [120084] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5752), 1, + anon_sym_RBRACE, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5889), 1, + anon_sym_COMMA, + STATE(2485), 1, + sym_argument_list, + STATE(5884), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [120177] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5891), 1, + anon_sym_LPAREN2, + STATE(2549), 1, + sym_argument_list, + ACTIONS(4340), 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(4342), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [120226] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5482), 1, + anon_sym_LBRACK, + STATE(3722), 1, + sym_new_declarator, + ACTIONS(4659), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4657), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_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_DASH_GT, + anon_sym_GT2, + [120275] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5388), 1, + anon_sym_STAR, + ACTIONS(5390), 1, + anon_sym_AMP_AMP, + ACTIONS(5392), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5088), 1, + sym__declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [120352] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5846), 1, + anon_sym_COMMA, + ACTIONS(5894), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + STATE(6035), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [120445] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, ACTIONS(5756), 1, anon_sym_DOT_DOT_DOT, @@ -328053,9 +329687,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, ACTIONS(5790), 1, anon_sym_bitand, - ACTIONS(5886), 1, + ACTIONS(5896), 1, anon_sym_GT2, - STATE(2993), 1, + STATE(3015), 1, sym_argument_list, STATE(5894), 1, aux_sym_template_argument_list_repeat1, @@ -328086,123 +329720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [120122] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5397), 1, - anon_sym_STAR, - ACTIONS(5399), 1, - anon_sym_AMP_AMP, - ACTIONS(5401), 1, - anon_sym_AMP, - STATE(4973), 1, - sym__scope_resolution, - STATE(5109), 1, - sym__declarator, - STATE(6665), 1, - sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [120199] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4973), 1, - sym__scope_resolution, - STATE(5112), 1, - sym__declarator, - STATE(7048), 1, - sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [120276] = 19, + [120538] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -328221,11 +329739,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(4207), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(4978), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, STATE(4992), 1, sym__scope_resolution, @@ -328233,7 +329751,7 @@ static const uint16_t ts_small_parse_table[] = { sym__declarator, STATE(6985), 1, sym_ms_based_modifier, - STATE(4393), 2, + STATE(4401), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(6970), 2, @@ -328260,241 +329778,56 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [120353] = 19, + [120615] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(5643), 1, + anon_sym___attribute__, + ACTIONS(5645), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5647), 1, + anon_sym___declspec, + ACTIONS(5655), 1, + anon_sym_virtual, + ACTIONS(5456), 4, + anon_sym_AMP, anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4207), 1, sym_identifier, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5385), 1, - anon_sym_STAR, - ACTIONS(5387), 1, - anon_sym_AMP_AMP, - ACTIONS(5389), 1, - anon_sym_AMP, - STATE(4992), 1, - sym__scope_resolution, - STATE(5360), 1, - sym__declarator, - STATE(6734), 1, - sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [120430] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, + anon_sym_operator, + ACTIONS(5641), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5458), 7, anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5822), 1, - anon_sym_COMMA, - ACTIONS(5888), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - STATE(5844), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [120523] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5890), 1, - anon_sym_RPAREN, - ACTIONS(5892), 1, anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [120616] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5462), 1, - anon_sym_LBRACK, - STATE(3730), 1, - sym_new_declarator, - ACTIONS(4656), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4654), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_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_DASH_GT, - anon_sym_GT2, - [120665] = 19, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5649), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3634), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [120674] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -328507,25 +329840,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4207), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(4978), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - ACTIONS(5385), 1, + ACTIONS(5388), 1, anon_sym_STAR, - ACTIONS(5387), 1, + ACTIONS(5390), 1, anon_sym_AMP_AMP, - ACTIONS(5389), 1, + ACTIONS(5392), 1, anon_sym_AMP, - STATE(4992), 1, + STATE(4973), 1, sym__scope_resolution, - STATE(5363), 1, + STATE(5109), 1, sym__declarator, - STATE(6734), 1, + STATE(6665), 1, sym_ms_based_modifier, - STATE(4393), 2, + STATE(4401), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(6970), 2, @@ -328552,148 +329885,16 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [120742] = 27, + [120751] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5822), 1, - anon_sym_COMMA, - ACTIONS(5894), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - STATE(6090), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [120835] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5896), 1, - anon_sym_COMMA, - ACTIONS(5898), 1, - anon_sym_RBRACE, - STATE(2562), 1, - sym_argument_list, - STATE(6074), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [120928] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, ACTIONS(5756), 1, anon_sym_DOT_DOT_DOT, @@ -328717,9 +329918,634 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, ACTIONS(5790), 1, anon_sym_bitand, - ACTIONS(5900), 1, + ACTIONS(5898), 1, anon_sym_GT2, - STATE(2993), 1, + STATE(3015), 1, + sym_argument_list, + STATE(5863), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [120844] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5846), 1, + anon_sym_COMMA, + ACTIONS(5900), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + STATE(5844), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [120937] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5118), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [121014] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5112), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [121091] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5350), 1, + anon_sym_LT, + ACTIONS(5522), 1, + anon_sym_EQ, + STATE(3282), 1, + sym_template_argument_list, + ACTIONS(5520), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(3455), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(3450), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [121146] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3665), 1, + sym__enum_base_clause, + STATE(4036), 1, + sym_enumerator_list, + ACTIONS(4203), 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(4205), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [121195] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5846), 1, + anon_sym_COMMA, + ACTIONS(5902), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + STATE(5922), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [121288] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5907), 1, + anon_sym___attribute__, + ACTIONS(5910), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5913), 1, + anon_sym___declspec, + ACTIONS(5919), 1, + anon_sym_virtual, + ACTIONS(5488), 4, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(5904), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(5490), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5916), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3634), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [121347] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(5922), 1, + anon_sym_RPAREN, + ACTIONS(5924), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [121440] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3546), 1, + anon_sym_LBRACK, + ACTIONS(5350), 1, + anon_sym_LT, + STATE(3795), 1, + sym_template_argument_list, + ACTIONS(3539), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3542), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_EQ, + ACTIONS(3537), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [121495] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5406), 1, + anon_sym_STAR, + ACTIONS(5408), 1, + anon_sym_AMP_AMP, + ACTIONS(5410), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5363), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [121572] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5926), 1, + anon_sym_GT2, + STATE(3015), 1, sym_argument_list, STATE(6072), 1, aux_sym_template_argument_list_repeat1, @@ -328750,139 +330576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [121021] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5822), 1, - anon_sym_COMMA, - ACTIONS(5902), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - STATE(5922), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [121114] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5844), 1, - anon_sym_COMMA, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - ACTIONS(5904), 1, - anon_sym_RBRACK, - STATE(2562), 1, - sym_argument_list, - STATE(5940), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [121207] = 19, + [121665] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -328895,17 +330589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4207), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(4978), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - ACTIONS(5385), 1, + ACTIONS(5406), 1, anon_sym_STAR, - ACTIONS(5387), 1, + ACTIONS(5408), 1, anon_sym_AMP_AMP, - ACTIONS(5389), 1, + ACTIONS(5410), 1, anon_sym_AMP, STATE(4992), 1, sym__scope_resolution, @@ -328913,7 +330607,7 @@ static const uint16_t ts_small_parse_table[] = { sym__declarator, STATE(6734), 1, sym_ms_based_modifier, - STATE(4393), 2, + STATE(4401), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(6970), 2, @@ -328940,271 +330634,44 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [121284] = 27, + [121742] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5844), 1, - anon_sym_COMMA, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - ACTIONS(5906), 1, - anon_sym_RBRACK, - STATE(2562), 1, - sym_argument_list, - STATE(5940), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [121377] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3885), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4641), 1, - anon_sym_LPAREN2, - ACTIONS(4647), 1, - anon_sym_LBRACK, - ACTIONS(3518), 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(3510), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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_DASH_GT, - [121428] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5391), 1, - anon_sym_STAR, - ACTIONS(5393), 1, - anon_sym_AMP_AMP, - ACTIONS(5395), 1, - anon_sym_AMP, - STATE(4973), 1, - sym__scope_resolution, - STATE(5162), 1, - sym__declarator, - STATE(7219), 1, - sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [121505] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5391), 1, - anon_sym_STAR, - ACTIONS(5393), 1, - anon_sym_AMP_AMP, - ACTIONS(5395), 1, - anon_sym_AMP, - STATE(4973), 1, - sym__scope_resolution, - STATE(5168), 1, - sym__declarator, - STATE(7219), 1, - sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [121582] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(5822), 1, + ACTIONS(5928), 1, anon_sym_COMMA, - ACTIONS(5908), 1, - anon_sym_RPAREN, - STATE(2562), 1, + ACTIONS(5930), 1, + anon_sym_RBRACE, + STATE(2485), 1, sym_argument_list, - STATE(5918), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5653), 2, + STATE(6074), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -329213,36 +330680,170 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [121675] = 27, + [121835] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + STATE(3742), 1, + sym__enum_base_clause, + STATE(3929), 1, + sym_enumerator_list, + ACTIONS(4215), 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(4217), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [121884] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4340), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4342), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [121931] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5350), 1, + anon_sym_LT, + ACTIONS(5932), 1, + anon_sym_LBRACK, + STATE(3795), 1, + sym_template_argument_list, + ACTIONS(3504), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3455), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_EQ, + ACTIONS(3450), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [121986] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, ACTIONS(5756), 1, anon_sym_DOT_DOT_DOT, @@ -329266,9 +330867,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, ACTIONS(5790), 1, anon_sym_bitand, - ACTIONS(5910), 1, + ACTIONS(5935), 1, anon_sym_GT2, - STATE(2993), 1, + STATE(3015), 1, sym_argument_list, STATE(5901), 1, aux_sym_template_argument_list_repeat1, @@ -329299,44 +330900,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [121768] = 27, + [122079] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(5912), 1, + ACTIONS(5937), 1, anon_sym_COMMA, - ACTIONS(5914), 1, + ACTIONS(5939), 1, anon_sym_RBRACE, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, STATE(5856), 1, aux_sym_initializer_list_repeat1, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -329345,93 +330946,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [121861] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5804), 1, - anon_sym_SEMI, - ACTIONS(5916), 1, - anon_sym_COMMA, - ACTIONS(5919), 1, - anon_sym_RBRACE, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [121954] = 19, + [122172] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -329444,25 +330979,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4698), 1, + ACTIONS(5376), 1, sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5391), 1, + ACTIONS(5378), 1, anon_sym_STAR, - ACTIONS(5393), 1, + ACTIONS(5380), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, + ACTIONS(5382), 1, anon_sym_AMP, - STATE(4973), 1, + ACTIONS(5384), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + STATE(4962), 1, sym__scope_resolution, - STATE(5167), 1, + STATE(5303), 1, sym__declarator, - STATE(7219), 1, + STATE(6725), 1, sym_ms_based_modifier, - STATE(4393), 2, + STATE(4401), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(6970), 2, @@ -329489,3633 +331024,176 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [122031] = 24, + [122249] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4974), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [122117] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5921), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [122207] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4746), 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(4748), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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_DASH_GT, - [122251] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4996), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [122335] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5923), 1, - anon_sym_COMMA, - ACTIONS(5925), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [122425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4137), 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_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [122469] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4865), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4863), 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, - [122535] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5892), 1, + ACTIONS(5836), 1, anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [122625] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5927), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [122715] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4117), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4119), 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_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [122759] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5929), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [122849] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4092), 1, - anon_sym_LBRACE, - ACTIONS(4201), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4203), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [122895] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5931), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [122985] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4887), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [123069] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5933), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [123159] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5935), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [123249] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - anon_sym_PIPE, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_bitor, - ACTIONS(5790), 1, - anon_sym_bitand, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5766), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5768), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4996), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [123333] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5937), 1, - anon_sym_COMMA, - ACTIONS(5939), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [123423] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4092), 1, - anon_sym_LBRACE, - ACTIONS(4201), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4203), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [123471] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, ACTIONS(5941), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [123561] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5943), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [123651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4137), 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_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [123695] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5945), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [123785] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5947), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [123875] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5949), 1, - anon_sym_COMMA, - ACTIONS(5951), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [123965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4113), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4115), 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_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [124009] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5850), 1, - anon_sym_SLASH, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4964), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [124069] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - [124151] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [124231] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5953), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [124321] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(4964), 1, - anon_sym_PIPE, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [124399] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(4964), 1, - anon_sym_PIPE, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [124475] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4964), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [124547] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4865), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4863), 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, - [124615] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5955), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [124705] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4964), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [124775] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4964), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [124841] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - anon_sym_PIPE, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5784), 1, - anon_sym_QMARK, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_bitor, - ACTIONS(5790), 1, - anon_sym_bitand, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5766), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5768), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5957), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [124929] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2335), 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_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [124973] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - anon_sym_PIPE, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5784), 1, - anon_sym_QMARK, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_bitor, - ACTIONS(5790), 1, - anon_sym_bitand, - STATE(2993), 1, - sym_argument_list, - ACTIONS(4786), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5766), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5768), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [125061] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3966), 1, - sym__enum_base_clause, - STATE(4057), 1, - sym_enumerator_list, - ACTIONS(4166), 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(4168), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [125109] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5959), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125199] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5961), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125289] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5963), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125379] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5965), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125469] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5967), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125559] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5850), 1, - anon_sym_SLASH, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4964), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [125621] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5969), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125711] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5971), 1, - anon_sym_COMMA, - ACTIONS(5973), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125801] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(5371), 1, - anon_sym_LT, - ACTIONS(5975), 1, - anon_sym_LBRACK, - STATE(3902), 1, - sym_template_argument_list, - ACTIONS(3531), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3516), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_EQ, - ACTIONS(3508), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [125855] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5850), 1, - anon_sym_SLASH, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4964), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [125919] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5978), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [126009] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5980), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [126099] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4170), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4172), 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_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [126143] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - anon_sym_PIPE, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5784), 1, - anon_sym_QMARK, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_bitor, - ACTIONS(5790), 1, - anon_sym_bitand, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5766), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5768), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5982), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [126231] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5984), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [126321] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4926), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [126405] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5986), 2, anon_sym_COMMA, + ACTIONS(5944), 1, anon_sym_RBRACE, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [126493] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - anon_sym_PIPE, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5784), 1, - anon_sym_QMARK, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_bitor, - ACTIONS(5790), 1, - anon_sym_bitand, - STATE(2993), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5766), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5768), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5988), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [126581] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 11, + ACTIONS(5714), 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(4137), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5728), 2, anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(5740), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [126625] = 26, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [122342] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, + ACTIONS(5796), 1, + anon_sym_COMMA, ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - anon_sym_SEMI, - STATE(2562), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + ACTIONS(5946), 1, + anon_sym_RBRACK, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + STATE(5940), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, + ACTIONS(5798), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5716), 2, + ACTIONS(5800), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, + ACTIONS(5804), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5722), 2, + ACTIONS(5806), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5726), 2, + ACTIONS(5810), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5820), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5814), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5816), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [126715] = 10, + [122435] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5995), 1, - anon_sym___attribute__, - ACTIONS(5998), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6001), 1, - anon_sym___declspec, - ACTIONS(6007), 1, - anon_sym_virtual, - ACTIONS(5470), 4, - anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_operator, - ACTIONS(5992), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5472), 7, + ACTIONS(4029), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(6004), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3706), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [126773] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3688), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(5371), 1, - anon_sym_LT, - STATE(3902), 1, - sym_template_argument_list, - ACTIONS(3681), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3684), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_EQ, - ACTIONS(3679), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [126827] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - STATE(2562), 1, + ACTIONS(5846), 1, + anon_sym_COMMA, + ACTIONS(5948), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + STATE(5918), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -333124,126 +331202,167 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5919), 2, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [122528] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5406), 1, + anon_sym_STAR, + ACTIONS(5408), 1, + anon_sym_AMP_AMP, + ACTIONS(5410), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5360), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [122605] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4631), 1, + anon_sym_LPAREN2, + ACTIONS(4637), 1, + anon_sym_LBRACK, + ACTIONS(3457), 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(3462), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [126915] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5874), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(5878), 1, + anon_sym_xor, anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4883), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [126999] = 26, + anon_sym_DASH_GT, + [122656] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5846), 1, anon_sym_COMMA, - ACTIONS(6010), 1, + ACTIONS(5950), 1, anon_sym_RPAREN, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + STATE(6090), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -333252,159 +331371,103 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127089] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4960), 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(4958), 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, - [127145] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6012), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [127235] = 8, + [122749] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(5371), 1, - anon_sym_LT, - ACTIONS(5627), 1, - anon_sym_EQ, - STATE(3299), 1, - sym_template_argument_list, - ACTIONS(5625), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(3516), 6, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5394), 1, + anon_sym_STAR, + ACTIONS(5396), 1, + anon_sym_AMP_AMP, + ACTIONS(5398), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5167), 1, + sym__declarator, + STATE(7219), 1, + sym_ms_based_modifier, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [122826] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4340), 10, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 24, + anon_sym_EQ, + ACTIONS(4342), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -333415,6 +331478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -333429,1576 +331493,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [127289] = 26, + [122875] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6014), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127379] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6016), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127469] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6018), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127559] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6020), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127649] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6022), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127739] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6024), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127829] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5082), 1, - anon_sym_RPAREN, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127919] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4786), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128007] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6026), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128097] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3903), 1, - sym__enum_base_clause, - STATE(4036), 1, - sym_enumerator_list, - ACTIONS(4160), 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(4162), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(47), 1, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [128145] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, + ACTIONS(1599), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6028), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128235] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6030), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128325] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6032), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128415] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6034), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128505] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6036), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128595] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6038), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4774), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4772), 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_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_GT2, - [128729] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6040), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128819] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6042), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128909] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6044), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128999] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6046), 1, - anon_sym_COMMA, - ACTIONS(6048), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4691), 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(4693), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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_DASH_GT, - [129133] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6050), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4726), 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4728), 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, - [129267] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5694), 1, - anon_sym___attribute__, - ACTIONS(5696), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5698), 1, - anon_sym___declspec, - ACTIONS(5706), 1, - anon_sym_virtual, - ACTIONS(5502), 4, - anon_sym_AMP, - anon_sym___based, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, sym_identifier, - anon_sym_operator, - ACTIONS(5692), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5504), 7, - anon_sym_LPAREN2, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5394), 1, anon_sym_STAR, + ACTIONS(5396), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5700), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3706), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(5398), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5168), 1, + sym__declarator, + STATE(7219), 1, + sym_ms_based_modifier, + STATE(4401), 2, sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [129325] = 3, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [122952] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4105), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5394), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(5396), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [129369] = 26, + ACTIONS(5398), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5162), 1, + sym__declarator, + STATE(7219), 1, + sym_ms_based_modifier, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [123029] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5834), 1, anon_sym_COMMA, - ACTIONS(6052), 1, + ACTIONS(5952), 1, anon_sym_SEMI, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -335007,62 +331653,62 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [129459] = 26, + [123119] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5834), 1, anon_sym_COMMA, - ACTIONS(6054), 1, - anon_sym_SEMI, - STATE(2562), 1, + ACTIONS(5954), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -335071,27 +331717,79 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [129549] = 3, + [123209] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4858), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4856), 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, + [123275] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4143), 11, @@ -335132,10 +331830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT2, anon_sym_requires, - [129593] = 3, + [123319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 11, + ACTIONS(4143), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -335147,7 +331845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2327), 25, + ACTIONS(4145), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -335173,7 +331871,5810 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT2, anon_sym_requires, - [129637] = 21, + [123363] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5016), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [123447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2017), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(2015), 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_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [123491] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4871), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [123575] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3848), 1, + sym_enumerator_list, + ACTIONS(4344), 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(4346), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [123621] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4914), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4673), 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(4675), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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_DASH_GT, + [123751] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(5956), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123841] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5958), 1, + anon_sym_COMMA, + ACTIONS(5960), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123931] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5639), 1, + anon_sym_LBRACE, + ACTIONS(5962), 1, + anon_sym_COLON, + STATE(3483), 1, + sym_enumerator_list, + STATE(3486), 1, + sym__enum_base_clause, + ACTIONS(4203), 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(4205), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [123983] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(5924), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124073] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(5964), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124163] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4871), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [124247] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(5966), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124337] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(5968), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124427] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5970), 1, + anon_sym_COMMA, + ACTIONS(5972), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124517] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(5974), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124607] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(5976), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124697] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(5978), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124787] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5980), 1, + anon_sym_COMMA, + ACTIONS(5982), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124877] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(5984), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124967] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(5986), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125057] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(5988), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125147] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5639), 1, + anon_sym_LBRACE, + ACTIONS(5962), 1, + anon_sym_COLON, + STATE(3395), 1, + sym_enumerator_list, + STATE(3396), 1, + sym__enum_base_clause, + ACTIONS(4215), 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(4217), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [125199] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5802), 1, + anon_sym_SLASH, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4936), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [125259] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4858), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4856), 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, + [125327] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + [125409] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(5990), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125499] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [125579] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5992), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [125667] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4936), 1, + anon_sym_PIPE, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [125745] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(4936), 1, + anon_sym_PIPE, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [125821] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4936), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [125893] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4936), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [125963] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4936), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [126029] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(5994), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126119] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(5996), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126209] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5998), 1, + anon_sym_COMMA, + ACTIONS(6000), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126299] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6002), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126389] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6004), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126479] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6006), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [126567] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5802), 1, + anon_sym_SLASH, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4936), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [126629] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5802), 1, + anon_sym_SLASH, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4936), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [126693] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6008), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126781] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6010), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4073), 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_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [126915] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6012), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127005] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5944), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127093] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6014), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127183] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6016), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4078), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4080), 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_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [127317] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5016), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [127401] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6018), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127491] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6020), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127581] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4982), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [127665] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6022), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127755] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6024), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127845] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6026), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127935] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6028), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128025] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5082), 1, + anon_sym_RPAREN, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128115] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4954), 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(4952), 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, + [128171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4774), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4772), 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_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_GT2, + [128215] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(4900), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [128303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(1999), 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_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [128347] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6030), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128437] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6032), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128527] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6034), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128617] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6036), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128707] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6038), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128797] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6040), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128887] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4900), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128975] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6042), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129065] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6044), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129155] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6046), 1, + anon_sym_COMMA, + ACTIONS(6048), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129245] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6050), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129335] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6052), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4692), 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4694), 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, + [129469] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4806), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [129553] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129643] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6056), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129733] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6058), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [129821] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4053), 1, + sym_enumerator_list, + ACTIONS(4237), 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(4239), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [129867] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6060), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129957] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6062), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4094), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4096), 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_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [130091] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6064), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130181] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5750), 1, + anon_sym_SEMI, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130271] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6066), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4145), 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_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [130405] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6068), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130495] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6070), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4768), 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(4770), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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_DASH_GT, + [130629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4707), 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(4709), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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_DASH_GT, + [130673] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6072), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130763] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6074), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130853] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6076), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4149), 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_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [130987] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6078), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4139), 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_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [131119] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6058), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131207] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -335186,18 +337687,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(3104), 1, anon_sym_LPAREN2, - ACTIONS(4698), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(4702), 1, - anon_sym_STAR, - ACTIONS(4704), 1, - anon_sym_AMP_AMP, - ACTIONS(4706), 1, - anon_sym_AMP, - ACTIONS(4708), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4752), 1, anon_sym_LBRACK, + ACTIONS(4754), 1, + anon_sym_STAR, + ACTIONS(4756), 1, + anon_sym_AMP_AMP, + ACTIONS(4758), 1, + anon_sym_AMP, STATE(4345), 1, sym_parameter_list, STATE(4973), 1, @@ -335208,7 +337709,7 @@ static const uint16_t ts_small_parse_table[] = { sym__abstract_declarator, STATE(7219), 1, sym_ms_based_modifier, - ACTIONS(5712), 2, + ACTIONS(5734), 2, anon_sym_COMMA, anon_sym_GT2, STATE(6970), 2, @@ -335232,266 +337733,10 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [129717] = 26, + [131287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6056), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129807] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6058), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129897] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6060), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129987] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5752), 1, - anon_sym_SEMI, - ACTIONS(5802), 1, - anon_sym_COMMA, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4099), 11, + ACTIONS(4086), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -335503,7 +337748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4101), 25, + ACTIONS(4088), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -335529,20 +337774,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT2, anon_sym_requires, - [130121] = 3, + [131331] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4669), 9, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5992), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4102), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4671), 27, + ACTIONS(4104), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -335553,12 +337863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -335570,25 +337876,565 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [130165] = 5, + anon_sym_GT2, + anon_sym_requires, + [131463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6062), 1, + ACTIONS(4098), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4100), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - STATE(2577), 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, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_GT2, + anon_sym_requires, + [131507] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6080), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_argument_list, - ACTIONS(4201), 10, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4082), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4084), 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_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [131641] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [131707] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6082), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131797] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(4798), 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(4796), 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, + [131851] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 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(4934), 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, + [131913] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6084), 1, + anon_sym_COMMA, + ACTIONS(6086), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132003] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6088), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132093] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [132161] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6090), 1, + anon_sym_LPAREN2, + STATE(2870), 1, + sym_argument_list, + ACTIONS(4340), 9, 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(4203), 24, + ACTIONS(4342), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -335599,6 +338445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -335613,706 +338460,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [130213] = 25, + [132209] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5988), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130301] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - anon_sym_PIPE, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_bitor, - ACTIONS(5790), 1, - anon_sym_bitand, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5766), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5768), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4926), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [130385] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6065), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4156), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4158), 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_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [130517] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6067), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130607] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6069), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4174), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4176), 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_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [130741] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6071), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130831] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5957), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130919] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4964), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [130985] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5764), 1, - anon_sym_SLASH, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4964), 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(4962), 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, - [131047] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6073), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131137] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, ACTIONS(5764), 1, anon_sym_SLASH, @@ -336322,231 +338479,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(5786), 1, anon_sym_LT_EQ_GT, - STATE(2993), 1, + STATE(3015), 1, sym_argument_list, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4964), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [131205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4181), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4183), 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_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [131249] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6075), 1, - anon_sym_COMMA, - ACTIONS(6077), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131339] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6079), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131429] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(4964), 2, + ACTIONS(4936), 2, anon_sym_PIPE, anon_sym_AMP, ACTIONS(5760), 2, @@ -336563,7 +338498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4962), 15, + ACTIONS(4934), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -336579,126 +338514,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [131499] = 26, + [132279] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6081), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131589] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(4893), 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(4891), 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, - [131643] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, ACTIONS(5764), 1, anon_sym_SLASH, @@ -336708,9 +338533,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(5786), 1, anon_sym_LT_EQ_GT, - STATE(2993), 1, + STATE(3015), 1, sym_argument_list, - ACTIONS(4964), 2, + ACTIONS(4936), 2, anon_sym_PIPE, anon_sym_AMP, ACTIONS(5760), 2, @@ -336731,7 +338556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4962), 12, + ACTIONS(4934), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -336744,896 +338569,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_GT2, - [131715] = 19, + [132351] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4964), 1, - anon_sym_PIPE, - ACTIONS(5216), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5790), 1, - anon_sym_bitand, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [131791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4151), 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_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [131835] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(4964), 1, - anon_sym_PIPE, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5790), 1, - anon_sym_bitand, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [131913] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6083), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132003] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - anon_sym_PIPE, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_bitor, - ACTIONS(5790), 1, - anon_sym_bitand, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_GT2, - [132083] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - anon_sym_PIPE, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_bitor, - ACTIONS(5790), 1, - anon_sym_bitand, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5768), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_GT2, - [132165] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6085), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132255] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - anon_sym_PIPE, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_bitor, - ACTIONS(5790), 1, - anon_sym_bitand, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5766), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5768), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4887), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [132339] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4964), 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(4962), 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, - [132395] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5764), 1, - anon_sym_SLASH, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4964), 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(4962), 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, - [132455] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - ACTIONS(5764), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - anon_sym_PIPE, - ACTIONS(5774), 1, - anon_sym_AMP, - ACTIONS(5780), 1, - anon_sym_LT_LT, - ACTIONS(5782), 1, - anon_sym_GT_GT, - ACTIONS(5786), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_bitor, - ACTIONS(5790), 1, - anon_sym_bitand, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5760), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5762), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5766), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5768), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5772), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5776), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4883), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(5778), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [132539] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5285), 1, - sym_literal_suffix, - ACTIONS(3518), 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(3510), 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [132585] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132675] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6089), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132763] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6091), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132853] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5834), 1, anon_sym_COMMA, ACTIONS(6093), 1, anon_sym_SEMI, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -337642,62 +338613,62 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [132943] = 26, + [132441] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5834), 1, anon_sym_COMMA, ACTIONS(6095), 1, anon_sym_SEMI, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -337706,62 +338677,180 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [133033] = 26, + [132531] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4561), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4936), 1, + anon_sym_PIPE, + ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [132607] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4806), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [132691] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5834), 1, anon_sym_COMMA, ACTIONS(6097), 1, - anon_sym_RPAREN, - STATE(2562), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -337770,168 +338859,95 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [133123] = 26, + [132781] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4561), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, + ACTIONS(4936), 1, anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5774), 1, anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5790), 1, anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6099), 1, - anon_sym_RPAREN, - STATE(2562), 1, + STATE(3015), 1, sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, + ACTIONS(5760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5716), 2, + ACTIONS(5762), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, + ACTIONS(5772), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5778), 4, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133213] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6101), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [133301] = 7, + ACTIONS(4934), 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, + [132859] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6103), 1, - sym_identifier, - ACTIONS(6108), 1, - sym_primitive_type, - STATE(3387), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6106), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3946), 8, + ACTIONS(5651), 1, + sym_auto, + ACTIONS(5653), 1, + anon_sym_decltype, + STATE(4017), 1, + sym_decltype_auto, + ACTIONS(4336), 9, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -337940,7 +338956,626 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(3948), 21, + ACTIONS(4338), 24, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [132909] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6099), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132997] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_GT2, + [133077] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6101), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133167] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6103), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133257] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_GT2, + [133339] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 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(4934), 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, + [133395] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6105), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133483] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 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(4934), 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, + [133543] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5279), 1, + sym_literal_suffix, + ACTIONS(3457), 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(3462), 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [133589] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6107), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133679] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_SEMI, + ACTIONS(3724), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3727), 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(3722), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -337950,6 +339585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -337958,14 +339594,400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_template, anon_sym_operator, - [133353] = 3, + [133729] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4189), 11, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6109), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133819] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6111), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133909] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6113), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133999] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6115), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134089] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6117), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134179] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6119), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4130), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -337977,7 +339999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4191), 25, + ACTIONS(4132), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -338003,38 +340025,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT2, anon_sym_requires, - [133397] = 25, + [134313] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -338043,94 +340065,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5818), 2, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(5730), 3, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [133485] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6110), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133575] = 21, + [134401] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -338143,18 +340101,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(3104), 1, anon_sym_LPAREN2, - ACTIONS(4698), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(4710), 1, - anon_sym_LBRACK, - ACTIONS(4766), 1, + ACTIONS(4744), 1, anon_sym_STAR, - ACTIONS(4768), 1, + ACTIONS(4746), 1, anon_sym_AMP_AMP, - ACTIONS(4770), 1, + ACTIONS(4748), 1, anon_sym_AMP, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(4752), 1, + anon_sym_LBRACK, STATE(4350), 1, sym_parameter_list, STATE(4973), 1, @@ -338165,7 +340123,7 @@ static const uint16_t ts_small_parse_table[] = { sym__abstract_declarator, STATE(7219), 1, sym_ms_based_modifier, - ACTIONS(5712), 2, + ACTIONS(5734), 2, anon_sym_COMMA, anon_sym_RPAREN, STATE(6970), 2, @@ -338189,16 +340147,16 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [133655] = 24, + [134481] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(4561), 1, anon_sym_LPAREN2, ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(5232), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, ACTIONS(5756), 1, anon_sym_DOT_DOT_DOT, @@ -338218,7 +340176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, ACTIONS(5790), 1, anon_sym_bitand, - STATE(2993), 1, + STATE(3015), 1, sym_argument_list, ACTIONS(5760), 2, anon_sym_DASH, @@ -338238,7 +340196,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5792), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4974), 3, + ACTIONS(4914), 3, anon_sym_COMMA, anon_sym_QMARK, anon_sym_GT2, @@ -338251,106 +340209,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [133741] = 26, + [134567] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5834), 1, anon_sym_COMMA, - ACTIONS(6112), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133831] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6114), 1, + ACTIONS(6121), 1, anon_sym_RPAREN, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -338359,62 +340253,123 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [133921] = 26, + [134657] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4561), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4982), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [134741] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5834), 1, anon_sym_COMMA, - ACTIONS(6116), 1, + ACTIONS(6123), 1, anon_sym_RPAREN, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -338423,94 +340378,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [134011] = 26, + [134831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6118), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134101] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4139), 11, + ACTIONS(4126), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -338522,7 +340413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4141), 25, + ACTIONS(4128), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -338548,42 +340439,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT2, anon_sym_requires, - [134145] = 26, + [134875] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4561), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(5216), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4862), 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(4860), 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, + [134931] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5834), 1, anon_sym_COMMA, - ACTIONS(6120), 1, - anon_sym_SEMI, - STATE(2562), 1, + ACTIONS(6125), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -338592,1239 +340530,55 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [134235] = 17, + [135021] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5700), 1, + ACTIONS(5649), 1, anon_sym_const, - ACTIONS(6124), 1, + ACTIONS(6129), 1, anon_sym_AMP_AMP, - ACTIONS(6126), 1, + ACTIONS(6131), 1, anon_sym_AMP, - ACTIONS(6128), 1, + ACTIONS(6133), 1, anon_sym___attribute__, - ACTIONS(6130), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6134), 1, + ACTIONS(6139), 1, anon_sym_DASH_GT, - ACTIONS(6136), 1, + ACTIONS(6141), 1, anon_sym_noexcept, - ACTIONS(6138), 1, + ACTIONS(6143), 1, anon_sym_throw, - ACTIONS(6140), 1, + ACTIONS(6145), 1, anon_sym_requires, STATE(5092), 1, sym_trailing_return_type, STATE(5114), 1, sym_requires_clause, - ACTIONS(3980), 2, + ACTIONS(3983), 2, anon_sym_final, anon_sym_override, - STATE(4234), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4068), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6122), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [134307] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(5792), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4861), 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(4859), 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, - [134363] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_DASH_GT, - STATE(2993), 1, - sym_argument_list, - ACTIONS(4857), 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(4855), 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, - [134417] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6142), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134507] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5694), 1, - anon_sym___attribute__, - ACTIONS(5696), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5698), 1, - anon_sym___declspec, - ACTIONS(5706), 1, - anon_sym_virtual, - ACTIONS(5536), 4, - anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_operator, - ACTIONS(5692), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5538), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5700), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3706), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [134565] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6144), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134655] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6146), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134745] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, - anon_sym_COMMA, - ACTIONS(6148), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134835] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6128), 1, - anon_sym___attribute__, - ACTIONS(6134), 1, - anon_sym_DASH_GT, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6140), 1, - anon_sym_requires, - ACTIONS(6152), 1, - anon_sym_LBRACK, - STATE(5106), 1, - sym_trailing_return_type, - STATE(5113), 1, - sym_requires_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - STATE(3804), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4062), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6150), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [134907] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6154), 1, - anon_sym_COMMA, - ACTIONS(6156), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134997] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6182), 1, - anon_sym_COLON, - ACTIONS(6184), 1, - anon_sym_QMARK, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135084] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6184), 1, - anon_sym_QMARK, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - ACTIONS(6192), 1, - anon_sym_COLON, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135171] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(6162), 1, - anon_sym_SLASH, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4964), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [135230] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4691), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4693), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [135273] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6194), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135360] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6196), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135447] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4920), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4918), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [135490] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6198), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135577] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4974), 2, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135662] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(6200), 1, - sym_identifier, - ACTIONS(6202), 1, - anon_sym_LPAREN2, - ACTIONS(6204), 1, - anon_sym_STAR, - ACTIONS(6206), 1, - anon_sym_AMP_AMP, - ACTIONS(6208), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5079), 1, - sym__field_declarator, - STATE(7093), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4289), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5173), 8, - 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, - sym_operator_name, - [135733] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4996), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135816] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6130), 1, - anon_sym_LBRACK, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6210), 1, - anon_sym___attribute__, - ACTIONS(6214), 1, - anon_sym_DASH_GT, - ACTIONS(6216), 1, - anon_sym_requires, - STATE(5040), 1, - sym_trailing_return_type, - STATE(5114), 1, - sym_requires_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - STATE(4195), 2, + STATE(4251), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, STATE(4081), 6, @@ -339834,15 +340588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_noexcept, sym_throw_specifier, aux_sym_function_declarator_repeat2, - ACTIONS(6122), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(6212), 7, + ACTIONS(6137), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -339850,40 +340596,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [135887] = 25, + ACTIONS(6127), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [135093] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(6218), 1, - anon_sym_SEMI, - STATE(2562), 1, + ACTIONS(6147), 1, + anon_sym_COMMA, + ACTIONS(6149), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -339892,58 +340649,580 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [135974] = 17, + [135183] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_DASH_GT, + STATE(3015), 1, + sym_argument_list, + ACTIONS(4908), 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(4906), 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, + [135237] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6151), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135327] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6153), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135417] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6155), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135507] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6133), 1, + anon_sym___attribute__, + ACTIONS(6139), 1, + anon_sym_DASH_GT, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6145), 1, + anon_sym_requires, + ACTIONS(6159), 1, + anon_sym_LBRACK, + STATE(5106), 1, + sym_trailing_return_type, + STATE(5113), 1, + sym_requires_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + STATE(3812), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4079), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6157), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [135579] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5834), 1, + anon_sym_COMMA, + ACTIONS(6161), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135669] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4092), 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_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [135713] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + ACTIONS(6163), 1, + anon_sym_RBRACK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135800] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6165), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135887] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(6202), 1, - anon_sym_LPAREN2, - ACTIONS(6220), 1, + ACTIONS(6167), 1, sym_identifier, - ACTIONS(6222), 1, + ACTIONS(6169), 1, + anon_sym_LPAREN2, + ACTIONS(6171), 1, anon_sym_STAR, - ACTIONS(6224), 1, + ACTIONS(6173), 1, anon_sym_AMP_AMP, - ACTIONS(6226), 1, + ACTIONS(6175), 1, anon_sym_AMP, - STATE(4390), 1, + STATE(4383), 1, sym_ms_unaligned_ptr_modifier, - STATE(5443), 1, + STATE(5079), 1, sym__field_declarator, - STATE(6912), 1, + STATE(7093), 1, sym_ms_based_modifier, ACTIONS(2903), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4262), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4290), 2, + STATE(3939), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(2901), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -339966,344 +341245,204 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [136045] = 17, + [135958] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6152), 1, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(6210), 1, - anon_sym___attribute__, - ACTIONS(6214), 1, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, anon_sym_DASH_GT, - ACTIONS(6216), 1, - anon_sym_requires, - STATE(5030), 1, - sym_trailing_return_type, - STATE(5113), 1, - sym_requires_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - STATE(3825), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4082), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6150), 7, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4871), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136041] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6207), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136128] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6209), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4553), 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_try, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [136116] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3633), 1, - anon_sym_RBRACK, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4879), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [136246] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6228), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136333] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6230), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4875), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [136463] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6232), 1, - anon_sym_LPAREN2, - STATE(2866), 1, - sym_argument_list, - ACTIONS(4201), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4203), 24, + anon_sym_COLON, + ACTIONS(4555), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -340314,6 +341453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -340326,290 +341466,163 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_template, anon_sym_operator, - [136510] = 25, + anon_sym_try, + anon_sym_requires, + [136258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 1, - anon_sym_RBRACK, - ACTIONS(4025), 1, + ACTIONS(4557), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136597] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6235), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136684] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3605), 1, - anon_sym_RBRACK, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136771] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6237), 1, anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136858] = 25, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4559), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [136301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4569), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4810), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4571), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(4828), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [136344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4433), 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(4435), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [136387] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(6239), 1, + ACTIONS(6211), 1, anon_sym_SEMI, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -340618,94 +341631,146 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [136945] = 25, + [136474] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, - anon_sym_RBRACK, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, + ACTIONS(6213), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, + ACTIONS(5714), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5848), 2, + ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5862), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5864), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [137032] = 4, + [136561] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6241), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, anon_sym_AMP_AMP, - ACTIONS(4912), 11, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6215), 1, + anon_sym___attribute__, + ACTIONS(6219), 1, + anon_sym_DASH_GT, + ACTIONS(6221), 1, + anon_sym_requires, + STATE(5040), 1, + sym_trailing_return_type, + STATE(5114), 1, + sym_requires_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + STATE(4204), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4086), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6127), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [136632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -340717,13 +341782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4910), 23, + ACTIONS(5012), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -340741,394 +341807,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [137077] = 25, + [136675] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6243), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137164] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4960), 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(4958), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [137219] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6245), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137306] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - ACTIONS(6247), 1, + ACTIONS(3574), 1, anon_sym_RBRACK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137393] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(5290), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(5292), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, + ACTIONS(5802), 1, anon_sym_SLASH, - ACTIONS(6168), 1, + ACTIONS(5808), 1, anon_sym_PIPE, - ACTIONS(6172), 1, + ACTIONS(5812), 1, anon_sym_AMP, - ACTIONS(6178), 1, + ACTIONS(5818), 1, anon_sym_GT_EQ, - ACTIONS(6184), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(6186), 1, + ACTIONS(5826), 1, anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, + ACTIONS(5828), 1, anon_sym_bitor, - ACTIONS(6190), 1, + ACTIONS(5830), 1, anon_sym_bitand, - ACTIONS(6249), 1, - anon_sym_COLON, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, + ACTIONS(5798), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6160), 2, + ACTIONS(5800), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6164), 2, + ACTIONS(5804), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(6166), 2, + ACTIONS(5806), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(6170), 2, + ACTIONS(5810), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6180), 2, + ACTIONS(5820), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6174), 3, + ACTIONS(5814), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6176), 3, + ACTIONS(5816), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [137480] = 25, + [136762] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6251), 1, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6159), 1, + anon_sym_LBRACK, + ACTIONS(6215), 1, + anon_sym___attribute__, + ACTIONS(6219), 1, + anon_sym_DASH_GT, + ACTIONS(6221), 1, + anon_sym_requires, + STATE(5030), 1, + sym_trailing_return_type, + STATE(5113), 1, + sym_requires_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + STATE(3833), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4088), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6157), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2562), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [136833] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3613), 1, + anon_sym_RBRACK, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, + ACTIONS(5798), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5716), 2, + ACTIONS(5800), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, + ACTIONS(5804), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5722), 2, + ACTIONS(5806), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5726), 2, + ACTIONS(5810), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5820), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5814), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5816), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [137567] = 17, + [136920] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3673), 1, + anon_sym_RBRACK, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137007] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(6200), 1, - sym_identifier, - ACTIONS(6202), 1, + ACTIONS(6169), 1, anon_sym_LPAREN2, - ACTIONS(6204), 1, + ACTIONS(6223), 1, + sym_identifier, + ACTIONS(6225), 1, anon_sym_STAR, - ACTIONS(6206), 1, + ACTIONS(6227), 1, anon_sym_AMP_AMP, - ACTIONS(6208), 1, + ACTIONS(6229), 1, anon_sym_AMP, - STATE(4390), 1, + STATE(4383), 1, sym_ms_unaligned_ptr_modifier, - STATE(5029), 1, + STATE(5443), 1, sym__field_declarator, - STATE(7093), 1, + STATE(6912), 1, sym_ms_based_modifier, ACTIONS(2903), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4290), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4298), 2, + STATE(4256), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, + STATE(4271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, ACTIONS(2901), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -341151,816 +342101,80 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [137638] = 25, + [137078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6253), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137725] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4844), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4842), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(4381), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_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_DASH_GT, - anon_sym_GT2, - [137768] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4952), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4950), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [137811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4916), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4914), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [137854] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6255), 1, anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137941] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6257), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [138028] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6259), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [138115] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6261), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [138202] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - ACTIONS(6263), 1, - anon_sym_RBRACK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [138289] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [138376] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6267), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [138463] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6269), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [138550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4972), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4970), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [138593] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [138672] = 25, + ACTIONS(4383), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [137121] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(6271), 1, + ACTIONS(6231), 1, anon_sym_SEMI, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -341969,1679 +342183,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [138759] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6184), 1, - anon_sym_QMARK, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - ACTIONS(6273), 1, - anon_sym_COLON, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(6170), 2, + ACTIONS(5740), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [138846] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4964), 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(4962), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [138901] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3673), 1, - anon_sym_RBRACK, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, + ACTIONS(5748), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5864), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [138988] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6275), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [139075] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3677), 1, - anon_sym_RBRACK, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [139162] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_PIPE, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6190), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [139239] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6277), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [139326] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4834), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4832), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [139369] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6279), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [139456] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6281), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [139543] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3728), 1, - anon_sym_RBRACK, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [139630] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_PIPE, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6190), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [139705] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3566), 1, - anon_sym_RBRACK, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [139792] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3646), 1, - anon_sym_RBRACK, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [139879] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4964), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [139950] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6283), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [140037] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6285), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [140124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4869), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4867), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [140167] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4964), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [140236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4782), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4780), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [140279] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6287), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [140366] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6184), 1, - anon_sym_QMARK, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - ACTIONS(6289), 1, - anon_sym_COLON, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [140453] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4964), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [140518] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6291), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [140605] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - ACTIONS(6293), 1, - anon_sym_RBRACK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [140692] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - ACTIONS(6295), 1, - anon_sym_RBRACK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [140779] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(6162), 1, - anon_sym_SLASH, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4964), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 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, - [140840] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(6162), 1, - anon_sym_SLASH, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4964), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 16, - 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [140903] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6297), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [140990] = 3, + [137208] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4980), 11, @@ -343656,7 +342218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2547), 24, + ACTIONS(4978), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -343681,442 +342243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [141033] = 25, + [137251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6299), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [141120] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6301), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [141207] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4926), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [141290] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6303), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [141377] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6305), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [141464] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6184), 1, - anon_sym_QMARK, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - ACTIONS(6307), 1, - anon_sym_COLON, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [141551] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6309), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [141638] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3518), 11, + ACTIONS(4976), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -344128,7 +342258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3510), 24, + ACTIONS(4974), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -344153,55 +342283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [141681] = 6, + [137294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3775), 1, - anon_sym_LBRACK, - ACTIONS(3778), 1, - anon_sym_SEMI, - ACTIONS(3768), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3771), 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(3766), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [141730] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3998), 1, - sym_enumerator_list, - ACTIONS(4227), 9, + ACTIONS(4401), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -344211,7 +342296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4229), 25, + ACTIONS(4403), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -344222,6 +342307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -344237,221 +342323,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [141775] = 25, + [137337] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_RBRACK, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [141862] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4883), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [141945] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4962), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - [142026] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(6311), 1, - anon_sym_RBRACE, - STATE(2562), 1, + ACTIONS(6233), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -344460,72 +342365,3656 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [137424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4616), 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(4618), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [137467] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + ACTIONS(6235), 1, + anon_sym_RBRACK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4405), 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(4407), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [137597] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6237), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137684] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + ACTIONS(6239), 1, + anon_sym_COLON, + ACTIONS(6241), 1, + anon_sym_QMARK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137771] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6243), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137858] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6245), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137945] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6247), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4340), 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(4342), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [138075] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6249), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4429), 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(4431), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [138205] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6251), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138292] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6253), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138379] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6255), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138466] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + ACTIONS(6257), 1, + anon_sym_RBRACK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138553] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6259), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138640] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6261), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4928), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [138770] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6263), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138857] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6265), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138944] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3759), 1, + anon_sym_RBRACK, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139031] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3596), 1, + anon_sym_RBRACK, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139118] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6267), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139205] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4445), 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(4447), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [139248] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4954), 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(4952), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [139303] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6167), 1, + sym_identifier, + ACTIONS(6169), 1, + anon_sym_LPAREN2, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6173), 1, + anon_sym_AMP_AMP, + ACTIONS(6175), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5029), 1, + sym__field_declarator, + STATE(7093), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4292), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + 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, + sym_operator_name, + [139374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4453), 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(4455), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [139417] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6269), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4707), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4709), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [139547] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6181), 1, + anon_sym_SLASH, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4936), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [139606] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + [139687] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3768), 1, + anon_sym_RBRACK, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4465), 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(4467), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [139817] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3589), 1, + anon_sym_RBRACK, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139904] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6271), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4477), 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(4479), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [140034] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [140113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4489), 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(4491), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [140156] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6273), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140243] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4936), 1, + anon_sym_PIPE, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6205), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [140320] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + ACTIONS(6275), 1, + anon_sym_RBRACK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140407] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + ACTIONS(6241), 1, + anon_sym_QMARK, + ACTIONS(6277), 1, + anon_sym_COLON, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140494] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6279), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140581] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3669), 1, + anon_sym_RBRACK, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4509), 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(4511), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [140711] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + ACTIONS(6281), 1, + anon_sym_RBRACK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140798] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4936), 1, + anon_sym_PIPE, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6205), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [140873] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4936), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [140944] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6283), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4854), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4852), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [141074] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6285), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4549), 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(4551), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [141204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(2453), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [141247] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6287), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141334] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6289), 1, + anon_sym_AMP_AMP, + ACTIONS(4996), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4994), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_GT2, + [141379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4354), 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(4356), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [141422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4348), 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(4350), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [141465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3457), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3462), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [141508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4581), 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(4583), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [141551] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4936), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [141620] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4936), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [141685] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6291), 1, + anon_sym_RBRACE, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141772] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6293), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141859] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6181), 1, + anon_sym_SLASH, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4936), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 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, + [141920] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6181), 1, + anon_sym_SLASH, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4936), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 16, + 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [141983] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6295), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4437), 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(4439), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, [142113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4946), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4944), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(4529), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4531), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_GT2, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, [142156] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, ACTIONS(5290), 1, anon_sym_DOT, @@ -344533,3049 +346022,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, + ACTIONS(6181), 1, anon_sym_SLASH, - ACTIONS(6168), 1, + ACTIONS(6187), 1, anon_sym_PIPE, - ACTIONS(6172), 1, + ACTIONS(6191), 1, anon_sym_AMP, - ACTIONS(6178), 1, + ACTIONS(6197), 1, anon_sym_GT_EQ, - ACTIONS(6184), 1, - anon_sym_QMARK, - ACTIONS(6186), 1, + ACTIONS(6201), 1, anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, + ACTIONS(6203), 1, anon_sym_bitor, - ACTIONS(6190), 1, + ACTIONS(6205), 1, anon_sym_bitand, - ACTIONS(6313), 1, - anon_sym_COLON, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [142243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4934), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [142286] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_LBRACE, - ACTIONS(6315), 1, - anon_sym_COLON, - STATE(3520), 1, - sym_enumerator_list, - STATE(3523), 1, - sym__enum_base_clause, - ACTIONS(4160), 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(4162), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [142337] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6317), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [142424] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6319), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [142511] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5702), 1, - sym_auto, - ACTIONS(5704), 1, - anon_sym_decltype, - STATE(3999), 1, - sym_decltype_auto, - ACTIONS(4223), 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(4225), 23, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [142560] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6321), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [142647] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - ACTIONS(6323), 1, - anon_sym_RBRACK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [142734] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6325), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [142821] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4778), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4776), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [142864] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6327), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [142951] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4786), 1, - anon_sym_COLON, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6184), 1, - anon_sym_QMARK, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [143038] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(6202), 1, - anon_sym_LPAREN2, - ACTIONS(6220), 1, - sym_identifier, - ACTIONS(6222), 1, - anon_sym_STAR, - ACTIONS(6224), 1, - anon_sym_AMP_AMP, - ACTIONS(6226), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5444), 1, - sym__field_declarator, - STATE(6912), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3827), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4293), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5173), 8, - 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, - sym_operator_name, - [143109] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - ACTIONS(6329), 1, - anon_sym_RBRACK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [143196] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6331), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [143283] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3715), 1, - anon_sym_RBRACK, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [143370] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6184), 1, - anon_sym_QMARK, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - ACTIONS(6333), 1, - anon_sym_COLON, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [143457] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_LBRACE, - ACTIONS(6315), 1, - anon_sym_COLON, - STATE(3480), 1, - sym__enum_base_clause, - STATE(3484), 1, - sym_enumerator_list, - ACTIONS(4166), 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(4168), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [143508] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6335), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [143595] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(6200), 1, - sym_identifier, - ACTIONS(6202), 1, - anon_sym_LPAREN2, - ACTIONS(6204), 1, - anon_sym_STAR, - ACTIONS(6206), 1, - anon_sym_AMP_AMP, - ACTIONS(6208), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5007), 1, - sym__field_declarator, - STATE(7093), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4258), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4290), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5173), 8, - 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, - sym_operator_name, - [143666] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6337), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [143753] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6339), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [143840] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(6202), 1, - anon_sym_LPAREN2, - ACTIONS(6220), 1, - sym_identifier, - ACTIONS(6222), 1, - anon_sym_STAR, - ACTIONS(6224), 1, - anon_sym_AMP_AMP, - ACTIONS(6226), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5444), 1, - sym__field_declarator, - STATE(6912), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4290), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4293), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5173), 8, - 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, - sym_operator_name, - [143911] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6341), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [143998] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [144085] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(6200), 1, - sym_identifier, - ACTIONS(6202), 1, - anon_sym_LPAREN2, - ACTIONS(6204), 1, - anon_sym_STAR, - ACTIONS(6206), 1, - anon_sym_AMP_AMP, - ACTIONS(6208), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5007), 1, - sym__field_declarator, - STATE(7093), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3848), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4258), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5173), 8, - 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, - sym_operator_name, - [144156] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6184), 1, - anon_sym_QMARK, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - ACTIONS(6345), 1, - anon_sym_COLON, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [144243] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - ACTIONS(6347), 1, - anon_sym_RBRACK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [144330] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6184), 1, - anon_sym_QMARK, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - ACTIONS(6349), 1, - anon_sym_COLON, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [144417] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6351), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [144504] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6353), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [144591] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6355), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [144678] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6357), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [144765] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6184), 1, - anon_sym_QMARK, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - ACTIONS(6359), 1, - anon_sym_COLON, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [144852] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6361), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [144939] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6363), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [145026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4746), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4748), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [145069] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(3104), 1, - anon_sym_LPAREN2, - ACTIONS(3106), 1, - anon_sym_STAR, - ACTIONS(3108), 1, - anon_sym_AMP_AMP, - ACTIONS(3110), 1, - anon_sym_AMP, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4710), 1, - anon_sym_LBRACK, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(5712), 1, - anon_sym_RPAREN, - STATE(4350), 1, - sym_parameter_list, - STATE(4992), 1, - sym__scope_resolution, - STATE(5319), 1, - sym__declarator, - STATE(5402), 1, - sym__abstract_declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [145148] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5820), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [145235] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6365), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [145322] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(6202), 1, - anon_sym_LPAREN2, - ACTIONS(6220), 1, - sym_identifier, - ACTIONS(6222), 1, - anon_sym_STAR, - ACTIONS(6224), 1, - anon_sym_AMP_AMP, - ACTIONS(6226), 1, - anon_sym_AMP, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5411), 1, - sym__field_declarator, - STATE(6912), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3931), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4305), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5173), 8, - 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, - sym_operator_name, - [145393] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6367), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [145480] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6369), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [145567] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6371), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [145654] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6373), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [145741] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6375), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [145828] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4857), 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(4855), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [145881] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6377), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [145968] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3575), 1, - anon_sym_RBRACK, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [146055] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6379), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [146142] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6184), 1, - anon_sym_QMARK, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - ACTIONS(6381), 1, - anon_sym_COLON, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [146229] = 5, - ACTIONS(3), 1, - sym_comment, ACTIONS(6241), 1, - anon_sym_AMP_AMP, - ACTIONS(6383), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4897), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4895), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, anon_sym_QMARK, - 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(6297), 1, + anon_sym_COLON, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [146276] = 25, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142243] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(6385), 1, + ACTIONS(6299), 1, anon_sym_RPAREN, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -347584,122 +346113,120 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [146363] = 25, + [142330] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(5290), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(5292), 1, anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, + ACTIONS(6181), 1, anon_sym_SLASH, - ACTIONS(5856), 1, + ACTIONS(6187), 1, anon_sym_PIPE, - ACTIONS(5860), 1, + ACTIONS(6191), 1, anon_sym_AMP, - ACTIONS(5866), 1, + ACTIONS(6197), 1, anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(6201), 1, anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, + ACTIONS(6203), 1, anon_sym_bitor, - ACTIONS(5878), 1, + ACTIONS(6205), 1, anon_sym_bitand, - ACTIONS(6387), 1, - anon_sym_RBRACK, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, + ACTIONS(6177), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5848), 2, + ACTIONS(6179), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5852), 2, + ACTIONS(6183), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5854), 2, + ACTIONS(6185), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5858), 2, + ACTIONS(6189), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5868), 2, + ACTIONS(6199), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5862), 3, + ACTIONS(5016), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(6193), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5864), 3, + ACTIONS(6195), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [146450] = 25, + [142413] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(6389), 1, + ACTIONS(6301), 1, anon_sym_SEMI, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -347708,123 +346235,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [146537] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4861), 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(4859), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - [146592] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(4893), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4891), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [146645] = 4, + [142500] = 3, ACTIONS(3), 1, sym_comment, - STATE(4060), 1, - sym_enumerator_list, - ACTIONS(4195), 9, + ACTIONS(4473), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -347834,7 +346268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4197), 25, + ACTIONS(4475), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -347845,6 +346279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -347860,965 +346295,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [146690] = 25, + [142543] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6169), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6391), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, + ACTIONS(6223), 1, + sym_identifier, + ACTIONS(6225), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, + ACTIONS(6227), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [146777] = 25, + ACTIONS(6229), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5444), 1, + sym__field_declarator, + STATE(6912), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4310), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + 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, + sym_operator_name, + [142614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, + ACTIONS(4671), 11, anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - ACTIONS(6393), 1, - anon_sym_RBRACK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [146864] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4887), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [146947] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6395), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [147034] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4865), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4863), 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, - [147099] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_DOT, - ACTIONS(5292), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, - anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6178), 1, - anon_sym_GT_EQ, - ACTIONS(6184), 1, - anon_sym_QMARK, - ACTIONS(6186), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, - anon_sym_bitor, - ACTIONS(6190), 1, - anon_sym_bitand, - ACTIONS(6397), 1, - anon_sym_COLON, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6160), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6164), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6166), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6170), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6174), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6176), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [147186] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3571), 1, - anon_sym_RBRACK, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [147273] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6399), 1, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [147360] = 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4669), 24, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [142657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4669), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4671), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(4425), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_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_DASH_GT, - anon_sym_GT2, - [147403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4990), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4988), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [147446] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6401), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [147533] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3597), 1, - anon_sym_RBRACK, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5864), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [147620] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6403), 1, - anon_sym_RPAREN, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [147707] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6405), 1, anon_sym_SEMI, - STATE(2562), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4427), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [142700] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, + ACTIONS(6177), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5716), 2, + ACTIONS(6179), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, + ACTIONS(6183), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5722), 2, + ACTIONS(6185), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5726), 2, + ACTIONS(6189), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(6199), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [147794] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4956), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4954), 24, + ACTIONS(4982), 3, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_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_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_DASH_GT, - anon_sym_GT2, - [147837] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_SLASH, - ACTIONS(5856), 1, - anon_sym_PIPE, - ACTIONS(5860), 1, - anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_GT_EQ, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5876), 1, - anon_sym_bitor, - ACTIONS(5878), 1, - anon_sym_bitand, - ACTIONS(6407), 1, - anon_sym_RBRACK, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5848), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5858), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5868), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5862), 3, + ACTIONS(6193), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5864), 3, + ACTIONS(6195), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [147924] = 3, + [142783] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4838), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4029), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_GT2, - [147967] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, ACTIONS(5290), 1, anon_sym_DOT, @@ -348826,180 +346502,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6162), 1, + ACTIONS(6181), 1, anon_sym_SLASH, - ACTIONS(6168), 1, + ACTIONS(6187), 1, anon_sym_PIPE, - ACTIONS(6172), 1, + ACTIONS(6191), 1, anon_sym_AMP, - ACTIONS(6178), 1, + ACTIONS(6197), 1, anon_sym_GT_EQ, - ACTIONS(6184), 1, - anon_sym_QMARK, - ACTIONS(6186), 1, + ACTIONS(6201), 1, anon_sym_LT_EQ_GT, - ACTIONS(6188), 1, + ACTIONS(6203), 1, anon_sym_bitor, - ACTIONS(6190), 1, + ACTIONS(6205), 1, anon_sym_bitand, - ACTIONS(6409), 1, + ACTIONS(6241), 1, + anon_sym_QMARK, + ACTIONS(6303), 1, anon_sym_COLON, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6158), 2, + ACTIONS(6177), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6160), 2, + ACTIONS(6179), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6164), 2, + ACTIONS(6183), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(6166), 2, + ACTIONS(6185), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(6170), 2, + ACTIONS(6189), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6180), 2, + ACTIONS(6199), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6174), 3, + ACTIONS(6193), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6176), 3, + ACTIONS(6195), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [148054] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6411), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [148141] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - anon_sym_LBRACK, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_DASH_GT, - ACTIONS(5718), 1, - anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_GT_EQ, - ACTIONS(5738), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, - anon_sym_bitand, - ACTIONS(5744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(6413), 1, - anon_sym_SEMI, - STATE(2562), 1, - sym_argument_list, - ACTIONS(5653), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5714), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5716), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5730), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5732), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [148228] = 3, + [142870] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4924), 11, @@ -349039,40 +346591,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [148271] = 25, + [142913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4340), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4810), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4342), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(4828), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [142956] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + ACTIONS(6305), 1, + anon_sym_RBRACK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143043] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3714), 1, + anon_sym_RBRACK, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4920), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4918), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [143173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 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(4370), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [143216] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(6415), 1, + ACTIONS(6307), 1, anon_sym_SEMI, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -349081,60 +346877,168 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [148358] = 25, + [143303] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4029), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4828), 1, + ACTIONS(5290), 1, anon_sym_DOT, - ACTIONS(4830), 1, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 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(4934), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [143358] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4900), 1, + anon_sym_COLON, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + ACTIONS(6241), 1, + anon_sym_QMARK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143445] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, anon_sym_DASH_GT, ACTIONS(5718), 1, anon_sym_SLASH, - ACTIONS(5724), 1, - anon_sym_PIPE, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5726), 1, anon_sym_GT_EQ, - ACTIONS(5738), 1, + ACTIONS(5730), 1, anon_sym_LT_EQ_GT, - ACTIONS(5740), 1, - anon_sym_bitor, - ACTIONS(5742), 1, + ACTIONS(5732), 1, anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, ACTIONS(5744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5746), 1, + ACTIONS(5754), 1, anon_sym_QMARK, - ACTIONS(6417), 1, + ACTIONS(6309), 1, anon_sym_SEMI, - STATE(2562), 1, + STATE(2485), 1, sym_argument_list, - ACTIONS(5653), 2, + ACTIONS(5704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(5714), 2, @@ -349143,1656 +347047,374 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5716), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5726), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5736), 2, + ACTIONS(5728), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5730), 3, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5732), 3, + ACTIONS(5724), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [148445] = 3, + [143532] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4399), 9, - anon_sym_COMMA, + ACTIONS(4029), 1, 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(4401), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4800), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [148487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4614), 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(4616), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [148529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4312), 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(4314), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [148571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4316), 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(4318), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [148613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4514), 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(4516), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [148655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4510), 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(4512), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [148697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4506), 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(4508), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [148739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4606), 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(4608), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [148781] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4244), 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(4246), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [148823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4602), 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(4604), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [148865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4594), 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(4596), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [148907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4590), 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(4592), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [148949] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5512), 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(5510), 23, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [148991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5340), 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(5338), 23, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [149033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4764), 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(4762), 23, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [149075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4586), 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(4588), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149117] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(5371), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LBRACK, - STATE(4094), 1, - sym_template_argument_list, - ACTIONS(3531), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3516), 5, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3508), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - [149169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 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(4584), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149211] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3686), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, - anon_sym_LT, - STATE(4094), 1, - sym_template_argument_list, - ACTIONS(3681), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3684), 5, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3679), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - [149263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4332), 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(4334), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4578), 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(4580), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4566), 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(4568), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4558), 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(4560), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4554), 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(4556), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 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(4504), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149515] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4550), 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(4552), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149557] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4546), 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(4548), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149599] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4542), 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(4544), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149641] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 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(4520), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4201), 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(4203), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149725] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4328), 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(4330), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149767] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 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(4326), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149809] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6152), 1, - anon_sym_LBRACK, - ACTIONS(6210), 1, - anon_sym___attribute__, - ACTIONS(6216), 1, - anon_sym_requires, - ACTIONS(6421), 1, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, anon_sym_DASH_GT, - STATE(5030), 1, - sym_trailing_return_type, - STATE(5113), 1, - sym_requires_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - STATE(4030), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(6150), 6, - anon_sym_COMMA, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6311), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - STATE(4112), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [149879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4480), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4482), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149921] = 3, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143619] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4419), 9, - anon_sym_COMMA, + ACTIONS(4029), 1, 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(4421), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4800), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [149963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4488), 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(4490), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [150005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4256), 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(4258), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [150047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4415), 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(4417), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [150089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4411), 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(4413), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [150131] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4407), 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(4409), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [150173] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6130), 1, - anon_sym_LBRACK, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6210), 1, - anon_sym___attribute__, - ACTIONS(6216), 1, - anon_sym_requires, - ACTIONS(6421), 1, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, anon_sym_DASH_GT, - STATE(5040), 1, - sym_trailing_return_type, - STATE(5114), 1, - sym_requires_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - STATE(4195), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(6122), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6313), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143706] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - STATE(4116), 6, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + ACTIONS(6315), 1, + anon_sym_RBRACK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143793] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + ACTIONS(6241), 1, + anon_sym_QMARK, + ACTIONS(6317), 1, + anon_sym_COLON, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143880] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + ACTIONS(6241), 1, + anon_sym_QMARK, + ACTIONS(6319), 1, + anon_sym_COLON, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143967] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6167), 1, + sym_identifier, + ACTIONS(6169), 1, + anon_sym_LPAREN2, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6173), 1, + anon_sym_AMP_AMP, + ACTIONS(6175), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5007), 1, + sym__field_declarator, + STATE(7093), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4267), 2, sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6212), 7, + aux_sym_type_definition_repeat1, + STATE(4271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -350800,10 +347422,671 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [150243] = 3, + STATE(5173), 8, + 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, + sym_operator_name, + [144038] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4403), 9, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6321), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144125] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6323), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144212] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6325), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144299] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6327), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144386] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6329), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144473] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6331), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5000), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [144603] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6333), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144690] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6335), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144777] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + ACTIONS(6241), 1, + anon_sym_QMARK, + ACTIONS(6337), 1, + anon_sym_COLON, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144864] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6167), 1, + sym_identifier, + ACTIONS(6169), 1, + anon_sym_LPAREN2, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6173), 1, + anon_sym_AMP_AMP, + ACTIONS(6175), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5007), 1, + sym__field_declarator, + STATE(7093), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3871), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4267), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + 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, + sym_operator_name, + [144935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4501), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -350813,7 +348096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4405), 25, + ACTIONS(4503), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -350824,6 +348107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -350839,30 +348123,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [150285] = 3, + [144978] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4300), 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(4302), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(47), 1, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6169), 1, + anon_sym_LPAREN2, + ACTIONS(6223), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_STAR, + ACTIONS(6227), 1, + anon_sym_AMP_AMP, + ACTIONS(6229), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5444), 1, + sym__field_declarator, + STATE(6912), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3839), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4310), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -350871,53 +348168,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [150327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4320), 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(4322), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [150369] = 3, + STATE(5173), 8, + 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, + sym_operator_name, + [145049] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4441), 9, @@ -350930,7 +348190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4443), 25, + ACTIONS(4443), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -350941,6 +348201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -350956,10 +348217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [150411] = 3, + [145092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4484), 9, + ACTIONS(4513), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -350969,7 +348230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4486), 25, + ACTIONS(4515), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -350980,6 +348241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -350995,10 +348257,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [150453] = 3, + [145135] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 9, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6339), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145222] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(3106), 1, + anon_sym_STAR, + ACTIONS(3108), 1, + anon_sym_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4752), 1, + anon_sym_LBRACK, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5734), 1, + anon_sym_RPAREN, + STATE(4350), 1, + sym_parameter_list, + STATE(4992), 1, + sym__scope_resolution, + STATE(5319), 1, + sym__declarator, + STATE(5402), 1, + sym__abstract_declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [145301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4673), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4675), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [145344] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4908), 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(4906), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [145397] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6341), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4385), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -351008,7 +348537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4478), 25, + ACTIONS(4387), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -351019,6 +348548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -351034,10 +348564,666 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [150495] = 3, + [145527] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4598), 9, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4768), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4770), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [145657] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3648), 1, + anon_sym_RBRACK, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145744] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6345), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145831] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + ACTIONS(6241), 1, + anon_sym_QMARK, + ACTIONS(6347), 1, + anon_sym_COLON, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4663), 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(4661), 24, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [145961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4912), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4910), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [146004] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6349), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146091] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6351), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146178] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6353), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4892), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [146308] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4358), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -351047,7 +349233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4600), 25, + ACTIONS(4360), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -351058,6 +349244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -351073,319 +349260,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [150537] = 3, + [146438] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 9, - anon_sym_COMMA, + ACTIONS(4029), 1, 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(4536), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4800), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [150579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4391), 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(4393), 25, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [150621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4336), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + ACTIONS(6357), 1, + anon_sym_RBRACK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4338), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [150663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4201), 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(4203), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [150705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4494), 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(4496), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [150747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 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(4290), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [150789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4383), 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(4385), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [150831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4610), 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(4612), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [150873] = 3, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146525] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4449), 9, @@ -351398,7 +349335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4451), 25, + ACTIONS(4451), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -351409,6 +349346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -351424,7 +349362,4591 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [150915] = 24, + [146568] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5350), 1, + anon_sym_LT, + ACTIONS(6359), 1, + anon_sym_LBRACK, + STATE(4077), 1, + sym_template_argument_list, + ACTIONS(3504), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3455), 5, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3450), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + [146621] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4862), 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(4860), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [146676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 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(4423), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [146719] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4798), 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(4796), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [146772] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6361), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4597), 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(4599), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [146902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4457), 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(4459), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [146945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4593), 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(4595), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [146988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4461), 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(4463), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [147031] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + ACTIONS(6241), 1, + anon_sym_QMARK, + ACTIONS(6363), 1, + anon_sym_COLON, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147118] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6365), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147205] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + ACTIONS(6367), 1, + anon_sym_RBRACK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147292] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6369), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147379] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6371), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147466] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6289), 1, + anon_sym_AMP_AMP, + ACTIONS(6373), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4786), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4784), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_GT2, + [147513] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6375), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4521), 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(4523), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [147643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4585), 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(4587), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [147686] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4806), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4517), 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(4519), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [147812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4627), 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(4629), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [147855] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4858), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4856), 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, + [147920] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6377), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148007] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + ACTIONS(6241), 1, + anon_sym_QMARK, + ACTIONS(6379), 1, + anon_sym_COLON, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148094] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6381), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148181] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 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(4527), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148224] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + ACTIONS(6241), 1, + anon_sym_QMARK, + ACTIONS(6383), 1, + anon_sym_COLON, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148311] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + ACTIONS(6241), 1, + anon_sym_QMARK, + ACTIONS(6385), 1, + anon_sym_COLON, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148398] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3779), 1, + anon_sym_RBRACK, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4505), 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(4507), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148528] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6387), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4573), 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(4575), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148658] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3544), 1, + anon_sym_LBRACK, + ACTIONS(5350), 1, + anon_sym_LT, + STATE(4077), 1, + sym_template_argument_list, + ACTIONS(3539), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3542), 5, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3537), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + [148711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5514), 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(5512), 24, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [148754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 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(5332), 24, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [148797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4537), 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(4539), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148840] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6389), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148927] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_RBRACK, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4620), 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(4622), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149057] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6391), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4393), 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(4395), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4409), 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(4411), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149230] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(4914), 2, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4604), 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(4606), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4794), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4792), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [149401] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4956), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [149444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4970), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [149487] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3718), 1, + anon_sym_RBRACK, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149574] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3716), 1, + anon_sym_RBRACK, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149661] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6393), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4850), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4848), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [149791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4608), 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(4610), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4362), 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(4364), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4589), 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(4591), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149920] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + ACTIONS(6241), 1, + anon_sym_QMARK, + ACTIONS(6395), 1, + anon_sym_COLON, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4612), 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(4614), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150050] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6397), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150137] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6399), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4533), 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(4535), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150267] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6401), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4497), 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(4499), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4990), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [150440] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6403), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4545), 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(4547), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150570] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6405), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150657] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6407), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150744] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6169), 1, + anon_sym_LPAREN2, + ACTIONS(6223), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_STAR, + ACTIONS(6227), 1, + anon_sym_AMP_AMP, + ACTIONS(6229), 1, + anon_sym_AMP, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5411), 1, + sym__field_declarator, + STATE(6912), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3919), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4300), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + 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, + sym_operator_name, + [150815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4389), 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(4391), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150858] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6409), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150945] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_SLASH, + ACTIONS(5808), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_AMP, + ACTIONS(5818), 1, + anon_sym_GT_EQ, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5828), 1, + anon_sym_bitor, + ACTIONS(5830), 1, + anon_sym_bitand, + ACTIONS(6411), 1, + anon_sym_RBRACK, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5798), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5800), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5804), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5810), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5820), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5814), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5816), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151032] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6413), 1, + anon_sym_SEMI, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151119] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4413), 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(4415), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151162] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6181), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_AMP, + ACTIONS(6197), 1, + anon_sym_GT_EQ, + ACTIONS(6201), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6203), 1, + anon_sym_bitor, + ACTIONS(6205), 1, + anon_sym_bitand, + ACTIONS(6241), 1, + anon_sym_QMARK, + ACTIONS(6415), 1, + anon_sym_COLON, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6177), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6179), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6185), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6189), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6199), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6193), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151249] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4481), 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(4483), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151292] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6417), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4541), 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(4543), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 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(4379), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4469), 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(4471), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4778), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4776), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [151551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 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(4419), 26, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151594] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(6419), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4782), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4780), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [151724] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_DOT, + ACTIONS(4804), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5720), 1, + anon_sym_AMP, + ACTIONS(5726), 1, + anon_sym_GT_EQ, + ACTIONS(5730), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5732), 1, + anon_sym_bitand, + ACTIONS(5738), 1, + anon_sym_PIPE, + ACTIONS(5742), 1, + anon_sym_bitor, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5754), 1, + anon_sym_QMARK, + ACTIONS(5852), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_argument_list, + ACTIONS(5704), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5728), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5736), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5740), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5748), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151811] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3899), 1, + anon_sym_SEMI, + ACTIONS(5441), 1, + anon_sym_LT, + ACTIONS(5932), 1, + anon_sym_LBRACK, + STATE(3795), 1, + sym_template_argument_list, + ACTIONS(3504), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3455), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(3450), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [151865] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_SEMI, + ACTIONS(5441), 1, + anon_sym_LT, + STATE(3282), 1, + sym_template_argument_list, + ACTIONS(3455), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(3450), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [151915] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6159), 1, + anon_sym_LBRACK, + ACTIONS(6215), 1, + anon_sym___attribute__, + ACTIONS(6221), 1, + anon_sym_requires, + ACTIONS(6421), 1, + anon_sym_DASH_GT, + STATE(5030), 1, + sym_trailing_return_type, + STATE(5113), 1, + sym_requires_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + STATE(4063), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6157), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + STATE(4124), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [151985] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5441), 1, + anon_sym_LT, + ACTIONS(5932), 1, + anon_sym_LBRACK, + STATE(4089), 1, + sym_template_argument_list, + ACTIONS(3504), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3455), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(3450), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [152037] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6215), 1, + anon_sym___attribute__, + ACTIONS(6221), 1, + anon_sym_requires, + ACTIONS(6421), 1, + anon_sym_DASH_GT, + STATE(5040), 1, + sym_trailing_return_type, + STATE(5114), 1, + sym_requires_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + STATE(4204), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6127), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + STATE(4121), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [152107] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3546), 1, + anon_sym_LBRACK, + ACTIONS(3549), 1, + anon_sym_SEMI, + ACTIONS(5441), 1, + anon_sym_LT, + STATE(3795), 1, + sym_template_argument_list, + ACTIONS(3539), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3542), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(3537), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [152161] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6215), 1, + anon_sym___attribute__, + ACTIONS(6425), 1, + anon_sym___declspec, + ACTIONS(6427), 1, + sym_auto, + ACTIONS(6429), 1, + anon_sym_decltype, + ACTIONS(6431), 1, + anon_sym_virtual, + STATE(3451), 1, + sym_decltype_auto, + ACTIONS(5420), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(5422), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6423), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4129), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [152225] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6215), 1, + anon_sym___attribute__, + ACTIONS(6425), 1, + anon_sym___declspec, + ACTIONS(6427), 1, + sym_auto, + ACTIONS(6429), 1, + anon_sym_decltype, + ACTIONS(6431), 1, + anon_sym_virtual, + STATE(3451), 1, + sym_decltype_auto, + ACTIONS(5412), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(5414), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6423), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4125), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [152289] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3546), 1, + anon_sym_LBRACK, + ACTIONS(5441), 1, + anon_sym_LT, + STATE(4089), 1, + sym_template_argument_list, + ACTIONS(3539), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3542), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(3537), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [152341] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, @@ -351443,31 +353965,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1451), 1, anon_sym_typename, - ACTIONS(2869), 1, + ACTIONS(2865), 1, sym_primitive_type, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(6423), 1, + ACTIONS(6433), 1, sym_identifier, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6429), 1, + ACTIONS(6439), 1, anon_sym_EQ, - STATE(3289), 1, + STATE(3277), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3376), 1, - sym__type_specifier, - STATE(3418), 1, + STATE(3336), 1, sym_template_type, - STATE(3479), 1, + STATE(3354), 1, + sym__type_specifier, + STATE(3443), 1, sym_qualified_type_identifier, - STATE(3522), 1, + STATE(3481), 1, sym_decltype_auto, STATE(5385), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(6427), 2, + ACTIONS(6437), 2, anon_sym_COMMA, anon_sym_GT2, ACTIONS(59), 4, @@ -351475,7 +353997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3504), 8, + STATE(3448), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -351484,586 +354006,41 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [150999] = 3, + [152425] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4276), 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(4278), 25, - anon_sym_AMP, - 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_thread_local, + ACTIONS(5649), 1, anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_STAR, + ACTIONS(6447), 1, + anon_sym_AMP_AMP, + ACTIONS(6449), 1, + anon_sym_AMP, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6453), 1, sym_auto, + ACTIONS(6455), 1, anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [151041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4445), 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(4447), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [151083] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4574), 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(4576), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [151125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4498), 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(4500), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [151167] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4395), 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(4397), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [151209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4464), 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(4466), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [151251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4760), 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(4758), 23, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [151293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4387), 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(4389), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [151335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4280), 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(4282), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [151377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4284), 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(4286), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [151419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4472), 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(4474), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [151461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4570), 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(4572), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [151503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4379), 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(4381), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [151545] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 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(4374), 25, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [151587] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6130), 1, - anon_sym_LBRACK, - ACTIONS(6134), 1, - anon_sym_DASH_GT, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6140), 1, - anon_sym_requires, - STATE(5092), 1, - sym_trailing_return_type, - STATE(5114), 1, - sym_requires_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - STATE(4111), 6, + STATE(4017), 1, + sym_decltype_auto, + STATE(4178), 1, + sym_parameter_list, + STATE(5099), 1, + sym__abstract_declarator, + STATE(4168), 2, sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6132), 7, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6137), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -352071,21 +354048,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6122), 8, + ACTIONS(6441), 8, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [151652] = 4, + anon_sym_requires, + [152492] = 4, ACTIONS(3), 1, sym_comment, - STATE(1727), 1, + STATE(1592), 1, sym__fold_operator, - ACTIONS(6433), 13, + ACTIONS(6459), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352099,7 +354076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6431), 19, + ACTIONS(6457), 19, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -352119,34 +354096,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [151695] = 7, + [152535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(2417), 2, anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_SEMI, - ACTIONS(5448), 1, - anon_sym_LT, - STATE(3299), 1, - sym_template_argument_list, - ACTIONS(3516), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 24, - anon_sym_AMP, + ACTIONS(2415), 31, 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_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -352155,96 +354119,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + 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_virtual, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - [151744] = 16, + [152576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6439), 1, - anon_sym_STAR, - ACTIONS(6441), 1, - anon_sym_AMP_AMP, - ACTIONS(6443), 1, - anon_sym_AMP, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6447), 1, - sym_auto, - ACTIONS(6449), 1, - anon_sym_decltype, - STATE(3999), 1, - sym_decltype_auto, - STATE(4155), 1, - sym_parameter_list, - STATE(5099), 1, - sym__abstract_declarator, - STATE(4172), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6435), 8, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(2447), 2, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - anon_sym_requires, - [151811] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6210), 1, - anon_sym___attribute__, - ACTIONS(6453), 1, - anon_sym___declspec, - ACTIONS(6455), 1, - sym_auto, - ACTIONS(6457), 1, - anon_sym_decltype, - ACTIONS(6459), 1, - anon_sym_virtual, - STATE(3455), 1, - sym_decltype_auto, - ACTIONS(5416), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(5418), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6451), 5, + ACTIONS(2445), 31, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(6212), 7, + anon_sym_input, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -352252,49 +354157,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4177), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [151874] = 15, + 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_virtual, + anon_sym_typename, + anon_sym_template, + [152617] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5700), 1, + ACTIONS(5649), 1, anon_sym_const, - ACTIONS(6124), 1, + ACTIONS(6129), 1, anon_sym_AMP_AMP, - ACTIONS(6126), 1, + ACTIONS(6131), 1, anon_sym_AMP, - ACTIONS(6134), 1, + ACTIONS(6139), 1, anon_sym_DASH_GT, - ACTIONS(6136), 1, + ACTIONS(6141), 1, anon_sym_noexcept, - ACTIONS(6138), 1, + ACTIONS(6143), 1, anon_sym_throw, - ACTIONS(6140), 1, + ACTIONS(6145), 1, anon_sym_requires, ACTIONS(6463), 1, anon_sym_LBRACK, - STATE(5094), 1, + STATE(5141), 1, sym_trailing_return_type, - STATE(5178), 1, + STATE(5204), 1, sym_requires_clause, - ACTIONS(3980), 2, + ACTIONS(3983), 2, anon_sym_final, anon_sym_override, - STATE(4111), 6, + STATE(4082), 6, sym_type_qualifier, sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_function_declarator_repeat2, - ACTIONS(6132), 7, + ACTIONS(6137), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -352311,40 +354222,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [151939] = 15, + [152682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5700), 1, + ACTIONS(2435), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2433), 31, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6134), 1, - anon_sym_DASH_GT, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6140), 1, - anon_sym_requires, - ACTIONS(6467), 1, - anon_sym_LBRACK, - STATE(5086), 1, - sym_trailing_return_type, - STATE(5135), 1, - sym_requires_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - STATE(4111), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6132), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -352352,7 +354245,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6465), 8, + 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_virtual, + anon_sym_typename, + anon_sym_template, + [152723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6467), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6465), 31, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_typename, + anon_sym_template, + [152764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2431), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2429), 31, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_typename, + anon_sym_template, + [152805] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_LBRACK, + ACTIONS(3724), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3727), 6, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3722), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + [152850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2647), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2645), 31, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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_virtual, + anon_sym_typename, + anon_sym_template, + [152891] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DASH_GT, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6145), 1, + anon_sym_requires, + STATE(5092), 1, + sym_trailing_return_type, + STATE(5114), 1, + sym_requires_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + STATE(4127), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6127), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -352361,35 +354464,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [152004] = 8, + [152956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(2955), 2, anon_sym_COLON_COLON, - ACTIONS(3688), 1, - anon_sym_LBRACK, - ACTIONS(5448), 1, - anon_sym_LT, - STATE(4124), 1, - sym_template_argument_list, - ACTIONS(3681), 2, - anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(3684), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(3679), 23, - anon_sym_AMP, + ACTIONS(2950), 31, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -352398,90 +354487,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + 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_virtual, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - [152055] = 9, + [152997] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3688), 1, - anon_sym_LBRACK, - ACTIONS(3691), 1, - anon_sym_SEMI, - ACTIONS(5448), 1, - anon_sym_LT, - STATE(3902), 1, - sym_template_argument_list, - ACTIONS(3681), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3684), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(3679), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(5649), 1, anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [152108] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6124), 1, + ACTIONS(6129), 1, anon_sym_AMP_AMP, - ACTIONS(6126), 1, + ACTIONS(6131), 1, anon_sym_AMP, - ACTIONS(6134), 1, + ACTIONS(6139), 1, anon_sym_DASH_GT, - ACTIONS(6136), 1, + ACTIONS(6141), 1, anon_sym_noexcept, - ACTIONS(6138), 1, + ACTIONS(6143), 1, anon_sym_throw, - ACTIONS(6140), 1, + ACTIONS(6145), 1, anon_sym_requires, ACTIONS(6471), 1, anon_sym_LBRACK, - STATE(5141), 1, + STATE(5086), 1, sym_trailing_return_type, - STATE(5204), 1, + STATE(5135), 1, sym_requires_clause, - ACTIONS(3980), 2, + ACTIONS(3983), 2, anon_sym_final, anon_sym_override, - STATE(4067), 6, + STATE(4127), 6, sym_type_qualifier, sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_function_declarator_repeat2, - ACTIONS(6132), 7, + ACTIONS(6137), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -352498,85 +354552,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [152173] = 9, + [153062] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3885), 1, - anon_sym_SEMI, - ACTIONS(5448), 1, - anon_sym_LT, - ACTIONS(5975), 1, - anon_sym_LBRACK, - STATE(3902), 1, - sym_template_argument_list, - ACTIONS(3531), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3516), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(3508), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(5649), 1, anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [152226] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6439), 1, - anon_sym_STAR, - ACTIONS(6441), 1, + ACTIONS(6129), 1, anon_sym_AMP_AMP, - ACTIONS(6443), 1, + ACTIONS(6131), 1, anon_sym_AMP, - ACTIONS(6445), 1, + ACTIONS(6139), 1, + anon_sym_DASH_GT, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6145), 1, + anon_sym_requires, + ACTIONS(6475), 1, anon_sym_LBRACK, - ACTIONS(6447), 1, - sym_auto, - ACTIONS(6449), 1, - anon_sym_decltype, - STATE(3999), 1, - sym_decltype_auto, - STATE(4155), 1, - sym_parameter_list, - STATE(5127), 1, - sym__abstract_declarator, - STATE(4159), 2, + STATE(5094), 1, + sym_trailing_return_type, + STATE(5178), 1, + sym_requires_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + STATE(4127), 6, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6132), 7, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6137), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -352586,46 +354595,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, ACTIONS(6473), 8, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [152293] = 14, + [153127] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, + ACTIONS(5649), 1, anon_sym_const, - ACTIONS(6210), 1, - anon_sym___attribute__, - ACTIONS(6453), 1, - anon_sym___declspec, - ACTIONS(6455), 1, - sym_auto, - ACTIONS(6457), 1, - anon_sym_decltype, - ACTIONS(6459), 1, - anon_sym_virtual, - STATE(3455), 1, - sym_decltype_auto, - ACTIONS(5426), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(5428), 3, + ACTIONS(6443), 1, anon_sym_LPAREN2, + ACTIONS(6445), 1, anon_sym_STAR, + ACTIONS(6447), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(6212), 7, + ACTIONS(6449), 1, + anon_sym_AMP, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6453), 1, + sym_auto, + ACTIONS(6455), 1, + anon_sym_decltype, + STATE(4017), 1, + sym_decltype_auto, + STATE(4178), 1, + sym_parameter_list, + STATE(5127), 1, + sym__abstract_declarator, + STATE(4147), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6137), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -352633,35 +354644,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4136), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [152356] = 8, + ACTIONS(6477), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [153194] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2601), 1, + sym_auto, + ACTIONS(2603), 1, + anon_sym_decltype, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(5545), 1, + sym_primitive_type, + ACTIONS(6479), 1, + sym_identifier, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, - anon_sym_LT, - ACTIONS(5975), 1, + ACTIONS(6483), 1, + anon_sym_enum, + ACTIONS(6485), 1, + anon_sym_class, + ACTIONS(6487), 1, + anon_sym_struct, + ACTIONS(6489), 1, + anon_sym_union, + ACTIONS(6491), 1, + anon_sym_typename, + STATE(2373), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3100), 1, + sym_template_type, + STATE(3151), 1, + sym_qualified_type_identifier, + STATE(3195), 1, + sym_decltype_auto, + STATE(3323), 1, + sym__type_specifier, + STATE(4183), 1, + sym_argument_list, + STATE(5401), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2577), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3194), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153274] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5639), 1, + anon_sym_LBRACE, + ACTIONS(6493), 1, + anon_sym_COLON, + STATE(3483), 1, + sym_enumerator_list, + STATE(3486), 1, + sym__enum_base_clause, + ACTIONS(4205), 3, + anon_sym_AMP, anon_sym_LBRACK, - STATE(4124), 1, - sym_template_argument_list, - ACTIONS(3531), 2, + anon_sym_const, + ACTIONS(4203), 25, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_requires, + [153322] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6219), 1, + anon_sym_DASH_GT, + ACTIONS(6221), 1, + anon_sym_requires, + ACTIONS(6471), 1, + anon_sym_LBRACK, + STATE(5068), 1, + sym_trailing_return_type, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + STATE(4114), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6469), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [153386] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6427), 1, + sym_auto, + ACTIONS(6429), 1, + anon_sym_decltype, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6495), 1, + anon_sym_STAR, + ACTIONS(6497), 1, + anon_sym_AMP_AMP, + ACTIONS(6499), 1, + anon_sym_AMP, + STATE(3451), 1, + sym_decltype_auto, + STATE(4210), 1, + sym_parameter_list, + STATE(5171), 1, + sym__abstract_declarator, + STATE(4202), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6477), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [153452] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6219), 1, + anon_sym_DASH_GT, + ACTIONS(6221), 1, + anon_sym_requires, + STATE(5040), 1, + sym_trailing_return_type, + STATE(5114), 1, + sym_requires_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + STATE(4114), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6127), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [153516] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK, + ACTIONS(3724), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(3516), 4, + ACTIONS(3727), 5, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - ACTIONS(3508), 23, + anon_sym_COLON_COLON, + ACTIONS(3722), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -352671,6 +354923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -352685,7 +354938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [152407] = 23, + [153560] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -352694,33 +354947,33 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1497), 1, anon_sym_decltype, - ACTIONS(5412), 1, + ACTIONS(5424), 1, anon_sym_LPAREN2, - ACTIONS(5458), 1, + ACTIONS(5478), 1, sym_primitive_type, - ACTIONS(6475), 1, + ACTIONS(6501), 1, sym_identifier, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6479), 1, + ACTIONS(6505), 1, anon_sym_enum, - ACTIONS(6481), 1, + ACTIONS(6507), 1, anon_sym_class, - ACTIONS(6483), 1, + ACTIONS(6509), 1, anon_sym_struct, - ACTIONS(6485), 1, + ACTIONS(6511), 1, anon_sym_union, - ACTIONS(6487), 1, + ACTIONS(6513), 1, anon_sym_typename, - STATE(1909), 1, + STATE(1921), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, + STATE(2685), 1, sym_template_type, - STATE(2779), 1, + STATE(2781), 1, sym_qualified_type_identifier, - STATE(2880), 1, + STATE(2884), 1, sym_decltype_auto, - STATE(3310), 1, + STATE(3309), 1, sym__type_specifier, STATE(4150), 1, sym_argument_list, @@ -352733,7 +354986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2877), 8, + STATE(2880), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -352742,306 +354995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [152487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2537), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2535), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_typename, - anon_sym_template, - [152527] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2445), 1, - sym_auto, - ACTIONS(2447), 1, - anon_sym_decltype, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(5586), 1, - sym_primitive_type, - ACTIONS(6489), 1, - sym_identifier, - ACTIONS(6491), 1, - anon_sym_COLON_COLON, - ACTIONS(6493), 1, - anon_sym_enum, - ACTIONS(6495), 1, - anon_sym_class, - ACTIONS(6497), 1, - anon_sym_struct, - ACTIONS(6499), 1, - anon_sym_union, - ACTIONS(6501), 1, - anon_sym_typename, - STATE(2341), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3096), 1, - sym_template_type, - STATE(3152), 1, - sym_decltype_auto, - STATE(3167), 1, - sym_qualified_type_identifier, - STATE(3316), 1, - sym__type_specifier, - STATE(4145), 1, - sym_argument_list, - STATE(5401), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(2421), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3153), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [152607] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6455), 1, - sym_auto, - ACTIONS(6457), 1, - anon_sym_decltype, - ACTIONS(6503), 1, - anon_sym_STAR, - ACTIONS(6505), 1, - anon_sym_AMP_AMP, - ACTIONS(6507), 1, - anon_sym_AMP, - STATE(3455), 1, - sym_decltype_auto, - STATE(4208), 1, - sym_parameter_list, - STATE(5171), 1, - sym__abstract_declarator, - STATE(4183), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6473), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - [152673] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(6509), 1, - sym_identifier, - ACTIONS(6511), 1, - anon_sym_COLON_COLON, - ACTIONS(6515), 1, - sym_primitive_type, - ACTIONS(6517), 1, - anon_sym_enum, - ACTIONS(6519), 1, - anon_sym_class, - ACTIONS(6521), 1, - anon_sym_struct, - ACTIONS(6523), 1, - anon_sym_union, - ACTIONS(6525), 1, - sym_auto, - ACTIONS(6527), 1, - anon_sym_decltype, - ACTIONS(6529), 1, - anon_sym_typename, - STATE(1825), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1853), 1, - sym__type_specifier, - STATE(1949), 1, - sym_template_type, - STATE(1994), 1, - sym_decltype_auto, - STATE(2092), 1, - sym_qualified_type_identifier, - STATE(4173), 1, - sym_argument_list, - STATE(5371), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6513), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1997), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [152753] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6214), 1, - anon_sym_DASH_GT, - ACTIONS(6216), 1, - anon_sym_requires, - ACTIONS(6467), 1, - anon_sym_LBRACK, - STATE(5068), 1, - sym_trailing_return_type, - STATE(5135), 1, - sym_requires_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - STATE(4086), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6465), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [152817] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6130), 1, - anon_sym_LBRACK, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6214), 1, - anon_sym_DASH_GT, - ACTIONS(6216), 1, - anon_sym_requires, - STATE(5040), 1, - sym_trailing_return_type, - STATE(5114), 1, - sym_requires_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - STATE(4086), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6122), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [152881] = 23, + [153640] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -353050,33 +355004,33 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1497), 1, anon_sym_decltype, - ACTIONS(5412), 1, + ACTIONS(5424), 1, anon_sym_LPAREN2, - ACTIONS(5458), 1, + ACTIONS(5478), 1, sym_primitive_type, - ACTIONS(6475), 1, + ACTIONS(6501), 1, sym_identifier, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6481), 1, + ACTIONS(6507), 1, anon_sym_class, - ACTIONS(6483), 1, + ACTIONS(6509), 1, anon_sym_struct, - ACTIONS(6485), 1, + ACTIONS(6511), 1, anon_sym_union, - ACTIONS(6531), 1, + ACTIONS(6515), 1, anon_sym_enum, - ACTIONS(6533), 1, + ACTIONS(6517), 1, anon_sym_typename, - STATE(1909), 1, + STATE(1921), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, + STATE(2685), 1, sym_template_type, - STATE(2779), 1, + STATE(2781), 1, sym_qualified_type_identifier, - STATE(2880), 1, + STATE(2884), 1, sym_decltype_auto, - STATE(3295), 1, + STATE(3307), 1, sym__type_specifier, STATE(4152), 1, sym_argument_list, @@ -353089,7 +355043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2877), 8, + STATE(2880), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -353098,1211 +355052,55 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [152961] = 23, + [153720] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5412), 1, + ACTIONS(5424), 1, anon_sym_LPAREN2, - ACTIONS(6535), 1, - sym_identifier, - ACTIONS(6537), 1, - anon_sym_COLON_COLON, - ACTIONS(6541), 1, - sym_primitive_type, - ACTIONS(6543), 1, - anon_sym_enum, - ACTIONS(6545), 1, - anon_sym_class, - ACTIONS(6547), 1, - anon_sym_struct, - ACTIONS(6549), 1, - anon_sym_union, - ACTIONS(6551), 1, - sym_auto, - ACTIONS(6553), 1, - anon_sym_decltype, - ACTIONS(6555), 1, - anon_sym_typename, - STATE(1844), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1920), 1, - sym__type_specifier, - STATE(2182), 1, - sym_template_type, - STATE(2251), 1, - sym_decltype_auto, - STATE(2448), 1, - sym_qualified_type_identifier, - STATE(4135), 1, - sym_argument_list, - STATE(5349), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6539), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2299), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [153041] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(6509), 1, - sym_identifier, - ACTIONS(6511), 1, - anon_sym_COLON_COLON, - ACTIONS(6515), 1, - sym_primitive_type, ACTIONS(6519), 1, - anon_sym_class, + sym_identifier, ACTIONS(6521), 1, - anon_sym_struct, - ACTIONS(6523), 1, - anon_sym_union, + anon_sym_COLON_COLON, ACTIONS(6525), 1, - sym_auto, + sym_primitive_type, ACTIONS(6527), 1, - anon_sym_decltype, - ACTIONS(6557), 1, anon_sym_enum, - ACTIONS(6559), 1, - anon_sym_typename, - STATE(1825), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1865), 1, - sym__type_specifier, - STATE(1949), 1, - sym_template_type, - STATE(1994), 1, - sym_decltype_auto, - STATE(2092), 1, - sym_qualified_type_identifier, - STATE(4153), 1, - sym_argument_list, - STATE(5371), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6513), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1997), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [153121] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_AMP_AMP, - ACTIONS(6566), 1, - anon_sym_AMP, - ACTIONS(6569), 1, - anon_sym_LBRACK, - ACTIONS(6571), 1, - anon_sym_const, - ACTIONS(6580), 1, - anon_sym_noexcept, - ACTIONS(6583), 1, - anon_sym_throw, - ACTIONS(6577), 2, - anon_sym_final, - anon_sym_override, - STATE(4086), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6574), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6561), 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_DASH_GT, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [153177] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(5458), 1, - sym_primitive_type, - ACTIONS(6475), 1, - sym_identifier, - ACTIONS(6477), 1, - anon_sym_COLON_COLON, - ACTIONS(6481), 1, - anon_sym_class, - ACTIONS(6483), 1, - anon_sym_struct, - ACTIONS(6485), 1, - anon_sym_union, - ACTIONS(6531), 1, - anon_sym_enum, - ACTIONS(6533), 1, - anon_sym_typename, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(3278), 1, - sym__type_specifier, - STATE(4166), 1, - sym_argument_list, - STATE(5445), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [153257] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6588), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6586), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_typename, - anon_sym_template, - [153297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2827), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2825), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_typename, - anon_sym_template, - [153337] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(6509), 1, - sym_identifier, - ACTIONS(6511), 1, - anon_sym_COLON_COLON, - ACTIONS(6515), 1, - sym_primitive_type, - ACTIONS(6517), 1, - anon_sym_enum, - ACTIONS(6519), 1, - anon_sym_class, - ACTIONS(6521), 1, - anon_sym_struct, - ACTIONS(6523), 1, - anon_sym_union, - ACTIONS(6525), 1, - sym_auto, - ACTIONS(6527), 1, - anon_sym_decltype, ACTIONS(6529), 1, - anon_sym_typename, - STATE(1825), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1865), 1, - sym__type_specifier, - STATE(1949), 1, - sym_template_type, - STATE(1994), 1, - sym_decltype_auto, - STATE(2092), 1, - sym_qualified_type_identifier, - STATE(4180), 1, - sym_argument_list, - STATE(5371), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6513), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1997), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [153417] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6130), 1, - anon_sym_LBRACK, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6210), 1, - anon_sym___attribute__, - ACTIONS(6590), 1, - anon_sym_DASH_GT, - ACTIONS(6592), 1, - anon_sym_requires, - STATE(5114), 1, - sym_requires_clause, - STATE(5217), 1, - sym_trailing_return_type, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - STATE(4195), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(6122), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - STATE(4201), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [153485] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6130), 1, - anon_sym_LBRACK, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6210), 1, - anon_sym___attribute__, - ACTIONS(6592), 1, - anon_sym_requires, - ACTIONS(6594), 1, - anon_sym_DASH_GT, - STATE(5114), 1, - sym_requires_clause, - STATE(5217), 1, - sym_trailing_return_type, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - STATE(4195), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(6122), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - STATE(4197), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [153553] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2445), 1, - sym_auto, - ACTIONS(2447), 1, - anon_sym_decltype, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(5586), 1, - sym_primitive_type, - ACTIONS(6489), 1, - sym_identifier, - ACTIONS(6491), 1, - anon_sym_COLON_COLON, - ACTIONS(6493), 1, - anon_sym_enum, - ACTIONS(6495), 1, anon_sym_class, - ACTIONS(6497), 1, - anon_sym_struct, - ACTIONS(6499), 1, - anon_sym_union, - ACTIONS(6501), 1, - anon_sym_typename, - STATE(2341), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3096), 1, - sym_template_type, - STATE(3152), 1, - sym_decltype_auto, - STATE(3167), 1, - sym_qualified_type_identifier, - STATE(3317), 1, - sym__type_specifier, - STATE(4176), 1, - sym_argument_list, - STATE(5401), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(2421), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3153), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [153633] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3773), 1, - anon_sym_LBRACK, - ACTIONS(3768), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3771), 6, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3766), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - [153677] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6152), 1, - anon_sym_LBRACK, - ACTIONS(6210), 1, - anon_sym___attribute__, - ACTIONS(6590), 1, - anon_sym_DASH_GT, - ACTIONS(6592), 1, - anon_sym_requires, - STATE(5113), 1, - sym_requires_clause, - STATE(5263), 1, - sym_trailing_return_type, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - STATE(4091), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(6150), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - STATE(4202), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [153745] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(6596), 1, - sym_identifier, - ACTIONS(6598), 1, - anon_sym_COLON_COLON, - ACTIONS(6602), 1, - sym_primitive_type, - ACTIONS(6604), 1, - anon_sym_enum, - ACTIONS(6606), 1, - anon_sym_class, - ACTIONS(6608), 1, - anon_sym_struct, - ACTIONS(6610), 1, - anon_sym_union, - ACTIONS(6612), 1, - sym_auto, - ACTIONS(6614), 1, - anon_sym_decltype, - ACTIONS(6616), 1, - anon_sym_typename, - STATE(1906), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2173), 1, - sym__type_specifier, - STATE(2670), 1, - sym_template_type, - STATE(2767), 1, - sym_decltype_auto, - STATE(2869), 1, - sym_qualified_type_identifier, - STATE(4129), 1, - sym_argument_list, - STATE(5352), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6600), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2885), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [153825] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(6596), 1, - sym_identifier, - ACTIONS(6598), 1, - anon_sym_COLON_COLON, - ACTIONS(6602), 1, - sym_primitive_type, - ACTIONS(6604), 1, - anon_sym_enum, - ACTIONS(6606), 1, - anon_sym_class, - ACTIONS(6608), 1, - anon_sym_struct, - ACTIONS(6610), 1, - anon_sym_union, - ACTIONS(6612), 1, - sym_auto, - ACTIONS(6614), 1, - anon_sym_decltype, - ACTIONS(6616), 1, - anon_sym_typename, - STATE(1906), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2198), 1, - sym__type_specifier, - STATE(2670), 1, - sym_template_type, - STATE(2767), 1, - sym_decltype_auto, - STATE(2869), 1, - sym_qualified_type_identifier, - STATE(4174), 1, - sym_argument_list, - STATE(5352), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6600), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2885), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [153905] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2541), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2539), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_typename, - anon_sym_template, - [153945] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(5458), 1, - sym_primitive_type, - ACTIONS(6475), 1, - sym_identifier, - ACTIONS(6477), 1, - anon_sym_COLON_COLON, - ACTIONS(6481), 1, - anon_sym_class, - ACTIONS(6483), 1, - anon_sym_struct, - ACTIONS(6485), 1, - anon_sym_union, ACTIONS(6531), 1, - anon_sym_enum, + anon_sym_struct, ACTIONS(6533), 1, - anon_sym_typename, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(3275), 1, - sym__type_specifier, - STATE(4133), 1, - sym_argument_list, - STATE(5445), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [154025] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2509), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2507), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_typename, - anon_sym_template, - [154065] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(6509), 1, - sym_identifier, - ACTIONS(6511), 1, - anon_sym_COLON_COLON, - ACTIONS(6515), 1, - sym_primitive_type, - ACTIONS(6519), 1, - anon_sym_class, - ACTIONS(6521), 1, - anon_sym_struct, - ACTIONS(6523), 1, - anon_sym_union, - ACTIONS(6525), 1, - sym_auto, - ACTIONS(6527), 1, - anon_sym_decltype, - ACTIONS(6557), 1, - anon_sym_enum, - ACTIONS(6559), 1, - anon_sym_typename, - STATE(1825), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1853), 1, - sym__type_specifier, - STATE(1949), 1, - sym_template_type, - STATE(1994), 1, - sym_decltype_auto, - STATE(2092), 1, - sym_qualified_type_identifier, - STATE(4148), 1, - sym_argument_list, - STATE(5371), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6513), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1997), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [154145] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(6618), 1, - sym_identifier, - ACTIONS(6620), 1, - anon_sym_COLON_COLON, - ACTIONS(6624), 1, - sym_primitive_type, - ACTIONS(6626), 1, - anon_sym_enum, - ACTIONS(6628), 1, - anon_sym_class, - ACTIONS(6630), 1, - anon_sym_struct, - ACTIONS(6632), 1, - anon_sym_union, - ACTIONS(6634), 1, - sym_auto, - ACTIONS(6636), 1, - anon_sym_decltype, - ACTIONS(6638), 1, - anon_sym_typename, - STATE(1885), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2108), 1, - sym__type_specifier, - STATE(2485), 1, - sym_template_type, - STATE(2588), 1, - sym_qualified_type_identifier, - STATE(2661), 1, - sym_decltype_auto, - STATE(4170), 1, - sym_argument_list, - STATE(5362), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6622), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2657), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [154225] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(6618), 1, - sym_identifier, - ACTIONS(6620), 1, - anon_sym_COLON_COLON, - ACTIONS(6624), 1, - sym_primitive_type, - ACTIONS(6626), 1, - anon_sym_enum, - ACTIONS(6628), 1, - anon_sym_class, - ACTIONS(6630), 1, - anon_sym_struct, - ACTIONS(6632), 1, - anon_sym_union, - ACTIONS(6634), 1, - sym_auto, - ACTIONS(6636), 1, - anon_sym_decltype, - ACTIONS(6638), 1, - anon_sym_typename, - STATE(1885), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2134), 1, - sym__type_specifier, - STATE(2485), 1, - sym_template_type, - STATE(2588), 1, - sym_qualified_type_identifier, - STATE(2661), 1, - sym_decltype_auto, - STATE(4162), 1, - sym_argument_list, - STATE(5362), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6622), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2657), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [154305] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(5458), 1, - sym_primitive_type, - ACTIONS(6475), 1, - sym_identifier, - ACTIONS(6477), 1, - anon_sym_COLON_COLON, - ACTIONS(6479), 1, - anon_sym_enum, - ACTIONS(6481), 1, - anon_sym_class, - ACTIONS(6483), 1, - anon_sym_struct, - ACTIONS(6485), 1, - anon_sym_union, - ACTIONS(6487), 1, - anon_sym_typename, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(3295), 1, - sym__type_specifier, - STATE(4181), 1, - sym_argument_list, - STATE(5445), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [154385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2579), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2577), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_typename, - anon_sym_template, - [154425] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6455), 1, - sym_auto, - ACTIONS(6457), 1, - anon_sym_decltype, - ACTIONS(6503), 1, - anon_sym_STAR, - ACTIONS(6505), 1, - anon_sym_AMP_AMP, - ACTIONS(6507), 1, - anon_sym_AMP, - STATE(3455), 1, - sym_decltype_auto, - STATE(4208), 1, - sym_parameter_list, - STATE(5205), 1, - sym__abstract_declarator, - STATE(4187), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6435), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - [154491] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(5412), 1, - anon_sym_LPAREN2, ACTIONS(6535), 1, - sym_identifier, + sym_auto, ACTIONS(6537), 1, - anon_sym_COLON_COLON, - ACTIONS(6541), 1, - sym_primitive_type, - ACTIONS(6543), 1, - anon_sym_enum, - ACTIONS(6545), 1, - anon_sym_class, - ACTIONS(6547), 1, - anon_sym_struct, - ACTIONS(6549), 1, - anon_sym_union, - ACTIONS(6551), 1, - sym_auto, - ACTIONS(6553), 1, anon_sym_decltype, - ACTIONS(6555), 1, + ACTIONS(6539), 1, anon_sym_typename, - STATE(1844), 1, + STATE(1818), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1934), 1, + STATE(1870), 1, sym__type_specifier, - STATE(2182), 1, + STATE(2074), 1, sym_template_type, - STATE(2251), 1, + STATE(2081), 1, sym_decltype_auto, - STATE(2448), 1, + STATE(2095), 1, sym_qualified_type_identifier, - STATE(4146), 1, + STATE(4142), 1, sym_argument_list, - STATE(5349), 1, + STATE(5371), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(6539), 4, + ACTIONS(6523), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2299), 8, + STATE(2082), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -354311,508 +355109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [154571] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6152), 1, - anon_sym_LBRACK, - ACTIONS(6210), 1, - anon_sym___attribute__, - ACTIONS(6592), 1, - anon_sym_requires, - ACTIONS(6594), 1, - anon_sym_DASH_GT, - STATE(5113), 1, - sym_requires_clause, - STATE(5263), 1, - sym_trailing_return_type, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - STATE(4092), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(6150), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - STATE(4200), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [154639] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - ACTIONS(5458), 1, - sym_primitive_type, - ACTIONS(6475), 1, - sym_identifier, - ACTIONS(6477), 1, - anon_sym_COLON_COLON, - ACTIONS(6481), 1, - anon_sym_class, - ACTIONS(6483), 1, - anon_sym_struct, - ACTIONS(6485), 1, - anon_sym_union, - ACTIONS(6531), 1, - anon_sym_enum, - ACTIONS(6533), 1, - anon_sym_typename, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(3310), 1, - sym__type_specifier, - STATE(4131), 1, - sym_argument_list, - STATE(5445), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [154719] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2925), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2920), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_typename, - anon_sym_template, - [154759] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_AMP_AMP, - ACTIONS(6566), 1, - anon_sym_AMP, - ACTIONS(6569), 1, - anon_sym_LBRACK, - ACTIONS(6580), 1, - anon_sym_noexcept, - ACTIONS(6583), 1, - anon_sym_throw, - ACTIONS(6640), 1, - anon_sym_const, - ACTIONS(6577), 2, - anon_sym_final, - anon_sym_override, - STATE(4111), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6643), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6561), 10, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_try, - anon_sym_requires, - [154814] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6130), 1, - anon_sym_LBRACK, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6216), 1, - anon_sym_requires, - ACTIONS(6421), 1, - anon_sym_DASH_GT, - STATE(5040), 1, - sym_trailing_return_type, - STATE(5114), 1, - sym_requires_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6122), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - STATE(4086), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [154877] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6128), 1, - anon_sym___attribute__, - ACTIONS(6130), 1, - anon_sym_LBRACK, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6646), 1, - anon_sym_DASH_GT, - ACTIONS(6648), 1, - anon_sym_requires, - STATE(5114), 1, - sym_requires_clause, - STATE(5455), 1, - sym_trailing_return_type, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - STATE(4234), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(6122), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - STATE(4240), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [154944] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4092), 1, - anon_sym_SEMI, - ACTIONS(4201), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4203), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [154985] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_LBRACE, - ACTIONS(6650), 1, - anon_sym_COLON, - STATE(3520), 1, - sym_enumerator_list, - STATE(3523), 1, - sym__enum_base_clause, - ACTIONS(4162), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4160), 24, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_requires, - [155032] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6216), 1, - anon_sym_requires, - ACTIONS(6421), 1, - anon_sym_DASH_GT, - ACTIONS(6467), 1, - anon_sym_LBRACK, - STATE(5068), 1, - sym_trailing_return_type, - STATE(5135), 1, - sym_requires_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6465), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - STATE(4086), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [155095] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_LBRACE, - ACTIONS(6650), 1, - anon_sym_COLON, - STATE(3480), 1, - sym__enum_base_clause, - STATE(3484), 1, - sym_enumerator_list, - ACTIONS(4168), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4166), 24, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_requires, - [155142] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6455), 1, - sym_auto, - ACTIONS(6457), 1, - anon_sym_decltype, - ACTIONS(6652), 1, - anon_sym_STAR, - ACTIONS(6654), 1, - anon_sym_AMP_AMP, - ACTIONS(6656), 1, - anon_sym_AMP, - STATE(3455), 1, - sym_decltype_auto, - STATE(4217), 1, - sym_parameter_list, - STATE(5221), 1, - sym__abstract_declarator, - STATE(4218), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6473), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [155207] = 3, + [153800] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3073), 9, @@ -354825,7 +355122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(3071), 22, + ACTIONS(3071), 23, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -354836,6 +355133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -354848,7 +355146,1006 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_operator, anon_sym_try, - [155246] = 3, + [153840] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(5478), 1, + sym_primitive_type, + ACTIONS(6501), 1, + sym_identifier, + ACTIONS(6503), 1, + anon_sym_COLON_COLON, + ACTIONS(6505), 1, + anon_sym_enum, + ACTIONS(6507), 1, + anon_sym_class, + ACTIONS(6509), 1, + anon_sym_struct, + ACTIONS(6511), 1, + anon_sym_union, + ACTIONS(6513), 1, + anon_sym_typename, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(3307), 1, + sym__type_specifier, + STATE(4162), 1, + sym_argument_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153920] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6159), 1, + anon_sym_LBRACK, + ACTIONS(6215), 1, + anon_sym___attribute__, + ACTIONS(6541), 1, + anon_sym_DASH_GT, + ACTIONS(6543), 1, + anon_sym_requires, + STATE(5113), 1, + sym_requires_clause, + STATE(5263), 1, + sym_trailing_return_type, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + STATE(4099), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6157), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4199), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [153988] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(6519), 1, + sym_identifier, + ACTIONS(6521), 1, + anon_sym_COLON_COLON, + ACTIONS(6525), 1, + sym_primitive_type, + ACTIONS(6529), 1, + anon_sym_class, + ACTIONS(6531), 1, + anon_sym_struct, + ACTIONS(6533), 1, + anon_sym_union, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6545), 1, + anon_sym_enum, + ACTIONS(6547), 1, + anon_sym_typename, + STATE(1818), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1876), 1, + sym__type_specifier, + STATE(2074), 1, + sym_template_type, + STATE(2081), 1, + sym_decltype_auto, + STATE(2095), 1, + sym_qualified_type_identifier, + STATE(4174), 1, + sym_argument_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6523), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2082), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154068] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(6549), 1, + sym_identifier, + ACTIONS(6551), 1, + anon_sym_COLON_COLON, + ACTIONS(6555), 1, + sym_primitive_type, + ACTIONS(6557), 1, + anon_sym_enum, + ACTIONS(6559), 1, + anon_sym_class, + ACTIONS(6561), 1, + anon_sym_struct, + ACTIONS(6563), 1, + anon_sym_union, + ACTIONS(6565), 1, + sym_auto, + ACTIONS(6567), 1, + anon_sym_decltype, + ACTIONS(6569), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2309), 1, + sym__type_specifier, + STATE(2670), 1, + sym_template_type, + STATE(2750), 1, + sym_decltype_auto, + STATE(2871), 1, + sym_qualified_type_identifier, + STATE(4141), 1, + sym_argument_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6553), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2881), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154148] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(5478), 1, + sym_primitive_type, + ACTIONS(6501), 1, + sym_identifier, + ACTIONS(6503), 1, + anon_sym_COLON_COLON, + ACTIONS(6507), 1, + anon_sym_class, + ACTIONS(6509), 1, + anon_sym_struct, + ACTIONS(6511), 1, + anon_sym_union, + ACTIONS(6515), 1, + anon_sym_enum, + ACTIONS(6517), 1, + anon_sym_typename, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(3299), 1, + sym__type_specifier, + STATE(4144), 1, + sym_argument_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154228] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6215), 1, + anon_sym___attribute__, + ACTIONS(6541), 1, + anon_sym_DASH_GT, + ACTIONS(6543), 1, + anon_sym_requires, + STATE(5114), 1, + sym_requires_clause, + STATE(5217), 1, + sym_trailing_return_type, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + STATE(4204), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6127), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4189), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [154296] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(6571), 1, + sym_identifier, + ACTIONS(6573), 1, + anon_sym_COLON_COLON, + ACTIONS(6577), 1, + sym_primitive_type, + ACTIONS(6579), 1, + anon_sym_enum, + ACTIONS(6581), 1, + anon_sym_class, + ACTIONS(6583), 1, + anon_sym_struct, + ACTIONS(6585), 1, + anon_sym_union, + ACTIONS(6587), 1, + sym_auto, + ACTIONS(6589), 1, + anon_sym_decltype, + ACTIONS(6591), 1, + anon_sym_typename, + STATE(1901), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2162), 1, + sym__type_specifier, + STATE(2501), 1, + sym_template_type, + STATE(2590), 1, + sym_qualified_type_identifier, + STATE(2661), 1, + sym_decltype_auto, + STATE(4171), 1, + sym_argument_list, + STATE(5362), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6575), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2657), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154376] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(6519), 1, + sym_identifier, + ACTIONS(6521), 1, + anon_sym_COLON_COLON, + ACTIONS(6525), 1, + sym_primitive_type, + ACTIONS(6529), 1, + anon_sym_class, + ACTIONS(6531), 1, + anon_sym_struct, + ACTIONS(6533), 1, + anon_sym_union, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6545), 1, + anon_sym_enum, + ACTIONS(6547), 1, + anon_sym_typename, + STATE(1818), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1870), 1, + sym__type_specifier, + STATE(2074), 1, + sym_template_type, + STATE(2081), 1, + sym_decltype_auto, + STATE(2095), 1, + sym_qualified_type_identifier, + STATE(4180), 1, + sym_argument_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6523), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2082), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154456] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4116), 1, + anon_sym_SEMI, + ACTIONS(4340), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4342), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [154498] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(6571), 1, + sym_identifier, + ACTIONS(6573), 1, + anon_sym_COLON_COLON, + ACTIONS(6577), 1, + sym_primitive_type, + ACTIONS(6579), 1, + anon_sym_enum, + ACTIONS(6581), 1, + anon_sym_class, + ACTIONS(6583), 1, + anon_sym_struct, + ACTIONS(6585), 1, + anon_sym_union, + ACTIONS(6587), 1, + sym_auto, + ACTIONS(6589), 1, + anon_sym_decltype, + ACTIONS(6591), 1, + anon_sym_typename, + STATE(1901), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2150), 1, + sym__type_specifier, + STATE(2501), 1, + sym_template_type, + STATE(2590), 1, + sym_qualified_type_identifier, + STATE(2661), 1, + sym_decltype_auto, + STATE(4165), 1, + sym_argument_list, + STATE(5362), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6575), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2657), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154578] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(5478), 1, + sym_primitive_type, + ACTIONS(6501), 1, + sym_identifier, + ACTIONS(6503), 1, + anon_sym_COLON_COLON, + ACTIONS(6507), 1, + anon_sym_class, + ACTIONS(6509), 1, + anon_sym_struct, + ACTIONS(6511), 1, + anon_sym_union, + ACTIONS(6515), 1, + anon_sym_enum, + ACTIONS(6517), 1, + anon_sym_typename, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(3273), 1, + sym__type_specifier, + STATE(4148), 1, + sym_argument_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154658] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6427), 1, + sym_auto, + ACTIONS(6429), 1, + anon_sym_decltype, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6495), 1, + anon_sym_STAR, + ACTIONS(6497), 1, + anon_sym_AMP_AMP, + ACTIONS(6499), 1, + anon_sym_AMP, + STATE(3451), 1, + sym_decltype_auto, + STATE(4210), 1, + sym_parameter_list, + STATE(5205), 1, + sym__abstract_declarator, + STATE(4211), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6441), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [154724] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(6593), 1, + sym_identifier, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(6599), 1, + sym_primitive_type, + ACTIONS(6601), 1, + anon_sym_enum, + ACTIONS(6603), 1, + anon_sym_class, + ACTIONS(6605), 1, + anon_sym_struct, + ACTIONS(6607), 1, + anon_sym_union, + ACTIONS(6609), 1, + sym_auto, + ACTIONS(6611), 1, + anon_sym_decltype, + ACTIONS(6613), 1, + anon_sym_typename, + STATE(1851), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1965), 1, + sym__type_specifier, + STATE(2194), 1, + sym_template_type, + STATE(2411), 1, + sym_decltype_auto, + STATE(2450), 1, + sym_qualified_type_identifier, + STATE(4155), 1, + sym_argument_list, + STATE(5349), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2407), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154804] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5639), 1, + anon_sym_LBRACE, + ACTIONS(6493), 1, + anon_sym_COLON, + STATE(3395), 1, + sym_enumerator_list, + STATE(3396), 1, + sym__enum_base_clause, + ACTIONS(4217), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4215), 25, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_requires, + [154852] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4116), 1, + anon_sym_SEMI, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4340), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4342), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [154896] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6215), 1, + anon_sym___attribute__, + ACTIONS(6543), 1, + anon_sym_requires, + ACTIONS(6615), 1, + anon_sym_DASH_GT, + STATE(5114), 1, + sym_requires_clause, + STATE(5217), 1, + sym_trailing_return_type, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + STATE(4204), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6127), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4209), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [154964] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6159), 1, + anon_sym_LBRACK, + ACTIONS(6215), 1, + anon_sym___attribute__, + ACTIONS(6543), 1, + anon_sym_requires, + ACTIONS(6615), 1, + anon_sym_DASH_GT, + STATE(5113), 1, + sym_requires_clause, + STATE(5263), 1, + sym_trailing_return_type, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + STATE(4109), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6157), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4203), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [155032] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(6549), 1, + sym_identifier, + ACTIONS(6551), 1, + anon_sym_COLON_COLON, + ACTIONS(6555), 1, + sym_primitive_type, + ACTIONS(6557), 1, + anon_sym_enum, + ACTIONS(6559), 1, + anon_sym_class, + ACTIONS(6561), 1, + anon_sym_struct, + ACTIONS(6563), 1, + anon_sym_union, + ACTIONS(6565), 1, + sym_auto, + ACTIONS(6567), 1, + anon_sym_decltype, + ACTIONS(6569), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2278), 1, + sym__type_specifier, + STATE(2670), 1, + sym_template_type, + STATE(2750), 1, + sym_decltype_auto, + STATE(2871), 1, + sym_qualified_type_identifier, + STATE(4164), 1, + sym_argument_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6553), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2881), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [155112] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(5478), 1, + sym_primitive_type, + ACTIONS(6501), 1, + sym_identifier, + ACTIONS(6503), 1, + anon_sym_COLON_COLON, + ACTIONS(6507), 1, + anon_sym_class, + ACTIONS(6509), 1, + anon_sym_struct, + ACTIONS(6511), 1, + anon_sym_union, + ACTIONS(6515), 1, + anon_sym_enum, + ACTIONS(6517), 1, + anon_sym_typename, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(3309), 1, + sym__type_specifier, + STATE(4137), 1, + sym_argument_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [155192] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3077), 9, @@ -354861,7 +356158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(3075), 22, + ACTIONS(3075), 23, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -354872,6 +356169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_input, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -354884,32 +356182,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_operator, anon_sym_try, - [155285] = 16, + [155232] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6619), 1, + anon_sym_AMP_AMP, + ACTIONS(6622), 1, + anon_sym_AMP, + ACTIONS(6625), 1, + anon_sym_LBRACK, + ACTIONS(6627), 1, + anon_sym_const, + ACTIONS(6636), 1, + anon_sym_noexcept, + ACTIONS(6639), 1, + anon_sym_throw, + ACTIONS(6633), 2, + anon_sym_final, + anon_sym_override, + STATE(4114), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6630), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6617), 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_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [155288] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2601), 1, + sym_auto, + ACTIONS(2603), 1, + anon_sym_decltype, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(5545), 1, + sym_primitive_type, + ACTIONS(6479), 1, + sym_identifier, + ACTIONS(6481), 1, + anon_sym_COLON_COLON, + ACTIONS(6483), 1, + anon_sym_enum, + ACTIONS(6485), 1, + anon_sym_class, + ACTIONS(6487), 1, + anon_sym_struct, + ACTIONS(6489), 1, + anon_sym_union, + ACTIONS(6491), 1, + anon_sym_typename, + STATE(2373), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3100), 1, + sym_template_type, + STATE(3151), 1, + sym_qualified_type_identifier, + STATE(3195), 1, + sym_decltype_auto, + STATE(3327), 1, + sym__type_specifier, + STATE(4131), 1, + sym_argument_list, + STATE(5401), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2577), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3194), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [155368] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(6519), 1, + sym_identifier, + ACTIONS(6521), 1, + anon_sym_COLON_COLON, + ACTIONS(6525), 1, + sym_primitive_type, + ACTIONS(6527), 1, + anon_sym_enum, + ACTIONS(6529), 1, + anon_sym_class, + ACTIONS(6531), 1, + anon_sym_struct, + ACTIONS(6533), 1, + anon_sym_union, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6539), 1, + anon_sym_typename, + STATE(1818), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1876), 1, + sym__type_specifier, + STATE(2074), 1, + sym_template_type, + STATE(2081), 1, + sym_decltype_auto, + STATE(2095), 1, + sym_qualified_type_identifier, + STATE(4160), 1, + sym_argument_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6523), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2082), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [155448] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + ACTIONS(6593), 1, + sym_identifier, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(6599), 1, + sym_primitive_type, + ACTIONS(6601), 1, + anon_sym_enum, + ACTIONS(6603), 1, + anon_sym_class, + ACTIONS(6605), 1, + anon_sym_struct, + ACTIONS(6607), 1, + anon_sym_union, + ACTIONS(6609), 1, + sym_auto, + ACTIONS(6611), 1, + anon_sym_decltype, + ACTIONS(6613), 1, + anon_sym_typename, + STATE(1851), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1929), 1, + sym__type_specifier, + STATE(2194), 1, + sym_template_type, + STATE(2411), 1, + sym_decltype_auto, + STATE(2450), 1, + sym_qualified_type_identifier, + STATE(4153), 1, + sym_argument_list, + STATE(5349), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2407), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [155528] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6455), 1, + ACTIONS(6427), 1, sym_auto, - ACTIONS(6457), 1, + ACTIONS(6429), 1, anon_sym_decltype, - ACTIONS(6652), 1, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6642), 1, anon_sym_STAR, - ACTIONS(6654), 1, + ACTIONS(6644), 1, anon_sym_AMP_AMP, - ACTIONS(6656), 1, + ACTIONS(6646), 1, anon_sym_AMP, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, - STATE(4217), 1, + STATE(4229), 1, sym_parameter_list, STATE(5236), 1, sym__abstract_declarator, - STATE(4220), 2, + STATE(4236), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(5038), 5, @@ -354918,14 +356432,14 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6435), 6, + ACTIONS(6441), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, anon_sym_requires, - ACTIONS(6212), 7, + ACTIONS(6217), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -354933,49 +356447,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [155350] = 17, + [155593] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5700), 1, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6128), 1, - anon_sym___attribute__, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6152), 1, + ACTIONS(6427), 1, + sym_auto, + ACTIONS(6429), 1, + anon_sym_decltype, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, anon_sym_LBRACK, + ACTIONS(6642), 1, + anon_sym_STAR, + ACTIONS(6644), 1, + anon_sym_AMP_AMP, ACTIONS(6646), 1, - anon_sym_DASH_GT, + anon_sym_AMP, + STATE(3451), 1, + sym_decltype_auto, + STATE(4229), 1, + sym_parameter_list, + STATE(5221), 1, + sym__abstract_declarator, + STATE(4230), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6477), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [155658] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6133), 1, + anon_sym___attribute__, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6159), 1, + anon_sym_LBRACK, ACTIONS(6648), 1, + anon_sym_DASH_GT, + ACTIONS(6650), 1, anon_sym_requires, STATE(5113), 1, sym_requires_clause, STATE(5453), 1, sym_trailing_return_type, - ACTIONS(3980), 2, + ACTIONS(3983), 2, anon_sym_final, anon_sym_override, - STATE(4113), 2, + STATE(4128), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(6150), 3, + ACTIONS(6157), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - STATE(4244), 6, + STATE(4223), 6, sym_type_qualifier, sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_function_declarator_repeat2, - ACTIONS(6132), 7, + ACTIONS(6137), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -354983,10 +356546,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [155417] = 3, + [155725] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4764), 14, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6221), 1, + anon_sym_requires, + ACTIONS(6421), 1, + anon_sym_DASH_GT, + ACTIONS(6471), 1, + anon_sym_LBRACK, + STATE(5068), 1, + sym_trailing_return_type, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6469), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + STATE(4114), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [155788] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4340), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4342), 25, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [155829] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5613), 1, + anon_sym_const, + ACTIONS(6655), 1, + anon_sym___attribute__, + ACTIONS(6658), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6661), 1, + anon_sym___declspec, + ACTIONS(6667), 1, + anon_sym_virtual, + ACTIONS(5488), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(5490), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6652), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(6664), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4123), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [155884] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6221), 1, + anon_sym_requires, + ACTIONS(6421), 1, + anon_sym_DASH_GT, + STATE(5040), 1, + sym_trailing_return_type, + STATE(5114), 1, + sym_requires_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6127), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + STATE(4114), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [155947] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6215), 1, + anon_sym___attribute__, + ACTIONS(6425), 1, + anon_sym___declspec, + ACTIONS(6431), 1, + anon_sym_virtual, + ACTIONS(5452), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(5454), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6423), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4123), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [156002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4663), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -355001,7 +356785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(4762), 17, + ACTIONS(4661), 17, anon_sym_AMP, anon_sym___based, anon_sym_const, @@ -355019,31 +356803,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [155456] = 5, + [156041] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3775), 1, - anon_sym_LBRACK, - ACTIONS(3768), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3771), 5, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(6619), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - ACTIONS(3766), 23, + ACTIONS(6622), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(6625), 1, + anon_sym_LBRACK, + ACTIONS(6636), 1, + anon_sym_noexcept, + ACTIONS(6639), 1, + anon_sym_throw, + ACTIONS(6670), 1, anon_sym_const, + ACTIONS(6633), 2, + anon_sym_final, + anon_sym_override, + STATE(4127), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6673), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -355051,37 +356836,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [155499] = 5, + ACTIONS(6617), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_try, + anon_sym_requires, + [156096] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4092), 1, - anon_sym_SEMI, - ACTIONS(4201), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4203), 24, - anon_sym_AMP, - 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_thread_local, + ACTIONS(5649), 1, anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6133), 1, + anon_sym___attribute__, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6648), 1, + anon_sym_DASH_GT, + ACTIONS(6650), 1, + anon_sym_requires, + STATE(5114), 1, + sym_requires_clause, + STATE(5455), 1, + sym_trailing_return_type, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + STATE(4251), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6127), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4247), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6137), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -355089,13 +356897,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, + [156163] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6215), 1, + anon_sym___attribute__, + ACTIONS(6425), 1, + anon_sym___declspec, + ACTIONS(6431), 1, anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [155542] = 21, + ACTIONS(5456), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(5458), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6423), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4123), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [156218] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, @@ -355104,29 +356950,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2869), 1, + ACTIONS(2865), 1, sym_primitive_type, ACTIONS(3825), 1, sym_identifier, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(5492), 1, - anon_sym_enum, - ACTIONS(5494), 1, + ACTIONS(5533), 1, anon_sym_class, - ACTIONS(5496), 1, + ACTIONS(5535), 1, anon_sym_struct, - ACTIONS(5498), 1, + ACTIONS(5537), 1, anon_sym_union, - ACTIONS(5500), 1, + ACTIONS(5621), 1, + anon_sym_enum, + ACTIONS(5623), 1, anon_sym_typename, - STATE(3418), 1, + STATE(3336), 1, sym_template_type, - STATE(3479), 1, + STATE(3354), 1, + sym__type_specifier, + STATE(3443), 1, sym_qualified_type_identifier, - STATE(3505), 1, + STATE(3479), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3522), 1, + STATE(3481), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2863), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156292] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2601), 1, + sym_auto, + ACTIONS(2603), 1, + anon_sym_decltype, + ACTIONS(5545), 1, + sym_primitive_type, + ACTIONS(6479), 1, + sym_identifier, + ACTIONS(6481), 1, + anon_sym_COLON_COLON, + ACTIONS(6483), 1, + anon_sym_enum, + ACTIONS(6485), 1, + anon_sym_class, + ACTIONS(6487), 1, + anon_sym_struct, + ACTIONS(6489), 1, + anon_sym_union, + ACTIONS(6491), 1, + anon_sym_typename, + STATE(2373), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3100), 1, + sym_template_type, + STATE(3151), 1, + sym_qualified_type_identifier, + STATE(3195), 1, + sym_decltype_auto, + STATE(3329), 1, + sym__type_specifier, + STATE(5401), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2577), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3194), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156366] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3354), 1, + sym__type_specifier, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156440] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5559), 1, + sym_identifier, + ACTIONS(5561), 1, + anon_sym_COLON_COLON, + ACTIONS(5565), 1, + sym_primitive_type, + ACTIONS(5567), 1, + anon_sym_enum, + ACTIONS(5569), 1, + anon_sym_class, + ACTIONS(5571), 1, + anon_sym_struct, + ACTIONS(5573), 1, + anon_sym_union, + ACTIONS(5575), 1, + sym_auto, + ACTIONS(5577), 1, + anon_sym_decltype, + ACTIONS(5579), 1, + anon_sym_typename, + STATE(4269), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4434), 1, + sym_template_type, + STATE(4445), 1, + sym__type_specifier, + STATE(4485), 1, + sym_decltype_auto, + STATE(4488), 1, + sym_qualified_type_identifier, + STATE(5354), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5563), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4486), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156514] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6678), 1, + anon_sym_LPAREN2, + ACTIONS(6680), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6676), 24, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [156554] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3837), 1, + anon_sym_COLON_COLON, + ACTIONS(5531), 1, + anon_sym_enum, + ACTIONS(5533), 1, + anon_sym_class, + ACTIONS(5535), 1, + anon_sym_struct, + ACTIONS(5537), 1, + anon_sym_union, + ACTIONS(5539), 1, + anon_sym_typename, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3479), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3481), 1, sym_decltype_auto, STATE(5385), 1, sym__scope_resolution, @@ -355134,12 +357228,12 @@ static const uint16_t ts_small_parse_table[] = { sym__type_specifier, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(2867), 4, + ACTIONS(2863), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3504), 8, + STATE(3448), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -355148,7 +357242,113 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [155616] = 21, + [156628] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5472), 1, + sym_identifier, + ACTIONS(5476), 1, + anon_sym_COLON_COLON, + ACTIONS(5478), 1, + sym_primitive_type, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2671), 1, + sym__type_specifier, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156702] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5478), 1, + sym_primitive_type, + ACTIONS(6501), 1, + sym_identifier, + ACTIONS(6503), 1, + anon_sym_COLON_COLON, + ACTIONS(6507), 1, + anon_sym_class, + ACTIONS(6509), 1, + anon_sym_struct, + ACTIONS(6511), 1, + anon_sym_union, + ACTIONS(6515), 1, + anon_sym_enum, + ACTIONS(6517), 1, + anon_sym_typename, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(3310), 1, + sym__type_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156776] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, @@ -355157,42 +357357,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2859), 1, + ACTIONS(2855), 1, sym_identifier, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(2869), 1, + ACTIONS(2865), 1, sym_primitive_type, - ACTIONS(2873), 1, - anon_sym_class, - ACTIONS(2875), 1, - anon_sym_struct, - ACTIONS(2877), 1, - anon_sym_union, - ACTIONS(5518), 1, + ACTIONS(2867), 1, anon_sym_enum, - ACTIONS(5520), 1, + ACTIONS(2869), 1, + anon_sym_class, + ACTIONS(2871), 1, + anon_sym_struct, + ACTIONS(2873), 1, + anon_sym_union, + ACTIONS(2875), 1, anon_sym_typename, - STATE(3376), 1, - sym__type_specifier, - STATE(3418), 1, + STATE(3336), 1, sym_template_type, - STATE(3479), 1, + STATE(3354), 1, + sym__type_specifier, + STATE(3443), 1, sym_qualified_type_identifier, - STATE(3505), 1, + STATE(3479), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3522), 1, + STATE(3481), 1, sym_decltype_auto, STATE(5396), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(2867), 4, + ACTIONS(2863), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3504), 8, + STATE(3448), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -355201,38 +357401,1351 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [155690] = 21, + [156850] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6618), 1, - sym_identifier, - ACTIONS(6620), 1, - anon_sym_COLON_COLON, - ACTIONS(6624), 1, - sym_primitive_type, - ACTIONS(6626), 1, - anon_sym_enum, - ACTIONS(6628), 1, + ACTIONS(1489), 1, anon_sym_class, - ACTIONS(6630), 1, + ACTIONS(1491), 1, anon_sym_struct, - ACTIONS(6632), 1, + ACTIONS(1493), 1, anon_sym_union, - ACTIONS(6634), 1, + ACTIONS(1495), 1, sym_auto, - ACTIONS(6636), 1, + ACTIONS(1497), 1, anon_sym_decltype, - ACTIONS(6638), 1, + ACTIONS(5472), 1, + sym_identifier, + ACTIONS(5476), 1, + anon_sym_COLON_COLON, + ACTIONS(5478), 1, + sym_primitive_type, + ACTIONS(5581), 1, + anon_sym_enum, + ACTIONS(5583), 1, anon_sym_typename, - STATE(1885), 1, + STATE(1921), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2480), 1, + STATE(2671), 1, sym__type_specifier, - STATE(2485), 1, + STATE(2685), 1, sym_template_type, - STATE(2588), 1, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156924] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5867), 1, + sym_primitive_type, + ACTIONS(6682), 1, + sym_identifier, + STATE(3348), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5865), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3944), 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(3946), 14, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [156970] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6549), 1, + sym_identifier, + ACTIONS(6551), 1, + anon_sym_COLON_COLON, + ACTIONS(6555), 1, + sym_primitive_type, + ACTIONS(6557), 1, + anon_sym_enum, + ACTIONS(6559), 1, + anon_sym_class, + ACTIONS(6561), 1, + anon_sym_struct, + ACTIONS(6563), 1, + anon_sym_union, + ACTIONS(6565), 1, + sym_auto, + ACTIONS(6567), 1, + anon_sym_decltype, + ACTIONS(6569), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2225), 1, + sym__type_specifier, + STATE(2670), 1, + sym_template_type, + STATE(2750), 1, + sym_decltype_auto, + STATE(2871), 1, + sym_qualified_type_identifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6553), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2881), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157044] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6519), 1, + sym_identifier, + ACTIONS(6521), 1, + anon_sym_COLON_COLON, + ACTIONS(6525), 1, + sym_primitive_type, + ACTIONS(6527), 1, + anon_sym_enum, + ACTIONS(6529), 1, + anon_sym_class, + ACTIONS(6531), 1, + anon_sym_struct, + ACTIONS(6533), 1, + anon_sym_union, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6539), 1, + anon_sym_typename, + STATE(1818), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1866), 1, + sym__type_specifier, + STATE(2074), 1, + sym_template_type, + STATE(2081), 1, + sym_decltype_auto, + STATE(2095), 1, + sym_qualified_type_identifier, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6523), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2082), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157118] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3837), 1, + anon_sym_COLON_COLON, + ACTIONS(5531), 1, + anon_sym_enum, + ACTIONS(5533), 1, + anon_sym_class, + ACTIONS(5535), 1, + anon_sym_struct, + ACTIONS(5537), 1, + anon_sym_union, + ACTIONS(5539), 1, + anon_sym_typename, + STATE(3336), 1, + sym_template_type, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3479), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3481), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(5510), 1, + sym__type_specifier, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2863), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157192] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5478), 1, + sym_primitive_type, + ACTIONS(6501), 1, + sym_identifier, + ACTIONS(6503), 1, + anon_sym_COLON_COLON, + ACTIONS(6507), 1, + anon_sym_class, + ACTIONS(6509), 1, + anon_sym_struct, + ACTIONS(6511), 1, + anon_sym_union, + ACTIONS(6515), 1, + anon_sym_enum, + ACTIONS(6517), 1, + anon_sym_typename, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(3296), 1, + sym__type_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157266] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6549), 1, + sym_identifier, + ACTIONS(6551), 1, + anon_sym_COLON_COLON, + ACTIONS(6555), 1, + sym_primitive_type, + ACTIONS(6557), 1, + anon_sym_enum, + ACTIONS(6559), 1, + anon_sym_class, + ACTIONS(6561), 1, + anon_sym_struct, + ACTIONS(6563), 1, + anon_sym_union, + ACTIONS(6565), 1, + sym_auto, + ACTIONS(6567), 1, + anon_sym_decltype, + ACTIONS(6569), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2670), 1, + sym_template_type, + STATE(2682), 1, + sym__type_specifier, + STATE(2750), 1, + sym_decltype_auto, + STATE(2871), 1, + sym_qualified_type_identifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6553), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2881), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157340] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(6684), 1, + anon_sym_STAR, + ACTIONS(6686), 1, + anon_sym_AMP_AMP, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_LBRACK, + ACTIONS(6694), 1, + sym_auto, + ACTIONS(6696), 1, + anon_sym_decltype, + STATE(4265), 1, + sym_parameter_list, + STATE(4496), 1, + sym_decltype_auto, + STATE(5330), 1, + sym__abstract_declarator, + STATE(4278), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6477), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [157404] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_STAR, + ACTIONS(6447), 1, + anon_sym_AMP_AMP, + ACTIONS(6449), 1, + anon_sym_AMP, + ACTIONS(6451), 1, + anon_sym_LBRACK, + STATE(4178), 1, + sym_parameter_list, + STATE(5142), 1, + sym__abstract_declarator, + STATE(4414), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6698), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [157462] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5478), 1, + sym_primitive_type, + ACTIONS(6501), 1, + sym_identifier, + ACTIONS(6503), 1, + anon_sym_COLON_COLON, + ACTIONS(6507), 1, + anon_sym_class, + ACTIONS(6509), 1, + anon_sym_struct, + ACTIONS(6511), 1, + anon_sym_union, + ACTIONS(6515), 1, + anon_sym_enum, + ACTIONS(6517), 1, + anon_sym_typename, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(3274), 1, + sym__type_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157536] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5478), 1, + sym_primitive_type, + ACTIONS(6501), 1, + sym_identifier, + ACTIONS(6503), 1, + anon_sym_COLON_COLON, + ACTIONS(6507), 1, + anon_sym_class, + ACTIONS(6509), 1, + anon_sym_struct, + ACTIONS(6511), 1, + anon_sym_union, + ACTIONS(6515), 1, + anon_sym_enum, + ACTIONS(6517), 1, + anon_sym_typename, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2671), 1, + sym__type_specifier, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157610] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5478), 1, + sym_primitive_type, + ACTIONS(6501), 1, + sym_identifier, + ACTIONS(6503), 1, + anon_sym_COLON_COLON, + ACTIONS(6505), 1, + anon_sym_enum, + ACTIONS(6507), 1, + anon_sym_class, + ACTIONS(6509), 1, + anon_sym_struct, + ACTIONS(6511), 1, + anon_sym_union, + ACTIONS(6513), 1, + anon_sym_typename, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(3310), 1, + sym__type_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157684] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6593), 1, + sym_identifier, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(6599), 1, + sym_primitive_type, + ACTIONS(6601), 1, + anon_sym_enum, + ACTIONS(6603), 1, + anon_sym_class, + ACTIONS(6605), 1, + anon_sym_struct, + ACTIONS(6607), 1, + anon_sym_union, + ACTIONS(6609), 1, + sym_auto, + ACTIONS(6611), 1, + anon_sym_decltype, + ACTIONS(6613), 1, + anon_sym_typename, + STATE(1851), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2194), 1, + sym_template_type, + STATE(2295), 1, + sym__type_specifier, + STATE(2411), 1, + sym_decltype_auto, + STATE(2450), 1, + sym_qualified_type_identifier, + STATE(5349), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2407), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157758] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5478), 1, + sym_primitive_type, + ACTIONS(6501), 1, + sym_identifier, + ACTIONS(6503), 1, + anon_sym_COLON_COLON, + ACTIONS(6507), 1, + anon_sym_class, + ACTIONS(6509), 1, + anon_sym_struct, + ACTIONS(6511), 1, + anon_sym_union, + ACTIONS(6515), 1, + anon_sym_enum, + ACTIONS(6517), 1, + anon_sym_typename, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(3306), 1, + sym__type_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157832] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6593), 1, + sym_identifier, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(6599), 1, + sym_primitive_type, + ACTIONS(6601), 1, + anon_sym_enum, + ACTIONS(6603), 1, + anon_sym_class, + ACTIONS(6605), 1, + anon_sym_struct, + ACTIONS(6607), 1, + anon_sym_union, + ACTIONS(6609), 1, + sym_auto, + ACTIONS(6611), 1, + anon_sym_decltype, + ACTIONS(6613), 1, + anon_sym_typename, + STATE(1851), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1918), 1, + sym__type_specifier, + STATE(2194), 1, + sym_template_type, + STATE(2411), 1, + sym_decltype_auto, + STATE(2450), 1, + sym_qualified_type_identifier, + STATE(5349), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2407), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157906] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_STAR, + ACTIONS(6447), 1, + anon_sym_AMP_AMP, + ACTIONS(6449), 1, + anon_sym_AMP, + ACTIONS(6451), 1, + anon_sym_LBRACK, + STATE(4178), 1, + sym_parameter_list, + STATE(5134), 1, + sym__abstract_declarator, + STATE(4181), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(4742), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [157964] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6593), 1, + sym_identifier, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(6599), 1, + sym_primitive_type, + ACTIONS(6601), 1, + anon_sym_enum, + ACTIONS(6603), 1, + anon_sym_class, + ACTIONS(6605), 1, + anon_sym_struct, + ACTIONS(6607), 1, + anon_sym_union, + ACTIONS(6609), 1, + sym_auto, + ACTIONS(6611), 1, + anon_sym_decltype, + ACTIONS(6613), 1, + anon_sym_typename, + STATE(1851), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1933), 1, + sym__type_specifier, + STATE(2194), 1, + sym_template_type, + STATE(2411), 1, + sym_decltype_auto, + STATE(2450), 1, + sym_qualified_type_identifier, + STATE(5349), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2407), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6702), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6700), 24, + anon_sym_AMP, + 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_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [158076] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(2869), 1, + anon_sym_class, + ACTIONS(2871), 1, + anon_sym_struct, + ACTIONS(2873), 1, + anon_sym_union, + ACTIONS(5549), 1, + anon_sym_enum, + ACTIONS(5551), 1, + anon_sym_typename, + STATE(3336), 1, + sym_template_type, + STATE(3354), 1, + sym__type_specifier, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3479), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3481), 1, + sym_decltype_auto, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2863), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158150] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2855), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(5629), 1, + anon_sym_enum, + ACTIONS(5631), 1, + anon_sym_class, + ACTIONS(5633), 1, + anon_sym_struct, + ACTIONS(5635), 1, + anon_sym_union, + ACTIONS(5637), 1, + anon_sym_typename, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3354), 1, + sym__type_specifier, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158224] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(6684), 1, + anon_sym_STAR, + ACTIONS(6686), 1, + anon_sym_AMP_AMP, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_LBRACK, + ACTIONS(6694), 1, + sym_auto, + ACTIONS(6696), 1, + anon_sym_decltype, + STATE(4265), 1, + sym_parameter_list, + STATE(4496), 1, + sym_decltype_auto, + STATE(5334), 1, + sym__abstract_declarator, + STATE(4283), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6441), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [158288] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6519), 1, + sym_identifier, + ACTIONS(6521), 1, + anon_sym_COLON_COLON, + ACTIONS(6525), 1, + sym_primitive_type, + ACTIONS(6527), 1, + anon_sym_enum, + ACTIONS(6529), 1, + anon_sym_class, + ACTIONS(6531), 1, + anon_sym_struct, + ACTIONS(6533), 1, + anon_sym_union, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6539), 1, + anon_sym_typename, + STATE(1818), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1857), 1, + sym__type_specifier, + STATE(2074), 1, + sym_template_type, + STATE(2081), 1, + sym_decltype_auto, + STATE(2095), 1, + sym_qualified_type_identifier, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6523), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2082), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158362] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2601), 1, + sym_auto, + ACTIONS(2603), 1, + anon_sym_decltype, + ACTIONS(5545), 1, + sym_primitive_type, + ACTIONS(6479), 1, + sym_identifier, + ACTIONS(6481), 1, + anon_sym_COLON_COLON, + ACTIONS(6483), 1, + anon_sym_enum, + ACTIONS(6485), 1, + anon_sym_class, + ACTIONS(6487), 1, + anon_sym_struct, + ACTIONS(6489), 1, + anon_sym_union, + ACTIONS(6491), 1, + anon_sym_typename, + STATE(2373), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3095), 1, + sym__type_specifier, + STATE(3100), 1, + sym_template_type, + STATE(3151), 1, + sym_qualified_type_identifier, + STATE(3195), 1, + sym_decltype_auto, + STATE(5401), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2577), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3194), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158436] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5478), 1, + sym_primitive_type, + ACTIONS(6501), 1, + sym_identifier, + ACTIONS(6503), 1, + anon_sym_COLON_COLON, + ACTIONS(6505), 1, + anon_sym_enum, + ACTIONS(6507), 1, + anon_sym_class, + ACTIONS(6509), 1, + anon_sym_struct, + ACTIONS(6511), 1, + anon_sym_union, + ACTIONS(6513), 1, + anon_sym_typename, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(3306), 1, + sym__type_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158510] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6139), 1, + anon_sym_DASH_GT, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6145), 1, + anon_sym_requires, + ACTIONS(6706), 1, + anon_sym_LBRACK, + STATE(5059), 1, + sym_requires_clause, + STATE(5155), 1, + sym_trailing_return_type, + STATE(4167), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6704), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [158570] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6549), 1, + sym_identifier, + ACTIONS(6551), 1, + anon_sym_COLON_COLON, + ACTIONS(6555), 1, + sym_primitive_type, + ACTIONS(6557), 1, + anon_sym_enum, + ACTIONS(6559), 1, + anon_sym_class, + ACTIONS(6561), 1, + anon_sym_struct, + ACTIONS(6563), 1, + anon_sym_union, + ACTIONS(6565), 1, + sym_auto, + ACTIONS(6567), 1, + anon_sym_decltype, + ACTIONS(6569), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2343), 1, + sym__type_specifier, + STATE(2670), 1, + sym_template_type, + STATE(2750), 1, + sym_decltype_auto, + STATE(2871), 1, + sym_qualified_type_identifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6553), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2881), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158644] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6571), 1, + sym_identifier, + ACTIONS(6573), 1, + anon_sym_COLON_COLON, + ACTIONS(6577), 1, + sym_primitive_type, + ACTIONS(6579), 1, + anon_sym_enum, + ACTIONS(6581), 1, + anon_sym_class, + ACTIONS(6583), 1, + anon_sym_struct, + ACTIONS(6585), 1, + anon_sym_union, + ACTIONS(6587), 1, + sym_auto, + ACTIONS(6589), 1, + anon_sym_decltype, + ACTIONS(6591), 1, + anon_sym_typename, + STATE(1901), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2157), 1, + sym__type_specifier, + STATE(2501), 1, + sym_template_type, + STATE(2590), 1, sym_qualified_type_identifier, STATE(2661), 1, sym_decltype_auto, @@ -355240,7 +358753,7 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(6622), 4, + ACTIONS(6575), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -355254,60 +358767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [155764] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(6596), 1, - sym_identifier, - ACTIONS(6598), 1, - anon_sym_COLON_COLON, - ACTIONS(6602), 1, - sym_primitive_type, - ACTIONS(6604), 1, - anon_sym_enum, - ACTIONS(6606), 1, - anon_sym_class, - ACTIONS(6608), 1, - anon_sym_struct, - ACTIONS(6610), 1, - anon_sym_union, - ACTIONS(6612), 1, - sym_auto, - ACTIONS(6614), 1, - anon_sym_decltype, - ACTIONS(6616), 1, - anon_sym_typename, - STATE(1906), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2192), 1, - sym__type_specifier, - STATE(2670), 1, - sym_template_type, - STATE(2767), 1, - sym_decltype_auto, - STATE(2869), 1, - sym_qualified_type_identifier, - STATE(5352), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6600), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2885), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [155838] = 21, + [158718] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -355328,30 +358788,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(3825), 1, sym_identifier, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5516), 1, + ACTIONS(5557), 1, anon_sym_typename, - STATE(3418), 1, + STATE(3336), 1, sym_template_type, - STATE(3914), 1, + STATE(3784), 1, sym__type_specifier, - STATE(4026), 1, + STATE(3901), 1, sym_decltype_auto, - STATE(4041), 1, + STATE(3925), 1, sym_qualified_type_identifier, - STATE(4175), 1, + STATE(4140), 1, aux_sym_sized_type_specifier_repeat1, STATE(5381), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5514), 4, + ACTIONS(5555), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4019), 8, + STATE(3854), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -355360,51 +358820,142 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [155912] = 21, + [158792] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6139), 1, + anon_sym_DASH_GT, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6145), 1, + anon_sym_requires, + ACTIONS(6710), 1, + anon_sym_LBRACK, + STATE(5057), 1, + sym_requires_clause, + STATE(5123), 1, + sym_trailing_return_type, + STATE(4241), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6708), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [158852] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_STAR, + ACTIONS(6447), 1, + anon_sym_AMP_AMP, + ACTIONS(6449), 1, + anon_sym_AMP, + ACTIONS(6451), 1, + anon_sym_LBRACK, + STATE(4178), 1, + sym_parameter_list, + STATE(5126), 1, + sym__abstract_declarator, + STATE(4414), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6712), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [158910] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(5458), 1, - sym_primitive_type, - ACTIONS(6475), 1, + ACTIONS(6519), 1, sym_identifier, - ACTIONS(6477), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6481), 1, - anon_sym_class, - ACTIONS(6483), 1, - anon_sym_struct, - ACTIONS(6485), 1, - anon_sym_union, - ACTIONS(6531), 1, + ACTIONS(6525), 1, + sym_primitive_type, + ACTIONS(6527), 1, anon_sym_enum, + ACTIONS(6529), 1, + anon_sym_class, + ACTIONS(6531), 1, + anon_sym_struct, ACTIONS(6533), 1, + anon_sym_union, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6539), 1, anon_sym_typename, - STATE(1909), 1, + STATE(1818), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(3303), 1, + STATE(2062), 1, sym__type_specifier, - STATE(5445), 1, + STATE(2074), 1, + sym_template_type, + STATE(2081), 1, + sym_decltype_auto, + STATE(2095), 1, + sym_qualified_type_identifier, + STATE(5371), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(1483), 4, + ACTIONS(6523), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2877), 8, + STATE(2082), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -355413,7 +358964,318 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [155986] = 21, + [158984] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6519), 1, + sym_identifier, + ACTIONS(6521), 1, + anon_sym_COLON_COLON, + ACTIONS(6525), 1, + sym_primitive_type, + ACTIONS(6529), 1, + anon_sym_class, + ACTIONS(6531), 1, + anon_sym_struct, + ACTIONS(6533), 1, + anon_sym_union, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6545), 1, + anon_sym_enum, + ACTIONS(6547), 1, + anon_sym_typename, + STATE(1818), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2062), 1, + sym__type_specifier, + STATE(2074), 1, + sym_template_type, + STATE(2081), 1, + sym_decltype_auto, + STATE(2095), 1, + sym_qualified_type_identifier, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6523), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2082), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159058] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6571), 1, + sym_identifier, + ACTIONS(6573), 1, + anon_sym_COLON_COLON, + ACTIONS(6577), 1, + sym_primitive_type, + ACTIONS(6579), 1, + anon_sym_enum, + ACTIONS(6581), 1, + anon_sym_class, + ACTIONS(6583), 1, + anon_sym_struct, + ACTIONS(6585), 1, + anon_sym_union, + ACTIONS(6587), 1, + sym_auto, + ACTIONS(6589), 1, + anon_sym_decltype, + ACTIONS(6591), 1, + anon_sym_typename, + STATE(1901), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2159), 1, + sym__type_specifier, + STATE(2501), 1, + sym_template_type, + STATE(2590), 1, + sym_qualified_type_identifier, + STATE(2661), 1, + sym_decltype_auto, + STATE(5362), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6575), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2657), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159132] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2865), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3837), 1, + anon_sym_COLON_COLON, + STATE(3277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_template_type, + STATE(3354), 1, + sym__type_specifier, + STATE(3443), 1, + sym_qualified_type_identifier, + STATE(3481), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3448), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159206] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6139), 1, + anon_sym_DASH_GT, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6145), 1, + anon_sym_requires, + ACTIONS(6716), 1, + anon_sym_LBRACK, + STATE(5042), 1, + sym_requires_clause, + STATE(5122), 1, + sym_trailing_return_type, + STATE(4241), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6714), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [159266] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6519), 1, + sym_identifier, + ACTIONS(6521), 1, + anon_sym_COLON_COLON, + ACTIONS(6525), 1, + sym_primitive_type, + ACTIONS(6529), 1, + anon_sym_class, + ACTIONS(6531), 1, + anon_sym_struct, + ACTIONS(6533), 1, + anon_sym_union, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6545), 1, + anon_sym_enum, + ACTIONS(6547), 1, + anon_sym_typename, + STATE(1818), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1857), 1, + sym__type_specifier, + STATE(2074), 1, + sym_template_type, + STATE(2081), 1, + sym_decltype_auto, + STATE(2095), 1, + sym_qualified_type_identifier, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6523), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2082), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159340] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6571), 1, + sym_identifier, + ACTIONS(6573), 1, + anon_sym_COLON_COLON, + ACTIONS(6577), 1, + sym_primitive_type, + ACTIONS(6579), 1, + anon_sym_enum, + ACTIONS(6581), 1, + anon_sym_class, + ACTIONS(6583), 1, + anon_sym_struct, + ACTIONS(6585), 1, + anon_sym_union, + ACTIONS(6587), 1, + sym_auto, + ACTIONS(6589), 1, + anon_sym_decltype, + ACTIONS(6591), 1, + anon_sym_typename, + STATE(1901), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2501), 1, + sym_template_type, + STATE(2566), 1, + sym__type_specifier, + STATE(2590), 1, + sym_qualified_type_identifier, + STATE(2661), 1, + sym_decltype_auto, + STATE(5362), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6575), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2657), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159414] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -355436,17 +359298,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, ACTIONS(3825), 1, sym_identifier, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - STATE(3418), 1, + STATE(3336), 1, sym_template_type, - STATE(3792), 1, + STATE(3606), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3914), 1, + STATE(3784), 1, sym__type_specifier, - STATE(4026), 1, + STATE(3901), 1, sym_decltype_auto, - STATE(4041), 1, + STATE(3925), 1, sym_qualified_type_identifier, STATE(5381), 1, sym__scope_resolution, @@ -355457,7 +359319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4019), 8, + STATE(3854), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -355466,51 +359328,51 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [156060] = 21, + [159488] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(5458), 1, - sym_primitive_type, - ACTIONS(6475), 1, - sym_identifier, - ACTIONS(6477), 1, - anon_sym_COLON_COLON, - ACTIONS(6481), 1, - anon_sym_class, - ACTIONS(6483), 1, - anon_sym_struct, - ACTIONS(6485), 1, - anon_sym_union, - ACTIONS(6531), 1, + ACTIONS(2581), 1, anon_sym_enum, - ACTIONS(6533), 1, + ACTIONS(2583), 1, + anon_sym_class, + ACTIONS(2585), 1, + anon_sym_struct, + ACTIONS(2587), 1, + anon_sym_union, + ACTIONS(2601), 1, + sym_auto, + ACTIONS(2603), 1, + anon_sym_decltype, + ACTIONS(2605), 1, anon_sym_typename, - STATE(1909), 1, + ACTIONS(5541), 1, + sym_identifier, + ACTIONS(5543), 1, + anon_sym_COLON_COLON, + ACTIONS(5545), 1, + sym_primitive_type, + STATE(2373), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(3271), 1, + STATE(3095), 1, sym__type_specifier, - STATE(5445), 1, + STATE(3100), 1, + sym_template_type, + STATE(3151), 1, + sym_qualified_type_identifier, + STATE(3195), 1, + sym_decltype_auto, + STATE(5420), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(1483), 4, + ACTIONS(2577), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2877), 8, + STATE(3194), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -355519,139 +359381,36 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [156134] = 21, + [159562] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1489), 1, - anon_sym_class, - ACTIONS(1491), 1, - anon_sym_struct, - ACTIONS(1493), 1, - anon_sym_union, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(5452), 1, - sym_identifier, - ACTIONS(5456), 1, - anon_sym_COLON_COLON, - ACTIONS(5458), 1, - sym_primitive_type, - ACTIONS(5578), 1, - anon_sym_enum, - ACTIONS(5580), 1, - anon_sym_typename, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2671), 1, - sym__type_specifier, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(5389), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [156208] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(6535), 1, - sym_identifier, - ACTIONS(6537), 1, - anon_sym_COLON_COLON, - ACTIONS(6541), 1, - sym_primitive_type, - ACTIONS(6543), 1, - anon_sym_enum, - ACTIONS(6545), 1, - anon_sym_class, - ACTIONS(6547), 1, - anon_sym_struct, - ACTIONS(6549), 1, - anon_sym_union, - ACTIONS(6551), 1, - sym_auto, - ACTIONS(6553), 1, - anon_sym_decltype, - ACTIONS(6555), 1, - anon_sym_typename, - STATE(1844), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1919), 1, - sym__type_specifier, - STATE(2182), 1, - sym_template_type, - STATE(2251), 1, - sym_decltype_auto, - STATE(2448), 1, - sym_qualified_type_identifier, - STATE(5349), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6539), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2299), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [156282] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, + ACTIONS(5649), 1, anon_sym_const, - ACTIONS(6210), 1, - anon_sym___attribute__, - ACTIONS(6453), 1, - anon_sym___declspec, - ACTIONS(6459), 1, - anon_sym_virtual, - ACTIONS(5536), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(5538), 3, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(6129), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(6212), 7, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6139), 1, + anon_sym_DASH_GT, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6145), 1, + anon_sym_requires, + ACTIONS(6720), 1, + anon_sym_LBRACK, + STATE(5074), 1, + sym_requires_clause, + STATE(5151), 1, + sym_trailing_return_type, + STATE(4173), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6137), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -355659,152 +359418,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4138), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [156336] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(5458), 1, - sym_primitive_type, - ACTIONS(6475), 1, - sym_identifier, - ACTIONS(6477), 1, - anon_sym_COLON_COLON, - ACTIONS(6479), 1, - anon_sym_enum, - ACTIONS(6481), 1, - anon_sym_class, - ACTIONS(6483), 1, - anon_sym_struct, - ACTIONS(6485), 1, - anon_sym_union, - ACTIONS(6487), 1, - anon_sym_typename, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2671), 1, - sym__type_specifier, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(5445), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [156410] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5641), 1, - anon_sym_const, - ACTIONS(6661), 1, - anon_sym___attribute__, - ACTIONS(6664), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6667), 1, - anon_sym___declspec, - ACTIONS(6673), 1, - anon_sym_virtual, - ACTIONS(5470), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(5472), 3, + ACTIONS(6718), 8, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6658), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(6670), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4138), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [156464] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(6676), 1, - anon_sym_STAR, - ACTIONS(6678), 1, - anon_sym_AMP_AMP, - ACTIONS(6680), 1, - anon_sym_AMP, - ACTIONS(6682), 1, - anon_sym_LBRACK, - ACTIONS(6686), 1, - sym_auto, - ACTIONS(6688), 1, - anon_sym_decltype, - STATE(4263), 1, - sym_parameter_list, - STATE(4498), 1, - sym_decltype_auto, - STATE(5330), 1, - sym__abstract_declarator, - STATE(4278), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6473), 5, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - STATE(5097), 5, + [159622] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5478), 1, + sym_primitive_type, + ACTIONS(6501), 1, + sym_identifier, + ACTIONS(6503), 1, + anon_sym_COLON_COLON, + ACTIONS(6505), 1, + anon_sym_enum, + ACTIONS(6507), 1, + anon_sym_class, + ACTIONS(6509), 1, + anon_sym_struct, + ACTIONS(6511), 1, + anon_sym_union, + ACTIONS(6513), 1, + anon_sym_typename, + STATE(1921), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2671), 1, + sym__type_specifier, + STATE(2685), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(2884), 1, + sym_decltype_auto, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2880), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159696] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6519), 1, + sym_identifier, + ACTIONS(6521), 1, + anon_sym_COLON_COLON, + ACTIONS(6525), 1, + sym_primitive_type, + ACTIONS(6529), 1, + anon_sym_class, + ACTIONS(6531), 1, + anon_sym_struct, + ACTIONS(6533), 1, + anon_sym_union, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6545), 1, + anon_sym_enum, + ACTIONS(6547), 1, + anon_sym_typename, + STATE(1818), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1866), 1, + sym__type_specifier, + STATE(2074), 1, + sym_template_type, + STATE(2081), 1, + sym_decltype_auto, + STATE(2095), 1, + sym_qualified_type_identifier, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6523), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2082), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159770] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_STAR, + ACTIONS(6447), 1, + anon_sym_AMP_AMP, + ACTIONS(6449), 1, + anon_sym_AMP, + ACTIONS(6451), 1, + anon_sym_LBRACK, + STATE(4178), 1, + sym_parameter_list, + STATE(5150), 1, + sym__abstract_declarator, + STATE(4414), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6684), 7, + ACTIONS(6137), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -355812,7 +359569,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [156528] = 21, + ACTIONS(5352), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [159828] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -355823,40 +359589,40 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1627), 1, anon_sym_decltype, - ACTIONS(2859), 1, + ACTIONS(2855), 1, sym_identifier, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5526), 1, + ACTIONS(5591), 1, anon_sym_enum, - ACTIONS(5528), 1, + ACTIONS(5593), 1, anon_sym_class, - ACTIONS(5530), 1, + ACTIONS(5595), 1, anon_sym_struct, - ACTIONS(5532), 1, + ACTIONS(5597), 1, anon_sym_union, - ACTIONS(5534), 1, + ACTIONS(5599), 1, anon_sym_typename, - STATE(3418), 1, + STATE(3336), 1, sym_template_type, - STATE(3914), 1, + STATE(3784), 1, sym__type_specifier, - STATE(4026), 1, + STATE(3901), 1, sym_decltype_auto, - STATE(4041), 1, + STATE(3925), 1, sym_qualified_type_identifier, - STATE(4175), 1, + STATE(4140), 1, aux_sym_sized_type_specifier_repeat1, STATE(5435), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5514), 4, + ACTIONS(5555), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4019), 8, + STATE(3854), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -355865,1815 +359631,51 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [156602] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6439), 1, - anon_sym_STAR, - ACTIONS(6441), 1, - anon_sym_AMP_AMP, - ACTIONS(6443), 1, - anon_sym_AMP, - ACTIONS(6445), 1, - anon_sym_LBRACK, - STATE(4155), 1, - sym_parameter_list, - STATE(5150), 1, - sym__abstract_declarator, - STATE(4424), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5348), 8, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - anon_sym_requires, - [156660] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(3835), 1, - anon_sym_COLON_COLON, - ACTIONS(5492), 1, - anon_sym_enum, - ACTIONS(5494), 1, - anon_sym_class, - ACTIONS(5496), 1, - anon_sym_struct, - ACTIONS(5498), 1, - anon_sym_union, - ACTIONS(5500), 1, - anon_sym_typename, - STATE(3376), 1, - sym__type_specifier, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3522), 1, - sym_decltype_auto, - STATE(5385), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [156734] = 21, + [159902] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6509), 1, - sym_identifier, - ACTIONS(6511), 1, - anon_sym_COLON_COLON, - ACTIONS(6515), 1, - sym_primitive_type, - ACTIONS(6519), 1, - anon_sym_class, - ACTIONS(6521), 1, - anon_sym_struct, - ACTIONS(6523), 1, - anon_sym_union, - ACTIONS(6525), 1, + ACTIONS(2601), 1, sym_auto, - ACTIONS(6527), 1, + ACTIONS(2603), 1, anon_sym_decltype, - ACTIONS(6557), 1, - anon_sym_enum, - ACTIONS(6559), 1, - anon_sym_typename, - STATE(1825), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1949), 1, - sym_template_type, - STATE(1953), 1, - sym__type_specifier, - STATE(1994), 1, - sym_decltype_auto, - STATE(2092), 1, - sym_qualified_type_identifier, - STATE(5371), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6513), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1997), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [156808] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2425), 1, - anon_sym_enum, - ACTIONS(2427), 1, - anon_sym_class, - ACTIONS(2429), 1, - anon_sym_struct, - ACTIONS(2431), 1, - anon_sym_union, - ACTIONS(2445), 1, - sym_auto, - ACTIONS(2447), 1, - anon_sym_decltype, - ACTIONS(2449), 1, - anon_sym_typename, - ACTIONS(5582), 1, - sym_identifier, - ACTIONS(5584), 1, - anon_sym_COLON_COLON, - ACTIONS(5586), 1, + ACTIONS(5545), 1, sym_primitive_type, - STATE(2341), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3096), 1, - sym_template_type, - STATE(3114), 1, - sym__type_specifier, - STATE(3152), 1, - sym_decltype_auto, - STATE(3167), 1, - sym_qualified_type_identifier, - STATE(5420), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(2421), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3153), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [156882] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2445), 1, - sym_auto, - ACTIONS(2447), 1, - anon_sym_decltype, - ACTIONS(5586), 1, - sym_primitive_type, - ACTIONS(6489), 1, - sym_identifier, - ACTIONS(6491), 1, - anon_sym_COLON_COLON, - ACTIONS(6493), 1, - anon_sym_enum, - ACTIONS(6495), 1, - anon_sym_class, - ACTIONS(6497), 1, - anon_sym_struct, - ACTIONS(6499), 1, - anon_sym_union, - ACTIONS(6501), 1, - anon_sym_typename, - STATE(2341), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3096), 1, - sym_template_type, - STATE(3152), 1, - sym_decltype_auto, - STATE(3167), 1, - sym_qualified_type_identifier, - STATE(3314), 1, - sym__type_specifier, - STATE(5401), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(2421), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3153), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [156956] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(6535), 1, - sym_identifier, - ACTIONS(6537), 1, - anon_sym_COLON_COLON, - ACTIONS(6541), 1, - sym_primitive_type, - ACTIONS(6543), 1, - anon_sym_enum, - ACTIONS(6545), 1, - anon_sym_class, - ACTIONS(6547), 1, - anon_sym_struct, - ACTIONS(6549), 1, - anon_sym_union, - ACTIONS(6551), 1, - sym_auto, - ACTIONS(6553), 1, - anon_sym_decltype, - ACTIONS(6555), 1, - anon_sym_typename, - STATE(1844), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1910), 1, - sym__type_specifier, - STATE(2182), 1, - sym_template_type, - STATE(2251), 1, - sym_decltype_auto, - STATE(2448), 1, - sym_qualified_type_identifier, - STATE(5349), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6539), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2299), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [157030] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(3835), 1, - anon_sym_COLON_COLON, - ACTIONS(5494), 1, - anon_sym_class, - ACTIONS(5496), 1, - anon_sym_struct, - ACTIONS(5498), 1, - anon_sym_union, - ACTIONS(5574), 1, - anon_sym_enum, - ACTIONS(5576), 1, - anon_sym_typename, - STATE(3376), 1, - sym__type_specifier, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3522), 1, - sym_decltype_auto, - STATE(5385), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [157104] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(6509), 1, - sym_identifier, - ACTIONS(6511), 1, - anon_sym_COLON_COLON, - ACTIONS(6515), 1, - sym_primitive_type, - ACTIONS(6519), 1, - anon_sym_class, - ACTIONS(6521), 1, - anon_sym_struct, - ACTIONS(6523), 1, - anon_sym_union, - ACTIONS(6525), 1, - sym_auto, - ACTIONS(6527), 1, - anon_sym_decltype, - ACTIONS(6557), 1, - anon_sym_enum, - ACTIONS(6559), 1, - anon_sym_typename, - STATE(1825), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1875), 1, - sym__type_specifier, - STATE(1949), 1, - sym_template_type, - STATE(1994), 1, - sym_decltype_auto, - STATE(2092), 1, - sym_qualified_type_identifier, - STATE(5371), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6513), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1997), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [157178] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6134), 1, - anon_sym_DASH_GT, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6140), 1, - anon_sym_requires, - ACTIONS(6692), 1, - anon_sym_LBRACK, - STATE(5059), 1, - sym_requires_clause, - STATE(5155), 1, - sym_trailing_return_type, - STATE(4161), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6690), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [157238] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(5458), 1, - sym_primitive_type, - ACTIONS(6475), 1, - sym_identifier, - ACTIONS(6477), 1, - anon_sym_COLON_COLON, ACTIONS(6479), 1, - anon_sym_enum, + sym_identifier, ACTIONS(6481), 1, - anon_sym_class, + anon_sym_COLON_COLON, ACTIONS(6483), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(6485), 1, - anon_sym_union, + anon_sym_class, ACTIONS(6487), 1, - anon_sym_typename, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(3303), 1, - sym__type_specifier, - STATE(5445), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [157312] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1431), 1, - anon_sym_enum, - ACTIONS(1433), 1, - anon_sym_class, - ACTIONS(1435), 1, anon_sym_struct, - ACTIONS(1437), 1, - anon_sym_union, - ACTIONS(1451), 1, - anon_sym_typename, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(3835), 1, - anon_sym_COLON_COLON, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3376), 1, - sym__type_specifier, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(5385), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [157386] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(5458), 1, - sym_primitive_type, - ACTIONS(6475), 1, - sym_identifier, - ACTIONS(6477), 1, - anon_sym_COLON_COLON, - ACTIONS(6481), 1, - anon_sym_class, - ACTIONS(6483), 1, - anon_sym_struct, - ACTIONS(6485), 1, - anon_sym_union, - ACTIONS(6531), 1, - anon_sym_enum, - ACTIONS(6533), 1, - anon_sym_typename, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(3298), 1, - sym__type_specifier, - STATE(5445), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [157460] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(6509), 1, - sym_identifier, - ACTIONS(6511), 1, - anon_sym_COLON_COLON, - ACTIONS(6515), 1, - sym_primitive_type, - ACTIONS(6519), 1, - anon_sym_class, - ACTIONS(6521), 1, - anon_sym_struct, - ACTIONS(6523), 1, - anon_sym_union, - ACTIONS(6525), 1, - sym_auto, - ACTIONS(6527), 1, - anon_sym_decltype, - ACTIONS(6557), 1, - anon_sym_enum, - ACTIONS(6559), 1, - anon_sym_typename, - STATE(1825), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1869), 1, - sym__type_specifier, - STATE(1949), 1, - sym_template_type, - STATE(1994), 1, - sym_decltype_auto, - STATE(2092), 1, - sym_qualified_type_identifier, - STATE(5371), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6513), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1997), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [157534] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(5588), 1, - anon_sym_enum, - ACTIONS(5590), 1, - anon_sym_class, - ACTIONS(5592), 1, - anon_sym_struct, - ACTIONS(5594), 1, - anon_sym_union, - ACTIONS(5596), 1, - anon_sym_typename, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3376), 1, - sym__type_specifier, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [157608] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6134), 1, - anon_sym_DASH_GT, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6140), 1, - anon_sym_requires, - ACTIONS(6696), 1, - anon_sym_LBRACK, - STATE(5074), 1, - sym_requires_clause, - STATE(5151), 1, - sym_trailing_return_type, - STATE(4171), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6694), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [157668] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - STATE(3289), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3376), 1, - sym__type_specifier, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3522), 1, - sym_decltype_auto, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [157742] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(5458), 1, - sym_primitive_type, - ACTIONS(6475), 1, - sym_identifier, - ACTIONS(6477), 1, - anon_sym_COLON_COLON, - ACTIONS(6481), 1, - anon_sym_class, - ACTIONS(6483), 1, - anon_sym_struct, - ACTIONS(6485), 1, - anon_sym_union, - ACTIONS(6531), 1, - anon_sym_enum, - ACTIONS(6533), 1, - anon_sym_typename, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2671), 1, - sym__type_specifier, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(5445), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [157816] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(2871), 1, - anon_sym_enum, - ACTIONS(2873), 1, - anon_sym_class, - ACTIONS(2875), 1, - anon_sym_struct, - ACTIONS(2877), 1, - anon_sym_union, - ACTIONS(2879), 1, - anon_sym_typename, - STATE(3376), 1, - sym__type_specifier, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3522), 1, - sym_decltype_auto, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [157890] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6439), 1, - anon_sym_STAR, - ACTIONS(6441), 1, - anon_sym_AMP_AMP, - ACTIONS(6443), 1, - anon_sym_AMP, - ACTIONS(6445), 1, - anon_sym_LBRACK, - STATE(4155), 1, - sym_parameter_list, - STATE(5142), 1, - sym__abstract_declarator, - STATE(4424), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6698), 8, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - anon_sym_requires, - [157948] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2869), 1, - sym_primitive_type, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(3835), 1, - anon_sym_COLON_COLON, - ACTIONS(5492), 1, - anon_sym_enum, - ACTIONS(5494), 1, - anon_sym_class, - ACTIONS(5496), 1, - anon_sym_struct, - ACTIONS(5498), 1, - anon_sym_union, - ACTIONS(5500), 1, - anon_sym_typename, - STATE(3418), 1, - sym_template_type, - STATE(3479), 1, - sym_qualified_type_identifier, - STATE(3505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3522), 1, - sym_decltype_auto, - STATE(5385), 1, - sym__scope_resolution, - STATE(5510), 1, - sym__type_specifier, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3504), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [158022] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6134), 1, - anon_sym_DASH_GT, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6140), 1, - anon_sym_requires, - ACTIONS(6702), 1, - anon_sym_LBRACK, - STATE(5057), 1, - sym_requires_clause, - STATE(5123), 1, - sym_trailing_return_type, - STATE(4224), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6700), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [158082] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(6618), 1, - sym_identifier, - ACTIONS(6620), 1, - anon_sym_COLON_COLON, - ACTIONS(6624), 1, - sym_primitive_type, - ACTIONS(6626), 1, - anon_sym_enum, - ACTIONS(6628), 1, - anon_sym_class, - ACTIONS(6630), 1, - anon_sym_struct, - ACTIONS(6632), 1, - anon_sym_union, - ACTIONS(6634), 1, - sym_auto, - ACTIONS(6636), 1, - anon_sym_decltype, - ACTIONS(6638), 1, - anon_sym_typename, - STATE(1885), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2008), 1, - sym__type_specifier, - STATE(2485), 1, - sym_template_type, - STATE(2588), 1, - sym_qualified_type_identifier, - STATE(2661), 1, - sym_decltype_auto, - STATE(5362), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6622), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2657), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [158156] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(6535), 1, - sym_identifier, - ACTIONS(6537), 1, - anon_sym_COLON_COLON, - ACTIONS(6541), 1, - sym_primitive_type, - ACTIONS(6543), 1, - anon_sym_enum, - ACTIONS(6545), 1, - anon_sym_class, - ACTIONS(6547), 1, - anon_sym_struct, - ACTIONS(6549), 1, - anon_sym_union, - ACTIONS(6551), 1, - sym_auto, - ACTIONS(6553), 1, - anon_sym_decltype, - ACTIONS(6555), 1, - anon_sym_typename, - STATE(1844), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2182), 1, - sym_template_type, - STATE(2195), 1, - sym__type_specifier, - STATE(2251), 1, - sym_decltype_auto, - STATE(2448), 1, - sym_qualified_type_identifier, - STATE(5349), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6539), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2299), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [158230] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(6509), 1, - sym_identifier, - ACTIONS(6511), 1, - anon_sym_COLON_COLON, - ACTIONS(6515), 1, - sym_primitive_type, - ACTIONS(6517), 1, - anon_sym_enum, - ACTIONS(6519), 1, - anon_sym_class, - ACTIONS(6521), 1, - anon_sym_struct, - ACTIONS(6523), 1, - anon_sym_union, - ACTIONS(6525), 1, - sym_auto, - ACTIONS(6527), 1, - anon_sym_decltype, - ACTIONS(6529), 1, - anon_sym_typename, - STATE(1825), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1949), 1, - sym_template_type, - STATE(1953), 1, - sym__type_specifier, - STATE(1994), 1, - sym_decltype_auto, - STATE(2092), 1, - sym_qualified_type_identifier, - STATE(5371), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6513), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1997), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [158304] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6439), 1, - anon_sym_STAR, - ACTIONS(6441), 1, - anon_sym_AMP_AMP, - ACTIONS(6443), 1, - anon_sym_AMP, - ACTIONS(6445), 1, - anon_sym_LBRACK, - STATE(4155), 1, - sym_parameter_list, - STATE(5134), 1, - sym__abstract_declarator, - STATE(4141), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(4700), 8, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - anon_sym_requires, - [158362] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(5458), 1, - sym_primitive_type, - ACTIONS(6475), 1, - sym_identifier, - ACTIONS(6477), 1, - anon_sym_COLON_COLON, - ACTIONS(6481), 1, - anon_sym_class, - ACTIONS(6483), 1, - anon_sym_struct, - ACTIONS(6485), 1, - anon_sym_union, - ACTIONS(6531), 1, - anon_sym_enum, - ACTIONS(6533), 1, - anon_sym_typename, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(3277), 1, - sym__type_specifier, - STATE(5445), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [158436] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(6596), 1, - sym_identifier, - ACTIONS(6598), 1, - anon_sym_COLON_COLON, - ACTIONS(6602), 1, - sym_primitive_type, - ACTIONS(6604), 1, - anon_sym_enum, - ACTIONS(6606), 1, - anon_sym_class, - ACTIONS(6608), 1, - anon_sym_struct, - ACTIONS(6610), 1, - anon_sym_union, - ACTIONS(6612), 1, - sym_auto, - ACTIONS(6614), 1, - anon_sym_decltype, - ACTIONS(6616), 1, - anon_sym_typename, - STATE(1906), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2670), 1, - sym_template_type, - STATE(2679), 1, - sym__type_specifier, - STATE(2767), 1, - sym_decltype_auto, - STATE(2869), 1, - sym_qualified_type_identifier, - STATE(5352), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6600), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2885), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [158510] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2445), 1, - sym_auto, - ACTIONS(2447), 1, - anon_sym_decltype, - ACTIONS(5586), 1, - sym_primitive_type, ACTIONS(6489), 1, - sym_identifier, + anon_sym_union, ACTIONS(6491), 1, - anon_sym_COLON_COLON, - ACTIONS(6493), 1, - anon_sym_enum, - ACTIONS(6495), 1, - anon_sym_class, - ACTIONS(6497), 1, - anon_sym_struct, - ACTIONS(6499), 1, - anon_sym_union, - ACTIONS(6501), 1, anon_sym_typename, - STATE(2341), 1, + STATE(2373), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3096), 1, + STATE(3100), 1, sym_template_type, - STATE(3114), 1, - sym__type_specifier, - STATE(3152), 1, - sym_decltype_auto, - STATE(3167), 1, + STATE(3151), 1, sym_qualified_type_identifier, - STATE(5401), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(2421), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3153), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [158584] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4201), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4203), 24, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [158624] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(6618), 1, - sym_identifier, - ACTIONS(6620), 1, - anon_sym_COLON_COLON, - ACTIONS(6624), 1, - sym_primitive_type, - ACTIONS(6626), 1, - anon_sym_enum, - ACTIONS(6628), 1, - anon_sym_class, - ACTIONS(6630), 1, - anon_sym_struct, - ACTIONS(6632), 1, - anon_sym_union, - ACTIONS(6634), 1, - sym_auto, - ACTIONS(6636), 1, - anon_sym_decltype, - ACTIONS(6638), 1, - anon_sym_typename, - STATE(1885), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2067), 1, - sym__type_specifier, - STATE(2485), 1, - sym_template_type, - STATE(2588), 1, - sym_qualified_type_identifier, - STATE(2661), 1, + STATE(3195), 1, sym_decltype_auto, - STATE(5362), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6622), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2657), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [158698] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6134), 1, - anon_sym_DASH_GT, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6140), 1, - anon_sym_requires, - ACTIONS(6706), 1, - anon_sym_LBRACK, - STATE(5042), 1, - sym_requires_clause, - STATE(5122), 1, - sym_trailing_return_type, - STATE(4224), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6704), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [158758] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6439), 1, - anon_sym_STAR, - ACTIONS(6441), 1, - anon_sym_AMP_AMP, - ACTIONS(6443), 1, - anon_sym_AMP, - ACTIONS(6445), 1, - anon_sym_LBRACK, - STATE(4155), 1, - sym_parameter_list, - STATE(5126), 1, - sym__abstract_declarator, - STATE(4424), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6708), 8, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - anon_sym_requires, - [158816] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(6509), 1, - sym_identifier, - ACTIONS(6511), 1, - anon_sym_COLON_COLON, - ACTIONS(6515), 1, - sym_primitive_type, - ACTIONS(6517), 1, - anon_sym_enum, - ACTIONS(6519), 1, - anon_sym_class, - ACTIONS(6521), 1, - anon_sym_struct, - ACTIONS(6523), 1, - anon_sym_union, - ACTIONS(6525), 1, - sym_auto, - ACTIONS(6527), 1, - anon_sym_decltype, - ACTIONS(6529), 1, - anon_sym_typename, - STATE(1825), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1875), 1, - sym__type_specifier, - STATE(1949), 1, - sym_template_type, - STATE(1994), 1, - sym_decltype_auto, - STATE(2092), 1, - sym_qualified_type_identifier, - STATE(5371), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6513), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1997), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [158890] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(6596), 1, - sym_identifier, - ACTIONS(6598), 1, - anon_sym_COLON_COLON, - ACTIONS(6602), 1, - sym_primitive_type, - ACTIONS(6604), 1, - anon_sym_enum, - ACTIONS(6606), 1, - anon_sym_class, - ACTIONS(6608), 1, - anon_sym_struct, - ACTIONS(6610), 1, - anon_sym_union, - ACTIONS(6612), 1, - sym_auto, - ACTIONS(6614), 1, - anon_sym_decltype, - ACTIONS(6616), 1, - anon_sym_typename, - STATE(1906), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2174), 1, - sym__type_specifier, - STATE(2670), 1, - sym_template_type, - STATE(2767), 1, - sym_decltype_auto, - STATE(2869), 1, - sym_qualified_type_identifier, - STATE(5352), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6600), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2885), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [158964] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6108), 1, - sym_primitive_type, - ACTIONS(6710), 1, - sym_identifier, - STATE(3387), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6106), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3946), 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(3948), 14, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [159010] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(2445), 1, - sym_auto, - ACTIONS(2447), 1, - anon_sym_decltype, - ACTIONS(5586), 1, - sym_primitive_type, - ACTIONS(6489), 1, - sym_identifier, - ACTIONS(6491), 1, - anon_sym_COLON_COLON, - ACTIONS(6493), 1, - anon_sym_enum, - ACTIONS(6495), 1, - anon_sym_class, - ACTIONS(6497), 1, - anon_sym_struct, - ACTIONS(6499), 1, - anon_sym_union, - ACTIONS(6501), 1, - anon_sym_typename, - STATE(2341), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3096), 1, - sym_template_type, - STATE(3152), 1, - sym_decltype_auto, - STATE(3167), 1, - sym_qualified_type_identifier, - STATE(3318), 1, + STATE(3320), 1, sym__type_specifier, STATE(5401), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(2421), 4, + ACTIONS(2577), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3153), 8, + STATE(3194), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -357682,94 +359684,51 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [159084] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6210), 1, - anon_sym___attribute__, - ACTIONS(6453), 1, - anon_sym___declspec, - ACTIONS(6459), 1, - anon_sym_virtual, - ACTIONS(5502), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(5504), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6451), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4138), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [159138] = 21, + [159976] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5552), 1, - sym_identifier, - ACTIONS(5554), 1, - anon_sym_COLON_COLON, - ACTIONS(5558), 1, + ACTIONS(2865), 1, sym_primitive_type, - ACTIONS(5560), 1, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3837), 1, + anon_sym_COLON_COLON, + ACTIONS(5531), 1, anon_sym_enum, - ACTIONS(5562), 1, + ACTIONS(5533), 1, anon_sym_class, - ACTIONS(5564), 1, + ACTIONS(5535), 1, anon_sym_struct, - ACTIONS(5566), 1, + ACTIONS(5537), 1, anon_sym_union, - ACTIONS(5568), 1, - sym_auto, - ACTIONS(5570), 1, - anon_sym_decltype, - ACTIONS(5572), 1, + ACTIONS(5539), 1, anon_sym_typename, - STATE(4279), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4429), 1, - sym__type_specifier, - STATE(4436), 1, + STATE(3336), 1, sym_template_type, - STATE(4486), 1, - sym_decltype_auto, - STATE(4489), 1, + STATE(3354), 1, + sym__type_specifier, + STATE(3443), 1, sym_qualified_type_identifier, - STATE(5354), 1, + STATE(3479), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3481), 1, + sym_decltype_auto, + STATE(5385), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5556), 4, + ACTIONS(2863), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4488), 8, + STATE(3448), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -357778,269 +359737,18 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [159212] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(6676), 1, - anon_sym_STAR, - ACTIONS(6678), 1, - anon_sym_AMP_AMP, - ACTIONS(6680), 1, - anon_sym_AMP, - ACTIONS(6682), 1, - anon_sym_LBRACK, - ACTIONS(6686), 1, - sym_auto, - ACTIONS(6688), 1, - anon_sym_decltype, - STATE(4263), 1, - sym_parameter_list, - STATE(4498), 1, - sym_decltype_auto, - STATE(5334), 1, - sym__abstract_declarator, - STATE(4254), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6435), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [159276] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(6509), 1, - sym_identifier, - ACTIONS(6511), 1, - anon_sym_COLON_COLON, - ACTIONS(6515), 1, - sym_primitive_type, - ACTIONS(6517), 1, - anon_sym_enum, - ACTIONS(6519), 1, - anon_sym_class, - ACTIONS(6521), 1, - anon_sym_struct, - ACTIONS(6523), 1, - anon_sym_union, - ACTIONS(6525), 1, - sym_auto, - ACTIONS(6527), 1, - anon_sym_decltype, - ACTIONS(6529), 1, - anon_sym_typename, - STATE(1825), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1869), 1, - sym__type_specifier, - STATE(1949), 1, - sym_template_type, - STATE(1994), 1, - sym_decltype_auto, - STATE(2092), 1, - sym_qualified_type_identifier, - STATE(5371), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6513), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1997), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [159350] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(5458), 1, - sym_primitive_type, - ACTIONS(6475), 1, - sym_identifier, - ACTIONS(6477), 1, - anon_sym_COLON_COLON, - ACTIONS(6479), 1, - anon_sym_enum, - ACTIONS(6481), 1, - anon_sym_class, - ACTIONS(6483), 1, - anon_sym_struct, - ACTIONS(6485), 1, - anon_sym_union, - ACTIONS(6487), 1, - anon_sym_typename, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(3298), 1, - sym__type_specifier, - STATE(5445), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [159424] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1487), 1, - anon_sym_enum, - ACTIONS(1489), 1, - anon_sym_class, - ACTIONS(1491), 1, - anon_sym_struct, - ACTIONS(1493), 1, - anon_sym_union, - ACTIONS(1495), 1, - sym_auto, - ACTIONS(1497), 1, - anon_sym_decltype, - ACTIONS(1499), 1, - anon_sym_typename, - ACTIONS(5452), 1, - sym_identifier, - ACTIONS(5456), 1, - anon_sym_COLON_COLON, - ACTIONS(5458), 1, - sym_primitive_type, - STATE(1909), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2671), 1, - sym__type_specifier, - STATE(2686), 1, - sym_template_type, - STATE(2779), 1, - sym_qualified_type_identifier, - STATE(2880), 1, - sym_decltype_auto, - STATE(5389), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(1483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2877), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [159498] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6503), 1, - anon_sym_STAR, - ACTIONS(6505), 1, - anon_sym_AMP_AMP, - ACTIONS(6507), 1, - anon_sym_AMP, - STATE(4208), 1, - sym_parameter_list, - STATE(5202), 1, - sym__abstract_declarator, - STATE(4396), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6698), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - [159555] = 14, + [160050] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(4390), 1, + STATE(4383), 1, sym_ms_unaligned_ptr_modifier, STATE(5240), 1, sym__type_declarator, @@ -358049,10 +359757,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2903), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4189), 2, + STATE(4192), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4432), 2, + STATE(4433), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2901), 3, @@ -358074,126 +359782,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [159614] = 13, + [160109] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6503), 1, - anon_sym_STAR, - ACTIONS(6505), 1, + ACTIONS(6129), 1, anon_sym_AMP_AMP, - ACTIONS(6507), 1, + ACTIONS(6131), 1, anon_sym_AMP, - STATE(4208), 1, - sym_parameter_list, - STATE(5207), 1, - sym__abstract_declarator, - STATE(4396), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5348), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6219), 1, + anon_sym_DASH_GT, + ACTIONS(6221), 1, anon_sym_requires, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [159671] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(3829), 1, - anon_sym_STAR, - ACTIONS(3831), 1, - anon_sym_AMP_AMP, - ACTIONS(3833), 1, - anon_sym_AMP, - ACTIONS(5066), 1, - sym_auto, - ACTIONS(5068), 1, - anon_sym_decltype, - ACTIONS(6682), 1, + ACTIONS(6710), 1, anon_sym_LBRACK, - STATE(2852), 1, - sym_decltype_auto, - STATE(4350), 1, - sym_parameter_list, - STATE(5388), 1, - sym__abstract_declarator, - STATE(4341), 2, + STATE(5039), 1, + sym_trailing_return_type, + STATE(5057), 1, + sym_requires_clause, + STATE(4197), 5, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6435), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_requires, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [159734] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6503), 1, - anon_sym_STAR, - ACTIONS(6505), 1, - anon_sym_AMP_AMP, - ACTIONS(6507), 1, - anon_sym_AMP, - STATE(4208), 1, - sym_parameter_list, - STATE(5194), 1, - sym__abstract_declarator, - STATE(4396), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6212), 7, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6217), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -358203,34 +359821,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, ACTIONS(6708), 7, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - anon_sym_requires, - [159791] = 10, + [160168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5334), 8, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6723), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5332), 21, anon_sym_AMP, - ACTIONS(6726), 1, - anon_sym_LBRACK, - ACTIONS(6728), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, anon_sym_const, - ACTIONS(6734), 1, - anon_sym_noexcept, - ACTIONS(6737), 1, - anon_sym_throw, - STATE(4188), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6731), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -358238,30 +359858,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6718), 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_DASH_GT, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [159842] = 14, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + [160205] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(4390), 1, + STATE(4383), 1, sym_ms_unaligned_ptr_modifier, STATE(5297), 1, sym__type_declarator, @@ -358270,10 +359881,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2903), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4290), 2, + STATE(4201), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4442), 2, + STATE(4446), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2901), 3, @@ -358295,329 +359906,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [159901] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6742), 1, - anon_sym_LPAREN2, - ACTIONS(6744), 5, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6740), 23, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [159940] = 16, + [160264] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6455), 1, - sym_auto, - ACTIONS(6457), 1, - anon_sym_decltype, - ACTIONS(6746), 1, - anon_sym_STAR, - ACTIONS(6748), 1, + ACTIONS(6129), 1, anon_sym_AMP_AMP, - ACTIONS(6750), 1, + ACTIONS(6131), 1, anon_sym_AMP, - STATE(3455), 1, - sym_decltype_auto, - STATE(4339), 1, - sym_parameter_list, - STATE(5439), 1, - sym__abstract_declarator, - STATE(4315), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6473), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_requires, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [160003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6754), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6752), 23, - anon_sym_AMP, - 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_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [160040] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, + ACTIONS(6141), 1, anon_sym_noexcept, - ACTIONS(6138), 1, + ACTIONS(6143), 1, anon_sym_throw, - ACTIONS(6214), 1, + ACTIONS(6471), 1, + anon_sym_LBRACK, + ACTIONS(6541), 1, anon_sym_DASH_GT, - ACTIONS(6216), 1, + ACTIONS(6543), 1, anon_sym_requires, - ACTIONS(6692), 1, - anon_sym_LBRACK, - STATE(5059), 1, - sym_requires_clause, - STATE(5062), 1, - sym_trailing_return_type, - STATE(4206), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6690), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [160099] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6756), 1, - anon_sym_AMP_AMP, - ACTIONS(6759), 1, - anon_sym_AMP, - ACTIONS(6762), 1, - anon_sym_const, - ACTIONS(6768), 1, - anon_sym_noexcept, - ACTIONS(6771), 1, - anon_sym_throw, - STATE(4194), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6765), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6718), 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_DASH_GT, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [160148] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6778), 1, - anon_sym___attribute__, - STATE(4195), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(6776), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6774), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - 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, - [160189] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6455), 1, - sym_auto, - ACTIONS(6457), 1, - anon_sym_decltype, - ACTIONS(6781), 1, - anon_sym_STAR, - ACTIONS(6783), 1, - anon_sym_AMP_AMP, - ACTIONS(6785), 1, - anon_sym_AMP, - STATE(3455), 1, - sym_decltype_auto, - STATE(4328), 1, - sym_parameter_list, - STATE(5346), 1, - sym__abstract_declarator, - STATE(4314), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6435), 4, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - anon_sym_requires, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [160252] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6467), 1, - anon_sym_LBRACK, - ACTIONS(6592), 1, - anon_sym_requires, - ACTIONS(6594), 1, - anon_sym_DASH_GT, STATE(5135), 1, sym_requires_clause, STATE(5234), 1, sym_trailing_return_type, - ACTIONS(3980), 2, + ACTIONS(3983), 2, anon_sym_final, anon_sym_override, - ACTIONS(6465), 4, + ACTIONS(6469), 4, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(4086), 6, + STATE(4114), 6, sym_type_qualifier, sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_function_declarator_repeat2, - ACTIONS(6212), 7, + ACTIONS(6217), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -358625,35 +359952,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [160313] = 16, + [160325] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(3831), 1, + anon_sym_STAR, + ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, + anon_sym_AMP, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(6690), 1, + anon_sym_LBRACK, + STATE(2854), 1, + sym_decltype_auto, + STATE(4350), 1, + sym_parameter_list, + STATE(5388), 1, + sym__abstract_declarator, + STATE(4341), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6441), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160388] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6455), 1, + ACTIONS(6427), 1, sym_auto, - ACTIONS(6457), 1, + ACTIONS(6429), 1, anon_sym_decltype, - ACTIONS(6781), 1, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6728), 1, anon_sym_STAR, - ACTIONS(6783), 1, + ACTIONS(6730), 1, anon_sym_AMP_AMP, - ACTIONS(6785), 1, + ACTIONS(6732), 1, anon_sym_AMP, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, - STATE(4328), 1, + STATE(4343), 1, sym_parameter_list, - STATE(5438), 1, + STATE(5346), 1, sym__abstract_declarator, - STATE(4322), 2, + STATE(4319), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(6473), 4, + ACTIONS(6441), 4, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, @@ -358664,7 +360038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6212), 7, + ACTIONS(6217), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -358672,36 +360046,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [160376] = 14, + [160451] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6722), 1, + sym_identifier, + ACTIONS(6724), 1, + anon_sym_LPAREN2, + ACTIONS(6726), 1, + anon_sym_STAR, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5297), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4446), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160510] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(6124), 1, + ACTIONS(6129), 1, anon_sym_AMP_AMP, - ACTIONS(6126), 1, + ACTIONS(6131), 1, anon_sym_AMP, - ACTIONS(6136), 1, + ACTIONS(6141), 1, anon_sym_noexcept, - ACTIONS(6138), 1, + ACTIONS(6143), 1, anon_sym_throw, - ACTIONS(6214), 1, + ACTIONS(6219), 1, anon_sym_DASH_GT, - ACTIONS(6216), 1, + ACTIONS(6221), 1, anon_sym_requires, - ACTIONS(6706), 1, + ACTIONS(6716), 1, anon_sym_LBRACK, STATE(5042), 1, sym_requires_clause, STATE(5085), 1, sym_trailing_return_type, - STATE(4188), 5, + STATE(4197), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6212), 7, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6714), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [160569] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6219), 1, + anon_sym_DASH_GT, + ACTIONS(6221), 1, + anon_sym_requires, + ACTIONS(6706), 1, + anon_sym_LBRACK, + STATE(5059), 1, + sym_requires_clause, + STATE(5062), 1, + sym_trailing_return_type, + STATE(4186), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6217), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -358717,176 +360181,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [160435] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6130), 1, - anon_sym_LBRACK, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6592), 1, - anon_sym_requires, - ACTIONS(6594), 1, - anon_sym_DASH_GT, - STATE(5114), 1, - sym_requires_clause, - STATE(5217), 1, - sym_trailing_return_type, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6122), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - STATE(4086), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [160496] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6467), 1, - anon_sym_LBRACK, - ACTIONS(6590), 1, - anon_sym_DASH_GT, - ACTIONS(6592), 1, - anon_sym_requires, - STATE(5135), 1, - sym_requires_clause, - STATE(5234), 1, - sym_trailing_return_type, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6465), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - STATE(4086), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [160557] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6130), 1, - anon_sym_LBRACK, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6590), 1, - anon_sym_DASH_GT, - ACTIONS(6592), 1, - anon_sym_requires, - STATE(5114), 1, - sym_requires_clause, - STATE(5217), 1, - sym_trailing_return_type, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6122), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - STATE(4086), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [160618] = 16, + [160628] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(2905), 1, anon_sym_const, - ACTIONS(3827), 1, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(5332), 1, - sym_auto, - ACTIONS(5334), 1, - anon_sym_decltype, - ACTIONS(6682), 1, - anon_sym_LBRACK, - ACTIONS(6787), 1, + ACTIONS(3831), 1, anon_sym_STAR, - ACTIONS(6789), 1, + ACTIONS(3833), 1, anon_sym_AMP_AMP, - ACTIONS(6791), 1, + ACTIONS(3835), 1, anon_sym_AMP, - STATE(3173), 1, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(6690), 1, + anon_sym_LBRACK, + STATE(2854), 1, sym_decltype_auto, - STATE(4345), 1, + STATE(4350), 1, sym_parameter_list, - STATE(5343), 1, + STATE(5358), 1, sym__abstract_declarator, - STATE(4320), 2, + STATE(4315), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(6435), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(6477), 4, anon_sym_COMMA, - anon_sym_GT2, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_requires, STATE(5097), 5, sym_abstract_parenthesized_declarator, @@ -358894,7 +360220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6684), 7, + ACTIONS(6692), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -358902,18 +360228,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [160681] = 14, + [160691] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5518), 8, + 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(5516), 21, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + [160728] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6736), 1, + anon_sym_AMP_AMP, + ACTIONS(6739), 1, + anon_sym_AMP, + ACTIONS(6742), 1, + anon_sym_LBRACK, + ACTIONS(6744), 1, + anon_sym_const, + ACTIONS(6750), 1, + anon_sym_noexcept, + ACTIONS(6753), 1, + anon_sym_throw, + STATE(4197), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6747), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6734), 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_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [160779] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6427), 1, + sym_auto, + ACTIONS(6429), 1, + anon_sym_decltype, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6728), 1, + anon_sym_STAR, + ACTIONS(6730), 1, + anon_sym_AMP_AMP, + ACTIONS(6732), 1, + anon_sym_AMP, + STATE(3451), 1, + sym_decltype_auto, + STATE(4343), 1, + sym_parameter_list, + STATE(5438), 1, + sym__abstract_declarator, + STATE(4337), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6477), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160842] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6541), 1, + anon_sym_DASH_GT, + ACTIONS(6543), 1, + anon_sym_requires, + STATE(5114), 1, + sym_requires_clause, + STATE(5217), 1, + sym_trailing_return_type, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6127), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4114), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160903] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6427), 1, + sym_auto, + ACTIONS(6429), 1, + anon_sym_decltype, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6756), 1, + anon_sym_STAR, + ACTIONS(6758), 1, + anon_sym_AMP_AMP, + ACTIONS(6760), 1, + anon_sym_AMP, + STATE(3451), 1, + sym_decltype_auto, + STATE(4353), 1, + sym_parameter_list, + STATE(5427), 1, + sym__abstract_declarator, + STATE(4313), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6441), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160966] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(4390), 1, + STATE(4383), 1, sym_ms_unaligned_ptr_modifier, STATE(5293), 1, sym__type_declarator, @@ -358922,10 +360463,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2903), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4290), 2, + STATE(4271), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4441), 2, + STATE(4444), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2901), 3, @@ -358947,35 +360488,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [160740] = 16, + [161025] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6495), 1, + anon_sym_STAR, + ACTIONS(6497), 1, + anon_sym_AMP_AMP, + ACTIONS(6499), 1, + anon_sym_AMP, + STATE(4210), 1, + sym_parameter_list, + STATE(5202), 1, + sym__abstract_declarator, + STATE(4382), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6698), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [161082] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6543), 1, + anon_sym_requires, + ACTIONS(6615), 1, + anon_sym_DASH_GT, + STATE(5114), 1, + sym_requires_clause, + STATE(5217), 1, + sym_trailing_return_type, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6127), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4114), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161143] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6766), 1, + anon_sym___attribute__, + STATE(4204), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6764), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6762), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + 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, + [161184] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(2905), 1, anon_sym_const, - ACTIONS(3827), 1, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(5332), 1, + ACTIONS(5328), 1, sym_auto, - ACTIONS(5334), 1, + ACTIONS(5330), 1, anon_sym_decltype, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, - ACTIONS(6787), 1, + ACTIONS(6769), 1, anon_sym_STAR, - ACTIONS(6789), 1, + ACTIONS(6771), 1, anon_sym_AMP_AMP, - ACTIONS(6791), 1, + ACTIONS(6773), 1, anon_sym_AMP, - STATE(3173), 1, + STATE(3161), 1, sym_decltype_auto, STATE(4345), 1, sym_parameter_list, STATE(5418), 1, sym__abstract_declarator, - STATE(4327), 2, + STATE(4339), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(6473), 4, + ACTIONS(6477), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, @@ -358986,7 +360653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6684), 7, + ACTIONS(6692), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -358994,71 +360661,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [160803] = 14, + [161247] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6214), 1, - anon_sym_DASH_GT, - ACTIONS(6216), 1, - anon_sym_requires, - ACTIONS(6702), 1, - anon_sym_LBRACK, - STATE(5039), 1, - sym_trailing_return_type, - STATE(5057), 1, - sym_requires_clause, - STATE(4188), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6700), 7, - anon_sym_COMMA, + ACTIONS(6443), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [160862] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, + ACTIONS(6451), 1, anon_sym_LBRACK, - ACTIONS(6503), 1, + ACTIONS(6495), 1, anon_sym_STAR, - ACTIONS(6505), 1, + ACTIONS(6497), 1, anon_sym_AMP_AMP, - ACTIONS(6507), 1, + ACTIONS(6499), 1, anon_sym_AMP, - STATE(4208), 1, + STATE(4210), 1, sym_parameter_list, - STATE(5187), 1, + STATE(5207), 1, sym__abstract_declarator, - STATE(4185), 2, + STATE(4382), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(5038), 5, @@ -359067,7 +360689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(4700), 7, + ACTIONS(5352), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -359075,7 +360697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - ACTIONS(6212), 7, + ACTIONS(6217), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -359083,36 +360705,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [160919] = 14, + [161304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5514), 8, + 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(5512), 21, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_input, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + [161341] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(6124), 1, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6495), 1, + anon_sym_STAR, + ACTIONS(6497), 1, anon_sym_AMP_AMP, - ACTIONS(6126), 1, + ACTIONS(6499), 1, anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6214), 1, - anon_sym_DASH_GT, - ACTIONS(6216), 1, + STATE(4210), 1, + sym_parameter_list, + STATE(5187), 1, + sym__abstract_declarator, + STATE(4206), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(4742), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, anon_sym_requires, - ACTIONS(6696), 1, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161398] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6471), 1, + anon_sym_LBRACK, + ACTIONS(6543), 1, + anon_sym_requires, + ACTIONS(6615), 1, + anon_sym_DASH_GT, + STATE(5135), 1, + sym_requires_clause, + STATE(5234), 1, + sym_trailing_return_type, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6469), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4114), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161459] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6219), 1, + anon_sym_DASH_GT, + ACTIONS(6221), 1, + anon_sym_requires, + ACTIONS(6720), 1, anon_sym_LBRACK, STATE(5037), 1, sym_trailing_return_type, STATE(5074), 1, sym_requires_clause, - STATE(4199), 5, + STATE(4193), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6212), 7, + ACTIONS(6217), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -359120,7 +360866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6694), 7, + ACTIONS(6718), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -359128,35 +360874,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [160978] = 16, + [161518] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(6437), 1, + ACTIONS(6443), 1, anon_sym_LPAREN2, - ACTIONS(6445), 1, + ACTIONS(6451), 1, anon_sym_LBRACK, - ACTIONS(6455), 1, - sym_auto, - ACTIONS(6457), 1, - anon_sym_decltype, - ACTIONS(6746), 1, + ACTIONS(6495), 1, anon_sym_STAR, - ACTIONS(6748), 1, + ACTIONS(6497), 1, anon_sym_AMP_AMP, - ACTIONS(6750), 1, + ACTIONS(6499), 1, anon_sym_AMP, - STATE(3455), 1, - sym_decltype_auto, - STATE(4339), 1, + STATE(4210), 1, sym_parameter_list, - STATE(5427), 1, + STATE(5194), 1, sym__abstract_declarator, - STATE(4347), 2, + STATE(4382), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(6435), 4, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6712), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [161575] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6775), 1, + anon_sym_AMP_AMP, + ACTIONS(6778), 1, + anon_sym_AMP, + ACTIONS(6781), 1, + anon_sym_const, + ACTIONS(6787), 1, + anon_sym_noexcept, + ACTIONS(6790), 1, + anon_sym_throw, + STATE(4212), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6784), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6734), 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_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [161624] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6427), 1, + sym_auto, + ACTIONS(6429), 1, + anon_sym_decltype, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6756), 1, + anon_sym_STAR, + ACTIONS(6758), 1, + anon_sym_AMP_AMP, + ACTIONS(6760), 1, + anon_sym_AMP, + STATE(3451), 1, + sym_decltype_auto, + STATE(4353), 1, + sym_parameter_list, + STATE(5439), 1, + sym__abstract_declarator, + STATE(4324), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6477), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -359167,7 +360997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6212), 7, + ACTIONS(6217), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -359175,83 +361005,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [161041] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6712), 1, - sym_identifier, - ACTIONS(6714), 1, - anon_sym_LPAREN2, - ACTIONS(6716), 1, - anon_sym_STAR, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5297), 1, - sym__type_declarator, - STATE(7102), 1, - sym_ms_based_modifier, - ACTIONS(2903), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4204), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4442), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2901), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(5471), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [161100] = 16, + [161687] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(2905), 1, anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, - ACTIONS(3831), 1, - anon_sym_AMP_AMP, - ACTIONS(3833), 1, - anon_sym_AMP, - ACTIONS(5066), 1, + anon_sym_LPAREN2, + ACTIONS(5328), 1, sym_auto, - ACTIONS(5068), 1, + ACTIONS(5330), 1, anon_sym_decltype, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, - STATE(2852), 1, + ACTIONS(6769), 1, + anon_sym_STAR, + ACTIONS(6771), 1, + anon_sym_AMP_AMP, + ACTIONS(6773), 1, + anon_sym_AMP, + STATE(3161), 1, sym_decltype_auto, - STATE(4350), 1, + STATE(4345), 1, sym_parameter_list, - STATE(5358), 1, + STATE(5343), 1, sym__abstract_declarator, - STATE(4330), 2, + STATE(4320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(6473), 4, + ACTIONS(6441), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_GT2, anon_sym_requires, STATE(5097), 5, sym_abstract_parenthesized_declarator, @@ -359259,7 +361044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6684), 7, + ACTIONS(6692), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -359267,7 +361052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [161163] = 18, + [161750] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -359280,17 +361065,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4698), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(4708), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - ACTIONS(5403), 1, + ACTIONS(5400), 1, anon_sym_STAR, - ACTIONS(5405), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(5407), 1, + ACTIONS(5404), 1, anon_sym_AMP, STATE(4788), 1, sym__declarator, @@ -359315,51 +361100,55 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [161229] = 14, + [161816] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6216), 1, - anon_sym_requires, - ACTIONS(6421), 1, - anon_sym_DASH_GT, - ACTIONS(6692), 1, - anon_sym_LBRACK, - STATE(5059), 1, - sym_requires_clause, - STATE(5062), 1, - sym_trailing_return_type, - STATE(4243), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6690), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [161287] = 3, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(4974), 1, + sym__declarator, + STATE(6061), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [161882] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6795), 3, @@ -359392,1618 +361181,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [161323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6799), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6797), 25, - 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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - 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, - [161359] = 13, + [161918] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6652), 1, - anon_sym_STAR, - ACTIONS(6654), 1, + ACTIONS(6129), 1, anon_sym_AMP_AMP, - ACTIONS(6656), 1, + ACTIONS(6131), 1, anon_sym_AMP, - STATE(4217), 1, - sym_parameter_list, - STATE(5220), 1, - sym__abstract_declarator, - STATE(4219), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(4700), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [161415] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, + ACTIONS(6141), 1, anon_sym_noexcept, - ACTIONS(6138), 1, + ACTIONS(6143), 1, anon_sym_throw, - ACTIONS(6216), 1, - anon_sym_requires, - ACTIONS(6421), 1, - anon_sym_DASH_GT, - ACTIONS(6696), 1, - anon_sym_LBRACK, - STATE(5037), 1, - sym_trailing_return_type, - STATE(5074), 1, - sym_requires_clause, - STATE(4251), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6694), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [161473] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6652), 1, - anon_sym_STAR, - ACTIONS(6654), 1, - anon_sym_AMP_AMP, - ACTIONS(6656), 1, - anon_sym_AMP, - STATE(4217), 1, - sym_parameter_list, - STATE(5237), 1, - sym__abstract_declarator, - STATE(4396), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6698), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [161529] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6652), 1, - anon_sym_STAR, - ACTIONS(6654), 1, - anon_sym_AMP_AMP, - ACTIONS(6656), 1, - anon_sym_AMP, - STATE(4217), 1, - sym_parameter_list, - STATE(5231), 1, - sym__abstract_declarator, - STATE(4396), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5348), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [161585] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6652), 1, - anon_sym_STAR, - ACTIONS(6654), 1, - anon_sym_AMP_AMP, - ACTIONS(6656), 1, - anon_sym_AMP, - STATE(4217), 1, - sym_parameter_list, - STATE(5228), 1, - sym__abstract_declarator, - STATE(4396), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6708), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [161641] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5508), 8, - 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(5506), 20, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_operator, - [161677] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6447), 1, - sym_auto, - ACTIONS(6449), 1, - anon_sym_decltype, - ACTIONS(6801), 1, - anon_sym_STAR, - ACTIONS(6803), 1, - anon_sym_AMP_AMP, - ACTIONS(6805), 1, - anon_sym_AMP, - STATE(3999), 1, - sym_decltype_auto, - STATE(4373), 1, - sym_parameter_list, - STATE(5460), 1, - sym__abstract_declarator, - STATE(4374), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6473), 3, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_requires, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [161739] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4973), 1, - sym__scope_resolution, - STATE(4986), 1, - sym__declarator, - STATE(6049), 1, - sym_init_declarator, - STATE(7048), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [161805] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6720), 1, - anon_sym_AMP_AMP, - ACTIONS(6723), 1, - anon_sym_AMP, - ACTIONS(6726), 1, - anon_sym_LBRACK, - ACTIONS(6734), 1, - anon_sym_noexcept, - ACTIONS(6737), 1, - anon_sym_throw, - ACTIONS(6807), 1, - anon_sym_const, - STATE(4224), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6810), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6718), 10, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_try, - anon_sym_requires, - [161855] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6471), 1, - anon_sym_LBRACK, - ACTIONS(6592), 1, - anon_sym_requires, - ACTIONS(6594), 1, - anon_sym_DASH_GT, - STATE(5204), 1, - sym_requires_clause, - STATE(5478), 1, - sym_trailing_return_type, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6469), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(4229), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [161915] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6447), 1, - sym_auto, - ACTIONS(6449), 1, - anon_sym_decltype, - ACTIONS(6801), 1, - anon_sym_STAR, - ACTIONS(6803), 1, - anon_sym_AMP_AMP, - ACTIONS(6805), 1, - anon_sym_AMP, - STATE(3999), 1, - sym_decltype_auto, - STATE(4373), 1, - sym_parameter_list, - STATE(5466), 1, - sym__abstract_declarator, - STATE(4379), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6435), 3, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_requires, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [161977] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4973), 1, - sym__scope_resolution, - STATE(4975), 1, - sym__declarator, - STATE(6017), 1, - sym_init_declarator, - STATE(7048), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [162043] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4973), 1, - sym__scope_resolution, - STATE(5016), 1, - sym__declarator, - STATE(6456), 1, - sym_init_declarator, - STATE(7048), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [162109] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6463), 1, - anon_sym_LBRACK, - ACTIONS(6592), 1, - anon_sym_requires, - ACTIONS(6594), 1, - anon_sym_DASH_GT, - STATE(5178), 1, - sym_requires_clause, - STATE(5479), 1, - sym_trailing_return_type, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6461), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(4086), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [162169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5512), 8, - 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(5510), 20, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_operator, - [162205] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5397), 1, - anon_sym_STAR, - ACTIONS(5399), 1, - anon_sym_AMP_AMP, - ACTIONS(5401), 1, - anon_sym_AMP, - STATE(4943), 1, - sym__declarator, - STATE(4973), 1, - sym__scope_resolution, - STATE(5876), 1, - sym_init_declarator, - STATE(6665), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [162271] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5397), 1, - anon_sym_STAR, - ACTIONS(5399), 1, - anon_sym_AMP_AMP, - ACTIONS(5401), 1, - anon_sym_AMP, - STATE(4900), 1, - sym__declarator, - STATE(4973), 1, - sym__scope_resolution, - STATE(5876), 1, - sym_init_declarator, - STATE(6665), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [162337] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5397), 1, - anon_sym_STAR, - ACTIONS(5399), 1, - anon_sym_AMP_AMP, - ACTIONS(5401), 1, - anon_sym_AMP, - STATE(4934), 1, - sym__declarator, - STATE(4973), 1, - sym__scope_resolution, - STATE(5876), 1, - sym_init_declarator, - STATE(6665), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [162403] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6813), 1, - anon_sym___attribute__, - STATE(4234), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(6776), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6774), 22, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [162443] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4973), 1, - sym__scope_resolution, - STATE(4974), 1, - sym__declarator, - STATE(6061), 1, - sym_init_declarator, - STATE(7048), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [162509] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4973), 1, - sym__scope_resolution, - STATE(4979), 1, - sym__declarator, - STATE(5876), 1, - sym_init_declarator, - STATE(7048), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [162575] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4761), 1, - sym__declarator, - STATE(4973), 1, - sym__scope_resolution, - STATE(6049), 1, - sym_init_declarator, - STATE(7048), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [162641] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5397), 1, - anon_sym_STAR, - ACTIONS(5399), 1, - anon_sym_AMP_AMP, - ACTIONS(5401), 1, - anon_sym_AMP, - STATE(4917), 1, - sym__declarator, - STATE(4973), 1, - sym__scope_resolution, - STATE(5876), 1, - sym_init_declarator, - STATE(6665), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [162707] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5397), 1, - anon_sym_STAR, - ACTIONS(5399), 1, - anon_sym_AMP_AMP, - ACTIONS(5401), 1, - anon_sym_AMP, - STATE(4898), 1, - sym__declarator, - STATE(4973), 1, - sym__scope_resolution, - STATE(5876), 1, - sym_init_declarator, - STATE(6665), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [162773] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6467), 1, - anon_sym_LBRACK, - ACTIONS(6646), 1, - anon_sym_DASH_GT, - ACTIONS(6648), 1, - anon_sym_requires, - STATE(5135), 1, - sym_requires_clause, - STATE(5458), 1, - sym_trailing_return_type, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6465), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - STATE(4111), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [162833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5340), 8, - 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(5338), 20, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_operator, - [162869] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4971), 1, - sym__declarator, - STATE(4973), 1, - sym__scope_resolution, - STATE(5876), 1, - sym_init_declarator, - STATE(7048), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [162935] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6216), 1, - anon_sym_requires, - ACTIONS(6421), 1, - anon_sym_DASH_GT, - ACTIONS(6702), 1, - anon_sym_LBRACK, - STATE(5039), 1, - sym_trailing_return_type, - STATE(5057), 1, - sym_requires_clause, - STATE(4188), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6700), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [162993] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6130), 1, - anon_sym_LBRACK, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6646), 1, - anon_sym_DASH_GT, - ACTIONS(6648), 1, - anon_sym_requires, - STATE(5114), 1, - sym_requires_clause, - STATE(5455), 1, - sym_trailing_return_type, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6122), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - STATE(4111), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [163053] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5397), 1, - anon_sym_STAR, - ACTIONS(5399), 1, - anon_sym_AMP_AMP, - ACTIONS(5401), 1, - anon_sym_AMP, - STATE(4944), 1, - sym__declarator, - STATE(4973), 1, - sym__scope_resolution, - STATE(5876), 1, - sym_init_declarator, - STATE(6665), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [163119] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4960), 1, - sym__declarator, - STATE(4973), 1, - sym__scope_resolution, - STATE(6080), 1, - sym_init_declarator, - STATE(7048), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [163185] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4789), 1, - sym__declarator, - STATE(4973), 1, - sym__scope_resolution, - STATE(5839), 1, - sym_init_declarator, - STATE(7048), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [163251] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4760), 1, - sym__declarator, - STATE(4973), 1, - sym__scope_resolution, - STATE(6080), 1, - sym_init_declarator, - STATE(7048), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [163317] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4758), 1, - sym__declarator, - STATE(4973), 1, - sym__scope_resolution, - STATE(6061), 1, - sym_init_declarator, - STATE(7048), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [163383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6818), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6816), 25, - 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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - 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, - [163419] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6216), 1, + ACTIONS(6221), 1, anon_sym_requires, ACTIONS(6421), 1, anon_sym_DASH_GT, ACTIONS(6706), 1, anon_sym_LBRACK, - STATE(5042), 1, + STATE(5059), 1, sym_requires_clause, - STATE(5085), 1, + STATE(5062), 1, sym_trailing_return_type, - STATE(4188), 5, + STATE(4219), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, @@ -361016,7 +361217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6212), 7, + ACTIONS(6217), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -361024,7 +361225,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [163477] = 18, + [161976] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6221), 1, + anon_sym_requires, + ACTIONS(6421), 1, + anon_sym_DASH_GT, + ACTIONS(6710), 1, + anon_sym_LBRACK, + STATE(5039), 1, + sym_trailing_return_type, + STATE(5057), 1, + sym_requires_clause, + STATE(4197), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6708), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [162034] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -361037,17 +361282,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4698), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(4708), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - ACTIONS(5403), 1, + ACTIONS(5400), 1, anon_sym_STAR, - ACTIONS(5405), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(5407), 1, + ACTIONS(5404), 1, anon_sym_AMP, STATE(4784), 1, sym__declarator, @@ -361072,7 +361317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [163543] = 18, + [162100] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -361085,17 +361330,459 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4698), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(4708), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - ACTIONS(5403), 1, + ACTIONS(5400), 1, anon_sym_STAR, - ACTIONS(5405), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(5407), 1, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4960), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(6080), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162166] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6453), 1, + sym_auto, + ACTIONS(6455), 1, + anon_sym_decltype, + ACTIONS(6797), 1, + anon_sym_STAR, + ACTIONS(6799), 1, + anon_sym_AMP_AMP, + ACTIONS(6801), 1, + anon_sym_AMP, + STATE(4017), 1, + sym_decltype_auto, + STATE(4378), 1, + sym_parameter_list, + STATE(5460), 1, + sym__abstract_declarator, + STATE(4377), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6477), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [162228] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6648), 1, + anon_sym_DASH_GT, + ACTIONS(6650), 1, + anon_sym_requires, + STATE(5114), 1, + sym_requires_clause, + STATE(5455), 1, + sym_trailing_return_type, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6127), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4127), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [162288] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4758), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(6061), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6805), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6803), 25, + 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_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + 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, + [162390] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4789), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5839), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162456] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6221), 1, + anon_sym_requires, + ACTIONS(6421), 1, + anon_sym_DASH_GT, + ACTIONS(6716), 1, + anon_sym_LBRACK, + STATE(5042), 1, + sym_requires_clause, + STATE(5085), 1, + sym_trailing_return_type, + STATE(4197), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6714), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [162514] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6642), 1, + anon_sym_STAR, + ACTIONS(6644), 1, + anon_sym_AMP_AMP, + ACTIONS(6646), 1, + anon_sym_AMP, + STATE(4229), 1, + sym_parameter_list, + STATE(5220), 1, + sym__abstract_declarator, + STATE(4234), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(4742), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [162570] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6221), 1, + anon_sym_requires, + ACTIONS(6421), 1, + anon_sym_DASH_GT, + ACTIONS(6720), 1, + anon_sym_LBRACK, + STATE(5037), 1, + sym_trailing_return_type, + STATE(5074), 1, + sym_requires_clause, + STATE(4227), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6718), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [162628] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6642), 1, + anon_sym_STAR, + ACTIONS(6644), 1, + anon_sym_AMP_AMP, + ACTIONS(6646), 1, + anon_sym_AMP, + STATE(4229), 1, + sym_parameter_list, + STATE(5237), 1, + sym__abstract_declarator, + STATE(4382), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6698), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [162684] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, anon_sym_AMP, STATE(4770), 1, sym__declarator, @@ -361120,41 +361807,123 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [163609] = 13, + [162750] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, anon_sym_LPAREN2, - ACTIONS(6676), 1, - anon_sym_STAR, - ACTIONS(6678), 1, - anon_sym_AMP_AMP, - ACTIONS(6680), 1, - anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, anon_sym_LBRACK, - STATE(4263), 1, - sym_parameter_list, - STATE(5329), 1, - sym__abstract_declarator, - STATE(4386), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6708), 5, + ACTIONS(5388), 1, + anon_sym_STAR, + ACTIONS(5390), 1, + anon_sym_AMP_AMP, + ACTIONS(5392), 1, + anon_sym_AMP, + STATE(4943), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5876), 1, + sym_init_declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6809), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6807), 25, + 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_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + 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, - STATE(5097), 5, + [162852] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6642), 1, + anon_sym_STAR, + ACTIONS(6644), 1, + anon_sym_AMP_AMP, + ACTIONS(6646), 1, + anon_sym_AMP, + STATE(4229), 1, + sym_parameter_list, + STATE(5231), 1, + sym__abstract_declarator, + STATE(4382), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6684), 7, + ACTIONS(5352), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6217), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -361162,7 +361931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [163664] = 17, + [162908] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -361175,23 +361944,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4207), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(4978), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - ACTIONS(5385), 1, + ACTIONS(5400), 1, anon_sym_STAR, - ACTIONS(5387), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(5389), 1, + ACTIONS(5404), 1, anon_sym_AMP, - STATE(4992), 1, - sym__scope_resolution, - STATE(5342), 1, + STATE(4971), 1, sym__declarator, - STATE(6734), 1, + STATE(4973), 1, + sym__scope_resolution, + STATE(5876), 1, + sym_init_declarator, + STATE(7048), 1, sym_ms_based_modifier, STATE(6970), 2, sym_template_type, @@ -361208,120 +361979,320 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [163727] = 17, + [162974] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5385), 1, - anon_sym_STAR, - ACTIONS(5387), 1, - anon_sym_AMP_AMP, - ACTIONS(5389), 1, - anon_sym_AMP, - STATE(4992), 1, - sym__scope_resolution, - STATE(5421), 1, - sym__declarator, - STATE(6734), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [163790] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(6820), 1, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6642), 1, + anon_sym_STAR, + ACTIONS(6644), 1, anon_sym_AMP_AMP, - ACTIONS(6822), 1, + ACTIONS(6646), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_DASH_GT, - ACTIONS(6826), 1, - anon_sym_noexcept, - ACTIONS(6828), 1, - anon_sym_throw, - ACTIONS(6830), 1, + STATE(4229), 1, + sym_parameter_list, + STATE(5228), 1, + sym__abstract_declarator, + STATE(4382), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6712), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, anon_sym_requires, - STATE(5138), 1, - sym_requires_clause, - STATE(5315), 1, - sym_trailing_return_type, - STATE(4194), 5, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [163030] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(4986), 1, + sym__declarator, + STATE(6049), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163096] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5388), 1, + anon_sym_STAR, + ACTIONS(5390), 1, + anon_sym_AMP_AMP, + ACTIONS(5392), 1, + anon_sym_AMP, + STATE(4898), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5876), 1, + sym_init_declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163162] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(4979), 1, + sym__declarator, + STATE(5876), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163228] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4761), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(6049), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163294] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6736), 1, + anon_sym_AMP_AMP, + ACTIONS(6739), 1, + anon_sym_AMP, + ACTIONS(6742), 1, + anon_sym_LBRACK, + ACTIONS(6750), 1, + anon_sym_noexcept, + ACTIONS(6753), 1, + anon_sym_throw, + ACTIONS(6811), 1, + anon_sym_const, + STATE(4241), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6704), 6, + ACTIONS(6814), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6734), 10, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, anon_sym_try, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [163845] = 13, + anon_sym_requires, + [163344] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(6200), 1, - sym_identifier, - ACTIONS(6202), 1, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6443), 1, anon_sym_LPAREN2, - ACTIONS(6204), 1, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6453), 1, + sym_auto, + ACTIONS(6455), 1, + anon_sym_decltype, + ACTIONS(6797), 1, anon_sym_STAR, - ACTIONS(6206), 1, + ACTIONS(6799), 1, anon_sym_AMP_AMP, - ACTIONS(6208), 1, + ACTIONS(6801), 1, anon_sym_AMP, - STATE(5029), 1, - sym__field_declarator, - STATE(7093), 1, - sym_ms_based_modifier, - STATE(4393), 2, + STATE(4017), 1, + sym_decltype_auto, + STATE(4378), 1, + sym_parameter_list, + STATE(5466), 1, + sym__abstract_declarator, + STATE(4371), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2905), 8, - anon_sym_const, + ACTIONS(6441), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6137), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -361329,16 +362300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(5173), 8, - 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, - sym_operator_name, - [163900] = 17, + [163406] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -361351,23 +362313,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(5373), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(5375), 1, - anon_sym_STAR, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_AMP, - ACTIONS(5381), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - STATE(4962), 1, - sym__scope_resolution, - STATE(5305), 1, + ACTIONS(5388), 1, + anon_sym_STAR, + ACTIONS(5390), 1, + anon_sym_AMP_AMP, + ACTIONS(5392), 1, + anon_sym_AMP, + STATE(4944), 1, sym__declarator, - STATE(6725), 1, + STATE(4973), 1, + sym__scope_resolution, + STATE(5876), 1, + sym_init_declarator, + STATE(6665), 1, sym_ms_based_modifier, STATE(6970), 2, sym_template_type, @@ -361384,28 +362348,44 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [163963] = 6, + [163472] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, - anon_sym_LT, - STATE(4355), 1, - sym_template_argument_list, - ACTIONS(4041), 3, - anon_sym_AMP, + ACTIONS(57), 1, anon_sym_const, - anon_sym_COLON, - ACTIONS(3534), 21, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(6129), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6463), 1, anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(6541), 1, + anon_sym_DASH_GT, + ACTIONS(6543), 1, + anon_sym_requires, + STATE(5204), 1, + sym_requires_clause, + STATE(5478), 1, + sym_trailing_return_type, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6461), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(4246), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6217), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -361413,124 +362393,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [164004] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, - anon_sym_LT, - STATE(4355), 1, - sym_template_argument_list, - ACTIONS(3679), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3684), 21, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [164045] = 13, + [163532] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(6202), 1, + ACTIONS(1599), 1, anon_sym_LPAREN2, - ACTIONS(6220), 1, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(6222), 1, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, anon_sym_STAR, - ACTIONS(6224), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(6226), 1, + ACTIONS(5404), 1, anon_sym_AMP, - STATE(5441), 1, - sym__field_declarator, - STATE(6912), 1, + STATE(4973), 1, + sym__scope_resolution, + STATE(4975), 1, + sym__declarator, + STATE(6017), 1, + sym_init_declarator, + STATE(7048), 1, sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5173), 8, - 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, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, sym_operator_name, - [164100] = 13, + [163598] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 1, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(6820), 1, + ACTIONS(6129), 1, anon_sym_AMP_AMP, - ACTIONS(6822), 1, + ACTIONS(6131), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_DASH_GT, - ACTIONS(6826), 1, + ACTIONS(6141), 1, anon_sym_noexcept, - ACTIONS(6828), 1, + ACTIONS(6143), 1, anon_sym_throw, - ACTIONS(6830), 1, + ACTIONS(6475), 1, + anon_sym_LBRACK, + ACTIONS(6541), 1, + anon_sym_DASH_GT, + ACTIONS(6543), 1, anon_sym_requires, - STATE(5156), 1, + STATE(5178), 1, sym_requires_clause, - STATE(5325), 1, + STATE(5479), 1, sym_trailing_return_type, - STATE(4257), 5, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6473), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(4114), 6, sym_type_qualifier, + sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6694), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - ACTIONS(6684), 7, + aux_sym_function_declarator_repeat2, + ACTIONS(6217), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -361538,17 +362486,337 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [164155] = 5, + [163658] = 15, ACTIONS(3), 1, sym_comment, - STATE(4264), 1, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6471), 1, + anon_sym_LBRACK, + ACTIONS(6648), 1, + anon_sym_DASH_GT, + ACTIONS(6650), 1, + anon_sym_requires, + STATE(5135), 1, + sym_requires_clause, + STATE(5458), 1, + sym_trailing_return_type, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6469), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4127), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [163718] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5388), 1, + anon_sym_STAR, + ACTIONS(5390), 1, + anon_sym_AMP_AMP, + ACTIONS(5392), 1, + anon_sym_AMP, + STATE(4917), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5876), 1, + sym_init_declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163784] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5388), 1, + anon_sym_STAR, + ACTIONS(5390), 1, + anon_sym_AMP_AMP, + ACTIONS(5392), 1, + anon_sym_AMP, + STATE(4900), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5876), 1, + sym_init_declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163850] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5016), 1, + sym__declarator, + STATE(6456), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163916] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6817), 1, + anon_sym___attribute__, + STATE(4251), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6764), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6762), 22, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [163956] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4760), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(6080), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164022] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5388), 1, + anon_sym_STAR, + ACTIONS(5390), 1, + anon_sym_AMP_AMP, + ACTIONS(5392), 1, + anon_sym_AMP, + STATE(4934), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5876), 1, + sym_init_declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164088] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4254), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6834), 4, + ACTIONS(6820), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3931), 7, + ACTIONS(3937), 7, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -361556,7 +362824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(3929), 15, + ACTIONS(3935), 15, anon_sym_AMP, anon_sym_const, anon_sym_volatile, @@ -361572,193 +362840,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [164194] = 13, + [164127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(6820), 1, - anon_sym_AMP_AMP, - ACTIONS(6822), 1, - anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_DASH_GT, - ACTIONS(6826), 1, - anon_sym_noexcept, - ACTIONS(6828), 1, - anon_sym_throw, - ACTIONS(6830), 1, - anon_sym_requires, - STATE(5125), 1, - sym_requires_clause, - STATE(5318), 1, - sym_trailing_return_type, - STATE(4304), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6690), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [164249] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(5066), 1, - sym_auto, - ACTIONS(5068), 1, - anon_sym_decltype, - ACTIONS(6682), 1, - anon_sym_LBRACK, - ACTIONS(6837), 1, - anon_sym_STAR, - ACTIONS(6839), 1, - anon_sym_AMP_AMP, - ACTIONS(6841), 1, - anon_sym_AMP, - STATE(2852), 1, - sym_decltype_auto, - STATE(4395), 1, - sym_parameter_list, - STATE(5499), 1, - sym__abstract_declarator, - ACTIONS(6435), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(4383), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [164310] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - STATE(4992), 1, - sym__scope_resolution, - STATE(5430), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [164373] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(5373), 1, - sym_identifier, - ACTIONS(5375), 1, - anon_sym_STAR, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_AMP, - ACTIONS(5381), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - STATE(4962), 1, - sym__scope_resolution, - STATE(5199), 1, - sym__declarator, - STATE(6725), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [164436] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6845), 3, + ACTIONS(6825), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(6843), 24, + ACTIONS(6823), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -361783,203 +362872,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [164471] = 17, + [164162] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1599), 1, + ACTIONS(6169), 1, anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(5373), 1, + ACTIONS(6223), 1, sym_identifier, - ACTIONS(5375), 1, + ACTIONS(6225), 1, anon_sym_STAR, - ACTIONS(5377), 1, + ACTIONS(6227), 1, anon_sym_AMP_AMP, - ACTIONS(5379), 1, + ACTIONS(6229), 1, anon_sym_AMP, - ACTIONS(5381), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - STATE(4962), 1, - sym__scope_resolution, - STATE(5203), 1, - sym__declarator, - STATE(6725), 1, + STATE(5441), 1, + sym__field_declarator, + STATE(6912), 1, sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [164534] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - STATE(4992), 1, - sym__scope_resolution, - STATE(5367), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [164597] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - STATE(4992), 1, - sym__scope_resolution, - STATE(5344), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [164660] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(6676), 1, - anon_sym_STAR, - ACTIONS(6678), 1, - anon_sym_AMP_AMP, - ACTIONS(6680), 1, - anon_sym_AMP, - ACTIONS(6682), 1, - anon_sym_LBRACK, - STATE(4263), 1, - sym_parameter_list, - STATE(5314), 1, - sym__abstract_declarator, - STATE(4386), 2, + STATE(4401), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(5348), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [164715] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6849), 1, - anon_sym_LPAREN2, - ACTIONS(6851), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(2905), 8, anon_sym_const, - ACTIONS(6847), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -361987,107 +362905,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - 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, - [164752] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(5373), 1, - sym_identifier, - ACTIONS(5375), 1, - anon_sym_STAR, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_AMP, - ACTIONS(5381), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - STATE(4962), 1, - sym__scope_resolution, - STATE(5188), 1, - sym__declarator, - STATE(6725), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, + STATE(5173), 8, + 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, sym_operator_name, - [164815] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(5066), 1, - sym_auto, - ACTIONS(5068), 1, - anon_sym_decltype, - ACTIONS(6682), 1, - anon_sym_LBRACK, - ACTIONS(6837), 1, - anon_sym_STAR, - ACTIONS(6839), 1, - anon_sym_AMP_AMP, - ACTIONS(6841), 1, - anon_sym_AMP, - STATE(2852), 1, - sym_decltype_auto, - STATE(4395), 1, - sym_parameter_list, - STATE(5509), 1, - sym__abstract_declarator, - ACTIONS(6473), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(4385), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [164876] = 17, + [164217] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -362100,17 +362927,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4207), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(4978), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - ACTIONS(5385), 1, + ACTIONS(5406), 1, anon_sym_STAR, - ACTIONS(5387), 1, + ACTIONS(5408), 1, anon_sym_AMP_AMP, - ACTIONS(5389), 1, + ACTIONS(5410), 1, anon_sym_AMP, STATE(4992), 1, sym__scope_resolution, @@ -362133,229 +362960,53 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [164939] = 13, + [164280] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, anon_sym_LPAREN2, - ACTIONS(6676), 1, - anon_sym_STAR, - ACTIONS(6678), 1, - anon_sym_AMP_AMP, - ACTIONS(6680), 1, - anon_sym_AMP, - ACTIONS(6682), 1, - anon_sym_LBRACK, - STATE(4263), 1, - sym_parameter_list, - STATE(5332), 1, - sym__abstract_declarator, - STATE(4386), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6698), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [164994] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6853), 1, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5376), 1, sym_identifier, - ACTIONS(6857), 1, - sym_primitive_type, - STATE(4264), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6855), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3946), 7, - anon_sym_LPAREN2, + ACTIONS(5378), 1, anon_sym_STAR, + ACTIONS(5380), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - ACTIONS(3948), 13, + ACTIONS(5382), 1, anon_sym_AMP, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [165037] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(6676), 1, - anon_sym_STAR, - ACTIONS(6678), 1, - anon_sym_AMP_AMP, - ACTIONS(6680), 1, - anon_sym_AMP, - ACTIONS(6682), 1, - anon_sym_LBRACK, - STATE(4263), 1, - sym_parameter_list, - STATE(5335), 1, - sym__abstract_declarator, - STATE(4273), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4700), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [165092] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, + ACTIONS(5384), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, - anon_sym_LT, - STATE(3299), 1, - sym_template_argument_list, - ACTIONS(4187), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4185), 22, - 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, + ACTIONS(5386), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [165133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6861), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6859), 24, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - 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, - [165168] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(6863), 1, - anon_sym_LT, - STATE(2343), 1, - sym_template_argument_list, - ACTIONS(4041), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3534), 21, - 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_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [165209] = 17, + STATE(4962), 1, + sym__scope_resolution, + STATE(5305), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164343] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -362374,15 +363025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(4207), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(4978), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, STATE(4992), 1, sym__scope_resolution, - STATE(5319), 1, + STATE(5430), 1, sym__declarator, STATE(6985), 1, sym_ms_based_modifier, @@ -362401,7 +363052,42 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [165272] = 17, + [164406] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(6827), 1, + anon_sym_LT, + STATE(4363), 1, + sym_template_argument_list, + ACTIONS(4063), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3469), 21, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [164447] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -362414,23 +363100,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4207), 1, + ACTIONS(5376), 1, sym_identifier, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5385), 1, + ACTIONS(5378), 1, anon_sym_STAR, - ACTIONS(5387), 1, + ACTIONS(5380), 1, anon_sym_AMP_AMP, - ACTIONS(5389), 1, + ACTIONS(5382), 1, anon_sym_AMP, - STATE(4992), 1, + ACTIONS(5384), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + STATE(4962), 1, sym__scope_resolution, - STATE(5393), 1, + STATE(5199), 1, sym__declarator, - STATE(6734), 1, + STATE(6725), 1, sym_ms_based_modifier, STATE(6970), 2, sym_template_type, @@ -362447,20 +363133,272 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [165335] = 6, + [164510] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(6690), 1, + anon_sym_LBRACK, + ACTIONS(6829), 1, + anon_sym_STAR, + ACTIONS(6831), 1, + anon_sym_AMP_AMP, + ACTIONS(6833), 1, + anon_sym_AMP, + STATE(2854), 1, + sym_decltype_auto, + STATE(4402), 1, + sym_parameter_list, + STATE(5499), 1, + sym__abstract_declarator, + ACTIONS(6441), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4392), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [164571] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(6863), 1, + ACTIONS(6827), 1, anon_sym_LT, - STATE(2343), 1, + STATE(4363), 1, sym_template_argument_list, - ACTIONS(3679), 3, + ACTIONS(3537), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(3684), 21, + ACTIONS(3542), 21, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [164612] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + STATE(4992), 1, + sym__scope_resolution, + STATE(5344), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164675] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_AMP, + ACTIONS(6839), 1, + anon_sym_DASH_GT, + ACTIONS(6841), 1, + anon_sym_noexcept, + ACTIONS(6843), 1, + anon_sym_throw, + ACTIONS(6845), 1, + anon_sym_requires, + STATE(5156), 1, + sym_requires_clause, + STATE(5325), 1, + sym_trailing_return_type, + STATE(4266), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6718), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [164730] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_AMP, + ACTIONS(6839), 1, + anon_sym_DASH_GT, + ACTIONS(6841), 1, + anon_sym_noexcept, + ACTIONS(6843), 1, + anon_sym_throw, + ACTIONS(6845), 1, + anon_sym_requires, + STATE(5138), 1, + sym_requires_clause, + STATE(5315), 1, + sym_trailing_return_type, + STATE(4212), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6714), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [164785] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6167), 1, + sym_identifier, + ACTIONS(6169), 1, + anon_sym_LPAREN2, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6173), 1, + anon_sym_AMP_AMP, + ACTIONS(6175), 1, + anon_sym_AMP, + STATE(5029), 1, + sym__field_declarator, + STATE(7093), 1, + sym_ms_based_modifier, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + 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, + sym_operator_name, + [164840] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(6847), 1, + anon_sym_LT, + STATE(2398), 1, + sym_template_argument_list, + ACTIONS(4063), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3469), 21, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -362482,7 +363420,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [165376] = 17, + [164881] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6849), 1, + sym_identifier, + ACTIONS(6853), 1, + sym_primitive_type, + STATE(4254), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6851), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3944), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + ACTIONS(3946), 13, + anon_sym_AMP, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [164924] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(6684), 1, + anon_sym_STAR, + ACTIONS(6686), 1, + anon_sym_AMP_AMP, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_LBRACK, + STATE(4265), 1, + sym_parameter_list, + STATE(5335), 1, + sym__abstract_declarator, + STATE(4301), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4742), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [164979] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4383), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(6862), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(6859), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(6857), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + ACTIONS(6855), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [165022] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5376), 1, + sym_identifier, + ACTIONS(5378), 1, + anon_sym_STAR, + ACTIONS(5380), 1, + anon_sym_AMP_AMP, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + STATE(4962), 1, + sym__scope_resolution, + STATE(5203), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165085] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5406), 1, + anon_sym_STAR, + ACTIONS(5408), 1, + anon_sym_AMP_AMP, + ACTIONS(5410), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5379), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165148] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_AMP, + ACTIONS(6839), 1, + anon_sym_DASH_GT, + ACTIONS(6841), 1, + anon_sym_noexcept, + ACTIONS(6843), 1, + anon_sym_throw, + ACTIONS(6845), 1, + anon_sym_requires, + STATE(5145), 1, + sym_requires_clause, + STATE(5328), 1, + sym_trailing_return_type, + STATE(4212), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6708), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [165203] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -362501,11 +363687,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(4207), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(4978), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, + anon_sym_LBRACK, + STATE(4992), 1, + sym__scope_resolution, + STATE(5367), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165266] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(6847), 1, + anon_sym_LT, + STATE(2398), 1, + sym_template_argument_list, + ACTIONS(3537), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3542), 21, + 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_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [165307] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5376), 1, + sym_identifier, + ACTIONS(5378), 1, + anon_sym_STAR, + ACTIONS(5380), 1, + anon_sym_AMP_AMP, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + STATE(4962), 1, + sym__scope_resolution, + STATE(5188), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165370] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(6684), 1, + anon_sym_STAR, + ACTIONS(6686), 1, + anon_sym_AMP_AMP, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_LBRACK, + STATE(4265), 1, + sym_parameter_list, + STATE(5332), 1, + sym__abstract_declarator, + STATE(4387), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6698), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [165425] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(6690), 1, + anon_sym_LBRACK, + ACTIONS(6829), 1, + anon_sym_STAR, + ACTIONS(6831), 1, + anon_sym_AMP_AMP, + ACTIONS(6833), 1, + anon_sym_AMP, + STATE(2854), 1, + sym_decltype_auto, + STATE(4402), 1, + sym_parameter_list, + STATE(5509), 1, + sym__abstract_declarator, + ACTIONS(6477), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4389), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [165486] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, anon_sym_LBRACK, STATE(4992), 1, sym__scope_resolution, @@ -362528,7 +363928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [165439] = 17, + [165549] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -362541,141 +363941,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4207), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(4978), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - ACTIONS(5385), 1, + ACTIONS(5400), 1, anon_sym_STAR, - ACTIONS(5387), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(5389), 1, - anon_sym_AMP, - STATE(4992), 1, - sym__scope_resolution, - STATE(5376), 1, - sym__declarator, - STATE(6734), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [165502] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(6200), 1, - sym_identifier, - ACTIONS(6202), 1, - anon_sym_LPAREN2, - ACTIONS(6204), 1, - anon_sym_STAR, - ACTIONS(6206), 1, - anon_sym_AMP_AMP, - ACTIONS(6208), 1, - anon_sym_AMP, - STATE(5007), 1, - sym__field_declarator, - STATE(7093), 1, - sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5173), 8, - 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, - sym_operator_name, - [165557] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(4390), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(6872), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4290), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(6869), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(6867), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - ACTIONS(6865), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [165600] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_AMP_AMP, - ACTIONS(5407), 1, + ACTIONS(5404), 1, anon_sym_AMP, STATE(4973), 1, sym__scope_resolution, @@ -362698,60 +363974,28 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [165663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6877), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6875), 24, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - 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, - [165698] = 13, + [165612] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(6202), 1, - anon_sym_LPAREN2, - ACTIONS(6220), 1, + ACTIONS(6167), 1, sym_identifier, - ACTIONS(6222), 1, + ACTIONS(6169), 1, + anon_sym_LPAREN2, + ACTIONS(6171), 1, anon_sym_STAR, - ACTIONS(6224), 1, + ACTIONS(6173), 1, anon_sym_AMP_AMP, - ACTIONS(6226), 1, + ACTIONS(6175), 1, anon_sym_AMP, - STATE(5443), 1, + STATE(5007), 1, sym__field_declarator, - STATE(6912), 1, + STATE(7093), 1, sym_ms_based_modifier, - STATE(4393), 2, + STATE(4401), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2905), 8, @@ -362772,14 +364016,56 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [165753] = 3, + [165667] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6881), 3, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(6684), 1, + anon_sym_STAR, + ACTIONS(6686), 1, + anon_sym_AMP_AMP, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_LBRACK, + STATE(4265), 1, + sym_parameter_list, + STATE(5329), 1, + sym__abstract_declarator, + STATE(4387), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6712), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [165722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6867), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(6879), 24, + ACTIONS(6865), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -362804,39 +364090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [165788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6885), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6883), 24, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - 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, - [165823] = 17, + [165757] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -362849,17 +364103,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4698), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(4708), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - ACTIONS(5391), 1, + ACTIONS(5388), 1, anon_sym_STAR, - ACTIONS(5393), 1, + ACTIONS(5390), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, + ACTIONS(5392), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5140), 1, + sym__declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6871), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6869), 24, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + 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, + [165855] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5394), 1, + anon_sym_STAR, + ACTIONS(5396), 1, + anon_sym_AMP_AMP, + ACTIONS(5398), 1, anon_sym_AMP, STATE(4973), 1, sym__scope_resolution, @@ -362882,7 +364214,39 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [165886] = 17, + [165918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6875), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6873), 24, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + 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, + [165953] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -362895,17 +364259,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(5373), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(5375), 1, - anon_sym_STAR, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_AMP, - ACTIONS(5381), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5406), 1, + anon_sym_STAR, + ACTIONS(5408), 1, + anon_sym_AMP_AMP, + ACTIONS(5410), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5421), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166016] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5376), 1, + sym_identifier, + ACTIONS(5378), 1, + anon_sym_STAR, + ACTIONS(5380), 1, + anon_sym_AMP_AMP, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, anon_sym_LBRACK, STATE(4962), 1, sym__scope_resolution, @@ -362928,28 +364338,74 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [165949] = 13, + [166079] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + STATE(4992), 1, + sym__scope_resolution, + STATE(5319), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166142] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(6200), 1, + ACTIONS(6167), 1, sym_identifier, - ACTIONS(6202), 1, + ACTIONS(6169), 1, anon_sym_LPAREN2, - ACTIONS(6204), 1, + ACTIONS(6171), 1, anon_sym_STAR, - ACTIONS(6206), 1, + ACTIONS(6173), 1, anon_sym_AMP_AMP, - ACTIONS(6208), 1, + ACTIONS(6175), 1, anon_sym_AMP, STATE(5008), 1, sym__field_declarator, STATE(7093), 1, sym_ms_based_modifier, - STATE(4393), 2, + STATE(4401), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2905), 8, @@ -362970,7 +364426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [166004] = 17, + [166197] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -362983,17 +364439,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(5373), 1, + ACTIONS(5376), 1, sym_identifier, - ACTIONS(5375), 1, + ACTIONS(5378), 1, anon_sym_STAR, - ACTIONS(5377), 1, + ACTIONS(5380), 1, anon_sym_AMP_AMP, - ACTIONS(5379), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5381), 1, + ACTIONS(5384), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, + anon_sym_LBRACK, + STATE(4962), 1, + sym__scope_resolution, + STATE(5201), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166260] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + STATE(4992), 1, + sym__scope_resolution, + STATE(5446), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166323] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5376), 1, + sym_identifier, + ACTIONS(5378), 1, + anon_sym_STAR, + ACTIONS(5380), 1, + anon_sym_AMP_AMP, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, anon_sym_LBRACK, STATE(4962), 1, sym__scope_resolution, @@ -363016,7 +364564,237 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [166067] = 3, + [166386] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4161), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5406), 1, + anon_sym_STAR, + ACTIONS(5408), 1, + anon_sym_AMP_AMP, + ACTIONS(5410), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5393), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6879), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6877), 24, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + 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, + [166484] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(5441), 1, + anon_sym_LT, + STATE(3282), 1, + sym_template_argument_list, + ACTIONS(4201), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4199), 22, + 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_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [166525] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6883), 1, + anon_sym_LPAREN2, + ACTIONS(6885), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6881), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + 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, + [166562] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6169), 1, + anon_sym_LPAREN2, + ACTIONS(6223), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_STAR, + ACTIONS(6227), 1, + anon_sym_AMP_AMP, + ACTIONS(6229), 1, + anon_sym_AMP, + STATE(5444), 1, + sym__field_declarator, + STATE(6912), 1, + sym_ms_based_modifier, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + 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, + sym_operator_name, + [166617] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(6684), 1, + anon_sym_STAR, + ACTIONS(6686), 1, + anon_sym_AMP_AMP, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_LBRACK, + STATE(4265), 1, + sym_parameter_list, + STATE(5314), 1, + sym__abstract_declarator, + STATE(4387), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5352), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [166672] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6889), 3, @@ -363048,7 +364826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [166102] = 17, + [166707] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -363061,289 +364839,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4698), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(4708), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - ACTIONS(5403), 1, + ACTIONS(5406), 1, anon_sym_STAR, - ACTIONS(5405), 1, + ACTIONS(5408), 1, anon_sym_AMP_AMP, - ACTIONS(5407), 1, - anon_sym_AMP, - STATE(4973), 1, - sym__scope_resolution, - STATE(5095), 1, - sym__declarator, - STATE(7048), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [166165] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4698), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5397), 1, - anon_sym_STAR, - ACTIONS(5399), 1, - anon_sym_AMP_AMP, - ACTIONS(5401), 1, - anon_sym_AMP, - STATE(4973), 1, - sym__scope_resolution, - STATE(5140), 1, - sym__declarator, - STATE(6665), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [166228] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(1603), 1, - anon_sym_STAR, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - STATE(4992), 1, - sym__scope_resolution, - STATE(5446), 1, - sym__declarator, - STATE(6985), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [166291] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(6820), 1, - anon_sym_AMP_AMP, - ACTIONS(6822), 1, - anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_DASH_GT, - ACTIONS(6826), 1, - anon_sym_noexcept, - ACTIONS(6828), 1, - anon_sym_throw, - ACTIONS(6830), 1, - anon_sym_requires, - STATE(5145), 1, - sym_requires_clause, - STATE(5328), 1, - sym_trailing_return_type, - STATE(4194), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6700), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [166346] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(6202), 1, - anon_sym_LPAREN2, - ACTIONS(6220), 1, - sym_identifier, - ACTIONS(6222), 1, - anon_sym_STAR, - ACTIONS(6224), 1, - anon_sym_AMP_AMP, - ACTIONS(6226), 1, - anon_sym_AMP, - STATE(5444), 1, - sym__field_declarator, - STATE(6912), 1, - sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(5173), 8, - 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, - sym_operator_name, - [166401] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(5373), 1, - sym_identifier, - ACTIONS(5375), 1, - anon_sym_STAR, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_AMP, - ACTIONS(5381), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - STATE(4962), 1, - sym__scope_resolution, - STATE(5201), 1, - sym__declarator, - STATE(6725), 1, - sym_ms_based_modifier, - STATE(6970), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(5152), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [166464] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(1599), 1, - anon_sym_LPAREN2, - ACTIONS(1601), 1, - anon_sym_TILDE, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LBRACK, - ACTIONS(5385), 1, - anon_sym_STAR, - ACTIONS(5387), 1, - anon_sym_AMP_AMP, - ACTIONS(5389), 1, + ACTIONS(5410), 1, anon_sym_AMP, STATE(4992), 1, sym__scope_resolution, - STATE(5379), 1, + STATE(5342), 1, sym__declarator, STATE(6734), 1, sym_ms_based_modifier, @@ -363362,7 +364872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [166527] = 17, + [166770] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -363375,17 +364885,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(5373), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(5375), 1, - anon_sym_STAR, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_AMP, - ACTIONS(5381), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5406), 1, + anon_sym_STAR, + ACTIONS(5408), 1, + anon_sym_AMP_AMP, + ACTIONS(5410), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5376), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166833] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5376), 1, + sym_identifier, + ACTIONS(5378), 1, + anon_sym_STAR, + ACTIONS(5380), 1, + anon_sym_AMP_AMP, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, anon_sym_LBRACK, STATE(4962), 1, sym__scope_resolution, @@ -363408,7 +364964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [166590] = 3, + [166896] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6893), 3, @@ -363440,7 +364996,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [166625] = 17, + [166931] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_AMP, + ACTIONS(6839), 1, + anon_sym_DASH_GT, + ACTIONS(6841), 1, + anon_sym_noexcept, + ACTIONS(6843), 1, + anon_sym_throw, + ACTIONS(6845), 1, + anon_sym_requires, + STATE(5125), 1, + sym_requires_clause, + STATE(5318), 1, + sym_trailing_return_type, + STATE(4274), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6704), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [166986] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -363453,17 +365051,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4207), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(4978), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5386), 1, anon_sym_LBRACK, - ACTIONS(5385), 1, + ACTIONS(5406), 1, anon_sym_STAR, - ACTIONS(5387), 1, + ACTIONS(5408), 1, anon_sym_AMP_AMP, - ACTIONS(5389), 1, + ACTIONS(5410), 1, anon_sym_AMP, STATE(4992), 1, sym__scope_resolution, @@ -363486,40 +365084,78 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [166688] = 13, + [167049] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(6820), 1, - anon_sym_AMP_AMP, - ACTIONS(6822), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_noexcept, - ACTIONS(6828), 1, - anon_sym_throw, - ACTIONS(6895), 1, - anon_sym_DASH_GT, - ACTIONS(6897), 1, - anon_sym_requires, - STATE(5138), 1, - sym_requires_clause, - STATE(5429), 1, - sym_trailing_return_type, - ACTIONS(6704), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 1, anon_sym_LBRACK, - anon_sym_GT2, - STATE(4194), 5, + ACTIONS(5400), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5095), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [167112] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6169), 1, + anon_sym_LPAREN2, + ACTIONS(6223), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_STAR, + ACTIONS(6227), 1, + anon_sym_AMP_AMP, + ACTIONS(6229), 1, + anon_sym_AMP, + STATE(5443), 1, + sym__field_declarator, + STATE(6912), 1, + sym_ms_based_modifier, + STATE(4401), 2, sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6684), 7, + aux_sym_type_definition_repeat1, + ACTIONS(2905), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -363527,26 +365163,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [166742] = 9, + STATE(5173), 8, + 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, + sym_operator_name, + [167167] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6756), 1, + anon_sym_STAR, + ACTIONS(6758), 1, + anon_sym_AMP_AMP, + ACTIONS(6760), 1, + anon_sym_AMP, + STATE(4353), 1, + sym_parameter_list, + STATE(5432), 1, + sym__abstract_declarator, + STATE(4326), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4742), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167221] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4537), 1, + STATE(4503), 1, sym_field_declaration_list, - STATE(5799), 1, + STATE(5534), 1, sym_virtual_specifier, - STATE(6347), 1, + STATE(6156), 1, sym_base_class_clause, - ACTIONS(3980), 2, + ACTIONS(3983), 2, anon_sym_final, anon_sym_override, - ACTIONS(4002), 2, + ACTIONS(3997), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4000), 17, + ACTIONS(3995), 17, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -363564,10 +365250,693 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [166788] = 4, + [167267] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 2, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6756), 1, + anon_sym_STAR, + ACTIONS(6758), 1, + anon_sym_AMP_AMP, + ACTIONS(6760), 1, + anon_sym_AMP, + STATE(4353), 1, + sym_parameter_list, + STATE(5425), 1, + sym__abstract_declarator, + STATE(4382), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6712), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167321] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_AMP, + ACTIONS(6841), 1, + anon_sym_noexcept, + ACTIONS(6843), 1, + anon_sym_throw, + ACTIONS(6897), 1, + anon_sym_DASH_GT, + ACTIONS(6899), 1, + anon_sym_requires, + STATE(5145), 1, + sym_requires_clause, + STATE(5320), 1, + sym_trailing_return_type, + ACTIONS(6708), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + STATE(4212), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167375] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(3831), 1, + anon_sym_STAR, + ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_LBRACK, + STATE(4350), 1, + sym_parameter_list, + STATE(5405), 1, + sym__abstract_declarator, + STATE(4387), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6698), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167429] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_AMP, + ACTIONS(6841), 1, + anon_sym_noexcept, + ACTIONS(6843), 1, + anon_sym_throw, + ACTIONS(6901), 1, + anon_sym_DASH_GT, + ACTIONS(6903), 1, + anon_sym_requires, + STATE(5145), 1, + sym_requires_clause, + STATE(5423), 1, + sym_trailing_return_type, + ACTIONS(6708), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + STATE(4212), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167483] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_AMP, + ACTIONS(6841), 1, + anon_sym_noexcept, + ACTIONS(6843), 1, + anon_sym_throw, + ACTIONS(6901), 1, + anon_sym_DASH_GT, + ACTIONS(6903), 1, + anon_sym_requires, + STATE(5138), 1, + sym_requires_clause, + STATE(5429), 1, + sym_trailing_return_type, + ACTIONS(6714), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + STATE(4212), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167537] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_AMP, + ACTIONS(6841), 1, + anon_sym_noexcept, + ACTIONS(6843), 1, + anon_sym_throw, + ACTIONS(6901), 1, + anon_sym_DASH_GT, + ACTIONS(6903), 1, + anon_sym_requires, + STATE(5125), 1, + sym_requires_clause, + STATE(5434), 1, + sym_trailing_return_type, + ACTIONS(6704), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + STATE(4316), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167591] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6728), 1, + anon_sym_STAR, + ACTIONS(6730), 1, + anon_sym_AMP_AMP, + ACTIONS(6732), 1, + anon_sym_AMP, + STATE(4343), 1, + sym_parameter_list, + STATE(5351), 1, + sym__abstract_declarator, + STATE(4382), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6712), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167645] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(6690), 1, + anon_sym_LBRACK, + ACTIONS(6769), 1, + anon_sym_STAR, + ACTIONS(6771), 1, + anon_sym_AMP_AMP, + ACTIONS(6773), 1, + anon_sym_AMP, + STATE(4345), 1, + sym_parameter_list, + STATE(5409), 1, + sym__abstract_declarator, + STATE(4387), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6712), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167699] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(6905), 1, + anon_sym_LT, + STATE(2853), 1, + sym_template_argument_list, + ACTIONS(3537), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3542), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [167739] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6541), 1, + anon_sym_DASH_GT, + ACTIONS(6543), 1, + anon_sym_requires, + ACTIONS(6710), 1, + anon_sym_LBRACK, + STATE(5057), 1, + sym_requires_clause, + STATE(5247), 1, + sym_trailing_return_type, + ACTIONS(6708), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4197), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167795] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_AMP, + ACTIONS(6841), 1, + anon_sym_noexcept, + ACTIONS(6843), 1, + anon_sym_throw, + ACTIONS(6897), 1, + anon_sym_DASH_GT, + ACTIONS(6899), 1, + anon_sym_requires, + STATE(5138), 1, + sym_requires_clause, + STATE(5331), 1, + sym_trailing_return_type, + ACTIONS(6714), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + STATE(4212), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167849] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6756), 1, + anon_sym_STAR, + ACTIONS(6758), 1, + anon_sym_AMP_AMP, + ACTIONS(6760), 1, + anon_sym_AMP, + STATE(4353), 1, + sym_parameter_list, + STATE(5428), 1, + sym__abstract_declarator, + STATE(4382), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6698), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167903] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(6895), 1, + anon_sym_LBRACE, + STATE(4564), 1, + sym_field_declaration_list, + STATE(5662), 1, + sym_virtual_specifier, + STATE(6137), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4019), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4017), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [167949] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6756), 1, + anon_sym_STAR, + ACTIONS(6758), 1, + anon_sym_AMP_AMP, + ACTIONS(6760), 1, + anon_sym_AMP, + STATE(4353), 1, + sym_parameter_list, + STATE(5426), 1, + sym__abstract_declarator, + STATE(4382), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5352), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168003] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6728), 1, + anon_sym_STAR, + ACTIONS(6730), 1, + anon_sym_AMP_AMP, + ACTIONS(6732), 1, + anon_sym_AMP, + STATE(4343), 1, + sym_parameter_list, + STATE(5347), 1, + sym__abstract_declarator, + STATE(4382), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5352), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168057] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(3831), 1, + anon_sym_STAR, + ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_LBRACK, + STATE(4350), 1, + sym_parameter_list, + STATE(5337), 1, + sym__abstract_declarator, + STATE(4387), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5352), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168111] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(6895), 1, + anon_sym_LBRACE, + STATE(4558), 1, + sym_field_declaration_list, + STATE(5657), 1, + sym_virtual_specifier, + STATE(6132), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3991), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(3989), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [168157] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6907), 2, anon_sym_COMMA, anon_sym_SEMI, ACTIONS(6795), 3, @@ -363596,623 +365965,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [166824] = 13, + [168193] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6781), 1, - anon_sym_STAR, - ACTIONS(6783), 1, - anon_sym_AMP_AMP, - ACTIONS(6785), 1, - anon_sym_AMP, - STATE(4328), 1, - sym_parameter_list, - STATE(5351), 1, - sym__abstract_declarator, - STATE(4396), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6708), 4, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - anon_sym_requires, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [166878] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6746), 1, - anon_sym_STAR, - ACTIONS(6748), 1, - anon_sym_AMP_AMP, - ACTIONS(6750), 1, - anon_sym_AMP, - STATE(4339), 1, - sym_parameter_list, - STATE(5428), 1, - sym__abstract_declarator, - STATE(4396), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6698), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_requires, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [166932] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(6904), 1, - anon_sym_LT, - STATE(2824), 1, - sym_template_argument_list, - ACTIONS(3679), 3, - anon_sym_AMP, - anon_sym_const, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(3684), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [166972] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6781), 1, - anon_sym_STAR, - ACTIONS(6783), 1, - anon_sym_AMP_AMP, - ACTIONS(6785), 1, - anon_sym_AMP, - STATE(4328), 1, - sym_parameter_list, - STATE(5347), 1, - sym__abstract_declarator, - STATE(4396), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5348), 4, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - anon_sym_requires, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [167026] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(6820), 1, - anon_sym_AMP_AMP, - ACTIONS(6822), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_noexcept, - ACTIONS(6828), 1, - anon_sym_throw, ACTIONS(6895), 1, - anon_sym_DASH_GT, - ACTIONS(6897), 1, - anon_sym_requires, - STATE(5125), 1, - sym_requires_clause, - STATE(5434), 1, - sym_trailing_return_type, - ACTIONS(6690), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - STATE(4346), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [167080] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(6682), 1, - anon_sym_LBRACK, - ACTIONS(6787), 1, - anon_sym_STAR, - ACTIONS(6789), 1, - anon_sym_AMP_AMP, - ACTIONS(6791), 1, - anon_sym_AMP, - STATE(4345), 1, - sym_parameter_list, - STATE(5348), 1, - sym__abstract_declarator, - STATE(4386), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5348), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_requires, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [167134] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(6682), 1, - anon_sym_LBRACK, - ACTIONS(6787), 1, - anon_sym_STAR, - ACTIONS(6789), 1, - anon_sym_AMP_AMP, - ACTIONS(6791), 1, - anon_sym_AMP, - STATE(4345), 1, - sym_parameter_list, - STATE(5409), 1, - sym__abstract_declarator, - STATE(4386), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6708), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_requires, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [167188] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(6899), 1, anon_sym_LBRACE, - STATE(4563), 1, - sym_field_declaration_list, - STATE(5662), 1, - sym_virtual_specifier, - STATE(6137), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3988), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3986), 17, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [167234] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6781), 1, - anon_sym_STAR, - ACTIONS(6783), 1, - anon_sym_AMP_AMP, - ACTIONS(6785), 1, - anon_sym_AMP, - STATE(4328), 1, - sym_parameter_list, - STATE(5374), 1, - sym__abstract_declarator, - STATE(4396), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6698), 4, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - anon_sym_requires, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [167288] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6746), 1, - anon_sym_STAR, - ACTIONS(6748), 1, - anon_sym_AMP_AMP, - ACTIONS(6750), 1, - anon_sym_AMP, - STATE(4339), 1, - sym_parameter_list, - STATE(5426), 1, - sym__abstract_declarator, - STATE(4396), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5348), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_requires, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [167342] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(3829), 1, - anon_sym_STAR, - ACTIONS(3831), 1, - anon_sym_AMP_AMP, - ACTIONS(3833), 1, - anon_sym_AMP, - ACTIONS(6682), 1, - anon_sym_LBRACK, - STATE(4350), 1, - sym_parameter_list, - STATE(5337), 1, - sym__abstract_declarator, - STATE(4386), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5348), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_requires, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [167396] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(4555), 1, - sym_field_declaration_list, - STATE(5657), 1, - sym_virtual_specifier, - STATE(6132), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4009), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4007), 17, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [167442] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(4505), 1, - sym_field_declaration_list, - STATE(5534), 1, - sym_virtual_specifier, - STATE(6156), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4013), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4011), 17, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [167488] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(6682), 1, - anon_sym_LBRACK, - ACTIONS(6787), 1, - anon_sym_STAR, - ACTIONS(6789), 1, - anon_sym_AMP_AMP, - ACTIONS(6791), 1, - anon_sym_AMP, - STATE(4345), 1, - sym_parameter_list, - STATE(5340), 1, - sym__abstract_declarator, - STATE(4386), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6698), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_requires, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [167542] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6590), 1, - anon_sym_DASH_GT, - ACTIONS(6592), 1, - anon_sym_requires, - ACTIONS(6696), 1, - anon_sym_LBRACK, - STATE(5074), 1, - sym_requires_clause, - STATE(5243), 1, - sym_trailing_return_type, - ACTIONS(6694), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - STATE(4333), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [167598] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(4551), 1, + STATE(4553), 1, sym_field_declaration_list, STATE(5656), 1, sym_virtual_specifier, STATE(6126), 1, sym_base_class_clause, - ACTIONS(3974), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3980), 2, + ACTIONS(3983), 2, anon_sym_final, anon_sym_override, - ACTIONS(3972), 17, + ACTIONS(4023), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4021), 17, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -364230,925 +366002,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [167644] = 13, + [168239] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2905), 1, anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(3829), 1, - anon_sym_STAR, - ACTIONS(3831), 1, + ACTIONS(6835), 1, anon_sym_AMP_AMP, - ACTIONS(3833), 1, + ACTIONS(6837), 1, anon_sym_AMP, - ACTIONS(6682), 1, - anon_sym_LBRACK, - STATE(4350), 1, - sym_parameter_list, - STATE(5405), 1, - sym__abstract_declarator, - STATE(4386), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6698), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_requires, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [167698] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, + ACTIONS(6841), 1, anon_sym_noexcept, - ACTIONS(6138), 1, + ACTIONS(6843), 1, anon_sym_throw, - ACTIONS(6590), 1, - anon_sym_DASH_GT, - ACTIONS(6592), 1, - anon_sym_requires, - ACTIONS(6702), 1, - anon_sym_LBRACK, - STATE(5057), 1, - sym_requires_clause, - STATE(5247), 1, - sym_trailing_return_type, - ACTIONS(6700), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - STATE(4188), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [167754] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(6820), 1, - anon_sym_AMP_AMP, - ACTIONS(6822), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_noexcept, - ACTIONS(6828), 1, - anon_sym_throw, - ACTIONS(6906), 1, - anon_sym_DASH_GT, - ACTIONS(6908), 1, - anon_sym_requires, - STATE(5145), 1, - sym_requires_clause, - STATE(5320), 1, - sym_trailing_return_type, - ACTIONS(6700), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - STATE(4194), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [167808] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6590), 1, - anon_sym_DASH_GT, - ACTIONS(6592), 1, - anon_sym_requires, - ACTIONS(6706), 1, - anon_sym_LBRACK, - STATE(5042), 1, - sym_requires_clause, - STATE(5245), 1, - sym_trailing_return_type, - ACTIONS(6704), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - STATE(4188), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [167864] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6590), 1, - anon_sym_DASH_GT, - ACTIONS(6592), 1, - anon_sym_requires, - ACTIONS(6692), 1, - anon_sym_LBRACK, - STATE(5059), 1, - sym_requires_clause, - STATE(5244), 1, - sym_trailing_return_type, - ACTIONS(6690), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - STATE(4331), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [167920] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6592), 1, - anon_sym_requires, - ACTIONS(6594), 1, - anon_sym_DASH_GT, - ACTIONS(6702), 1, - anon_sym_LBRACK, - STATE(5057), 1, - sym_requires_clause, - STATE(5247), 1, - sym_trailing_return_type, - ACTIONS(6700), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - STATE(4188), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [167976] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(4507), 1, - sym_field_declaration_list, - STATE(5529), 1, - sym_virtual_specifier, - STATE(6154), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4017), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4015), 17, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [168022] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6781), 1, - anon_sym_STAR, - ACTIONS(6783), 1, - anon_sym_AMP_AMP, - ACTIONS(6785), 1, - anon_sym_AMP, - STATE(4328), 1, - sym_parameter_list, - STATE(5440), 1, - sym__abstract_declarator, - STATE(4317), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4700), 4, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - anon_sym_requires, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [168076] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(4514), 1, - sym_field_declaration_list, - STATE(5524), 1, - sym_virtual_specifier, - STATE(6151), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4021), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4019), 17, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [168122] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6592), 1, - anon_sym_requires, - ACTIONS(6594), 1, - anon_sym_DASH_GT, - ACTIONS(6696), 1, - anon_sym_LBRACK, - STATE(5074), 1, - sym_requires_clause, - STATE(5243), 1, - sym_trailing_return_type, - ACTIONS(6694), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - STATE(4344), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [168178] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(6904), 1, - anon_sym_LT, - STATE(2824), 1, - sym_template_argument_list, - ACTIONS(4041), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3534), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [168218] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(3829), 1, - anon_sym_STAR, - ACTIONS(3831), 1, - anon_sym_AMP_AMP, - ACTIONS(3833), 1, - anon_sym_AMP, - ACTIONS(6682), 1, - anon_sym_LBRACK, - STATE(4350), 1, - sym_parameter_list, - STATE(5350), 1, - sym__abstract_declarator, - STATE(4386), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6708), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_requires, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [168272] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(6682), 1, - anon_sym_LBRACK, - ACTIONS(6787), 1, - anon_sym_STAR, - ACTIONS(6789), 1, - anon_sym_AMP_AMP, - ACTIONS(6791), 1, - anon_sym_AMP, - STATE(4345), 1, - sym_parameter_list, - STATE(5375), 1, - sym__abstract_declarator, - STATE(4319), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4700), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_requires, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [168326] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(4543), 1, - sym_field_declaration_list, - STATE(5600), 1, - sym_virtual_specifier, - STATE(6122), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3984), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3982), 17, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [168372] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6592), 1, - anon_sym_requires, - ACTIONS(6594), 1, - anon_sym_DASH_GT, - ACTIONS(6706), 1, - anon_sym_LBRACK, - STATE(5042), 1, - sym_requires_clause, - STATE(5245), 1, - sym_trailing_return_type, - ACTIONS(6704), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - STATE(4188), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [168428] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(6820), 1, - anon_sym_AMP_AMP, - ACTIONS(6822), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_noexcept, - ACTIONS(6828), 1, - anon_sym_throw, - ACTIONS(6895), 1, - anon_sym_DASH_GT, ACTIONS(6897), 1, - anon_sym_requires, - STATE(5156), 1, - sym_requires_clause, - STATE(5436), 1, - sym_trailing_return_type, - ACTIONS(6694), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - STATE(4311), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [168482] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(6820), 1, - anon_sym_AMP_AMP, - ACTIONS(6822), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_noexcept, - ACTIONS(6828), 1, - anon_sym_throw, - ACTIONS(6895), 1, anon_sym_DASH_GT, - ACTIONS(6897), 1, - anon_sym_requires, - STATE(5145), 1, - sym_requires_clause, - STATE(5423), 1, - sym_trailing_return_type, - ACTIONS(6700), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - STATE(4194), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [168536] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6746), 1, - anon_sym_STAR, - ACTIONS(6748), 1, - anon_sym_AMP_AMP, - ACTIONS(6750), 1, - anon_sym_AMP, - STATE(4339), 1, - sym_parameter_list, - STATE(5425), 1, - sym__abstract_declarator, - STATE(4396), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6708), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_requires, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6212), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [168590] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(6820), 1, - anon_sym_AMP_AMP, - ACTIONS(6822), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_noexcept, - ACTIONS(6828), 1, - anon_sym_throw, - ACTIONS(6906), 1, - anon_sym_DASH_GT, - ACTIONS(6908), 1, + ACTIONS(6899), 1, anon_sym_requires, STATE(5125), 1, sym_requires_clause, STATE(5327), 1, sym_trailing_return_type, - ACTIONS(6690), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - STATE(4332), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [168644] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(4534), 1, - sym_field_declaration_list, - STATE(5737), 1, - sym_virtual_specifier, - STATE(6117), 1, - sym_base_class_clause, - ACTIONS(3980), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3992), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3990), 17, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [168690] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(6820), 1, - anon_sym_AMP_AMP, - ACTIONS(6822), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_noexcept, - ACTIONS(6828), 1, - anon_sym_throw, - ACTIONS(6906), 1, - anon_sym_DASH_GT, - ACTIONS(6908), 1, - anon_sym_requires, - STATE(5156), 1, - sym_requires_clause, - STATE(5310), 1, - sym_trailing_return_type, - ACTIONS(6694), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - STATE(4352), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [168744] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(3829), 1, - anon_sym_STAR, - ACTIONS(3831), 1, - anon_sym_AMP_AMP, - ACTIONS(3833), 1, - anon_sym_AMP, - ACTIONS(6682), 1, - anon_sym_LBRACK, - STATE(4350), 1, - sym_parameter_list, - STATE(5397), 1, - sym__abstract_declarator, - STATE(4324), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4700), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_requires, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [168798] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(6820), 1, - anon_sym_AMP_AMP, - ACTIONS(6822), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_noexcept, - ACTIONS(6828), 1, - anon_sym_throw, - ACTIONS(6906), 1, - anon_sym_DASH_GT, - ACTIONS(6908), 1, - anon_sym_requires, - STATE(5138), 1, - sym_requires_clause, - STATE(5331), 1, - sym_trailing_return_type, ACTIONS(6704), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK, - STATE(4194), 5, + STATE(4314), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6684), 7, + ACTIONS(6692), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -365156,41 +366043,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [168852] = 14, + [168293] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(6690), 1, + anon_sym_LBRACK, + ACTIONS(6769), 1, + anon_sym_STAR, + ACTIONS(6771), 1, + anon_sym_AMP_AMP, + ACTIONS(6773), 1, + anon_sym_AMP, + STATE(4345), 1, + sym_parameter_list, + STATE(5348), 1, + sym__abstract_declarator, + STATE(4387), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5352), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168347] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(6124), 1, + ACTIONS(6129), 1, anon_sym_AMP_AMP, - ACTIONS(6126), 1, + ACTIONS(6131), 1, anon_sym_AMP, - ACTIONS(6136), 1, + ACTIONS(6141), 1, anon_sym_noexcept, - ACTIONS(6138), 1, + ACTIONS(6143), 1, anon_sym_throw, - ACTIONS(6592), 1, + ACTIONS(6543), 1, anon_sym_requires, - ACTIONS(6594), 1, + ACTIONS(6615), 1, anon_sym_DASH_GT, - ACTIONS(6692), 1, + ACTIONS(6710), 1, + anon_sym_LBRACK, + STATE(5057), 1, + sym_requires_clause, + STATE(5247), 1, + sym_trailing_return_type, + ACTIONS(6708), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4197), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168403] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6543), 1, + anon_sym_requires, + ACTIONS(6615), 1, + anon_sym_DASH_GT, + ACTIONS(6716), 1, + anon_sym_LBRACK, + STATE(5042), 1, + sym_requires_clause, + STATE(5245), 1, + sym_trailing_return_type, + ACTIONS(6714), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4197), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168459] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6543), 1, + anon_sym_requires, + ACTIONS(6615), 1, + anon_sym_DASH_GT, + ACTIONS(6706), 1, anon_sym_LBRACK, STATE(5059), 1, sym_requires_clause, STATE(5244), 1, sym_trailing_return_type, - ACTIONS(6690), 4, - anon_sym_RPAREN, + ACTIONS(6704), 4, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(4335), 5, + anon_sym_LBRACE, + anon_sym_try, + STATE(4334), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6212), 7, + ACTIONS(6217), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -365198,32 +366210,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [168908] = 13, + [168515] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(6437), 1, + ACTIONS(6443), 1, anon_sym_LPAREN2, - ACTIONS(6445), 1, + ACTIONS(6451), 1, anon_sym_LBRACK, - ACTIONS(6746), 1, + ACTIONS(6728), 1, anon_sym_STAR, - ACTIONS(6748), 1, + ACTIONS(6730), 1, anon_sym_AMP_AMP, - ACTIONS(6750), 1, + ACTIONS(6732), 1, anon_sym_AMP, - STATE(4339), 1, + STATE(4343), 1, sym_parameter_list, - STATE(5432), 1, + STATE(5374), 1, sym__abstract_declarator, - STATE(4323), 2, + STATE(4382), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(4700), 4, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(6698), 4, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, anon_sym_requires, STATE(5038), 5, sym_abstract_parenthesized_declarator, @@ -365231,7 +366243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6212), 7, + ACTIONS(6217), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -365239,23 +366251,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [168962] = 3, + [168569] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3766), 3, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(6905), 1, + anon_sym_LT, + STATE(2853), 1, + sym_template_argument_list, + ACTIONS(4063), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(3771), 22, + ACTIONS(3469), 20, + 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_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -365267,25 +366283,42 @@ 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, - [168995] = 3, + [168609] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3758), 3, - anon_sym_AMP, + ACTIONS(2905), 1, anon_sym_const, - anon_sym_COLON, - ACTIONS(3760), 22, + ACTIONS(3829), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(6690), 1, anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(6769), 1, + anon_sym_STAR, + ACTIONS(6771), 1, + anon_sym_AMP_AMP, + ACTIONS(6773), 1, + anon_sym_AMP, + STATE(4345), 1, + sym_parameter_list, + STATE(5340), 1, + sym__abstract_declarator, + STATE(4387), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6698), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -365293,46 +366326,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169028] = 14, + [168663] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5700), 1, + ACTIONS(2905), 1, anon_sym_const, - ACTIONS(6124), 1, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(6690), 1, + anon_sym_LBRACK, + ACTIONS(6769), 1, + anon_sym_STAR, + ACTIONS(6771), 1, anon_sym_AMP_AMP, - ACTIONS(6126), 1, + ACTIONS(6773), 1, anon_sym_AMP, - ACTIONS(6136), 1, + STATE(4345), 1, + sym_parameter_list, + STATE(5375), 1, + sym__abstract_declarator, + STATE(4333), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4742), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168717] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(3831), 1, + anon_sym_STAR, + ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_LBRACK, + STATE(4350), 1, + sym_parameter_list, + STATE(5350), 1, + sym__abstract_declarator, + STATE(4387), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6712), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168771] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, anon_sym_noexcept, - ACTIONS(6138), 1, + ACTIONS(6143), 1, anon_sym_throw, - ACTIONS(6646), 1, + ACTIONS(6541), 1, anon_sym_DASH_GT, - ACTIONS(6648), 1, + ACTIONS(6543), 1, anon_sym_requires, - ACTIONS(6702), 1, + ACTIONS(6716), 1, anon_sym_LBRACK, - STATE(5057), 1, + STATE(5042), 1, sym_requires_clause, - STATE(5485), 1, + STATE(5245), 1, sym_trailing_return_type, - ACTIONS(6700), 3, + ACTIONS(6714), 4, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - STATE(4224), 5, + STATE(4197), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6132), 7, + ACTIONS(6217), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -365340,15 +366450,985 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [169083] = 5, + [168827] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 1, - anon_sym_COLON_COLON, - STATE(4358), 2, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6543), 1, + anon_sym_requires, + ACTIONS(6615), 1, + anon_sym_DASH_GT, + ACTIONS(6720), 1, + anon_sym_LBRACK, + STATE(5074), 1, + sym_requires_clause, + STATE(5243), 1, + sym_trailing_return_type, + ACTIONS(6718), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4335), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168883] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(6895), 1, + anon_sym_LBRACE, + STATE(4542), 1, + sym_field_declaration_list, + STATE(5600), 1, + sym_virtual_specifier, + STATE(6122), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4015), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4013), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [168929] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_AMP, + ACTIONS(6841), 1, + anon_sym_noexcept, + ACTIONS(6843), 1, + anon_sym_throw, + ACTIONS(6901), 1, + anon_sym_DASH_GT, + ACTIONS(6903), 1, + anon_sym_requires, + STATE(5156), 1, + sym_requires_clause, + STATE(5436), 1, + sym_trailing_return_type, + ACTIONS(6718), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + STATE(4317), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168983] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(6895), 1, + anon_sym_LBRACE, + STATE(4506), 1, + sym_field_declaration_list, + STATE(5529), 1, + sym_virtual_specifier, + STATE(6154), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4001), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(3999), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [169029] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(6895), 1, + anon_sym_LBRACE, + STATE(4537), 1, + sym_field_declaration_list, + STATE(5799), 1, + sym_virtual_specifier, + STATE(6347), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3987), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(3985), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [169075] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6728), 1, + anon_sym_STAR, + ACTIONS(6730), 1, + anon_sym_AMP_AMP, + ACTIONS(6732), 1, + anon_sym_AMP, + STATE(4343), 1, + sym_parameter_list, + STATE(5440), 1, + sym__abstract_declarator, + STATE(4327), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(6910), 8, + ACTIONS(4742), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169129] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(6895), 1, + anon_sym_LBRACE, + STATE(4509), 1, + sym_field_declaration_list, + STATE(5524), 1, + sym_virtual_specifier, + STATE(6151), 1, + sym_base_class_clause, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4005), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4003), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [169175] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_AMP, + ACTIONS(6841), 1, + anon_sym_noexcept, + ACTIONS(6843), 1, + anon_sym_throw, + ACTIONS(6897), 1, + anon_sym_DASH_GT, + ACTIONS(6899), 1, + anon_sym_requires, + STATE(5156), 1, + sym_requires_clause, + STATE(5310), 1, + sym_trailing_return_type, + ACTIONS(6718), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + STATE(4323), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169229] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(6895), 1, + anon_sym_LBRACE, + STATE(4533), 1, + sym_field_declaration_list, + STATE(5737), 1, + sym_virtual_specifier, + STATE(6117), 1, + sym_base_class_clause, + ACTIONS(3977), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(3983), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3975), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [169275] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(3831), 1, + anon_sym_STAR, + ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_LBRACK, + STATE(4350), 1, + sym_parameter_list, + STATE(5397), 1, + sym__abstract_declarator, + STATE(4328), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4742), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169329] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6541), 1, + anon_sym_DASH_GT, + ACTIONS(6543), 1, + anon_sym_requires, + ACTIONS(6720), 1, + anon_sym_LBRACK, + STATE(5074), 1, + sym_requires_clause, + STATE(5243), 1, + sym_trailing_return_type, + ACTIONS(6718), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4342), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169385] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6541), 1, + anon_sym_DASH_GT, + ACTIONS(6543), 1, + anon_sym_requires, + ACTIONS(6706), 1, + anon_sym_LBRACK, + STATE(5059), 1, + sym_requires_clause, + STATE(5244), 1, + sym_trailing_return_type, + ACTIONS(6704), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4322), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6217), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3582), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3576), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3578), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169507] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5639), 1, + anon_sym_LBRACE, + ACTIONS(6910), 1, + anon_sym_COLON, + STATE(3483), 1, + sym_enumerator_list, + STATE(3486), 1, + sym__enum_base_clause, + ACTIONS(4205), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4203), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [169548] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5639), 1, + anon_sym_LBRACE, + ACTIONS(6910), 1, + anon_sym_COLON, + STATE(3395), 1, + sym_enumerator_list, + STATE(3396), 1, + sym__enum_base_clause, + ACTIONS(4217), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4215), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [169589] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4118), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4116), 21, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3698), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3700), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3609), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3611), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169690] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6648), 1, + anon_sym_DASH_GT, + ACTIONS(6650), 1, + anon_sym_requires, + ACTIONS(6710), 1, + anon_sym_LBRACK, + STATE(5057), 1, + sym_requires_clause, + STATE(5485), 1, + sym_trailing_return_type, + ACTIONS(6708), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4241), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3722), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3727), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169778] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6648), 1, + anon_sym_DASH_GT, + ACTIONS(6650), 1, + anon_sym_requires, + ACTIONS(6716), 1, + anon_sym_LBRACK, + STATE(5042), 1, + sym_requires_clause, + STATE(5484), 1, + sym_trailing_return_type, + ACTIONS(6714), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4241), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169833] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6129), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_noexcept, + ACTIONS(6143), 1, + anon_sym_throw, + ACTIONS(6648), 1, + anon_sym_DASH_GT, + ACTIONS(6650), 1, + anon_sym_requires, + ACTIONS(6706), 1, + anon_sym_LBRACK, + STATE(5059), 1, + sym_requires_clause, + STATE(5482), 1, + sym_trailing_return_type, + ACTIONS(6704), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4362), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4114), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4112), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169921] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3706), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3708), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3690), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3692), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169987] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6910), 1, + anon_sym_COLON, + STATE(3483), 1, + sym_enumerator_list, + STATE(4412), 1, + sym__enum_base_clause, + ACTIONS(4205), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4203), 19, + 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_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [170026] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4866), 1, + anon_sym_COLON_COLON, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6912), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -365357,7 +367437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5006), 14, + ACTIONS(4864), 14, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -365372,526 +367452,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_typename, anon_sym_template, - [169120] = 7, + [170063] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_LBRACE, - ACTIONS(6913), 1, - anon_sym_COLON, - STATE(3480), 1, - sym__enum_base_clause, - STATE(3484), 1, - sym_enumerator_list, - ACTIONS(4168), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(5649), 1, anon_sym_const, - ACTIONS(4166), 18, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6443), 1, anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6797), 1, anon_sym_STAR, + ACTIONS(6799), 1, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [169161] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6646), 1, - anon_sym_DASH_GT, - ACTIONS(6648), 1, - anon_sym_requires, - ACTIONS(6692), 1, - anon_sym_LBRACK, - STATE(5059), 1, - sym_requires_clause, - STATE(5482), 1, - sym_trailing_return_type, - ACTIONS(6690), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - STATE(4357), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [169216] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6913), 1, - anon_sym_COLON, - STATE(3484), 1, - sym_enumerator_list, - STATE(4417), 1, - sym__enum_base_clause, - ACTIONS(4168), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4166), 19, - 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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [169255] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_LBRACE, - ACTIONS(6913), 1, - anon_sym_COLON, - STATE(3520), 1, - sym_enumerator_list, - STATE(3523), 1, - sym__enum_base_clause, - ACTIONS(4162), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4160), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [169296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3744), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3746), 22, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169329] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4088), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4086), 21, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3736), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3738), 22, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169397] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6913), 1, - anon_sym_COLON, - STATE(3520), 1, - sym_enumerator_list, - STATE(4416), 1, - sym__enum_base_clause, - ACTIONS(4162), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4160), 19, - 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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [169436] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6646), 1, - anon_sym_DASH_GT, - ACTIONS(6648), 1, - anon_sym_requires, - ACTIONS(6706), 1, - anon_sym_LBRACK, - STATE(5042), 1, - sym_requires_clause, - STATE(5484), 1, - sym_trailing_return_type, - ACTIONS(6704), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - STATE(4224), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [169491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4071), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4069), 22, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3740), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3742), 22, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169557] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4088), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4086), 21, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169592] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4094), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4092), 21, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3752), 22, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169660] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6124), 1, - anon_sym_AMP_AMP, - ACTIONS(6126), 1, - anon_sym_AMP, - ACTIONS(6136), 1, - anon_sym_noexcept, - ACTIONS(6138), 1, - anon_sym_throw, - ACTIONS(6646), 1, - anon_sym_DASH_GT, - ACTIONS(6648), 1, - anon_sym_requires, - ACTIONS(6696), 1, - anon_sym_LBRACK, - STATE(5074), 1, - sym_requires_clause, - STATE(5481), 1, - sym_trailing_return_type, - ACTIONS(6694), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - STATE(4367), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [169715] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, ACTIONS(6801), 1, - anon_sym_STAR, - ACTIONS(6803), 1, - anon_sym_AMP_AMP, - ACTIONS(6805), 1, anon_sym_AMP, - STATE(4373), 1, + STATE(4378), 1, + sym_parameter_list, + STATE(5468), 1, + sym__abstract_declarator, + STATE(4414), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6712), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170116] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6797), 1, + anon_sym_STAR, + ACTIONS(6799), 1, + anon_sym_AMP_AMP, + ACTIONS(6801), 1, + anon_sym_AMP, + STATE(4378), 1, + sym_parameter_list, + STATE(5467), 1, + sym__abstract_declarator, + STATE(4414), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5352), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3684), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [170202] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6910), 1, + anon_sym_COLON, + STATE(3395), 1, + sym_enumerator_list, + STATE(4404), 1, + sym__enum_base_clause, + ACTIONS(4217), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4215), 19, + 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_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [170241] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4124), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4122), 21, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [170276] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4124), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4122), 21, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [170311] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + anon_sym_const, + ACTIONS(6443), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(6797), 1, + anon_sym_STAR, + ACTIONS(6799), 1, + anon_sym_AMP_AMP, + ACTIONS(6801), 1, + anon_sym_AMP, + STATE(4378), 1, sym_parameter_list, STATE(5464), 1, sym__abstract_declarator, - STATE(4424), 2, + STATE(4414), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(6698), 3, @@ -365904,7 +367689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6132), 7, + ACTIONS(6137), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -365912,247 +367697,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [169768] = 13, + [170364] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5700), 1, + ACTIONS(5649), 1, anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6801), 1, - anon_sym_STAR, - ACTIONS(6803), 1, + ACTIONS(6129), 1, anon_sym_AMP_AMP, - ACTIONS(6805), 1, + ACTIONS(6131), 1, anon_sym_AMP, - STATE(4373), 1, - sym_parameter_list, - STATE(5467), 1, - sym__abstract_declarator, - STATE(4424), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5348), 3, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_requires, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [169821] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6801), 1, - anon_sym_STAR, - ACTIONS(6803), 1, - anon_sym_AMP_AMP, - ACTIONS(6805), 1, - anon_sym_AMP, - STATE(4373), 1, - sym_parameter_list, - STATE(5461), 1, - sym__abstract_declarator, - STATE(4375), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4700), 3, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_requires, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [169874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3764), 22, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3793), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3795), 22, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169940] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6445), 1, - anon_sym_LBRACK, - ACTIONS(6801), 1, - anon_sym_STAR, - ACTIONS(6803), 1, - anon_sym_AMP_AMP, - ACTIONS(6805), 1, - anon_sym_AMP, - STATE(4373), 1, - sym_parameter_list, - STATE(5468), 1, - sym__abstract_declarator, - STATE(4424), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6708), 3, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_requires, - STATE(5038), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6132), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [169993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6877), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6875), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_try, + ACTIONS(6141), 1, anon_sym_noexcept, + ACTIONS(6143), 1, anon_sym_throw, - anon_sym_requires, - [170025] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(6820), 1, - anon_sym_AMP_AMP, - ACTIONS(6822), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_noexcept, - ACTIONS(6828), 1, - anon_sym_throw, - ACTIONS(6908), 1, - anon_sym_requires, - ACTIONS(6915), 1, + ACTIONS(6648), 1, anon_sym_DASH_GT, - STATE(5138), 1, + ACTIONS(6650), 1, + anon_sym_requires, + ACTIONS(6720), 1, + anon_sym_LBRACK, + STATE(5074), 1, sym_requires_clause, - STATE(5331), 1, + STATE(5481), 1, sym_trailing_return_type, - ACTIONS(6704), 3, + ACTIONS(6718), 3, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, - STATE(4194), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4364), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6684), 7, + ACTIONS(6137), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -366160,250 +367738,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [170077] = 13, + [170419] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 1, + ACTIONS(5649), 1, anon_sym_const, - ACTIONS(3827), 1, + ACTIONS(6443), 1, anon_sym_LPAREN2, - ACTIONS(6682), 1, + ACTIONS(6451), 1, anon_sym_LBRACK, - ACTIONS(6837), 1, + ACTIONS(6797), 1, anon_sym_STAR, - ACTIONS(6839), 1, + ACTIONS(6799), 1, anon_sym_AMP_AMP, - ACTIONS(6841), 1, + ACTIONS(6801), 1, anon_sym_AMP, - STATE(4395), 1, + STATE(4378), 1, sym_parameter_list, - STATE(5501), 1, + STATE(5461), 1, sym__abstract_declarator, - ACTIONS(5348), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(4386), 2, + STATE(4372), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [170129] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(6682), 1, - anon_sym_LBRACK, - ACTIONS(6837), 1, - anon_sym_STAR, - ACTIONS(6839), 1, - anon_sym_AMP_AMP, - ACTIONS(6841), 1, - anon_sym_AMP, - STATE(4395), 1, - sym_parameter_list, - STATE(5502), 1, - sym__abstract_declarator, - ACTIONS(6708), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(4386), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [170181] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6917), 1, - anon_sym_LPAREN2, - ACTIONS(6851), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6847), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [170215] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(3827), 1, - anon_sym_LPAREN2, - ACTIONS(6682), 1, - anon_sym_LBRACK, - ACTIONS(6837), 1, - anon_sym_STAR, - ACTIONS(6839), 1, - anon_sym_AMP_AMP, - ACTIONS(6841), 1, - anon_sym_AMP, - STATE(4395), 1, - sym_parameter_list, - STATE(5497), 1, - sym__abstract_declarator, - ACTIONS(6698), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(4386), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [170267] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5006), 1, - anon_sym_AMP, - ACTIONS(6919), 1, - anon_sym_const, - STATE(4386), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6922), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5008), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6845), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6843), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [170337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4088), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4086), 22, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(4742), 3, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, anon_sym_requires, - [170369] = 3, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6137), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6799), 2, + ACTIONS(6875), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6797), 22, + ACTIONS(6873), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366426,17 +367807,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [170401] = 3, + [170504] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 6, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_AMP, + ACTIONS(6841), 1, + anon_sym_noexcept, + ACTIONS(6843), 1, + anon_sym_throw, + ACTIONS(6899), 1, + anon_sym_requires, + ACTIONS(6915), 1, + anon_sym_DASH_GT, + STATE(5145), 1, + sym_requires_clause, + STATE(5320), 1, + sym_trailing_return_type, + ACTIONS(6708), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(4212), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170556] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6912), 1, + anon_sym_const, + ACTIONS(4864), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(4382), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6917), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(4866), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [170594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6922), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK, - ACTIONS(6925), 18, + ACTIONS(6920), 18, anon_sym_AMP, anon_sym___based, sym_ms_restrict_modifier, @@ -366455,13 +367907,43 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - [170433] = 3, + [170626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6795), 2, + ACTIONS(6924), 1, + anon_sym_LPAREN2, + ACTIONS(6885), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6793), 22, + ACTIONS(6881), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [170660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6889), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6887), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366484,108 +367966,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [170465] = 13, + [170692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 1, + ACTIONS(4124), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(3827), 1, + ACTIONS(4122), 22, anon_sym_LPAREN2, - ACTIONS(6682), 1, - anon_sym_LBRACK, - ACTIONS(6837), 1, anon_sym_STAR, - ACTIONS(6839), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6841), 1, - anon_sym_AMP, - STATE(4395), 1, - sym_parameter_list, - STATE(5508), 1, - sym__abstract_declarator, - ACTIONS(4700), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(4382), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5097), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [170517] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5006), 5, - anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(6919), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5008), 9, - 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, - [170553] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(6820), 1, - anon_sym_AMP_AMP, - ACTIONS(6822), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_noexcept, - ACTIONS(6828), 1, - anon_sym_throw, - ACTIONS(6908), 1, - anon_sym_requires, - ACTIONS(6915), 1, - anon_sym_DASH_GT, - STATE(5145), 1, - sym_requires_clause, - STATE(5320), 1, - sym_trailing_return_type, - ACTIONS(6700), 3, - anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4194), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6684), 7, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -366593,54 +367988,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [170605] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_const, - ACTIONS(6820), 1, - anon_sym_AMP_AMP, - ACTIONS(6822), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_noexcept, - ACTIONS(6828), 1, - anon_sym_throw, - ACTIONS(6908), 1, + anon_sym_COLON, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(6915), 1, - anon_sym_DASH_GT, - STATE(5156), 1, - sym_requires_clause, - STATE(5310), 1, - sym_trailing_return_type, - ACTIONS(6694), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, - STATE(4381), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6684), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [170657] = 6, + [170724] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6910), 1, - anon_sym_const, - ACTIONS(5006), 2, + ACTIONS(4864), 1, anon_sym_AMP, - anon_sym_LBRACK, - STATE(4396), 2, + ACTIONS(6926), 1, + anon_sym_const, + STATE(4387), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(6929), 7, @@ -366651,109 +368013,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5008), 12, + ACTIONS(4866), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6893), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6891), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_DASH_GT, anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [170727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6861), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6859), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [170759] = 13, + [170762] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2905), 1, anon_sym_const, - ACTIONS(6820), 1, - anon_sym_AMP_AMP, - ACTIONS(6822), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_noexcept, - ACTIONS(6828), 1, - anon_sym_throw, - ACTIONS(6908), 1, - anon_sym_requires, - ACTIONS(6915), 1, - anon_sym_DASH_GT, - STATE(5125), 1, - sym_requires_clause, - STATE(5327), 1, - sym_trailing_return_type, - ACTIONS(6690), 3, + ACTIONS(3829), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(6690), 1, anon_sym_LBRACK, - STATE(4394), 5, + ACTIONS(6829), 1, + anon_sym_STAR, + ACTIONS(6831), 1, + anon_sym_AMP_AMP, + ACTIONS(6833), 1, + anon_sym_AMP, + STATE(4402), 1, + sym_parameter_list, + STATE(5501), 1, + sym__abstract_declarator, + ACTIONS(5352), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4387), 2, sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6684), 7, + aux_sym_type_definition_repeat1, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -366761,13 +368066,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [170811] = 3, + [170814] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6818), 2, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(6690), 1, + anon_sym_LBRACK, + ACTIONS(6829), 1, + anon_sym_STAR, + ACTIONS(6831), 1, + anon_sym_AMP_AMP, + ACTIONS(6833), 1, + anon_sym_AMP, + STATE(4402), 1, + sym_parameter_list, + STATE(5497), 1, + sym__abstract_declarator, + ACTIONS(6698), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4387), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6805), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6816), 22, + ACTIONS(6803), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366790,7 +368134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [170843] = 3, + [170898] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6934), 6, @@ -366819,13 +368163,130 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - [170875] = 3, + [170930] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6881), 2, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(6690), 1, + anon_sym_LBRACK, + ACTIONS(6829), 1, + anon_sym_STAR, + ACTIONS(6831), 1, + anon_sym_AMP_AMP, + ACTIONS(6833), 1, + anon_sym_AMP, + STATE(4402), 1, + sym_parameter_list, + STATE(5502), 1, + sym__abstract_declarator, + ACTIONS(6712), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4387), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170982] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3829), 1, + anon_sym_LPAREN2, + ACTIONS(6690), 1, + anon_sym_LBRACK, + ACTIONS(6829), 1, + anon_sym_STAR, + ACTIONS(6831), 1, + anon_sym_AMP_AMP, + ACTIONS(6833), 1, + anon_sym_AMP, + STATE(4402), 1, + sym_parameter_list, + STATE(5508), 1, + sym__abstract_declarator, + ACTIONS(4742), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4388), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [171034] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_AMP, + ACTIONS(6841), 1, + anon_sym_noexcept, + ACTIONS(6843), 1, + anon_sym_throw, + ACTIONS(6899), 1, + anon_sym_requires, + ACTIONS(6915), 1, + anon_sym_DASH_GT, + STATE(5125), 1, + sym_requires_clause, + STATE(5327), 1, + sym_trailing_return_type, + ACTIONS(6704), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(4381), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [171086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6795), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6879), 22, + ACTIONS(6793), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366848,13 +368309,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [170907] = 3, + [171118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6885), 2, + ACTIONS(6893), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6883), 22, + ACTIONS(6891), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366877,14 +368338,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [170939] = 16, + [171150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6867), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6865), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [171182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6825), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6823), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [171214] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_AMP, + ACTIONS(6841), 1, + anon_sym_noexcept, + ACTIONS(6843), 1, + anon_sym_throw, + ACTIONS(6899), 1, + anon_sym_requires, + ACTIONS(6915), 1, + anon_sym_DASH_GT, + STATE(5138), 1, + sym_requires_clause, + STATE(5331), 1, + sym_trailing_return_type, + ACTIONS(6714), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(4212), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [171266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6871), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6869), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [171298] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4864), 5, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(6926), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(4866), 9, + 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, + [171334] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_AMP, + ACTIONS(6841), 1, + anon_sym_noexcept, + ACTIONS(6843), 1, + anon_sym_throw, + ACTIONS(6899), 1, + anon_sym_requires, + ACTIONS(6915), 1, + anon_sym_DASH_GT, + STATE(5156), 1, + sym_requires_clause, + STATE(5310), 1, + sym_trailing_return_type, + ACTIONS(6718), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(4399), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6692), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [171386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6809), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6807), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [171418] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3490), 1, + sym_enumerator_list, + ACTIONS(4239), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4237), 19, + 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_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [171451] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, @@ -366894,9 +368609,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(6944), 1, anon_sym_requires, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, - STATE(2839), 1, + STATE(2914), 1, sym_requirement_seq, STATE(4777), 1, sym_lambda_capture_specifier, @@ -366909,7 +368624,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6942), 2, sym_true, sym_false, - STATE(2897), 8, + STATE(2915), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -366918,390 +368633,31 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [170996] = 7, + [171508] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6946), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(6948), 1, - anon_sym_COLON, - STATE(2763), 1, - sym_enumerator_list, - STATE(4439), 1, - sym__enum_base_clause, - ACTIONS(4162), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4160), 17, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6167), 1, + sym_identifier, + ACTIONS(6169), 1, anon_sym_LPAREN2, + ACTIONS(6171), 1, anon_sym_STAR, + ACTIONS(6173), 1, anon_sym_AMP_AMP, + ACTIONS(6175), 1, + anon_sym_AMP, + ACTIONS(6946), 1, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [171035] = 6, - ACTIONS(3), 1, - sym_comment, + ACTIONS(6948), 1, + anon_sym_EQ, ACTIONS(6950), 1, anon_sym_COLON, - STATE(4437), 1, - sym__enum_base_clause, - STATE(4502), 1, - sym_enumerator_list, - ACTIONS(4168), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4166), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [171072] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(6511), 1, - anon_sym_COLON_COLON, - ACTIONS(6952), 1, - sym_identifier, - ACTIONS(6954), 1, - anon_sym_LPAREN2, - ACTIONS(6956), 1, - anon_sym_LBRACE, - ACTIONS(6960), 1, - anon_sym_requires, - STATE(1891), 1, - sym_template_type, - STATE(2498), 1, - sym_requirement_seq, - STATE(4764), 1, - sym_lambda_capture_specifier, - STATE(5371), 1, - sym__scope_resolution, - STATE(6250), 1, - sym_requires_parameter_list, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6958), 2, - sym_true, - sym_false, - STATE(2499), 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, - [171129] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(6200), 1, - sym_identifier, - ACTIONS(6202), 1, - anon_sym_LPAREN2, - ACTIONS(6204), 1, - anon_sym_STAR, - ACTIONS(6206), 1, - anon_sym_AMP_AMP, - ACTIONS(6208), 1, - anon_sym_AMP, - ACTIONS(6962), 1, - anon_sym_SEMI, - ACTIONS(6964), 1, - anon_sym_EQ, - ACTIONS(6966), 1, - anon_sym_COLON, - STATE(4679), 1, - sym__field_declarator, - STATE(6908), 1, - sym_bitfield_clause, - STATE(6972), 1, - sym_initializer_list, - STATE(7093), 1, - sym_ms_based_modifier, - STATE(5173), 8, - 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, - sym_operator_name, - [171188] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(6863), 1, - anon_sym_LT, - STATE(2343), 1, - sym_template_argument_list, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3516), 18, - 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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [171225] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6946), 1, - anon_sym_LBRACE, - ACTIONS(6948), 1, - anon_sym_COLON, - STATE(2812), 1, - sym_enumerator_list, - STATE(4431), 1, - sym__enum_base_clause, - ACTIONS(4168), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4166), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [171264] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, - anon_sym_LT, - STATE(4355), 1, - sym_template_argument_list, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3516), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [171301] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6968), 1, - anon_sym_LBRACE, - ACTIONS(6970), 1, - anon_sym_COLON, - STATE(3180), 1, - sym_enumerator_list, - STATE(4433), 1, - sym__enum_base_clause, - ACTIONS(4168), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4166), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [171340] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(3835), 1, - anon_sym_COLON_COLON, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - ACTIONS(6425), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6429), 1, - anon_sym_EQ, - ACTIONS(6972), 1, - sym_identifier, - STATE(3311), 1, - sym_template_type, - STATE(3533), 1, - sym_field_declaration_list, - STATE(4746), 1, - sym_ms_declspec_modifier, - STATE(4805), 1, - sym_attribute_declaration, - STATE(5385), 1, - sym__scope_resolution, - STATE(5729), 1, - sym_virtual_specifier, - STATE(6466), 1, - sym_base_class_clause, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6427), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(3291), 2, - sym__class_name, - sym_qualified_type_identifier, - [171407] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(6598), 1, - anon_sym_COLON_COLON, - ACTIONS(6974), 1, - sym_identifier, - ACTIONS(6976), 1, - anon_sym_LPAREN2, - ACTIONS(6978), 1, - anon_sym_LBRACE, - ACTIONS(6982), 1, - anon_sym_requires, - STATE(2191), 1, - sym_template_type, - STATE(3110), 1, - sym_requirement_seq, - STATE(4765), 1, - sym_lambda_capture_specifier, - STATE(5352), 1, - sym__scope_resolution, - STATE(6570), 1, - sym_requires_parameter_list, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(6980), 2, - sym_true, - sym_false, - STATE(3100), 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, - [171464] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1469), 1, - anon_sym_LBRACE, - ACTIONS(1501), 1, - anon_sym_operator, - ACTIONS(6200), 1, - sym_identifier, - ACTIONS(6202), 1, - anon_sym_LPAREN2, - ACTIONS(6204), 1, - anon_sym_STAR, - ACTIONS(6206), 1, - anon_sym_AMP_AMP, - ACTIONS(6208), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_COLON, - ACTIONS(6984), 1, - anon_sym_SEMI, - ACTIONS(6986), 1, - anon_sym_EQ, STATE(4628), 1, sym__field_declarator, STATE(6994), 1, @@ -367319,128 +368675,39 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [171523] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3475), 1, - sym_enumerator_list, - ACTIONS(4229), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4227), 19, - 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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [171556] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3459), 1, - sym_enumerator_list, - ACTIONS(4197), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4195), 19, - 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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [171589] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6950), 1, - anon_sym_COLON, - STATE(4430), 1, - sym__enum_base_clause, - STATE(4530), 1, - sym_enumerator_list, - ACTIONS(4162), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4160), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [171626] = 16, + [171567] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(6477), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(6988), 1, + ACTIONS(6952), 1, sym_identifier, - ACTIONS(6990), 1, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(6992), 1, + ACTIONS(6956), 1, anon_sym_LBRACE, - ACTIONS(6996), 1, + ACTIONS(6960), 1, anon_sym_requires, - STATE(2422), 1, + STATE(2100), 1, sym_template_type, - STATE(3354), 1, + STATE(3034), 1, sym_requirement_seq, - STATE(4775), 1, + STATE(4763), 1, sym_lambda_capture_specifier, - STATE(5445), 1, + STATE(5362), 1, sym__scope_resolution, - STATE(6560), 1, + STATE(6428), 1, sym_requires_parameter_list, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(6994), 2, + ACTIONS(6958), 2, sym_true, sym_false, - STATE(3456), 8, + STATE(3006), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -367449,21 +368716,186 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [171683] = 7, + [171624] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6962), 1, + anon_sym_COLON, + STATE(4435), 1, + sym__enum_base_clause, + STATE(4529), 1, + sym_enumerator_list, + ACTIONS(4205), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4203), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [171661] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6167), 1, + sym_identifier, + ACTIONS(6169), 1, + anon_sym_LPAREN2, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6173), 1, + anon_sym_AMP_AMP, + ACTIONS(6175), 1, + anon_sym_AMP, + ACTIONS(6950), 1, + anon_sym_COLON, + ACTIONS(6964), 1, + anon_sym_SEMI, + ACTIONS(6966), 1, + anon_sym_EQ, + STATE(4679), 1, + sym__field_declarator, + STATE(6908), 1, + sym_bitfield_clause, + STATE(6972), 1, + sym_initializer_list, + STATE(7093), 1, + sym_ms_based_modifier, + STATE(5173), 8, + 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, + sym_operator_name, + [171720] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(6827), 1, + anon_sym_LT, + STATE(4363), 1, + sym_template_argument_list, + ACTIONS(3450), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(3455), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [171757] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(6968), 1, anon_sym_LBRACE, ACTIONS(6970), 1, anon_sym_COLON, - STATE(3190), 1, + STATE(2765), 1, sym_enumerator_list, - STATE(4446), 1, + STATE(4430), 1, sym__enum_base_clause, - ACTIONS(4162), 2, + ACTIONS(4205), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4160), 17, + ACTIONS(4203), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [171796] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3477), 1, + sym_enumerator_list, + ACTIONS(4346), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4344), 19, + 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_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [171829] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6972), 1, + anon_sym_LBRACE, + ACTIONS(6974), 1, + anon_sym_COLON, + STATE(3183), 1, + sym_enumerator_list, + STATE(4447), 1, + sym__enum_base_clause, + ACTIONS(4205), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4203), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -367481,39 +368913,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [171722] = 16, + [171868] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6976), 1, + anon_sym_const, + ACTIONS(4864), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(4414), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6979), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(4866), 11, + 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, + anon_sym_try, + anon_sym_requires, + [171905] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(6491), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6998), 1, + ACTIONS(6982), 1, sym_identifier, - ACTIONS(7000), 1, + ACTIONS(6984), 1, anon_sym_LPAREN2, - ACTIONS(7002), 1, + ACTIONS(6986), 1, anon_sym_LBRACE, - ACTIONS(7006), 1, + ACTIONS(6990), 1, anon_sym_requires, - STATE(2776), 1, + STATE(2396), 1, sym_template_type, - STATE(3765), 1, + STATE(3363), 1, sym_requirement_seq, - STATE(4769), 1, + STATE(4775), 1, sym_lambda_capture_specifier, - STATE(5401), 1, + STATE(5445), 1, sym__scope_resolution, - STATE(6542), 1, + STATE(6560), 1, sym_requires_parameter_list, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7004), 2, + ACTIONS(6988), 2, sym_true, sym_false, - STATE(3960), 8, + STATE(3544), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -367522,7 +368985,157 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [171779] = 17, + [171962] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6972), 1, + anon_sym_LBRACE, + ACTIONS(6974), 1, + anon_sym_COLON, + STATE(3168), 1, + sym_enumerator_list, + STATE(4432), 1, + sym__enum_base_clause, + ACTIONS(4217), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4215), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [172001] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6962), 1, + anon_sym_COLON, + STATE(4437), 1, + sym__enum_base_clause, + STATE(4501), 1, + sym_enumerator_list, + ACTIONS(4217), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4215), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [172038] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3837), 1, + anon_sym_COLON_COLON, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + ACTIONS(6435), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6439), 1, + anon_sym_EQ, + ACTIONS(6992), 1, + sym_identifier, + STATE(3275), 1, + sym_template_type, + STATE(3458), 1, + sym_field_declaration_list, + STATE(4746), 1, + sym_ms_declspec_modifier, + STATE(4805), 1, + sym_attribute_declaration, + STATE(5385), 1, + sym__scope_resolution, + STATE(5729), 1, + sym_virtual_specifier, + STATE(6466), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6437), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(3287), 2, + sym__class_name, + sym_qualified_type_identifier, + [172105] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6551), 1, + anon_sym_COLON_COLON, + ACTIONS(6994), 1, + sym_identifier, + ACTIONS(6996), 1, + anon_sym_LPAREN2, + ACTIONS(6998), 1, + anon_sym_LBRACE, + ACTIONS(7002), 1, + anon_sym_requires, + STATE(2349), 1, + sym_template_type, + STATE(3140), 1, + sym_requirement_seq, + STATE(4765), 1, + sym_lambda_capture_specifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(6570), 1, + sym_requires_parameter_list, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7000), 2, + sym_true, + sym_false, + STATE(3118), 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, + [172162] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -367531,21 +369144,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(6200), 1, + ACTIONS(6167), 1, sym_identifier, - ACTIONS(6202), 1, + ACTIONS(6169), 1, anon_sym_LPAREN2, - ACTIONS(6204), 1, + ACTIONS(6171), 1, anon_sym_STAR, - ACTIONS(6206), 1, + ACTIONS(6173), 1, anon_sym_AMP_AMP, - ACTIONS(6208), 1, + ACTIONS(6175), 1, anon_sym_AMP, - ACTIONS(6966), 1, + ACTIONS(6950), 1, anon_sym_COLON, - ACTIONS(7008), 1, + ACTIONS(7004), 1, anon_sym_SEMI, - ACTIONS(7010), 1, + ACTIONS(7006), 1, anon_sym_EQ, STATE(4675), 1, sym__field_declarator, @@ -367564,39 +369177,71 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [171838] = 16, + [172221] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LBRACE, + ACTIONS(6970), 1, + anon_sym_COLON, + STATE(2816), 1, + sym_enumerator_list, + STATE(4442), 1, + sym__enum_base_clause, + ACTIONS(4217), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4215), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [172260] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(6620), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(7012), 1, + ACTIONS(7008), 1, sym_identifier, - ACTIONS(7014), 1, + ACTIONS(7010), 1, anon_sym_LPAREN2, - ACTIONS(7016), 1, + ACTIONS(7012), 1, anon_sym_LBRACE, - ACTIONS(7020), 1, + ACTIONS(7016), 1, anon_sym_requires, - STATE(2152), 1, + STATE(2779), 1, sym_template_type, - STATE(3021), 1, + STATE(3764), 1, sym_requirement_seq, - STATE(4763), 1, + STATE(4769), 1, sym_lambda_capture_specifier, - STATE(5362), 1, + STATE(5401), 1, sym__scope_resolution, - STATE(6428), 1, + STATE(6542), 1, sym_requires_parameter_list, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7018), 2, + ACTIONS(7014), 2, sym_true, sym_false, - STATE(3007), 8, + STATE(3990), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -367605,55 +369250,67 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [171895] = 6, + [172317] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7022), 1, - anon_sym_const, - ACTIONS(5006), 2, - anon_sym_AMP, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, anon_sym_LBRACK, - STATE(4424), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7025), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5008), 11, + ACTIONS(6521), 1, + anon_sym_COLON_COLON, + ACTIONS(7018), 1, + sym_identifier, + ACTIONS(7020), 1, + anon_sym_LPAREN2, + ACTIONS(7022), 1, + anon_sym_LBRACE, + ACTIONS(7026), 1, + anon_sym_requires, + STATE(1903), 1, + sym_template_type, + STATE(2473), 1, + sym_requirement_seq, + STATE(4764), 1, + sym_lambda_capture_specifier, + STATE(5371), 1, + sym__scope_resolution, + STATE(6250), 1, + sym_requires_parameter_list, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7024), 2, + sym_true, + sym_false, + STATE(2471), 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, + [172374] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(6847), 1, + anon_sym_LT, + STATE(2398), 1, + sym_template_argument_list, + ACTIONS(3450), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(3455), 18, 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_try, - anon_sym_requires, - [171932] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(6904), 1, - anon_sym_LT, - STATE(2824), 1, - sym_template_argument_list, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3516), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_LBRACK, anon_sym_volatile, anon_sym_restrict, @@ -367664,44 +369321,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_GT2, anon_sym_requires, - [171968] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6650), 1, - anon_sym_COLON, - STATE(3484), 1, - sym_enumerator_list, - STATE(4417), 1, - sym__enum_base_clause, - ACTIONS(4168), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4166), 16, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [172004] = 5, + [172411] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7030), 1, anon_sym_LPAREN2, - STATE(4525), 1, + STATE(4524), 1, sym_preproc_argument_list, ACTIONS(7032), 5, anon_sym_SLASH, @@ -367725,20 +369351,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [172038] = 6, + [172445] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 1, + ACTIONS(6493), 1, anon_sym_COLON, - STATE(3520), 1, + STATE(3395), 1, sym_enumerator_list, - STATE(4416), 1, + STATE(4404), 1, sym__enum_base_clause, - ACTIONS(4162), 3, + ACTIONS(4217), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(4160), 16, + ACTIONS(4215), 16, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -367755,51 +369381,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [172074] = 6, + [172481] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6686), 1, - sym_auto, - ACTIONS(6688), 1, - anon_sym_decltype, - STATE(4498), 1, - sym_decltype_auto, - ACTIONS(4225), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4223), 16, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_try, - anon_sym_requires, - [172109] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4549), 1, + ACTIONS(6493), 1, + anon_sym_COLON, + STATE(3483), 1, sym_enumerator_list, - ACTIONS(4229), 2, + STATE(4412), 1, + sym__enum_base_clause, + ACTIONS(4205), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(4227), 18, + ACTIONS(4203), 16, 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, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -367811,78 +369411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [172140] = 5, + [172517] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6946), 1, - anon_sym_LBRACE, - STATE(2761), 1, - sym_enumerator_list, - ACTIONS(4197), 2, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(6905), 1, + anon_sym_LT, + STATE(2853), 1, + sym_template_argument_list, + ACTIONS(3450), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4195), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [172173] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6712), 1, - sym_identifier, - ACTIONS(6714), 1, - anon_sym_LPAREN2, - ACTIONS(6716), 1, - anon_sym_STAR, - STATE(5297), 1, - sym__type_declarator, - STATE(7102), 1, - sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5471), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [172216] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6968), 1, - anon_sym_LBRACE, - STATE(3192), 1, - sym_enumerator_list, - ACTIONS(4197), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4195), 17, + ACTIONS(3455), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -367900,32 +369441,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [172249] = 10, + [172553] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(7034), 1, - sym_identifier, - ACTIONS(7036), 1, - anon_sym_RPAREN, - ACTIONS(7038), 1, + anon_sym_LBRACE, + STATE(4036), 1, + sym_enumerator_list, + STATE(4593), 1, + sym__enum_base_clause, + ACTIONS(4205), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4203), 15, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [172588] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LBRACE, + STATE(2725), 1, + sym_enumerator_list, + ACTIONS(4346), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4344), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [172621] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7036), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_RPAREN, ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(7042), 1, anon_sym_defined, - ACTIONS(7046), 1, + ACTIONS(7048), 1, sym_number_literal, - ACTIONS(7042), 2, + ACTIONS(7044), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7044), 2, + ACTIONS(7046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7048), 5, + ACTIONS(7050), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4445), 7, + STATE(4438), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -367933,88 +369531,233 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [172292] = 16, + [172664] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7050), 1, - anon_sym_COMMA, - ACTIONS(7052), 1, - anon_sym_RPAREN, - ACTIONS(7058), 1, - anon_sym_SLASH, - ACTIONS(7060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7062), 1, - anon_sym_AMP_AMP, - ACTIONS(7064), 1, - anon_sym_PIPE, - ACTIONS(7066), 1, - anon_sym_CARET, - ACTIONS(7068), 1, + ACTIONS(6972), 1, + anon_sym_LBRACE, + STATE(3186), 1, + sym_enumerator_list, + ACTIONS(4239), 2, anon_sym_AMP, - STATE(6094), 1, + anon_sym_const, + ACTIONS(4237), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [172697] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6722), 1, + sym_identifier, + ACTIONS(6724), 1, + anon_sym_LPAREN2, + ACTIONS(6726), 1, + anon_sym_STAR, + STATE(5297), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [172740] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4342), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4340), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [172771] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4549), 1, + sym_enumerator_list, + ACTIONS(4346), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4344), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [172802] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4342), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4340), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [172835] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4531), 1, + sym_enumerator_list, + ACTIONS(4239), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4237), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [172866] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7052), 1, + anon_sym_COMMA, + ACTIONS(7054), 1, + anon_sym_RPAREN, + ACTIONS(7060), 1, + anon_sym_SLASH, + ACTIONS(7062), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7064), 1, + anon_sym_AMP_AMP, + ACTIONS(7066), 1, + anon_sym_PIPE, + ACTIONS(7068), 1, + anon_sym_CARET, + ACTIONS(7070), 1, + anon_sym_AMP, + STATE(6045), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(7054), 2, + ACTIONS(7056), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7056), 2, + ACTIONS(7058), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7070), 2, + ACTIONS(7072), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7072), 2, + ACTIONS(7074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7074), 2, + ACTIONS(7076), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7076), 2, + ACTIONS(7078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [172347] = 4, + [172921] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4203), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4201), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7034), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [172378] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4532), 1, + STATE(3929), 1, sym_enumerator_list, - ACTIONS(4197), 2, + STATE(4590), 1, + sym__enum_base_clause, + ACTIONS(4217), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(4195), 18, + ACTIONS(4215), 15, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -368022,16 +369765,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, sym_auto, anon_sym_decltype, - anon_sym_try, anon_sym_requires, - [172409] = 5, + [172956] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7036), 1, + sym_identifier, + ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(7042), 1, + anon_sym_defined, + ACTIONS(7080), 1, + anon_sym_RPAREN, + ACTIONS(7082), 1, + sym_number_literal, + ACTIONS(7044), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7046), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7050), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4443), 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, + [172999] = 5, ACTIONS(7028), 1, anon_sym_LF, - ACTIONS(7078), 1, + ACTIONS(7084), 1, anon_sym_LPAREN2, - ACTIONS(7080), 1, + ACTIONS(7086), 1, sym_comment, STATE(4683), 1, sym_preproc_argument_list, @@ -368054,17 +369830,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [172442] = 5, + [173032] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6946), 1, + ACTIONS(6968), 1, anon_sym_LBRACE, - STATE(2723), 1, + STATE(2763), 1, sym_enumerator_list, - ACTIONS(4229), 2, + ACTIONS(4239), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4227), 17, + ACTIONS(4237), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -368082,55 +369858,61 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_requires, - [172475] = 10, + [173065] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, - sym_identifier, - ACTIONS(7038), 1, - anon_sym_LPAREN2, - ACTIONS(7040), 1, - anon_sym_defined, - ACTIONS(7082), 1, + ACTIONS(7052), 1, + anon_sym_COMMA, + ACTIONS(7060), 1, + anon_sym_SLASH, + ACTIONS(7062), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7064), 1, + anon_sym_AMP_AMP, + ACTIONS(7066), 1, + anon_sym_PIPE, + ACTIONS(7068), 1, + anon_sym_CARET, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7088), 1, anon_sym_RPAREN, - ACTIONS(7084), 1, - sym_number_literal, - ACTIONS(7042), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7044), 2, + STATE(6094), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(7056), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7048), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4435), 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, - [172518] = 10, + ACTIONS(7058), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7072), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7074), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7076), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [173120] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, STATE(5277), 1, sym__type_declarator, STATE(7102), 1, sym_ms_based_modifier, - STATE(4393), 2, + STATE(4401), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(5471), 5, @@ -368148,199 +369930,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [172561] = 10, + [173163] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6712), 1, - sym_identifier, - ACTIONS(6714), 1, - anon_sym_LPAREN2, - ACTIONS(6716), 1, - anon_sym_STAR, - STATE(5293), 1, - sym__type_declarator, - STATE(7102), 1, - sym_ms_based_modifier, - STATE(4393), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5471), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2905), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [172604] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7086), 1, - anon_sym_LBRACE, - STATE(4057), 1, - sym_enumerator_list, - STATE(4586), 1, - sym__enum_base_clause, - ACTIONS(4168), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4166), 15, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, + ACTIONS(6694), 1, sym_auto, + ACTIONS(6696), 1, anon_sym_decltype, - anon_sym_requires, - [172639] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(4092), 1, - anon_sym_LBRACE, - ACTIONS(4203), 2, + STATE(4496), 1, + sym_decltype_auto, + ACTIONS(4338), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4201), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [172672] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7050), 1, - anon_sym_COMMA, - ACTIONS(7058), 1, - anon_sym_SLASH, - ACTIONS(7060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7062), 1, - anon_sym_AMP_AMP, - ACTIONS(7064), 1, - anon_sym_PIPE, - ACTIONS(7066), 1, - anon_sym_CARET, - ACTIONS(7068), 1, - anon_sym_AMP, - ACTIONS(7088), 1, - anon_sym_RPAREN, - STATE(6045), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(7054), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7056), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7070), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7072), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7074), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7076), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [172727] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6968), 1, - anon_sym_LBRACE, - STATE(3206), 1, - sym_enumerator_list, - ACTIONS(4229), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4227), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [172760] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7086), 1, - anon_sym_LBRACE, - STATE(4036), 1, - sym_enumerator_list, - STATE(4590), 1, - sym__enum_base_clause, - ACTIONS(4162), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4160), 15, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [172795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4596), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4594), 18, + ACTIONS(4336), 16, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -368355,37 +369957,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, anon_sym_try, anon_sym_requires, - [172823] = 13, + [173198] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6722), 1, + sym_identifier, + ACTIONS(6724), 1, + anon_sym_LPAREN2, + ACTIONS(6726), 1, + anon_sym_STAR, + STATE(5293), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(4401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [173241] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6972), 1, + anon_sym_LBRACE, + STATE(3213), 1, + sym_enumerator_list, + ACTIONS(4346), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4344), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [173274] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, ACTIONS(7090), 1, sym_identifier, ACTIONS(7092), 1, anon_sym_LPAREN2, - ACTIONS(7096), 1, + ACTIONS(7094), 1, + anon_sym_COLON_COLON, + ACTIONS(7098), 1, anon_sym_requires, - STATE(3311), 1, + STATE(2940), 1, sym_template_type, - STATE(4773), 1, + STATE(4785), 1, sym_lambda_capture_specifier, - STATE(5396), 1, + STATE(5383), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7094), 2, + ACTIONS(7096), 2, sym_true, sym_false, - STATE(1916), 8, + STATE(2810), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -368394,22 +370055,50 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [172871] = 13, + [173322] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7060), 1, + anon_sym_SLASH, + ACTIONS(7056), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7058), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7102), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7100), 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, + [173356] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, - sym_identifier, ACTIONS(7092), 1, anon_sym_LPAREN2, - ACTIONS(7096), 1, + ACTIONS(7098), 1, anon_sym_requires, - STATE(3311), 1, + ACTIONS(7104), 1, + sym_identifier, + STATE(3275), 1, sym_template_type, STATE(4773), 1, sym_lambda_capture_specifier, @@ -368417,7 +370106,112 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7098), 2, + ACTIONS(7106), 2, + sym_true, + sym_false, + STATE(1893), 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, + [173404] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COLON_COLON, + ACTIONS(6982), 1, + sym_identifier, + ACTIONS(6990), 1, + anon_sym_requires, + ACTIONS(7108), 1, + anon_sym_LPAREN2, + STATE(2396), 1, + sym_template_type, + STATE(4775), 1, + sym_lambda_capture_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7110), 2, + sym_true, + sym_false, + STATE(3531), 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, + [173452] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COLON_COLON, + ACTIONS(6982), 1, + sym_identifier, + ACTIONS(6990), 1, + anon_sym_requires, + ACTIONS(7108), 1, + anon_sym_LPAREN2, + STATE(2396), 1, + sym_template_type, + STATE(4775), 1, + sym_lambda_capture_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7112), 2, + sym_true, + sym_false, + STATE(3374), 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, + [173500] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(7092), 1, + anon_sym_LPAREN2, + ACTIONS(7098), 1, + anon_sym_requires, + ACTIONS(7104), 1, + sym_identifier, + STATE(3275), 1, + sym_template_type, + STATE(4773), 1, + sym_lambda_capture_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7114), 2, sym_true, sym_false, STATE(5210), 8, @@ -368429,93 +370223,26 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [172919] = 13, + [173548] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(6477), 1, - anon_sym_COLON_COLON, - ACTIONS(6988), 1, - sym_identifier, - ACTIONS(6996), 1, - anon_sym_requires, - ACTIONS(7100), 1, - anon_sym_LPAREN2, - STATE(2422), 1, - sym_template_type, - STATE(4775), 1, - sym_lambda_capture_specifier, - STATE(5445), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7102), 2, - sym_true, - sym_false, - STATE(3467), 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, - [172967] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(6477), 1, - anon_sym_COLON_COLON, - ACTIONS(6988), 1, - sym_identifier, - ACTIONS(6996), 1, - anon_sym_requires, - ACTIONS(7100), 1, - anon_sym_LPAREN2, - STATE(2422), 1, - sym_template_type, - STATE(4775), 1, - sym_lambda_capture_specifier, - STATE(5445), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7104), 2, - sym_true, - sym_false, - STATE(3344), 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, - [173015] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7058), 1, + ACTIONS(7060), 1, anon_sym_SLASH, - ACTIONS(7054), 2, + ACTIONS(7056), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7056), 2, + ACTIONS(7058), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7108), 4, + ACTIONS(7078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7102), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(7106), 11, + ACTIONS(7100), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -368525,61 +370252,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [173049] = 7, + [173584] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7058), 1, + ACTIONS(7060), 1, anon_sym_SLASH, - ACTIONS(7054), 2, + ACTIONS(7056), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7056), 2, + ACTIONS(7058), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7076), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7108), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7106), 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, - [173085] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7058), 1, - anon_sym_SLASH, - ACTIONS(7054), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7056), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7072), 2, - anon_sym_GT, - anon_sym_LT, ACTIONS(7074), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7076), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7076), 2, + ACTIONS(7078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7108), 2, + ACTIONS(7102), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7106), 7, + ACTIONS(7100), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -368587,22 +370283,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [173125] = 13, + [173624] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(6996), 1, + ACTIONS(6990), 1, anon_sym_requires, - ACTIONS(7100), 1, + ACTIONS(7108), 1, anon_sym_LPAREN2, - ACTIONS(7110), 1, + ACTIONS(7116), 1, sym_identifier, - ACTIONS(7112), 1, + ACTIONS(7118), 1, anon_sym_COLON_COLON, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, STATE(4775), 1, sym_lambda_capture_specifier, @@ -368610,7 +370306,7 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7114), 2, + ACTIONS(7120), 2, sym_true, sym_false, STATE(5253), 8, @@ -368622,22 +370318,22 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [173173] = 13, + [173672] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(6996), 1, + ACTIONS(6990), 1, anon_sym_requires, - ACTIONS(7100), 1, + ACTIONS(7108), 1, anon_sym_LPAREN2, - ACTIONS(7110), 1, + ACTIONS(7116), 1, sym_identifier, - ACTIONS(7112), 1, + ACTIONS(7118), 1, anon_sym_COLON_COLON, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, STATE(4775), 1, sym_lambda_capture_specifier, @@ -368645,10 +370341,10 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7104), 2, + ACTIONS(7112), 2, sym_true, sym_false, - STATE(3344), 8, + STATE(3374), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -368657,87 +370353,155 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [173221] = 10, + [173720] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7058), 1, + ACTIONS(7060), 1, anon_sym_SLASH, - ACTIONS(7054), 2, + ACTIONS(7056), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7056), 2, + ACTIONS(7058), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7070), 2, + ACTIONS(7072), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7072), 2, + ACTIONS(7074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7074), 2, + ACTIONS(7076), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7076), 2, + ACTIONS(7078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7108), 2, + ACTIONS(7102), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7106), 5, + ACTIONS(7100), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [173263] = 11, + [173762] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7058), 1, + ACTIONS(7060), 1, + anon_sym_SLASH, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7102), 1, + anon_sym_PIPE, + ACTIONS(7056), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7058), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7072), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7074), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7076), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7100), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [173806] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7060), 1, anon_sym_SLASH, ACTIONS(7068), 1, + anon_sym_CARET, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7108), 1, + ACTIONS(7102), 1, anon_sym_PIPE, - ACTIONS(7054), 2, + ACTIONS(7056), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7056), 2, + ACTIONS(7058), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7070), 2, + ACTIONS(7072), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7072), 2, + ACTIONS(7074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7074), 2, + ACTIONS(7076), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7076), 2, + ACTIONS(7078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7106), 5, + ACTIONS(7100), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + [173852] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7060), 1, + anon_sym_SLASH, + ACTIONS(7066), 1, + anon_sym_PIPE, + ACTIONS(7068), 1, anon_sym_CARET, - [173307] = 13, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7056), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7058), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7072), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7074), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7076), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7100), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [173898] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - ACTIONS(7116), 1, + ACTIONS(7122), 1, anon_sym_LPAREN2, - ACTIONS(7120), 1, + ACTIONS(7126), 1, anon_sym_requires, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, STATE(4759), 1, sym_lambda_capture_specifier, @@ -368745,7 +370509,7 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7118), 2, + ACTIONS(7124), 2, sym_true, sym_false, STATE(5400), 8, @@ -368757,90 +370521,57 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [173355] = 12, + [173946] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7058), 1, - anon_sym_SLASH, - ACTIONS(7066), 1, - anon_sym_CARET, - ACTIONS(7068), 1, - anon_sym_AMP, - ACTIONS(7108), 1, - anon_sym_PIPE, - ACTIONS(7054), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7056), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7070), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7072), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7074), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7076), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7106), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [173401] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7058), 1, + ACTIONS(7060), 1, anon_sym_SLASH, ACTIONS(7064), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(7066), 1, - anon_sym_CARET, + anon_sym_PIPE, ACTIONS(7068), 1, + anon_sym_CARET, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7054), 2, + ACTIONS(7056), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7056), 2, + ACTIONS(7058), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7070), 2, + ACTIONS(7072), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7072), 2, + ACTIONS(7074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7074), 2, + ACTIONS(7076), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7076), 2, + ACTIONS(7078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7106), 4, + ACTIONS(7100), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [173447] = 13, + [173994] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - ACTIONS(7116), 1, + ACTIONS(7122), 1, anon_sym_LPAREN2, - ACTIONS(7120), 1, + ACTIONS(7126), 1, anon_sym_requires, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, STATE(4759), 1, sym_lambda_capture_specifier, @@ -368848,7 +370579,7 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7122), 2, + ACTIONS(7128), 2, sym_true, sym_false, STATE(5084), 8, @@ -368860,51 +370591,16 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [173495] = 13, + [174042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7058), 1, - anon_sym_SLASH, - ACTIONS(7062), 1, - anon_sym_AMP_AMP, - ACTIONS(7064), 1, - anon_sym_PIPE, - ACTIONS(7066), 1, - anon_sym_CARET, - ACTIONS(7068), 1, - anon_sym_AMP, - ACTIONS(7054), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7056), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7070), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7072), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7074), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7076), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7106), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [173543] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7108), 5, + ACTIONS(7102), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(7106), 15, + ACTIONS(7100), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -368920,20 +370616,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [173571] = 5, + [174070] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7058), 1, + ACTIONS(7060), 1, anon_sym_SLASH, - ACTIONS(7056), 2, + ACTIONS(7058), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7108), 4, + ACTIONS(7102), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(7106), 13, + ACTIONS(7100), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -368947,22 +370643,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [173603] = 13, + [174102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7132), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7130), 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, + [174130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7136), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7134), 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, + [174158] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, ACTIONS(7092), 1, anon_sym_LPAREN2, - ACTIONS(7096), 1, + ACTIONS(7098), 1, anon_sym_requires, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, STATE(4773), 1, sym_lambda_capture_specifier, @@ -368970,7 +370716,7 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7126), 2, + ACTIONS(7140), 2, sym_true, sym_false, STATE(4976), 8, @@ -368982,72 +370728,22 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [173651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7130), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7128), 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, - [173679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7134), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7132), 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, - [173707] = 13, + [174206] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, ACTIONS(7092), 1, anon_sym_LPAREN2, - ACTIONS(7096), 1, + ACTIONS(7098), 1, anon_sym_requires, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, STATE(4773), 1, sym_lambda_capture_specifier, @@ -369055,10 +370751,10 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7094), 2, + ACTIONS(7106), 2, sym_true, sym_false, - STATE(1916), 8, + STATE(1893), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -369067,22 +370763,22 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [173755] = 13, + [174254] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, ACTIONS(7092), 1, anon_sym_LPAREN2, - ACTIONS(7096), 1, + ACTIONS(7098), 1, anon_sym_requires, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, STATE(4773), 1, sym_lambda_capture_specifier, @@ -369090,7 +370786,7 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7136), 2, + ACTIONS(7142), 2, sym_true, sym_false, STATE(4977), 8, @@ -369102,59 +370798,24 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [173803] = 13, + [174302] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(6491), 1, - anon_sym_COLON_COLON, - ACTIONS(6998), 1, - sym_identifier, - ACTIONS(7006), 1, - anon_sym_requires, - ACTIONS(7138), 1, - anon_sym_LPAREN2, - STATE(2776), 1, - sym_template_type, - STATE(4769), 1, - sym_lambda_capture_specifier, - STATE(5401), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7140), 2, - sym_true, - sym_false, - STATE(3773), 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, - [173851] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7142), 1, - sym_identifier, ACTIONS(7144), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, anon_sym_defined, - ACTIONS(7152), 1, + ACTIONS(7154), 1, sym_number_literal, - ACTIONS(7148), 2, + ACTIONS(7150), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7150), 2, + ACTIONS(7152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7154), 5, + ACTIONS(7156), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -369168,22 +370829,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [173891] = 13, + [174342] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(6998), 1, + ACTIONS(7008), 1, sym_identifier, - ACTIONS(7006), 1, + ACTIONS(7016), 1, anon_sym_requires, - ACTIONS(7138), 1, + ACTIONS(7158), 1, anon_sym_LPAREN2, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, STATE(4769), 1, sym_lambda_capture_specifier, @@ -369191,10 +370852,10 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7156), 2, + ACTIONS(7160), 2, sym_true, sym_false, - STATE(3841), 8, + STATE(3767), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -369203,33 +370864,33 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [173939] = 13, + [174390] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(7092), 1, - anon_sym_LPAREN2, - ACTIONS(7096), 1, + ACTIONS(6481), 1, + anon_sym_COLON_COLON, + ACTIONS(7008), 1, + sym_identifier, + ACTIONS(7016), 1, anon_sym_requires, ACTIONS(7158), 1, - sym_identifier, - ACTIONS(7160), 1, - anon_sym_COLON_COLON, - STATE(2956), 1, + anon_sym_LPAREN2, + STATE(2779), 1, sym_template_type, - STATE(4785), 1, + STATE(4769), 1, sym_lambda_capture_specifier, - STATE(5383), 1, + STATE(5401), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, ACTIONS(7162), 2, sym_true, sym_false, - STATE(2961), 8, + STATE(3900), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -369238,237 +370899,22 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [173987] = 13, + [174438] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7164), 1, + ACTIONS(7104), 1, sym_identifier, - ACTIONS(7166), 1, + ACTIONS(7122), 1, anon_sym_LPAREN2, - ACTIONS(7170), 1, + ACTIONS(7126), 1, anon_sym_requires, - STATE(4371), 1, - sym_template_type, - STATE(4782), 1, - sym_lambda_capture_specifier, - STATE(5354), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7168), 2, - sym_true, - sym_false, - STATE(5227), 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, - [174035] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(6598), 1, - anon_sym_COLON_COLON, - ACTIONS(6974), 1, - sym_identifier, - ACTIONS(6982), 1, - anon_sym_requires, - ACTIONS(7172), 1, - anon_sym_LPAREN2, - STATE(2191), 1, - sym_template_type, - STATE(4765), 1, - sym_lambda_capture_specifier, - STATE(5352), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7174), 2, - sym_true, - sym_false, - STATE(3124), 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, - [174083] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(6598), 1, - anon_sym_COLON_COLON, - ACTIONS(6974), 1, - sym_identifier, - ACTIONS(6982), 1, - anon_sym_requires, - ACTIONS(7172), 1, - anon_sym_LPAREN2, - STATE(2191), 1, - sym_template_type, - STATE(4765), 1, - sym_lambda_capture_specifier, - STATE(5352), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7176), 2, - sym_true, - sym_false, - STATE(3123), 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, - [174131] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7180), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7178), 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, - [174159] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(4658), 1, - anon_sym_COLON_COLON, - ACTIONS(7116), 1, - anon_sym_LPAREN2, - ACTIONS(7120), 1, - anon_sym_requires, - ACTIONS(7124), 1, - sym_identifier, - STATE(3311), 1, - sym_template_type, - STATE(4759), 1, - sym_lambda_capture_specifier, - STATE(5381), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7182), 2, - sym_true, - sym_false, - STATE(5022), 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, - [174207] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7186), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7184), 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, - [174235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4326), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4324), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [174263] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(5524), 1, - anon_sym_COLON_COLON, - ACTIONS(7090), 1, - sym_identifier, - ACTIONS(7116), 1, - anon_sym_LPAREN2, - ACTIONS(7120), 1, - anon_sym_requires, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, STATE(4759), 1, sym_lambda_capture_specifier, @@ -369476,7 +370922,7 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7188), 2, + ACTIONS(7164), 2, sym_true, sym_false, STATE(5355), 8, @@ -369488,16 +370934,121 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [174311] = 3, + [174486] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7192), 5, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(5561), 1, + anon_sym_COLON_COLON, + ACTIONS(7166), 1, + sym_identifier, + ACTIONS(7168), 1, + anon_sym_LPAREN2, + ACTIONS(7172), 1, + anon_sym_requires, + STATE(4359), 1, + sym_template_type, + STATE(4782), 1, + sym_lambda_capture_specifier, + STATE(5354), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7170), 2, + sym_true, + sym_false, + STATE(5227), 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, + [174534] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6551), 1, + anon_sym_COLON_COLON, + ACTIONS(6994), 1, + sym_identifier, + ACTIONS(7002), 1, + anon_sym_requires, + ACTIONS(7174), 1, + anon_sym_LPAREN2, + STATE(2349), 1, + sym_template_type, + STATE(4765), 1, + sym_lambda_capture_specifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7176), 2, + sym_true, + sym_false, + STATE(3132), 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, + [174582] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6551), 1, + anon_sym_COLON_COLON, + ACTIONS(6994), 1, + sym_identifier, + ACTIONS(7002), 1, + anon_sym_requires, + ACTIONS(7174), 1, + anon_sym_LPAREN2, + STATE(2349), 1, + sym_template_type, + STATE(4765), 1, + sym_lambda_capture_specifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7178), 2, + sym_true, + sym_false, + STATE(3134), 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, + [174630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7182), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(7190), 15, + ACTIONS(7180), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -369513,73 +371064,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [174339] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4092), 1, - anon_sym_LBRACE, - ACTIONS(4203), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4201), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [174369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4258), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4256), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [174397] = 13, + [174658] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(6537), 1, + ACTIONS(4372), 1, + anon_sym_COLON_COLON, + ACTIONS(7122), 1, + anon_sym_LPAREN2, + ACTIONS(7126), 1, + anon_sym_requires, + ACTIONS(7138), 1, + sym_identifier, + STATE(3275), 1, + sym_template_type, + STATE(4759), 1, + sym_lambda_capture_specifier, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7184), 2, + sym_true, + sym_false, + STATE(5022), 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, + [174706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7188), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7186), 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, + [174734] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, ACTIONS(6944), 1, anon_sym_requires, - ACTIONS(7194), 1, + ACTIONS(7190), 1, anon_sym_LPAREN2, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, STATE(4777), 1, sym_lambda_capture_specifier, @@ -369587,7 +371147,67 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7196), 2, + ACTIONS(7192), 2, + sym_true, + sym_false, + STATE(2820), 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, + [174782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7196), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7194), 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, + [174810] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + ACTIONS(6944), 1, + anon_sym_requires, + ACTIONS(7190), 1, + anon_sym_LPAREN2, + STATE(1947), 1, + sym_template_type, + STATE(4777), 1, + sym_lambda_capture_specifier, + STATE(5349), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7198), 2, sym_true, sym_false, STATE(2819), 8, @@ -369599,13 +371219,13 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [174445] = 3, + [174858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 2, + ACTIONS(4356), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4201), 18, + ACTIONS(4354), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -369624,13 +371244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [174473] = 3, + [174886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 2, + ACTIONS(4342), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4201), 18, + ACTIONS(4340), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -369649,179 +371269,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [174501] = 3, + [174914] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4502), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [174529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4508), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4506), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [174557] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(5456), 1, - anon_sym_COLON_COLON, - ACTIONS(6996), 1, - anon_sym_requires, - ACTIONS(7100), 1, - anon_sym_LPAREN2, - ACTIONS(7198), 1, - sym_identifier, - STATE(2422), 1, - sym_template_type, - STATE(4775), 1, - sym_lambda_capture_specifier, - STATE(5389), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7104), 2, - sym_true, - sym_false, - STATE(3344), 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, - [174605] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(5456), 1, - anon_sym_COLON_COLON, - ACTIONS(6996), 1, - anon_sym_requires, - ACTIONS(7100), 1, - anon_sym_LPAREN2, - ACTIONS(7198), 1, - sym_identifier, - STATE(2422), 1, - sym_template_type, - STATE(4775), 1, - sym_lambda_capture_specifier, - STATE(5389), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7200), 2, - sym_true, - sym_false, - STATE(5338), 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, - [174653] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(7006), 1, - anon_sym_requires, - ACTIONS(7138), 1, - anon_sym_LPAREN2, - ACTIONS(7202), 1, - sym_identifier, - ACTIONS(7204), 1, - anon_sym_COLON_COLON, - STATE(2776), 1, - sym_template_type, - STATE(4769), 1, - sym_lambda_capture_specifier, - STATE(5345), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7206), 2, - sym_true, - sym_false, - STATE(5309), 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, - [174701] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7142), 1, - sym_identifier, ACTIONS(7144), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, anon_sym_defined, - ACTIONS(7208), 1, + ACTIONS(7200), 1, sym_number_literal, - ACTIONS(7148), 2, + ACTIONS(7150), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7150), 2, + ACTIONS(7152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7154), 5, + ACTIONS(7156), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -369835,13 +371300,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [174741] = 3, + [174954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4512), 2, + ACTIONS(4342), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4510), 18, + ACTIONS(4340), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -369860,13 +371325,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [174769] = 3, + [174982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 2, + ACTIONS(4618), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4514), 18, + ACTIONS(4616), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -369885,13 +371350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [174797] = 3, + [175010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4604), 2, + ACTIONS(4571), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4602), 18, + ACTIONS(4569), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -369910,13 +371375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [174825] = 3, + [175038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4600), 2, + ACTIONS(4559), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4598), 18, + ACTIONS(4557), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -369935,174 +371400,379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [174853] = 3, + [175066] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4288), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, + ACTIONS(5476), 1, + anon_sym_COLON_COLON, + ACTIONS(6990), 1, anon_sym_requires, - [174881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4451), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4449), 18, + ACTIONS(7108), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [174909] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4286), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4284), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [174937] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4282), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4280), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [174965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4278), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4276), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [174993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4320), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [175021] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7142), 1, + ACTIONS(7202), 1, sym_identifier, - ACTIONS(7144), 1, + STATE(2396), 1, + sym_template_type, + STATE(4775), 1, + sym_lambda_capture_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7112), 2, + sym_true, + sym_false, + STATE(3374), 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, + [175114] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(5476), 1, + anon_sym_COLON_COLON, + ACTIONS(6990), 1, + anon_sym_requires, + ACTIONS(7108), 1, anon_sym_LPAREN2, + ACTIONS(7202), 1, + sym_identifier, + STATE(2396), 1, + sym_template_type, + STATE(4775), 1, + sym_lambda_capture_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7204), 2, + sym_true, + sym_false, + STATE(5338), 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, + [175162] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(7016), 1, + anon_sym_requires, + ACTIONS(7158), 1, + anon_sym_LPAREN2, + ACTIONS(7206), 1, + sym_identifier, + ACTIONS(7208), 1, + anon_sym_COLON_COLON, + STATE(2779), 1, + sym_template_type, + STATE(4769), 1, + sym_lambda_capture_specifier, + STATE(5345), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7210), 2, + sym_true, + sym_false, + STATE(5309), 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, + [175210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4555), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4553), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4409), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4610), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4608), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4614), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4612), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4395), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4393), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4381), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4368), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4547), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4545), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4543), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4541), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4533), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175490] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7144), 1, + sym_identifier, ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, anon_sym_defined, - ACTIONS(7210), 1, + ACTIONS(7212), 1, sym_number_literal, - ACTIONS(7148), 2, + ACTIONS(7150), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7150), 2, + ACTIONS(7152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7154), 5, + ACTIONS(7156), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -370116,13 +371786,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [175061] = 3, + [175530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 2, + ACTIONS(4527), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4328), 18, + ACTIONS(4525), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -370141,13 +371811,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [175089] = 3, + [175558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 2, + ACTIONS(4523), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4332), 18, + ACTIONS(4521), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -370166,61 +371836,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [175117] = 9, + [175586] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, + ACTIONS(7036), 1, sym_identifier, - ACTIONS(7038), 1, - anon_sym_LPAREN2, ACTIONS(7040), 1, - anon_sym_defined, - ACTIONS(7212), 1, - sym_number_literal, - ACTIONS(7042), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7044), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7048), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4588), 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, - [175157] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7034), 1, - sym_identifier, - ACTIONS(7038), 1, anon_sym_LPAREN2, - ACTIONS(7040), 1, + ACTIONS(7042), 1, anon_sym_defined, ACTIONS(7214), 1, sym_number_literal, - ACTIONS(7042), 2, + ACTIONS(7044), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7044), 2, + ACTIONS(7046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7048), 5, + ACTIONS(7050), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4453), 7, + STATE(4449), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -370228,24 +371867,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [175197] = 9, + [175626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, - sym_identifier, - ACTIONS(7038), 1, + ACTIONS(4515), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4513), 18, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175654] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7036), 1, + sym_identifier, ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(7042), 1, anon_sym_defined, ACTIONS(7216), 1, sym_number_literal, - ACTIONS(7042), 2, + ACTIONS(7044), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7044), 2, + ACTIONS(7046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7048), 5, + ACTIONS(7050), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -370259,24 +371923,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [175237] = 9, + [175694] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, + ACTIONS(7036), 1, sym_identifier, - ACTIONS(7038), 1, - anon_sym_LPAREN2, ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(7042), 1, anon_sym_defined, ACTIONS(7218), 1, sym_number_literal, - ACTIONS(7042), 2, + ACTIONS(7044), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7044), 2, + ACTIONS(7046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7048), 5, + ACTIONS(7050), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4589), 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, + [175734] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7036), 1, + sym_identifier, + ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(7042), 1, + anon_sym_defined, + ACTIONS(7220), 1, + sym_number_literal, + ACTIONS(7044), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7046), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7050), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -370290,24 +371985,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [175277] = 9, + [175774] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, + ACTIONS(7036), 1, sym_identifier, - ACTIONS(7038), 1, - anon_sym_LPAREN2, ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(7042), 1, anon_sym_defined, - ACTIONS(7220), 1, + ACTIONS(7222), 1, sym_number_literal, - ACTIONS(7042), 2, + ACTIONS(7044), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7044), 2, + ACTIONS(7046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7048), 5, + ACTIONS(7050), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -370321,49 +372016,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [175317] = 3, + [175814] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4338), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4336), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [175345] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7034), 1, + ACTIONS(7036), 1, sym_identifier, - ACTIONS(7038), 1, - anon_sym_LPAREN2, ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(7042), 1, anon_sym_defined, - ACTIONS(7222), 1, + ACTIONS(7224), 1, sym_number_literal, - ACTIONS(7042), 2, + ACTIONS(7044), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7044), 2, + ACTIONS(7046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7048), 5, + ACTIONS(7050), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -370377,16 +372047,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [175385] = 3, + [175854] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4728), 5, + ACTIONS(7036), 1, + sym_identifier, + ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(7042), 1, + anon_sym_defined, + ACTIONS(7226), 1, + sym_number_literal, + ACTIONS(7044), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7046), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7050), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4460), 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, + [175894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(4726), 15, + ACTIONS(4692), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -370402,24 +372103,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [175413] = 9, + [175922] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6573), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, sym_identifier, - ACTIONS(7038), 1, + ACTIONS(6960), 1, + anon_sym_requires, + ACTIONS(7228), 1, anon_sym_LPAREN2, + STATE(2100), 1, + sym_template_type, + STATE(4763), 1, + sym_lambda_capture_specifier, + STATE(5362), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7230), 2, + sym_true, + sym_false, + STATE(2981), 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, + [175970] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7036), 1, + sym_identifier, ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(7042), 1, anon_sym_defined, - ACTIONS(7224), 1, + ACTIONS(7232), 1, sym_number_literal, - ACTIONS(7042), 2, + ACTIONS(7044), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7044), 2, + ACTIONS(7046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7048), 5, + ACTIONS(7050), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -370433,30 +372169,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [175453] = 9, + [176010] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, + ACTIONS(7036), 1, sym_identifier, - ACTIONS(7038), 1, - anon_sym_LPAREN2, ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(7042), 1, anon_sym_defined, - ACTIONS(7226), 1, + ACTIONS(7234), 1, sym_number_literal, - ACTIONS(7042), 2, + ACTIONS(7044), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7044), 2, + ACTIONS(7046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7048), 5, + ACTIONS(7050), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4462), 7, + STATE(4463), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -370464,55 +372200,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [175493] = 9, + [176050] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, + ACTIONS(7036), 1, sym_identifier, - ACTIONS(7038), 1, - anon_sym_LPAREN2, ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(7042), 1, anon_sym_defined, - ACTIONS(7228), 1, + ACTIONS(7236), 1, sym_number_literal, - ACTIONS(7042), 2, + ACTIONS(7044), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7044), 2, + ACTIONS(7046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7048), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4464), 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, - [175533] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7034), 1, - sym_identifier, - ACTIONS(7038), 1, - anon_sym_LPAREN2, - ACTIONS(7040), 1, - anon_sym_defined, - ACTIONS(7230), 1, - sym_number_literal, - ACTIONS(7042), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7044), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7048), 5, + ACTIONS(7050), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -370526,24 +372231,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [175573] = 9, + [176090] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, + ACTIONS(7036), 1, sym_identifier, - ACTIONS(7038), 1, - anon_sym_LPAREN2, ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(7042), 1, anon_sym_defined, - ACTIONS(7232), 1, + ACTIONS(7238), 1, sym_number_literal, - ACTIONS(7042), 2, + ACTIONS(7044), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7044), 2, + ACTIONS(7046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7048), 5, + ACTIONS(7050), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -370557,16 +372262,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [175613] = 3, + [176130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 5, + ACTIONS(7242), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(7234), 15, + ACTIONS(7240), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -370582,63 +372287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [175641] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7240), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7238), 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, - [175669] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7142), 1, - sym_identifier, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7146), 1, - anon_sym_defined, - ACTIONS(7242), 1, - sym_number_literal, - ACTIONS(7148), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7154), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4612), 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, - [175709] = 3, + [176158] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7246), 5, @@ -370663,22 +372312,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [175737] = 13, + [176186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7248), 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, + [176214] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7144), 1, + sym_identifier, + ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, + anon_sym_defined, + ACTIONS(7252), 1, + sym_number_literal, + ACTIONS(7150), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7152), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7156), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4612), 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, + [176254] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(7012), 1, + ACTIONS(6952), 1, sym_identifier, - ACTIONS(7020), 1, + ACTIONS(6960), 1, anon_sym_requires, - ACTIONS(7248), 1, + ACTIONS(7228), 1, anon_sym_LPAREN2, - STATE(2152), 1, + STATE(2100), 1, sym_template_type, STATE(4763), 1, sym_lambda_capture_specifier, @@ -370686,10 +372391,10 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7250), 2, + ACTIONS(7254), 2, sym_true, sym_false, - STATE(3020), 8, + STATE(3008), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -370698,48 +372403,13 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [175785] = 13, + [176302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(6620), 1, - anon_sym_COLON_COLON, - ACTIONS(7012), 1, - sym_identifier, - ACTIONS(7020), 1, - anon_sym_requires, - ACTIONS(7248), 1, - anon_sym_LPAREN2, - STATE(2152), 1, - sym_template_type, - STATE(4763), 1, - sym_lambda_capture_specifier, - STATE(5362), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7252), 2, - sym_true, - sym_false, - STATE(2981), 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, - [175833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4486), 2, + ACTIONS(4503), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4484), 18, + ACTIONS(4501), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -370758,20 +372428,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [175861] = 10, + [176330] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6437), 1, - anon_sym_LPAREN2, - ACTIONS(6439), 1, - anon_sym_STAR, - ACTIONS(6441), 1, - anon_sym_AMP_AMP, ACTIONS(6443), 1, - anon_sym_AMP, + anon_sym_LPAREN2, ACTIONS(6445), 1, + anon_sym_STAR, + ACTIONS(6447), 1, + anon_sym_AMP_AMP, + ACTIONS(6449), 1, + anon_sym_AMP, + ACTIONS(6451), 1, anon_sym_LBRACK, - STATE(4155), 1, + STATE(4178), 1, sym_parameter_list, STATE(5117), 1, sym__abstract_declarator, @@ -370781,7 +372451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5712), 8, + ACTIONS(5734), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -370790,13 +372460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [175903] = 3, + [176372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 2, + ACTIONS(4499), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4476), 18, + ACTIONS(4497), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -370815,13 +372485,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [175931] = 3, + [176400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4500), 2, + ACTIONS(4483), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4498), 18, + ACTIONS(4481), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -370840,13 +372510,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [175959] = 3, + [176428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4381), 2, + ACTIONS(4471), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4379), 18, + ACTIONS(4469), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -370865,13 +372535,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [175987] = 3, + [176456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 2, + ACTIONS(4463), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4372), 18, + ACTIONS(4461), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -370890,13 +372560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [176015] = 3, + [176484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 2, + ACTIONS(4459), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4614), 18, + ACTIONS(4457), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -370915,283 +372585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [176043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4612), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4610), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4576), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4574), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176099] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4572), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4570), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176127] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(4658), 1, - anon_sym_COLON_COLON, - ACTIONS(7116), 1, - anon_sym_LPAREN2, - ACTIONS(7120), 1, - anon_sym_requires, - ACTIONS(7124), 1, - sym_identifier, - STATE(3311), 1, - sym_template_type, - STATE(4759), 1, - sym_lambda_capture_specifier, - STATE(5381), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7122), 2, - sym_true, - sym_false, - STATE(5084), 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, - [176175] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(4658), 1, - anon_sym_COLON_COLON, - ACTIONS(7116), 1, - anon_sym_LPAREN2, - ACTIONS(7120), 1, - anon_sym_requires, - ACTIONS(7124), 1, - sym_identifier, - STATE(3311), 1, - sym_template_type, - STATE(4759), 1, - sym_lambda_capture_specifier, - STATE(5381), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7254), 2, - sym_true, - sym_false, - STATE(5002), 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, - [176223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4536), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4534), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176251] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7142), 1, - sym_identifier, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7146), 1, - anon_sym_defined, - ACTIONS(7256), 1, - sym_number_literal, - ACTIONS(7148), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7154), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4614), 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, - [176291] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4494), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176319] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4474), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4472), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4466), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4464), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176375] = 3, + [176512] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4443), 2, @@ -371216,13 +372610,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [176403] = 3, + [176540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4490), 2, + ACTIONS(4439), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4488), 18, + ACTIONS(4437), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -371241,272 +372635,424 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [176431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4482), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4480), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4608), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4606), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4246), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4244), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176515] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4592), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4590), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176543] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4588), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4586), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4584), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4582), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176599] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4580), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4578), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4568), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4566), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4560), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4558), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4556), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4554), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176711] = 13, + [176568] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, + ACTIONS(4372), 1, + anon_sym_COLON_COLON, + ACTIONS(7122), 1, + anon_sym_LPAREN2, + ACTIONS(7126), 1, + anon_sym_requires, + ACTIONS(7138), 1, + sym_identifier, + STATE(3275), 1, + sym_template_type, + STATE(4759), 1, + sym_lambda_capture_specifier, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7128), 2, + sym_true, + sym_false, + STATE(5084), 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, + [176616] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4433), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176644] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(4372), 1, + anon_sym_COLON_COLON, + ACTIONS(7122), 1, + anon_sym_LPAREN2, + ACTIONS(7126), 1, + anon_sym_requires, + ACTIONS(7138), 1, + sym_identifier, + STATE(3275), 1, + sym_template_type, + STATE(4759), 1, + sym_lambda_capture_specifier, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7256), 2, + sym_true, + sym_false, + STATE(5002), 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, + [176692] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7144), 1, + sym_identifier, + ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, + anon_sym_defined, + ACTIONS(7258), 1, + sym_number_literal, + ACTIONS(7150), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7152), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7156), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4614), 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, + [176732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4425), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4421), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4417), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176816] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4342), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4340), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [176846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4415), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4413), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4391), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4389), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4606), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4604), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4629), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4627), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4403), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4401), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4407), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4405), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4431), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4429), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177042] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(7090), 1, + sym_identifier, ACTIONS(7092), 1, anon_sym_LPAREN2, - ACTIONS(7096), 1, - anon_sym_requires, - ACTIONS(7158), 1, - sym_identifier, - ACTIONS(7160), 1, + ACTIONS(7094), 1, anon_sym_COLON_COLON, - STATE(2956), 1, + ACTIONS(7098), 1, + anon_sym_requires, + STATE(2940), 1, sym_template_type, STATE(4785), 1, sym_lambda_capture_specifier, @@ -371514,10 +373060,10 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7258), 2, + ACTIONS(7260), 2, sym_true, sym_false, - STATE(2940), 8, + STATE(2920), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -371526,616 +373072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [176759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4552), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4550), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176787] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6948), 1, - anon_sym_COLON, - STATE(2643), 1, - sym__enum_base_clause, - STATE(2763), 1, - sym_enumerator_list, - ACTIONS(4162), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4160), 15, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [176821] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6948), 1, - anon_sym_COLON, - STATE(2662), 1, - sym__enum_base_clause, - STATE(2812), 1, - sym_enumerator_list, - ACTIONS(4168), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4166), 15, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [176855] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7142), 1, - sym_identifier, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7146), 1, - anon_sym_defined, - ACTIONS(7260), 1, - sym_number_literal, - ACTIONS(7148), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7154), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4693), 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, - [176895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4548), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4546), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4544), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4542), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4520), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4518), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [176979] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4421), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4419), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [177007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4417), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4415), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [177035] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4413), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4411), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [177063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4409), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4407), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [177091] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4405), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4403), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [177119] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4401), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4399), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [177147] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(5456), 1, - anon_sym_COLON_COLON, - ACTIONS(6996), 1, - anon_sym_requires, - ACTIONS(7100), 1, - anon_sym_LPAREN2, - ACTIONS(7198), 1, - sym_identifier, - STATE(2422), 1, - sym_template_type, - STATE(4775), 1, - sym_lambda_capture_specifier, - STATE(5389), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7262), 2, - sym_true, - sym_false, - STATE(5394), 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, - [177195] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4397), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4395), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [177223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4393), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4391), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [177251] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7142), 1, - sym_identifier, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7146), 1, - anon_sym_defined, - ACTIONS(7264), 1, - sym_number_literal, - ACTIONS(7148), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7154), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4650), 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, - [177291] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4389), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4387), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [177319] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4385), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4383), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [177347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4316), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [177375] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7142), 1, - sym_identifier, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7146), 1, - anon_sym_defined, - ACTIONS(7266), 1, - sym_number_literal, - ACTIONS(7148), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7154), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4660), 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, - [177415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4314), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4312), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [177443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4302), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4300), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [177471] = 3, + [177090] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4447), 2, @@ -372160,134 +373097,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [177499] = 9, + [177118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, - sym_identifier, - ACTIONS(7038), 1, + ACTIONS(4455), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4453), 18, anon_sym_LPAREN2, - ACTIONS(7040), 1, - anon_sym_defined, - ACTIONS(7268), 1, - sym_number_literal, - ACTIONS(7042), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7044), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7048), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4522), 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, - [177539] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(5554), 1, - anon_sym_COLON_COLON, - ACTIONS(7164), 1, - sym_identifier, - ACTIONS(7166), 1, - anon_sym_LPAREN2, - ACTIONS(7170), 1, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, anon_sym_requires, - STATE(4371), 1, - sym_template_type, - STATE(4782), 1, - sym_lambda_capture_specifier, - STATE(5354), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7270), 2, - sym_true, - sym_false, - STATE(5290), 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, - [177587] = 13, + [177146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4467), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4465), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4477), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177202] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(2865), 1, - anon_sym_COLON_COLON, ACTIONS(7090), 1, sym_identifier, ACTIONS(7092), 1, anon_sym_LPAREN2, - ACTIONS(7096), 1, - anon_sym_requires, - STATE(3311), 1, - sym_template_type, - STATE(4773), 1, - sym_lambda_capture_specifier, - STATE(5396), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7272), 2, - sym_true, - sym_false, - STATE(5186), 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, - [177635] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(7094), 1, anon_sym_COLON_COLON, - ACTIONS(7164), 1, - sym_identifier, - ACTIONS(7166), 1, - anon_sym_LPAREN2, - ACTIONS(7170), 1, + ACTIONS(7098), 1, anon_sym_requires, - STATE(4371), 1, + STATE(2940), 1, sym_template_type, - STATE(4782), 1, + STATE(4785), 1, sym_lambda_capture_specifier, - STATE(5354), 1, + STATE(5383), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7274), 2, + ACTIONS(7106), 2, sym_true, sym_false, - STATE(5267), 8, + STATE(1893), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -372296,22 +373207,20 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [177683] = 5, + [177250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7086), 1, - anon_sym_LBRACE, - STATE(4060), 1, - sym_enumerator_list, - ACTIONS(4197), 3, + ACTIONS(4491), 2, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(4195), 15, + ACTIONS(4489), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -372319,132 +373228,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, sym_auto, anon_sym_decltype, + anon_sym_try, anon_sym_requires, - [177715] = 13, + [177278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(7006), 1, - anon_sym_requires, - ACTIONS(7138), 1, - anon_sym_LPAREN2, - ACTIONS(7202), 1, - sym_identifier, - ACTIONS(7204), 1, - anon_sym_COLON_COLON, - STATE(2776), 1, - sym_template_type, - STATE(4769), 1, - sym_lambda_capture_specifier, - STATE(5345), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7276), 2, - sym_true, - sym_false, - STATE(5316), 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, - [177763] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7058), 1, - anon_sym_SLASH, - ACTIONS(7060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7062), 1, - anon_sym_AMP_AMP, - ACTIONS(7064), 1, - anon_sym_PIPE, - ACTIONS(7066), 1, - anon_sym_CARET, - ACTIONS(7068), 1, + ACTIONS(4511), 2, anon_sym_AMP, - ACTIONS(7054), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7056), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7070), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7072), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7074), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7076), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7278), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [177813] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(7006), 1, - anon_sym_requires, - ACTIONS(7138), 1, - anon_sym_LPAREN2, - ACTIONS(7202), 1, - sym_identifier, - ACTIONS(7204), 1, - anon_sym_COLON_COLON, - STATE(2776), 1, - sym_template_type, - STATE(4769), 1, - sym_lambda_capture_specifier, - STATE(5345), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7140), 2, - sym_true, - sym_false, - STATE(3773), 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, - [177861] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7086), 1, - anon_sym_LBRACE, - STATE(3998), 1, - sym_enumerator_list, - ACTIONS(4229), 3, - anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(4227), 15, + ACTIONS(4509), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -372452,68 +373253,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177306] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6970), 1, anon_sym_COLON, + STATE(2646), 1, + sym__enum_base_clause, + STATE(2765), 1, + sym_enumerator_list, + ACTIONS(4205), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4203), 15, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, sym_auto, anon_sym_decltype, anon_sym_requires, - [177893] = 9, + [177340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7142), 1, - sym_identifier, - ACTIONS(7144), 1, + ACTIONS(6970), 1, + anon_sym_COLON, + STATE(2664), 1, + sym__enum_base_clause, + STATE(2816), 1, + sym_enumerator_list, + ACTIONS(4217), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4215), 15, anon_sym_LPAREN2, - ACTIONS(7146), 1, - anon_sym_defined, - ACTIONS(7280), 1, - sym_number_literal, - ACTIONS(7148), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7154), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4640), 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, - [177933] = 13, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [177374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4551), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4549), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4350), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4348), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4583), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4581), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4529), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177486] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4475), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4473), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4449), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4599), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4597), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4595), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4593), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4575), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4573), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4537), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177654] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(6537), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(6936), 1, - sym_identifier, - ACTIONS(6944), 1, + ACTIONS(6990), 1, anon_sym_requires, - ACTIONS(7194), 1, + ACTIONS(7108), 1, anon_sym_LPAREN2, - STATE(1936), 1, + ACTIONS(7202), 1, + sym_identifier, + STATE(2396), 1, sym_template_type, - STATE(4777), 1, + STATE(4775), 1, sym_lambda_capture_specifier, - STATE(5349), 1, + STATE(5389), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(7282), 2, + ACTIONS(7262), 2, sym_true, sym_false, - STATE(2820), 8, + STATE(5394), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -372522,30 +373598,130 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [177981] = 9, + [177702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7142), 1, - sym_identifier, - ACTIONS(7144), 1, + ACTIONS(4622), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4620), 18, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4364), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4362), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4591), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4589), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4379), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4377), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177814] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7144), 1, + sym_identifier, ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, anon_sym_defined, - ACTIONS(7284), 1, + ACTIONS(7264), 1, sym_number_literal, - ACTIONS(7148), 2, + ACTIONS(7150), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7150), 2, + ACTIONS(7152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7154), 5, + ACTIONS(7156), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4638), 7, + STATE(4650), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -372553,24 +373729,180 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [178021] = 9, + [177854] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, + ACTIONS(7144), 1, sym_identifier, - ACTIONS(7038), 1, + ACTIONS(7146), 1, anon_sym_LPAREN2, + ACTIONS(7148), 1, + anon_sym_defined, + ACTIONS(7266), 1, + sym_number_literal, + ACTIONS(7150), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7152), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7156), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4660), 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, + [177894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4387), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4385), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4507), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4505), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4517), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4587), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4585), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [178006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4360), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4358), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [178034] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7036), 1, + sym_identifier, ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(7042), 1, anon_sym_defined, - ACTIONS(7286), 1, + ACTIONS(7268), 1, sym_number_literal, - ACTIONS(7042), 2, + ACTIONS(7044), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7044), 2, + ACTIONS(7046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7048), 5, + ACTIONS(7050), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -372584,30 +373916,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [178061] = 9, + [178074] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7142), 1, - sym_identifier, - ACTIONS(7144), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(2861), 1, + anon_sym_COLON_COLON, + ACTIONS(7092), 1, anon_sym_LPAREN2, - ACTIONS(7146), 1, + ACTIONS(7098), 1, + anon_sym_requires, + ACTIONS(7104), 1, + sym_identifier, + STATE(3275), 1, + sym_template_type, + STATE(4773), 1, + sym_lambda_capture_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7270), 2, + sym_true, + sym_false, + STATE(5186), 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, + [178122] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7036), 1, + sym_identifier, + ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(7042), 1, anon_sym_defined, - ACTIONS(7288), 1, + ACTIONS(7272), 1, sym_number_literal, - ACTIONS(7148), 2, + ACTIONS(7044), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7150), 2, + ACTIONS(7046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7154), 5, + ACTIONS(7050), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4635), 7, + STATE(4522), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -372615,24 +373982,94 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [178101] = 9, + [178162] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7142), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(5561), 1, + anon_sym_COLON_COLON, + ACTIONS(7166), 1, sym_identifier, - ACTIONS(7144), 1, + ACTIONS(7168), 1, anon_sym_LPAREN2, + ACTIONS(7172), 1, + anon_sym_requires, + STATE(4359), 1, + sym_template_type, + STATE(4782), 1, + sym_lambda_capture_specifier, + STATE(5354), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7274), 2, + sym_true, + sym_false, + STATE(5290), 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, + [178210] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(5561), 1, + anon_sym_COLON_COLON, + ACTIONS(7166), 1, + sym_identifier, + ACTIONS(7168), 1, + anon_sym_LPAREN2, + ACTIONS(7172), 1, + anon_sym_requires, + STATE(4359), 1, + sym_template_type, + STATE(4782), 1, + sym_lambda_capture_specifier, + STATE(5354), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7276), 2, + sym_true, + sym_false, + STATE(5267), 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, + [178258] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7144), 1, + sym_identifier, ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, anon_sym_defined, - ACTIONS(7290), 1, + ACTIONS(7278), 1, sym_number_literal, - ACTIONS(7148), 2, + ACTIONS(7150), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7150), 2, + ACTIONS(7152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7154), 5, + ACTIONS(7156), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -372646,24 +374083,277 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [178141] = 9, + [178298] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7142), 1, - sym_identifier, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7146), 1, - anon_sym_defined, - ACTIONS(7292), 1, - sym_number_literal, - ACTIONS(7148), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7150), 2, + ACTIONS(7060), 1, + anon_sym_SLASH, + ACTIONS(7062), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7064), 1, + anon_sym_AMP_AMP, + ACTIONS(7066), 1, + anon_sym_PIPE, + ACTIONS(7068), 1, + anon_sym_CARET, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7056), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7154), 5, + ACTIONS(7058), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7072), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7074), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7076), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7280), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [178348] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + anon_sym_LBRACE, + STATE(4053), 1, + sym_enumerator_list, + ACTIONS(4239), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4237), 15, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [178380] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(7016), 1, + anon_sym_requires, + ACTIONS(7158), 1, + anon_sym_LPAREN2, + ACTIONS(7206), 1, + sym_identifier, + ACTIONS(7208), 1, + anon_sym_COLON_COLON, + STATE(2779), 1, + sym_template_type, + STATE(4769), 1, + sym_lambda_capture_specifier, + STATE(5345), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7282), 2, + sym_true, + sym_false, + STATE(5316), 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, + [178428] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(7016), 1, + anon_sym_requires, + ACTIONS(7158), 1, + anon_sym_LPAREN2, + ACTIONS(7206), 1, + sym_identifier, + ACTIONS(7208), 1, + anon_sym_COLON_COLON, + STATE(2779), 1, + sym_template_type, + STATE(4769), 1, + sym_lambda_capture_specifier, + STATE(5345), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7160), 2, + sym_true, + sym_false, + STATE(3767), 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, + [178476] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + anon_sym_LBRACE, + STATE(3848), 1, + sym_enumerator_list, + ACTIONS(4346), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4344), 15, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [178508] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7144), 1, + sym_identifier, + ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, + anon_sym_defined, + ACTIONS(7284), 1, + sym_number_literal, + ACTIONS(7150), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7152), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7156), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4640), 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, + [178548] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7144), 1, + sym_identifier, + ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, + anon_sym_defined, + ACTIONS(7286), 1, + sym_number_literal, + ACTIONS(7150), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7152), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7156), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4638), 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, + [178588] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7144), 1, + sym_identifier, + ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, + anon_sym_defined, + ACTIONS(7288), 1, + sym_number_literal, + ACTIONS(7150), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7152), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7156), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4635), 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, + [178628] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7144), 1, + sym_identifier, + ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, + anon_sym_defined, + ACTIONS(7290), 1, + sym_number_literal, + ACTIONS(7150), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7152), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7156), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -372677,59 +374367,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [178181] = 13, + [178668] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(1519), 1, - anon_sym_LBRACK, - ACTIONS(7092), 1, - anon_sym_LPAREN2, - ACTIONS(7096), 1, - anon_sym_requires, - ACTIONS(7158), 1, - sym_identifier, - ACTIONS(7160), 1, - anon_sym_COLON_COLON, - STATE(2956), 1, - sym_template_type, - STATE(4785), 1, - sym_lambda_capture_specifier, - STATE(5383), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7094), 2, - sym_true, - sym_false, - STATE(1916), 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, - [178229] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7142), 1, - sym_identifier, ACTIONS(7144), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, + anon_sym_defined, + ACTIONS(7292), 1, + sym_number_literal, + ACTIONS(7150), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7152), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7156), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4693), 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, + [178708] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7144), 1, + sym_identifier, + ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, anon_sym_defined, ACTIONS(7294), 1, sym_number_literal, - ACTIONS(7148), 2, + ACTIONS(7150), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7150), 2, + ACTIONS(7152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7154), 5, + ACTIONS(7156), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -372743,22 +374429,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [178269] = 13, + [178748] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(6996), 1, + ACTIONS(6990), 1, anon_sym_requires, - ACTIONS(7100), 1, + ACTIONS(7108), 1, anon_sym_LPAREN2, - ACTIONS(7110), 1, + ACTIONS(7116), 1, sym_identifier, - ACTIONS(7112), 1, + ACTIONS(7118), 1, anon_sym_COLON_COLON, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, STATE(4775), 1, sym_lambda_capture_specifier, @@ -372778,22 +374464,22 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [178317] = 13, + [178796] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, - ACTIONS(6960), 1, + ACTIONS(7026), 1, anon_sym_requires, ACTIONS(7298), 1, anon_sym_LPAREN2, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, STATE(4764), 1, sym_lambda_capture_specifier, @@ -372804,7 +374490,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7300), 2, sym_true, sym_false, - STATE(2510), 8, + STATE(2568), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -372813,22 +374499,22 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [178365] = 13, + [178844] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, ACTIONS(1519), 1, anon_sym_LBRACK, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, - ACTIONS(6960), 1, + ACTIONS(7026), 1, anon_sym_requires, ACTIONS(7298), 1, anon_sym_LPAREN2, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, STATE(4764), 1, sym_lambda_capture_specifier, @@ -372839,7 +374525,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7302), 2, sym_true, sym_false, - STATE(2509), 8, + STATE(2565), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -372848,24 +374534,24 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [178413] = 9, + [178892] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7142), 1, - sym_identifier, ACTIONS(7144), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, anon_sym_defined, ACTIONS(7304), 1, sym_number_literal, - ACTIONS(7148), 2, + ACTIONS(7150), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7150), 2, + ACTIONS(7152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7154), 5, + ACTIONS(7156), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -372879,24 +374565,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [178453] = 9, + [178932] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, + ACTIONS(7036), 1, sym_identifier, - ACTIONS(7038), 1, - anon_sym_LPAREN2, ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(7042), 1, anon_sym_defined, ACTIONS(7306), 1, sym_number_literal, - ACTIONS(7042), 2, + ACTIONS(7044), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7044), 2, + ACTIONS(7046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7048), 5, + ACTIONS(7050), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -372910,24 +374596,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [178493] = 9, + [178972] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7142), 1, - sym_identifier, ACTIONS(7144), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, anon_sym_defined, ACTIONS(7308), 1, sym_number_literal, - ACTIONS(7148), 2, + ACTIONS(7150), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7150), 2, + ACTIONS(7152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7154), 5, + ACTIONS(7156), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -372941,24 +374627,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [178533] = 9, + [179012] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7142), 1, - sym_identifier, ACTIONS(7144), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, anon_sym_defined, ACTIONS(7310), 1, sym_number_literal, - ACTIONS(7148), 2, + ACTIONS(7150), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7150), 2, + ACTIONS(7152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7154), 5, + ACTIONS(7156), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -372972,24 +374658,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [178573] = 9, + [179052] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7142), 1, - sym_identifier, ACTIONS(7144), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, anon_sym_defined, ACTIONS(7312), 1, sym_number_literal, - ACTIONS(7148), 2, + ACTIONS(7150), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7150), 2, + ACTIONS(7152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7154), 5, + ACTIONS(7156), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -373003,24 +374689,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [178613] = 9, + [179092] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7142), 1, - sym_identifier, ACTIONS(7144), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, anon_sym_defined, ACTIONS(7314), 1, sym_number_literal, - ACTIONS(7148), 2, + ACTIONS(7150), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7150), 2, + ACTIONS(7152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7154), 5, + ACTIONS(7156), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -373034,24 +374720,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [178653] = 9, + [179132] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7142), 1, - sym_identifier, ACTIONS(7144), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(7146), 1, + anon_sym_LPAREN2, + ACTIONS(7148), 1, anon_sym_defined, ACTIONS(7316), 1, sym_number_literal, - ACTIONS(7148), 2, + ACTIONS(7150), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(7150), 2, + ACTIONS(7152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7154), 5, + ACTIONS(7156), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -373065,26 +374751,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [178693] = 18, + [179172] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3994), 1, + STATE(3827), 1, sym_field_declaration_list, STATE(4725), 1, sym_ms_declspec_modifier, @@ -373098,32 +374784,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3487), 2, + STATE(3459), 2, sym__class_name, sym_qualified_type_identifier, - [178750] = 18, + [179229] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3532), 1, + STATE(3465), 1, sym_field_declaration_list, STATE(4706), 1, sym_ms_declspec_modifier, @@ -373137,14 +374823,14 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3548), 2, + STATE(3556), 2, sym__class_name, sym_qualified_type_identifier, - [178807] = 12, - ACTIONS(7080), 1, + [179286] = 12, + ACTIONS(7086), 1, sym_comment, ACTIONS(7318), 1, anon_sym_LF, @@ -373176,24 +374862,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [178852] = 18, + [179331] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(7012), 1, + ACTIONS(6952), 1, sym_identifier, - STATE(2152), 1, + STATE(2100), 1, sym_template_type, STATE(2653), 1, sym_field_declaration_list, @@ -373209,14 +374895,14 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1915), 2, + STATE(1951), 2, sym__class_name, sym_qualified_type_identifier, - [178909] = 12, - ACTIONS(7080), 1, + [179388] = 12, + ACTIONS(7086), 1, sym_comment, ACTIONS(7324), 1, anon_sym_PIPE_PIPE, @@ -373248,8 +374934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [178954] = 12, - ACTIONS(7080), 1, + [179433] = 12, + ACTIONS(7086), 1, sym_comment, ACTIONS(7324), 1, anon_sym_PIPE_PIPE, @@ -373281,10 +374967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [178999] = 5, - ACTIONS(7080), 1, + [179478] = 5, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7106), 1, + ACTIONS(7100), 1, anon_sym_LF, ACTIONS(7320), 2, anon_sym_DASH, @@ -373293,7 +374979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7108), 13, + ACTIONS(7102), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -373307,24 +374993,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [179030] = 18, + [179509] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(7012), 1, + ACTIONS(6952), 1, sym_identifier, - STATE(2152), 1, + STATE(2100), 1, sym_template_type, STATE(2654), 1, sym_field_declaration_list, @@ -373340,32 +375026,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1926), 2, + STATE(1944), 2, sym__class_name, sym_qualified_type_identifier, - [179087] = 18, + [179566] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(6998), 1, + ACTIONS(7008), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3171), 1, + STATE(3156), 1, sym_field_declaration_list, STATE(4727), 1, sym_ms_declspec_modifier, @@ -373379,16 +375065,16 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2528), 2, + STATE(2540), 2, sym__class_name, sym_qualified_type_identifier, - [179144] = 6, - ACTIONS(7080), 1, + [179623] = 6, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7106), 1, + ACTIONS(7100), 1, anon_sym_LF, ACTIONS(7320), 2, anon_sym_DASH, @@ -373400,7 +375086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7108), 11, + ACTIONS(7102), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -373412,12 +375098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [179177] = 3, - ACTIONS(7080), 1, + [179656] = 3, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7184), 1, + ACTIONS(7186), 1, anon_sym_LF, - ACTIONS(7186), 18, + ACTIONS(7188), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373436,10 +375122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [179204] = 7, - ACTIONS(7080), 1, + [179683] = 7, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7106), 1, + ACTIONS(7100), 1, anon_sym_LF, ACTIONS(7320), 2, anon_sym_DASH, @@ -373456,7 +375142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7108), 7, + ACTIONS(7102), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -373464,26 +375150,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [179239] = 18, + [179718] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3533), 1, + STATE(3458), 1, sym_field_declaration_list, STATE(4741), 1, sym_ms_declspec_modifier, @@ -373497,30 +375183,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3574), 2, + STATE(3560), 2, sym__class_name, sym_qualified_type_identifier, - [179296] = 18, + [179775] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(7012), 1, + ACTIONS(6952), 1, sym_identifier, - STATE(2152), 1, + STATE(2100), 1, sym_template_type, STATE(2655), 1, sym_field_declaration_list, @@ -373536,16 +375222,16 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1931), 2, + STATE(1941), 2, sym__class_name, sym_qualified_type_identifier, - [179353] = 8, - ACTIONS(7080), 1, + [179832] = 8, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7106), 1, + ACTIONS(7100), 1, anon_sym_LF, ACTIONS(7320), 2, anon_sym_DASH, @@ -373565,18 +375251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7108), 5, + ACTIONS(7102), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [179390] = 3, - ACTIONS(7080), 1, + [179869] = 3, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7190), 1, + ACTIONS(7194), 1, anon_sym_LF, - ACTIONS(7192), 18, + ACTIONS(7196), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373595,26 +375281,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [179417] = 18, + [179896] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3532), 1, + STATE(3465), 1, sym_field_declaration_list, STATE(4744), 1, sym_ms_declspec_modifier, @@ -373628,53 +375314,53 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3569), 2, + STATE(3550), 2, sym__class_name, sym_qualified_type_identifier, - [179474] = 14, + [179953] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7058), 1, - anon_sym_SLASH, ACTIONS(7060), 1, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, ACTIONS(7062), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(7064), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(7066), 1, - anon_sym_CARET, + anon_sym_PIPE, ACTIONS(7068), 1, + anon_sym_CARET, + ACTIONS(7070), 1, anon_sym_AMP, ACTIONS(7344), 1, anon_sym_RPAREN, - ACTIONS(7054), 2, + ACTIONS(7056), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7056), 2, + ACTIONS(7058), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7070), 2, + ACTIONS(7072), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7072), 2, + ACTIONS(7074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7074), 2, + ACTIONS(7076), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7076), 2, + ACTIONS(7078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [179523] = 19, + [180002] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6966), 1, + ACTIONS(6950), 1, anon_sym_COLON, ACTIONS(7346), 1, anon_sym_COMMA, @@ -373690,15 +375376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7358), 1, anon_sym_try, - STATE(2073), 1, - sym_try_statement, - STATE(2074), 1, - sym_delete_method_clause, - STATE(2076), 1, - sym_default_method_clause, - STATE(2081), 1, + STATE(1993), 1, sym_compound_statement, - STATE(4071), 1, + STATE(1996), 1, + sym_default_method_clause, + STATE(2017), 1, + sym_delete_method_clause, + STATE(2026), 1, + sym_try_statement, + STATE(4073), 1, sym_parameter_list, STATE(5308), 1, aux_sym_field_declaration_repeat1, @@ -373709,26 +375395,26 @@ static const uint16_t ts_small_parse_table[] = { STATE(5120), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [179582] = 18, + [180061] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3465), 1, + STATE(3467), 1, sym_field_declaration_list, STATE(4713), 1, sym_ms_declspec_modifier, @@ -373742,32 +375428,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3542), 2, + STATE(3554), 2, sym__class_name, sym_qualified_type_identifier, - [179639] = 18, + [180118] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3465), 1, + STATE(3467), 1, sym_field_declaration_list, STATE(4719), 1, sym_ms_declspec_modifier, @@ -373781,16 +375467,16 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3300), 2, + STATE(3291), 2, sym__class_name, sym_qualified_type_identifier, - [179696] = 9, - ACTIONS(7080), 1, + [180175] = 9, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7106), 1, + ACTIONS(7100), 1, anon_sym_LF, ACTIONS(7332), 1, anon_sym_AMP, @@ -373807,7 +375493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7108), 4, + ACTIONS(7102), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -373817,10 +375503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [179735] = 10, - ACTIONS(7080), 1, + [180214] = 10, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7106), 1, + ACTIONS(7100), 1, anon_sym_LF, ACTIONS(7330), 1, anon_sym_CARET, @@ -373835,7 +375521,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7108), 3, + ACTIONS(7102), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -373848,26 +375534,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [179776] = 18, + [180255] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3465), 1, + STATE(3467), 1, sym_field_declaration_list, STATE(4713), 1, sym_ms_declspec_modifier, @@ -373881,16 +375567,16 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3575), 2, + STATE(3549), 2, sym__class_name, sym_qualified_type_identifier, - [179833] = 11, - ACTIONS(7080), 1, + [180312] = 11, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7106), 1, + ACTIONS(7100), 1, anon_sym_LF, ACTIONS(7328), 1, anon_sym_PIPE, @@ -373898,7 +375584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(7332), 1, anon_sym_AMP, - ACTIONS(7108), 2, + ACTIONS(7102), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, ACTIONS(7320), 2, @@ -373919,12 +375605,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [179876] = 12, - ACTIONS(7080), 1, + [180355] = 12, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7106), 1, + ACTIONS(7100), 1, anon_sym_LF, - ACTIONS(7108), 1, + ACTIONS(7102), 1, anon_sym_PIPE_PIPE, ACTIONS(7326), 1, anon_sym_AMP_AMP, @@ -373952,26 +375638,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [179921] = 18, + [180400] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3532), 1, + STATE(3465), 1, sym_field_declaration_list, STATE(4744), 1, sym_ms_declspec_modifier, @@ -373985,32 +375671,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3579), 2, + STATE(3512), 2, sym__class_name, sym_qualified_type_identifier, - [179978] = 18, + [180457] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3533), 1, + STATE(3458), 1, sym_field_declaration_list, STATE(4741), 1, sym_ms_declspec_modifier, @@ -374024,18 +375710,18 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3580), 2, + STATE(3515), 2, sym__class_name, sym_qualified_type_identifier, - [180035] = 3, - ACTIONS(7080), 1, + [180514] = 3, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7106), 1, + ACTIONS(7100), 1, anon_sym_LF, - ACTIONS(7108), 18, + ACTIONS(7102), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374054,26 +375740,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [180062] = 18, + [180541] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3532), 1, + STATE(3465), 1, sym_field_declaration_list, STATE(4712), 1, sym_ms_declspec_modifier, @@ -374087,22 +375773,22 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3302), 2, + STATE(3288), 2, sym__class_name, sym_qualified_type_identifier, - [180119] = 4, - ACTIONS(7080), 1, + [180598] = 4, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7106), 1, + ACTIONS(7100), 1, anon_sym_LF, ACTIONS(7322), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7108), 15, + ACTIONS(7102), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE_PIPE, @@ -374118,12 +375804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [180148] = 3, - ACTIONS(7080), 1, + [180627] = 3, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7178), 1, + ACTIONS(7180), 1, anon_sym_LF, - ACTIONS(7180), 18, + ACTIONS(7182), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374142,8 +375828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [180175] = 12, - ACTIONS(7080), 1, + [180654] = 12, + ACTIONS(7086), 1, sym_comment, ACTIONS(7324), 1, anon_sym_PIPE_PIPE, @@ -374175,26 +375861,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [180220] = 18, + [180699] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(6998), 1, + ACTIONS(7008), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3170), 1, + STATE(3155), 1, sym_field_declaration_list, STATE(4733), 1, sym_ms_declspec_modifier, @@ -374208,32 +375894,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2529), 2, + STATE(2541), 2, sym__class_name, sym_qualified_type_identifier, - [180277] = 18, + [180756] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3533), 1, + STATE(3458), 1, sym_field_declaration_list, STATE(4746), 1, sym_ms_declspec_modifier, @@ -374247,32 +375933,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3291), 2, + STATE(3287), 2, sym__class_name, sym_qualified_type_identifier, - [180334] = 18, + [180813] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3465), 1, + STATE(3467), 1, sym_field_declaration_list, STATE(4713), 1, sym_ms_declspec_modifier, @@ -374286,32 +375972,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3300), 2, + STATE(3291), 2, sym__class_name, sym_qualified_type_identifier, - [180391] = 18, + [180870] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3532), 1, + STATE(3465), 1, sym_field_declaration_list, STATE(4744), 1, sym_ms_declspec_modifier, @@ -374325,32 +376011,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3302), 2, + STATE(3288), 2, sym__class_name, sym_qualified_type_identifier, - [180448] = 18, + [180927] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(7198), 1, + ACTIONS(7202), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2862), 1, + STATE(2864), 1, sym_field_declaration_list, STATE(4724), 1, sym_ms_declspec_modifier, @@ -374364,32 +376050,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2125), 2, + STATE(2112), 2, sym__class_name, sym_qualified_type_identifier, - [180505] = 18, + [180984] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3533), 1, + STATE(3458), 1, sym_field_declaration_list, STATE(4741), 1, sym_ms_declspec_modifier, @@ -374403,18 +376089,18 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3291), 2, + STATE(3287), 2, sym__class_name, sym_qualified_type_identifier, - [180562] = 3, - ACTIONS(7080), 1, + [181041] = 3, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7128), 1, + ACTIONS(7130), 1, anon_sym_LF, - ACTIONS(7130), 18, + ACTIONS(7132), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374433,8 +376119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [180589] = 12, - ACTIONS(7080), 1, + [181068] = 12, + ACTIONS(7086), 1, sym_comment, ACTIONS(7324), 1, anon_sym_PIPE_PIPE, @@ -374466,8 +376152,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [180634] = 12, - ACTIONS(7080), 1, + [181113] = 12, + ACTIONS(7086), 1, sym_comment, ACTIONS(7324), 1, anon_sym_PIPE_PIPE, @@ -374499,26 +376185,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [180679] = 18, + [181158] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(7198), 1, + ACTIONS(7202), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2863), 1, + STATE(2865), 1, sym_field_declaration_list, STATE(4736), 1, sym_ms_declspec_modifier, @@ -374532,32 +376218,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2122), 2, + STATE(2102), 2, sym__class_name, sym_qualified_type_identifier, - [180736] = 18, + [181215] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3465), 1, + STATE(3467), 1, sym_field_declaration_list, STATE(4713), 1, sym_ms_declspec_modifier, @@ -374571,32 +376257,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3541), 2, + STATE(3536), 2, sym__class_name, sym_qualified_type_identifier, - [180793] = 18, + [181272] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3995), 1, + STATE(3828), 1, sym_field_declaration_list, STATE(4739), 1, sym_ms_declspec_modifier, @@ -374610,32 +376296,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3490), 2, + STATE(3455), 2, sym__class_name, sym_qualified_type_identifier, - [180850] = 18, + [181329] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3996), 1, + STATE(3829), 1, sym_field_declaration_list, STATE(4732), 1, sym_ms_declspec_modifier, @@ -374649,18 +376335,18 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3498), 2, + STATE(3437), 2, sym__class_name, sym_qualified_type_identifier, - [180907] = 3, - ACTIONS(7080), 1, + [181386] = 3, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7132), 1, + ACTIONS(7134), 1, anon_sym_LF, - ACTIONS(7134), 18, + ACTIONS(7136), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374679,26 +376365,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [180934] = 18, + [181413] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3532), 1, + STATE(3465), 1, sym_field_declaration_list, STATE(4744), 1, sym_ms_declspec_modifier, @@ -374712,23 +376398,23 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3561), 2, + STATE(3523), 2, sym__class_name, sym_qualified_type_identifier, - [180991] = 5, + [181470] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7366), 1, anon_sym_LPAREN2, STATE(3052), 1, sym_argument_list, - ACTIONS(4203), 2, + ACTIONS(4342), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4201), 15, + ACTIONS(4340), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -374744,26 +376430,26 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [181022] = 18, + [181501] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(6998), 1, + ACTIONS(7008), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3172), 1, + STATE(3157), 1, sym_field_declaration_list, STATE(4723), 1, sym_ms_declspec_modifier, @@ -374777,14 +376463,14 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2525), 2, + STATE(2539), 2, sym__class_name, sym_qualified_type_identifier, - [181079] = 12, - ACTIONS(7080), 1, + [181558] = 12, + ACTIONS(7086), 1, sym_comment, ACTIONS(7324), 1, anon_sym_PIPE_PIPE, @@ -374816,26 +376502,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [181124] = 18, + [181603] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4199), 1, - anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(4227), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6598), 1, + ACTIONS(6551), 1, anon_sym_COLON_COLON, - ACTIONS(6974), 1, + ACTIONS(6994), 1, sym_identifier, - STATE(2191), 1, + STATE(2349), 1, sym_template_type, - STATE(2840), 1, + STATE(2811), 1, sym_field_declaration_list, STATE(4703), 1, sym_ms_declspec_modifier, @@ -374849,32 +376535,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1973), 2, + STATE(1974), 2, sym__class_name, sym_qualified_type_identifier, - [181181] = 18, + [181660] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(7198), 1, + ACTIONS(7202), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2864), 1, + STATE(2866), 1, sym_field_declaration_list, STATE(4738), 1, sym_ms_declspec_modifier, @@ -374888,32 +376574,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2117), 2, + STATE(2090), 2, sym__class_name, sym_qualified_type_identifier, - [181238] = 18, + [181717] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3533), 1, + STATE(3458), 1, sym_field_declaration_list, STATE(4741), 1, sym_ms_declspec_modifier, @@ -374927,32 +376613,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3562), 2, + STATE(3525), 2, sym__class_name, sym_qualified_type_identifier, - [181295] = 18, + [181774] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - ACTIONS(7164), 1, + ACTIONS(7166), 1, sym_identifier, - STATE(4371), 1, + STATE(4359), 1, sym_template_type, - STATE(4497), 1, + STATE(4495), 1, sym_field_declaration_list, STATE(4708), 1, sym_ms_declspec_modifier, @@ -374966,32 +376652,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(4338), 2, + STATE(4349), 2, sym__class_name, sym_qualified_type_identifier, - [181352] = 18, + [181831] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6988), 1, + ACTIONS(6982), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2862), 1, + STATE(2864), 1, sym_field_declaration_list, STATE(4740), 1, sym_ms_declspec_modifier, @@ -375005,32 +376691,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2125), 2, + STATE(2112), 2, sym__class_name, sym_qualified_type_identifier, - [181409] = 18, + [181888] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6988), 1, + ACTIONS(6982), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2864), 1, + STATE(2866), 1, sym_field_declaration_list, STATE(4716), 1, sym_ms_declspec_modifier, @@ -375044,32 +376730,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2117), 2, + STATE(2090), 2, sym__class_name, sym_qualified_type_identifier, - [181466] = 18, + [181945] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3533), 1, + STATE(3458), 1, sym_field_declaration_list, STATE(4714), 1, sym_ms_declspec_modifier, @@ -375083,32 +376769,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3550), 2, + STATE(3553), 2, sym__class_name, sym_qualified_type_identifier, - [181523] = 18, + [182002] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - ACTIONS(7164), 1, + ACTIONS(7166), 1, sym_identifier, - STATE(4371), 1, + STATE(4359), 1, sym_template_type, - STATE(4496), 1, + STATE(4491), 1, sym_field_declaration_list, STATE(4715), 1, sym_ms_declspec_modifier, @@ -375122,32 +376808,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(4336), 2, + STATE(4346), 2, sym__class_name, sym_qualified_type_identifier, - [181580] = 18, + [182059] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4199), 1, - anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(4227), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6598), 1, + ACTIONS(6551), 1, anon_sym_COLON_COLON, - ACTIONS(6974), 1, + ACTIONS(6994), 1, sym_identifier, - STATE(2191), 1, + STATE(2349), 1, sym_template_type, - STATE(2715), 1, + STATE(2800), 1, sym_field_declaration_list, STATE(4748), 1, sym_ms_declspec_modifier, @@ -375161,32 +376847,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1975), 2, + STATE(1976), 2, sym__class_name, sym_qualified_type_identifier, - [181637] = 18, + [182116] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3532), 1, + STATE(3465), 1, sym_field_declaration_list, STATE(4710), 1, sym_ms_declspec_modifier, @@ -375200,32 +376886,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3548), 2, + STATE(3556), 2, sym__class_name, sym_qualified_type_identifier, - [181694] = 18, + [182173] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3465), 1, + STATE(3467), 1, sym_field_declaration_list, STATE(4709), 1, sym_ms_declspec_modifier, @@ -375239,18 +376925,18 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3545), 2, + STATE(3558), 2, sym__class_name, sym_qualified_type_identifier, - [181751] = 3, - ACTIONS(7080), 1, + [182230] = 3, + ACTIONS(7086), 1, sym_comment, - ACTIONS(7234), 1, + ACTIONS(7240), 1, anon_sym_LF, - ACTIONS(7236), 18, + ACTIONS(7242), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375269,26 +376955,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [181778] = 18, + [182257] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - ACTIONS(7164), 1, + ACTIONS(7166), 1, sym_identifier, - STATE(4371), 1, + STATE(4359), 1, sym_template_type, - STATE(4491), 1, + STATE(4490), 1, sym_field_declaration_list, STATE(4734), 1, sym_ms_declspec_modifier, @@ -375302,348 +376988,14 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(4326), 2, + STATE(4312), 2, sym__class_name, sym_qualified_type_identifier, - [181835] = 3, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(7238), 1, - anon_sym_LF, - ACTIONS(7240), 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, - [181862] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5696), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6966), 1, - anon_sym_COLON, - ACTIONS(7346), 1, - anon_sym_COMMA, - ACTIONS(7348), 1, - anon_sym_LPAREN2, - ACTIONS(7354), 1, - anon_sym_LBRACK, - ACTIONS(7371), 1, - anon_sym_SEMI, - ACTIONS(7373), 1, - anon_sym_LBRACE, - ACTIONS(7375), 1, - anon_sym_EQ, - ACTIONS(7377), 1, - anon_sym_try, - STATE(2277), 1, - sym_compound_statement, - STATE(2279), 1, - sym_default_method_clause, - STATE(2282), 1, - sym_delete_method_clause, - STATE(2285), 1, - sym_try_statement, - STATE(4071), 1, - sym_parameter_list, - STATE(5333), 1, - aux_sym_field_declaration_repeat1, - STATE(6639), 1, - sym_bitfield_clause, - STATE(6647), 1, - sym_initializer_list, - STATE(5120), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [181921] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(4199), 1, - anon_sym_LBRACE, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(5435), 1, - anon_sym_COLON, - ACTIONS(6598), 1, - anon_sym_COLON_COLON, - ACTIONS(6974), 1, - sym_identifier, - STATE(2191), 1, - sym_template_type, - STATE(2811), 1, - sym_field_declaration_list, - STATE(4751), 1, - sym_ms_declspec_modifier, - STATE(4872), 1, - sym_attribute_declaration, - STATE(5352), 1, - sym__scope_resolution, - STATE(5554), 1, - sym_virtual_specifier, - STATE(6229), 1, - sym_base_class_clause, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - STATE(1977), 2, - sym__class_name, - sym_qualified_type_identifier, - [181978] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(4423), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - ACTIONS(6477), 1, - anon_sym_COLON_COLON, - ACTIONS(6988), 1, - sym_identifier, - STATE(2422), 1, - sym_template_type, - STATE(2863), 1, - sym_field_declaration_list, - STATE(4747), 1, - sym_ms_declspec_modifier, - STATE(4834), 1, - sym_attribute_declaration, - STATE(5445), 1, - sym__scope_resolution, - STATE(5527), 1, - sym_virtual_specifier, - STATE(6488), 1, - sym_base_class_clause, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - STATE(2122), 2, - sym__class_name, - sym_qualified_type_identifier, - [182035] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - ACTIONS(7090), 1, - sym_identifier, - ACTIONS(7379), 1, - anon_sym_COLON_COLON, - STATE(3311), 1, - sym_template_type, - STATE(3465), 1, - sym_field_declaration_list, - STATE(4737), 1, - sym_ms_declspec_modifier, - STATE(4796), 1, - sym_attribute_declaration, - STATE(5414), 1, - sym__scope_resolution, - STATE(5624), 1, - sym_virtual_specifier, - STATE(6552), 1, - sym_base_class_clause, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - STATE(4964), 2, - sym__class_name, - sym_qualified_type_identifier, - [182092] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5696), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6966), 1, - anon_sym_COLON, - ACTIONS(7346), 1, - anon_sym_COMMA, - ACTIONS(7348), 1, - anon_sym_LPAREN2, - ACTIONS(7354), 1, - anon_sym_LBRACK, - ACTIONS(7381), 1, - anon_sym_SEMI, - ACTIONS(7383), 1, - anon_sym_LBRACE, - ACTIONS(7385), 1, - anon_sym_EQ, - ACTIONS(7387), 1, - anon_sym_try, - STATE(2206), 1, - sym_default_method_clause, - STATE(2391), 1, - sym_compound_statement, - STATE(2393), 1, - sym_delete_method_clause, - STATE(2394), 1, - sym_try_statement, - STATE(4071), 1, - sym_parameter_list, - STATE(5326), 1, - aux_sym_field_declaration_repeat1, - STATE(6916), 1, - sym_initializer_list, - STATE(6918), 1, - sym_bitfield_clause, - STATE(5120), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [182151] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - ACTIONS(7090), 1, - sym_identifier, - ACTIONS(7379), 1, - anon_sym_COLON_COLON, - STATE(3311), 1, - sym_template_type, - STATE(3532), 1, - sym_field_declaration_list, - STATE(4750), 1, - sym_ms_declspec_modifier, - STATE(4881), 1, - sym_attribute_declaration, - STATE(5414), 1, - sym__scope_resolution, - STATE(5693), 1, - sym_virtual_specifier, - STATE(6505), 1, - sym_base_class_clause, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - STATE(4966), 2, - sym__class_name, - sym_qualified_type_identifier, - [182208] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(4215), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, - anon_sym___declspec, - ACTIONS(5433), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_COLON, - ACTIONS(7090), 1, - sym_identifier, - ACTIONS(7379), 1, - anon_sym_COLON_COLON, - STATE(3311), 1, - sym_template_type, - STATE(3533), 1, - sym_field_declaration_list, - STATE(4721), 1, - sym_ms_declspec_modifier, - STATE(4856), 1, - sym_attribute_declaration, - STATE(5414), 1, - sym__scope_resolution, - STATE(5729), 1, - sym_virtual_specifier, - STATE(6466), 1, - sym_base_class_clause, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(5437), 2, - anon_sym_final, - anon_sym_override, - STATE(4968), 2, - sym__class_name, - sym_qualified_type_identifier, - [182265] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7058), 1, - anon_sym_SLASH, - ACTIONS(7060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7062), 1, - anon_sym_AMP_AMP, - ACTIONS(7064), 1, - anon_sym_PIPE, - ACTIONS(7066), 1, - anon_sym_CARET, - ACTIONS(7068), 1, - anon_sym_AMP, - ACTIONS(7389), 1, - anon_sym_RPAREN, - ACTIONS(7054), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7056), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7070), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7072), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7074), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7076), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, [182314] = 3, - ACTIONS(7080), 1, + ACTIONS(7086), 1, sym_comment, ACTIONS(7244), 1, anon_sym_LF, @@ -375666,26 +377018,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [182341] = 18, + [182341] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5645), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6950), 1, + anon_sym_COLON, + ACTIONS(7346), 1, + anon_sym_COMMA, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + ACTIONS(7371), 1, + anon_sym_SEMI, + ACTIONS(7373), 1, + anon_sym_LBRACE, + ACTIONS(7375), 1, + anon_sym_EQ, + ACTIONS(7377), 1, + anon_sym_try, + STATE(2179), 1, + sym_delete_method_clause, + STATE(2210), 1, + sym_compound_statement, + STATE(2222), 1, + sym_default_method_clause, + STATE(2234), 1, + sym_try_statement, + STATE(4073), 1, + sym_parameter_list, + STATE(5333), 1, + aux_sym_field_declaration_repeat1, + STATE(6639), 1, + sym_bitfield_clause, + STATE(6647), 1, + sym_initializer_list, + STATE(5120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [182400] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4836), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5584), 1, + ACTIONS(6551), 1, + anon_sym_COLON_COLON, + ACTIONS(6994), 1, + sym_identifier, + STATE(2349), 1, + sym_template_type, + STATE(2783), 1, + sym_field_declaration_list, + STATE(4751), 1, + sym_ms_declspec_modifier, + STATE(4872), 1, + sym_attribute_declaration, + STATE(5352), 1, + sym__scope_resolution, + STATE(5554), 1, + sym_virtual_specifier, + STATE(6229), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + STATE(1978), 2, + sym__class_name, + sym_qualified_type_identifier, + [182457] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4366), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + ACTIONS(6503), 1, + anon_sym_COLON_COLON, + ACTIONS(6982), 1, + sym_identifier, + STATE(2396), 1, + sym_template_type, + STATE(2865), 1, + sym_field_declaration_list, + STATE(4747), 1, + sym_ms_declspec_modifier, + STATE(4834), 1, + sym_attribute_declaration, + STATE(5445), 1, + sym__scope_resolution, + STATE(5527), 1, + sym_virtual_specifier, + STATE(6488), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + STATE(2102), 2, + sym__class_name, + sym_qualified_type_identifier, + [182514] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + ACTIONS(7104), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3275), 1, + sym_template_type, + STATE(3467), 1, + sym_field_declaration_list, + STATE(4737), 1, + sym_ms_declspec_modifier, + STATE(4796), 1, + sym_attribute_declaration, + STATE(5414), 1, + sym__scope_resolution, + STATE(5624), 1, + sym_virtual_specifier, + STATE(6552), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + STATE(4964), 2, + sym__class_name, + sym_qualified_type_identifier, + [182571] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5645), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6950), 1, + anon_sym_COLON, + ACTIONS(7346), 1, + anon_sym_COMMA, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + ACTIONS(7381), 1, + anon_sym_SEMI, + ACTIONS(7383), 1, + anon_sym_LBRACE, + ACTIONS(7385), 1, + anon_sym_EQ, + ACTIONS(7387), 1, + anon_sym_try, + STATE(2273), 1, + sym_try_statement, + STATE(2277), 1, + sym_delete_method_clause, + STATE(2280), 1, + sym_default_method_clause, + STATE(2282), 1, + sym_compound_statement, + STATE(4073), 1, + sym_parameter_list, + STATE(5326), 1, + aux_sym_field_declaration_repeat1, + STATE(6916), 1, + sym_initializer_list, + STATE(6918), 1, + sym_bitfield_clause, + STATE(5120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [182630] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + ACTIONS(7104), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3275), 1, + sym_template_type, + STATE(3465), 1, + sym_field_declaration_list, + STATE(4750), 1, + sym_ms_declspec_modifier, + STATE(4881), 1, + sym_attribute_declaration, + STATE(5414), 1, + sym__scope_resolution, + STATE(5693), 1, + sym_virtual_specifier, + STATE(6505), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + STATE(4966), 2, + sym__class_name, + sym_qualified_type_identifier, + [182687] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(5428), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + ACTIONS(7104), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3275), 1, + sym_template_type, + STATE(3458), 1, + sym_field_declaration_list, + STATE(4721), 1, + sym_ms_declspec_modifier, + STATE(4856), 1, + sym_attribute_declaration, + STATE(5414), 1, + sym__scope_resolution, + STATE(5729), 1, + sym_virtual_specifier, + STATE(6466), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5432), 2, + anon_sym_final, + anon_sym_override, + STATE(4968), 2, + sym__class_name, + sym_qualified_type_identifier, + [182744] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7060), 1, + anon_sym_SLASH, + ACTIONS(7062), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7064), 1, + anon_sym_AMP_AMP, + ACTIONS(7066), 1, + anon_sym_PIPE, + ACTIONS(7068), 1, + anon_sym_CARET, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7389), 1, + anon_sym_RPAREN, + ACTIONS(7056), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7058), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7072), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7074), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7076), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [182793] = 3, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(7248), 1, + anon_sym_LF, + ACTIONS(7250), 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, + [182820] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4169), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4171), 1, + anon_sym___declspec, + ACTIONS(4926), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + anon_sym_COLON, + ACTIONS(5543), 1, anon_sym_COLON_COLON, ACTIONS(7391), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3172), 1, + STATE(3157), 1, sym_field_declaration_list, STATE(4753), 1, sym_ms_declspec_modifier, @@ -375699,32 +377385,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2525), 2, + STATE(2539), 2, sym__class_name, sym_qualified_type_identifier, - [182398] = 18, + [182877] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3994), 1, + STATE(3827), 1, sym_field_declaration_list, STATE(4722), 1, sym_ms_declspec_modifier, @@ -375738,32 +377424,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3487), 2, + STATE(3459), 2, sym__class_name, sym_qualified_type_identifier, - [182455] = 18, + [182934] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, - STATE(2236), 1, + STATE(2446), 1, sym_field_declaration_list, STATE(4730), 1, sym_ms_declspec_modifier, @@ -375777,32 +377463,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1872), 2, + STATE(1867), 2, sym__class_name, sym_qualified_type_identifier, - [182512] = 18, + [182991] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5584), 1, + ACTIONS(5543), 1, anon_sym_COLON_COLON, ACTIONS(7391), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3171), 1, + STATE(3156), 1, sym_field_declaration_list, STATE(4705), 1, sym_ms_declspec_modifier, @@ -375816,14 +377502,14 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2528), 2, + STATE(2540), 2, sym__class_name, sym_qualified_type_identifier, - [182569] = 12, - ACTIONS(7080), 1, + [183048] = 12, + ACTIONS(7086), 1, sym_comment, ACTIONS(7324), 1, anon_sym_PIPE_PIPE, @@ -375855,26 +377541,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [182614] = 18, + [183093] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3995), 1, + STATE(3828), 1, sym_field_declaration_list, STATE(4718), 1, sym_ms_declspec_modifier, @@ -375888,32 +377574,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3490), 2, + STATE(3455), 2, sym__class_name, sym_qualified_type_identifier, - [182671] = 18, + [183150] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3996), 1, + STATE(3829), 1, sym_field_declaration_list, STATE(4707), 1, sym_ms_declspec_modifier, @@ -375927,32 +377613,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3498), 2, + STATE(3437), 2, sym__class_name, sym_qualified_type_identifier, - [182728] = 18, + [183207] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, - STATE(2237), 1, + STATE(2371), 1, sym_field_declaration_list, STATE(4728), 1, sym_ms_declspec_modifier, @@ -375966,32 +377652,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1866), 2, + STATE(1856), 2, sym__class_name, sym_qualified_type_identifier, - [182785] = 18, + [183264] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, - STATE(2238), 1, + STATE(2359), 1, sym_field_declaration_list, STATE(4735), 1, sym_ms_declspec_modifier, @@ -376005,14 +377691,14 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1855), 2, + STATE(1874), 2, sym__class_name, sym_qualified_type_identifier, - [182842] = 12, - ACTIONS(7080), 1, + [183321] = 12, + ACTIONS(7086), 1, sym_comment, ACTIONS(7324), 1, anon_sym_PIPE_PIPE, @@ -376044,26 +377730,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [182887] = 18, + [183366] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3465), 1, + STATE(3467), 1, sym_field_declaration_list, STATE(4742), 1, sym_ms_declspec_modifier, @@ -376077,32 +377763,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3545), 2, + STATE(3558), 2, sym__class_name, sym_qualified_type_identifier, - [182944] = 18, + [183423] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5584), 1, + ACTIONS(5543), 1, anon_sym_COLON_COLON, ACTIONS(7391), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3170), 1, + STATE(3155), 1, sym_field_declaration_list, STATE(4704), 1, sym_ms_declspec_modifier, @@ -376116,26 +377802,26 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2529), 2, + STATE(2541), 2, sym__class_name, sym_qualified_type_identifier, - [183001] = 10, + [183480] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6437), 1, + ACTIONS(6443), 1, anon_sym_LPAREN2, - ACTIONS(6445), 1, + ACTIONS(6451), 1, anon_sym_LBRACK, - ACTIONS(6503), 1, + ACTIONS(6495), 1, anon_sym_STAR, - ACTIONS(6505), 1, + ACTIONS(6497), 1, anon_sym_AMP_AMP, - ACTIONS(6507), 1, + ACTIONS(6499), 1, anon_sym_AMP, - STATE(4208), 1, + STATE(4210), 1, sym_parameter_list, STATE(5198), 1, sym__abstract_declarator, @@ -376145,7 +377831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5712), 7, + ACTIONS(5734), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -376153,26 +377839,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [183042] = 18, + [183521] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2115), 1, + STATE(2148), 1, sym_field_declaration_list, STATE(4754), 1, sym_ms_declspec_modifier, @@ -376186,32 +377872,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1852), 2, + STATE(1850), 2, sym__class_name, sym_qualified_type_identifier, - [183099] = 18, + [183578] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3533), 1, + STATE(3458), 1, sym_field_declaration_list, STATE(4749), 1, sym_ms_declspec_modifier, @@ -376225,32 +377911,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3550), 2, + STATE(3553), 2, sym__class_name, sym_qualified_type_identifier, - [183156] = 18, + [183635] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2113), 1, + STATE(2149), 1, sym_field_declaration_list, STATE(4756), 1, sym_ms_declspec_modifier, @@ -376264,32 +377950,32 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1850), 2, + STATE(1849), 2, sym__class_name, sym_qualified_type_identifier, - [183213] = 18, + [183692] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4217), 1, + ACTIONS(4171), 1, anon_sym___declspec, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2112), 1, + STATE(2151), 1, sym_field_declaration_list, STATE(4745), 1, sym_ms_declspec_modifier, @@ -376303,18 +377989,18 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1849), 2, + STATE(1848), 2, sym__class_name, sym_qualified_type_identifier, - [183270] = 3, - ACTIONS(4726), 1, + [183749] = 3, + ACTIONS(4692), 1, anon_sym_LF, - ACTIONS(7080), 1, + ACTIONS(7086), 1, sym_comment, - ACTIONS(4728), 18, + ACTIONS(4694), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376333,20 +378019,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [183297] = 10, + [183776] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6437), 1, + ACTIONS(6443), 1, anon_sym_LPAREN2, - ACTIONS(6445), 1, + ACTIONS(6451), 1, anon_sym_LBRACK, - ACTIONS(6652), 1, + ACTIONS(6642), 1, anon_sym_STAR, - ACTIONS(6654), 1, + ACTIONS(6644), 1, anon_sym_AMP_AMP, - ACTIONS(6656), 1, + ACTIONS(6646), 1, anon_sym_AMP, - STATE(4217), 1, + STATE(4229), 1, sym_parameter_list, STATE(5239), 1, sym__abstract_declarator, @@ -376356,31 +378042,31 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5712), 6, + ACTIONS(5734), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, anon_sym_requires, - [183337] = 16, + [183816] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4199), 1, - anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(4227), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6598), 1, + ACTIONS(6551), 1, anon_sym_COLON_COLON, - ACTIONS(6974), 1, + ACTIONS(6994), 1, sym_identifier, - STATE(2191), 1, + STATE(2349), 1, sym_template_type, - STATE(2918), 1, + STATE(2938), 1, sym_field_declaration_list, STATE(4855), 1, sym_attribute_declaration, @@ -376392,30 +378078,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1959), 2, + STATE(2025), 2, sym__class_name, sym_qualified_type_identifier, - [183388] = 16, + [183867] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5584), 1, + ACTIONS(5543), 1, anon_sym_COLON_COLON, ACTIONS(7391), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3182), 1, + STATE(3170), 1, sym_field_declaration_list, STATE(4813), 1, sym_attribute_declaration, @@ -376427,30 +378113,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2507), 2, + STATE(2533), 2, sym__class_name, sym_qualified_type_identifier, - [183439] = 16, + [183918] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5584), 1, + ACTIONS(5543), 1, anon_sym_COLON_COLON, ACTIONS(7391), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3184), 1, + STATE(3173), 1, sym_field_declaration_list, STATE(4814), 1, sym_attribute_declaration, @@ -376462,30 +378148,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2506), 2, + STATE(2532), 2, sym__class_name, sym_qualified_type_identifier, - [183490] = 16, + [183969] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3431), 1, + STATE(3410), 1, sym_field_declaration_list, STATE(4828), 1, sym_attribute_declaration, @@ -376497,30 +378183,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3547), 2, + STATE(3524), 2, sym__class_name, sym_qualified_type_identifier, - [183541] = 16, + [184020] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4048), 1, + STATE(4039), 1, sym_field_declaration_list, STATE(4886), 1, sym_attribute_declaration, @@ -376532,30 +378218,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3486), 2, + STATE(3464), 2, sym__class_name, sym_qualified_type_identifier, - [183592] = 16, + [184071] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - ACTIONS(7164), 1, + ACTIONS(7166), 1, sym_identifier, - STATE(4371), 1, + STATE(4359), 1, sym_template_type, - STATE(4508), 1, + STATE(4507), 1, sym_field_declaration_list, STATE(4833), 1, sym_attribute_declaration, @@ -376567,30 +378253,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(4343), 2, + STATE(4344), 2, sym__class_name, sym_qualified_type_identifier, - [183643] = 16, + [184122] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3438), 1, + STATE(3412), 1, sym_field_declaration_list, STATE(4875), 1, sym_attribute_declaration, @@ -376602,30 +378288,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3551), 2, + STATE(3542), 2, sym__class_name, sym_qualified_type_identifier, - [183694] = 16, + [184173] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3431), 1, + STATE(3410), 1, sym_field_declaration_list, STATE(4873), 1, sym_attribute_declaration, @@ -376637,30 +378323,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3547), 2, + STATE(3524), 2, sym__class_name, sym_qualified_type_identifier, - [183745] = 16, + [184224] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(7012), 1, + ACTIONS(6952), 1, sym_identifier, - STATE(2152), 1, + STATE(2100), 1, sym_template_type, - STATE(2639), 1, + STATE(2640), 1, sym_field_declaration_list, STATE(4846), 1, sym_attribute_declaration, @@ -376672,30 +378358,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1939), 2, + STATE(1946), 2, sym__class_name, sym_qualified_type_identifier, - [183796] = 16, + [184275] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3431), 1, + STATE(3410), 1, sym_field_declaration_list, STATE(4870), 1, sym_attribute_declaration, @@ -376707,30 +378393,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3285), 2, + STATE(3298), 2, sym__class_name, sym_qualified_type_identifier, - [183847] = 16, + [184326] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3438), 1, + STATE(3412), 1, sym_field_declaration_list, STATE(4799), 1, sym_attribute_declaration, @@ -376742,30 +378428,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3294), 2, + STATE(3304), 2, sym__class_name, sym_qualified_type_identifier, - [183898] = 16, + [184377] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3517), 1, + STATE(3407), 1, sym_field_declaration_list, STATE(4869), 1, sym_attribute_declaration, @@ -376777,30 +378463,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3543), 2, + STATE(3519), 2, sym__class_name, sym_qualified_type_identifier, - [183949] = 16, + [184428] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - ACTIONS(7164), 1, + ACTIONS(7166), 1, sym_identifier, - STATE(4371), 1, + STATE(4359), 1, sym_template_type, - STATE(4482), 1, + STATE(4504), 1, sym_field_declaration_list, STATE(4836), 1, sym_attribute_declaration, @@ -376812,30 +378498,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(4312), 2, + STATE(4347), 2, sym__class_name, sym_qualified_type_identifier, - [184000] = 16, + [184479] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6988), 1, + ACTIONS(6982), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2809), 1, + STATE(2812), 1, sym_field_declaration_list, STATE(4882), 1, sym_attribute_declaration, @@ -376847,30 +378533,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2070), 2, + STATE(2176), 2, sym__class_name, sym_qualified_type_identifier, - [184051] = 16, + [184530] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(7012), 1, + ACTIONS(6952), 1, sym_identifier, - STATE(2152), 1, + STATE(2100), 1, sym_template_type, - STATE(2641), 1, + STATE(2642), 1, sym_field_declaration_list, STATE(4841), 1, sym_attribute_declaration, @@ -376882,30 +378568,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1938), 2, + STATE(1945), 2, sym__class_name, sym_qualified_type_identifier, - [184102] = 16, + [184581] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4021), 1, + STATE(4034), 1, sym_field_declaration_list, STATE(4888), 1, sym_attribute_declaration, @@ -376917,30 +378603,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3481), 2, + STATE(3469), 2, sym__class_name, sym_qualified_type_identifier, - [184153] = 16, + [184632] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3438), 1, + STATE(3412), 1, sym_field_declaration_list, STATE(4874), 1, sym_attribute_declaration, @@ -376952,28 +378638,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3294), 2, + STATE(3304), 2, sym__class_name, sym_qualified_type_identifier, - [184204] = 11, + [184683] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(6200), 1, + ACTIONS(6167), 1, sym_identifier, - ACTIONS(6202), 1, + ACTIONS(6169), 1, anon_sym_LPAREN2, - ACTIONS(6204), 1, + ACTIONS(6171), 1, anon_sym_STAR, - ACTIONS(6206), 1, + ACTIONS(6173), 1, anon_sym_AMP_AMP, - ACTIONS(6208), 1, + ACTIONS(6175), 1, anon_sym_AMP, STATE(5158), 1, sym__field_declarator, @@ -376988,24 +378674,24 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [184245] = 16, + [184724] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, ACTIONS(7379), 1, anon_sym_COLON_COLON, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3517), 1, + STATE(3407), 1, sym_field_declaration_list, STATE(4885), 1, sym_attribute_declaration, @@ -377017,30 +378703,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, STATE(4956), 2, sym__class_name, sym_qualified_type_identifier, - [184296] = 16, + [184775] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4009), 1, + STATE(3992), 1, sym_field_declaration_list, STATE(4818), 1, sym_attribute_declaration, @@ -377052,30 +378738,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3461), 2, + STATE(3472), 2, sym__class_name, sym_qualified_type_identifier, - [184347] = 16, + [184826] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(6998), 1, + ACTIONS(7008), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3186), 1, + STATE(3177), 1, sym_field_declaration_list, STATE(4839), 1, sym_attribute_declaration, @@ -377087,30 +378773,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2505), 2, + STATE(2531), 2, sym__class_name, sym_qualified_type_identifier, - [184398] = 16, + [184877] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(7198), 1, + ACTIONS(7202), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2803), 1, + STATE(2805), 1, sym_field_declaration_list, STATE(4835), 1, sym_attribute_declaration, @@ -377122,30 +378808,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2106), 2, + STATE(2163), 2, sym__class_name, sym_qualified_type_identifier, - [184449] = 16, + [184928] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4009), 1, + STATE(3992), 1, sym_field_declaration_list, STATE(4851), 1, sym_attribute_declaration, @@ -377157,30 +378843,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3461), 2, + STATE(3472), 2, sym__class_name, sym_qualified_type_identifier, - [184500] = 10, + [184979] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(6676), 1, + ACTIONS(6684), 1, anon_sym_STAR, - ACTIONS(6678), 1, + ACTIONS(6686), 1, anon_sym_AMP_AMP, - ACTIONS(6680), 1, + ACTIONS(6688), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, - STATE(4263), 1, + STATE(4265), 1, sym_parameter_list, STATE(5322), 1, sym__abstract_declarator, - ACTIONS(5712), 5, + ACTIONS(5734), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -377192,24 +378878,24 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [184539] = 16, + [185018] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(6998), 1, + ACTIONS(7008), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3184), 1, + STATE(3173), 1, sym_field_declaration_list, STATE(4847), 1, sym_attribute_declaration, @@ -377221,30 +378907,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2506), 2, + STATE(2532), 2, sym__class_name, sym_qualified_type_identifier, - [184590] = 16, + [185069] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, - STATE(2411), 1, + STATE(2361), 1, sym_field_declaration_list, STATE(4829), 1, sym_attribute_declaration, @@ -377256,28 +378942,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1863), 2, + STATE(1855), 2, sym__class_name, sym_qualified_type_identifier, - [184641] = 11, + [185120] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(6200), 1, + ACTIONS(6167), 1, sym_identifier, - ACTIONS(6202), 1, + ACTIONS(6169), 1, anon_sym_LPAREN2, - ACTIONS(6204), 1, + ACTIONS(6171), 1, anon_sym_STAR, - ACTIONS(6206), 1, + ACTIONS(6173), 1, anon_sym_AMP_AMP, - ACTIONS(6208), 1, + ACTIONS(6175), 1, anon_sym_AMP, STATE(5082), 1, sym__field_declarator, @@ -377292,24 +378978,24 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [184682] = 16, + [185161] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, - STATE(2404), 1, + STATE(2367), 1, sym_field_declaration_list, STATE(4823), 1, sym_attribute_declaration, @@ -377321,28 +379007,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1858), 2, + STATE(1880), 2, sym__class_name, sym_qualified_type_identifier, - [184733] = 11, + [185212] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(6202), 1, + ACTIONS(6169), 1, anon_sym_LPAREN2, - ACTIONS(6220), 1, + ACTIONS(6223), 1, sym_identifier, - ACTIONS(6222), 1, + ACTIONS(6225), 1, anon_sym_STAR, - ACTIONS(6224), 1, + ACTIONS(6227), 1, anon_sym_AMP_AMP, - ACTIONS(6226), 1, + ACTIONS(6229), 1, anon_sym_AMP, STATE(5416), 1, sym__field_declarator, @@ -377357,24 +379043,24 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [184774] = 16, + [185253] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4048), 1, + STATE(4039), 1, sym_field_declaration_list, STATE(4876), 1, sym_attribute_declaration, @@ -377386,30 +379072,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3486), 2, + STATE(3464), 2, sym__class_name, sym_qualified_type_identifier, - [184825] = 16, + [185304] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(6998), 1, + ACTIONS(7008), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3182), 1, + STATE(3170), 1, sym_field_declaration_list, STATE(4848), 1, sym_attribute_declaration, @@ -377421,30 +379107,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2507), 2, + STATE(2533), 2, sym__class_name, sym_qualified_type_identifier, - [184876] = 16, + [185355] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - ACTIONS(7164), 1, + ACTIONS(7166), 1, sym_identifier, - STATE(4371), 1, + STATE(4359), 1, sym_template_type, - STATE(4504), 1, + STATE(4502), 1, sym_field_declaration_list, STATE(4837), 1, sym_attribute_declaration, @@ -377456,30 +379142,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(4349), 2, + STATE(4351), 2, sym__class_name, sym_qualified_type_identifier, - [184927] = 16, + [185406] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, - STATE(2428), 1, + STATE(2400), 1, sym_field_declaration_list, STATE(4830), 1, sym_attribute_declaration, @@ -377491,30 +379177,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1874), 2, + STATE(1863), 2, sym__class_name, sym_qualified_type_identifier, - [184978] = 16, + [185457] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(7198), 1, + ACTIONS(7202), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2806), 1, + STATE(2808), 1, sym_field_declaration_list, STATE(4843), 1, sym_attribute_declaration, @@ -377526,30 +379212,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2105), 2, + STATE(2166), 2, sym__class_name, sym_qualified_type_identifier, - [185029] = 16, + [185508] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, ACTIONS(7379), 1, anon_sym_COLON_COLON, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3438), 1, + STATE(3412), 1, sym_field_declaration_list, STATE(4858), 1, sym_attribute_declaration, @@ -377561,30 +379247,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, STATE(4947), 2, sym__class_name, sym_qualified_type_identifier, - [185080] = 16, + [185559] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(7198), 1, + ACTIONS(7202), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2809), 1, + STATE(2812), 1, sym_field_declaration_list, STATE(4844), 1, sym_attribute_declaration, @@ -377596,30 +379282,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2070), 2, + STATE(2176), 2, sym__class_name, sym_qualified_type_identifier, - [185131] = 16, + [185610] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4021), 1, + STATE(4034), 1, sym_field_declaration_list, STATE(4864), 1, sym_attribute_declaration, @@ -377631,30 +379317,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3481), 2, + STATE(3469), 2, sym__class_name, sym_qualified_type_identifier, - [185182] = 16, + [185661] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6988), 1, + ACTIONS(6982), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2803), 1, + STATE(2805), 1, sym_field_declaration_list, STATE(4884), 1, sym_attribute_declaration, @@ -377666,30 +379352,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2106), 2, + STATE(2163), 2, sym__class_name, sym_qualified_type_identifier, - [185233] = 16, + [185712] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3517), 1, + STATE(3407), 1, sym_field_declaration_list, STATE(4880), 1, sym_attribute_declaration, @@ -377701,30 +379387,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3288), 2, + STATE(3289), 2, sym__class_name, sym_qualified_type_identifier, - [185284] = 16, + [185763] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3438), 1, + STATE(3412), 1, sym_field_declaration_list, STATE(4832), 1, sym_attribute_declaration, @@ -377736,28 +379422,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3551), 2, + STATE(3542), 2, sym__class_name, sym_qualified_type_identifier, - [185335] = 16, + [185814] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(7012), 1, + ACTIONS(6952), 1, sym_identifier, - STATE(2152), 1, + STATE(2100), 1, sym_template_type, STATE(2644), 1, sym_field_declaration_list, @@ -377771,30 +379457,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1933), 2, + STATE(1938), 2, sym__class_name, sym_qualified_type_identifier, - [185386] = 16, + [185865] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3431), 1, + STATE(3410), 1, sym_field_declaration_list, STATE(4854), 1, sym_attribute_declaration, @@ -377806,30 +379492,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3285), 2, + STATE(3298), 2, sym__class_name, sym_qualified_type_identifier, - [185437] = 16, + [185916] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2002), 1, + STATE(2146), 1, sym_field_declaration_list, STATE(4816), 1, sym_attribute_declaration, @@ -377841,30 +379527,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1843), 2, + STATE(1842), 2, sym__class_name, sym_qualified_type_identifier, - [185488] = 16, + [185967] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3517), 1, + STATE(3407), 1, sym_field_declaration_list, STATE(4866), 1, sym_attribute_declaration, @@ -377876,30 +379562,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3288), 2, + STATE(3289), 2, sym__class_name, sym_qualified_type_identifier, - [185539] = 16, + [186018] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6988), 1, + ACTIONS(6982), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2806), 1, + STATE(2808), 1, sym_field_declaration_list, STATE(4883), 1, sym_attribute_declaration, @@ -377911,30 +379597,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2105), 2, + STATE(2166), 2, sym__class_name, sym_qualified_type_identifier, - [185590] = 16, + [186069] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4199), 1, - anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(4227), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6598), 1, + ACTIONS(6551), 1, anon_sym_COLON_COLON, - ACTIONS(6974), 1, + ACTIONS(6994), 1, sym_identifier, - STATE(2191), 1, + STATE(2349), 1, sym_template_type, - STATE(2913), 1, + STATE(2926), 1, sym_field_declaration_list, STATE(4791), 1, sym_attribute_declaration, @@ -377946,30 +379632,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1958), 2, + STATE(2019), 2, sym__class_name, sym_qualified_type_identifier, - [185641] = 16, + [186120] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3517), 1, + STATE(3407), 1, sym_field_declaration_list, STATE(4826), 1, sym_attribute_declaration, @@ -377981,30 +379667,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3543), 2, + STATE(3519), 2, sym__class_name, sym_qualified_type_identifier, - [185692] = 16, + [186171] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, ACTIONS(7379), 1, anon_sym_COLON_COLON, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3431), 1, + STATE(3410), 1, sym_field_declaration_list, STATE(4878), 1, sym_attribute_declaration, @@ -378016,30 +379702,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, STATE(4955), 2, sym__class_name, sym_qualified_type_identifier, - [185743] = 16, + [186222] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4199), 1, - anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(4227), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6598), 1, + ACTIONS(6551), 1, anon_sym_COLON_COLON, - ACTIONS(6974), 1, + ACTIONS(6994), 1, sym_identifier, - STATE(2191), 1, + STATE(2349), 1, sym_template_type, - STATE(2924), 1, + STATE(2913), 1, sym_field_declaration_list, STATE(4860), 1, sym_attribute_declaration, @@ -378051,23 +379737,23 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1968), 2, + STATE(1975), 2, sym__class_name, sym_qualified_type_identifier, - [185794] = 5, + [186273] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6232), 1, + ACTIONS(6090), 1, anon_sym_LPAREN2, - STATE(2866), 1, + STATE(2870), 1, sym_argument_list, - ACTIONS(4203), 2, + ACTIONS(4342), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4201), 13, + ACTIONS(4340), 13, anon_sym_RPAREN, anon_sym_STAR, anon_sym_AMP_AMP, @@ -378081,24 +379767,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - [185823] = 16, + [186302] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5584), 1, + ACTIONS(5543), 1, anon_sym_COLON_COLON, ACTIONS(7391), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3186), 1, + STATE(3177), 1, sym_field_declaration_list, STATE(4815), 1, sym_attribute_declaration, @@ -378110,30 +379796,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2505), 2, + STATE(2531), 2, sym__class_name, sym_qualified_type_identifier, - [185874] = 16, + [186353] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2020), 1, + STATE(2140), 1, sym_field_declaration_list, STATE(4808), 1, sym_attribute_declaration, @@ -378145,28 +379831,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1840), 2, + STATE(1852), 2, sym__class_name, sym_qualified_type_identifier, - [185925] = 11, + [186404] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(6202), 1, + ACTIONS(6169), 1, anon_sym_LPAREN2, - ACTIONS(6220), 1, + ACTIONS(6223), 1, sym_identifier, - ACTIONS(6222), 1, + ACTIONS(6225), 1, anon_sym_STAR, - ACTIONS(6224), 1, + ACTIONS(6227), 1, anon_sym_AMP_AMP, - ACTIONS(6226), 1, + ACTIONS(6229), 1, anon_sym_AMP, STATE(5410), 1, sym__field_declarator, @@ -378181,24 +379867,24 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [185966] = 16, + [186445] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2015), 1, + STATE(2143), 1, sym_field_declaration_list, STATE(4817), 1, sym_attribute_declaration, @@ -378210,30 +379896,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1845), 2, + STATE(1843), 2, sym__class_name, sym_qualified_type_identifier, - [186017] = 10, + [186496] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6437), 1, + ACTIONS(6443), 1, anon_sym_LPAREN2, - ACTIONS(6445), 1, + ACTIONS(6451), 1, anon_sym_LBRACK, - ACTIONS(6781), 1, + ACTIONS(6728), 1, anon_sym_STAR, - ACTIONS(6783), 1, + ACTIONS(6730), 1, anon_sym_AMP_AMP, - ACTIONS(6785), 1, + ACTIONS(6732), 1, anon_sym_AMP, - STATE(4328), 1, + STATE(4343), 1, sym_parameter_list, STATE(5442), 1, sym__abstract_declarator, - ACTIONS(5712), 4, + ACTIONS(5734), 4, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, @@ -378244,7 +379930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186055] = 15, + [186534] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -378263,11 +379949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7409), 1, anon_sym_try, - STATE(1049), 1, + STATE(941), 1, sym_compound_statement, - STATE(1050), 1, + STATE(943), 1, sym_try_statement, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(5819), 1, aux_sym_declaration_repeat1, @@ -378277,24 +379963,24 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [186103] = 14, + [186582] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7411), 1, anon_sym_LT, ACTIONS(7413), 1, anon_sym_LBRACE, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4767), 1, sym_template_parameter_list, @@ -378309,7 +379995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186149] = 15, + [186628] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -378328,11 +380014,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(7419), 1, anon_sym_try, - STATE(1017), 1, + STATE(994), 1, sym_try_statement, - STATE(1020), 1, + STATE(998), 1, sym_compound_statement, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(6099), 1, aux_sym_declaration_repeat1, @@ -378342,7 +380028,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [186197] = 15, + [186676] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -378361,11 +380047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(7425), 1, anon_sym_try, - STATE(984), 1, + STATE(960), 1, sym_compound_statement, - STATE(986), 1, + STATE(961), 1, sym_try_statement, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(5817), 1, aux_sym_declaration_repeat1, @@ -378375,18 +380061,18 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [186245] = 14, + [186724] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7427), 1, anon_sym_LBRACE, @@ -378394,7 +380080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, STATE(2756), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4899), 1, sym_requires_clause, @@ -378407,26 +380093,26 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186291] = 14, + [186770] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7411), 1, anon_sym_LT, ACTIONS(7431), 1, anon_sym_LBRACE, - STATE(3012), 1, + STATE(3029), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4786), 1, sym_template_parameter_list, @@ -378439,26 +380125,26 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186337] = 14, + [186816] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7411), 1, anon_sym_LT, ACTIONS(7433), 1, anon_sym_LBRACE, - STATE(2530), 1, + STATE(2466), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4787), 1, sym_template_parameter_list, @@ -378471,26 +380157,26 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186383] = 14, + [186862] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7411), 1, anon_sym_LT, ACTIONS(7435), 1, anon_sym_LBRACE, - STATE(3104), 1, + STATE(3123), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4772), 1, sym_template_parameter_list, @@ -378503,26 +380189,26 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186429] = 14, + [186908] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7429), 1, anon_sym_requires, ACTIONS(7437), 1, anon_sym_LBRACE, - STATE(1905), 1, + STATE(1916), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4896), 1, sym_requires_clause, @@ -378535,24 +380221,24 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186475] = 14, + [186954] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7413), 1, anon_sym_LBRACE, ACTIONS(7429), 1, anon_sym_requires, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4928), 1, sym_requires_clause, @@ -378567,24 +380253,24 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186521] = 10, + [187000] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, - ACTIONS(6787), 1, + ACTIONS(6769), 1, anon_sym_STAR, - ACTIONS(6789), 1, + ACTIONS(6771), 1, anon_sym_AMP_AMP, - ACTIONS(6791), 1, + ACTIONS(6773), 1, anon_sym_AMP, STATE(4345), 1, sym_parameter_list, STATE(5339), 1, sym__abstract_declarator, - ACTIONS(5712), 4, + ACTIONS(5734), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, @@ -378595,26 +380281,26 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186559] = 14, + [187038] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7411), 1, anon_sym_LT, ACTIONS(7439), 1, anon_sym_LBRACE, - STATE(3802), 1, + STATE(3809), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4790), 1, sym_template_parameter_list, @@ -378627,7 +380313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186605] = 15, + [187084] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -378646,11 +380332,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7441), 1, anon_sym_SEMI, - STATE(2351), 1, + STATE(2267), 1, sym_try_statement, - STATE(2353), 1, + STATE(2268), 1, sym_compound_statement, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(5959), 1, aux_sym_declaration_repeat1, @@ -378660,24 +380346,24 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [186653] = 10, + [187132] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6437), 1, + ACTIONS(6443), 1, anon_sym_LPAREN2, - ACTIONS(6445), 1, + ACTIONS(6451), 1, anon_sym_LBRACK, - ACTIONS(6746), 1, + ACTIONS(6756), 1, anon_sym_STAR, - ACTIONS(6748), 1, + ACTIONS(6758), 1, anon_sym_AMP_AMP, - ACTIONS(6750), 1, + ACTIONS(6760), 1, anon_sym_AMP, - STATE(4339), 1, + STATE(4353), 1, sym_parameter_list, STATE(5431), 1, sym__abstract_declarator, - ACTIONS(5712), 4, + ACTIONS(5734), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -378688,26 +380374,26 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186691] = 14, + [187170] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7429), 1, anon_sym_requires, ACTIONS(7435), 1, anon_sym_LBRACE, - STATE(3116), 1, + STATE(3149), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4892), 1, sym_requires_clause, @@ -378720,26 +380406,26 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186737] = 14, + [187216] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7411), 1, anon_sym_LT, - STATE(1912), 1, + STATE(1907), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4779), 1, sym_template_parameter_list, @@ -378752,61 +380438,61 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186783] = 17, + [187262] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_operator, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(3039), 1, + ACTIONS(3017), 1, anon_sym_COLON_COLON, ACTIONS(7443), 1, sym_identifier, ACTIONS(7445), 1, anon_sym_template, - STATE(2196), 1, - sym_operator_name, - STATE(2199), 1, + STATE(2177), 1, sym_qualified_identifier, - STATE(2201), 1, - sym_dependent_identifier, - STATE(2202), 1, + STATE(2226), 1, sym_destructor_name, - STATE(2203), 1, + STATE(2254), 1, + sym_operator_name, + STATE(2265), 1, + sym_dependent_identifier, + STATE(2279), 1, sym_template_function, - STATE(3282), 1, - sym_dependent_type_identifier, - STATE(3297), 1, - sym_qualified_type_identifier, STATE(3301), 1, sym_template_type, + STATE(3302), 1, + sym_qualified_type_identifier, + STATE(3305), 1, + sym_dependent_type_identifier, STATE(4774), 1, sym__scope_resolution, STATE(5708), 1, sym_operator_cast, STATE(5733), 1, sym_qualified_operator_cast_identifier, - [186835] = 14, + [187314] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7411), 1, anon_sym_LT, ACTIONS(7447), 1, anon_sym_LBRACE, - STATE(3321), 1, + STATE(3378), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4776), 1, sym_template_parameter_list, @@ -378819,26 +380505,26 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186881] = 14, + [187360] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7429), 1, anon_sym_requires, ACTIONS(7447), 1, anon_sym_LBRACE, - STATE(3336), 1, + STATE(3333), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4938), 1, sym_requires_clause, @@ -378851,26 +380537,26 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186927] = 14, + [187406] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7411), 1, anon_sym_LT, ACTIONS(7427), 1, anon_sym_LBRACE, - STATE(2813), 1, + STATE(2942), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4762), 1, sym_template_parameter_list, @@ -378883,7 +380569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [186973] = 17, + [187452] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, @@ -378896,21 +380582,21 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7451), 1, anon_sym_template, - STATE(2196), 1, - sym_operator_name, - STATE(2199), 1, + STATE(2177), 1, sym_qualified_identifier, - STATE(2201), 1, - sym_dependent_identifier, - STATE(2202), 1, + STATE(2226), 1, sym_destructor_name, - STATE(2203), 1, + STATE(2254), 1, + sym_operator_name, + STATE(2265), 1, + sym_dependent_identifier, + STATE(2279), 1, sym_template_function, - STATE(3282), 1, - sym_dependent_type_identifier, STATE(3301), 1, sym_template_type, - STATE(3432), 1, + STATE(3305), 1, + sym_dependent_type_identifier, + STATE(3452), 1, sym_qualified_type_identifier, STATE(4778), 1, sym__scope_resolution, @@ -378918,26 +380604,26 @@ static const uint16_t ts_small_parse_table[] = { sym_operator_cast, STATE(5733), 1, sym_qualified_operator_cast_identifier, - [187025] = 14, + [187504] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7429), 1, anon_sym_requires, - STATE(1905), 1, + STATE(1916), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4910), 1, sym_requires_clause, @@ -378950,24 +380636,24 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [187071] = 10, + [187550] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, STATE(4350), 1, sym_parameter_list, STATE(5402), 1, sym__abstract_declarator, - ACTIONS(5712), 4, + ACTIONS(5734), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -378978,7 +380664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [187109] = 17, + [187588] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(7453), 1, @@ -378991,46 +380677,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, ACTIONS(7461), 1, anon_sym_operator, - STATE(2196), 1, - sym_operator_name, - STATE(2199), 1, + STATE(2177), 1, sym_qualified_identifier, - STATE(2201), 1, - sym_dependent_identifier, - STATE(2202), 1, + STATE(2226), 1, sym_destructor_name, - STATE(2203), 1, + STATE(2254), 1, + sym_operator_name, + STATE(2265), 1, + sym_dependent_identifier, + STATE(2279), 1, sym_template_function, - STATE(3282), 1, - sym_dependent_type_identifier, - STATE(3297), 1, - sym_qualified_type_identifier, STATE(3301), 1, sym_template_type, + STATE(3302), 1, + sym_qualified_type_identifier, + STATE(3305), 1, + sym_dependent_type_identifier, STATE(4781), 1, sym__scope_resolution, STATE(5708), 1, sym_operator_cast, STATE(5733), 1, sym_qualified_operator_cast_identifier, - [187161] = 14, + [187640] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7411), 1, anon_sym_LT, ACTIONS(7463), 1, anon_sym_LBRACE, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4783), 1, sym_template_parameter_list, @@ -379045,24 +380731,24 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [187207] = 14, + [187686] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7429), 1, anon_sym_requires, ACTIONS(7463), 1, anon_sym_LBRACE, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4918), 1, sym_requires_clause, @@ -379077,7 +380763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [187253] = 15, + [187732] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -379096,11 +380782,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7465), 1, anon_sym_SEMI, - STATE(2258), 1, + STATE(2321), 1, sym_compound_statement, - STATE(2259), 1, + STATE(2323), 1, sym_try_statement, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(5938), 1, aux_sym_declaration_repeat1, @@ -379110,26 +380796,26 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [187301] = 14, + [187780] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7411), 1, anon_sym_LT, ACTIONS(7437), 1, anon_sym_LBRACE, - STATE(1912), 1, + STATE(1907), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4766), 1, sym_template_parameter_list, @@ -379142,26 +380828,26 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [187347] = 14, + [187826] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7429), 1, anon_sym_requires, ACTIONS(7431), 1, anon_sym_LBRACE, - STATE(3093), 1, + STATE(2994), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4908), 1, sym_requires_clause, @@ -379174,26 +380860,26 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [187393] = 14, + [187872] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7429), 1, anon_sym_requires, ACTIONS(7433), 1, anon_sym_LBRACE, - STATE(2532), 1, + STATE(2543), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4919), 1, sym_requires_clause, @@ -379206,7 +380892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [187439] = 15, + [187918] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -379225,11 +380911,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(7471), 1, anon_sym_try, - STATE(495), 1, - sym_compound_statement, - STATE(496), 1, + STATE(505), 1, sym_try_statement, - STATE(3828), 1, + STATE(506), 1, + sym_compound_statement, + STATE(3836), 1, sym_parameter_list, STATE(5950), 1, aux_sym_declaration_repeat1, @@ -379239,7 +380925,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [187487] = 15, + [187966] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -379258,11 +380944,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7473), 1, anon_sym_SEMI, - STATE(2062), 1, - sym_try_statement, - STATE(2063), 1, + STATE(2065), 1, sym_compound_statement, - STATE(3828), 1, + STATE(2075), 1, + sym_try_statement, + STATE(3836), 1, sym_parameter_list, STATE(5830), 1, aux_sym_declaration_repeat1, @@ -379272,26 +380958,26 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [187535] = 14, + [188014] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7429), 1, anon_sym_requires, ACTIONS(7439), 1, anon_sym_LBRACE, - STATE(3739), 1, + STATE(3757), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(4935), 1, sym_requires_clause, @@ -379304,22 +380990,22 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [187581] = 14, + [188060] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6598), 1, + ACTIONS(6551), 1, anon_sym_COLON_COLON, - ACTIONS(6974), 1, + ACTIONS(6994), 1, sym_identifier, - STATE(2191), 1, + STATE(2349), 1, sym_template_type, - STATE(2900), 1, + STATE(2923), 1, sym_field_declaration_list, STATE(5352), 1, sym__scope_resolution, @@ -379329,28 +381015,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1974), 2, + STATE(1970), 2, sym__class_name, sym_qualified_type_identifier, - [187626] = 14, + [188105] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, - STATE(2404), 1, + STATE(2367), 1, sym_field_declaration_list, STATE(5349), 1, sym__scope_resolution, @@ -379360,28 +381046,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1858), 2, + STATE(1880), 2, sym__class_name, sym_qualified_type_identifier, - [187671] = 14, + [188150] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4048), 1, + STATE(4039), 1, sym_field_declaration_list, STATE(5435), 1, sym__scope_resolution, @@ -379391,28 +381077,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3486), 2, + STATE(3464), 2, sym__class_name, sym_qualified_type_identifier, - [187716] = 14, + [188195] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3431), 1, + STATE(3410), 1, sym_field_declaration_list, STATE(5435), 1, sym__scope_resolution, @@ -379422,28 +381108,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3547), 2, + STATE(3524), 2, sym__class_name, sym_qualified_type_identifier, - [187761] = 14, + [188240] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2015), 1, + STATE(2143), 1, sym_field_declaration_list, STATE(5371), 1, sym__scope_resolution, @@ -379453,28 +381139,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1845), 2, + STATE(1843), 2, sym__class_name, sym_qualified_type_identifier, - [187806] = 14, + [188285] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, ACTIONS(7379), 1, anon_sym_COLON_COLON, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3438), 1, + STATE(3412), 1, sym_field_declaration_list, STATE(5414), 1, sym__scope_resolution, @@ -379484,28 +381170,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, STATE(4947), 2, sym__class_name, sym_qualified_type_identifier, - [187851] = 14, + [188330] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3431), 1, + STATE(3410), 1, sym_field_declaration_list, STATE(5385), 1, sym__scope_resolution, @@ -379515,28 +381201,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3285), 2, + STATE(3298), 2, sym__class_name, sym_qualified_type_identifier, - [187896] = 14, + [188375] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3438), 1, + STATE(3412), 1, sym_field_declaration_list, STATE(5435), 1, sym__scope_resolution, @@ -379546,28 +381232,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3551), 2, + STATE(3542), 2, sym__class_name, sym_qualified_type_identifier, - [187941] = 14, + [188420] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3524), 1, + STATE(3478), 1, sym_field_declaration_list, STATE(5396), 1, sym__scope_resolution, @@ -379577,28 +381263,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3292), 2, + STATE(3297), 2, sym__class_name, sym_qualified_type_identifier, - [187986] = 14, + [188465] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5584), 1, + ACTIONS(5543), 1, anon_sym_COLON_COLON, ACTIONS(7391), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3182), 1, + STATE(3170), 1, sym_field_declaration_list, STATE(5420), 1, sym__scope_resolution, @@ -379608,28 +381294,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2507), 2, + STATE(2533), 2, sym__class_name, sym_qualified_type_identifier, - [188031] = 14, + [188510] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3517), 1, + STATE(3407), 1, sym_field_declaration_list, STATE(5381), 1, sym__scope_resolution, @@ -379639,28 +381325,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3543), 2, + STATE(3519), 2, sym__class_name, sym_qualified_type_identifier, - [188076] = 14, + [188555] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5584), 1, + ACTIONS(5543), 1, anon_sym_COLON_COLON, ACTIONS(7391), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3184), 1, + STATE(3173), 1, sym_field_declaration_list, STATE(5420), 1, sym__scope_resolution, @@ -379670,28 +381356,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2506), 2, + STATE(2532), 2, sym__class_name, sym_qualified_type_identifier, - [188121] = 14, + [188600] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3438), 1, + STATE(3412), 1, sym_field_declaration_list, STATE(5385), 1, sym__scope_resolution, @@ -379701,28 +381387,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3294), 2, + STATE(3304), 2, sym__class_name, sym_qualified_type_identifier, - [188166] = 14, + [188645] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3517), 1, + STATE(3407), 1, sym_field_declaration_list, STATE(5435), 1, sym__scope_resolution, @@ -379732,28 +381418,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3543), 2, + STATE(3519), 2, sym__class_name, sym_qualified_type_identifier, - [188211] = 14, + [188690] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3517), 1, + STATE(3407), 1, sym_field_declaration_list, STATE(5385), 1, sym__scope_resolution, @@ -379763,28 +381449,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3288), 2, + STATE(3289), 2, sym__class_name, sym_qualified_type_identifier, - [188256] = 14, + [188735] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2002), 1, + STATE(2146), 1, sym_field_declaration_list, STATE(5371), 1, sym__scope_resolution, @@ -379794,28 +381480,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1843), 2, + STATE(1842), 2, sym__class_name, sym_qualified_type_identifier, - [188301] = 14, + [188780] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5584), 1, + ACTIONS(5543), 1, anon_sym_COLON_COLON, ACTIONS(7391), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3186), 1, + STATE(3177), 1, sym_field_declaration_list, STATE(5420), 1, sym__scope_resolution, @@ -379825,28 +381511,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2505), 2, + STATE(2531), 2, sym__class_name, sym_qualified_type_identifier, - [188346] = 14, + [188825] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2087), 1, + STATE(2108), 1, sym_field_declaration_list, STATE(5371), 1, sym__scope_resolution, @@ -379856,28 +381542,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1842), 2, + STATE(1853), 2, sym__class_name, sym_qualified_type_identifier, - [188391] = 14, + [188870] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2020), 1, + STATE(2140), 1, sym_field_declaration_list, STATE(5371), 1, sym__scope_resolution, @@ -379887,28 +381573,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1840), 2, + STATE(1852), 2, sym__class_name, sym_qualified_type_identifier, - [188436] = 14, + [188915] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, - STATE(2411), 1, + STATE(2361), 1, sym_field_declaration_list, STATE(5349), 1, sym__scope_resolution, @@ -379918,28 +381604,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1863), 2, + STATE(1855), 2, sym__class_name, sym_qualified_type_identifier, - [188481] = 14, + [188960] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3431), 1, + STATE(3410), 1, sym_field_declaration_list, STATE(5381), 1, sym__scope_resolution, @@ -379949,30 +381635,30 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3547), 2, + STATE(3524), 2, sym__class_name, sym_qualified_type_identifier, - [188526] = 10, + [189005] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6437), 1, + ACTIONS(6443), 1, anon_sym_LPAREN2, - ACTIONS(6445), 1, + ACTIONS(6451), 1, anon_sym_LBRACK, - ACTIONS(6801), 1, + ACTIONS(6797), 1, anon_sym_STAR, - ACTIONS(6803), 1, + ACTIONS(6799), 1, anon_sym_AMP_AMP, - ACTIONS(6805), 1, + ACTIONS(6801), 1, anon_sym_AMP, - STATE(4373), 1, + STATE(4378), 1, sym_parameter_list, STATE(5463), 1, sym__abstract_declarator, - ACTIONS(5712), 3, + ACTIONS(5734), 3, anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_requires, @@ -379982,22 +381668,22 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [188563] = 14, + [189042] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5584), 1, + ACTIONS(5543), 1, anon_sym_COLON_COLON, ACTIONS(7391), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3195), 1, + STATE(3196), 1, sym_field_declaration_list, STATE(5420), 1, sym__scope_resolution, @@ -380007,28 +381693,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2475), 2, + STATE(2519), 2, sym__class_name, sym_qualified_type_identifier, - [188608] = 14, + [189087] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5584), 1, + ACTIONS(5543), 1, anon_sym_COLON_COLON, ACTIONS(7391), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3198), 1, + STATE(3201), 1, sym_field_declaration_list, STATE(5420), 1, sym__scope_resolution, @@ -380038,28 +381724,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2520), 2, + STATE(2516), 2, sym__class_name, sym_qualified_type_identifier, - [188653] = 14, + [189132] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5584), 1, + ACTIONS(5543), 1, anon_sym_COLON_COLON, ACTIONS(7391), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3201), 1, + STATE(3204), 1, sym_field_declaration_list, STATE(5420), 1, sym__scope_resolution, @@ -380069,28 +381755,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2481), 2, + STATE(2515), 2, sym__class_name, sym_qualified_type_identifier, - [188698] = 14, + [189177] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2156), 1, + STATE(2118), 1, sym_field_declaration_list, STATE(5371), 1, sym__scope_resolution, @@ -380100,28 +381786,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1839), 2, + STATE(1854), 2, sym__class_name, sym_qualified_type_identifier, - [188743] = 14, + [189222] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2128), 1, + STATE(2114), 1, sym_field_declaration_list, STATE(5371), 1, sym__scope_resolution, @@ -380131,28 +381817,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1848), 2, + STATE(1844), 2, sym__class_name, sym_qualified_type_identifier, - [188788] = 14, + [189267] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4053), 1, + STATE(4047), 1, sym_field_declaration_list, STATE(5381), 1, sym__scope_resolution, @@ -380162,26 +381848,26 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3451), 2, + STATE(3493), 2, sym__class_name, sym_qualified_type_identifier, - [188833] = 14, + [189312] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(7012), 1, + ACTIONS(6952), 1, sym_identifier, - STATE(2152), 1, + STATE(2100), 1, sym_template_type, STATE(2644), 1, sym_field_declaration_list, @@ -380193,28 +381879,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1933), 2, + STATE(1938), 2, sym__class_name, sym_qualified_type_identifier, - [188878] = 14, + [189357] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3438), 1, + STATE(3412), 1, sym_field_declaration_list, STATE(5381), 1, sym__scope_resolution, @@ -380224,28 +381910,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3551), 2, + STATE(3542), 2, sym__class_name, sym_qualified_type_identifier, - [188923] = 14, + [189402] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, - STATE(2428), 1, + STATE(2400), 1, sym_field_declaration_list, STATE(5349), 1, sym__scope_resolution, @@ -380255,34 +381941,34 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1874), 2, + STATE(1863), 2, sym__class_name, sym_qualified_type_identifier, - [188968] = 15, + [189447] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_operator, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4213), 1, + ACTIONS(4167), 1, anon_sym_COLON_COLON, ACTIONS(7475), 1, sym_identifier, ACTIONS(7477), 1, anon_sym_template, - STATE(2196), 1, - sym_operator_name, - STATE(2199), 1, + STATE(2177), 1, sym_qualified_identifier, - STATE(2201), 1, - sym_dependent_identifier, - STATE(2202), 1, + STATE(2226), 1, sym_destructor_name, - STATE(2203), 1, + STATE(2254), 1, + sym_operator_name, + STATE(2265), 1, + sym_dependent_identifier, + STATE(2279), 1, sym_template_function, STATE(4822), 1, sym__scope_resolution, @@ -380293,22 +381979,22 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [189015] = 14, + [189494] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, - STATE(2226), 1, + STATE(2430), 1, sym_field_declaration_list, STATE(5349), 1, sym__scope_resolution, @@ -380318,28 +382004,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1859), 2, + STATE(1875), 2, sym__class_name, sym_qualified_type_identifier, - [189060] = 14, + [189539] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6988), 1, + ACTIONS(6982), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2809), 1, + STATE(2812), 1, sym_field_declaration_list, STATE(5445), 1, sym__scope_resolution, @@ -380349,28 +382035,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2070), 2, + STATE(2176), 2, sym__class_name, sym_qualified_type_identifier, - [189105] = 14, + [189584] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(7012), 1, + ACTIONS(6952), 1, sym_identifier, - STATE(2152), 1, + STATE(2100), 1, sym_template_type, - STATE(2641), 1, + STATE(2642), 1, sym_field_declaration_list, STATE(5362), 1, sym__scope_resolution, @@ -380380,28 +382066,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1938), 2, + STATE(1945), 2, sym__class_name, sym_qualified_type_identifier, - [189150] = 14, + [189629] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3476), 1, + STATE(3463), 1, sym_field_declaration_list, STATE(5381), 1, sym__scope_resolution, @@ -380411,28 +382097,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3570), 2, + STATE(3537), 2, sym__class_name, sym_qualified_type_identifier, - [189195] = 14, + [189674] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(7012), 1, + ACTIONS(6952), 1, sym_identifier, - STATE(2152), 1, + STATE(2100), 1, sym_template_type, - STATE(2639), 1, + STATE(2640), 1, sym_field_declaration_list, STATE(5362), 1, sym__scope_resolution, @@ -380442,28 +382128,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1939), 2, + STATE(1946), 2, sym__class_name, sym_qualified_type_identifier, - [189240] = 14, + [189719] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3503), 1, + STATE(3456), 1, sym_field_declaration_list, STATE(5381), 1, sym__scope_resolution, @@ -380473,28 +382159,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3576), 2, + STATE(3534), 2, sym__class_name, sym_qualified_type_identifier, - [189285] = 14, + [189764] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, - STATE(2223), 1, + STATE(2437), 1, sym_field_declaration_list, STATE(5349), 1, sym__scope_resolution, @@ -380504,28 +382190,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1857), 2, + STATE(1878), 2, sym__class_name, sym_qualified_type_identifier, - [189330] = 14, + [189809] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, - STATE(2220), 1, + STATE(2442), 1, sym_field_declaration_list, STATE(5349), 1, sym__scope_resolution, @@ -380535,28 +382221,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1876), 2, + STATE(1877), 2, sym__class_name, sym_qualified_type_identifier, - [189375] = 14, + [189854] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(7012), 1, + ACTIONS(6952), 1, sym_identifier, - STATE(2152), 1, + STATE(2100), 1, sym_template_type, - STATE(2631), 1, + STATE(2632), 1, sym_field_declaration_list, STATE(5362), 1, sym__scope_resolution, @@ -380566,28 +382252,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1944), 2, + STATE(1919), 2, sym__class_name, sym_qualified_type_identifier, - [189420] = 14, + [189899] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3524), 1, + STATE(3478), 1, sym_field_declaration_list, STATE(5381), 1, sym__scope_resolution, @@ -380597,26 +382283,26 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3577), 2, + STATE(3533), 2, sym__class_name, sym_qualified_type_identifier, - [189465] = 14, + [189944] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - ACTIONS(7164), 1, + ACTIONS(7166), 1, sym_identifier, - STATE(4371), 1, + STATE(4359), 1, sym_template_type, STATE(4544), 1, sym_field_declaration_list, @@ -380628,28 +382314,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(4321), 2, + STATE(4325), 2, sym__class_name, sym_qualified_type_identifier, - [189510] = 14, + [189989] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6988), 1, + ACTIONS(6982), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2806), 1, + STATE(2808), 1, sym_field_declaration_list, STATE(5445), 1, sym__scope_resolution, @@ -380659,28 +382345,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2105), 2, + STATE(2166), 2, sym__class_name, sym_qualified_type_identifier, - [189555] = 14, + [190034] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(7198), 1, + ACTIONS(7202), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2739), 1, + STATE(2752), 1, sym_field_declaration_list, STATE(5389), 1, sym__scope_resolution, @@ -380690,26 +382376,26 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2114), 2, + STATE(2175), 2, sym__class_name, sym_qualified_type_identifier, - [189600] = 14, + [190079] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - ACTIONS(7164), 1, + ACTIONS(7166), 1, sym_identifier, - STATE(4371), 1, + STATE(4359), 1, sym_template_type, STATE(4540), 1, sym_field_declaration_list, @@ -380721,28 +382407,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(4325), 2, + STATE(4329), 2, sym__class_name, sym_qualified_type_identifier, - [189645] = 14, + [190124] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - ACTIONS(7164), 1, + ACTIONS(7166), 1, sym_identifier, - STATE(4371), 1, + STATE(4359), 1, sym_template_type, - STATE(4535), 1, + STATE(4534), 1, sym_field_declaration_list, STATE(5354), 1, sym__scope_resolution, @@ -380752,28 +382438,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(4329), 2, + STATE(4331), 2, sym__class_name, sym_qualified_type_identifier, - [189690] = 14, + [190169] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4048), 1, + STATE(4039), 1, sym_field_declaration_list, STATE(5381), 1, sym__scope_resolution, @@ -380783,28 +382469,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3486), 2, + STATE(3464), 2, sym__class_name, sym_qualified_type_identifier, - [189735] = 14, + [190214] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(6998), 1, + ACTIONS(7008), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3201), 1, + STATE(3204), 1, sym_field_declaration_list, STATE(5401), 1, sym__scope_resolution, @@ -380814,28 +382500,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2481), 2, + STATE(2515), 2, sym__class_name, sym_qualified_type_identifier, - [189780] = 14, + [190259] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - ACTIONS(7164), 1, + ACTIONS(7166), 1, sym_identifier, - STATE(4371), 1, + STATE(4359), 1, sym_template_type, - STATE(4508), 1, + STATE(4507), 1, sym_field_declaration_list, STATE(5354), 1, sym__scope_resolution, @@ -380845,28 +382531,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(4343), 2, + STATE(4344), 2, sym__class_name, sym_qualified_type_identifier, - [189825] = 14, + [190304] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(7012), 1, + ACTIONS(6952), 1, sym_identifier, - STATE(2152), 1, + STATE(2100), 1, sym_template_type, - STATE(2627), 1, + STATE(2629), 1, sym_field_declaration_list, STATE(5362), 1, sym__scope_resolution, @@ -380876,28 +382562,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1941), 2, + STATE(1949), 2, sym__class_name, sym_qualified_type_identifier, - [189870] = 14, + [190349] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4021), 1, + STATE(4034), 1, sym_field_declaration_list, STATE(5381), 1, sym__scope_resolution, @@ -380907,28 +382593,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3481), 2, + STATE(3469), 2, sym__class_name, sym_qualified_type_identifier, - [189915] = 14, + [190394] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(7198), 1, + ACTIONS(7202), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2753), 1, + STATE(2757), 1, sym_field_declaration_list, STATE(5389), 1, sym__scope_resolution, @@ -380938,28 +382624,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2116), 2, + STATE(2086), 2, sym__class_name, sym_qualified_type_identifier, - [189960] = 14, + [190439] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(7198), 1, + ACTIONS(7202), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2758), 1, + STATE(2760), 1, sym_field_declaration_list, STATE(5389), 1, sym__scope_resolution, @@ -380969,28 +382655,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2120), 2, + STATE(2172), 2, sym__class_name, sym_qualified_type_identifier, - [190005] = 14, + [190484] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6988), 1, + ACTIONS(6982), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2803), 1, + STATE(2805), 1, sym_field_declaration_list, STATE(5445), 1, sym__scope_resolution, @@ -381000,28 +382686,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2106), 2, + STATE(2163), 2, sym__class_name, sym_qualified_type_identifier, - [190050] = 14, + [190529] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(7012), 1, + ACTIONS(6952), 1, sym_identifier, - STATE(2152), 1, + STATE(2100), 1, sym_template_type, - STATE(2623), 1, + STATE(2625), 1, sym_field_declaration_list, STATE(5362), 1, sym__scope_resolution, @@ -381031,28 +382717,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1932), 2, + STATE(1958), 2, sym__class_name, sym_qualified_type_identifier, - [190095] = 14, + [190574] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(6998), 1, + ACTIONS(7008), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3198), 1, + STATE(3201), 1, sym_field_declaration_list, STATE(5401), 1, sym__scope_resolution, @@ -381062,28 +382748,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2520), 2, + STATE(2516), 2, sym__class_name, sym_qualified_type_identifier, - [190140] = 14, + [190619] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(6998), 1, + ACTIONS(7008), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3195), 1, + STATE(3196), 1, sym_field_declaration_list, STATE(5401), 1, sym__scope_resolution, @@ -381093,28 +382779,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2475), 2, + STATE(2519), 2, sym__class_name, sym_qualified_type_identifier, - [190185] = 14, + [190664] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - ACTIONS(7164), 1, + ACTIONS(7166), 1, sym_identifier, - STATE(4371), 1, + STATE(4359), 1, sym_template_type, - STATE(4482), 1, + STATE(4504), 1, sym_field_declaration_list, STATE(5354), 1, sym__scope_resolution, @@ -381124,28 +382810,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(4312), 2, + STATE(4347), 2, sym__class_name, sym_qualified_type_identifier, - [190230] = 14, + [190709] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4009), 1, + STATE(3992), 1, sym_field_declaration_list, STATE(5381), 1, sym__scope_resolution, @@ -381155,28 +382841,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3461), 2, + STATE(3472), 2, sym__class_name, sym_qualified_type_identifier, - [190275] = 14, + [190754] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4053), 1, + STATE(4047), 1, sym_field_declaration_list, STATE(5435), 1, sym__scope_resolution, @@ -381186,28 +382872,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3451), 2, + STATE(3493), 2, sym__class_name, sym_qualified_type_identifier, - [190320] = 14, + [190799] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(6998), 1, + ACTIONS(7008), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3186), 1, + STATE(3177), 1, sym_field_declaration_list, STATE(5401), 1, sym__scope_resolution, @@ -381217,28 +382903,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2505), 2, + STATE(2531), 2, sym__class_name, sym_qualified_type_identifier, - [190365] = 14, + [190844] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(6998), 1, + ACTIONS(7008), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3184), 1, + STATE(3173), 1, sym_field_declaration_list, STATE(5401), 1, sym__scope_resolution, @@ -381248,28 +382934,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2506), 2, + STATE(2532), 2, sym__class_name, sym_qualified_type_identifier, - [190410] = 14, + [190889] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3503), 1, + STATE(3456), 1, sym_field_declaration_list, STATE(5396), 1, sym__scope_resolution, @@ -381279,28 +382965,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3305), 2, + STATE(3286), 2, sym__class_name, sym_qualified_type_identifier, - [190455] = 14, + [190934] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6598), 1, + ACTIONS(6551), 1, anon_sym_COLON_COLON, - ACTIONS(6974), 1, + ACTIONS(6994), 1, sym_identifier, - STATE(2191), 1, + STATE(2349), 1, sym_template_type, - STATE(2895), 1, + STATE(2917), 1, sym_field_declaration_list, STATE(5352), 1, sym__scope_resolution, @@ -381310,28 +382996,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1948), 2, + STATE(2061), 2, sym__class_name, sym_qualified_type_identifier, - [190500] = 14, + [190979] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, ACTIONS(7379), 1, anon_sym_COLON_COLON, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3517), 1, + STATE(3407), 1, sym_field_declaration_list, STATE(5414), 1, sym__scope_resolution, @@ -381341,28 +383027,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, STATE(4956), 2, sym__class_name, sym_qualified_type_identifier, - [190545] = 14, + [191024] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - ACTIONS(7164), 1, + ACTIONS(7166), 1, sym_identifier, - STATE(4371), 1, + STATE(4359), 1, sym_template_type, - STATE(4504), 1, + STATE(4502), 1, sym_field_declaration_list, STATE(5354), 1, sym__scope_resolution, @@ -381372,28 +383058,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(4349), 2, + STATE(4351), 2, sym__class_name, sym_qualified_type_identifier, - [190590] = 14, + [191069] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, ACTIONS(7379), 1, anon_sym_COLON_COLON, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3524), 1, + STATE(3478), 1, sym_field_declaration_list, STATE(5414), 1, sym__scope_resolution, @@ -381403,28 +383089,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, STATE(4952), 2, sym__class_name, sym_qualified_type_identifier, - [190635] = 14, + [191114] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(7198), 1, + ACTIONS(7202), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2803), 1, + STATE(2805), 1, sym_field_declaration_list, STATE(5389), 1, sym__scope_resolution, @@ -381434,28 +383120,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2106), 2, + STATE(2163), 2, sym__class_name, sym_qualified_type_identifier, - [190680] = 14, + [191159] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6598), 1, + ACTIONS(6551), 1, anon_sym_COLON_COLON, - ACTIONS(6974), 1, + ACTIONS(6994), 1, sym_identifier, - STATE(2191), 1, + STATE(2349), 1, sym_template_type, - STATE(2922), 1, + STATE(2927), 1, sym_field_declaration_list, STATE(5352), 1, sym__scope_resolution, @@ -381465,28 +383151,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1976), 2, + STATE(1999), 2, sym__class_name, sym_qualified_type_identifier, - [190725] = 14, + [191204] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3517), 1, + STATE(3407), 1, sym_field_declaration_list, STATE(5396), 1, sym__scope_resolution, @@ -381496,28 +383182,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3288), 2, + STATE(3289), 2, sym__class_name, sym_qualified_type_identifier, - [190770] = 14, + [191249] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(6998), 1, + ACTIONS(7008), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3182), 1, + STATE(3170), 1, sym_field_declaration_list, STATE(5401), 1, sym__scope_resolution, @@ -381527,28 +383213,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2507), 2, + STATE(2533), 2, sym__class_name, sym_qualified_type_identifier, - [190815] = 14, + [191294] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(7198), 1, + ACTIONS(7202), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2806), 1, + STATE(2808), 1, sym_field_declaration_list, STATE(5389), 1, sym__scope_resolution, @@ -381558,28 +383244,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2105), 2, + STATE(2166), 2, sym__class_name, sym_qualified_type_identifier, - [190860] = 14, + [191339] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4038), 1, + STATE(3921), 1, sym_field_declaration_list, STATE(5435), 1, sym__scope_resolution, @@ -381589,28 +383275,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3453), 2, + STATE(3489), 2, sym__class_name, sym_qualified_type_identifier, - [190905] = 14, + [191384] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4009), 1, + STATE(3992), 1, sym_field_declaration_list, STATE(5435), 1, sym__scope_resolution, @@ -381620,28 +383306,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3461), 2, + STATE(3472), 2, sym__class_name, sym_qualified_type_identifier, - [190950] = 14, + [191429] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3476), 1, + STATE(3463), 1, sym_field_declaration_list, STATE(5385), 1, sym__scope_resolution, @@ -381651,28 +383337,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3286), 2, + STATE(3276), 2, sym__class_name, sym_qualified_type_identifier, - [190995] = 14, + [191474] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6598), 1, + ACTIONS(6551), 1, anon_sym_COLON_COLON, - ACTIONS(6974), 1, + ACTIONS(6994), 1, sym_identifier, - STATE(2191), 1, + STATE(2349), 1, sym_template_type, - STATE(2918), 1, + STATE(2938), 1, sym_field_declaration_list, STATE(5352), 1, sym__scope_resolution, @@ -381682,28 +383368,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1959), 2, + STATE(2025), 2, sym__class_name, sym_qualified_type_identifier, - [191040] = 14, + [191519] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(7198), 1, + ACTIONS(7202), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2809), 1, + STATE(2812), 1, sym_field_declaration_list, STATE(5389), 1, sym__scope_resolution, @@ -381713,28 +383399,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2070), 2, + STATE(2176), 2, sym__class_name, sym_qualified_type_identifier, - [191085] = 14, + [191564] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3476), 1, + STATE(3463), 1, sym_field_declaration_list, STATE(5435), 1, sym__scope_resolution, @@ -381744,28 +383430,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3570), 2, + STATE(3537), 2, sym__class_name, sym_qualified_type_identifier, - [191130] = 14, + [191609] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3503), 1, + STATE(3456), 1, sym_field_declaration_list, STATE(5385), 1, sym__scope_resolution, @@ -381775,28 +383461,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3305), 2, + STATE(3286), 2, sym__class_name, sym_qualified_type_identifier, - [191175] = 14, + [191654] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6598), 1, + ACTIONS(6551), 1, anon_sym_COLON_COLON, - ACTIONS(6974), 1, + ACTIONS(6994), 1, sym_identifier, - STATE(2191), 1, + STATE(2349), 1, sym_template_type, - STATE(2913), 1, + STATE(2926), 1, sym_field_declaration_list, STATE(5352), 1, sym__scope_resolution, @@ -381806,28 +383492,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1958), 2, + STATE(2019), 2, sym__class_name, sym_qualified_type_identifier, - [191220] = 14, + [191699] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6598), 1, + ACTIONS(6551), 1, anon_sym_COLON_COLON, - ACTIONS(6974), 1, + ACTIONS(6994), 1, sym_identifier, - STATE(2191), 1, + STATE(2349), 1, sym_template_type, - STATE(2924), 1, + STATE(2913), 1, sym_field_declaration_list, STATE(5352), 1, sym__scope_resolution, @@ -381837,28 +383523,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(1968), 2, + STATE(1975), 2, sym__class_name, sym_qualified_type_identifier, - [191265] = 14, + [191744] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3503), 1, + STATE(3456), 1, sym_field_declaration_list, STATE(5435), 1, sym__scope_resolution, @@ -381868,28 +383554,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3576), 2, + STATE(3534), 2, sym__class_name, sym_qualified_type_identifier, - [191310] = 14, + [191789] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3524), 1, + STATE(3478), 1, sym_field_declaration_list, STATE(5385), 1, sym__scope_resolution, @@ -381899,28 +383585,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3292), 2, + STATE(3297), 2, sym__class_name, sym_qualified_type_identifier, - [191355] = 14, + [191834] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3524), 1, + STATE(3478), 1, sym_field_declaration_list, STATE(5435), 1, sym__scope_resolution, @@ -381930,28 +383616,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3577), 2, + STATE(3533), 2, sym__class_name, sym_qualified_type_identifier, - [191400] = 14, + [191879] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4045), 1, + STATE(3953), 1, sym_field_declaration_list, STATE(5435), 1, sym__scope_resolution, @@ -381961,28 +383647,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3454), 2, + STATE(3384), 2, sym__class_name, sym_qualified_type_identifier, - [191445] = 14, + [191924] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4021), 1, + STATE(4034), 1, sym_field_declaration_list, STATE(5435), 1, sym__scope_resolution, @@ -381992,28 +383678,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3481), 2, + STATE(3469), 2, sym__class_name, sym_qualified_type_identifier, - [191490] = 14, + [191969] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, ACTIONS(7379), 1, anon_sym_COLON_COLON, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3503), 1, + STATE(3456), 1, sym_field_declaration_list, STATE(5414), 1, sym__scope_resolution, @@ -382023,28 +383709,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, STATE(4951), 2, sym__class_name, sym_qualified_type_identifier, - [191535] = 14, + [192014] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3431), 1, + STATE(3410), 1, sym_field_declaration_list, STATE(5396), 1, sym__scope_resolution, @@ -382054,28 +383740,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3285), 2, + STATE(3298), 2, sym__class_name, sym_qualified_type_identifier, - [191580] = 14, + [192059] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3476), 1, + STATE(3463), 1, sym_field_declaration_list, STATE(5396), 1, sym__scope_resolution, @@ -382085,28 +383771,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3286), 2, + STATE(3276), 2, sym__class_name, sym_qualified_type_identifier, - [191625] = 14, + [192104] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, ACTIONS(7379), 1, anon_sym_COLON_COLON, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3431), 1, + STATE(3410), 1, sym_field_declaration_list, STATE(5414), 1, sym__scope_resolution, @@ -382116,28 +383802,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, STATE(4955), 2, sym__class_name, sym_qualified_type_identifier, - [191670] = 14, + [192149] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6988), 1, + ACTIONS(6982), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2758), 1, + STATE(2760), 1, sym_field_declaration_list, STATE(5445), 1, sym__scope_resolution, @@ -382147,28 +383833,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2120), 2, + STATE(2172), 2, sym__class_name, sym_qualified_type_identifier, - [191715] = 14, + [192194] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6988), 1, + ACTIONS(6982), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2753), 1, + STATE(2757), 1, sym_field_declaration_list, STATE(5445), 1, sym__scope_resolution, @@ -382178,28 +383864,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2116), 2, + STATE(2086), 2, sym__class_name, sym_qualified_type_identifier, - [191760] = 14, + [192239] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6988), 1, + ACTIONS(6982), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2739), 1, + STATE(2752), 1, sym_field_declaration_list, STATE(5445), 1, sym__scope_resolution, @@ -382209,28 +383895,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(2114), 2, + STATE(2175), 2, sym__class_name, sym_qualified_type_identifier, - [191805] = 14, + [192284] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, ACTIONS(7379), 1, anon_sym_COLON_COLON, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3476), 1, + STATE(3463), 1, sym_field_declaration_list, STATE(5414), 1, sym__scope_resolution, @@ -382240,28 +383926,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, STATE(4950), 2, sym__class_name, sym_qualified_type_identifier, - [191850] = 14, + [192329] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4045), 1, + STATE(3953), 1, sym_field_declaration_list, STATE(5381), 1, sym__scope_resolution, @@ -382271,28 +383957,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3454), 2, + STATE(3384), 2, sym__class_name, sym_qualified_type_identifier, - [191895] = 14, + [192374] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3438), 1, + STATE(3412), 1, sym_field_declaration_list, STATE(5396), 1, sym__scope_resolution, @@ -382302,28 +383988,28 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3294), 2, + STATE(3304), 2, sym__class_name, sym_qualified_type_identifier, - [191940] = 14, + [192419] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5435), 1, + ACTIONS(5430), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4038), 1, + STATE(3921), 1, sym_field_declaration_list, STATE(5381), 1, sym__scope_resolution, @@ -382333,18 +384019,18 @@ static const uint16_t ts_small_parse_table[] = { sym_base_class_clause, STATE(6970), 1, sym_dependent_type_identifier, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - STATE(3453), 2, + STATE(3489), 2, sym__class_name, sym_qualified_type_identifier, - [191985] = 5, + [192464] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7479), 1, anon_sym_RPAREN, - STATE(2561), 3, + STATE(2482), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, @@ -382360,22 +384046,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [192011] = 11, + [192490] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5274), 1, sym__type_declarator, @@ -382387,7 +384073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [192049] = 15, + [192528] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(7481), 1, @@ -382400,42 +384086,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, ACTIONS(7489), 1, anon_sym_operator, - STATE(2534), 1, + STATE(2470), 1, sym_template_function, - STATE(2535), 1, + STATE(2476), 1, sym_destructor_name, - STATE(2550), 1, + STATE(2478), 1, sym_dependent_identifier, - STATE(2552), 1, + STATE(2479), 1, sym_qualified_identifier, - STATE(2578), 1, + STATE(2481), 1, sym_operator_name, - STATE(3282), 1, - sym_dependent_type_identifier, - STATE(3297), 1, - sym_qualified_type_identifier, STATE(3301), 1, sym_template_type, + STATE(3302), 1, + sym_qualified_type_identifier, + STATE(3305), 1, + sym_dependent_type_identifier, STATE(4891), 1, sym__scope_resolution, - [192095] = 12, + [192574] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7435), 1, anon_sym_LBRACE, - STATE(3126), 1, + STATE(3129), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(5585), 1, sym_abstract_function_declarator, @@ -382446,22 +384132,22 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [192135] = 11, + [192614] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5279), 1, sym__type_declarator, @@ -382473,7 +384159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [192173] = 15, + [192652] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(7483), 1, @@ -382486,40 +384172,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(7495), 1, anon_sym_template, - STATE(2534), 1, + STATE(2470), 1, sym_template_function, - STATE(2535), 1, + STATE(2476), 1, sym_destructor_name, - STATE(2550), 1, + STATE(2478), 1, sym_dependent_identifier, - STATE(2552), 1, + STATE(2479), 1, sym_qualified_identifier, - STATE(2578), 1, + STATE(2481), 1, sym_operator_name, - STATE(3282), 1, - sym_dependent_type_identifier, - STATE(3297), 1, - sym_qualified_type_identifier, STATE(3301), 1, sym_template_type, + STATE(3302), 1, + sym_qualified_type_identifier, + STATE(3305), 1, + sym_dependent_type_identifier, STATE(4894), 1, sym__scope_resolution, - [192219] = 11, + [192698] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5281), 1, sym__type_declarator, @@ -382531,24 +384217,24 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [192257] = 12, + [192736] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7437), 1, anon_sym_LBRACE, - STATE(1908), 1, + STATE(1895), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(5738), 1, sym_abstract_function_declarator, @@ -382559,12 +384245,12 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [192297] = 5, + [192776] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7497), 1, anon_sym_RPAREN, - STATE(2561), 3, + STATE(2482), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, @@ -382580,12 +384266,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [192323] = 13, + [192802] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7397), 1, anon_sym_COMMA, @@ -382599,7 +384285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(7501), 1, anon_sym_COLON, - STATE(3812), 1, + STATE(3818), 1, sym_parameter_list, STATE(5949), 1, aux_sym_declaration_repeat1, @@ -382609,24 +384295,24 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [192365] = 12, + [192844] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7427), 1, anon_sym_LBRACE, STATE(2834), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(5520), 1, sym_abstract_function_declarator, @@ -382637,12 +384323,12 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [192405] = 13, + [192884] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7397), 1, anon_sym_COMMA, @@ -382656,7 +384342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(7503), 1, anon_sym_COLON, - STATE(3812), 1, + STATE(3818), 1, sym_parameter_list, STATE(5949), 1, aux_sym_declaration_repeat1, @@ -382666,22 +384352,22 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [192447] = 11, + [192926] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5278), 1, sym__type_declarator, @@ -382693,22 +384379,22 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [192485] = 11, + [192964] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5275), 1, sym__type_declarator, @@ -382720,12 +384406,12 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [192523] = 5, + [193002] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7505), 1, anon_sym_RPAREN, - STATE(2561), 3, + STATE(2482), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, @@ -382741,7 +384427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [192549] = 15, + [193028] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(7455), 1, @@ -382754,40 +384440,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, ACTIONS(7513), 1, anon_sym_operator, - STATE(2196), 1, - sym_operator_name, - STATE(2199), 1, + STATE(2177), 1, sym_qualified_identifier, - STATE(2201), 1, - sym_dependent_identifier, - STATE(2202), 1, + STATE(2226), 1, sym_destructor_name, - STATE(2203), 1, + STATE(2254), 1, + sym_operator_name, + STATE(2265), 1, + sym_dependent_identifier, + STATE(2279), 1, sym_template_function, - STATE(3282), 1, - sym_dependent_type_identifier, - STATE(3297), 1, - sym_qualified_type_identifier, STATE(3301), 1, sym_template_type, + STATE(3302), 1, + sym_qualified_type_identifier, + STATE(3305), 1, + sym_dependent_type_identifier, STATE(4904), 1, sym__scope_resolution, - [192595] = 11, + [193074] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5241), 1, sym__type_declarator, @@ -382799,7 +384485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [192633] = 15, + [193112] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(7515), 1, @@ -382812,40 +384498,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, ACTIONS(7523), 1, anon_sym_operator, - STATE(2172), 1, + STATE(2264), 1, sym_qualified_type_identifier, - STATE(2307), 1, - sym_dependent_type_identifier, - STATE(2311), 1, + STATE(2405), 1, sym_template_type, + STATE(2412), 1, + sym_dependent_type_identifier, STATE(2673), 1, sym_template_function, STATE(2674), 1, sym_destructor_name, - STATE(2677), 1, + STATE(2675), 1, sym_dependent_identifier, - STATE(2678), 1, + STATE(2676), 1, sym_qualified_identifier, - STATE(2680), 1, + STATE(2678), 1, sym_operator_name, STATE(4906), 1, sym__scope_resolution, - [192679] = 11, + [193158] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5235), 1, sym__type_declarator, @@ -382857,24 +384543,24 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [192717] = 12, + [193196] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7431), 1, anon_sym_LBRACE, - STATE(2982), 1, + STATE(3035), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(5719), 1, sym_abstract_function_declarator, @@ -382885,22 +384571,22 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [192757] = 11, + [193236] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5249), 1, sym__type_declarator, @@ -382912,24 +384598,24 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [192795] = 12, + [193274] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, - STATE(1908), 1, + STATE(1895), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(5647), 1, sym_abstract_function_declarator, @@ -382940,7 +384626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [192835] = 15, + [193314] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(7517), 1, @@ -382957,36 +384643,36 @@ static const uint16_t ts_small_parse_table[] = { sym_template_function, STATE(2674), 1, sym_destructor_name, - STATE(2677), 1, + STATE(2675), 1, sym_dependent_identifier, - STATE(2678), 1, + STATE(2676), 1, sym_qualified_identifier, - STATE(2680), 1, + STATE(2678), 1, sym_operator_name, - STATE(3282), 1, - sym_dependent_type_identifier, - STATE(3297), 1, - sym_qualified_type_identifier, STATE(3301), 1, sym_template_type, + STATE(3302), 1, + sym_qualified_type_identifier, + STATE(3305), 1, + sym_dependent_type_identifier, STATE(4911), 1, sym__scope_resolution, - [192881] = 11, + [193360] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5252), 1, sym__type_declarator, @@ -382998,7 +384684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [192919] = 15, + [193398] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(7531), 1, @@ -383011,40 +384697,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, ACTIONS(7539), 1, anon_sym_operator, - STATE(3002), 1, + STATE(3014), 1, sym_operator_name, - STATE(3006), 1, - sym_dependent_identifier, - STATE(3009), 1, - sym_destructor_name, - STATE(3010), 1, - sym_template_function, - STATE(3034), 1, + STATE(3021), 1, sym_qualified_identifier, - STATE(3282), 1, - sym_dependent_type_identifier, - STATE(3297), 1, - sym_qualified_type_identifier, + STATE(3022), 1, + sym_dependent_identifier, + STATE(3023), 1, + sym_destructor_name, + STATE(3024), 1, + sym_template_function, STATE(3301), 1, sym_template_type, + STATE(3302), 1, + sym_qualified_type_identifier, + STATE(3305), 1, + sym_dependent_type_identifier, STATE(4913), 1, sym__scope_resolution, - [192965] = 11, + [193444] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5242), 1, sym__type_declarator, @@ -383056,22 +384742,22 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [193003] = 11, + [193482] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5260), 1, sym__type_declarator, @@ -383083,22 +384769,22 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [193041] = 11, + [193520] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5269), 1, sym__type_declarator, @@ -383110,12 +384796,12 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [193079] = 13, + [193558] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7397), 1, anon_sym_COMMA, @@ -383129,7 +384815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(7541), 1, anon_sym_COLON, - STATE(3812), 1, + STATE(3818), 1, sym_parameter_list, STATE(5949), 1, aux_sym_declaration_repeat1, @@ -383139,22 +384825,22 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [193121] = 12, + [193600] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7463), 1, anon_sym_LBRACE, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(5261), 1, sym_compound_statement, @@ -383167,24 +384853,24 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [193161] = 12, + [193640] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7433), 1, anon_sym_LBRACE, - STATE(2494), 1, + STATE(2572), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(5741), 1, sym_abstract_function_declarator, @@ -383195,22 +384881,22 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [193201] = 11, + [193680] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5265), 1, sym__type_declarator, @@ -383222,19 +384908,19 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [193239] = 6, + [193718] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5371), 1, + ACTIONS(5350), 1, anon_sym_LT, STATE(5033), 1, sym_template_argument_list, - ACTIONS(6419), 2, + ACTIONS(6359), 2, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3885), 9, + ACTIONS(3899), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -383244,7 +384930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [193267] = 15, + [193746] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(7533), 1, @@ -383257,25 +384943,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(7547), 1, anon_sym_template, - STATE(2826), 1, + STATE(2856), 1, sym_dependent_type_identifier, - STATE(2827), 1, + STATE(2857), 1, sym_template_type, - STATE(2957), 1, + STATE(2962), 1, sym_qualified_type_identifier, - STATE(3002), 1, + STATE(3014), 1, sym_operator_name, - STATE(3006), 1, - sym_dependent_identifier, - STATE(3009), 1, - sym_destructor_name, - STATE(3010), 1, - sym_template_function, - STATE(3034), 1, + STATE(3021), 1, sym_qualified_identifier, + STATE(3022), 1, + sym_dependent_identifier, + STATE(3023), 1, + sym_destructor_name, + STATE(3024), 1, + sym_template_function, STATE(4922), 1, sym__scope_resolution, - [193313] = 15, + [193792] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1501), 1, @@ -383288,25 +384974,25 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7551), 1, anon_sym_template, - STATE(2196), 1, - sym_operator_name, - STATE(2199), 1, + STATE(2177), 1, sym_qualified_identifier, - STATE(2201), 1, - sym_dependent_identifier, - STATE(2202), 1, + STATE(2226), 1, sym_destructor_name, - STATE(2203), 1, + STATE(2254), 1, + sym_operator_name, + STATE(2265), 1, + sym_dependent_identifier, + STATE(2279), 1, sym_template_function, - STATE(3282), 1, - sym_dependent_type_identifier, - STATE(3297), 1, - sym_qualified_type_identifier, STATE(3301), 1, sym_template_type, + STATE(3302), 1, + sym_qualified_type_identifier, + STATE(3305), 1, + sym_dependent_type_identifier, STATE(4923), 1, sym__scope_resolution, - [193359] = 15, + [193838] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(7553), 1, @@ -383319,30 +385005,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, ACTIONS(7561), 1, anon_sym_operator, - STATE(2719), 1, - sym_operator_name, - STATE(2726), 1, - sym_qualified_identifier, - STATE(2730), 1, - sym_dependent_identifier, STATE(2732), 1, - sym_destructor_name, + sym_operator_name, STATE(2735), 1, + sym_qualified_identifier, + STATE(2737), 1, + sym_dependent_identifier, + STATE(2746), 1, + sym_destructor_name, + STATE(2751), 1, sym_template_function, - STATE(3282), 1, - sym_dependent_type_identifier, - STATE(3297), 1, - sym_qualified_type_identifier, STATE(3301), 1, sym_template_type, + STATE(3302), 1, + sym_qualified_type_identifier, + STATE(3305), 1, + sym_dependent_type_identifier, STATE(4924), 1, sym__scope_resolution, - [193405] = 5, + [193884] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7563), 1, anon_sym_RPAREN, - STATE(2561), 3, + STATE(2482), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, @@ -383358,22 +385044,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [193431] = 11, + [193910] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5216), 1, sym__type_declarator, @@ -383385,7 +385071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [193469] = 15, + [193948] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(7555), 1, @@ -383398,40 +385084,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(7569), 1, anon_sym_template, - STATE(2172), 1, + STATE(2264), 1, sym_qualified_type_identifier, - STATE(2307), 1, - sym_dependent_type_identifier, - STATE(2311), 1, + STATE(2405), 1, sym_template_type, - STATE(2719), 1, - sym_operator_name, - STATE(2726), 1, - sym_qualified_identifier, - STATE(2730), 1, - sym_dependent_identifier, + STATE(2412), 1, + sym_dependent_type_identifier, STATE(2732), 1, - sym_destructor_name, + sym_operator_name, STATE(2735), 1, + sym_qualified_identifier, + STATE(2737), 1, + sym_dependent_identifier, + STATE(2746), 1, + sym_destructor_name, + STATE(2751), 1, sym_template_function, STATE(4927), 1, sym__scope_resolution, - [193515] = 12, + [193994] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7413), 1, anon_sym_LBRACE, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(5020), 1, sym_compound_statement, @@ -383444,22 +385130,22 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [193555] = 11, + [194034] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5282), 1, sym__type_declarator, @@ -383471,7 +385157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [193593] = 15, + [194072] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(7483), 1, @@ -383484,42 +385170,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(7575), 1, anon_sym_template, - STATE(2534), 1, + STATE(2470), 1, sym_template_function, - STATE(2535), 1, + STATE(2476), 1, sym_destructor_name, - STATE(2550), 1, + STATE(2478), 1, sym_dependent_identifier, - STATE(2552), 1, + STATE(2479), 1, sym_qualified_identifier, - STATE(2578), 1, + STATE(2481), 1, sym_operator_name, - STATE(3282), 1, - sym_dependent_type_identifier, - STATE(3297), 1, - sym_qualified_type_identifier, STATE(3301), 1, sym_template_type, + STATE(3302), 1, + sym_qualified_type_identifier, + STATE(3305), 1, + sym_dependent_type_identifier, STATE(4930), 1, sym__scope_resolution, - [193639] = 10, + [194118] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, - ACTIONS(6837), 1, + ACTIONS(6829), 1, anon_sym_STAR, - ACTIONS(6839), 1, + ACTIONS(6831), 1, anon_sym_AMP_AMP, - ACTIONS(6841), 1, + ACTIONS(6833), 1, anon_sym_AMP, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(5503), 1, sym__abstract_declarator, - ACTIONS(5712), 2, + ACTIONS(5734), 2, anon_sym_LBRACE, anon_sym_requires, STATE(5097), 5, @@ -383528,22 +385214,22 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [193675] = 11, + [194154] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5285), 1, sym__type_declarator, @@ -383555,43 +385241,43 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [193713] = 15, + [194192] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1501), 1, anon_sym_operator, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(3431), 1, + ACTIONS(3363), 1, anon_sym_COLON_COLON, ACTIONS(7577), 1, sym_identifier, ACTIONS(7579), 1, anon_sym_template, - STATE(2196), 1, - sym_operator_name, - STATE(2199), 1, + STATE(2177), 1, sym_qualified_identifier, - STATE(2201), 1, - sym_dependent_identifier, - STATE(2202), 1, + STATE(2226), 1, sym_destructor_name, - STATE(2203), 1, + STATE(2254), 1, + sym_operator_name, + STATE(2265), 1, + sym_dependent_identifier, + STATE(2279), 1, sym_template_function, - STATE(3282), 1, - sym_dependent_type_identifier, - STATE(3297), 1, - sym_qualified_type_identifier, STATE(3301), 1, sym_template_type, + STATE(3302), 1, + sym_qualified_type_identifier, + STATE(3305), 1, + sym_dependent_type_identifier, STATE(4933), 1, sym__scope_resolution, - [193759] = 13, + [194238] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7397), 1, anon_sym_COMMA, @@ -383605,7 +385291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(7581), 1, anon_sym_COLON, - STATE(3812), 1, + STATE(3818), 1, sym_parameter_list, STATE(5949), 1, aux_sym_declaration_repeat1, @@ -383615,24 +385301,24 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [193801] = 12, + [194280] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7439), 1, anon_sym_LBRACE, - STATE(3654), 1, + STATE(3820), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(5526), 1, sym_abstract_function_declarator, @@ -383643,12 +385329,12 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [193841] = 5, + [194320] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7583), 1, anon_sym_RPAREN, - STATE(2561), 3, + STATE(2482), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, @@ -383664,12 +385350,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [193867] = 5, + [194346] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7585), 1, anon_sym_RPAREN, - STATE(2561), 3, + STATE(2482), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, @@ -383685,24 +385371,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [193893] = 12, + [194372] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN2, ACTIONS(3829), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(3831), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(3833), 1, + anon_sym_AMP_AMP, + ACTIONS(3835), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(7447), 1, anon_sym_LBRACE, - STATE(3353), 1, + STATE(3361), 1, sym_compound_statement, - STATE(4395), 1, + STATE(4402), 1, sym_parameter_list, STATE(5545), 1, sym_abstract_function_declarator, @@ -383713,7 +385399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [193933] = 15, + [194412] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(7555), 1, @@ -383726,30 +385412,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(7591), 1, anon_sym_template, - STATE(2719), 1, - sym_operator_name, - STATE(2726), 1, - sym_qualified_identifier, - STATE(2730), 1, - sym_dependent_identifier, STATE(2732), 1, - sym_destructor_name, + sym_operator_name, STATE(2735), 1, + sym_qualified_identifier, + STATE(2737), 1, + sym_dependent_identifier, + STATE(2746), 1, + sym_destructor_name, + STATE(2751), 1, sym_template_function, - STATE(3282), 1, - sym_dependent_type_identifier, - STATE(3297), 1, - sym_qualified_type_identifier, STATE(3301), 1, sym_template_type, + STATE(3302), 1, + sym_qualified_type_identifier, + STATE(3305), 1, + sym_dependent_type_identifier, STATE(4939), 1, sym__scope_resolution, - [193979] = 5, + [194458] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7593), 1, anon_sym_RPAREN, - STATE(2561), 3, + STATE(2482), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, @@ -383765,19 +385451,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [194005] = 6, + [194484] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5371), 1, + ACTIONS(5350), 1, anon_sym_LT, STATE(5033), 1, sym_template_argument_list, - ACTIONS(3686), 2, + ACTIONS(3544), 2, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3691), 9, + ACTIONS(3549), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -383787,22 +385473,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [194033] = 11, + [194512] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5246), 1, sym__type_declarator, @@ -383814,12 +385500,12 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [194071] = 13, + [194550] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7397), 1, anon_sym_COMMA, @@ -383833,7 +385519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(7595), 1, anon_sym_COLON, - STATE(3812), 1, + STATE(3818), 1, sym_parameter_list, STATE(5949), 1, aux_sym_declaration_repeat1, @@ -383843,12 +385529,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [194113] = 13, + [194592] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7397), 1, anon_sym_COMMA, @@ -383862,7 +385548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(7597), 1, anon_sym_COLON, - STATE(3812), 1, + STATE(3818), 1, sym_parameter_list, STATE(5949), 1, aux_sym_declaration_repeat1, @@ -383872,22 +385558,22 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [194155] = 11, + [194634] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5420), 1, + ACTIONS(5416), 1, sym_auto, - ACTIONS(5422), 1, + ACTIONS(5418), 1, anon_sym_decltype, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, STATE(5222), 1, sym__type_declarator, @@ -383899,68 +385585,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [194193] = 9, + [194672] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, ACTIONS(7599), 1, sym_identifier, - STATE(2341), 1, + STATE(2373), 1, aux_sym_sized_type_specifier_repeat1, STATE(5401), 1, sym__scope_resolution, - STATE(3191), 2, + STATE(3185), 2, sym_sized_type_specifier, sym_qualified_type_identifier, STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2421), 4, + ACTIONS(2577), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [194226] = 9, + [194705] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3428), 1, + STATE(3492), 1, sym_field_declaration_list, STATE(5765), 1, sym_virtual_specifier, STATE(6323), 1, sym_base_class_clause, - ACTIONS(3982), 2, + ACTIONS(4013), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(3984), 4, + ACTIONS(4015), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [194259] = 9, + [194738] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, ACTIONS(7601), 1, sym_identifier, - STATE(1909), 1, + STATE(1921), 1, aux_sym_sized_type_specifier_repeat1, STATE(5389), 1, sym__scope_resolution, - STATE(2762), 2, + STATE(2764), 2, sym_sized_type_specifier, sym_qualified_type_identifier, STATE(6970), 2, @@ -383971,10 +385657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - [194292] = 11, + [194771] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7603), 1, anon_sym_SEMI, @@ -383986,95 +385672,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(7611), 1, anon_sym_try, - STATE(2039), 1, + STATE(2010), 1, sym_compound_statement, STATE(6427), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2102), 3, + STATE(2012), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [194329] = 9, + [194808] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3495), 1, + STATE(3497), 1, sym_field_declaration_list, STATE(5593), 1, sym_virtual_specifier, STATE(6580), 1, sym_base_class_clause, - ACTIONS(3972), 2, + ACTIONS(4021), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(3974), 4, + ACTIONS(4023), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [194362] = 9, + [194841] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3502), 1, + STATE(3505), 1, sym_field_declaration_list, STATE(5618), 1, sym_virtual_specifier, STATE(6564), 1, sym_base_class_clause, - ACTIONS(4007), 2, + ACTIONS(3989), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(4009), 4, + ACTIONS(3991), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [194395] = 9, + [194874] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3512), 1, + STATE(3499), 1, sym_field_declaration_list, STATE(5621), 1, sym_virtual_specifier, STATE(6550), 1, sym_base_class_clause, - ACTIONS(3986), 2, + ACTIONS(4017), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(3988), 4, + ACTIONS(4019), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [194428] = 11, + [194907] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(251), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -384084,18 +385770,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7617), 1, anon_sym_try, - STATE(500), 1, + STATE(503), 1, sym_compound_statement, STATE(6325), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(501), 3, + STATE(502), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [194465] = 5, + [194944] = 5, ACTIONS(3), 1, sym_comment, STATE(6706), 1, @@ -384115,58 +385801,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [194490] = 9, + [194969] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3482), 1, + STATE(3446), 1, sym_field_declaration_list, STATE(5789), 1, sym_virtual_specifier, STATE(6285), 1, sym_base_class_clause, - ACTIONS(4000), 2, + ACTIONS(3985), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(4002), 4, + ACTIONS(3987), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [194523] = 9, + [195002] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3472), 1, + STATE(3442), 1, sym_field_declaration_list, STATE(5769), 1, sym_virtual_specifier, STATE(6274), 1, sym_base_class_clause, - ACTIONS(3990), 2, + ACTIONS(3975), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(3992), 4, + ACTIONS(3977), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [194556] = 11, + [195035] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7605), 1, anon_sym_LBRACE, @@ -384178,55 +385864,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, ACTIONS(7619), 1, anon_sym_SEMI, - STATE(2042), 1, + STATE(2020), 1, sym_compound_statement, STATE(6385), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2025), 3, + STATE(2015), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [194593] = 9, + [195072] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5584), 1, + ACTIONS(5543), 1, anon_sym_COLON_COLON, ACTIONS(7601), 1, sym_identifier, - STATE(2341), 1, + STATE(2373), 1, aux_sym_sized_type_specifier_repeat1, STATE(5420), 1, sym__scope_resolution, - STATE(3191), 2, + STATE(3185), 2, sym_sized_type_specifier, sym_qualified_type_identifier, STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2421), 4, + ACTIONS(2577), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [194626] = 9, + [195105] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, ACTIONS(7621), 1, sym_identifier, - STATE(1909), 1, + STATE(1921), 1, aux_sym_sized_type_specifier_repeat1, STATE(5445), 1, sym__scope_resolution, - STATE(2762), 2, + STATE(2764), 2, sym_sized_type_specifier, sym_qualified_type_identifier, STATE(6970), 2, @@ -384237,7 +385923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - [194659] = 12, + [195138] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -384254,7 +385940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7415), 1, anon_sym_SEMI, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(6099), 1, aux_sym_declaration_repeat1, @@ -384264,12 +385950,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [194698] = 11, + [195177] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(536), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -384279,46 +385965,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7627), 1, anon_sym_try, - STATE(991), 1, + STATE(966), 1, sym_compound_statement, STATE(6364), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(992), 3, + STATE(967), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [194735] = 13, + [195214] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1501), 1, anon_sym_operator, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(5381), 1, + ACTIONS(5384), 1, anon_sym_COLON_COLON, ACTIONS(7629), 1, sym_identifier, ACTIONS(7631), 1, anon_sym_template, - STATE(2196), 1, - sym_operator_name, - STATE(2199), 1, + STATE(2177), 1, sym_qualified_identifier, - STATE(2201), 1, - sym_dependent_identifier, - STATE(2202), 1, + STATE(2226), 1, sym_destructor_name, - STATE(2203), 1, + STATE(2254), 1, + sym_operator_name, + STATE(2265), 1, + sym_dependent_identifier, + STATE(2279), 1, sym_template_function, STATE(4962), 1, sym__scope_resolution, STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [194776] = 5, + [195255] = 5, ACTIONS(3), 1, sym_comment, STATE(6628), 1, @@ -384338,44 +386024,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [194801] = 9, + [195280] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3439), 1, + STATE(3413), 1, sym_field_declaration_list, STATE(5540), 1, sym_virtual_specifier, STATE(6566), 1, sym_base_class_clause, - ACTIONS(4019), 2, + ACTIONS(4003), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(4021), 4, + ACTIONS(4005), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [194834] = 9, + [195313] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, ACTIONS(7633), 1, sym_identifier, - STATE(3289), 1, + STATE(3277), 1, aux_sym_sized_type_specifier_repeat1, STATE(5385), 1, sym__scope_resolution, - STATE(3535), 2, + STATE(3488), 2, sym_sized_type_specifier, sym_qualified_type_identifier, STATE(6970), 2, @@ -384386,36 +386072,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - [194867] = 9, + [195346] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3433), 1, + STATE(3411), 1, sym_field_declaration_list, STATE(5782), 1, sym_virtual_specifier, STATE(6544), 1, sym_base_class_clause, - ACTIONS(4015), 2, + ACTIONS(3999), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(4017), 4, + ACTIONS(4001), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [194900] = 11, + [195379] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(536), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -384425,69 +386111,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, ACTIONS(7635), 1, anon_sym_SEMI, - STATE(941), 1, + STATE(908), 1, sym_compound_statement, STATE(6585), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(942), 3, + STATE(1047), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [194937] = 9, + [195416] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3430), 1, + STATE(3409), 1, sym_field_declaration_list, STATE(5734), 1, sym_virtual_specifier, STATE(6494), 1, sym_base_class_clause, - ACTIONS(4011), 2, + ACTIONS(3995), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5437), 2, + ACTIONS(5432), 2, anon_sym_final, anon_sym_override, - ACTIONS(4013), 4, + ACTIONS(3997), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [194970] = 9, + [195449] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, ACTIONS(7601), 1, sym_identifier, - STATE(4279), 1, + STATE(4269), 1, aux_sym_sized_type_specifier_repeat1, STATE(5354), 1, sym__scope_resolution, - STATE(4531), 2, + STATE(4530), 2, sym_sized_type_specifier, sym_qualified_type_identifier, STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(5556), 4, + ACTIONS(5563), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [195003] = 11, + [195482] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -384499,18 +386185,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7643), 1, anon_sym_try, - STATE(2325), 1, + STATE(2326), 1, sym_compound_statement, STATE(6467), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2323), 3, + STATE(2325), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [195040] = 13, + [195519] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -384527,7 +386213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(7645), 1, anon_sym_EQ, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(5949), 1, aux_sym_declaration_repeat1, @@ -384538,10 +386224,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [195081] = 11, + [195560] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -384553,25 +386239,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, ACTIONS(7647), 1, anon_sym_SEMI, - STATE(2399), 1, + STATE(2197), 1, sym_compound_statement, STATE(6546), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2384), 3, + STATE(2201), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [195118] = 13, + [195597] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1501), 1, anon_sym_operator, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4708), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, ACTIONS(7649), 1, sym_identifier, @@ -384592,7 +386278,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [195159] = 12, + [195638] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -384609,7 +386295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7407), 1, anon_sym_EQ, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(5819), 1, aux_sym_declaration_repeat1, @@ -384619,7 +386305,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [195198] = 12, + [195677] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -384636,7 +386322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7467), 1, anon_sym_SEMI, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(5950), 1, aux_sym_declaration_repeat1, @@ -384646,14 +386332,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [195237] = 4, + [195716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(4996), 1, anon_sym_LBRACK, ACTIONS(7653), 1, anon_sym_AMP_AMP, - ACTIONS(4910), 11, + ACTIONS(4994), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -384665,16 +386351,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [195260] = 5, + [195739] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(4786), 1, anon_sym_LBRACK, ACTIONS(7653), 1, anon_sym_AMP_AMP, ACTIONS(7655), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 10, + ACTIONS(4784), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -384685,31 +386371,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [195285] = 9, + [195764] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6598), 1, + ACTIONS(6551), 1, anon_sym_COLON_COLON, ACTIONS(7657), 1, sym_identifier, - STATE(1906), 1, + STATE(1935), 1, aux_sym_sized_type_specifier_repeat1, STATE(5352), 1, sym__scope_resolution, - STATE(2910), 2, + STATE(2932), 2, sym_sized_type_specifier, sym_qualified_type_identifier, STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(6600), 4, + ACTIONS(6553), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [195318] = 12, + [195797] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -384726,7 +386412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7499), 1, anon_sym_SEMI, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(5949), 1, aux_sym_declaration_repeat1, @@ -384736,12 +386422,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [195357] = 11, + [195836] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(576), 1, + ACTIONS(704), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -384751,23 +386437,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7663), 1, anon_sym_try, - STATE(973), 1, + STATE(946), 1, sym_compound_statement, STATE(6506), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(989), 3, + STATE(963), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [195394] = 11, + [195873] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(251), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -384777,21 +386463,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, ACTIONS(7665), 1, anon_sym_SEMI, - STATE(505), 1, + STATE(521), 1, sym_compound_statement, STATE(6252), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(504), 3, + STATE(520), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [195431] = 11, + [195910] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -384803,18 +386489,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7673), 1, anon_sym_try, - STATE(2409), 1, + STATE(2337), 1, sym_compound_statement, STATE(6308), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2410), 3, + STATE(2333), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [195468] = 5, + [195947] = 5, ACTIONS(3), 1, sym_comment, STATE(6828), 1, @@ -384834,7 +386520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [195493] = 13, + [195972] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1501), 1, @@ -384847,22 +386533,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(7679), 1, anon_sym_template, - STATE(2196), 1, - sym_operator_name, - STATE(2199), 1, + STATE(2177), 1, sym_qualified_identifier, - STATE(2201), 1, - sym_dependent_identifier, - STATE(2202), 1, + STATE(2226), 1, sym_destructor_name, - STATE(2203), 1, + STATE(2254), 1, + sym_operator_name, + STATE(2265), 1, + sym_dependent_identifier, + STATE(2279), 1, sym_template_function, STATE(4984), 1, sym__scope_resolution, STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [195534] = 5, + [196013] = 5, ACTIONS(3), 1, sym_comment, STATE(6803), 1, @@ -384882,7 +386568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [195559] = 12, + [196038] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -384899,7 +386585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7421), 1, anon_sym_SEMI, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(5817), 1, aux_sym_declaration_repeat1, @@ -384909,10 +386595,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [195598] = 11, + [196077] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -384924,47 +386610,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, ACTIONS(7681), 1, anon_sym_SEMI, - STATE(2348), 1, + STATE(2261), 1, sym_compound_statement, STATE(6282), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2345), 3, + STATE(2258), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [195635] = 9, + [196114] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, ACTIONS(7683), 1, sym_identifier, - STATE(1885), 1, + STATE(1901), 1, aux_sym_sized_type_specifier_repeat1, STATE(5362), 1, sym__scope_resolution, - STATE(2635), 2, + STATE(2636), 2, sym_sized_type_specifier, sym_qualified_type_identifier, STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(6622), 4, + ACTIONS(6575), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [195668] = 11, + [196147] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -384974,42 +386660,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7689), 1, anon_sym_try, - STATE(926), 1, + STATE(902), 1, sym_compound_statement, STATE(6526), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(923), 3, + STATE(1022), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [195705] = 9, + [196184] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, ACTIONS(7633), 1, sym_identifier, - STATE(3505), 1, + STATE(3479), 1, aux_sym_sized_type_specifier_repeat1, STATE(5396), 1, sym__scope_resolution, - STATE(3535), 2, + STATE(3488), 2, sym_sized_type_specifier, sym_qualified_type_identifier, STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2867), 4, + ACTIONS(2863), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [195738] = 5, + [196217] = 5, ACTIONS(3), 1, sym_comment, STATE(6853), 1, @@ -385029,35 +386715,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [195763] = 13, + [196242] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1501), 1, anon_sym_operator, ACTIONS(1601), 1, anon_sym_TILDE, - ACTIONS(4978), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, ACTIONS(7475), 1, sym_identifier, ACTIONS(7477), 1, anon_sym_template, - STATE(2196), 1, - sym_operator_name, - STATE(2199), 1, + STATE(2177), 1, sym_qualified_identifier, - STATE(2201), 1, - sym_dependent_identifier, - STATE(2202), 1, + STATE(2226), 1, sym_destructor_name, - STATE(2203), 1, + STATE(2254), 1, + sym_operator_name, + STATE(2265), 1, + sym_dependent_identifier, + STATE(2279), 1, sym_template_function, STATE(4992), 1, sym__scope_resolution, STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [195804] = 5, + [196283] = 5, ACTIONS(3), 1, sym_comment, STATE(6771), 1, @@ -385077,12 +386763,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [195829] = 11, + [196308] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(576), 1, + ACTIONS(704), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -385092,66 +386778,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, ACTIONS(7691), 1, anon_sym_SEMI, - STATE(932), 1, + STATE(957), 1, sym_compound_statement, STATE(6541), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(934), 3, + STATE(1056), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [195866] = 9, + [196345] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, ACTIONS(7693), 1, sym_identifier, - STATE(1825), 1, + STATE(1818), 1, aux_sym_sized_type_specifier_repeat1, STATE(5371), 1, sym__scope_resolution, - STATE(2109), 2, + STATE(2128), 2, sym_sized_type_specifier, sym_qualified_type_identifier, STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(6513), 4, + ACTIONS(6523), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [195899] = 9, + [196378] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(7695), 1, sym_identifier, - STATE(1844), 1, + STATE(1851), 1, aux_sym_sized_type_specifier_repeat1, STATE(5349), 1, sym__scope_resolution, - STATE(2241), 2, + STATE(2421), 2, sym_sized_type_specifier, sym_qualified_type_identifier, STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(6539), 4, + ACTIONS(6597), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [195932] = 5, + [196411] = 5, ACTIONS(3), 1, sym_comment, STATE(6788), 1, @@ -385171,20 +386857,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [195957] = 9, + [196436] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, ACTIONS(7633), 1, sym_identifier, - STATE(3289), 1, + STATE(3277), 1, aux_sym_sized_type_specifier_repeat1, STATE(5396), 1, sym__scope_resolution, - STATE(3535), 2, + STATE(3488), 2, sym_sized_type_specifier, sym_qualified_type_identifier, STATE(6970), 2, @@ -385195,36 +386881,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - [195990] = 9, + [196469] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, ACTIONS(7633), 1, sym_identifier, - STATE(3505), 1, + STATE(3479), 1, aux_sym_sized_type_specifier_repeat1, STATE(5385), 1, sym__scope_resolution, - STATE(3535), 2, + STATE(3488), 2, sym_sized_type_specifier, sym_qualified_type_identifier, STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2867), 4, + ACTIONS(2863), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [196023] = 11, + [196502] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -385234,23 +386920,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, ACTIONS(7697), 1, anon_sym_SEMI, - STATE(944), 1, + STATE(982), 1, sym_compound_statement, STATE(6157), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(940), 3, + STATE(990), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [196060] = 10, + [196539] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(536), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -385258,25 +386944,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7627), 1, anon_sym_try, - STATE(991), 1, + STATE(966), 1, sym_compound_statement, STATE(6364), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(992), 3, + STATE(967), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [196094] = 4, + [196573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(4996), 1, anon_sym_LBRACK, ACTIONS(7699), 1, anon_sym_AMP_AMP, - ACTIONS(4910), 10, + ACTIONS(4994), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -385287,133 +386973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [196116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 1, - anon_sym_LBRACK, - ACTIONS(4137), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - anon_sym_requires, - [196136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 1, - anon_sym_LBRACK, - ACTIONS(4137), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - anon_sym_requires, - [196156] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(5456), 1, - anon_sym_COLON_COLON, - ACTIONS(6946), 1, - anon_sym_LBRACE, - ACTIONS(7198), 1, - sym_identifier, - STATE(2422), 1, - sym_template_type, - STATE(2865), 1, - sym_enumerator_list, - STATE(5389), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7701), 2, - anon_sym_class, - anon_sym_struct, - STATE(4560), 2, - sym__class_name, - sym_qualified_type_identifier, - [196192] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_template, - ACTIONS(6620), 1, - anon_sym_COLON_COLON, - ACTIONS(7012), 1, - sym_identifier, - ACTIONS(7703), 1, - anon_sym_LBRACE, - STATE(2152), 1, - sym_template_type, - STATE(2656), 1, - sym_enumerator_list, - STATE(5362), 1, - sym__scope_resolution, - STATE(6970), 1, - sym_dependent_type_identifier, - ACTIONS(7705), 2, - anon_sym_class, - anon_sym_struct, - STATE(2186), 2, - sym__class_name, - sym_qualified_type_identifier, - [196228] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5696), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7348), 1, - anon_sym_LPAREN2, - ACTIONS(7354), 1, - anon_sym_LBRACK, - STATE(4071), 1, - sym_parameter_list, - STATE(5120), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7707), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [196256] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5696), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7348), 1, - anon_sym_LPAREN2, - ACTIONS(7354), 1, - anon_sym_LBRACK, - STATE(4071), 1, - sym_parameter_list, - STATE(5120), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7709), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [196284] = 3, + [196595] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4143), 1, @@ -385430,12 +386990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [196304] = 3, + [196615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4139), 1, + ACTIONS(4143), 1, anon_sym_LBRACK, - ACTIONS(4141), 11, + ACTIONS(4145), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -385447,12 +387007,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [196324] = 3, + [196635] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5476), 1, + anon_sym_COLON_COLON, + ACTIONS(6968), 1, + anon_sym_LBRACE, + ACTIONS(7202), 1, + sym_identifier, + STATE(2396), 1, + sym_template_type, + STATE(2869), 1, + sym_enumerator_list, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7701), 2, + anon_sym_class, + anon_sym_struct, + STATE(4560), 2, + sym__class_name, + sym_qualified_type_identifier, + [196671] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6573), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + ACTIONS(7703), 1, + anon_sym_LBRACE, + STATE(2100), 1, + sym_template_type, + STATE(2656), 1, + sym_enumerator_list, + STATE(5362), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7705), 2, + anon_sym_class, + anon_sym_struct, + STATE(2223), 2, + sym__class_name, + sym_qualified_type_identifier, + [196707] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5645), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, anon_sym_LBRACK, - ACTIONS(4101), 11, + STATE(4073), 1, + sym_parameter_list, + STATE(5120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7707), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [196735] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5645), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + STATE(4073), 1, + sym_parameter_list, + STATE(5120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7709), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [196763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4094), 1, + anon_sym_LBRACK, + ACTIONS(4096), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -385464,12 +387116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [196344] = 3, + [196783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4189), 1, + ACTIONS(4126), 1, anon_sym_LBRACK, - ACTIONS(4191), 11, + ACTIONS(4128), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -385481,7 +387133,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [196364] = 3, + [196803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 1, + anon_sym_LBRACK, + ACTIONS(4139), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4130), 1, + anon_sym_LBRACK, + ACTIONS(4132), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196843] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7713), 1, @@ -385498,12 +387184,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [196384] = 10, + [196863] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(536), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -385511,23 +387197,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7627), 1, anon_sym_try, - STATE(941), 1, + STATE(908), 1, sym_compound_statement, STATE(6585), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(942), 3, + STATE(1047), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [196418] = 3, + [196897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4170), 1, + ACTIONS(4071), 1, anon_sym_LBRACK, - ACTIONS(4172), 11, + ACTIONS(4073), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -385539,7 +387225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [196438] = 10, + [196917] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -385552,7 +387238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7407), 1, anon_sym_EQ, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, ACTIONS(7715), 2, anon_sym_COMMA, @@ -385563,7 +387249,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6403), 2, sym_argument_list, sym_initializer_list, - [196472] = 3, + [196951] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7719), 1, @@ -385580,12 +387266,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [196492] = 10, + [196971] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(576), 1, + ACTIONS(704), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -385593,23 +387279,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7663), 1, anon_sym_try, - STATE(973), 1, + STATE(946), 1, sym_compound_statement, STATE(6506), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(989), 3, + STATE(963), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [196526] = 3, + [197005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4174), 1, + ACTIONS(4098), 1, anon_sym_LBRACK, - ACTIONS(4176), 11, + ACTIONS(4100), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -385621,12 +387307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [196546] = 3, + [197025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4117), 1, + ACTIONS(4090), 1, anon_sym_LBRACK, - ACTIONS(4119), 11, + ACTIONS(4092), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -385638,7 +387324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [196566] = 3, + [197045] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7723), 1, @@ -385655,16 +387341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [196586] = 5, + [197065] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(4786), 1, anon_sym_LBRACK, ACTIONS(7699), 1, anon_sym_AMP_AMP, ACTIONS(7725), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 9, + ACTIONS(4784), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -385674,7 +387360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [196610] = 3, + [197089] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7729), 1, @@ -385691,20 +387377,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [196630] = 11, + [197109] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, ACTIONS(7731), 1, anon_sym_LBRACE, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, - STATE(2234), 1, + STATE(2404), 1, sym_enumerator_list, STATE(5349), 1, sym__scope_resolution, @@ -385713,23 +387399,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7733), 2, anon_sym_class, anon_sym_struct, - STATE(1987), 2, + STATE(2052), 2, sym__class_name, sym_qualified_type_identifier, - [196666] = 11, + [197145] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, - ACTIONS(7164), 1, + ACTIONS(7166), 1, sym_identifier, ACTIONS(7735), 1, anon_sym_LBRACE, - STATE(4371), 1, + STATE(4359), 1, sym_template_type, - STATE(4490), 1, + STATE(4489), 1, sym_enumerator_list, STATE(5354), 1, sym__scope_resolution, @@ -385738,15 +387424,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7737), 2, anon_sym_class, anon_sym_struct, - STATE(4406), 2, + STATE(4417), 2, sym__class_name, sym_qualified_type_identifier, - [196702] = 3, + [197181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4181), 1, + ACTIONS(4102), 1, anon_sym_LBRACK, - ACTIONS(4183), 11, + ACTIONS(4104), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -385758,20 +387444,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [196722] = 9, + [197201] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3829), 1, anon_sym_LPAREN2, - ACTIONS(6676), 1, + ACTIONS(6684), 1, anon_sym_STAR, - ACTIONS(6678), 1, + ACTIONS(6686), 1, anon_sym_AMP_AMP, - ACTIONS(6680), 1, + ACTIONS(6688), 1, anon_sym_AMP, - ACTIONS(6682), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, - STATE(4263), 1, + STATE(4265), 1, sym_parameter_list, STATE(5377), 1, sym__abstract_declarator, @@ -385781,12 +387467,12 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [196754] = 10, + [197233] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -385794,27 +387480,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7689), 1, anon_sym_try, - STATE(926), 1, + STATE(902), 1, sym_compound_statement, STATE(6526), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(923), 3, + STATE(1022), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [196788] = 7, + [197267] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7354), 1, anon_sym_LBRACK, - STATE(4071), 1, + STATE(4073), 1, sym_parameter_list, STATE(5120), 2, sym_attribute_declaration, @@ -385826,16 +387512,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [196816] = 5, + [197295] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6130), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6216), 1, + ACTIONS(6221), 1, anon_sym_requires, STATE(5114), 1, sym_requires_clause, - ACTIONS(6122), 9, + ACTIONS(6127), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -385845,20 +387531,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [196840] = 11, + [197319] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, ACTIONS(7741), 1, anon_sym_LBRACE, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2111), 1, + STATE(2170), 1, sym_enumerator_list, STATE(5371), 1, sym__scope_resolution, @@ -385867,15 +387553,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7743), 2, anon_sym_class, anon_sym_struct, - STATE(2576), 2, + STATE(2534), 2, sym__class_name, sym_qualified_type_identifier, - [196876] = 3, + [197355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4113), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4115), 11, + ACTIONS(4080), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -385887,15 +387573,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [196896] = 4, + [197375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3771), 1, + ACTIONS(3727), 1, anon_sym_COLON_COLON, - ACTIONS(3773), 2, + ACTIONS(3729), 2, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3778), 9, + ACTIONS(3734), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -385905,20 +387591,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [196918] = 11, + [197397] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(6968), 1, + ACTIONS(6972), 1, anon_sym_LBRACE, - ACTIONS(6998), 1, + ACTIONS(7008), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3168), 1, + STATE(3154), 1, sym_enumerator_list, STATE(5401), 1, sym__scope_resolution, @@ -385927,17 +387613,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7745), 2, anon_sym_class, anon_sym_struct, - STATE(3362), 2, + STATE(3351), 2, sym__class_name, sym_qualified_type_identifier, - [196954] = 4, + [197433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4732), 1, + ACTIONS(4713), 1, anon_sym_LBRACK, ACTIONS(7747), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(4730), 10, + ACTIONS(4711), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -385948,12 +387634,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [196976] = 3, + [197455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4135), 1, + ACTIONS(4143), 1, anon_sym_LBRACK, - ACTIONS(4137), 11, + ACTIONS(4145), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -385965,16 +387651,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [196996] = 5, + [197475] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6216), 1, + ACTIONS(6221), 1, anon_sym_requires, - ACTIONS(6706), 1, + ACTIONS(6716), 1, anon_sym_LBRACK, STATE(5042), 1, sym_requires_clause, - ACTIONS(6704), 9, + ACTIONS(6714), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -385984,7 +387670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [197020] = 3, + [197499] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7751), 1, @@ -386001,10 +387687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [197040] = 5, + [197519] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6216), 1, + ACTIONS(6221), 1, anon_sym_requires, ACTIONS(7755), 1, anon_sym_LBRACK, @@ -386020,16 +387706,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [197064] = 5, + [197543] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6216), 1, + ACTIONS(6221), 1, anon_sym_requires, - ACTIONS(6467), 1, + ACTIONS(6471), 1, anon_sym_LBRACK, STATE(5135), 1, sym_requires_clause, - ACTIONS(6465), 9, + ACTIONS(6469), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -386039,20 +387725,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [197088] = 11, + [197567] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(7086), 1, + ACTIONS(7034), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4014), 1, + STATE(3846), 1, sym_enumerator_list, STATE(5381), 1, sym__scope_resolution, @@ -386061,10 +387747,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7757), 2, anon_sym_class, anon_sym_struct, - STATE(3685), 2, + STATE(3641), 2, sym__class_name, sym_qualified_type_identifier, - [197124] = 3, + [197603] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7761), 1, @@ -386081,7 +387767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [197144] = 5, + [197623] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7765), 1, @@ -386100,20 +387786,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [197168] = 11, + [197647] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6598), 1, + ACTIONS(6551), 1, anon_sym_COLON_COLON, - ACTIONS(6974), 1, + ACTIONS(6994), 1, sym_identifier, ACTIONS(7770), 1, anon_sym_LBRACE, - STATE(2191), 1, + STATE(2349), 1, sym_template_type, - STATE(2798), 1, + STATE(2780), 1, sym_enumerator_list, STATE(5352), 1, sym__scope_resolution, @@ -386122,15 +387808,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7772), 2, anon_sym_class, anon_sym_struct, - STATE(2340), 2, + STATE(2394), 2, sym__class_name, sym_qualified_type_identifier, - [197204] = 3, + [197683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4086), 1, anon_sym_LBRACK, - ACTIONS(4158), 11, + ACTIONS(4088), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -386142,12 +387828,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [197224] = 10, + [197703] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(251), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -386155,18 +387841,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7617), 1, anon_sym_try, - STATE(500), 1, + STATE(503), 1, sym_compound_statement, STATE(6325), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(501), 3, + STATE(502), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [197258] = 3, + [197737] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7776), 1, @@ -386183,20 +387869,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [197278] = 11, + [197757] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6946), 1, + ACTIONS(6968), 1, anon_sym_LBRACE, - ACTIONS(6988), 1, + ACTIONS(6982), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2865), 1, + STATE(2869), 1, sym_enumerator_list, STATE(5445), 1, sym__scope_resolution, @@ -386205,15 +387891,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7778), 2, anon_sym_class, anon_sym_struct, - STATE(3448), 2, + STATE(3561), 2, sym__class_name, sym_qualified_type_identifier, - [197314] = 3, + [197793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2017), 1, anon_sym_LBRACK, - ACTIONS(2335), 11, + ACTIONS(2015), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -386225,7 +387911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [197334] = 3, + [197813] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7782), 1, @@ -386242,20 +387928,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [197354] = 11, + [197833] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3516), 1, + STATE(3453), 1, sym_enumerator_list, STATE(5385), 1, sym__scope_resolution, @@ -386264,10 +387950,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7784), 2, anon_sym_class, anon_sym_struct, - STATE(3471), 2, + STATE(3439), 2, sym__class_name, sym_qualified_type_identifier, - [197390] = 3, + [197869] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7788), 1, @@ -386284,12 +387970,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [197410] = 10, + [197889] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(251), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -386297,31 +387983,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7617), 1, anon_sym_try, - STATE(505), 1, + STATE(521), 1, sym_compound_statement, STATE(6252), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(504), 3, + STATE(520), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [197444] = 11, + [197923] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3516), 1, + STATE(3453), 1, sym_enumerator_list, STATE(5396), 1, sym__scope_resolution, @@ -386330,19 +388016,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7790), 2, anon_sym_class, anon_sym_struct, - STATE(3926), 2, + STATE(3684), 2, sym__class_name, sym_qualified_type_identifier, - [197480] = 5, + [197959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(6863), 1, + ACTIONS(6847), 1, anon_sym_LT, - STATE(1945), 1, + STATE(2035), 1, sym_template_argument_list, - ACTIONS(3534), 9, + ACTIONS(3469), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -386352,20 +388038,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_requires, - [197504] = 11, + [197983] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(6946), 1, + ACTIONS(6968), 1, anon_sym_LBRACE, - ACTIONS(7198), 1, + ACTIONS(7202), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2865), 1, + STATE(2869), 1, sym_enumerator_list, STATE(5389), 1, sym__scope_resolution, @@ -386374,10 +388060,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7792), 2, anon_sym_class, anon_sym_struct, - STATE(4410), 2, + STATE(4421), 2, sym__class_name, sym_qualified_type_identifier, - [197540] = 3, + [198019] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7755), 1, @@ -386394,16 +388080,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [197560] = 5, + [198039] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(6863), 1, + ACTIONS(6847), 1, anon_sym_LT, - STATE(1945), 1, + STATE(2035), 1, sym_template_argument_list, - ACTIONS(3684), 9, + ACTIONS(3542), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -386413,12 +388099,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_requires, - [197584] = 3, + [198063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6702), 1, + ACTIONS(6710), 1, anon_sym_LBRACK, - ACTIONS(6700), 11, + ACTIONS(6708), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -386430,7 +388116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [197604] = 3, + [198083] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7796), 1, @@ -386447,20 +388133,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [197624] = 11, + [198103] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3516), 1, + STATE(3453), 1, sym_enumerator_list, STATE(5381), 1, sym__scope_resolution, @@ -386469,19 +388155,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7798), 2, anon_sym_class, anon_sym_struct, - STATE(4361), 2, + STATE(4374), 2, sym__class_name, sym_qualified_type_identifier, - [197660] = 5, + [198139] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6216), 1, + ACTIONS(6221), 1, anon_sym_requires, - ACTIONS(6702), 1, + ACTIONS(6710), 1, anon_sym_LBRACK, STATE(5057), 1, sym_requires_clause, - ACTIONS(6700), 9, + ACTIONS(6708), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -386491,20 +388177,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [197684] = 11, + [198163] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, ACTIONS(7741), 1, anon_sym_LBRACE, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2111), 1, + STATE(2170), 1, sym_enumerator_list, STATE(5371), 1, sym__scope_resolution, @@ -386513,23 +388199,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7800), 2, anon_sym_class, anon_sym_struct, - STATE(1924), 2, + STATE(1962), 2, sym__class_name, sym_qualified_type_identifier, - [197720] = 11, + [198199] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3516), 1, + STATE(3453), 1, sym_enumerator_list, STATE(5435), 1, sym__scope_resolution, @@ -386538,23 +388224,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7802), 2, anon_sym_class, anon_sym_struct, - STATE(4117), 2, + STATE(4107), 2, sym__class_name, sym_qualified_type_identifier, - [197756] = 11, + [198235] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3516), 1, + STATE(3453), 1, sym_enumerator_list, STATE(5381), 1, sym__scope_resolution, @@ -386563,15 +388249,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7804), 2, anon_sym_class, anon_sym_struct, - STATE(4359), 2, + STATE(4358), 2, sym__class_name, sym_qualified_type_identifier, - [197792] = 3, + [198271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(2327), 11, + ACTIONS(1999), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -386583,7 +388269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [197812] = 3, + [198291] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7808), 1, @@ -386600,10 +388286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [197832] = 5, + [198311] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6216), 1, + ACTIONS(6221), 1, anon_sym_requires, ACTIONS(7812), 1, anon_sym_LBRACK, @@ -386619,20 +388305,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [197856] = 11, + [198335] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6946), 1, + ACTIONS(6968), 1, anon_sym_LBRACE, - ACTIONS(6988), 1, + ACTIONS(6982), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2865), 1, + STATE(2869), 1, sym_enumerator_list, STATE(5445), 1, sym__scope_resolution, @@ -386641,23 +388327,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7814), 2, anon_sym_class, anon_sym_struct, - STATE(3276), 2, + STATE(3295), 2, sym__class_name, sym_qualified_type_identifier, - [197892] = 11, + [198371] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3516), 1, + STATE(3453), 1, sym_enumerator_list, STATE(5435), 1, sym__scope_resolution, @@ -386669,7 +388355,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4426), 2, sym__class_name, sym_qualified_type_identifier, - [197928] = 3, + [198407] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7820), 1, @@ -386686,12 +388372,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [197948] = 3, + [198427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 1, + ACTIONS(4147), 1, anon_sym_LBRACK, - ACTIONS(4105), 11, + ACTIONS(4149), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -386703,20 +388389,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [197968] = 11, + [198447] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7086), 1, + ACTIONS(7034), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4014), 1, + STATE(3846), 1, sym_enumerator_list, STATE(5435), 1, sym__scope_resolution, @@ -386725,15 +388411,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7822), 2, anon_sym_class, anon_sym_struct, - STATE(4443), 2, + STATE(4439), 2, sym__class_name, sym_qualified_type_identifier, - [198004] = 3, + [198483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6706), 1, + ACTIONS(6716), 1, anon_sym_LBRACK, - ACTIONS(6704), 11, + ACTIONS(6714), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -386745,7 +388431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [198024] = 3, + [198503] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7826), 1, @@ -386762,20 +388448,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [198044] = 11, + [198523] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5584), 1, + ACTIONS(5543), 1, anon_sym_COLON_COLON, - ACTIONS(6968), 1, + ACTIONS(6972), 1, anon_sym_LBRACE, ACTIONS(7391), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3168), 1, + STATE(3154), 1, sym_enumerator_list, STATE(5420), 1, sym__scope_resolution, @@ -386784,23 +388470,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7828), 2, anon_sym_class, anon_sym_struct, - STATE(4412), 2, + STATE(4416), 2, sym__class_name, sym_qualified_type_identifier, - [198080] = 11, + [198559] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, ACTIONS(7379), 1, anon_sym_COLON_COLON, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3516), 1, + STATE(3453), 1, sym_enumerator_list, STATE(5414), 1, sym__scope_resolution, @@ -386812,7 +388498,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5195), 2, sym__class_name, sym_qualified_type_identifier, - [198116] = 5, + [198595] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -386831,16 +388517,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [198140] = 7, + [198619] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7354), 1, anon_sym_LBRACK, - STATE(4071), 1, + STATE(4073), 1, sym_parameter_list, STATE(5120), 2, sym_attribute_declaration, @@ -386852,7 +388538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [198168] = 3, + [198647] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7840), 1, @@ -386869,12 +388555,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [198188] = 10, + [198667] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -386882,27 +388568,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7689), 1, anon_sym_try, - STATE(944), 1, + STATE(982), 1, sym_compound_statement, STATE(6157), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(940), 3, + STATE(990), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [198222] = 7, + [198701] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7354), 1, anon_sym_LBRACK, - STATE(4071), 1, + STATE(4073), 1, sym_parameter_list, STATE(5120), 2, sym_attribute_declaration, @@ -386914,12 +388600,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [198250] = 10, + [198729] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(576), 1, + ACTIONS(704), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, ACTIONS(7609), 1, anon_sym_COLON, @@ -386927,23 +388613,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(7663), 1, anon_sym_try, - STATE(932), 1, + STATE(957), 1, sym_compound_statement, STATE(6541), 1, sym_field_initializer_list, - ACTIONS(3885), 2, + ACTIONS(3899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(934), 3, + STATE(1056), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [198284] = 3, + [198763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4149), 1, + ACTIONS(4082), 1, anon_sym_LBRACK, - ACTIONS(4151), 11, + ACTIONS(4084), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -386955,10 +388641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [198304] = 5, + [198783] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6216), 1, + ACTIONS(6221), 1, anon_sym_requires, ACTIONS(7761), 1, anon_sym_LBRACK, @@ -386974,10 +388660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [198328] = 5, + [198807] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 1, + ACTIONS(6145), 1, anon_sym_requires, ACTIONS(7812), 1, anon_sym_LBRACK, @@ -386992,12 +388678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [198351] = 3, + [198830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4652), 1, + ACTIONS(4645), 1, anon_sym_LBRACK, - ACTIONS(4650), 10, + ACTIONS(4640), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -387008,16 +388694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [198370] = 7, + [198849] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(3812), 1, + STATE(3818), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, @@ -387028,12 +388714,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [198397] = 3, + [198876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 1, + ACTIONS(3544), 1, anon_sym_LBRACK, - ACTIONS(3691), 10, + ACTIONS(3549), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -387044,12 +388730,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [198416] = 3, + [198895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 1, + ACTIONS(3544), 1, anon_sym_LBRACK, - ACTIONS(3691), 10, + ACTIONS(3549), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -387060,12 +388746,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [198435] = 3, + [198914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 1, + ACTIONS(3544), 1, anon_sym_LBRACK, - ACTIONS(3691), 10, + ACTIONS(3549), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -387076,16 +388762,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [198454] = 5, + [198933] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 1, + ACTIONS(6145), 1, anon_sym_requires, - ACTIONS(6467), 1, + ACTIONS(6471), 1, anon_sym_LBRACK, STATE(5135), 1, sym_requires_clause, - ACTIONS(6465), 8, + ACTIONS(6469), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -387094,12 +388780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [198477] = 3, + [198956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 1, + ACTIONS(3544), 1, anon_sym_LBRACK, - ACTIONS(3691), 10, + ACTIONS(3549), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -387110,10 +388796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [198496] = 5, + [198975] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 1, + ACTIONS(6145), 1, anon_sym_requires, ACTIONS(7848), 1, anon_sym_LBRACK, @@ -387128,7 +388814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [198519] = 7, + [198998] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -387137,7 +388823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, @@ -387148,12 +388834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [198546] = 3, + [199025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 1, + ACTIONS(3544), 1, anon_sym_LBRACK, - ACTIONS(3691), 10, + ACTIONS(3549), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -387164,7 +388850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [198565] = 2, + [199044] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7749), 11, @@ -387179,16 +388865,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [198582] = 5, + [199061] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(6904), 1, + ACTIONS(6905), 1, anon_sym_LT, - STATE(1956), 1, + STATE(2069), 1, sym_template_argument_list, - ACTIONS(3534), 8, + ACTIONS(3469), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -387197,14 +388883,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_GT2, anon_sym_requires, - [198605] = 5, + [199084] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4149), 1, + STATE(4163), 1, sym_parameter_list, ACTIONS(7852), 8, anon_sym_COMMA, @@ -387215,7 +388901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [198628] = 3, + [199107] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7858), 1, @@ -387231,16 +388917,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [198647] = 9, + [199126] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, STATE(5396), 1, sym__scope_resolution, @@ -387253,7 +388939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - [198678] = 7, + [199157] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -387262,7 +388948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, @@ -387273,7 +388959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [198705] = 3, + [199184] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7866), 1, @@ -387289,16 +388975,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [198724] = 5, + [199203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(6904), 1, + ACTIONS(6905), 1, anon_sym_LT, - STATE(1956), 1, + STATE(2069), 1, sym_template_argument_list, - ACTIONS(3684), 8, + ACTIONS(3542), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -387307,7 +388993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_GT2, anon_sym_requires, - [198747] = 3, + [199226] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7870), 1, @@ -387323,16 +389009,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [198766] = 5, + [199245] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6130), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6140), 1, + ACTIONS(6145), 1, anon_sym_requires, STATE(5114), 1, sym_requires_clause, - ACTIONS(6122), 8, + ACTIONS(6127), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -387341,7 +389027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [198789] = 2, + [199268] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7780), 11, @@ -387356,7 +389042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [198806] = 7, + [199285] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -387365,7 +389051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, @@ -387376,16 +389062,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [198833] = 7, + [199312] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(3812), 1, + STATE(3818), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, @@ -387396,7 +389082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [198860] = 2, + [199339] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7794), 11, @@ -387411,7 +389097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [198877] = 3, + [199356] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7876), 1, @@ -387427,7 +389113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [198896] = 7, + [199375] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -387436,7 +389122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, @@ -387447,12 +389133,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [198923] = 3, + [199402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6130), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6122), 10, + ACTIONS(6127), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -387463,12 +389149,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [198942] = 3, + [199421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6467), 1, + ACTIONS(6471), 1, anon_sym_LBRACK, - ACTIONS(6465), 10, + ACTIONS(6469), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -387479,16 +389165,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [198961] = 7, + [199440] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(3812), 1, + STATE(3818), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, @@ -387499,7 +389185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [198988] = 3, + [199467] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7882), 1, @@ -387515,14 +389201,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [199007] = 5, + [199486] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4149), 1, + STATE(4163), 1, sym_parameter_list, ACTIONS(7884), 8, anon_sym_COMMA, @@ -387533,7 +389219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [199030] = 7, + [199509] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -387542,7 +389228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, @@ -387553,16 +389239,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [199057] = 9, + [199536] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, STATE(5396), 1, sym__scope_resolution, @@ -387575,10 +389261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - [199088] = 5, + [199567] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7890), 1, anon_sym_LBRACK, @@ -387593,16 +389279,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [199111] = 8, + [199590] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, STATE(5300), 1, sym__type_declarator, @@ -387614,10 +389300,10 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [199140] = 5, + [199619] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 1, + ACTIONS(6145), 1, anon_sym_requires, ACTIONS(7761), 1, anon_sym_LBRACK, @@ -387632,10 +389318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [199163] = 5, + [199642] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 1, + ACTIONS(6145), 1, anon_sym_requires, ACTIONS(7755), 1, anon_sym_LBRACK, @@ -387650,7 +389336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [199186] = 2, + [199665] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7727), 11, @@ -387665,10 +389351,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [199203] = 2, + [199682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6700), 11, + ACTIONS(6708), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -387680,14 +389366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [199220] = 5, + [199699] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4149), 1, + STATE(4163), 1, sym_parameter_list, ACTIONS(7892), 8, anon_sym_COMMA, @@ -387698,14 +389384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [199243] = 5, + [199722] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4149), 1, + STATE(4163), 1, sym_parameter_list, ACTIONS(7894), 8, anon_sym_COMMA, @@ -387716,7 +389402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [199266] = 2, + [199745] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7711), 11, @@ -387731,7 +389417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [199283] = 5, + [199762] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7768), 1, @@ -387749,7 +389435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [199306] = 2, + [199785] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7824), 11, @@ -387764,7 +389450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [199323] = 3, + [199802] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7901), 1, @@ -387780,12 +389466,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [199342] = 3, + [199821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4732), 1, + ACTIONS(4713), 1, anon_sym_LBRACK, - ACTIONS(4730), 10, + ACTIONS(4711), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -387796,7 +389482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [199361] = 2, + [199840] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7838), 11, @@ -387811,14 +389497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [199378] = 5, + [199857] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4149), 1, + STATE(4163), 1, sym_parameter_list, ACTIONS(7903), 8, anon_sym_COMMA, @@ -387829,7 +389515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [199401] = 3, + [199880] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7812), 1, @@ -387845,12 +389531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [199420] = 3, + [199899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(4988), 1, anon_sym_LBRACK, - ACTIONS(5000), 10, + ACTIONS(4986), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -387861,7 +389547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [199439] = 2, + [199918] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7774), 11, @@ -387876,7 +389562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [199456] = 2, + [199935] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7759), 11, @@ -387891,12 +389577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [199473] = 3, + [199952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 1, + ACTIONS(4667), 1, anon_sym_LBRACK, - ACTIONS(4629), 10, + ACTIONS(4665), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -387907,16 +389593,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [199492] = 7, + [199971] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(3812), 1, + STATE(3818), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, @@ -387927,16 +389613,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [199519] = 5, + [199998] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 1, + ACTIONS(6145), 1, anon_sym_requires, - ACTIONS(6463), 1, + ACTIONS(6475), 1, anon_sym_LBRACK, STATE(5178), 1, sym_requires_clause, - ACTIONS(6461), 8, + ACTIONS(6473), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -387945,14 +389631,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [199542] = 5, + [200021] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4149), 1, + STATE(4163), 1, sym_parameter_list, ACTIONS(7905), 8, anon_sym_COMMA, @@ -387963,7 +389649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [199565] = 2, + [200044] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7786), 11, @@ -387978,7 +389664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [199582] = 3, + [200061] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7909), 1, @@ -387994,7 +389680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [199601] = 2, + [200080] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7753), 11, @@ -388009,7 +389695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [199618] = 2, + [200097] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7818), 11, @@ -388024,7 +389710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [199635] = 2, + [200114] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7717), 11, @@ -388039,7 +389725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [199652] = 2, + [200131] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7721), 11, @@ -388054,16 +389740,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [199669] = 8, + [200148] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(6712), 1, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6714), 1, + ACTIONS(6724), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(6726), 1, anon_sym_STAR, STATE(5413), 1, sym__type_declarator, @@ -388075,14 +389761,14 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [199698] = 5, + [200177] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4149), 1, + STATE(4163), 1, sym_parameter_list, ACTIONS(7911), 8, anon_sym_COMMA, @@ -388093,16 +389779,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [199721] = 5, + [200200] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 1, + ACTIONS(6145), 1, anon_sym_requires, - ACTIONS(6706), 1, + ACTIONS(6716), 1, anon_sym_LBRACK, STATE(5042), 1, sym_requires_clause, - ACTIONS(6704), 8, + ACTIONS(6714), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -388111,12 +389797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [199744] = 3, + [200223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, - ACTIONS(3885), 10, + ACTIONS(3899), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -388127,7 +389813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [199763] = 3, + [200242] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7915), 1, @@ -388143,7 +389829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [199782] = 2, + [200261] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7806), 11, @@ -388158,16 +389844,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [199799] = 5, + [200278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 1, + ACTIONS(6145), 1, anon_sym_requires, - ACTIONS(6702), 1, + ACTIONS(6710), 1, anon_sym_LBRACK, STATE(5057), 1, sym_requires_clause, - ACTIONS(6700), 8, + ACTIONS(6708), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -388176,10 +389862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [199822] = 2, + [200301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6704), 11, + ACTIONS(6714), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -388191,16 +389877,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [199839] = 7, + [200318] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(3812), 1, + STATE(3818), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, @@ -388211,16 +389897,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [199866] = 7, + [200345] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7354), 1, anon_sym_LBRACK, - STATE(4071), 1, + STATE(4073), 1, sym_parameter_list, STATE(5120), 2, sym_attribute_declaration, @@ -388231,7 +389917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [199893] = 5, + [200372] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7921), 1, @@ -388249,29 +389935,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [199916] = 10, + [200395] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3485), 1, + STATE(3393), 1, sym_enumerator_list, STATE(5381), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(4366), 2, + STATE(4369), 2, sym__class_name, sym_qualified_type_identifier, - [199948] = 7, + [200427] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -388280,7 +389966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4022), 1, + STATE(4061), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, @@ -388290,7 +389976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ, anon_sym_GT2, - [199974] = 7, + [200453] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -388299,7 +389985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4022), 1, + STATE(4061), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, @@ -388309,64 +389995,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ, anon_sym_GT2, - [200000] = 10, + [200479] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3485), 1, + STATE(3393), 1, sym_enumerator_list, STATE(5435), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(4115), 2, + STATE(4085), 2, sym__class_name, sym_qualified_type_identifier, - [200032] = 10, + [200511] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, - ACTIONS(7164), 1, + ACTIONS(7166), 1, sym_identifier, ACTIONS(7735), 1, anon_sym_LBRACE, - STATE(4371), 1, + STATE(4359), 1, sym_template_type, - STATE(4581), 1, + STATE(4500), 1, sym_enumerator_list, STATE(5354), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(4418), 2, + STATE(4408), 2, sym__class_name, sym_qualified_type_identifier, - [200064] = 10, + [200543] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(6946), 1, + ACTIONS(6968), 1, anon_sym_LBRACE, - ACTIONS(7198), 1, + ACTIONS(7202), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2703), 1, + STATE(2821), 1, sym_enumerator_list, STATE(5389), 1, sym__scope_resolution, @@ -388375,29 +390061,29 @@ static const uint16_t ts_small_parse_table[] = { STATE(4559), 2, sym__class_name, sym_qualified_type_identifier, - [200096] = 10, + [200575] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3485), 1, + STATE(3393), 1, sym_enumerator_list, STATE(5396), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(3911), 2, + STATE(3670), 2, sym__class_name, sym_qualified_type_identifier, - [200128] = 7, + [200607] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -388406,7 +390092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4022), 1, + STATE(4061), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, @@ -388416,7 +390102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ, anon_sym_GT2, - [200154] = 7, + [200633] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -388425,7 +390111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4022), 1, + STATE(4061), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, @@ -388435,29 +390121,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ, anon_sym_GT2, - [200180] = 10, + [200659] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3485), 1, + STATE(3393), 1, sym_enumerator_list, STATE(5381), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(4362), 2, + STATE(4357), 2, sym__class_name, sym_qualified_type_identifier, - [200212] = 3, + [200691] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7927), 1, @@ -388472,14 +390158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [200230] = 5, + [200709] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4193), 1, + STATE(4194), 1, sym_parameter_list, ACTIONS(7894), 7, anon_sym_COMMA, @@ -388489,7 +390175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [200252] = 3, + [200731] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7931), 1, @@ -388504,7 +390190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [200270] = 3, + [200749] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7935), 1, @@ -388519,7 +390205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [200288] = 3, + [200767] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7939), 1, @@ -388534,12 +390220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [200306] = 3, + [200785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5015), 1, + ACTIONS(4950), 1, anon_sym_LBRACK, - ACTIONS(5013), 9, + ACTIONS(4948), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -388549,7 +390235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [200324] = 10, + [200803] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -388562,35 +390248,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7639), 1, anon_sym_LBRACE, - STATE(2333), 1, + STATE(2331), 1, sym_try_statement, - STATE(2365), 1, + STATE(2347), 1, sym_compound_statement, - STATE(4095), 1, + STATE(4110), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [200356] = 7, + [200835] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, ACTIONS(7941), 1, anon_sym_COLON, - STATE(3520), 1, + STATE(3483), 1, sym_enumerator_list, - STATE(3523), 1, + STATE(3486), 1, sym__enum_base_clause, - ACTIONS(4160), 2, + ACTIONS(4203), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(4162), 4, + ACTIONS(4205), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [200382] = 3, + [200861] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7848), 1, @@ -388605,29 +390291,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [200400] = 10, + [200879] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5584), 1, + ACTIONS(5543), 1, anon_sym_COLON_COLON, - ACTIONS(6968), 1, + ACTIONS(6972), 1, anon_sym_LBRACE, ACTIONS(7391), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3179), 1, + STATE(3167), 1, sym_enumerator_list, STATE(5420), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(4420), 2, + STATE(4413), 2, sym__class_name, sym_qualified_type_identifier, - [200432] = 7, + [200911] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -388636,7 +390322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4022), 1, + STATE(4061), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, @@ -388646,126 +390332,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ, anon_sym_GT2, - [200458] = 10, + [200937] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6946), 1, + ACTIONS(6968), 1, anon_sym_LBRACE, - ACTIONS(6988), 1, + ACTIONS(6982), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2703), 1, + STATE(2821), 1, sym_enumerator_list, STATE(5445), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(3280), 2, + STATE(3303), 2, sym__class_name, sym_qualified_type_identifier, - [200490] = 10, + [200969] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, - ACTIONS(7086), 1, + ACTIONS(7034), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4049), 1, + STATE(3840), 1, sym_enumerator_list, STATE(5381), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(3723), 2, + STATE(3632), 2, sym__class_name, sym_qualified_type_identifier, - [200522] = 10, + [201001] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7138), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3485), 1, + STATE(3393), 1, sym_enumerator_list, STATE(5385), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(3462), 2, + STATE(3427), 2, sym__class_name, sym_qualified_type_identifier, - [200554] = 10, + [201033] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3485), 1, + STATE(3393), 1, sym_enumerator_list, STATE(5435), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(4428), 2, + STATE(4427), 2, sym__class_name, sym_qualified_type_identifier, - [200586] = 10, + [201065] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, - ACTIONS(7086), 1, + ACTIONS(7034), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(4049), 1, + STATE(3840), 1, sym_enumerator_list, STATE(5435), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(4447), 2, + STATE(4429), 2, sym__class_name, sym_qualified_type_identifier, - [200618] = 5, + [201097] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(4786), 1, anon_sym_LBRACK, ACTIONS(7943), 1, anon_sym_PIPE_PIPE, ACTIONS(7945), 1, anon_sym_AMP_AMP, - ACTIONS(4895), 7, + ACTIONS(4784), 7, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, @@ -388773,14 +390459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_try, anon_sym_requires, - [200640] = 5, + [201119] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4193), 1, + STATE(4194), 1, sym_parameter_list, ACTIONS(7903), 7, anon_sym_COMMA, @@ -388790,7 +390476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [200662] = 10, + [201141] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -388803,38 +390489,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7471), 1, anon_sym_try, - STATE(519), 1, - sym_compound_statement, - STATE(523), 1, + STATE(488), 1, sym_try_statement, - STATE(4095), 1, + STATE(489), 1, + sym_compound_statement, + STATE(4110), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [200694] = 10, + [201173] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, - ACTIONS(6946), 1, + ACTIONS(6968), 1, anon_sym_LBRACE, - ACTIONS(7198), 1, + ACTIONS(7202), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2703), 1, + STATE(2821), 1, sym_enumerator_list, STATE(5389), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(4405), 2, + STATE(4411), 2, sym__class_name, sym_qualified_type_identifier, - [200726] = 3, + [201205] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7949), 1, @@ -388849,10 +390535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [200744] = 5, + [201223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7834), 1, anon_sym_LBRACK, @@ -388866,7 +390552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [200766] = 10, + [201245] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -388879,45 +390565,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7605), 1, anon_sym_LBRACE, - STATE(2084), 1, - sym_compound_statement, - STATE(2086), 1, + STATE(1968), 1, sym_try_statement, - STATE(4095), 1, + STATE(2021), 1, + sym_compound_statement, + STATE(4110), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [200798] = 10, + [201277] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, ACTIONS(7741), 1, anon_sym_LBRACE, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2078), 1, + STATE(2093), 1, sym_enumerator_list, STATE(5371), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(1922), 2, + STATE(1954), 2, sym__class_name, sym_qualified_type_identifier, - [200830] = 5, + [201309] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4193), 1, + STATE(4194), 1, sym_parameter_list, ACTIONS(7892), 7, anon_sym_COMMA, @@ -388927,77 +390613,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [200852] = 7, + [201331] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, ACTIONS(7941), 1, anon_sym_COLON, - STATE(3480), 1, - sym__enum_base_clause, - STATE(3484), 1, + STATE(3395), 1, sym_enumerator_list, - ACTIONS(4166), 2, + STATE(3396), 1, + sym__enum_base_clause, + ACTIONS(4215), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(4168), 4, + ACTIONS(4217), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [200878] = 10, + [201357] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(7012), 1, + ACTIONS(6952), 1, sym_identifier, ACTIONS(7703), 1, anon_sym_LBRACE, - STATE(2152), 1, + STATE(2100), 1, sym_template_type, - STATE(2647), 1, + STATE(2648), 1, sym_enumerator_list, STATE(5362), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(2183), 2, + STATE(2228), 2, sym__class_name, sym_qualified_type_identifier, - [200910] = 10, + [201389] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6598), 1, + ACTIONS(6551), 1, anon_sym_COLON_COLON, - ACTIONS(6974), 1, + ACTIONS(6994), 1, sym_identifier, ACTIONS(7770), 1, anon_sym_LBRACE, - STATE(2191), 1, + STATE(2349), 1, sym_template_type, - STATE(2906), 1, + STATE(2888), 1, sym_enumerator_list, STATE(5352), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(2387), 2, + STATE(2368), 2, sym__class_name, sym_qualified_type_identifier, - [200942] = 5, + [201421] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4193), 1, + STATE(4194), 1, sym_parameter_list, ACTIONS(7884), 7, anon_sym_COMMA, @@ -389007,7 +390693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [200964] = 10, + [201443] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -389020,43 +390706,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7425), 1, anon_sym_try, - STATE(1026), 1, + STATE(1001), 1, sym_compound_statement, - STATE(1027), 1, + STATE(1002), 1, sym_try_statement, - STATE(4095), 1, + STATE(4110), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [200996] = 10, + [201475] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(6936), 1, sym_identifier, ACTIONS(7731), 1, anon_sym_LBRACE, - STATE(1936), 1, + STATE(1947), 1, sym_template_type, - STATE(2386), 1, + STATE(2378), 1, sym_enumerator_list, STATE(5349), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(1964), 2, + STATE(2038), 2, sym__class_name, sym_qualified_type_identifier, - [201028] = 10, + [201507] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(576), 1, + ACTIONS(704), 1, anon_sym_LBRACE, ACTIONS(7348), 1, anon_sym_LPAREN2, @@ -389064,23 +390750,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7419), 1, anon_sym_try, - STATE(963), 1, + STATE(925), 1, sym_try_statement, - STATE(964), 1, + STATE(930), 1, sym_compound_statement, - STATE(4095), 1, + STATE(4110), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [201060] = 5, + [201539] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4193), 1, + STATE(4194), 1, sym_parameter_list, ACTIONS(7905), 7, anon_sym_COMMA, @@ -389090,7 +390776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [201082] = 10, + [201561] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -389103,21 +390789,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7409), 1, anon_sym_try, - STATE(952), 1, + STATE(951), 1, sym_compound_statement, - STATE(953), 1, + STATE(952), 1, sym_try_statement, - STATE(4095), 1, + STATE(4110), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [201114] = 3, + [201593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6463), 1, + ACTIONS(6475), 1, anon_sym_LBRACK, - ACTIONS(6461), 9, + ACTIONS(6473), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -389127,14 +390813,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [201132] = 5, + [201611] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4193), 1, + STATE(4194), 1, sym_parameter_list, ACTIONS(7852), 7, anon_sym_COMMA, @@ -389144,7 +390830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [201154] = 3, + [201633] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7953), 1, @@ -389159,14 +390845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [201172] = 5, + [201651] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4193), 1, + STATE(4194), 1, sym_parameter_list, ACTIONS(7911), 7, anon_sym_COMMA, @@ -389176,20 +390862,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [201194] = 10, + [201673] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5661), 1, + ACTIONS(5639), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, ACTIONS(7379), 1, anon_sym_COLON_COLON, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, - STATE(3485), 1, + STATE(3393), 1, sym_enumerator_list, STATE(5414), 1, sym__scope_resolution, @@ -389198,7 +390884,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5177), 2, sym__class_name, sym_qualified_type_identifier, - [201226] = 10, + [201705] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -389211,23 +390897,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7669), 1, anon_sym_LBRACE, - STATE(2267), 1, - sym_compound_statement, - STATE(2268), 1, + STATE(2184), 1, sym_try_statement, - STATE(4095), 1, + STATE(2186), 1, + sym_compound_statement, + STATE(4110), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [201258] = 4, + [201737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(4996), 1, anon_sym_LBRACK, ACTIONS(7945), 1, anon_sym_AMP_AMP, - ACTIONS(4910), 8, + ACTIONS(4994), 8, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -389236,7 +390922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_try, anon_sym_requires, - [201278] = 3, + [201757] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7957), 1, @@ -389251,78 +390937,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [201296] = 10, + [201775] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, - ACTIONS(6952), 1, + ACTIONS(7018), 1, sym_identifier, ACTIONS(7741), 1, anon_sym_LBRACE, - STATE(1891), 1, + STATE(1903), 1, sym_template_type, - STATE(2078), 1, + STATE(2093), 1, sym_enumerator_list, STATE(5371), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(2537), 2, + STATE(2499), 2, sym__class_name, sym_qualified_type_identifier, - [201328] = 10, + [201807] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, - ACTIONS(6946), 1, + ACTIONS(6968), 1, anon_sym_LBRACE, - ACTIONS(6988), 1, + ACTIONS(6982), 1, sym_identifier, - STATE(2422), 1, + STATE(2396), 1, sym_template_type, - STATE(2703), 1, + STATE(2821), 1, sym_enumerator_list, STATE(5445), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(3443), 2, + STATE(3545), 2, sym__class_name, sym_qualified_type_identifier, - [201360] = 10, + [201839] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, - ACTIONS(6968), 1, + ACTIONS(6972), 1, anon_sym_LBRACE, - ACTIONS(6998), 1, + ACTIONS(7008), 1, sym_identifier, - STATE(2776), 1, + STATE(2779), 1, sym_template_type, - STATE(3179), 1, + STATE(3167), 1, sym_enumerator_list, STATE(5401), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(3350), 2, + STATE(3347), 2, sym__class_name, sym_qualified_type_identifier, - [201392] = 3, + [201871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3744), 1, + ACTIONS(3682), 1, anon_sym_LBRACK, - ACTIONS(3746), 8, + ACTIONS(3684), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -389331,7 +391017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [201409] = 9, + [201888] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -389351,23 +391037,23 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [201438] = 5, + [201917] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6467), 1, + ACTIONS(6471), 1, anon_sym_LBRACK, - ACTIONS(6592), 1, + ACTIONS(6543), 1, anon_sym_requires, STATE(5135), 1, sym_requires_clause, - ACTIONS(6465), 6, + ACTIONS(6469), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [201459] = 8, + [201938] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -389386,10 +391072,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [201486] = 2, + [201965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4137), 9, + ACTIONS(4145), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -389399,14 +391085,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [201501] = 5, + [201980] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4213), 1, + STATE(4218), 1, sym_parameter_list, ACTIONS(7903), 6, anon_sym_COMMA, @@ -389415,14 +391101,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_requires, - [201522] = 5, + [202001] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4213), 1, + STATE(4218), 1, sym_parameter_list, ACTIONS(7894), 6, anon_sym_COMMA, @@ -389431,7 +391117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_requires, - [201543] = 9, + [202022] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -389451,7 +391137,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [201572] = 9, + [202051] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -389464,14 +391150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7971), 1, anon_sym_EQ, - STATE(3828), 1, + STATE(3836), 1, sym_parameter_list, STATE(6934), 1, sym_initializer_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [201601] = 5, + [202080] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7973), 1, @@ -389487,10 +391173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [201622] = 2, + [202101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4137), 9, + ACTIONS(4145), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -389500,10 +391186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [201637] = 2, + [202116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4141), 9, + ACTIONS(4128), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -389513,14 +391199,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [201652] = 4, + [202131] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7979), 1, anon_sym_PIPE_PIPE, ACTIONS(7981), 1, anon_sym_AMP_AMP, - ACTIONS(4895), 7, + ACTIONS(4784), 7, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, @@ -389528,14 +391214,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [201671] = 5, + [202150] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4213), 1, + STATE(4218), 1, sym_parameter_list, ACTIONS(7892), 6, anon_sym_COMMA, @@ -389544,10 +391230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_requires, - [201692] = 2, + [202171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4137), 9, + ACTIONS(4145), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -389557,7 +391243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [201707] = 8, + [202186] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -389576,14 +391262,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [201734] = 5, + [202213] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4213), 1, + STATE(4218), 1, sym_parameter_list, ACTIONS(7911), 6, anon_sym_COMMA, @@ -389592,7 +391278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_requires, - [201755] = 4, + [202234] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7989), 1, @@ -389607,7 +391293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - [201774] = 8, + [202253] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -389626,10 +391312,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [201801] = 5, + [202280] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 1, + ACTIONS(6543), 1, anon_sym_requires, ACTIONS(7812), 1, anon_sym_LBRACK, @@ -389642,7 +391328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [201822] = 9, + [202301] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -389662,14 +391348,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [201851] = 5, + [202330] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4213), 1, + STATE(4218), 1, sym_parameter_list, ACTIONS(7852), 6, anon_sym_COMMA, @@ -389678,14 +391364,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_requires, - [201872] = 5, + [202351] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4213), 1, + STATE(4218), 1, sym_parameter_list, ACTIONS(7905), 6, anon_sym_COMMA, @@ -389694,7 +391380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_requires, - [201893] = 8, + [202372] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -389713,14 +391399,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [201920] = 5, + [202399] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4213), 1, + STATE(4218), 1, sym_parameter_list, ACTIONS(7884), 6, anon_sym_COMMA, @@ -389729,7 +391415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_requires, - [201941] = 7, + [202420] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -389747,7 +391433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [201966] = 9, + [202445] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -389767,7 +391453,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [201995] = 9, + [202474] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -389787,42 +391473,42 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [202024] = 5, + [202503] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 1, + ACTIONS(6543), 1, anon_sym_requires, - ACTIONS(6706), 1, + ACTIONS(6716), 1, anon_sym_LBRACK, STATE(5042), 1, sym_requires_clause, - ACTIONS(6704), 6, + ACTIONS(6714), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [202045] = 5, + [202524] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 1, + ACTIONS(6543), 1, anon_sym_requires, - ACTIONS(6702), 1, + ACTIONS(6710), 1, anon_sym_LBRACK, STATE(5057), 1, sym_requires_clause, - ACTIONS(6700), 6, + ACTIONS(6708), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [202066] = 5, + [202545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 1, + ACTIONS(6543), 1, anon_sym_requires, ACTIONS(7761), 1, anon_sym_LBRACK, @@ -389835,7 +391521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [202087] = 9, + [202566] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -389855,10 +391541,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [202116] = 5, + [202595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 1, + ACTIONS(6543), 1, anon_sym_requires, ACTIONS(7755), 1, anon_sym_LBRACK, @@ -389871,10 +391557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [202137] = 2, + [202616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4172), 9, + ACTIONS(4073), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -389884,7 +391570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [202152] = 9, + [202631] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -389904,10 +391590,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [202181] = 2, + [202660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4191), 9, + ACTIONS(4132), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -389917,10 +391603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [202196] = 2, + [202675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4101), 9, + ACTIONS(4139), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -389930,7 +391616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [202211] = 9, + [202690] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -389950,12 +391636,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [202240] = 3, + [202719] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8011), 1, anon_sym_AMP_AMP, - ACTIONS(4910), 8, + ACTIONS(4994), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -389964,7 +391650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_requires, - [202257] = 8, + [202736] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -389975,7 +391661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8015), 1, anon_sym_EQ, - STATE(4022), 1, + STATE(4061), 1, sym_parameter_list, ACTIONS(8013), 2, anon_sym_COMMA, @@ -389983,10 +391669,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [202284] = 2, + [202763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4105), 9, + ACTIONS(4149), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -389996,10 +391682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [202299] = 2, + [202778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 9, + ACTIONS(4088), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -390009,10 +391695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [202314] = 2, + [202793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 9, + ACTIONS(4100), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -390022,7 +391708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [202329] = 5, + [202808] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8017), 1, @@ -390038,10 +391724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [202350] = 2, + [202829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4145), 9, + ACTIONS(4096), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -390051,7 +391737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [202365] = 9, + [202844] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390071,10 +391757,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [202394] = 2, + [202873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4119), 9, + ACTIONS(4092), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -390084,7 +391770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [202409] = 8, + [202888] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390095,7 +391781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8023), 1, anon_sym_EQ, - STATE(4022), 1, + STATE(4061), 1, sym_parameter_list, ACTIONS(8013), 2, anon_sym_COMMA, @@ -390103,26 +391789,26 @@ static const uint16_t ts_small_parse_table[] = { STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [202436] = 5, + [202915] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6130), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6592), 1, + ACTIONS(6543), 1, anon_sym_requires, STATE(5114), 1, sym_requires_clause, - ACTIONS(6122), 6, + ACTIONS(6127), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [202457] = 2, + [202936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4115), 9, + ACTIONS(4080), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -390132,7 +391818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [202472] = 9, + [202951] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390152,7 +391838,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [202501] = 8, + [202980] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -390171,10 +391857,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [202528] = 2, + [203007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4151), 9, + ACTIONS(4084), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -390184,7 +391870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [202543] = 8, + [203022] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -390203,7 +391889,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [202570] = 9, + [203049] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390223,24 +391909,24 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [202599] = 6, + [203078] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(2175), 1, + STATE(2298), 1, sym_template_argument_list, - ACTIONS(3686), 2, + ACTIONS(3544), 2, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3691), 4, + ACTIONS(3549), 4, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [202622] = 9, + [203101] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(7995), 1, @@ -390260,7 +391946,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [202651] = 8, + [203130] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -390279,10 +391965,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [202678] = 2, + [203157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4183), 9, + ACTIONS(4104), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -390292,7 +391978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [202693] = 9, + [203172] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390312,7 +391998,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [202722] = 9, + [203201] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390332,7 +392018,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [202751] = 5, + [203230] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8049), 1, @@ -390348,7 +392034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [202772] = 7, + [203251] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390366,7 +392052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [202797] = 9, + [203276] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390386,7 +392072,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [202826] = 9, + [203305] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390406,7 +392092,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [202855] = 8, + [203334] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -390425,7 +392111,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [202882] = 9, + [203361] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390445,7 +392131,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [202911] = 9, + [203390] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390465,7 +392151,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [202940] = 5, + [203419] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8067), 1, @@ -390481,12 +392167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [202961] = 3, + [203440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3758), 1, + ACTIONS(3609), 1, anon_sym_LBRACK, - ACTIONS(3760), 8, + ACTIONS(3611), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -390495,7 +392181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [202978] = 9, + [203457] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390515,29 +392201,29 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [203007] = 6, + [203486] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(2175), 1, + STATE(2298), 1, sym_template_argument_list, - ACTIONS(6419), 2, + ACTIONS(6359), 2, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3885), 4, + ACTIONS(3899), 4, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [203030] = 3, + [203509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3740), 1, + ACTIONS(3580), 1, anon_sym_LBRACK, - ACTIONS(3742), 8, + ACTIONS(3582), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -390546,10 +392232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [203047] = 2, + [203526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2335), 9, + ACTIONS(2015), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -390559,12 +392245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [203062] = 3, + [203541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3750), 1, + ACTIONS(3698), 1, anon_sym_LBRACK, - ACTIONS(3752), 8, + ACTIONS(3700), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -390573,12 +392259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [203079] = 3, + [203558] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7981), 1, anon_sym_AMP_AMP, - ACTIONS(4910), 8, + ACTIONS(4994), 8, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_SEMI, @@ -390587,12 +392273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [203096] = 3, + [203575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3736), 1, + ACTIONS(3576), 1, anon_sym_LBRACK, - ACTIONS(3738), 8, + ACTIONS(3578), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -390601,14 +392287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [203113] = 4, + [203592] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8011), 1, anon_sym_AMP_AMP, ACTIONS(8073), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 7, + ACTIONS(4784), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -390616,7 +392302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_requires, - [203132] = 7, + [203611] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390634,10 +392320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [203157] = 2, + [203636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 9, + ACTIONS(1999), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -390647,12 +392333,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [203172] = 3, + [203651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3690), 1, anon_sym_LBRACK, - ACTIONS(3795), 8, + ACTIONS(3692), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -390661,7 +392347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [203189] = 8, + [203668] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -390680,7 +392366,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [203216] = 7, + [203695] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390698,12 +392384,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [203241] = 3, + [203720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3764), 8, + ACTIONS(3708), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -390712,16 +392398,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [203258] = 8, + [203737] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, STATE(5396), 1, sym__scope_resolution, @@ -390730,7 +392416,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5748), 2, sym__class_name, sym_qualified_type_identifier, - [203284] = 7, + [203763] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390747,7 +392433,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [203308] = 7, + [203787] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390756,7 +392442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4095), 1, + STATE(4110), 1, sym_parameter_list, ACTIONS(7872), 2, anon_sym_LBRACE, @@ -390764,7 +392450,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [203332] = 7, + [203811] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390773,7 +392459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4095), 1, + STATE(4110), 1, sym_parameter_list, ACTIONS(7878), 2, anon_sym_LBRACE, @@ -390781,7 +392467,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [203356] = 7, + [203835] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390790,7 +392476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4095), 1, + STATE(4110), 1, sym_parameter_list, ACTIONS(7844), 2, anon_sym_LBRACE, @@ -390798,7 +392484,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [203380] = 7, + [203859] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390807,7 +392493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4108), 1, + STATE(4095), 1, sym_parameter_list, ACTIONS(7872), 2, anon_sym_RPAREN, @@ -390815,7 +392501,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [203404] = 7, + [203883] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390824,7 +392510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4095), 1, + STATE(4110), 1, sym_parameter_list, ACTIONS(7850), 2, anon_sym_LBRACE, @@ -390832,7 +392518,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [203428] = 7, + [203907] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390841,7 +392527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4095), 1, + STATE(4110), 1, sym_parameter_list, ACTIONS(7862), 2, anon_sym_LBRACE, @@ -390849,7 +392535,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [203452] = 5, + [203931] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390864,12 +392550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - [203472] = 9, + [203951] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(6966), 1, + ACTIONS(6950), 1, anon_sym_COLON, ACTIONS(7346), 1, anon_sym_COMMA, @@ -390883,35 +392569,35 @@ static const uint16_t ts_small_parse_table[] = { sym_initializer_list, STATE(7218), 1, sym_bitfield_clause, - [203500] = 4, + [203979] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8093), 1, anon_sym_PIPE_PIPE, ACTIONS(8095), 1, anon_sym_AMP_AMP, - ACTIONS(4895), 6, + ACTIONS(4784), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, anon_sym_requires, - [203518] = 4, + [203997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6908), 1, + ACTIONS(6899), 1, anon_sym_requires, STATE(5138), 1, sym_requires_clause, - ACTIONS(6704), 6, + ACTIONS(6714), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [203536] = 8, + [204015] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -390920,32 +392606,32 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(8099), 1, anon_sym_COLON_COLON, - STATE(3220), 1, + STATE(3228), 1, sym_template_type, STATE(5390), 1, sym__scope_resolution, STATE(6970), 1, sym_dependent_type_identifier, - STATE(3216), 2, + STATE(3238), 2, sym__class_name, sym_qualified_type_identifier, - [203562] = 6, + [204041] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(3686), 1, + ACTIONS(3544), 1, anon_sym_LBRACK, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, STATE(5033), 1, sym_template_argument_list, - ACTIONS(3691), 4, + ACTIONS(3549), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [203584] = 7, + [204063] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -390954,7 +392640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4108), 1, + STATE(4095), 1, sym_parameter_list, ACTIONS(7878), 2, anon_sym_RPAREN, @@ -390962,14 +392648,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [203608] = 5, + [204087] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4265), 1, + STATE(4307), 1, sym_parameter_list, ACTIONS(7911), 5, anon_sym_SEMI, @@ -390977,10 +392663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [203628] = 4, + [204107] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6830), 1, + ACTIONS(6845), 1, anon_sym_requires, STATE(5146), 1, sym_requires_clause, @@ -390991,12 +392677,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [203646] = 3, + [204125] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8095), 1, anon_sym_AMP_AMP, - ACTIONS(4910), 7, + ACTIONS(4994), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -391004,16 +392690,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_GT2, anon_sym_requires, - [203662] = 8, + [204141] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, - ACTIONS(7090), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3311), 1, + STATE(3275), 1, sym_template_type, STATE(5396), 1, sym__scope_resolution, @@ -391022,21 +392708,21 @@ static const uint16_t ts_small_parse_table[] = { STATE(5832), 2, sym__class_name, sym_qualified_type_identifier, - [203688] = 4, + [204167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6830), 1, + ACTIONS(6845), 1, anon_sym_requires, STATE(5145), 1, sym_requires_clause, - ACTIONS(6700), 6, + ACTIONS(6708), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [203706] = 7, + [204185] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -391045,7 +392731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4108), 1, + STATE(4095), 1, sym_parameter_list, ACTIONS(7850), 2, anon_sym_RPAREN, @@ -391053,10 +392739,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [203730] = 4, + [204209] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6908), 1, + ACTIONS(6899), 1, anon_sym_requires, STATE(5133), 1, sym_requires_clause, @@ -391067,7 +392753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [203748] = 7, + [204227] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -391076,7 +392762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4108), 1, + STATE(4095), 1, sym_parameter_list, ACTIONS(7862), 2, anon_sym_RPAREN, @@ -391084,14 +392770,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [203772] = 5, + [204251] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4265), 1, + STATE(4307), 1, sym_parameter_list, ACTIONS(7884), 5, anon_sym_SEMI, @@ -391099,23 +392785,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [203792] = 6, + [204271] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(6359), 1, anon_sym_LBRACK, STATE(5033), 1, sym_template_argument_list, - ACTIONS(3885), 4, + ACTIONS(3899), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [203814] = 7, + [204293] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -391124,7 +392810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4108), 1, + STATE(4095), 1, sym_parameter_list, ACTIONS(7844), 2, anon_sym_RPAREN, @@ -391132,26 +392818,26 @@ static const uint16_t ts_small_parse_table[] = { STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [203838] = 4, + [204317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6830), 1, + ACTIONS(6845), 1, anon_sym_requires, STATE(5138), 1, sym_requires_clause, - ACTIONS(6704), 6, + ACTIONS(6714), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [203856] = 9, + [204335] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(6966), 1, + ACTIONS(6950), 1, anon_sym_COLON, ACTIONS(7346), 1, anon_sym_COMMA, @@ -391165,24 +392851,24 @@ static const uint16_t ts_small_parse_table[] = { sym_initializer_list, STATE(6883), 1, sym_bitfield_clause, - [203884] = 4, + [204363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6908), 1, + ACTIONS(6899), 1, anon_sym_requires, STATE(5145), 1, sym_requires_clause, - ACTIONS(6700), 6, + ACTIONS(6708), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [203902] = 4, + [204381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6830), 1, + ACTIONS(6845), 1, anon_sym_requires, STATE(5133), 1, sym_requires_clause, @@ -391193,14 +392879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [203920] = 5, + [204399] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4265), 1, + STATE(4307), 1, sym_parameter_list, ACTIONS(7892), 5, anon_sym_SEMI, @@ -391208,14 +392894,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [203940] = 5, + [204419] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4265), 1, + STATE(4307), 1, sym_parameter_list, ACTIONS(7894), 5, anon_sym_SEMI, @@ -391223,10 +392909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [203960] = 4, + [204439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6908), 1, + ACTIONS(6899), 1, anon_sym_requires, STATE(5146), 1, sym_requires_clause, @@ -391237,14 +392923,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [203978] = 5, + [204457] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4265), 1, + STATE(4307), 1, sym_parameter_list, ACTIONS(7905), 5, anon_sym_SEMI, @@ -391252,12 +392938,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [203998] = 9, + [204477] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(6966), 1, + ACTIONS(6950), 1, anon_sym_COLON, ACTIONS(7346), 1, anon_sym_COMMA, @@ -391271,14 +392957,14 @@ static const uint16_t ts_small_parse_table[] = { sym_bitfield_clause, STATE(6917), 1, sym_initializer_list, - [204026] = 5, + [204505] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4265), 1, + STATE(4307), 1, sym_parameter_list, ACTIONS(7852), 5, anon_sym_SEMI, @@ -391286,14 +392972,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [204046] = 5, + [204525] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4265), 1, + STATE(4307), 1, sym_parameter_list, ACTIONS(7903), 5, anon_sym_SEMI, @@ -391301,51 +392987,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [204066] = 8, + [204545] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7112), 1, + ACTIONS(7118), 1, anon_sym_COLON_COLON, ACTIONS(8113), 1, sym_identifier, ACTIONS(8115), 1, anon_sym_template, - STATE(2172), 1, + STATE(2264), 1, sym_qualified_type_identifier, - STATE(2307), 1, - sym_dependent_type_identifier, - STATE(2311), 1, + STATE(2405), 1, sym_template_type, + STATE(2412), 1, + sym_dependent_type_identifier, STATE(5336), 1, sym__scope_resolution, - [204091] = 5, + [204570] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4348), 1, + STATE(4332), 1, sym_parameter_list, ACTIONS(7911), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_requires, - [204110] = 4, + [204589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(4996), 1, anon_sym_AMP, ACTIONS(8117), 1, anon_sym_AMP_AMP, - ACTIONS(4910), 5, + ACTIONS(4994), 5, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_LBRACE, anon_sym_LBRACK, - [204127] = 5, + [204606] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, @@ -391359,7 +393045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT2, anon_sym_requires, - [204146] = 5, + [204625] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, @@ -391373,7 +393059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT2, anon_sym_requires, - [204165] = 5, + [204644] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8123), 1, @@ -391387,10 +393073,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - [204184] = 7, + [204663] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, @@ -391398,12 +393084,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8127), 1, anon_sym_COLON, - STATE(4122), 1, + STATE(4120), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [204207] = 5, + [204686] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, @@ -391417,7 +393103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT2, anon_sym_requires, - [204226] = 7, + [204705] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -391428,57 +393114,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8129), 1, anon_sym_RPAREN, - STATE(4108), 1, + STATE(4095), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [204249] = 8, + [204728] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7204), 1, + ACTIONS(7208), 1, anon_sym_COLON_COLON, ACTIONS(8131), 1, sym_identifier, ACTIONS(8133), 1, anon_sym_template, - STATE(1954), 1, - sym_dependent_type_identifier, - STATE(1972), 1, + STATE(2041), 1, sym_template_type, - STATE(2165), 1, + STATE(2042), 1, + sym_dependent_type_identifier, + STATE(2111), 1, sym_qualified_type_identifier, STATE(5345), 1, sym__scope_resolution, - [204274] = 5, + [204753] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4334), 1, + STATE(4336), 1, sym_parameter_list, ACTIONS(7852), 4, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, anon_sym_requires, - [204293] = 5, + [204772] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4334), 1, + STATE(4336), 1, sym_parameter_list, ACTIONS(7911), 4, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, anon_sym_requires, - [204312] = 5, + [204791] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, @@ -391492,69 +393178,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT2, anon_sym_requires, - [204331] = 8, + [204810] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6537), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, ACTIONS(8135), 1, sym_identifier, ACTIONS(8137), 1, anon_sym_template, - STATE(1942), 1, + STATE(1924), 1, sym_template_type, - STATE(1943), 1, + STATE(1955), 1, sym_dependent_type_identifier, - STATE(1965), 1, + STATE(2068), 1, sym_qualified_type_identifier, STATE(5349), 1, sym__scope_resolution, - [204356] = 5, + [204835] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4348), 1, + STATE(4332), 1, sym_parameter_list, ACTIONS(7892), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_requires, - [204375] = 5, + [204854] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4334), 1, + STATE(4336), 1, sym_parameter_list, ACTIONS(7892), 4, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, anon_sym_requires, - [204394] = 8, + [204873] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 1, + ACTIONS(6551), 1, anon_sym_COLON_COLON, ACTIONS(8139), 1, sym_identifier, ACTIONS(8141), 1, anon_sym_template, - STATE(2168), 1, + STATE(2231), 1, sym_template_type, - STATE(2169), 1, + STATE(2266), 1, sym_dependent_type_identifier, - STATE(2392), 1, + STATE(2459), 1, sym_qualified_type_identifier, STATE(5352), 1, sym__scope_resolution, - [204419] = 7, + [204898] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -391570,38 +393256,38 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [204442] = 8, + [204921] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5554), 1, + ACTIONS(5561), 1, anon_sym_COLON_COLON, ACTIONS(8145), 1, sym_identifier, ACTIONS(8147), 1, anon_sym_template, - STATE(4364), 1, + STATE(4375), 1, sym_dependent_type_identifier, - STATE(4370), 1, + STATE(4376), 1, sym_template_type, - STATE(4388), 1, + STATE(4386), 1, sym_qualified_type_identifier, STATE(5354), 1, sym__scope_resolution, - [204467] = 5, + [204946] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(4786), 1, anon_sym_LBRACK, ACTIONS(8149), 1, anon_sym_PIPE_PIPE, ACTIONS(8151), 1, anon_sym_AMP_AMP, - ACTIONS(4895), 4, + ACTIONS(4784), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_requires, - [204486] = 7, + [204965] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -391617,10 +393303,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [204509] = 7, + [204988] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, @@ -391628,29 +393314,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7862), 1, anon_sym_COLON, - STATE(4122), 1, + STATE(4120), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [204532] = 5, + [205011] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4348), 1, + STATE(4332), 1, sym_parameter_list, ACTIONS(7894), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_requires, - [204551] = 7, + [205030] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, @@ -391658,15 +393344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7850), 1, anon_sym_COLON, - STATE(4122), 1, + STATE(4120), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [204574] = 7, + [205053] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, @@ -391674,48 +393360,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7844), 1, anon_sym_COLON, - STATE(4122), 1, + STATE(4120), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [204597] = 7, + [205076] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5412), 1, + ACTIONS(5424), 1, anon_sym_LPAREN2, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, STATE(6106), 1, sym_template_argument_list, STATE(6105), 2, sym_argument_list, sym_initializer_list, - [204620] = 8, + [205099] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6620), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, ACTIONS(8155), 1, sym_identifier, ACTIONS(8157), 1, anon_sym_template, - STATE(1954), 1, - sym_dependent_type_identifier, - STATE(1972), 1, + STATE(2041), 1, sym_template_type, - STATE(2165), 1, + STATE(2042), 1, + sym_dependent_type_identifier, + STATE(2111), 1, sym_qualified_type_identifier, STATE(5362), 1, sym__scope_resolution, - [204645] = 7, + [205124] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, @@ -391723,12 +393409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7878), 1, anon_sym_COLON, - STATE(4122), 1, + STATE(4120), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [204668] = 5, + [205147] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8159), 1, @@ -391742,7 +393428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - [204687] = 5, + [205166] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8163), 1, @@ -391756,10 +393442,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - [204706] = 7, + [205185] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, @@ -391767,12 +393453,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7872), 1, anon_sym_COLON, - STATE(4122), 1, + STATE(4120), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [204729] = 7, + [205208] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -391783,12 +393469,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8167), 1, anon_sym_SEMI, - STATE(4108), 1, + STATE(4095), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [204752] = 5, + [205231] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8169), 1, @@ -391802,7 +393488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - [204771] = 7, + [205250] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -391818,7 +393504,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [204794] = 7, + [205273] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -391829,29 +393515,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8175), 1, anon_sym_SEMI, - STATE(4108), 1, + STATE(4095), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [204817] = 8, + [205296] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6511), 1, + ACTIONS(6521), 1, anon_sym_COLON_COLON, ACTIONS(8177), 1, sym_identifier, ACTIONS(8179), 1, anon_sym_template, - STATE(1887), 1, - sym_template_type, - STATE(1889), 1, + STATE(1905), 1, sym_dependent_type_identifier, - STATE(1903), 1, + STATE(1912), 1, + sym_template_type, + STATE(1964), 1, sym_qualified_type_identifier, STATE(5371), 1, sym__scope_resolution, - [204842] = 7, + [205321] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -391867,7 +393553,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [204865] = 5, + [205344] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8183), 1, @@ -391881,21 +393567,21 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - [204884] = 5, + [205363] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4334), 1, + STATE(4336), 1, sym_parameter_list, ACTIONS(7905), 4, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, anon_sym_requires, - [204903] = 5, + [205382] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, @@ -391909,10 +393595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT2, anon_sym_requires, - [204922] = 7, + [205401] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, @@ -391920,29 +393606,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8187), 1, anon_sym_COLON, - STATE(4122), 1, + STATE(4120), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [204945] = 5, + [205424] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4265), 1, + STATE(4307), 1, sym_parameter_list, ACTIONS(8189), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [204964] = 7, + [205443] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, @@ -391950,15 +393636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8191), 1, anon_sym_COLON, - STATE(4122), 1, + STATE(4120), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [204987] = 7, + [205466] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, @@ -391966,12 +393652,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8193), 1, anon_sym_COLON, - STATE(4122), 1, + STATE(4120), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [205010] = 7, + [205489] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -391982,87 +393668,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8195), 1, anon_sym_SEMI, - STATE(4108), 1, + STATE(4095), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [205033] = 8, + [205512] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4658), 1, + ACTIONS(4372), 1, anon_sym_COLON_COLON, ACTIONS(8197), 1, sym_identifier, ACTIONS(8199), 1, anon_sym_template, - STATE(3282), 1, - sym_dependent_type_identifier, STATE(3301), 1, sym_template_type, - STATE(3432), 1, + STATE(3305), 1, + sym_dependent_type_identifier, + STATE(3452), 1, sym_qualified_type_identifier, STATE(5381), 1, sym__scope_resolution, - [205058] = 3, + [205537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(5182), 1, anon_sym_AMP, - ACTIONS(5238), 6, + ACTIONS(5184), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_requires, - [205073] = 8, + [205552] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7160), 1, + ACTIONS(7094), 1, anon_sym_COLON_COLON, ACTIONS(8201), 1, sym_identifier, ACTIONS(8203), 1, anon_sym_template, - STATE(2958), 1, - sym_qualified_type_identifier, - STATE(2966), 1, - sym_dependent_type_identifier, - STATE(2972), 1, + STATE(2829), 1, sym_template_type, + STATE(2837), 1, + sym_dependent_type_identifier, + STATE(2945), 1, + sym_qualified_type_identifier, STATE(5383), 1, sym__scope_resolution, - [205098] = 3, + [205577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5255), 1, + ACTIONS(5202), 1, anon_sym_AMP, - ACTIONS(5257), 6, + ACTIONS(5204), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_requires, - [205113] = 8, + [205592] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3835), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, ACTIONS(8197), 1, sym_identifier, ACTIONS(8199), 1, anon_sym_template, - STATE(3282), 1, - sym_dependent_type_identifier, - STATE(3297), 1, - sym_qualified_type_identifier, STATE(3301), 1, sym_template_type, + STATE(3302), 1, + sym_qualified_type_identifier, + STATE(3305), 1, + sym_dependent_type_identifier, STATE(5385), 1, sym__scope_resolution, - [205138] = 7, + [205617] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -392078,7 +393764,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [205161] = 7, + [205640] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -392089,43 +393775,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8207), 1, anon_sym_SEMI, - STATE(4108), 1, + STATE(4095), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [205184] = 5, + [205663] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4348), 1, + STATE(4332), 1, sym_parameter_list, ACTIONS(7852), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_requires, - [205203] = 8, + [205682] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_COLON_COLON, ACTIONS(8209), 1, sym_identifier, ACTIONS(8211), 1, anon_sym_template, - STATE(2172), 1, + STATE(2264), 1, sym_qualified_type_identifier, - STATE(2307), 1, - sym_dependent_type_identifier, - STATE(2311), 1, + STATE(2405), 1, sym_template_type, + STATE(2412), 1, + sym_dependent_type_identifier, STATE(5389), 1, sym__scope_resolution, - [205228] = 8, + [205707] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(8099), 1, @@ -392134,15 +393820,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(8215), 1, anon_sym_template, - STATE(3215), 1, - sym_dependent_type_identifier, - STATE(3218), 1, - sym_qualified_type_identifier, - STATE(3229), 1, + STATE(3224), 1, sym_template_type, + STATE(3231), 1, + sym_dependent_type_identifier, + STATE(3237), 1, + sym_qualified_type_identifier, STATE(5390), 1, sym__scope_resolution, - [205253] = 3, + [205732] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8219), 1, @@ -392154,7 +393840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - [205268] = 3, + [205747] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8223), 1, @@ -392166,10 +393852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - [205283] = 7, + [205762] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, @@ -392177,26 +393863,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8225), 1, anon_sym_COLON, - STATE(4122), 1, + STATE(4120), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [205306] = 5, + [205785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(4786), 1, anon_sym_AMP, ACTIONS(8117), 1, anon_sym_AMP_AMP, ACTIONS(8227), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 4, + ACTIONS(4784), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACE, anon_sym_LBRACK, - [205325] = 7, + [205804] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -392212,38 +393898,38 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [205348] = 8, + [205827] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_COLON_COLON, ACTIONS(8231), 1, sym_identifier, - STATE(3282), 1, - sym_dependent_type_identifier, - STATE(3297), 1, - sym_qualified_type_identifier, STATE(3301), 1, sym_template_type, + STATE(3302), 1, + sym_qualified_type_identifier, + STATE(3305), 1, + sym_dependent_type_identifier, STATE(5396), 1, sym__scope_resolution, - [205373] = 5, + [205852] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4348), 1, + STATE(4332), 1, sym_parameter_list, ACTIONS(7903), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_requires, - [205392] = 7, + [205871] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -392259,63 +393945,63 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [205415] = 3, + [205894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5244), 1, + ACTIONS(5208), 1, anon_sym_AMP, - ACTIONS(5246), 6, + ACTIONS(5210), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_requires, - [205430] = 4, + [205909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(4996), 1, anon_sym_LBRACK, ACTIONS(8151), 1, anon_sym_AMP_AMP, - ACTIONS(4910), 5, + ACTIONS(4994), 5, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_requires, - [205447] = 8, + [205926] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6491), 1, + ACTIONS(6481), 1, anon_sym_COLON_COLON, ACTIONS(8235), 1, sym_identifier, ACTIONS(8237), 1, anon_sym_template, - STATE(2826), 1, + STATE(2856), 1, sym_dependent_type_identifier, - STATE(2827), 1, + STATE(2857), 1, sym_template_type, - STATE(2957), 1, + STATE(2962), 1, sym_qualified_type_identifier, STATE(5401), 1, sym__scope_resolution, - [205472] = 5, + [205951] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4348), 1, + STATE(4332), 1, sym_parameter_list, ACTIONS(7884), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_requires, - [205491] = 3, + [205970] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8241), 1, @@ -392327,7 +394013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - [205506] = 5, + [205985] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8243), 1, @@ -392341,21 +394027,21 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - [205525] = 5, + [206004] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4348), 1, + STATE(4332), 1, sym_parameter_list, ACTIONS(7905), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_requires, - [205544] = 5, + [206023] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8247), 1, @@ -392369,7 +394055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - [205563] = 7, + [206042] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -392380,12 +394066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8251), 1, anon_sym_SEMI, - STATE(4108), 1, + STATE(4095), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [205586] = 5, + [206065] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8253), 1, @@ -392399,7 +394085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - [205605] = 5, + [206084] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, @@ -392413,7 +394099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT2, anon_sym_requires, - [205624] = 7, + [206103] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -392424,12 +394110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8257), 1, anon_sym_RPAREN, - STATE(4225), 1, + STATE(4244), 1, sym_parameter_list, STATE(5470), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [205647] = 7, + [206126] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -392440,12 +394126,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7836), 1, anon_sym_RPAREN, - STATE(4225), 1, + STATE(4244), 1, sym_parameter_list, STATE(5470), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [205670] = 7, + [206149] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -392461,7 +394147,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [205693] = 7, + [206172] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -392477,7 +394163,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [205716] = 8, + [206195] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -392486,15 +394172,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(8231), 1, sym_identifier, - STATE(2172), 1, + STATE(2264), 1, sym_qualified_type_identifier, - STATE(3282), 1, - sym_dependent_type_identifier, STATE(3301), 1, sym_template_type, + STATE(3305), 1, + sym_dependent_type_identifier, STATE(5414), 1, sym__scope_resolution, - [205741] = 7, + [206220] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -392510,7 +394196,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [205764] = 7, + [206243] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -392521,12 +394207,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7842), 1, anon_sym_RPAREN, - STATE(4225), 1, + STATE(4244), 1, sym_parameter_list, STATE(5470), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [205787] = 7, + [206266] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -392542,7 +394228,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [205810] = 5, + [206289] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, @@ -392556,7 +394242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT2, anon_sym_requires, - [205829] = 3, + [206308] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7989), 1, @@ -392568,27 +394254,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - [205844] = 8, + [206323] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5584), 1, + ACTIONS(5543), 1, anon_sym_COLON_COLON, ACTIONS(8237), 1, anon_sym_template, ACTIONS(8267), 1, sym_identifier, - STATE(2826), 1, + STATE(2856), 1, sym_dependent_type_identifier, - STATE(2827), 1, + STATE(2857), 1, sym_template_type, - STATE(2957), 1, + STATE(2962), 1, sym_qualified_type_identifier, STATE(5420), 1, sym__scope_resolution, - [205869] = 7, + [206348] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_LBRACK_LBRACK, ACTIONS(7348), 1, anon_sym_LPAREN2, @@ -392596,12 +394282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8269), 1, anon_sym_COLON, - STATE(4122), 1, + STATE(4120), 1, sym_parameter_list, STATE(5191), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [205892] = 7, + [206371] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -392612,15 +394298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8271), 1, anon_sym_SEMI, - STATE(4108), 1, + STATE(4095), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [205915] = 4, + [206394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(6903), 1, anon_sym_requires, STATE(5133), 1, sym_requires_clause, @@ -392630,7 +394316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [205932] = 7, + [206411] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -392646,66 +394332,66 @@ static const uint16_t ts_small_parse_table[] = { STATE(6970), 2, sym_template_type, sym_dependent_type_identifier, - [205955] = 5, + [206434] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4353), 1, + STATE(4354), 1, sym_parameter_list, ACTIONS(7892), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_requires, - [205974] = 5, + [206453] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4353), 1, + STATE(4354), 1, sym_parameter_list, ACTIONS(7911), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_requires, - [205993] = 5, + [206472] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4353), 1, + STATE(4354), 1, sym_parameter_list, ACTIONS(7852), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_requires, - [206012] = 5, + [206491] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4353), 1, + STATE(4354), 1, sym_parameter_list, ACTIONS(7905), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_requires, - [206031] = 4, + [206510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(6903), 1, anon_sym_requires, STATE(5146), 1, sym_requires_clause, @@ -392715,7 +394401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [206048] = 7, + [206527] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -392726,95 +394412,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8275), 1, anon_sym_SEMI, - STATE(4108), 1, + STATE(4095), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [206071] = 5, + [206550] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4353), 1, + STATE(4354), 1, sym_parameter_list, ACTIONS(7884), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_requires, - [206090] = 5, + [206569] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4353), 1, + STATE(4354), 1, sym_parameter_list, ACTIONS(7903), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_requires, - [206109] = 3, + [206588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3375), 1, + ACTIONS(3369), 1, anon_sym_AMP, - ACTIONS(3373), 6, + ACTIONS(3367), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - [206124] = 4, + [206603] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(6903), 1, anon_sym_requires, STATE(5145), 1, sym_requires_clause, - ACTIONS(6700), 5, + ACTIONS(6708), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [206141] = 8, + [206620] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, anon_sym_template, - ACTIONS(5524), 1, + ACTIONS(5589), 1, anon_sym_COLON_COLON, ACTIONS(8231), 1, sym_identifier, - STATE(3282), 1, - sym_dependent_type_identifier, STATE(3301), 1, sym_template_type, - STATE(3432), 1, + STATE(3305), 1, + sym_dependent_type_identifier, + STATE(3452), 1, sym_qualified_type_identifier, STATE(5435), 1, sym__scope_resolution, - [206166] = 4, + [206645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(6903), 1, anon_sym_requires, STATE(5138), 1, sym_requires_clause, - ACTIONS(6704), 5, + ACTIONS(6714), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [206183] = 5, + [206662] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8277), 1, @@ -392828,49 +394514,49 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - [206202] = 5, + [206681] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4334), 1, + STATE(4336), 1, sym_parameter_list, ACTIONS(7894), 4, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, anon_sym_requires, - [206221] = 5, + [206700] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4353), 1, + STATE(4354), 1, sym_parameter_list, ACTIONS(7894), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_requires, - [206240] = 5, + [206719] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4334), 1, + STATE(4336), 1, sym_parameter_list, ACTIONS(7903), 4, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, anon_sym_requires, - [206259] = 7, + [206738] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -392881,26 +394567,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7709), 1, anon_sym_RPAREN, - STATE(4225), 1, + STATE(4244), 1, sym_parameter_list, STATE(5470), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [206282] = 5, + [206761] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4334), 1, + STATE(4336), 1, sym_parameter_list, ACTIONS(7884), 4, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, anon_sym_requires, - [206301] = 7, + [206780] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -392911,12 +394597,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7739), 1, anon_sym_RPAREN, - STATE(4225), 1, + STATE(4244), 1, sym_parameter_list, STATE(5470), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [206324] = 7, + [206803] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -392927,29 +394613,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(7707), 1, anon_sym_RPAREN, - STATE(4225), 1, + STATE(4244), 1, sym_parameter_list, STATE(5470), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [206347] = 8, + [206826] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6477), 1, + ACTIONS(6503), 1, anon_sym_COLON_COLON, ACTIONS(8211), 1, anon_sym_template, ACTIONS(8281), 1, sym_identifier, - STATE(2172), 1, + STATE(2264), 1, sym_qualified_type_identifier, - STATE(2307), 1, - sym_dependent_type_identifier, - STATE(2311), 1, + STATE(2405), 1, sym_template_type, + STATE(2412), 1, + sym_dependent_type_identifier, STATE(5445), 1, sym__scope_resolution, - [206372] = 7, + [206851] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -392960,12 +394646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8283), 1, anon_sym_SEMI, - STATE(4108), 1, + STATE(4095), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [206395] = 4, + [206874] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8285), 1, @@ -392977,7 +394663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [206411] = 6, + [206890] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(251), 1, @@ -392988,10 +394674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(8292), 1, anon_sym_EQ, - STATE(498), 2, + STATE(517), 2, sym_compound_statement, sym_try_statement, - [206431] = 3, + [206910] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8296), 1, @@ -393002,7 +394688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [206445] = 5, + [206924] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7483), 1, @@ -393011,11 +394697,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(8300), 1, anon_sym_template, - STATE(2517), 3, + STATE(2497), 3, sym_template_method, sym_destructor_name, sym_dependent_field_identifier, - [206463] = 3, + [206942] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8304), 1, @@ -393026,7 +394712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [206477] = 6, + [206956] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(536), 1, @@ -393037,23 +394723,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(8308), 1, anon_sym_EQ, - STATE(954), 2, + STATE(914), 2, sym_compound_statement, sym_try_statement, - [206497] = 5, + [206976] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6130), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6648), 1, + ACTIONS(6650), 1, anon_sym_requires, STATE(5114), 1, sym_requires_clause, - ACTIONS(6122), 3, + ACTIONS(6127), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [206515] = 6, + [206994] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(7387), 1, @@ -393064,23 +394750,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(8312), 1, anon_sym_EQ, - STATE(2305), 2, + STATE(2240), 2, sym_compound_statement, sym_try_statement, - [206535] = 5, + [207014] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6467), 1, + ACTIONS(6471), 1, anon_sym_LBRACK, - ACTIONS(6648), 1, + ACTIONS(6650), 1, anon_sym_requires, STATE(5135), 1, sym_requires_clause, - ACTIONS(6465), 3, + ACTIONS(6469), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [206553] = 6, + [207032] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -393091,10 +394777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(8316), 1, anon_sym_EQ, - STATE(935), 2, + STATE(1048), 2, sym_compound_statement, sym_try_statement, - [206573] = 6, + [207052] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(7377), 1, @@ -393105,13 +394791,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(8320), 1, anon_sym_EQ, - STATE(2275), 2, + STATE(2305), 2, sym_compound_statement, sym_try_statement, - [206593] = 5, + [207072] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 1, + ACTIONS(6650), 1, anon_sym_requires, ACTIONS(7812), 1, anon_sym_LBRACK, @@ -393121,7 +394807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [206611] = 6, + [207090] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(7387), 1, @@ -393132,36 +394818,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(8324), 1, anon_sym_EQ, - STATE(2426), 2, + STATE(2328), 2, sym_compound_statement, sym_try_statement, - [206631] = 5, + [207110] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4360), 1, + STATE(4365), 1, sym_parameter_list, ACTIONS(7894), 3, anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_requires, - [206649] = 5, + [207128] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4360), 1, + STATE(4365), 1, sym_parameter_list, ACTIONS(7903), 3, anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_requires, - [206667] = 6, + [207146] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(7377), 1, @@ -393172,36 +394858,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(8328), 1, anon_sym_EQ, - STATE(2375), 2, + STATE(2205), 2, sym_compound_statement, sym_try_statement, - [206687] = 5, + [207166] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4360), 1, + STATE(4365), 1, sym_parameter_list, ACTIONS(7884), 3, anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_requires, - [206705] = 5, + [207184] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4360), 1, + STATE(4365), 1, sym_parameter_list, ACTIONS(7905), 3, anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_requires, - [206723] = 3, + [207202] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8332), 1, @@ -393212,46 +394898,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [206737] = 5, + [207216] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4360), 1, + STATE(4365), 1, sym_parameter_list, ACTIONS(7852), 3, anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_requires, - [206755] = 5, + [207234] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4360), 1, + STATE(4365), 1, sym_parameter_list, ACTIONS(7911), 3, anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_requires, - [206773] = 5, + [207252] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, ACTIONS(7854), 1, anon_sym_LBRACK, - STATE(4360), 1, + STATE(4365), 1, sym_parameter_list, ACTIONS(7892), 3, anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_requires, - [206791] = 5, + [207270] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8334), 1, @@ -393264,7 +394950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [206809] = 5, + [207288] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -393277,7 +394963,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [206827] = 3, + [207306] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8344), 1, @@ -393288,7 +394974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [206841] = 6, + [207320] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -393299,10 +394985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(8348), 1, anon_sym_EQ, - STATE(906), 2, + STATE(956), 2, sym_compound_statement, sym_try_statement, - [206861] = 3, + [207340] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8352), 1, @@ -393313,7 +394999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [206875] = 3, + [207354] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8356), 1, @@ -393324,7 +395010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [206889] = 6, + [207368] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -393333,15 +395019,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(3812), 1, + STATE(3818), 1, sym_parameter_list, STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [206909] = 5, + [207388] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(7923), 1, anon_sym_LBRACK, @@ -393351,7 +395037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [206927] = 5, + [207406] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7483), 1, @@ -393360,27 +395046,27 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(8360), 1, anon_sym_template, - STATE(2517), 3, + STATE(2497), 3, sym_template_method, sym_destructor_name, sym_dependent_field_identifier, - [206945] = 5, + [207424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6463), 1, + ACTIONS(6475), 1, anon_sym_LBRACK, - ACTIONS(6592), 1, + ACTIONS(6543), 1, anon_sym_requires, STATE(5178), 1, sym_requires_clause, - ACTIONS(6461), 3, + ACTIONS(6473), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [206963] = 5, + [207442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 1, + ACTIONS(6543), 1, anon_sym_requires, ACTIONS(7848), 1, anon_sym_LBRACK, @@ -393390,7 +395076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [206981] = 6, + [207460] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(7358), 1, @@ -393401,39 +395087,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(8364), 1, anon_sym_EQ, - STATE(2019), 2, + STATE(1980), 2, sym_compound_statement, sym_try_statement, - [207001] = 5, + [207480] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 1, + ACTIONS(6650), 1, anon_sym_requires, - ACTIONS(6706), 1, + ACTIONS(6716), 1, anon_sym_LBRACK, STATE(5042), 1, sym_requires_clause, - ACTIONS(6704), 3, + ACTIONS(6714), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [207019] = 5, + [207498] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 1, + ACTIONS(6650), 1, anon_sym_requires, - ACTIONS(6702), 1, + ACTIONS(6710), 1, anon_sym_LBRACK, STATE(5057), 1, sym_requires_clause, - ACTIONS(6700), 3, + ACTIONS(6708), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [207037] = 6, + [207516] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(576), 1, + ACTIONS(704), 1, anon_sym_LBRACE, ACTIONS(7419), 1, anon_sym_try, @@ -393441,13 +395127,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(8368), 1, anon_sym_EQ, - STATE(1012), 2, + STATE(985), 2, sym_compound_statement, sym_try_statement, - [207057] = 5, + [207536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 1, + ACTIONS(6650), 1, anon_sym_requires, ACTIONS(7761), 1, anon_sym_LBRACK, @@ -393457,10 +395143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [207075] = 5, + [207554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 1, + ACTIONS(6650), 1, anon_sym_requires, ACTIONS(7755), 1, anon_sym_LBRACK, @@ -393470,7 +395156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [207093] = 6, + [207572] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(7358), 1, @@ -393481,13 +395167,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(8372), 1, anon_sym_EQ, - STATE(2162), 2, + STATE(2054), 2, sym_compound_statement, sym_try_statement, - [207113] = 6, + [207592] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(576), 1, + ACTIONS(704), 1, anon_sym_LBRACE, ACTIONS(7419), 1, anon_sym_try, @@ -393495,10 +395181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(8376), 1, anon_sym_EQ, - STATE(1059), 2, + STATE(936), 2, sym_compound_statement, sym_try_statement, - [207133] = 6, + [207612] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(536), 1, @@ -393509,10 +395195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(8380), 1, anon_sym_EQ, - STATE(994), 2, + STATE(971), 2, sym_compound_statement, sym_try_statement, - [207153] = 5, + [207632] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8382), 1, @@ -393525,7 +395211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [207171] = 5, + [207650] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7555), 1, @@ -393534,11 +395220,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(8390), 1, anon_sym_template, - STATE(2780), 3, + STATE(2782), 3, sym_template_method, sym_destructor_name, sym_dependent_field_identifier, - [207189] = 3, + [207668] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8394), 1, @@ -393549,7 +395235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [207203] = 5, + [207682] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7533), 1, @@ -393558,11 +395244,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(8398), 1, anon_sym_template, - STATE(3025), 3, + STATE(3020), 3, sym_template_method, sym_destructor_name, sym_dependent_field_identifier, - [207221] = 3, + [207700] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8402), 1, @@ -393573,7 +395259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [207235] = 6, + [207714] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(251), 1, @@ -393584,51 +395270,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(8406), 1, anon_sym_EQ, - STATE(506), 2, + STATE(499), 2, sym_compound_statement, sym_try_statement, - [207255] = 6, + [207734] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8408), 1, anon_sym_SEMI, ACTIONS(8410), 1, anon_sym_EQ, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [207274] = 6, + [207753] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8412), 1, anon_sym_SEMI, ACTIONS(8414), 1, anon_sym_EQ, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [207293] = 5, + [207772] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4399), 1, + STATE(4394), 1, sym_parameter_list, ACTIONS(7905), 2, anon_sym_LBRACE, anon_sym_requires, - [207310] = 5, + [207789] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5412), 1, + ACTIONS(5424), 1, anon_sym_LPAREN2, ACTIONS(8418), 1, anon_sym_COLON_COLON, @@ -393637,154 +395323,154 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8416), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [207327] = 5, + [207806] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4399), 1, + STATE(4394), 1, sym_parameter_list, ACTIONS(7852), 2, anon_sym_LBRACE, anon_sym_requires, - [207344] = 6, + [207823] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8420), 1, anon_sym_SEMI, ACTIONS(8422), 1, anon_sym_EQ, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [207363] = 5, + [207842] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4399), 1, + STATE(4394), 1, sym_parameter_list, ACTIONS(7911), 2, anon_sym_LBRACE, anon_sym_requires, - [207380] = 5, + [207859] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4399), 1, + STATE(4394), 1, sym_parameter_list, ACTIONS(7892), 2, anon_sym_LBRACE, anon_sym_requires, - [207397] = 5, + [207876] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4399), 1, + STATE(4394), 1, sym_parameter_list, ACTIONS(7884), 2, anon_sym_LBRACE, anon_sym_requires, - [207414] = 6, + [207893] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8424), 1, anon_sym_SEMI, ACTIONS(8426), 1, anon_sym_EQ, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [207433] = 5, + [207912] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6429), 1, + ACTIONS(6439), 1, anon_sym_EQ, ACTIONS(8428), 1, sym_identifier, - ACTIONS(6427), 2, + ACTIONS(6437), 2, anon_sym_COMMA, anon_sym_GT2, - [207450] = 5, + [207929] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, + ACTIONS(6427), 1, sym_auto, - ACTIONS(6457), 1, + ACTIONS(6429), 1, anon_sym_decltype, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, ACTIONS(8430), 2, anon_sym_COMMA, anon_sym_GT2, - [207467] = 6, + [207946] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8432), 1, anon_sym_SEMI, ACTIONS(8434), 1, anon_sym_EQ, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [207486] = 5, + [207965] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4399), 1, + STATE(4394), 1, sym_parameter_list, ACTIONS(7903), 2, anon_sym_LBRACE, anon_sym_requires, - [207503] = 5, + [207982] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4399), 1, + STATE(4394), 1, sym_parameter_list, ACTIONS(7894), 2, anon_sym_LBRACE, anon_sym_requires, - [207520] = 5, + [207999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, + ACTIONS(6427), 1, sym_auto, - ACTIONS(6457), 1, + ACTIONS(6429), 1, anon_sym_decltype, - STATE(3455), 1, + STATE(3451), 1, sym_decltype_auto, ACTIONS(8436), 2, anon_sym_COMMA, anon_sym_GT2, - [207537] = 3, + [208016] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8440), 2, @@ -393794,7 +395480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - [207550] = 3, + [208029] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8442), 2, @@ -393804,7 +395490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_parameter_declaration, sym_variadic_type_parameter_declaration, sym_optional_type_parameter_declaration, - [207563] = 5, + [208042] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, @@ -393816,57 +395502,57 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8013), 2, anon_sym_COMMA, anon_sym_GT2, - [207580] = 5, + [208059] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, STATE(6106), 1, sym_template_argument_list, ACTIONS(8444), 2, anon_sym_LPAREN2, anon_sym_LBRACE, - [207597] = 6, + [208076] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8446), 1, anon_sym_SEMI, ACTIONS(8448), 1, anon_sym_EQ, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [207616] = 6, + [208095] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8450), 1, anon_sym_SEMI, ACTIONS(8452), 1, anon_sym_EQ, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [207635] = 5, + [208114] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4348), 1, + STATE(4332), 1, sym_parameter_list, ACTIONS(8013), 2, anon_sym_COMMA, anon_sym_RPAREN, - [207652] = 3, + [208131] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8456), 2, @@ -393876,18 +395562,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - [207665] = 5, + [208144] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3202), 1, + STATE(3205), 1, sym_field_declaration_list, STATE(6369), 1, sym_base_class_clause, - [207681] = 4, + [208160] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7427), 1, @@ -393897,19 +395583,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [207695] = 5, + [208174] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3524), 1, + STATE(3478), 1, sym_field_declaration_list, STATE(6326), 1, sym_base_class_clause, - [207711] = 5, - ACTIONS(7080), 1, + [208190] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8458), 1, anon_sym_DQUOTE, @@ -393919,7 +395605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, STATE(5532), 1, aux_sym_string_literal_repeat1, - [207727] = 5, + [208206] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -393930,18 +395616,18 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(6595), 1, sym_field_initializer_list, - [207743] = 5, + [208222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4545), 1, sym_field_declaration_list, STATE(6136), 1, sym_base_class_clause, - [207759] = 5, + [208238] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -393952,73 +395638,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(6053), 1, aux_sym_template_argument_list_repeat1, - [207775] = 4, + [208254] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7439), 1, anon_sym_LBRACE, - STATE(3670), 1, + STATE(3711), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [207789] = 5, + [208268] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2806), 1, + STATE(2808), 1, sym_field_declaration_list, STATE(6464), 1, sym_base_class_clause, - [207805] = 5, + [208284] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4544), 1, sym_field_declaration_list, STATE(6124), 1, sym_base_class_clause, - [207821] = 5, + [208300] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4542), 1, + STATE(4541), 1, sym_field_declaration_list, STATE(6119), 1, sym_base_class_clause, - [207837] = 5, + [208316] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4540), 1, sym_field_declaration_list, STATE(6116), 1, sym_base_class_clause, - [207853] = 5, + [208332] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4028), 1, + STATE(3983), 1, sym_field_declaration_list, STATE(6473), 1, sym_base_class_clause, - [207869] = 5, - ACTIONS(7080), 1, + [208348] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8468), 1, anon_sym_DQUOTE, @@ -394028,95 +395714,95 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, STATE(5532), 1, aux_sym_string_literal_repeat1, - [207885] = 5, + [208364] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4009), 1, + STATE(3992), 1, sym_field_declaration_list, STATE(6523), 1, sym_base_class_clause, - [207901] = 5, + [208380] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4536), 1, + STATE(4535), 1, sym_field_declaration_list, STATE(6121), 1, sym_base_class_clause, - [207917] = 5, + [208396] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(3990), 1, + STATE(4014), 1, sym_field_declaration_list, STATE(6472), 1, sym_base_class_clause, - [207933] = 5, + [208412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6992), 1, + ACTIONS(6986), 1, anon_sym_LBRACE, ACTIONS(8476), 1, anon_sym_LPAREN2, - STATE(3354), 1, + STATE(3363), 1, sym_requirement_seq, STATE(6560), 1, sym_requires_parameter_list, - [207949] = 5, + [208428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4021), 1, + STATE(4034), 1, sym_field_declaration_list, STATE(6531), 1, sym_base_class_clause, - [207965] = 5, + [208444] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4048), 1, + STATE(4039), 1, sym_field_declaration_list, STATE(6533), 1, sym_base_class_clause, - [207981] = 5, + [208460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4055), 1, + STATE(4052), 1, sym_field_declaration_list, STATE(6471), 1, sym_base_class_clause, - [207997] = 5, + [208476] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3537), 1, + STATE(3476), 1, sym_field_declaration_list, STATE(6265), 1, sym_base_class_clause, - [208013] = 5, + [208492] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -394127,51 +395813,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6110), 1, sym_enumerator, - [208029] = 5, + [208508] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3845), 1, + ACTIONS(3841), 1, anon_sym_LBRACE, ACTIONS(8484), 1, anon_sym_COLON_COLON, ACTIONS(8486), 1, anon_sym_EQ, - STATE(1043), 1, + STATE(937), 1, sym_declaration_list, - [208045] = 5, + [208524] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4535), 1, + STATE(4534), 1, sym_field_declaration_list, STATE(6131), 1, sym_base_class_clause, - [208061] = 5, + [208540] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8488), 1, anon_sym_SEMI, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [208077] = 4, + [208556] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7447), 1, anon_sym_LBRACE, - STATE(3367), 1, + STATE(3334), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [208091] = 5, - ACTIONS(7080), 1, + [208570] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8490), 1, anon_sym_LF, @@ -394181,51 +395867,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_arg, STATE(6539), 1, sym_preproc_params, - [208107] = 5, + [208586] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3476), 1, + STATE(3463), 1, sym_field_declaration_list, STATE(6275), 1, sym_base_class_clause, - [208123] = 5, + [208602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3361), 1, anon_sym_LT, ACTIONS(8496), 1, sym_identifier, STATE(1084), 1, sym_template_parameter_list, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [208139] = 5, + [208618] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2220), 1, + STATE(2442), 1, sym_field_declaration_list, STATE(6268), 1, sym_base_class_clause, - [208155] = 5, + [208634] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2809), 1, + STATE(2812), 1, sym_field_declaration_list, STATE(6405), 1, sym_base_class_clause, - [208171] = 5, + [208650] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -394236,18 +395922,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6004), 1, sym_enumerator, - [208187] = 4, + [208666] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(1904), 1, + STATE(1910), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [208201] = 5, - ACTIONS(7080), 1, + [208680] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8502), 1, anon_sym_DQUOTE, @@ -394257,28 +395943,28 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, STATE(5522), 1, aux_sym_string_literal_repeat1, - [208217] = 5, + [208696] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2924), 1, + STATE(2913), 1, sym_field_declaration_list, STATE(6327), 1, sym_base_class_clause, - [208233] = 4, + [208712] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7435), 1, anon_sym_LBRACE, - STATE(3115), 1, + STATE(3141), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [208247] = 5, + [208726] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8476), 1, @@ -394289,29 +395975,29 @@ static const uint16_t ts_small_parse_table[] = { sym_requirement_seq, STATE(6161), 1, sym_requires_parameter_list, - [208263] = 5, + [208742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2913), 1, + STATE(2926), 1, sym_field_declaration_list, STATE(6291), 1, sym_base_class_clause, - [208279] = 5, + [208758] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2918), 1, + STATE(2938), 1, sym_field_declaration_list, STATE(6303), 1, sym_base_class_clause, - [208295] = 5, + [208774] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -394322,40 +396008,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(5958), 1, sym_enumerator, - [208311] = 5, + [208790] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4508), 1, + STATE(4507), 1, sym_field_declaration_list, STATE(6152), 1, sym_base_class_clause, - [208327] = 5, + [208806] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(4482), 1, - sym_field_declaration_list, - STATE(6155), 1, - sym_base_class_clause, - [208343] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4504), 1, sym_field_declaration_list, + STATE(6155), 1, + sym_base_class_clause, + [208822] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(6895), 1, + anon_sym_LBRACE, + STATE(4502), 1, + sym_field_declaration_list, STATE(6158), 1, sym_base_class_clause, - [208359] = 5, + [208838] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -394366,8 +396052,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6048), 1, sym_enumerator, - [208375] = 5, - ACTIONS(7080), 1, + [208854] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8460), 1, aux_sym_string_literal_token1, @@ -394377,18 +396063,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, STATE(5532), 1, aux_sym_string_literal_repeat1, - [208391] = 5, + [208870] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, ACTIONS(8484), 1, anon_sym_COLON_COLON, ACTIONS(8520), 1, anon_sym_EQ, - STATE(490), 1, + STATE(508), 1, sym_declaration_list, - [208407] = 5, + [208886] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -394399,106 +396085,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(6006), 1, aux_sym_template_argument_list_repeat1, - [208423] = 5, + [208902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(3691), 1, + ACTIONS(3549), 1, anon_sym_SEMI, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1827), 1, + STATE(1837), 1, sym_template_argument_list, - [208439] = 5, + [208918] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2051), 1, + STATE(2092), 1, sym_field_declaration_list, STATE(6615), 1, sym_base_class_clause, - [208455] = 5, + [208934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2056), 1, + STATE(2171), 1, sym_field_declaration_list, STATE(6614), 1, sym_base_class_clause, - [208471] = 5, + [208950] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2065), 1, + STATE(2160), 1, sym_field_declaration_list, STATE(6612), 1, sym_base_class_clause, - [208487] = 5, + [208966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2711), 1, + STATE(2713), 1, sym_field_declaration_list, STATE(6166), 1, sym_base_class_clause, - [208503] = 5, + [208982] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6956), 1, + ACTIONS(7022), 1, anon_sym_LBRACE, ACTIONS(8476), 1, anon_sym_LPAREN2, - STATE(2498), 1, + STATE(2473), 1, sym_requirement_seq, STATE(6250), 1, sym_requires_parameter_list, - [208519] = 5, + [208998] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8524), 1, anon_sym_SEMI, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [208535] = 4, + [209014] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7433), 1, anon_sym_LBRACE, - STATE(2533), 1, + STATE(2537), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [208549] = 5, + [209028] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2712), 1, + STATE(2714), 1, sym_field_declaration_list, STATE(6164), 1, sym_base_class_clause, - [208565] = 5, - ACTIONS(7080), 1, + [209044] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8460), 1, aux_sym_string_literal_token1, @@ -394508,8 +396194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, STATE(5532), 1, aux_sym_string_literal_repeat1, - [208581] = 5, - ACTIONS(7080), 1, + [209060] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8492), 1, anon_sym_LPAREN, @@ -394519,8 +396205,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_arg, STATE(6609), 1, sym_preproc_params, - [208597] = 5, - ACTIONS(7080), 1, + [209076] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8532), 1, anon_sym_DQUOTE, @@ -394530,95 +396216,95 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, STATE(5613), 1, aux_sym_string_literal_repeat1, - [208613] = 5, + [209092] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8538), 1, anon_sym_SEMI, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [208629] = 5, + [209108] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2716), 1, + STATE(2718), 1, sym_field_declaration_list, STATE(6172), 1, sym_base_class_clause, - [208645] = 5, + [209124] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2717), 1, + STATE(2720), 1, sym_field_declaration_list, STATE(6182), 1, sym_base_class_clause, - [208661] = 5, + [209140] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2721), 1, + STATE(2723), 1, sym_field_declaration_list, STATE(6184), 1, sym_base_class_clause, - [208677] = 5, + [209156] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2596), 1, + STATE(2597), 1, sym_field_declaration_list, STATE(6174), 1, sym_base_class_clause, - [208693] = 5, + [209172] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2922), 1, + STATE(2927), 1, sym_field_declaration_list, STATE(6330), 1, sym_base_class_clause, - [208709] = 4, + [209188] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7435), 1, anon_sym_LBRACE, - STATE(3132), 1, + STATE(3113), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [208723] = 5, + [209202] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2146), 1, + STATE(2119), 1, sym_field_declaration_list, STATE(6604), 1, sym_base_class_clause, - [208739] = 5, - ACTIONS(7080), 1, + [209218] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8492), 1, anon_sym_LPAREN, @@ -394628,7 +396314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_arg, STATE(6420), 1, sym_preproc_params, - [208755] = 5, + [209234] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -394639,105 +396325,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5921), 1, aux_sym_template_argument_list_repeat1, - [208771] = 5, + [209250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2923), 1, + STATE(2925), 1, sym_field_declaration_list, STATE(6332), 1, sym_base_class_clause, - [208787] = 5, + [209266] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3361), 1, anon_sym_LT, ACTIONS(8496), 1, sym_identifier, - STATE(1082), 1, + STATE(1087), 1, sym_template_parameter_list, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [208803] = 5, + [209282] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2900), 1, + STATE(2923), 1, sym_field_declaration_list, STATE(6336), 1, sym_base_class_clause, - [208819] = 5, + [209298] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2131), 1, + STATE(2155), 1, sym_field_declaration_list, STATE(6611), 1, sym_base_class_clause, - [208835] = 5, + [209314] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3493), 1, + STATE(3405), 1, sym_field_declaration_list, STATE(6362), 1, sym_base_class_clause, - [208851] = 4, + [209330] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7439), 1, anon_sym_LBRACE, - STATE(3749), 1, + STATE(3759), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [208865] = 5, + [209344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2133), 1, + STATE(2079), 1, sym_field_declaration_list, STATE(6608), 1, sym_base_class_clause, - [208881] = 5, + [209360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4001), 1, + STATE(3869), 1, sym_field_declaration_list, STATE(6485), 1, sym_base_class_clause, - [208897] = 5, + [209376] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2139), 1, + STATE(2130), 1, sym_field_declaration_list, STATE(6607), 1, sym_base_class_clause, - [208913] = 5, + [209392] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -394748,29 +396434,29 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(6558), 1, sym_field_initializer_list, - [208929] = 5, + [209408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2599), 1, + STATE(2600), 1, sym_field_declaration_list, STATE(6176), 1, sym_base_class_clause, - [208945] = 5, + [209424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4558), 1, + STATE(4562), 1, sym_field_declaration_list, STATE(6135), 1, sym_base_class_clause, - [208961] = 5, + [209440] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -394781,117 +396467,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(5962), 1, sym_enumerator, - [208977] = 5, + [209456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2142), 1, + STATE(2127), 1, sym_field_declaration_list, STATE(6605), 1, sym_base_class_clause, - [208993] = 5, + [209472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, ACTIONS(8550), 1, sym_identifier, - STATE(486), 1, + STATE(522), 1, sym_declaration_list, STATE(6021), 1, sym_namespace_definition_name, - [209009] = 5, + [209488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3182), 1, + STATE(3170), 1, sym_field_declaration_list, STATE(6410), 1, sym_base_class_clause, - [209025] = 5, + [209504] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4000), 1, + STATE(3856), 1, sym_field_declaration_list, STATE(6487), 1, sym_base_class_clause, - [209041] = 5, + [209520] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3184), 1, + STATE(3173), 1, sym_field_declaration_list, STATE(6408), 1, sym_base_class_clause, - [209057] = 5, + [209536] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(6940), 1, anon_sym_LBRACE, ACTIONS(8476), 1, anon_sym_LPAREN2, - STATE(2839), 1, + STATE(2914), 1, sym_requirement_seq, STATE(6463), 1, sym_requires_parameter_list, - [209073] = 5, + [209552] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3186), 1, + STATE(3177), 1, sym_field_declaration_list, STATE(6406), 1, sym_base_class_clause, - [209089] = 5, + [209568] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3361), 1, anon_sym_LT, ACTIONS(8496), 1, sym_identifier, - STATE(1086), 1, + STATE(1081), 1, sym_template_parameter_list, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [209105] = 4, + [209584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5412), 1, + ACTIONS(5424), 1, anon_sym_LPAREN2, STATE(6603), 1, sym_argument_list, ACTIONS(8552), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [209119] = 5, + [209598] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2148), 1, + STATE(2115), 1, sym_field_declaration_list, STATE(6600), 1, sym_base_class_clause, - [209135] = 5, - ACTIONS(7080), 1, + [209614] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8554), 1, anon_sym_DQUOTE, @@ -394901,8 +396587,8 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, STATE(5576), 1, aux_sym_string_literal_repeat1, - [209151] = 5, - ACTIONS(7080), 1, + [209630] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8460), 1, aux_sym_string_literal_token1, @@ -394912,7 +396598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, STATE(5532), 1, aux_sym_string_literal_repeat1, - [209167] = 5, + [209646] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -394923,18 +396609,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5987), 1, aux_sym_template_argument_list_repeat1, - [209183] = 5, + [209662] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2602), 1, + STATE(2603), 1, sym_field_declaration_list, STATE(6177), 1, sym_base_class_clause, - [209199] = 4, + [209678] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7413), 1, @@ -394944,95 +396630,95 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [209213] = 5, + [209692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2607), 1, + STATE(2608), 1, sym_field_declaration_list, STATE(6178), 1, sym_base_class_clause, - [209229] = 5, + [209708] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3440), 1, + STATE(3416), 1, sym_field_declaration_list, STATE(6352), 1, sym_base_class_clause, - [209245] = 5, + [209724] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2895), 1, + STATE(2917), 1, sym_field_declaration_list, STATE(6343), 1, sym_base_class_clause, - [209261] = 5, + [209740] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2758), 1, + STATE(2760), 1, sym_field_declaration_list, STATE(6307), 1, sym_base_class_clause, - [209277] = 5, + [209756] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3447), 1, + STATE(3419), 1, sym_field_declaration_list, STATE(6302), 1, sym_base_class_clause, - [209293] = 5, + [209772] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2800), 1, + STATE(2840), 1, sym_field_declaration_list, STATE(6346), 1, sym_base_class_clause, - [209309] = 5, + [209788] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8476), 1, anon_sym_LPAREN2, ACTIONS(8564), 1, anon_sym_LBRACE, - STATE(1935), 1, + STATE(1900), 1, sym_requirement_seq, STATE(6311), 1, sym_requires_parameter_list, - [209325] = 5, + [209804] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3438), 1, + STATE(3412), 1, sym_field_declaration_list, STATE(6555), 1, sym_base_class_clause, - [209341] = 4, + [209820] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7427), 1, @@ -395042,105 +396728,105 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [209355] = 5, + [209834] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2608), 1, + STATE(2609), 1, sym_field_declaration_list, STATE(6180), 1, sym_base_class_clause, - [209371] = 5, + [209850] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2611), 1, + STATE(2612), 1, sym_field_declaration_list, STATE(6181), 1, sym_base_class_clause, - [209387] = 4, + [209866] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7431), 1, anon_sym_LBRACE, - STATE(3011), 1, + STATE(2995), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [209401] = 5, + [209880] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3845), 1, + ACTIONS(3841), 1, anon_sym_LBRACE, ACTIONS(8566), 1, sym_identifier, - STATE(1009), 1, + STATE(993), 1, sym_declaration_list, STATE(6043), 1, sym_namespace_definition_name, - [209417] = 5, + [209896] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2612), 1, + STATE(2613), 1, sym_field_declaration_list, STATE(6186), 1, sym_base_class_clause, - [209433] = 5, + [209912] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3857), 1, + ACTIONS(3847), 1, anon_sym_LBRACE, ACTIONS(8484), 1, anon_sym_COLON_COLON, ACTIONS(8568), 1, anon_sym_EQ, - STATE(980), 1, + STATE(954), 1, sym_declaration_list, - [209449] = 5, + [209928] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4562), 1, + STATE(4563), 1, sym_field_declaration_list, STATE(6138), 1, sym_base_class_clause, - [209465] = 5, + [209944] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2722), 1, + STATE(2724), 1, sym_field_declaration_list, STATE(6193), 1, sym_base_class_clause, - [209481] = 5, + [209960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2617), 1, + STATE(2618), 1, sym_field_declaration_list, STATE(6187), 1, sym_base_class_clause, - [209497] = 5, + [209976] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -395151,18 +396837,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5961), 1, aux_sym_template_argument_list_repeat1, - [209513] = 5, + [209992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2618), 1, + STATE(2619), 1, sym_field_declaration_list, STATE(6190), 1, sym_base_class_clause, - [209529] = 5, + [210008] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -395173,8 +396859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5887), 1, aux_sym_template_argument_list_repeat1, - [209545] = 5, - ACTIONS(7080), 1, + [210024] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8492), 1, anon_sym_LPAREN, @@ -395184,7 +396870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_arg, STATE(6259), 1, sym_preproc_params, - [209561] = 4, + [210040] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7413), 1, @@ -395194,7 +396880,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [209575] = 3, + [210054] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8578), 1, @@ -395203,28 +396889,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT2, - [209587] = 4, + [210066] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(5412), 1, + ACTIONS(5424), 1, anon_sym_LPAREN2, STATE(6091), 2, sym_argument_list, sym_initializer_list, - [209601] = 5, + [210080] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8582), 1, anon_sym_SEMI, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [209617] = 5, + [210096] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -395235,18 +396921,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5985), 1, aux_sym_template_argument_list_repeat1, - [209633] = 5, + [210112] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3195), 1, + STATE(3196), 1, sym_field_declaration_list, STATE(6380), 1, sym_base_class_clause, - [209649] = 5, + [210128] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -395257,149 +396943,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(6084), 1, aux_sym_template_argument_list_repeat1, - [209665] = 5, + [210144] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3196), 1, + STATE(3198), 1, sym_field_declaration_list, STATE(6378), 1, sym_base_class_clause, - [209681] = 4, + [210160] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(1907), 1, + STATE(1892), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [209695] = 5, + [210174] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3198), 1, - sym_field_declaration_list, - STATE(6373), 1, - sym_base_class_clause, - [209711] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2622), 1, - sym_field_declaration_list, - STATE(6194), 1, - sym_base_class_clause, - [209727] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3199), 1, - sym_field_declaration_list, - STATE(6372), 1, - sym_base_class_clause, - [209743] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2623), 1, - sym_field_declaration_list, - STATE(6195), 1, - sym_base_class_clause, - [209759] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, STATE(3201), 1, sym_field_declaration_list, - STATE(6370), 1, + STATE(6373), 1, sym_base_class_clause, - [209775] = 5, + [210190] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2623), 1, + sym_field_declaration_list, + STATE(6194), 1, + sym_base_class_clause, + [210206] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3202), 1, + sym_field_declaration_list, + STATE(6372), 1, + sym_base_class_clause, + [210222] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2625), 1, + sym_field_declaration_list, + STATE(6195), 1, + sym_base_class_clause, + [210238] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_COLON, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3204), 1, + sym_field_declaration_list, + STATE(6370), 1, + sym_base_class_clause, + [210254] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8588), 1, anon_sym_SEMI, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [209791] = 5, + [210270] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4010), 1, + STATE(3881), 1, sym_field_declaration_list, STATE(6484), 1, sym_base_class_clause, - [209807] = 5, + [210286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3361), 1, anon_sym_LT, ACTIONS(8496), 1, sym_identifier, - STATE(1085), 1, + STATE(1082), 1, sym_template_parameter_list, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [209823] = 5, + [210302] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4567), 1, + STATE(4568), 1, sym_field_declaration_list, STATE(6140), 1, sym_base_class_clause, - [209839] = 5, + [210318] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4570), 1, + STATE(4572), 1, sym_field_declaration_list, STATE(6141), 1, sym_base_class_clause, - [209855] = 5, + [210334] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2626), 1, + STATE(2627), 1, sym_field_declaration_list, STATE(6197), 1, sym_base_class_clause, - [209871] = 5, + [210350] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -395410,18 +397096,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5929), 1, aux_sym_template_argument_list_repeat1, - [209887] = 5, + [210366] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2627), 1, + STATE(2629), 1, sym_field_declaration_list, STATE(6198), 1, sym_base_class_clause, - [209903] = 5, + [210382] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -395432,18 +397118,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5899), 1, aux_sym_template_argument_list_repeat1, - [209919] = 5, + [210398] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4575), 1, sym_field_declaration_list, STATE(6142), 1, sym_base_class_clause, - [209935] = 5, + [210414] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -395454,28 +397140,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(6009), 1, aux_sym_template_argument_list_repeat1, - [209951] = 5, + [210430] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2630), 1, + STATE(2658), 1, sym_field_declaration_list, STATE(6203), 1, sym_base_class_clause, - [209967] = 4, + [210446] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(1913), 1, + STATE(1896), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [209981] = 5, + [210460] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, @@ -395484,43 +397170,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8596), 1, anon_sym_RPAREN, - STATE(4348), 1, + STATE(4332), 1, sym_parameter_list, - [209997] = 5, + [210476] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8598), 1, anon_sym_SEMI, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [210013] = 5, + [210492] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2631), 1, + STATE(2632), 1, sym_field_declaration_list, STATE(6204), 1, sym_base_class_clause, - [210029] = 5, + [210508] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2077), 1, + STATE(2096), 1, sym_field_declaration_list, STATE(6591), 1, sym_base_class_clause, - [210045] = 5, - ACTIONS(7080), 1, + [210524] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8600), 1, anon_sym_DQUOTE, @@ -395530,7 +397216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, STATE(5673), 1, aux_sym_string_literal_repeat1, - [210061] = 4, + [210540] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7413), 1, @@ -395540,19 +397226,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [210075] = 5, + [210554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7016), 1, + ACTIONS(6956), 1, anon_sym_LBRACE, ACTIONS(8476), 1, anon_sym_LPAREN2, - STATE(3021), 1, + STATE(3034), 1, sym_requirement_seq, STATE(6428), 1, sym_requires_parameter_list, - [210091] = 5, - ACTIONS(7080), 1, + [210570] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8460), 1, aux_sym_string_literal_token1, @@ -395562,8 +397248,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, STATE(5532), 1, aux_sym_string_literal_repeat1, - [210107] = 5, - ACTIONS(7080), 1, + [210586] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8460), 1, aux_sym_string_literal_token1, @@ -395573,124 +397259,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, STATE(5532), 1, aux_sym_string_literal_repeat1, - [210123] = 4, + [210602] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7433), 1, anon_sym_LBRACE, - STATE(2495), 1, + STATE(2573), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [210137] = 5, + [210616] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6978), 1, + ACTIONS(6998), 1, anon_sym_LBRACE, ACTIONS(8476), 1, anon_sym_LPAREN2, - STATE(3110), 1, + STATE(3140), 1, sym_requirement_seq, STATE(6570), 1, sym_requires_parameter_list, - [210153] = 5, + [210632] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2087), 1, + STATE(2108), 1, sym_field_declaration_list, STATE(6584), 1, sym_base_class_clause, - [210169] = 5, + [210648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2639), 1, + STATE(2640), 1, sym_field_declaration_list, STATE(6213), 1, sym_base_class_clause, - [210185] = 5, + [210664] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2107), 1, + STATE(2110), 1, sym_field_declaration_list, STATE(6578), 1, sym_base_class_clause, - [210201] = 4, + [210680] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7431), 1, anon_sym_LBRACE, - STATE(3039), 1, + STATE(3038), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [210215] = 5, + [210694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2128), 1, + STATE(2114), 1, sym_field_declaration_list, STATE(6575), 1, sym_base_class_clause, - [210231] = 5, + [210710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2141), 1, + STATE(2117), 1, sym_field_declaration_list, STATE(6573), 1, sym_base_class_clause, - [210247] = 4, + [210726] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7447), 1, anon_sym_LBRACE, - STATE(3325), 1, + STATE(3353), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [210261] = 5, + [210740] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2641), 1, + STATE(2642), 1, sym_field_declaration_list, STATE(6215), 1, sym_base_class_clause, - [210277] = 4, + [210756] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7439), 1, anon_sym_LBRACE, - STATE(3742), 1, + STATE(3745), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [210291] = 5, + [210770] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -395701,18 +397387,18 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(6465), 1, sym_field_initializer_list, - [210307] = 5, + [210786] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, STATE(2644), 1, sym_field_declaration_list, STATE(6217), 1, sym_base_class_clause, - [210323] = 5, + [210802] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -395723,73 +397409,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(5937), 1, sym_enumerator, - [210339] = 5, + [210818] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2746), 1, + STATE(2744), 1, sym_field_declaration_list, STATE(6143), 1, sym_base_class_clause, - [210355] = 5, + [210834] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2156), 1, + STATE(2118), 1, sym_field_declaration_list, STATE(6568), 1, sym_base_class_clause, - [210371] = 5, + [210850] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3207), 1, + STATE(3212), 1, sym_field_declaration_list, STATE(6359), 1, sym_base_class_clause, - [210387] = 5, + [210866] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2884), 1, + STATE(2907), 1, sym_field_declaration_list, STATE(6368), 1, sym_base_class_clause, - [210403] = 5, + [210882] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3431), 1, + STATE(3410), 1, sym_field_declaration_list, STATE(6593), 1, sym_base_class_clause, - [210419] = 5, + [210898] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3208), 1, + STATE(3211), 1, sym_field_declaration_list, STATE(6357), 1, sym_base_class_clause, - [210435] = 5, + [210914] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -395800,30 +397486,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5890), 1, aux_sym_template_argument_list_repeat1, - [210451] = 5, + [210930] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3211), 1, + STATE(3206), 1, sym_field_declaration_list, STATE(6356), 1, sym_base_class_clause, - [210467] = 5, + [210946] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2883), 1, + STATE(2903), 1, sym_field_declaration_list, STATE(6375), 1, sym_base_class_clause, - [210483] = 5, - ACTIONS(7080), 1, + [210962] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8616), 1, anon_sym_DQUOTE, @@ -395833,96 +397519,96 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, STATE(5674), 1, aux_sym_string_literal_repeat1, - [210499] = 5, + [210978] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3212), 1, + STATE(3199), 1, sym_field_declaration_list, STATE(6354), 1, sym_base_class_clause, - [210515] = 5, + [210994] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2757), 1, + STATE(2759), 1, sym_field_declaration_list, STATE(6286), 1, sym_base_class_clause, - [210531] = 5, + [211010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3214), 1, + STATE(3192), 1, sym_field_declaration_list, STATE(6350), 1, sym_base_class_clause, - [210547] = 5, + [211026] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3361), 1, anon_sym_LT, ACTIONS(8496), 1, sym_identifier, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, STATE(5512), 1, sym_template_parameter_list, - [210563] = 5, + [211042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2874), 1, + STATE(2900), 1, sym_field_declaration_list, STATE(6379), 1, sym_base_class_clause, - [210579] = 5, + [211058] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3203), 1, + STATE(3191), 1, sym_field_declaration_list, STATE(6345), 1, sym_base_class_clause, - [210595] = 5, + [211074] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2753), 1, + STATE(2757), 1, sym_field_declaration_list, STATE(6279), 1, sym_base_class_clause, - [210611] = 5, + [211090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3361), 1, anon_sym_LT, ACTIONS(8496), 1, sym_identifier, - STATE(1083), 1, + STATE(1086), 1, sym_template_parameter_list, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [210627] = 5, - ACTIONS(7080), 1, + [211106] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8492), 1, anon_sym_LPAREN, @@ -395932,7 +397618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_arg, STATE(6309), 1, sym_preproc_params, - [210643] = 2, + [211122] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8626), 4, @@ -395940,63 +397626,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [210653] = 5, + [211132] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2872), 1, + STATE(2899), 1, sym_field_declaration_list, STATE(6382), 1, sym_base_class_clause, - [210669] = 5, + [211148] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2860), 1, + STATE(2896), 1, sym_field_declaration_list, STATE(6384), 1, sym_base_class_clause, - [210685] = 5, + [211164] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2858), 1, + STATE(2895), 1, sym_field_declaration_list, STATE(6389), 1, sym_base_class_clause, - [210701] = 5, + [211180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4554), 1, + STATE(4557), 1, sym_field_declaration_list, STATE(6133), 1, sym_base_class_clause, - [210717] = 5, + [211196] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8628), 1, anon_sym_SEMI, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [210733] = 5, - ACTIONS(7080), 1, + [211212] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8630), 1, anon_sym_DQUOTE, @@ -396006,72 +397692,72 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, STATE(5564), 1, aux_sym_string_literal_repeat1, - [210749] = 5, + [211228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2316), 1, + STATE(2409), 1, sym_field_declaration_list, STATE(6236), 1, sym_base_class_clause, - [210765] = 5, + [211244] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2803), 1, + STATE(2805), 1, sym_field_declaration_list, STATE(6460), 1, sym_base_class_clause, - [210781] = 5, + [211260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3503), 1, + STATE(3456), 1, sym_field_declaration_list, STATE(6381), 1, sym_base_class_clause, - [210797] = 5, + [211276] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8636), 1, anon_sym_SEMI, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [210813] = 4, + [211292] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7431), 1, anon_sym_LBRACE, - STATE(3031), 1, + STATE(3054), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [210827] = 5, + [211306] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2208), 1, + STATE(2380), 1, sym_field_declaration_list, STATE(6237), 1, sym_base_class_clause, - [210843] = 5, + [211322] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8638), 1, @@ -396082,18 +397768,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(5857), 1, aux_sym_base_class_clause_repeat1, - [210859] = 5, + [211338] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2799), 1, + STATE(2705), 1, sym_field_declaration_list, STATE(6125), 1, sym_base_class_clause, - [210875] = 5, + [211354] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -396104,29 +397790,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(6070), 1, aux_sym_template_argument_list_repeat1, - [210891] = 5, + [211370] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3166), 1, + STATE(3180), 1, sym_field_declaration_list, STATE(6342), 1, sym_base_class_clause, - [210907] = 5, + [211386] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2216), 1, + STATE(2391), 1, sym_field_declaration_list, STATE(6238), 1, sym_base_class_clause, - [210923] = 4, + [211402] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7427), 1, @@ -396136,7 +397822,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [210937] = 4, + [211416] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7463), 1, @@ -396146,62 +397832,62 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [210951] = 5, + [211430] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3163), 1, + STATE(3174), 1, sym_field_declaration_list, STATE(6341), 1, sym_base_class_clause, - [210967] = 5, + [211446] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3517), 1, + STATE(3407), 1, sym_field_declaration_list, STATE(6475), 1, sym_base_class_clause, - [210983] = 5, + [211462] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8646), 1, anon_sym_SEMI, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [210999] = 5, + [211478] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2752), 1, + STATE(2755), 1, sym_field_declaration_list, STATE(6263), 1, sym_base_class_clause, - [211015] = 5, + [211494] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4926), 1, anon_sym_LBRACE, - STATE(3160), 1, + STATE(3162), 1, sym_field_declaration_list, STATE(6337), 1, sym_base_class_clause, - [211031] = 2, + [211510] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8626), 4, @@ -396209,93 +397895,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [211041] = 5, + [211520] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3477), 1, + STATE(3406), 1, sym_field_declaration_list, STATE(6281), 1, sym_base_class_clause, - [211057] = 5, + [211536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2739), 1, + STATE(2752), 1, sym_field_declaration_list, STATE(6249), 1, sym_base_class_clause, - [211073] = 4, + [211552] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7447), 1, anon_sym_LBRACE, - STATE(3357), 1, + STATE(3362), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [211087] = 5, + [211566] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4448), 1, + STATE(4550), 1, sym_field_declaration_list, STATE(6123), 1, sym_base_class_clause, - [211103] = 4, + [211582] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7437), 1, anon_sym_LBRACE, - STATE(1907), 1, + STATE(1892), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [211117] = 5, + [211596] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3841), 1, + ACTIONS(3843), 1, anon_sym_LBRACE, ACTIONS(8484), 1, anon_sym_COLON_COLON, ACTIONS(8648), 1, anon_sym_EQ, - STATE(1039), 1, + STATE(1027), 1, sym_declaration_list, - [211133] = 5, + [211612] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3857), 1, + ACTIONS(3847), 1, anon_sym_LBRACE, ACTIONS(8650), 1, sym_identifier, - STATE(937), 1, + STATE(905), 1, sym_declaration_list, STATE(6063), 1, sym_namespace_definition_name, - [211149] = 4, + [211628] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7433), 1, anon_sym_LBRACE, - STATE(2471), 1, + STATE(2505), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [211163] = 5, - ACTIONS(7080), 1, + [211642] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8460), 1, aux_sym_string_literal_token1, @@ -396305,39 +397991,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, STATE(5532), 1, aux_sym_string_literal_repeat1, - [211179] = 4, + [211658] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7435), 1, anon_sym_LBRACE, - STATE(3125), 1, + STATE(3130), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [211193] = 5, + [211672] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4016), 1, + STATE(3904), 1, sym_field_declaration_list, STATE(6479), 1, sym_base_class_clause, - [211209] = 5, + [211688] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2738), 1, + STATE(2740), 1, sym_field_declaration_list, STATE(6235), 1, sym_base_class_clause, - [211225] = 5, + [211704] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -396348,18 +398034,18 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(6437), 1, sym_field_initializer_list, - [211241] = 5, + [211720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2020), 1, + STATE(2140), 1, sym_field_declaration_list, STATE(6516), 1, sym_base_class_clause, - [211257] = 5, + [211736] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8640), 1, @@ -396370,62 +398056,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(5989), 1, aux_sym_base_class_clause_repeat1, - [211273] = 5, + [211752] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2015), 1, + STATE(2143), 1, sym_field_declaration_list, STATE(6514), 1, sym_base_class_clause, - [211289] = 5, + [211768] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3511), 1, + STATE(3502), 1, sym_field_declaration_list, STATE(6549), 1, sym_base_class_clause, - [211305] = 5, + [211784] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2276), 1, + STATE(2381), 1, sym_field_declaration_list, STATE(6239), 1, sym_base_class_clause, - [211321] = 5, + [211800] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - STATE(2002), 1, + STATE(2146), 1, sym_field_declaration_list, STATE(6495), 1, sym_base_class_clause, - [211337] = 5, + [211816] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3361), 1, anon_sym_LT, ACTIONS(8496), 1, sym_identifier, - STATE(1088), 1, + STATE(1085), 1, sym_template_parameter_list, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [211353] = 5, + [211832] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -396436,19 +398122,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(5913), 1, sym_enumerator, - [211369] = 5, + [211848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2899), 1, + STATE(2921), 1, sym_field_declaration_list, STATE(6338), 1, sym_base_class_clause, - [211385] = 5, - ACTIONS(7080), 1, + [211864] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8662), 1, anon_sym_DQUOTE, @@ -396458,7 +398144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, STATE(5780), 1, aux_sym_string_literal_repeat1, - [211401] = 5, + [211880] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -396469,30 +398155,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(5981), 1, sym_enumerator, - [211417] = 5, + [211896] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4034), 1, + STATE(4043), 1, sym_field_declaration_list, STATE(6496), 1, sym_base_class_clause, - [211433] = 5, + [211912] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2205), 1, + STATE(2416), 1, sym_field_declaration_list, STATE(6242), 1, sym_base_class_clause, - [211449] = 5, - ACTIONS(7080), 1, + [211928] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8492), 1, anon_sym_LPAREN, @@ -396502,29 +398188,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_arg, STATE(6305), 1, sym_preproc_params, - [211465] = 5, + [211944] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3361), 1, anon_sym_LT, ACTIONS(8496), 1, sym_identifier, - STATE(1087), 1, + STATE(1088), 1, sym_template_parameter_list, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [211481] = 5, + [211960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2304), 1, + STATE(2433), 1, sym_field_declaration_list, STATE(6244), 1, sym_base_class_clause, - [211497] = 5, + [211976] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8676), 1, @@ -396535,7 +398221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, STATE(6962), 1, sym_trailing_return_type, - [211513] = 5, + [211992] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -396546,18 +398232,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(6031), 1, aux_sym_template_argument_list_repeat1, - [211529] = 5, + [212008] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3507), 1, + STATE(3506), 1, sym_field_declaration_list, STATE(6556), 1, sym_base_class_clause, - [211545] = 5, + [212024] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -396568,7 +398254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(6424), 1, sym_field_initializer_list, - [211561] = 5, + [212040] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -396579,29 +398265,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(6108), 1, aux_sym_template_argument_list_repeat1, - [211577] = 5, + [212056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2306), 1, + STATE(2435), 1, sym_field_declaration_list, STATE(6248), 1, sym_base_class_clause, - [211593] = 5, + [212072] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3489), 1, + STATE(3494), 1, sym_field_declaration_list, STATE(6587), 1, sym_base_class_clause, - [211609] = 5, + [212088] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -396612,8 +398298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(5818), 1, sym_enumerator, - [211625] = 5, - ACTIONS(7080), 1, + [212104] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8492), 1, anon_sym_LPAREN, @@ -396623,73 +398309,73 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_arg, STATE(6476), 1, sym_preproc_params, - [211641] = 5, + [212120] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2332), 1, + STATE(2449), 1, sym_field_declaration_list, STATE(6253), 1, sym_base_class_clause, - [211657] = 5, + [212136] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2404), 1, + STATE(2367), 1, sym_field_declaration_list, STATE(6300), 1, sym_base_class_clause, - [211673] = 5, + [212152] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4550), 1, + STATE(4552), 1, sym_field_declaration_list, STATE(6127), 1, sym_base_class_clause, - [211689] = 5, + [212168] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2411), 1, + STATE(2361), 1, sym_field_declaration_list, STATE(6298), 1, sym_base_class_clause, - [211705] = 5, + [212184] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4053), 1, + STATE(4047), 1, sym_field_declaration_list, STATE(6497), 1, sym_base_class_clause, - [211721] = 5, + [212200] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2428), 1, + STATE(2400), 1, sym_field_declaration_list, STATE(6296), 1, sym_base_class_clause, - [211737] = 4, + [212216] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7463), 1, @@ -396699,19 +398385,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [211751] = 5, + [212230] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3494), 1, + STATE(3496), 1, sym_field_declaration_list, STATE(6576), 1, sym_base_class_clause, - [211767] = 5, - ACTIONS(7080), 1, + [212246] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8460), 1, aux_sym_string_literal_token1, @@ -396721,73 +398407,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, STATE(5532), 1, aux_sym_string_literal_repeat1, - [211783] = 5, + [212262] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2336), 1, + STATE(2451), 1, sym_field_declaration_list, STATE(6257), 1, sym_base_class_clause, - [211799] = 5, + [212278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3509), 1, + STATE(3470), 1, sym_field_declaration_list, STATE(6318), 1, sym_base_class_clause, - [211815] = 5, + [212294] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4042), 1, + STATE(3978), 1, sym_field_declaration_list, STATE(6499), 1, sym_base_class_clause, - [211831] = 5, + [212310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4015), 1, + STATE(3902), 1, sym_field_declaration_list, STATE(6481), 1, sym_base_class_clause, - [211847] = 5, + [212326] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3841), 1, + ACTIONS(3843), 1, anon_sym_LBRACE, ACTIONS(8696), 1, sym_identifier, - STATE(945), 1, + STATE(1055), 1, sym_declaration_list, STATE(5872), 1, sym_namespace_definition_name, - [211863] = 5, + [212342] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2853), 1, + STATE(2703), 1, sym_field_declaration_list, STATE(6396), 1, sym_base_class_clause, - [211879] = 5, + [212358] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8476), 1, @@ -396798,41 +398484,41 @@ static const uint16_t ts_small_parse_table[] = { sym_requirement_seq, STATE(6221), 1, sym_requires_parameter_list, - [211895] = 5, + [212374] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2846), 1, + STATE(2877), 1, sym_field_declaration_list, STATE(6397), 1, sym_base_class_clause, - [211911] = 5, + [212390] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3499), 1, + STATE(3501), 1, sym_field_declaration_list, STATE(6571), 1, sym_base_class_clause, - [211927] = 5, + [212406] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(7012), 1, anon_sym_LBRACE, ACTIONS(8476), 1, anon_sym_LPAREN2, - STATE(3765), 1, + STATE(3764), 1, sym_requirement_seq, STATE(6542), 1, sym_requires_parameter_list, - [211943] = 5, - ACTIONS(7080), 1, + [212422] = 5, + ACTIONS(7086), 1, sym_comment, ACTIONS(8700), 1, anon_sym_DQUOTE, @@ -396842,38 +398528,38 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, STATE(5742), 1, aux_sym_string_literal_repeat1, - [211959] = 4, + [212438] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7437), 1, anon_sym_LBRACE, - STATE(1904), 1, + STATE(1910), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [211973] = 5, + [212452] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8706), 1, anon_sym_SEMI, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [211989] = 4, + [212468] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7437), 1, anon_sym_LBRACE, - STATE(1913), 1, + STATE(1896), 1, sym_compound_statement, ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [212003] = 5, + [212482] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -396884,29 +398570,29 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(6287), 1, sym_field_initializer_list, - [212019] = 5, + [212498] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4011), 1, + STATE(3883), 1, sym_field_declaration_list, STATE(6482), 1, sym_base_class_clause, - [212035] = 5, + [212514] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4199), 1, + ACTIONS(4227), 1, anon_sym_LBRACE, - STATE(2835), 1, + STATE(2873), 1, sym_field_declaration_list, STATE(6399), 1, sym_base_class_clause, - [212051] = 5, + [212530] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -396917,62 +398603,62 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(6353), 1, sym_field_initializer_list, - [212067] = 5, + [212546] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4553), 1, + STATE(4555), 1, sym_field_declaration_list, STATE(6130), 1, sym_base_class_clause, - [212083] = 5, + [212562] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(5448), 1, + ACTIONS(5441), 1, anon_sym_LT, ACTIONS(8708), 1, anon_sym_SEMI, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [212099] = 5, + [212578] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2217), 1, + STATE(2443), 1, sym_field_declaration_list, STATE(6266), 1, sym_base_class_clause, - [212115] = 5, + [212594] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4038), 1, + STATE(3921), 1, sym_field_declaration_list, STATE(6500), 1, sym_base_class_clause, - [212131] = 5, + [212610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3501), 1, + STATE(3503), 1, sym_field_declaration_list, STATE(6559), 1, sym_base_class_clause, - [212147] = 5, + [212626] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -396983,51 +398669,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5864), 1, aux_sym_template_argument_list_repeat1, - [212163] = 5, + [212642] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4050), 1, + STATE(3912), 1, sym_field_declaration_list, STATE(6502), 1, sym_base_class_clause, - [212179] = 5, + [212658] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2226), 1, + STATE(2430), 1, sym_field_declaration_list, STATE(6277), 1, sym_base_class_clause, - [212195] = 5, + [212674] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4045), 1, + STATE(3953), 1, sym_field_declaration_list, STATE(6503), 1, sym_base_class_clause, - [212211] = 5, + [212690] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2225), 1, + STATE(2434), 1, sym_field_declaration_list, STATE(6276), 1, sym_base_class_clause, - [212227] = 5, + [212706] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, @@ -397036,42 +398722,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(8712), 1, anon_sym_RPAREN, - STATE(4348), 1, + STATE(4332), 1, sym_parameter_list, - [212243] = 5, + [212722] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2223), 1, + STATE(2437), 1, sym_field_declaration_list, STATE(6272), 1, sym_base_class_clause, - [212259] = 5, + [212738] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2743), 1, + STATE(2741), 1, sym_field_declaration_list, STATE(6139), 1, sym_base_class_clause, - [212275] = 5, + [212754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COLON, - ACTIONS(4035), 1, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(2222), 1, + STATE(2438), 1, sym_field_declaration_list, STATE(6270), 1, sym_base_class_clause, - [212291] = 4, + [212770] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7463), 1, @@ -397081,34 +398767,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7749), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [212305] = 4, + [212784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 1, + ACTIONS(5846), 1, anon_sym_COMMA, ACTIONS(8714), 1, anon_sym_RPAREN, STATE(6029), 1, aux_sym_argument_list_repeat1, - [212318] = 4, + [212797] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8716), 1, sym_identifier, - STATE(2170), 1, + STATE(2307), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [212331] = 4, + [212810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 1, + ACTIONS(5846), 1, anon_sym_COMMA, - ACTIONS(5888), 1, + ACTIONS(5900), 1, anon_sym_RPAREN, STATE(5844), 1, aux_sym_argument_list_repeat1, - [212344] = 4, + [212823] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -397117,7 +398803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [212357] = 4, + [212836] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8720), 1, @@ -397126,7 +398812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(5846), 1, aux_sym_enumerator_list_repeat1, - [212370] = 4, + [212849] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -397135,7 +398821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [212383] = 4, + [212862] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -397144,7 +398830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [212396] = 4, + [212875] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8728), 1, @@ -397153,7 +398839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(6067), 1, aux_sym_parameter_list_repeat1, - [212409] = 4, + [212888] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8732), 1, @@ -397162,7 +398848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(5822), 1, aux_sym_field_initializer_list_repeat1, - [212422] = 4, + [212901] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8737), 1, @@ -397171,15 +398857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [212435] = 3, + [212914] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8742), 1, anon_sym_catch, - STATE(416), 2, + STATE(361), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [212446] = 4, + [212925] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -397188,7 +398874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [212459] = 4, + [212938] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397197,16 +398883,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5865), 1, aux_sym_template_argument_list_repeat1, - [212472] = 4, + [212951] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7278), 1, + ACTIONS(7280), 1, anon_sym_RPAREN, ACTIONS(8748), 1, anon_sym_COMMA, STATE(5827), 1, aux_sym_preproc_argument_list_repeat1, - [212485] = 4, + [212964] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8751), 1, @@ -397215,7 +398901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(5828), 1, aux_sym_preproc_params_repeat1, - [212498] = 4, + [212977] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8728), 1, @@ -397224,7 +398910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(6056), 1, aux_sym_parameter_list_repeat1, - [212511] = 4, + [212990] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -397233,7 +398919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [212524] = 4, + [213003] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -397242,7 +398928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [212537] = 3, + [213016] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8762), 1, @@ -397250,33 +398936,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8764), 2, anon_sym_COMMA, anon_sym_LBRACE, - [212548] = 4, + [213027] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8766), 1, sym_identifier, - STATE(2170), 1, + STATE(2307), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [212561] = 3, + [213040] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8768), 1, anon_sym_catch, - STATE(1970), 2, + STATE(1952), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [212572] = 4, + [213051] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, ACTIONS(8772), 1, anon_sym_constexpr, - STATE(267), 1, + STATE(265), 1, sym_condition_clause, - [212585] = 4, + [213064] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8774), 1, @@ -397285,7 +398971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(5836), 1, aux_sym_structured_binding_declarator_repeat1, - [212598] = 4, + [213077] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8779), 1, @@ -397294,16 +398980,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(5902), 1, aux_sym_throw_specifier_repeat1, - [212611] = 4, + [213090] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8783), 1, sym_identifier, - STATE(2254), 1, + STATE(2452), 1, sym_template_type, STATE(2832), 1, sym_template_function, - [212624] = 4, + [213103] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -397312,16 +398998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(5831), 1, aux_sym_declaration_repeat1, - [212637] = 4, + [213116] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8787), 1, sym_identifier, - STATE(2170), 1, + STATE(2307), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [212650] = 4, + [213129] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8789), 1, @@ -397330,7 +399016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(5997), 1, aux_sym_requires_parameter_list_repeat1, - [212663] = 4, + [213142] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -397339,7 +399025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [212676] = 3, + [213155] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8797), 1, @@ -397347,16 +399033,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8795), 2, anon_sym_DOT_DOT_DOT, sym_identifier, - [212687] = 4, + [213166] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 1, + ACTIONS(5846), 1, anon_sym_COMMA, ACTIONS(8799), 1, anon_sym_RPAREN, STATE(6029), 1, aux_sym_argument_list_repeat1, - [212700] = 4, + [213179] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -397365,7 +399051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [212713] = 4, + [213192] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8801), 1, @@ -397374,15 +399060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6024), 1, aux_sym_enumerator_list_repeat1, - [212726] = 3, + [213205] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8805), 1, anon_sym_catch, - STATE(1901), 2, + STATE(1861), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [212737] = 4, + [213216] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8807), 1, @@ -397391,7 +399077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, STATE(5852), 1, aux_sym_attribute_declaration_repeat1, - [212750] = 4, + [213229] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8811), 1, @@ -397400,7 +399086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(6047), 1, aux_sym_template_parameter_list_repeat1, - [212763] = 4, + [213242] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8815), 1, @@ -397409,16 +399095,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(5850), 1, aux_sym_parameter_list_repeat1, - [212776] = 4, - ACTIONS(7078), 1, + [213255] = 4, + ACTIONS(7084), 1, anon_sym_LPAREN2, - ACTIONS(7080), 1, + ACTIONS(7086), 1, sym_comment, ACTIONS(8820), 1, anon_sym_LF, STATE(4683), 1, sym_preproc_argument_list, - [212789] = 4, + [213268] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8807), 1, @@ -397427,16 +399113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, STATE(5954), 1, aux_sym_attribute_declaration_repeat1, - [212802] = 4, + [213281] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8824), 1, sym_identifier, - STATE(2170), 1, + STATE(2307), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [212815] = 4, + [213294] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397445,7 +399131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(6033), 1, aux_sym_template_argument_list_repeat1, - [212828] = 4, + [213307] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8640), 1, @@ -397454,16 +399140,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(5999), 1, aux_sym_base_class_clause_repeat1, - [212841] = 4, + [213320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3337), 1, anon_sym_RBRACE, ACTIONS(8830), 1, anon_sym_COMMA, STATE(5928), 1, aux_sym_initializer_list_repeat1, - [212854] = 4, + [213333] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8640), 1, @@ -397472,7 +399158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(5999), 1, aux_sym_base_class_clause_repeat1, - [212867] = 4, + [213346] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8832), 1, @@ -397481,16 +399167,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(5858), 1, aux_sym_requires_parameter_list_repeat1, - [212880] = 4, + [213359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5832), 1, + ACTIONS(5871), 1, anon_sym_COMMA, - ACTIONS(5834), 1, + ACTIONS(5873), 1, anon_sym_RBRACE, STATE(6027), 1, aux_sym_initializer_list_repeat1, - [212893] = 4, + [213372] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -397499,7 +399185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [212906] = 4, + [213385] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8807), 1, @@ -397508,16 +399194,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, STATE(5906), 1, aux_sym_attribute_declaration_repeat1, - [212919] = 4, + [213398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 1, + ACTIONS(5846), 1, anon_sym_COMMA, ACTIONS(5902), 1, anon_sym_RPAREN, STATE(5922), 1, aux_sym_argument_list_repeat1, - [212932] = 4, + [213411] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397526,7 +399212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [212945] = 4, + [213424] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397535,7 +399221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [212958] = 4, + [213437] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397544,7 +399230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [212971] = 4, + [213450] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -397553,16 +399239,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [212984] = 4, + [213463] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8849), 1, sym_identifier, - STATE(2170), 1, + STATE(2307), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [212997] = 4, + [213476] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8851), 1, @@ -397571,39 +399257,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5868), 1, aux_sym_template_parameter_list_repeat1, - [213010] = 2, + [213489] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8856), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT2, - [213019] = 3, + [213498] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8768), 1, anon_sym_catch, - STATE(1981), 2, + STATE(1939), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [213030] = 3, + [213509] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8858), 1, anon_sym_catch, - STATE(336), 2, + STATE(341), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [213041] = 4, + [213520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3841), 1, + ACTIONS(3843), 1, anon_sym_LBRACE, ACTIONS(8484), 1, anon_sym_COLON_COLON, - STATE(1039), 1, + STATE(1027), 1, sym_declaration_list, - [213054] = 4, + [213533] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -397612,7 +399298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [213067] = 4, + [213546] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -397621,16 +399307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [213080] = 4, + [213559] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, ACTIONS(8864), 1, anon_sym_constexpr, - STATE(173), 1, + STATE(193), 1, sym_condition_clause, - [213093] = 4, + [213572] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -397639,24 +399325,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(5952), 1, aux_sym_declaration_repeat1, - [213106] = 3, + [213585] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8868), 1, anon_sym_catch, - STATE(335), 2, + STATE(328), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [213117] = 4, + [213596] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8870), 1, sym_identifier, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, STATE(5139), 1, sym_template_function, - [213130] = 4, + [213609] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -397665,7 +399351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [213143] = 4, + [213622] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -397674,7 +399360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [213156] = 3, + [213635] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8464), 1, @@ -397682,40 +399368,40 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8876), 2, anon_sym_COMMA, anon_sym_GT2, - [213167] = 3, + [213646] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8805), 1, anon_sym_catch, - STATE(1892), 2, + STATE(1862), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [213178] = 2, + [213657] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8878), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [213187] = 4, + [213666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(3299), 1, anon_sym_RBRACE, ACTIONS(8880), 1, anon_sym_COMMA, STATE(5928), 1, aux_sym_initializer_list_repeat1, - [213200] = 4, - ACTIONS(7078), 1, + [213679] = 4, + ACTIONS(7084), 1, anon_sym_LPAREN2, - ACTIONS(7080), 1, + ACTIONS(7086), 1, sym_comment, ACTIONS(8882), 1, anon_sym_LF, STATE(4683), 1, sym_preproc_argument_list, - [213213] = 4, + [213692] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397724,7 +399410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [213226] = 4, + [213705] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397733,7 +399419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [213239] = 4, + [213718] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397742,7 +399428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [213252] = 4, + [213731] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397751,7 +399437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [213265] = 4, + [213744] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397760,23 +399446,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [213278] = 2, + [213757] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7991), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [213287] = 4, + [213766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3323), 1, anon_sym_RBRACE, ACTIONS(8894), 1, anon_sym_COMMA, STATE(5928), 1, aux_sym_initializer_list_repeat1, - [213300] = 4, + [213779] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -397785,7 +399471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [213313] = 4, + [213792] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397794,7 +399480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [213326] = 4, + [213805] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8811), 1, @@ -397803,15 +399489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5979), 1, aux_sym_template_parameter_list_repeat1, - [213339] = 3, + [213818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5627), 1, + ACTIONS(5522), 1, anon_sym_EQ, - ACTIONS(5625), 2, + ACTIONS(5520), 2, anon_sym_COMMA, anon_sym_GT2, - [213350] = 4, + [213829] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397820,7 +399506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [213363] = 4, + [213842] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8678), 1, @@ -397829,7 +399515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(7007), 1, sym_trailing_return_type, - [213376] = 4, + [213855] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397838,16 +399524,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [213389] = 4, + [213868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6065), 1, + ACTIONS(6078), 1, anon_sym_RBRACK, ACTIONS(8908), 1, anon_sym_COMMA, STATE(5900), 1, aux_sym_lambda_capture_specifier_repeat1, - [213402] = 4, + [213881] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397856,7 +399542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [213415] = 4, + [213894] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8779), 1, @@ -397865,7 +399551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(5978), 1, aux_sym_throw_specifier_repeat1, - [213428] = 3, + [213907] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8915), 1, @@ -397873,25 +399559,25 @@ static const uint16_t ts_small_parse_table[] = { STATE(1102), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [213439] = 4, - ACTIONS(7078), 1, + [213918] = 4, + ACTIONS(7084), 1, anon_sym_LPAREN2, - ACTIONS(7080), 1, + ACTIONS(7086), 1, sym_comment, ACTIONS(8917), 1, anon_sym_LF, STATE(4683), 1, sym_preproc_argument_list, - [213452] = 4, + [213931] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8919), 1, sym_identifier, - STATE(2170), 1, + STATE(2307), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [213465] = 4, + [213944] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8807), 1, @@ -397900,7 +399586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, STATE(5954), 1, aux_sym_attribute_declaration_repeat1, - [213478] = 4, + [213957] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397909,7 +399595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [213491] = 4, + [213970] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -397918,25 +399604,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5889), 1, aux_sym_template_argument_list_repeat1, - [213504] = 4, + [213983] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8927), 1, sym_identifier, - STATE(2170), 1, + STATE(2307), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [213517] = 4, + [213996] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 1, + ACTIONS(5846), 1, anon_sym_COMMA, - ACTIONS(5836), 1, + ACTIONS(5877), 1, anon_sym_RPAREN, STATE(5814), 1, aux_sym_argument_list_repeat1, - [213530] = 4, + [214009] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8929), 1, @@ -397945,7 +399631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6024), 1, aux_sym_enumerator_list_repeat1, - [213543] = 4, + [214022] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -397954,7 +399640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [213556] = 4, + [214035] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8933), 1, @@ -397963,7 +399649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(5996), 1, aux_sym_enumerator_list_repeat1, - [213569] = 4, + [214048] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8937), 1, @@ -397972,16 +399658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6024), 1, aux_sym_enumerator_list_repeat1, - [213582] = 4, + [214061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 1, + ACTIONS(5846), 1, anon_sym_COMMA, ACTIONS(8941), 1, anon_sym_RPAREN, STATE(6029), 1, aux_sym_argument_list_repeat1, - [213595] = 4, + [214074] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -397990,7 +399676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [213608] = 4, + [214087] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -397999,16 +399685,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [213621] = 4, + [214100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 1, + ACTIONS(5846), 1, anon_sym_COMMA, ACTIONS(8945), 1, anon_sym_RPAREN, STATE(6029), 1, aux_sym_argument_list_repeat1, - [213634] = 4, + [214113] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -398017,16 +399703,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [213647] = 4, + [214126] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, ACTIONS(8949), 1, anon_sym_constexpr, - STATE(197), 1, + STATE(201), 1, sym_condition_clause, - [213660] = 4, + [214139] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398035,24 +399721,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [213673] = 4, + [214152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 1, + ACTIONS(5846), 1, anon_sym_COMMA, ACTIONS(8953), 1, anon_sym_RPAREN, STATE(6029), 1, aux_sym_argument_list_repeat1, - [213686] = 3, + [214165] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8805), 1, anon_sym_catch, - STATE(1880), 2, + STATE(1859), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [213697] = 4, + [214176] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398061,7 +399747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [213710] = 4, + [214189] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398070,33 +399756,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [213723] = 3, + [214202] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8768), 1, anon_sym_catch, - STATE(1966), 2, + STATE(1928), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [213734] = 4, + [214213] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8101), 1, anon_sym_LPAREN2, ACTIONS(8103), 1, anon_sym_LBRACK, - STATE(4399), 1, + STATE(4394), 1, sym_parameter_list, - [213747] = 4, + [214226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5919), 1, + ACTIONS(5944), 1, anon_sym_RBRACE, ACTIONS(8959), 1, anon_sym_COMMA, STATE(5928), 1, aux_sym_initializer_list_repeat1, - [213760] = 4, + [214239] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398105,7 +399791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [213773] = 4, + [214252] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -398114,7 +399800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(5960), 1, aux_sym_declaration_repeat1, - [213786] = 4, + [214265] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -398123,7 +399809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [213799] = 4, + [214278] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -398132,16 +399818,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [213812] = 4, + [214291] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8970), 1, sym_identifier, - STATE(2825), 1, + STATE(2855), 1, sym_template_type, - STATE(3092), 1, + STATE(2993), 1, sym_template_function, - [213825] = 4, + [214304] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398150,7 +399836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [213838] = 4, + [214317] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8968), 1, @@ -398159,7 +399845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6024), 1, aux_sym_enumerator_list_repeat1, - [213851] = 4, + [214330] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398168,7 +399854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5925), 1, aux_sym_template_argument_list_repeat1, - [213864] = 4, + [214343] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8978), 1, @@ -398177,7 +399863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(5968), 1, aux_sym_enumerator_list_repeat1, - [213877] = 4, + [214356] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -398186,41 +399872,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [213890] = 4, + [214369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4846), 1, + ACTIONS(5020), 1, anon_sym_COMMA, ACTIONS(8984), 1, anon_sym_RBRACK, STATE(5836), 1, aux_sym_structured_binding_declarator_repeat1, - [213903] = 4, + [214382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(5796), 1, anon_sym_COMMA, ACTIONS(8986), 1, anon_sym_RBRACK, STATE(5900), 1, aux_sym_lambda_capture_specifier_repeat1, - [213916] = 4, + [214395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5840), 1, + ACTIONS(5879), 1, anon_sym_COMMA, - ACTIONS(5842), 1, + ACTIONS(5881), 1, anon_sym_RBRACE, STATE(6001), 1, aux_sym_initializer_list_repeat1, - [213929] = 2, + [214408] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8988), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT2, - [213938] = 4, + [214417] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398229,15 +399915,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5897), 1, aux_sym_template_argument_list_repeat1, - [213951] = 3, + [214430] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8868), 1, anon_sym_catch, - STATE(334), 2, + STATE(318), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [213962] = 3, + [214441] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8992), 1, @@ -398245,16 +399931,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8994), 2, anon_sym_COMMA, anon_sym_GT2, - [213973] = 4, + [214452] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5912), 1, + ACTIONS(5937), 1, anon_sym_COMMA, - ACTIONS(5914), 1, + ACTIONS(5939), 1, anon_sym_RBRACE, STATE(5856), 1, aux_sym_initializer_list_repeat1, - [213986] = 4, + [214465] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398263,7 +399949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(6010), 1, aux_sym_template_argument_list_repeat1, - [213999] = 4, + [214478] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -398272,7 +399958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [214012] = 4, + [214491] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -398281,7 +399967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [214025] = 4, + [214504] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -398290,7 +399976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [214038] = 4, + [214517] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9004), 1, @@ -398299,7 +399985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(6011), 1, aux_sym_field_initializer_list_repeat1, - [214051] = 4, + [214530] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -398308,7 +399994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [214064] = 4, + [214543] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398317,7 +400003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5986), 1, aux_sym_template_argument_list_repeat1, - [214077] = 4, + [214556] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9012), 1, @@ -398326,7 +400012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, STATE(5954), 1, aux_sym_attribute_declaration_repeat1, - [214090] = 4, + [214569] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8640), 1, @@ -398335,7 +400021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(5989), 1, aux_sym_base_class_clause_repeat1, - [214103] = 4, + [214582] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -398344,7 +400030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [214116] = 4, + [214595] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398353,7 +400039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [214129] = 4, + [214608] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9021), 1, @@ -398362,7 +400048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(5935), 1, aux_sym_enumerator_list_repeat1, - [214142] = 4, + [214621] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -398371,7 +400057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [214155] = 4, + [214634] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -398380,7 +400066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [214168] = 4, + [214647] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398389,7 +400075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [214181] = 4, + [214660] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9031), 1, @@ -398398,7 +400084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(5914), 1, aux_sym_enumerator_list_repeat1, - [214194] = 4, + [214673] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398407,7 +400093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5886), 1, aux_sym_template_argument_list_repeat1, - [214207] = 4, + [214686] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398416,7 +400102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [214220] = 4, + [214699] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -398425,16 +400111,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [214233] = 4, + [214712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 1, + ACTIONS(5846), 1, anon_sym_COMMA, - ACTIONS(5908), 1, + ACTIONS(5948), 1, anon_sym_RPAREN, STATE(5918), 1, aux_sym_argument_list_repeat1, - [214246] = 4, + [214725] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -398443,7 +400129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [214259] = 4, + [214738] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9041), 1, @@ -398452,15 +400138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6024), 1, aux_sym_enumerator_list_repeat1, - [214272] = 3, + [214751] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9045), 1, anon_sym_catch, - STATE(1982), 2, + STATE(1925), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [214283] = 4, + [214762] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398469,7 +400155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5957), 1, aux_sym_template_argument_list_repeat1, - [214296] = 3, + [214775] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9051), 1, @@ -398477,7 +400163,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9049), 2, anon_sym_COMMA, anon_sym_RBRACE, - [214307] = 3, + [214786] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9055), 1, @@ -398485,48 +400171,48 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9053), 2, anon_sym_COMMA, anon_sym_SEMI, - [214318] = 2, + [214797] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9057), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT2, - [214327] = 2, + [214806] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9057), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT2, - [214336] = 4, + [214815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5812), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(5814), 1, + ACTIONS(5842), 1, anon_sym_RBRACE, STATE(5892), 1, aux_sym_initializer_list_repeat1, - [214349] = 4, + [214828] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9059), 1, sym_identifier, STATE(2688), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [214362] = 4, + [214841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 1, + ACTIONS(5846), 1, anon_sym_COMMA, - ACTIONS(5882), 1, + ACTIONS(5894), 1, anon_sym_RPAREN, STATE(6035), 1, aux_sym_argument_list_repeat1, - [214375] = 4, + [214854] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9061), 1, @@ -398535,7 +400221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(5978), 1, aux_sym_throw_specifier_repeat1, - [214388] = 4, + [214867] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8811), 1, @@ -398544,7 +400230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5868), 1, aux_sym_template_parameter_list_repeat1, - [214401] = 4, + [214880] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -398553,7 +400239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(5931), 1, aux_sym_declaration_repeat1, - [214414] = 4, + [214893] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9070), 1, @@ -398562,7 +400248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6068), 1, aux_sym_enumerator_list_repeat1, - [214427] = 4, + [214906] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398571,7 +400257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5924), 1, aux_sym_template_argument_list_repeat1, - [214440] = 4, + [214919] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398580,7 +400266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [214453] = 4, + [214932] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398589,7 +400275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [214466] = 4, + [214945] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398598,7 +400284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [214479] = 4, + [214958] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398607,7 +400293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [214492] = 4, + [214971] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398616,7 +400302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [214505] = 4, + [214984] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398625,7 +400311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [214518] = 4, + [214997] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8640), 1, @@ -398634,7 +400320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(5999), 1, aux_sym_base_class_clause_repeat1, - [214531] = 4, + [215010] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -398643,7 +400329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [214544] = 4, + [215023] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -398652,7 +400338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [214557] = 4, + [215036] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398661,7 +400347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5983), 1, aux_sym_template_argument_list_repeat1, - [214570] = 4, + [215049] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -398670,7 +400356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [214583] = 4, + [215062] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8807), 1, @@ -398679,7 +400365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, STATE(5954), 1, aux_sym_attribute_declaration_repeat1, - [214596] = 4, + [215075] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -398688,7 +400374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [214609] = 4, + [215088] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9100), 1, @@ -398697,7 +400383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6024), 1, aux_sym_enumerator_list_repeat1, - [214622] = 4, + [215101] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8789), 1, @@ -398706,16 +400392,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(5858), 1, aux_sym_requires_parameter_list_repeat1, - [214635] = 4, + [215114] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9106), 1, sym_identifier, - STATE(2170), 1, + STATE(2307), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [214648] = 4, + [215127] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9108), 1, @@ -398724,7 +400410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(5999), 1, aux_sym_base_class_clause_repeat1, - [214661] = 3, + [215140] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9113), 1, @@ -398732,24 +400418,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9111), 2, anon_sym_COMMA, anon_sym_LBRACE, - [214672] = 4, + [215151] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3329), 1, anon_sym_RBRACE, ACTIONS(9115), 1, anon_sym_COMMA, STATE(5928), 1, aux_sym_initializer_list_repeat1, - [214685] = 3, + [215164] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9117), 1, anon_sym_catch, - STATE(390), 2, + STATE(405), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [214696] = 4, + [215175] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398758,7 +400444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [214709] = 4, + [215188] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9121), 1, @@ -398767,7 +400453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(5911), 1, aux_sym_enumerator_list_repeat1, - [214722] = 4, + [215201] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398776,7 +400462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [214735] = 4, + [215214] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398785,16 +400471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [214748] = 4, + [215227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 1, + ACTIONS(5846), 1, anon_sym_COMMA, - ACTIONS(5824), 1, + ACTIONS(5848), 1, anon_sym_RPAREN, STATE(5915), 1, aux_sym_argument_list_repeat1, - [214761] = 4, + [215240] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8807), 1, @@ -398803,7 +400489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, STATE(5954), 1, aux_sym_attribute_declaration_repeat1, - [214774] = 4, + [215253] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398812,7 +400498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [214787] = 4, + [215266] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398821,7 +400507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [214800] = 4, + [215279] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9004), 1, @@ -398830,16 +400516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(5822), 1, aux_sym_field_initializer_list_repeat1, - [214813] = 4, + [215292] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9137), 1, sym_identifier, - STATE(2531), 1, + STATE(2545), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [214826] = 4, + [215305] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8807), 1, @@ -398848,7 +400534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, STATE(5954), 1, aux_sym_attribute_declaration_repeat1, - [214839] = 4, + [215318] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8640), 1, @@ -398857,24 +400543,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(5855), 1, aux_sym_base_class_clause_repeat1, - [214852] = 3, + [215331] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9045), 1, anon_sym_catch, - STATE(1983), 2, + STATE(1931), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [214863] = 4, + [215342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4846), 1, + ACTIONS(5020), 1, anon_sym_COMMA, ACTIONS(9141), 1, anon_sym_RBRACK, STATE(5939), 1, aux_sym_structured_binding_declarator_repeat1, - [214876] = 4, + [215355] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -398883,7 +400569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(5948), 1, aux_sym_declaration_repeat1, - [214889] = 4, + [215368] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -398892,7 +400578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [214902] = 4, + [215381] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -398901,25 +400587,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [214915] = 4, + [215394] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9149), 1, sym_identifier, - STATE(2531), 1, + STATE(2545), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [214928] = 4, + [215407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, ACTIONS(8484), 1, anon_sym_COLON_COLON, - STATE(490), 1, + STATE(508), 1, sym_declaration_list, - [214941] = 4, + [215420] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398928,7 +400614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [214954] = 4, + [215433] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398937,7 +400623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(6005), 1, aux_sym_template_argument_list_repeat1, - [214967] = 4, + [215446] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9155), 1, @@ -398946,7 +400632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6024), 1, aux_sym_enumerator_list_repeat1, - [214980] = 4, + [215459] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -398955,42 +400641,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [214993] = 3, + [215472] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8868), 1, anon_sym_catch, - STATE(318), 2, + STATE(314), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [215004] = 4, + [215483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 1, + ACTIONS(3321), 1, anon_sym_RBRACE, ACTIONS(9162), 1, anon_sym_COMMA, STATE(5928), 1, aux_sym_initializer_list_repeat1, - [215017] = 4, + [215496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(5796), 1, anon_sym_COMMA, ACTIONS(9164), 1, anon_sym_RBRACK, STATE(5900), 1, aux_sym_lambda_capture_specifier_repeat1, - [215030] = 4, + [215509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6101), 1, + ACTIONS(6105), 1, anon_sym_RPAREN, ACTIONS(9166), 1, anon_sym_COMMA, STATE(6029), 1, aux_sym_argument_list_repeat1, - [215043] = 4, + [215522] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -398999,7 +400685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [215056] = 4, + [215535] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399008,16 +400694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [215069] = 4, + [215548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5754), 1, + ACTIONS(5752), 1, anon_sym_RBRACE, - ACTIONS(5880), 1, + ACTIONS(5889), 1, anon_sym_COMMA, STATE(5884), 1, aux_sym_initializer_list_repeat1, - [215082] = 4, + [215561] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399026,7 +400712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [215095] = 3, + [215574] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9117), 1, @@ -399034,16 +400720,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(344), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [215106] = 4, + [215585] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 1, + ACTIONS(5846), 1, anon_sym_COMMA, ACTIONS(9175), 1, anon_sym_RPAREN, STATE(6029), 1, aux_sym_argument_list_repeat1, - [215119] = 4, + [215598] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8807), 1, @@ -399052,7 +400738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, STATE(6013), 1, aux_sym_attribute_declaration_repeat1, - [215132] = 4, + [215611] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -399061,25 +400747,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [215145] = 4, + [215624] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, ACTIONS(9181), 1, anon_sym_constexpr, - STATE(193), 1, + STATE(243), 1, sym_condition_clause, - [215158] = 4, + [215637] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9183), 1, sym_identifier, - STATE(2254), 1, + STATE(2452), 1, sym_template_type, STATE(2688), 1, sym_template_function, - [215171] = 4, + [215650] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9185), 1, @@ -399088,16 +400774,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [215184] = 4, + [215663] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, ACTIONS(9190), 1, anon_sym_constexpr, - STATE(165), 1, + STATE(197), 1, sym_condition_clause, - [215197] = 4, + [215676] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9192), 1, @@ -399106,34 +400792,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(5828), 1, aux_sym_preproc_params_repeat1, - [215210] = 4, + [215689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3845), 1, + ACTIONS(3841), 1, anon_sym_LBRACE, ACTIONS(8484), 1, anon_sym_COLON_COLON, - STATE(1043), 1, + STATE(937), 1, sym_declaration_list, - [215223] = 4, + [215702] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9196), 1, sym_identifier, - STATE(3092), 1, + STATE(2993), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [215236] = 4, + [215715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7050), 1, + ACTIONS(7052), 1, anon_sym_COMMA, ACTIONS(9198), 1, anon_sym_RPAREN, STATE(5827), 1, aux_sym_preproc_argument_list_repeat1, - [215249] = 4, + [215728] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8807), 1, @@ -399142,7 +400828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, STATE(6008), 1, aux_sym_attribute_declaration_repeat1, - [215262] = 4, + [215741] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8811), 1, @@ -399151,7 +400837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5868), 1, aux_sym_template_parameter_list_repeat1, - [215275] = 4, + [215754] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9204), 1, @@ -399160,7 +400846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6076), 1, aux_sym_enumerator_list_repeat1, - [215288] = 4, + [215767] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -399169,16 +400855,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(5825), 1, aux_sym_declaration_repeat1, - [215301] = 4, + [215780] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9210), 1, sym_identifier, - STATE(2170), 1, + STATE(2307), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [215314] = 4, + [215793] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399187,7 +400873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [215327] = 4, + [215806] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8807), 1, @@ -399196,7 +400882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, STATE(5994), 1, aux_sym_attribute_declaration_repeat1, - [215340] = 4, + [215819] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399205,7 +400891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [215353] = 4, + [215832] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9218), 1, @@ -399214,7 +400900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [215366] = 4, + [215845] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399223,7 +400909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [215379] = 4, + [215858] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8728), 1, @@ -399232,7 +400918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(5850), 1, aux_sym_parameter_list_repeat1, - [215392] = 4, + [215871] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399241,7 +400927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(6051), 1, aux_sym_template_argument_list_repeat1, - [215405] = 4, + [215884] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -399250,7 +400936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [215418] = 4, + [215897] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -399259,15 +400945,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [215431] = 3, + [215910] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8858), 1, anon_sym_catch, - STATE(477), 2, + STATE(454), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [215442] = 4, + [215921] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -399276,24 +400962,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(5820), 1, aux_sym_declaration_repeat1, - [215455] = 3, + [215934] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9045), 1, anon_sym_catch, - STATE(1950), 2, + STATE(1942), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [215466] = 4, + [215945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3857), 1, + ACTIONS(3847), 1, anon_sym_LBRACE, ACTIONS(8484), 1, anon_sym_COLON_COLON, - STATE(980), 1, + STATE(954), 1, sym_declaration_list, - [215479] = 4, + [215958] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399302,16 +400988,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(6085), 1, aux_sym_template_argument_list_repeat1, - [215492] = 4, - ACTIONS(7078), 1, + [215971] = 4, + ACTIONS(7084), 1, anon_sym_LPAREN2, - ACTIONS(7080), 1, + ACTIONS(7086), 1, sym_comment, ACTIONS(9237), 1, anon_sym_LF, STATE(4683), 1, sym_preproc_argument_list, - [215505] = 4, + [215984] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399320,7 +401006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [215518] = 4, + [215997] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8728), 1, @@ -399329,7 +401015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(5850), 1, aux_sym_parameter_list_repeat1, - [215531] = 4, + [216010] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9017), 1, @@ -399338,15 +401024,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6024), 1, aux_sym_enumerator_list_repeat1, - [215544] = 3, + [216023] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8742), 1, anon_sym_catch, - STATE(402), 2, + STATE(355), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [215555] = 4, + [216034] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399355,7 +401041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [215568] = 4, + [216047] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8779), 1, @@ -399364,7 +401050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(6113), 1, aux_sym_throw_specifier_repeat1, - [215581] = 4, + [216060] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399373,7 +401059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [215594] = 4, + [216073] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -399382,16 +401068,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [215607] = 4, + [216086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3327), 1, anon_sym_RBRACE, ACTIONS(9253), 1, anon_sym_COMMA, STATE(5928), 1, aux_sym_initializer_list_repeat1, - [215620] = 4, + [216099] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -399400,7 +401086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [215633] = 4, + [216112] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9255), 1, @@ -399409,32 +401095,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6024), 1, aux_sym_enumerator_list_repeat1, - [215646] = 3, + [216125] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9117), 1, anon_sym_catch, - STATE(422), 2, + STATE(396), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [215657] = 3, + [216136] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8742), 1, anon_sym_catch, - STATE(341), 2, + STATE(340), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [215668] = 4, + [216147] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9259), 1, sym_identifier, - STATE(2531), 1, + STATE(2545), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [215681] = 4, + [216160] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -399443,25 +401129,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6098), 1, aux_sym_declaration_repeat1, - [215694] = 4, + [216173] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9263), 1, sym_identifier, - STATE(2211), 1, + STATE(2390), 1, sym_template_method, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [215707] = 4, + [216186] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9265), 1, sym_identifier, STATE(2832), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [215720] = 4, + [216199] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399470,7 +401156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [215733] = 4, + [216212] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399479,7 +401165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [215746] = 4, + [216225] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399488,7 +401174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [215759] = 4, + [216238] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9273), 1, @@ -399497,7 +401183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6024), 1, aux_sym_enumerator_list_repeat1, - [215772] = 4, + [216251] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -399506,7 +401192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [215785] = 4, + [216264] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -399515,7 +401201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [215798] = 4, + [216277] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -399524,16 +401210,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [215811] = 4, + [216290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 1, + ACTIONS(5846), 1, anon_sym_COMMA, ACTIONS(9281), 1, anon_sym_RPAREN, STATE(6029), 1, aux_sym_argument_list_repeat1, - [215824] = 3, + [216303] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9283), 1, @@ -399541,16 +401227,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9285), 2, anon_sym_COMMA, anon_sym_LBRACE, - [215835] = 4, + [216314] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, ACTIONS(9287), 1, anon_sym_constexpr, - STATE(245), 1, + STATE(312), 1, sym_condition_clause, - [215848] = 4, + [216327] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -399559,16 +401245,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [215861] = 4, + [216340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7050), 1, + ACTIONS(7052), 1, anon_sym_COMMA, ACTIONS(9291), 1, anon_sym_RPAREN, STATE(5827), 1, aux_sym_preproc_argument_list_repeat1, - [215874] = 4, + [216353] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -399577,7 +401263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [215887] = 4, + [216366] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, @@ -399586,15 +401272,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6617), 1, sym_enumerator, - [215900] = 3, + [216379] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8858), 1, anon_sym_catch, - STATE(446), 2, + STATE(352), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [215911] = 4, + [216390] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -399603,7 +401289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [215924] = 4, + [216403] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7397), 1, @@ -399612,7 +401298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6054), 1, aux_sym_declaration_repeat1, - [215937] = 4, + [216416] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, @@ -399621,7 +401307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(6040), 1, aux_sym_type_definition_repeat2, - [215950] = 4, + [216429] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399630,25 +401316,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(6066), 1, aux_sym_template_argument_list_repeat1, - [215963] = 4, + [216442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5896), 1, + ACTIONS(5928), 1, anon_sym_COMMA, - ACTIONS(5898), 1, + ACTIONS(5930), 1, anon_sym_RBRACE, STATE(6074), 1, aux_sym_initializer_list_repeat1, - [215976] = 4, + [216455] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9305), 1, sym_identifier, STATE(2832), 1, sym_template_function, - STATE(3284), 1, + STATE(3290), 1, sym_template_type, - [215989] = 4, + [216468] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399657,7 +401343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(6109), 1, aux_sym_template_argument_list_repeat1, - [216002] = 3, + [216481] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9309), 1, @@ -399665,15 +401351,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9311), 2, anon_sym_COMMA, anon_sym_LBRACE, - [216013] = 3, + [216492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3771), 1, + ACTIONS(3727), 1, anon_sym_COLON_COLON, - ACTIONS(5013), 2, + ACTIONS(4948), 2, anon_sym_LPAREN2, anon_sym_LBRACE, - [216024] = 4, + [216503] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399682,7 +401368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [216037] = 4, + [216516] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399691,7 +401377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [216050] = 4, + [216529] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, @@ -399700,7 +401386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(5823), 1, aux_sym_template_argument_list_repeat1, - [216063] = 4, + [216542] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9319), 1, @@ -399709,16 +401395,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(6086), 1, aux_sym_enumerator_list_repeat1, - [216076] = 4, + [216555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 1, + ACTIONS(5846), 1, anon_sym_COMMA, - ACTIONS(5894), 1, + ACTIONS(5950), 1, anon_sym_RPAREN, STATE(6090), 1, aux_sym_argument_list_repeat1, - [216089] = 4, + [216568] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9192), 1, @@ -399727,7 +401413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(6042), 1, aux_sym_preproc_params_repeat1, - [216102] = 4, + [216581] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8779), 1, @@ -399736,6551 +401422,6551 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(5978), 1, aux_sym_throw_specifier_repeat1, - [216115] = 3, + [216594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2641), 1, + STATE(2642), 1, sym_field_declaration_list, - [216125] = 3, + [216604] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(251), 1, anon_sym_LBRACE, - STATE(340), 1, + STATE(337), 1, sym_compound_statement, - [216135] = 3, + [216614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4554), 1, + STATE(4557), 1, sym_field_declaration_list, - [216145] = 3, + [216624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4448), 1, + STATE(4550), 1, sym_field_declaration_list, - [216155] = 3, - ACTIONS(7080), 1, + [216634] = 3, + ACTIONS(7086), 1, sym_comment, ACTIONS(9327), 1, anon_sym_LF, ACTIONS(9329), 1, sym_preproc_arg, - [216165] = 3, + [216644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4556), 1, + STATE(4561), 1, sym_field_declaration_list, - [216175] = 3, + [216654] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9331), 1, sym_identifier, - STATE(4368), 1, + STATE(4366), 1, sym_template_type, - [216185] = 3, + [216664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4552), 1, + STATE(4554), 1, sym_field_declaration_list, - [216195] = 3, + [216674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(4558), 1, - sym_field_declaration_list, - [216205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(4566), 1, - sym_field_declaration_list, - [216215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4562), 1, sym_field_declaration_list, - [216225] = 3, + [216684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2749), 1, - sym_field_declaration_list, - [216235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4567), 1, sym_field_declaration_list, - [216245] = 3, + [216694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, + anon_sym_LBRACE, + STATE(4563), 1, + sym_field_declaration_list, + [216704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2747), 1, + sym_field_declaration_list, + [216714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4568), 1, sym_field_declaration_list, - [216255] = 3, + [216724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6863), 1, + ACTIONS(6895), 1, + anon_sym_LBRACE, + STATE(4569), 1, + sym_field_declaration_list, + [216734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6847), 1, anon_sym_LT, - STATE(1945), 1, + STATE(2035), 1, sym_template_argument_list, - [216265] = 3, - ACTIONS(7080), 1, + [216744] = 3, + ACTIONS(7086), 1, sym_comment, ACTIONS(9333), 1, anon_sym_LF, ACTIONS(9335), 1, sym_preproc_arg, - [216275] = 3, + [216754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(4569), 1, - sym_field_declaration_list, - [216285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(4550), 1, - sym_field_declaration_list, - [216295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4570), 1, sym_field_declaration_list, - [216305] = 3, + [216764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, + anon_sym_LBRACE, + STATE(4552), 1, + sym_field_declaration_list, + [216774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4572), 1, sym_field_declaration_list, - [216315] = 3, + [216784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6895), 1, + anon_sym_LBRACE, + STATE(4573), 1, + sym_field_declaration_list, + [216794] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9337), 1, anon_sym_LT, - STATE(2284), 1, + STATE(2448), 1, sym_template_argument_list, - [216325] = 3, + [216804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4573), 1, + STATE(4574), 1, sym_field_declaration_list, - [216335] = 3, + [216814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4564), 1, + STATE(4565), 1, sym_field_declaration_list, - [216345] = 3, + [216824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4575), 1, sym_field_declaration_list, - [216355] = 3, + [216834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4576), 1, + STATE(4578), 1, sym_field_declaration_list, - [216365] = 3, + [216844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2750), 1, + STATE(2748), 1, sym_field_declaration_list, - [216375] = 3, + [216854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(4577), 1, - sym_field_declaration_list, - [216385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4579), 1, sym_field_declaration_list, - [216395] = 3, + [216864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4580), 1, sym_field_declaration_list, - [216405] = 3, + [216874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(2751), 1, + STATE(4581), 1, sym_field_declaration_list, - [216415] = 3, + [216884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2749), 1, + sym_field_declaration_list, + [216894] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9339), 1, sym_identifier, - STATE(1951), 1, + STATE(2044), 1, sym_template_type, - [216425] = 3, + [216904] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9341), 1, anon_sym_LT, - STATE(2492), 1, + STATE(2554), 1, sym_template_argument_list, - [216435] = 3, + [216914] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9343), 1, anon_sym_LPAREN2, ACTIONS(9345), 1, sym_raw_string_delimiter, - [216445] = 3, + [216924] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9347), 1, anon_sym_LPAREN2, ACTIONS(9349), 1, sym_raw_string_delimiter, - [216455] = 2, - ACTIONS(7080), 1, + [216934] = 2, + ACTIONS(7086), 1, sym_comment, ACTIONS(9351), 2, anon_sym_LF, sym_preproc_arg, - [216463] = 3, + [216942] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9353), 1, anon_sym_LT, - STATE(1956), 1, + STATE(2069), 1, sym_template_argument_list, - [216473] = 3, + [216952] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9355), 1, anon_sym_LPAREN2, ACTIONS(9357), 1, sym_raw_string_delimiter, - [216483] = 3, + [216962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4545), 1, sym_field_declaration_list, - [216493] = 3, + [216972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4544), 1, sym_field_declaration_list, - [216503] = 3, + [216982] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9341), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1823), 1, sym_template_argument_list, - [216513] = 3, + [216992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4542), 1, + STATE(4541), 1, sym_field_declaration_list, - [216523] = 3, + [217002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4540), 1, sym_field_declaration_list, - [216533] = 3, + [217012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4536), 1, + STATE(4535), 1, sym_field_declaration_list, - [216543] = 3, + [217022] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(1008), 1, + STATE(1007), 1, sym_compound_statement, - [216553] = 3, + [217032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4535), 1, + STATE(4534), 1, sym_field_declaration_list, - [216563] = 3, + [217042] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9359), 1, anon_sym_LT, - STATE(1751), 1, + STATE(1525), 1, sym_template_argument_list, - [216573] = 3, + [217052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 1, + ACTIONS(5338), 1, anon_sym_LT, - STATE(3224), 1, + STATE(3243), 1, sym_template_argument_list, - [216583] = 3, + [217062] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8508), 1, anon_sym_LBRACE, STATE(5250), 1, sym_requirement_seq, - [216593] = 3, + [217072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, - STATE(4508), 1, + STATE(4507), 1, sym_field_declaration_list, - [216603] = 3, + [217082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(4482), 1, - sym_field_declaration_list, - [216613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2745), 1, - sym_field_declaration_list, - [216623] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6899), 1, + ACTIONS(6895), 1, anon_sym_LBRACE, STATE(4504), 1, sym_field_declaration_list, - [216633] = 3, + [217092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2747), 1, + STATE(2743), 1, sym_field_declaration_list, - [216643] = 3, + [217102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6832), 1, + ACTIONS(6895), 1, + anon_sym_LBRACE, + STATE(4502), 1, + sym_field_declaration_list, + [217112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2745), 1, + sym_field_declaration_list, + [217122] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6827), 1, anon_sym_LT, - STATE(4355), 1, + STATE(4363), 1, sym_template_argument_list, - [216653] = 3, + [217132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2746), 1, + STATE(2744), 1, sym_field_declaration_list, - [216663] = 3, + [217142] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9361), 1, anon_sym_LPAREN2, ACTIONS(9363), 1, sym_raw_string_delimiter, - [216673] = 3, + [217152] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9365), 1, sym_identifier, STATE(5848), 1, sym_attribute, - [216683] = 3, + [217162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5371), 1, + ACTIONS(5350), 1, anon_sym_LT, - STATE(4094), 1, + STATE(4077), 1, sym_template_argument_list, - [216693] = 3, + [217172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2744), 1, - sym_field_declaration_list, - [216703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2618), 1, - sym_field_declaration_list, - [216713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2591), 1, - sym_field_declaration_list, - [216723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2743), 1, - sym_field_declaration_list, - [216733] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2593), 1, - sym_field_declaration_list, - [216743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2594), 1, - sym_field_declaration_list, - [216753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2595), 1, - sym_field_declaration_list, - [216763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2596), 1, - sym_field_declaration_list, - [216773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2597), 1, - sym_field_declaration_list, - [216783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2598), 1, - sym_field_declaration_list, - [216793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, STATE(2742), 1, sym_field_declaration_list, - [216803] = 3, + [217182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2599), 1, + STATE(2619), 1, sym_field_declaration_list, - [216813] = 3, + [217192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2593), 1, + sym_field_declaration_list, + [217202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, anon_sym_LBRACE, STATE(2741), 1, sym_field_declaration_list, - [216823] = 3, + [217212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6904), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - [216833] = 3, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2594), 1, + sym_field_declaration_list, + [217222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2595), 1, + sym_field_declaration_list, + [217232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2596), 1, + sym_field_declaration_list, + [217242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2597), 1, + sym_field_declaration_list, + [217252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2598), 1, + sym_field_declaration_list, + [217262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2599), 1, + sym_field_declaration_list, + [217272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2889), 1, + sym_field_declaration_list, + [217282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4159), 1, anon_sym_LBRACE, STATE(2600), 1, sym_field_declaration_list, - [216843] = 3, + [217292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2704), 1, + sym_field_declaration_list, + [217302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6905), 1, + anon_sym_LT, + STATE(2069), 1, + sym_template_argument_list, + [217312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4159), 1, anon_sym_LBRACE, STATE(2601), 1, sym_field_declaration_list, - [216853] = 3, + [217322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, STATE(2602), 1, sym_field_declaration_list, - [216863] = 3, + [217332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2603), 1, + sym_field_declaration_list, + [217342] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9359), 1, anon_sym_LT, - STATE(1752), 1, + STATE(1710), 1, sym_template_argument_list, - [216873] = 3, + [217352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2603), 1, + STATE(2604), 1, sym_field_declaration_list, - [216883] = 3, + [217362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2799), 1, + STATE(2705), 1, sym_field_declaration_list, - [216893] = 3, + [217372] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7669), 1, anon_sym_LBRACE, - STATE(2204), 1, + STATE(2098), 1, sym_compound_statement, - [216903] = 3, + [217382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(2704), 1, + STATE(2706), 1, sym_field_declaration_list, - [216913] = 3, + [217392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2605), 1, + STATE(2606), 1, sym_field_declaration_list, - [216923] = 3, + [217402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2607), 1, - sym_field_declaration_list, - [216933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, STATE(2608), 1, sym_field_declaration_list, - [216943] = 3, + [217412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, STATE(2609), 1, sym_field_declaration_list, - [216953] = 3, + [217422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2611), 1, + STATE(2610), 1, sym_field_declaration_list, - [216963] = 3, + [217432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - STATE(6826), 1, - sym_argument_list, - [216973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, STATE(2612), 1, sym_field_declaration_list, - [216983] = 3, - ACTIONS(7080), 1, + [217442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + STATE(6826), 1, + sym_argument_list, + [217452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2613), 1, + sym_field_declaration_list, + [217462] = 3, + ACTIONS(7086), 1, sym_comment, ACTIONS(9367), 1, anon_sym_LF, ACTIONS(9369), 1, sym_preproc_arg, - [216993] = 3, + [217472] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(313), 1, sym_condition_clause, - [217003] = 3, + [217482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2613), 1, + STATE(2614), 1, sym_field_declaration_list, - [217013] = 3, + [217492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2617), 1, + STATE(2618), 1, sym_field_declaration_list, - [217023] = 3, + [217502] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9353), 1, anon_sym_LT, - STATE(1847), 1, + STATE(1845), 1, sym_template_argument_list, - [217033] = 3, + [217512] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9371), 1, sym_identifier, - STATE(3228), 1, + STATE(3244), 1, sym_template_type, - [217043] = 3, + [217522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5371), 1, + ACTIONS(5350), 1, anon_sym_LT, STATE(5033), 1, sym_template_argument_list, - [217053] = 3, + [217532] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9373), 1, anon_sym_LPAREN2, ACTIONS(9375), 1, sym_raw_string_delimiter, - [217063] = 3, + [217542] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, - STATE(195), 1, + STATE(244), 1, sym_condition_clause, - [217073] = 3, + [217552] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1517), 1, anon_sym_LBRACE, - STATE(2466), 1, + STATE(2467), 1, sym_initializer_list, - [217083] = 3, + [217562] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9377), 1, sym_identifier, - STATE(2185), 1, + STATE(2191), 1, sym_template_type, - [217093] = 3, + [217572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2622), 1, - sym_field_declaration_list, - [217103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, STATE(2623), 1, sym_field_declaration_list, - [217113] = 3, + [217582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2626), 1, + STATE(2625), 1, sym_field_declaration_list, - [217123] = 3, + [217592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, STATE(2627), 1, sym_field_declaration_list, - [217133] = 3, + [217602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2630), 1, + STATE(2629), 1, sym_field_declaration_list, - [217143] = 3, + [217612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2631), 1, + STATE(2658), 1, sym_field_declaration_list, - [217153] = 3, + [217622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5448), 1, + ACTIONS(4159), 1, + anon_sym_LBRACE, + STATE(2632), 1, + sym_field_declaration_list, + [217632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5441), 1, anon_sym_LT, - STATE(4124), 1, + STATE(4089), 1, sym_template_argument_list, - [217163] = 3, + [217642] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9379), 1, sym_identifier, - STATE(2211), 1, + STATE(2390), 1, sym_template_method, - [217173] = 3, + [217652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 1, + ACTIONS(4942), 1, anon_sym_LT, - STATE(2930), 1, + STATE(2719), 1, sym_template_argument_list, - [217183] = 3, + [217662] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8698), 1, anon_sym_LBRACE, STATE(5012), 1, sym_requirement_seq, - [217193] = 3, + [217672] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9341), 1, anon_sym_LT, - STATE(2729), 1, + STATE(2733), 1, sym_template_argument_list, - [217203] = 3, + [217682] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(536), 1, anon_sym_LBRACE, - STATE(538), 1, + STATE(524), 1, sym_compound_statement, - [217213] = 3, + [217692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2639), 1, + STATE(2640), 1, sym_field_declaration_list, - [217223] = 3, + [217702] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, STATE(6557), 1, sym_condition_clause, - [217233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8770), 1, - anon_sym_LPAREN2, - STATE(201), 1, - sym_condition_clause, - [217243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5448), 1, - anon_sym_LT, - STATE(3299), 1, - sym_template_argument_list, - [217253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(2644), 1, - sym_field_declaration_list, - [217263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2924), 1, - sym_field_declaration_list, - [217273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2913), 1, - sym_field_declaration_list, - [217283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9337), 1, - anon_sym_LT, - STATE(1524), 1, - sym_template_argument_list, - [217293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2918), 1, - sym_field_declaration_list, - [217303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8770), 1, - anon_sym_LPAREN2, - STATE(259), 1, - sym_condition_clause, - [217313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - anon_sym_LBRACE, - STATE(483), 1, - sym_compound_statement, - [217323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2708), 1, - sym_field_declaration_list, - [217333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2331), 1, - sym_field_declaration_list, - [217343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2330), 1, - sym_field_declaration_list, - [217353] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2329), 1, - sym_field_declaration_list, - [217363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2320), 1, - sym_field_declaration_list, - [217373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5448), 1, - anon_sym_LT, - STATE(5033), 1, - sym_template_argument_list, - [217383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2316), 1, - sym_field_declaration_list, - [217393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2303), 1, - sym_field_declaration_list, - [217403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9353), 1, - anon_sym_LT, - STATE(2828), 1, - sym_template_argument_list, - [217413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2281), 1, - sym_field_declaration_list, - [217423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2208), 1, - sym_field_declaration_list, - [217433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9359), 1, - anon_sym_LT, - STATE(1754), 1, - sym_template_argument_list, - [217443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5371), 1, - anon_sym_LT, - STATE(3902), 1, - sym_template_argument_list, - [217453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2209), 1, - sym_field_declaration_list, - [217463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2711), 1, - sym_field_declaration_list, - [217473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6956), 1, - anon_sym_LBRACE, - STATE(2551), 1, - sym_requirement_seq, - [217483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2712), 1, - sym_field_declaration_list, - [217493] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - anon_sym_LBRACE, - STATE(497), 1, - sym_compound_statement, - [217503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2212), 1, - sym_field_declaration_list, - [217513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9365), 1, - sym_identifier, - STATE(6036), 1, - sym_attribute, - [217523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2216), 1, - sym_field_declaration_list, - [217533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8770), 1, - anon_sym_LPAREN2, - STATE(6513), 1, - sym_condition_clause, - [217543] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2218), 1, - sym_field_declaration_list, - [217553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8770), 1, - anon_sym_LPAREN2, - STATE(174), 1, - sym_condition_clause, - [217563] = 3, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9381), 1, - anon_sym_LF, - ACTIONS(9383), 1, - sym_preproc_arg, - [217573] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9385), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [217581] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5804), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [217589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(6078), 1, - sym_compound_statement, - [217599] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2713), 1, - sym_field_declaration_list, - [217609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7605), 1, - anon_sym_LBRACE, - STATE(1978), 1, - sym_compound_statement, - [217619] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3513), 1, - sym_field_declaration_list, - [217629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2260), 1, - sym_field_declaration_list, - [217639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9387), 1, - anon_sym_LT, - STATE(1945), 1, - sym_template_argument_list, - [217649] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2276), 1, - sym_field_declaration_list, - [217659] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2205), 1, - sym_field_declaration_list, - [217669] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2289), 1, - sym_field_declaration_list, - [217679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9389), 1, - sym_identifier, - STATE(3284), 1, - sym_template_type, - [217689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2304), 1, - sym_field_declaration_list, - [217699] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2306), 1, - sym_field_declaration_list, - [217709] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3489), 1, - sym_field_declaration_list, - [217719] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3494), 1, - sym_field_declaration_list, - [217729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2239), 1, - sym_field_declaration_list, - [217739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2332), 1, - sym_field_declaration_list, - [217749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2336), 1, - sym_field_declaration_list, - [217759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2716), 1, - sym_field_declaration_list, - [217769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5412), 1, - anon_sym_LPAREN2, - STATE(6653), 1, - sym_argument_list, - [217779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3497), 1, - sym_field_declaration_list, - [217789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7669), 1, - anon_sym_LBRACE, - STATE(2354), 1, - sym_compound_statement, - [217799] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2717), 1, - sym_field_declaration_list, - [217809] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5448), 1, - anon_sym_LT, - STATE(1827), 1, - sym_template_argument_list, - [217819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3499), 1, - sym_field_declaration_list, - [217829] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2718), 1, - sym_field_declaration_list, - [217839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(6077), 1, - sym_compound_statement, - [217849] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_LPAREN2, - STATE(3052), 1, - sym_argument_list, - [217859] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2923), 1, - sym_field_declaration_list, - [217869] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9391), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [217877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2900), 1, - sym_field_declaration_list, - [217887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8770), 1, - anon_sym_LPAREN2, - STATE(181), 1, - sym_condition_clause, - [217897] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2899), 1, - sym_field_declaration_list, - [217907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_LBRACE, - STATE(3103), 1, - sym_initializer_list, - [217917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2217), 1, - sym_field_declaration_list, - [217927] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2220), 1, - sym_field_declaration_list, - [217937] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2222), 1, - sym_field_declaration_list, - [217947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2223), 1, - sym_field_declaration_list, - [217957] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2225), 1, - sym_field_declaration_list, - [217967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2226), 1, - sym_field_declaration_list, - [217977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9393), 1, - anon_sym_default, - ACTIONS(9395), 1, - anon_sym_delete, - [217987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3539), 1, - sym_field_declaration_list, - [217997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2895), 1, - sym_field_declaration_list, - [218007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6904), 1, - anon_sym_LT, - STATE(2824), 1, - sym_template_argument_list, - [218017] = 3, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9397), 1, - anon_sym_LF, - ACTIONS(9399), 1, - sym_preproc_arg, - [218027] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2800), 1, - sym_field_declaration_list, - [218037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2721), 1, - sym_field_declaration_list, - [218047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7669), 1, - anon_sym_LBRACE, - STATE(2349), 1, - sym_compound_statement, - [218057] = 3, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9401), 1, - anon_sym_LF, - ACTIONS(9403), 1, - sym_preproc_arg, - [218067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(6034), 1, - sym_compound_statement, - [218077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8564), 1, - anon_sym_LBRACE, - STATE(1940), 1, - sym_requirement_seq, - [218087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2722), 1, - sym_field_declaration_list, - [218097] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9064), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [218105] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9405), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [218113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9365), 1, - sym_identifier, - STATE(6400), 1, - sym_attribute, - [218123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9407), 1, - anon_sym_LPAREN2, - ACTIONS(9409), 1, - sym_raw_string_delimiter, - [218133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2428), 1, - sym_field_declaration_list, - [218143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3506), 1, - sym_field_declaration_list, - [218153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2411), 1, - sym_field_declaration_list, - [218163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_field_declaration_list, - [218173] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9411), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [218181] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9413), 1, - sym_identifier, - STATE(2984), 1, - sym_template_method, - [218191] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3507), 1, - sym_field_declaration_list, - [218201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9415), 1, - anon_sym_LT, - STATE(2184), 1, - sym_template_argument_list, - [218211] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - anon_sym_LBRACE, - STATE(530), 1, - sym_compound_statement, - [218221] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3511), 1, - sym_field_declaration_list, - [218231] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2922), 1, - sym_field_declaration_list, - [218241] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2884), 1, - sym_field_declaration_list, - [218251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9417), 1, - sym_identifier, - STATE(2974), 1, - sym_template_type, - [218261] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2883), 1, - sym_field_declaration_list, - [218271] = 3, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9419), 1, - anon_sym_LF, - ACTIONS(9421), 1, - sym_preproc_arg, - [218281] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2875), 1, - sym_field_declaration_list, - [218291] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2874), 1, - sym_field_declaration_list, - [218301] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2645), 1, - anon_sym_while, - ACTIONS(9423), 1, - anon_sym_else, - [218311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9425), 1, - anon_sym_LPAREN2, - STATE(7071), 1, - sym_parenthesized_expression, - [218321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2872), 1, - sym_field_declaration_list, - [218331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3156), 1, - sym_field_declaration_list, - [218341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2861), 1, - sym_field_declaration_list, - [218351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2860), 1, - sym_field_declaration_list, - [218361] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7348), 1, - anon_sym_LPAREN2, - STATE(6223), 1, - sym_parameter_list, - [218371] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3157), 1, - sym_field_declaration_list, - [218381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3158), 1, - sym_field_declaration_list, - [218391] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2858), 1, - sym_field_declaration_list, - [218401] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9427), 1, - sym_identifier, - ACTIONS(9429), 1, - anon_sym_LPAREN2, - [218411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3159), 1, - sym_field_declaration_list, - [218421] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2856), 1, - sym_field_declaration_list, - [218431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(4553), 1, - sym_field_declaration_list, - [218441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3160), 1, - sym_field_declaration_list, - [218451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8496), 1, - sym_identifier, - STATE(3284), 1, - sym_template_type, - [218461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3161), 1, - sym_field_declaration_list, - [218471] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9353), 1, - anon_sym_LT, - STATE(3008), 1, - sym_template_argument_list, - [218481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3538), 1, - sym_field_declaration_list, - [218491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(6069), 1, - sym_compound_statement, - [218501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3162), 1, - sym_field_declaration_list, - [218511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3163), 1, - sym_field_declaration_list, - [218521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3164), 1, - sym_field_declaration_list, - [218531] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3165), 1, - sym_field_declaration_list, - [218541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3166), 1, - sym_field_declaration_list, - [218551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3169), 1, - sym_field_declaration_list, - [218561] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8777), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [218569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN2, - STATE(2577), 1, - sym_argument_list, - [218579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3534), 1, - sym_field_declaration_list, - [218589] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8764), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [218597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(536), 1, - anon_sym_LBRACE, - STATE(1032), 1, - sym_compound_statement, - [218607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9337), 1, - anon_sym_LT, - STATE(1811), 1, - sym_template_argument_list, - [218617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1363), 1, - anon_sym_LBRACE, - STATE(1107), 1, - sym_compound_statement, - [218627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_LBRACE, - STATE(3527), 1, - sym_initializer_list, - [218637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2854), 1, - sym_field_declaration_list, - [218647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3177), 1, - sym_field_declaration_list, - [218657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3203), 1, - sym_field_declaration_list, - [218667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3214), 1, - sym_field_declaration_list, - [218677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3147), 1, - sym_field_declaration_list, - [218687] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3212), 1, - sym_field_declaration_list, - [218697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2853), 1, - sym_field_declaration_list, - [218707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2851), 1, - sym_field_declaration_list, - [218717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2401), 1, - anon_sym_while, - ACTIONS(9431), 1, - anon_sym_else, - [218727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3211), 1, - sym_field_declaration_list, - [218737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3210), 1, - sym_field_declaration_list, - [218747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2848), 1, - sym_field_declaration_list, - [218757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3208), 1, - sym_field_declaration_list, - [218767] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3501), 1, - sym_field_declaration_list, - [218777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2842), 1, - sym_field_declaration_list, - [218787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3207), 1, - sym_field_declaration_list, - [218797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2838), 1, - sym_field_declaration_list, - [218807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7605), 1, - anon_sym_LBRACE, - STATE(2090), 1, - sym_compound_statement, - [218817] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5448), 1, - anon_sym_LT, - STATE(3902), 1, - sym_template_argument_list, - [218827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9433), 1, - sym_identifier, - ACTIONS(9435), 1, - anon_sym_LPAREN2, - [218837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2835), 1, - sym_field_declaration_list, - [218847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2830), 1, - sym_field_declaration_list, - [218857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9437), 1, - anon_sym_LT, - STATE(2574), 1, - sym_template_argument_list, - [218867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9439), 1, - sym_identifier, - STATE(2211), 1, - sym_template_method, - [218877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8478), 1, - sym_identifier, - STATE(6617), 1, - sym_enumerator, - [218887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9441), 1, - sym_identifier, - STATE(2727), 1, - sym_template_method, - [218897] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9443), 2, - anon_sym_LF, - sym_preproc_arg, - [218905] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8754), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [218913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2896), 1, - sym_field_declaration_list, - [218923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2793), 1, - sym_field_declaration_list, - [218933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9445), 1, - sym_identifier, - STATE(2254), 1, - sym_template_type, - [218943] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2792), 1, - sym_field_declaration_list, - [218953] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9015), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [218961] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5448), 1, - anon_sym_LT, - STATE(6106), 1, - sym_template_argument_list, - [218971] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9447), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [218979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9053), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [218987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3202), 1, - sym_field_declaration_list, - [218997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2758), 1, - sym_field_declaration_list, - [219007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3201), 1, - sym_field_declaration_list, - [219017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3199), 1, - sym_field_declaration_list, - [219027] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3198), 1, - sym_field_declaration_list, - [219037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3196), 1, - sym_field_declaration_list, - [219047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3195), 1, - sym_field_declaration_list, - [219057] = 3, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9449), 1, - anon_sym_LF, - ACTIONS(9451), 1, - sym_preproc_arg, - [219067] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9453), 2, - anon_sym_COMMA, - anon_sym_GT2, - [219075] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8735), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [219083] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9455), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [219091] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(2846), 1, - sym_field_declaration_list, - [219101] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8770), 1, - anon_sym_LPAREN2, - STATE(266), 1, - sym_condition_clause, - [219111] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7348), 1, - anon_sym_LPAREN2, - STATE(6192), 1, - sym_parameter_list, - [219121] = 3, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9457), 1, - anon_sym_LF, - ACTIONS(9459), 1, - sym_preproc_arg, - [219131] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9341), 1, - anon_sym_LT, - STATE(1923), 1, - sym_template_argument_list, - [219141] = 3, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9461), 1, - anon_sym_LF, - ACTIONS(9463), 1, - sym_preproc_arg, - [219151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(5926), 1, - sym_compound_statement, - [219161] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9465), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [219169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(535), 1, - sym_compound_statement, - [219179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(5870), 1, - sym_compound_statement, - [219189] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1557), 1, - anon_sym_LBRACE, - STATE(2904), 1, - sym_initializer_list, - [219199] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9467), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [219207] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7605), 1, - anon_sym_LBRACE, - STATE(2058), 1, - sym_compound_statement, - [219217] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - STATE(2985), 1, - sym_requirement_seq, - [219227] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8818), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [219235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7348), 1, - anon_sym_LPAREN2, - STATE(6264), 1, - sym_parameter_list, - [219245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9469), 1, - sym_identifier, - STATE(1878), 1, - sym_template_type, - [219255] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3449), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [219263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9471), 1, - anon_sym_default, - ACTIONS(9473), 1, - anon_sym_delete, - [219273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(5847), 1, - sym_compound_statement, - [219283] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9475), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [219291] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5906), 1, - anon_sym_RBRACK, - ACTIONS(9477), 1, - anon_sym_COMMA, - [219301] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(5882), 1, - sym_compound_statement, - [219311] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8835), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [219319] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7348), 1, - anon_sym_LPAREN2, - STATE(6366), 1, - sym_parameter_list, - [219329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3186), 1, - sym_field_declaration_list, - [219339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2738), 1, - sym_field_declaration_list, - [219349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3976), 1, - anon_sym_LBRACE, - STATE(2002), 1, - sym_field_declaration_list, - [219359] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3184), 1, - sym_field_declaration_list, - [219369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LBRACE, - STATE(3182), 1, - sym_field_declaration_list, - [219379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3976), 1, - anon_sym_LBRACE, - STATE(2015), 1, - sym_field_declaration_list, - [219389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LPAREN2, - STATE(2866), 1, - sym_argument_list, - [219399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8770), 1, - anon_sym_LPAREN2, - STATE(224), 1, - sym_condition_clause, - [219409] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(576), 1, - anon_sym_LBRACE, - STATE(624), 1, - sym_compound_statement, - [219419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9479), 1, - anon_sym_default, - ACTIONS(9481), 1, - anon_sym_delete, - [219429] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9483), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [219437] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8854), 2, - anon_sym_COMMA, - anon_sym_GT2, - [219445] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(5903), 1, - sym_compound_statement, - [219455] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9485), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [219463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9487), 1, - sym_identifier, - STATE(2825), 1, - sym_template_type, - [219473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9489), 1, - sym_identifier, - ACTIONS(9491), 1, - anon_sym_inline, - [219483] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7715), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [219491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1669), 1, - anon_sym_LBRACE, - STATE(3013), 1, - sym_initializer_list, - [219501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7348), 1, - anon_sym_LPAREN2, - STATE(6423), 1, - sym_parameter_list, - [219511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9493), 1, - sym_identifier, - STATE(2254), 1, - sym_template_type, - [219521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2739), 1, - sym_field_declaration_list, - [219531] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9495), 2, - anon_sym_COMMA, - anon_sym_GT2, - [219539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2752), 1, - sym_field_declaration_list, - [219549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_LBRACE, - STATE(2734), 1, - sym_requirement_seq, - [219559] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2753), 1, - sym_field_declaration_list, - [219569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(6060), 1, - sym_compound_statement, - [219579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3517), 1, - sym_field_declaration_list, - [219589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7639), 1, - anon_sym_LBRACE, - STATE(2405), 1, - sym_compound_statement, - [219599] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9497), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [219607] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9499), 2, - anon_sym_COMMA, - anon_sym_GT2, - [219615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7348), 1, - anon_sym_LPAREN2, - STATE(6492), 1, - sym_parameter_list, - [219625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4032), 1, - sym_field_declaration_list, - [219635] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(3992), 1, - sym_field_declaration_list, - [219645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(3993), 1, - sym_field_declaration_list, - [219655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2809), 1, - sym_field_declaration_list, - [219665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3476), 1, - sym_field_declaration_list, - [219675] = 3, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9501), 1, - anon_sym_LF, - ACTIONS(9503), 1, - sym_preproc_arg, - [219685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9505), 2, - anon_sym_COMMA, - anon_sym_GT2, - [219693] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5818), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [219701] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4044), 1, - sym_field_declaration_list, - [219711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4055), 1, - sym_field_declaration_list, - [219721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4039), 1, - sym_field_declaration_list, - [219731] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4052), 1, - sym_field_declaration_list, - [219741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(3990), 1, - sym_field_declaration_list, - [219751] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4031), 1, - sym_field_declaration_list, - [219761] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4029), 1, - sym_field_declaration_list, - [219771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4028), 1, - sym_field_declaration_list, - [219781] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4027), 1, - sym_field_declaration_list, - [219791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2806), 1, - sym_field_declaration_list, - [219801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4021), 1, - sym_field_declaration_list, - [219811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9425), 1, - anon_sym_LPAREN2, - STATE(6745), 1, - sym_parenthesized_expression, - [219821] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9415), 1, - anon_sym_LT, - STATE(1882), 1, - sym_template_argument_list, - [219831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7639), 1, - anon_sym_LBRACE, - STATE(2190), 1, - sym_compound_statement, - [219841] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2757), 1, - sym_field_declaration_list, - [219851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3477), 1, - sym_field_declaration_list, - [219861] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3976), 1, - anon_sym_LBRACE, - STATE(2156), 1, - sym_field_declaration_list, - [219871] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4018), 1, - sym_field_declaration_list, - [219881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4016), 1, - sym_field_declaration_list, - [219891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4015), 1, - sym_field_declaration_list, - [219901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4013), 1, - sym_field_declaration_list, - [219911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4011), 1, - sym_field_declaration_list, - [219921] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4010), 1, - sym_field_declaration_list, - [219931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4007), 1, - sym_field_declaration_list, - [219941] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4001), 1, - sym_field_declaration_list, - [219951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_LBRACE, - STATE(4000), 1, - sym_field_declaration_list, - [219961] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACE, - STATE(3431), 1, - sym_field_declaration_list, - [219971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(576), 1, - anon_sym_LBRACE, - STATE(956), 1, - sym_compound_statement, - [219981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5448), 1, - anon_sym_LT, - STATE(2175), 1, - sym_template_argument_list, - [219991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_LBRACE, - STATE(2803), 1, - sym_field_declaration_list, - [220001] = 3, + [217712] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, STATE(204), 1, sym_condition_clause, - [220011] = 3, + [217722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(5441), 1, + anon_sym_LT, + STATE(3282), 1, + sym_template_argument_list, + [217732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4159), 1, anon_sym_LBRACE, - STATE(2141), 1, + STATE(2644), 1, sym_field_declaration_list, - [220021] = 3, + [217742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2913), 1, + sym_field_declaration_list, + [217752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2926), 1, + sym_field_declaration_list, + [217762] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9337), 1, + anon_sym_LT, + STATE(1489), 1, + sym_template_argument_list, + [217772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2938), 1, + sym_field_declaration_list, + [217782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(297), 1, + sym_condition_clause, + [217792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + STATE(447), 1, + sym_compound_statement, + [217802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2711), 1, + sym_field_declaration_list, + [217812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2363), 1, + sym_field_declaration_list, + [217822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2362), 1, + sym_field_declaration_list, + [217832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2389), 1, + sym_field_declaration_list, + [217842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2465), 1, + sym_field_declaration_list, + [217852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5441), 1, + anon_sym_LT, + STATE(5033), 1, + sym_template_argument_list, + [217862] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2409), 1, + sym_field_declaration_list, + [217872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2377), 1, + sym_field_declaration_list, + [217882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9353), 1, + anon_sym_LT, + STATE(2859), 1, + sym_template_argument_list, + [217892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2379), 1, + sym_field_declaration_list, + [217902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2380), 1, + sym_field_declaration_list, + [217912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9359), 1, + anon_sym_LT, + STATE(1754), 1, + sym_template_argument_list, + [217922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5350), 1, + anon_sym_LT, + STATE(3795), 1, + sym_template_argument_list, + [217932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2384), 1, + sym_field_declaration_list, + [217942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2713), 1, + sym_field_declaration_list, + [217952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7022), 1, + anon_sym_LBRACE, + STATE(2521), 1, + sym_requirement_seq, + [217962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2714), 1, + sym_field_declaration_list, + [217972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + STATE(504), 1, + sym_compound_statement, + [217982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2387), 1, + sym_field_declaration_list, + [217992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9365), 1, + sym_identifier, + STATE(6036), 1, + sym_attribute, + [218002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2391), 1, + sym_field_declaration_list, + [218012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(6513), 1, + sym_condition_clause, + [218022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2392), 1, + sym_field_declaration_list, + [218032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(191), 1, + sym_condition_clause, + [218042] = 3, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9381), 1, + anon_sym_LF, + ACTIONS(9383), 1, + sym_preproc_arg, + [218052] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9385), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [218060] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5836), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [218068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6078), 1, + sym_compound_statement, + [218078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2716), 1, + sym_field_declaration_list, + [218088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7605), 1, + anon_sym_LBRACE, + STATE(1943), 1, + sym_compound_statement, + [218098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3498), 1, + sym_field_declaration_list, + [218108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2401), 1, + sym_field_declaration_list, + [218118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9387), 1, + anon_sym_LT, + STATE(2035), 1, + sym_template_argument_list, + [218128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2381), 1, + sym_field_declaration_list, + [218138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2416), 1, + sym_field_declaration_list, + [218148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2423), 1, + sym_field_declaration_list, + [218158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9389), 1, + sym_identifier, + STATE(3290), 1, + sym_template_type, + [218168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2433), 1, + sym_field_declaration_list, + [218178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2435), 1, + sym_field_declaration_list, + [218188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3494), 1, + sym_field_declaration_list, + [218198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3496), 1, + sym_field_declaration_list, + [218208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2444), 1, + sym_field_declaration_list, + [218218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2449), 1, + sym_field_declaration_list, + [218228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2451), 1, + sym_field_declaration_list, + [218238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2718), 1, + sym_field_declaration_list, + [218248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5424), 1, + anon_sym_LPAREN2, + STATE(6653), 1, + sym_argument_list, + [218258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3500), 1, + sym_field_declaration_list, + [218268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7669), 1, + anon_sym_LBRACE, + STATE(2209), 1, + sym_compound_statement, + [218278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2720), 1, + sym_field_declaration_list, + [218288] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5441), 1, + anon_sym_LT, + STATE(1837), 1, + sym_template_argument_list, + [218298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3501), 1, + sym_field_declaration_list, + [218308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2721), 1, + sym_field_declaration_list, + [218318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6077), 1, + sym_compound_statement, + [218328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LPAREN2, + STATE(3052), 1, + sym_argument_list, + [218338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2925), 1, + sym_field_declaration_list, + [218348] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9391), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [218356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2923), 1, + sym_field_declaration_list, + [218366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(183), 1, + sym_condition_clause, + [218376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2921), 1, + sym_field_declaration_list, + [218386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_LBRACE, + STATE(3122), 1, + sym_initializer_list, + [218396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2443), 1, + sym_field_declaration_list, + [218406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2442), 1, + sym_field_declaration_list, + [218416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2438), 1, + sym_field_declaration_list, + [218426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2437), 1, + sym_field_declaration_list, + [218436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2434), 1, + sym_field_declaration_list, + [218446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2430), 1, + sym_field_declaration_list, + [218456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_default, + ACTIONS(9395), 1, + anon_sym_delete, + [218466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3462), 1, + sym_field_declaration_list, + [218476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2917), 1, + sym_field_declaration_list, + [218486] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6905), 1, + anon_sym_LT, + STATE(2853), 1, + sym_template_argument_list, + [218496] = 3, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9397), 1, + anon_sym_LF, + ACTIONS(9399), 1, + sym_preproc_arg, + [218506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2840), 1, + sym_field_declaration_list, + [218516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2723), 1, + sym_field_declaration_list, + [218526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7669), 1, + anon_sym_LBRACE, + STATE(2262), 1, + sym_compound_statement, + [218536] = 3, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9401), 1, + anon_sym_LF, + ACTIONS(9403), 1, + sym_preproc_arg, + [218546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6034), 1, + sym_compound_statement, + [218556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8564), 1, + anon_sym_LBRACE, + STATE(1908), 1, + sym_requirement_seq, + [218566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2724), 1, + sym_field_declaration_list, + [218576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9064), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [218584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9405), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [218592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9365), 1, + sym_identifier, + STATE(6400), 1, + sym_attribute, + [218602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9407), 1, + anon_sym_LPAREN2, + ACTIONS(9409), 1, + sym_raw_string_delimiter, + [218612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2400), 1, + sym_field_declaration_list, + [218622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3508), 1, + sym_field_declaration_list, + [218632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2361), 1, + sym_field_declaration_list, + [218642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LBRACE, + STATE(2367), 1, + sym_field_declaration_list, + [218652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9411), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [218660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9413), 1, + sym_identifier, + STATE(2990), 1, + sym_template_method, + [218670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3506), 1, + sym_field_declaration_list, + [218680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9415), 1, + anon_sym_LT, + STATE(2224), 1, + sym_template_argument_list, + [218690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + STATE(484), 1, + sym_compound_statement, + [218700] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3502), 1, + sym_field_declaration_list, + [218710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2927), 1, + sym_field_declaration_list, + [218720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2907), 1, + sym_field_declaration_list, + [218730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9417), 1, + sym_identifier, + STATE(2838), 1, + sym_template_type, + [218740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2903), 1, + sym_field_declaration_list, + [218750] = 3, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9419), 1, + anon_sym_LF, + ACTIONS(9421), 1, + sym_preproc_arg, + [218760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2901), 1, + sym_field_declaration_list, + [218770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2900), 1, + sym_field_declaration_list, + [218780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2541), 1, + anon_sym_while, + ACTIONS(9423), 1, + anon_sym_else, + [218790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9425), 1, + anon_sym_LPAREN2, + STATE(7071), 1, + sym_parenthesized_expression, + [218800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2899), 1, + sym_field_declaration_list, + [218810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3159), 1, + sym_field_declaration_list, + [218820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2897), 1, + sym_field_declaration_list, + [218830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2896), 1, + sym_field_declaration_list, + [218840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(6223), 1, + sym_parameter_list, + [218850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3158), 1, + sym_field_declaration_list, + [218860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3153), 1, + sym_field_declaration_list, + [218870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2895), 1, + sym_field_declaration_list, + [218880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9427), 1, + sym_identifier, + ACTIONS(9429), 1, + anon_sym_LPAREN2, + [218890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3160), 1, + sym_field_declaration_list, + [218900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2893), 1, + sym_field_declaration_list, + [218910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6895), 1, + anon_sym_LBRACE, + STATE(4555), 1, + sym_field_declaration_list, + [218920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3162), 1, + sym_field_declaration_list, + [218930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8496), 1, + sym_identifier, + STATE(3290), 1, + sym_template_type, + [218940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3171), 1, + sym_field_declaration_list, + [218950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9353), 1, + anon_sym_LT, + STATE(3026), 1, + sym_template_argument_list, + [218960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3461), 1, + sym_field_declaration_list, + [218970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6069), 1, + sym_compound_statement, + [218980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3152), 1, + sym_field_declaration_list, + [218990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3174), 1, + sym_field_declaration_list, + [219000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3176), 1, + sym_field_declaration_list, + [219010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3179), 1, + sym_field_declaration_list, + [219020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3180), 1, + sym_field_declaration_list, + [219030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3182), 1, + sym_field_declaration_list, + [219040] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8777), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [219048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LPAREN2, + STATE(2549), 1, + sym_argument_list, + [219058] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3460), 1, + sym_field_declaration_list, + [219068] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8764), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [219076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(536), 1, + anon_sym_LBRACE, + STATE(1012), 1, + sym_compound_statement, + [219086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9337), 1, + anon_sym_LT, + STATE(1803), 1, + sym_template_argument_list, + [219096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1312), 1, + anon_sym_LBRACE, + STATE(1104), 1, + sym_compound_statement, + [219106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + STATE(3543), 1, + sym_initializer_list, + [219116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2891), 1, + sym_field_declaration_list, + [219126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3187), 1, + sym_field_declaration_list, + [219136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3191), 1, + sym_field_declaration_list, + [219146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3192), 1, + sym_field_declaration_list, + [219156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3193), 1, + sym_field_declaration_list, + [219166] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3199), 1, + sym_field_declaration_list, + [219176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2703), 1, + sym_field_declaration_list, + [219186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2887), 1, + sym_field_declaration_list, + [219196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2421), 1, + anon_sym_while, + ACTIONS(9431), 1, + anon_sym_else, + [219206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3206), 1, + sym_field_declaration_list, + [219216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3207), 1, + sym_field_declaration_list, + [219226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2885), 1, + sym_field_declaration_list, + [219236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3211), 1, + sym_field_declaration_list, + [219246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3503), 1, + sym_field_declaration_list, + [219256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2876), 1, + sym_field_declaration_list, + [219266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3212), 1, + sym_field_declaration_list, + [219276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2874), 1, + sym_field_declaration_list, + [219286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7605), 1, + anon_sym_LBRACE, + STATE(1983), 1, + sym_compound_statement, + [219296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5441), 1, + anon_sym_LT, + STATE(3795), 1, + sym_template_argument_list, + [219306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9433), 1, + sym_identifier, + ACTIONS(9435), 1, + anon_sym_LPAREN2, + [219316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2873), 1, + sym_field_declaration_list, + [219326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2863), 1, + sym_field_declaration_list, + [219336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9437), 1, + anon_sym_LT, + STATE(2546), 1, + sym_template_argument_list, + [219346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9439), 1, + sym_identifier, + STATE(2390), 1, + sym_template_method, + [219356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + STATE(6617), 1, + sym_enumerator, + [219366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9441), 1, + sym_identifier, + STATE(2730), 1, + sym_template_method, + [219376] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9443), 2, + anon_sym_LF, + sym_preproc_arg, + [219384] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8754), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [219392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2710), 1, + sym_field_declaration_list, + [219402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2830), 1, + sym_field_declaration_list, + [219412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9445), 1, + sym_identifier, + STATE(2452), 1, + sym_template_type, + [219422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2826), 1, + sym_field_declaration_list, + [219432] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9015), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [219440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5441), 1, + anon_sym_LT, + STATE(6106), 1, + sym_template_argument_list, + [219450] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9447), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [219458] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9053), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [219466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3205), 1, + sym_field_declaration_list, + [219476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2760), 1, + sym_field_declaration_list, + [219486] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3204), 1, + sym_field_declaration_list, + [219496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3202), 1, + sym_field_declaration_list, + [219506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3201), 1, + sym_field_declaration_list, + [219516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3198), 1, + sym_field_declaration_list, + [219526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3196), 1, + sym_field_declaration_list, + [219536] = 3, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9449), 1, + anon_sym_LF, + ACTIONS(9451), 1, + sym_preproc_arg, + [219546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9453), 2, + anon_sym_COMMA, + anon_sym_GT2, + [219554] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8735), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [219562] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9455), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [219570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_LBRACE, + STATE(2877), 1, + sym_field_declaration_list, + [219580] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(266), 1, + sym_condition_clause, + [219590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(6192), 1, + sym_parameter_list, + [219600] = 3, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9457), 1, + anon_sym_LF, + ACTIONS(9459), 1, + sym_preproc_arg, + [219610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9341), 1, + anon_sym_LT, + STATE(1934), 1, + sym_template_argument_list, + [219620] = 3, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9461), 1, + anon_sym_LF, + ACTIONS(9463), 1, + sym_preproc_arg, + [219630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(5926), 1, + sym_compound_statement, + [219640] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9465), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [219648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(532), 1, + sym_compound_statement, + [219658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(5870), 1, + sym_compound_statement, + [219668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + STATE(2934), 1, + sym_initializer_list, + [219678] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9467), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [219686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7605), 1, + anon_sym_LBRACE, + STATE(2073), 1, + sym_compound_statement, + [219696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6956), 1, + anon_sym_LBRACE, + STATE(2996), 1, + sym_requirement_seq, + [219706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8818), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [219714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(6264), 1, + sym_parameter_list, + [219724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9469), 1, + sym_identifier, + STATE(1902), 1, + sym_template_type, + [219734] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3531), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [219742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9471), 1, + anon_sym_default, + ACTIONS(9473), 1, + anon_sym_delete, + [219752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(5847), 1, + sym_compound_statement, + [219762] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9475), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [219770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5946), 1, + anon_sym_RBRACK, + ACTIONS(9477), 1, + anon_sym_COMMA, + [219780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(5882), 1, + sym_compound_statement, + [219790] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8835), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [219798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(6366), 1, + sym_parameter_list, + [219808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3177), 1, + sym_field_declaration_list, + [219818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2740), 1, + sym_field_declaration_list, + [219828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LBRACE, + STATE(2146), 1, + sym_field_declaration_list, + [219838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3173), 1, + sym_field_declaration_list, + [219848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_LBRACE, + STATE(3170), 1, + sym_field_declaration_list, + [219858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LBRACE, + STATE(2143), 1, + sym_field_declaration_list, + [219868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_LPAREN2, + STATE(2870), 1, + sym_argument_list, + [219878] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(273), 1, + sym_condition_clause, + [219888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(704), 1, + anon_sym_LBRACE, + STATE(732), 1, + sym_compound_statement, + [219898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9479), 1, + anon_sym_default, + ACTIONS(9481), 1, + anon_sym_delete, + [219908] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9483), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [219916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8854), 2, + anon_sym_COMMA, + anon_sym_GT2, + [219924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(5903), 1, + sym_compound_statement, + [219934] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9485), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [219942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9487), 1, + sym_identifier, + STATE(2855), 1, + sym_template_type, + [219952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9489), 1, + sym_identifier, + ACTIONS(9491), 1, + anon_sym_inline, + [219962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7715), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [219970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1679), 1, + anon_sym_LBRACE, + STATE(3030), 1, + sym_initializer_list, + [219980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(6423), 1, + sym_parameter_list, + [219990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9493), 1, + sym_identifier, + STATE(2452), 1, + sym_template_type, + [220000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2752), 1, + sym_field_declaration_list, + [220010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9495), 2, + anon_sym_COMMA, + anon_sym_GT2, + [220018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2755), 1, + sym_field_declaration_list, + [220028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6940), 1, + anon_sym_LBRACE, + STATE(2734), 1, + sym_requirement_seq, + [220038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2757), 1, + sym_field_declaration_list, + [220048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6060), 1, + sym_compound_statement, + [220058] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3407), 1, + sym_field_declaration_list, + [220068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7639), 1, + anon_sym_LBRACE, + STATE(2196), 1, + sym_compound_statement, + [220078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9497), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [220086] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9499), 2, + anon_sym_COMMA, + anon_sym_GT2, + [220094] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(6492), 1, + sym_parameter_list, + [220104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3993), 1, + sym_field_declaration_list, + [220114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3995), 1, + sym_field_declaration_list, + [220124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(4005), 1, + sym_field_declaration_list, + [220134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2812), 1, + sym_field_declaration_list, + [220144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3463), 1, + sym_field_declaration_list, + [220154] = 3, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9501), 1, + anon_sym_LF, + ACTIONS(9503), 1, + sym_preproc_arg, + [220164] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9505), 2, + anon_sym_COMMA, + anon_sym_GT2, + [220172] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [220180] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3960), 1, + sym_field_declaration_list, + [220190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(4052), 1, + sym_field_declaration_list, + [220200] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(4029), 1, + sym_field_declaration_list, + [220210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(4028), 1, + sym_field_declaration_list, + [220220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(4014), 1, + sym_field_declaration_list, + [220230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(4011), 1, + sym_field_declaration_list, + [220240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(4007), 1, + sym_field_declaration_list, + [220250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3983), 1, + sym_field_declaration_list, + [220260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3981), 1, + sym_field_declaration_list, + [220270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2808), 1, + sym_field_declaration_list, + [220280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(4034), 1, + sym_field_declaration_list, + [220290] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9425), 1, + anon_sym_LPAREN2, + STATE(6745), 1, + sym_parenthesized_expression, + [220300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9415), 1, + anon_sym_LT, + STATE(1904), 1, + sym_template_argument_list, + [220310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7639), 1, + anon_sym_LBRACE, + STATE(2167), 1, + sym_compound_statement, + [220320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2759), 1, + sym_field_declaration_list, + [220330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3406), 1, + sym_field_declaration_list, + [220340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LBRACE, + STATE(2118), 1, + sym_field_declaration_list, + [220350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3918), 1, + sym_field_declaration_list, + [220360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3904), 1, + sym_field_declaration_list, + [220370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3902), 1, + sym_field_declaration_list, + [220380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3897), 1, + sym_field_declaration_list, + [220390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3883), 1, + sym_field_declaration_list, + [220400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3881), 1, + sym_field_declaration_list, + [220410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3878), 1, + sym_field_declaration_list, + [220420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3869), 1, + sym_field_declaration_list, + [220430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(3856), 1, + sym_field_declaration_list, + [220440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(3410), 1, + sym_field_declaration_list, + [220450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(704), 1, + anon_sym_LBRACE, + STATE(1038), 1, + sym_compound_statement, + [220460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5441), 1, + anon_sym_LT, + STATE(2298), 1, + sym_template_argument_list, + [220470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(2805), 1, + sym_field_declaration_list, + [220480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(255), 1, + sym_condition_clause, + [220490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LBRACE, + STATE(2117), 1, + sym_field_declaration_list, + [220500] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9507), 1, anon_sym_default, ACTIONS(9509), 1, anon_sym_delete, - [220031] = 2, + [220510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5986), 2, + ACTIONS(6008), 2, anon_sym_COMMA, anon_sym_RBRACE, - [220039] = 3, + [220518] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(536), 1, anon_sym_LBRACE, - STATE(665), 1, + STATE(648), 1, sym_compound_statement, - [220049] = 3, + [220528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2128), 1, + STATE(2114), 1, sym_field_declaration_list, - [220059] = 3, + [220538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2107), 1, + STATE(2110), 1, sym_field_declaration_list, - [220069] = 3, + [220548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2087), 1, + STATE(2108), 1, sym_field_declaration_list, - [220079] = 3, + [220558] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9511), 1, sym_identifier, - STATE(1951), 1, + STATE(2044), 1, sym_template_type, - [220089] = 3, + [220568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2077), 1, + STATE(2096), 1, sym_field_declaration_list, - [220099] = 2, + [220578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5919), 2, + ACTIONS(5944), 2, anon_sym_COMMA, anon_sym_RBRACE, - [220107] = 3, + [220586] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, STATE(6062), 1, sym_compound_statement, - [220117] = 2, - ACTIONS(7080), 1, + [220596] = 2, + ACTIONS(7086), 1, sym_comment, ACTIONS(9513), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [220125] = 3, + [220604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4034), 1, + STATE(4043), 1, sym_field_declaration_list, - [220135] = 3, + [220614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4053), 1, + STATE(4047), 1, sym_field_declaration_list, - [220145] = 3, + [220624] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9365), 1, sym_identifier, STATE(6046), 1, sym_attribute, - [220155] = 3, + [220634] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, STATE(6234), 1, sym_condition_clause, - [220165] = 3, + [220644] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(1046), 1, + STATE(945), 1, sym_compound_statement, - [220175] = 3, + [220654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5412), 1, + ACTIONS(5424), 1, anon_sym_LPAREN2, STATE(7029), 1, sym_argument_list, - [220185] = 2, - ACTIONS(7080), 1, + [220664] = 2, + ACTIONS(7086), 1, sym_comment, ACTIONS(9515), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [220193] = 3, + [220672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4042), 1, + STATE(3978), 1, sym_field_declaration_list, - [220203] = 3, + [220682] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, STATE(6026), 1, sym_compound_statement, - [220213] = 3, + [220692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4038), 1, + STATE(3921), 1, sym_field_declaration_list, - [220223] = 3, + [220702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4050), 1, + STATE(3912), 1, sym_field_declaration_list, - [220233] = 3, + [220712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4045), 1, + STATE(3953), 1, sym_field_declaration_list, - [220243] = 3, + [220722] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, STATE(6561), 1, sym_condition_clause, - [220253] = 3, + [220732] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9365), 1, sym_identifier, STATE(6052), 1, sym_attribute, - [220263] = 3, + [220742] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9517), 1, anon_sym_default, ACTIONS(9519), 1, anon_sym_delete, - [220273] = 3, + [220752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2020), 1, + STATE(2140), 1, sym_field_declaration_list, - [220283] = 3, + [220762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5371), 1, + ACTIONS(5350), 1, anon_sym_LT, - STATE(3299), 1, + STATE(3282), 1, sym_template_argument_list, - [220293] = 3, - ACTIONS(7080), 1, + [220772] = 3, + ACTIONS(7086), 1, sym_comment, ACTIONS(9521), 1, anon_sym_LF, ACTIONS(9523), 1, sym_preproc_arg, - [220303] = 3, + [220782] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9359), 1, anon_sym_LT, - STATE(2175), 1, + STATE(2298), 1, sym_template_argument_list, - [220313] = 3, + [220792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(576), 1, + ACTIONS(704), 1, anon_sym_LBRACE, - STATE(920), 1, + STATE(929), 1, sym_compound_statement, - [220323] = 3, + [220802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(7012), 1, anon_sym_LBRACE, - STATE(3793), 1, + STATE(3802), 1, sym_requirement_seq, - [220333] = 3, + [220812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5412), 1, + ACTIONS(5424), 1, anon_sym_LPAREN2, STATE(7044), 1, sym_argument_list, - [220343] = 3, + [220822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3509), 1, + STATE(3470), 1, sym_field_declaration_list, - [220353] = 2, + [220832] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9525), 2, anon_sym_LPAREN2, anon_sym_LBRACE, - [220361] = 3, + [220840] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7639), 1, anon_sym_LBRACE, - STATE(2297), 1, + STATE(2346), 1, sym_compound_statement, - [220371] = 2, + [220850] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9525), 2, anon_sym_LPAREN2, anon_sym_LBRACE, - [220379] = 2, + [220858] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9525), 2, anon_sym_LPAREN2, anon_sym_LBRACE, - [220387] = 3, + [220866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3450), 1, + STATE(3389), 1, sym_field_declaration_list, - [220397] = 3, + [220876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3447), 1, + STATE(3419), 1, sym_field_declaration_list, - [220407] = 3, + [220886] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9415), 1, anon_sym_LT, - STATE(2574), 1, + STATE(2546), 1, sym_template_argument_list, - [220417] = 3, + [220896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3438), 1, + STATE(3412), 1, sym_field_declaration_list, - [220427] = 3, + [220906] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, - STATE(247), 1, + STATE(147), 1, sym_condition_clause, - [220437] = 3, + [220916] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9527), 1, anon_sym_default, ACTIONS(9529), 1, anon_sym_delete, - [220447] = 3, + [220926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3524), 1, + STATE(3478), 1, sym_field_declaration_list, - [220457] = 3, + [220936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3446), 1, + STATE(3418), 1, sym_field_declaration_list, - [220467] = 3, + [220946] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(752), 1, + STATE(825), 1, sym_compound_statement, - [220477] = 3, + [220956] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, STATE(6015), 1, sym_compound_statement, - [220487] = 3, + [220966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3445), 1, + STATE(3417), 1, sym_field_declaration_list, - [220497] = 3, + [220976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6992), 1, + ACTIONS(6986), 1, anon_sym_LBRACE, - STATE(3326), 1, + STATE(3380), 1, sym_requirement_seq, - [220507] = 3, + [220986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1363), 1, + ACTIONS(1312), 1, anon_sym_LBRACE, - STATE(1239), 1, + STATE(1112), 1, sym_compound_statement, - [220517] = 3, + [220996] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, STATE(146), 1, sym_condition_clause, - [220527] = 3, + [221006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4009), 1, + STATE(3992), 1, sym_field_declaration_list, - [220537] = 3, + [221016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3440), 1, + STATE(3416), 1, sym_field_declaration_list, - [220547] = 3, + [221026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(4048), 1, + STATE(4039), 1, sym_field_declaration_list, - [220557] = 3, + [221036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3537), 1, + STATE(3476), 1, sym_field_declaration_list, - [220567] = 3, + [221046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2148), 1, + STATE(2115), 1, sym_field_declaration_list, - [220577] = 3, + [221056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2146), 1, + STATE(2119), 1, sym_field_declaration_list, - [220587] = 3, + [221066] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, STATE(6589), 1, sym_parameter_list, - [220597] = 3, + [221076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6978), 1, + ACTIONS(6998), 1, anon_sym_LBRACE, - STATE(3113), 1, + STATE(3148), 1, sym_requirement_seq, - [220607] = 3, + [221086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3437), 1, + STATE(3415), 1, sym_field_declaration_list, - [220617] = 3, + [221096] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9425), 1, anon_sym_LPAREN2, STATE(6669), 1, sym_parenthesized_expression, - [220627] = 3, + [221106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2143), 1, + STATE(2124), 1, sym_field_declaration_list, - [220637] = 3, + [221116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2142), 1, + STATE(2127), 1, sym_field_declaration_list, - [220647] = 3, + [221126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2139), 1, + STATE(2130), 1, sym_field_declaration_list, - [220657] = 3, + [221136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3436), 1, + STATE(3414), 1, sym_field_declaration_list, - [220667] = 3, + [221146] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9531), 1, sym_identifier, - STATE(1930), 1, + STATE(1927), 1, sym_template_type, - [220677] = 3, + [221156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2135), 1, + STATE(2147), 1, sym_field_declaration_list, - [220687] = 3, + [221166] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9533), 1, anon_sym_default, ACTIONS(9535), 1, anon_sym_delete, - [220697] = 3, + [221176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3493), 1, + STATE(3405), 1, sym_field_declaration_list, - [220707] = 3, + [221186] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9425), 1, anon_sym_LPAREN2, STATE(6955), 1, sym_parenthesized_expression, - [220717] = 3, + [221196] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3013), 1, anon_sym_LBRACE, - STATE(3918), 1, + STATE(4054), 1, sym_initializer_list, - [220727] = 3, + [221206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2133), 1, + STATE(2079), 1, sym_field_declaration_list, - [220737] = 3, + [221216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2131), 1, + STATE(2155), 1, sym_field_declaration_list, - [220747] = 3, + [221226] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(536), 1, anon_sym_LBRACE, - STATE(987), 1, + STATE(962), 1, sym_compound_statement, - [220757] = 3, + [221236] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7348), 1, anon_sym_LPAREN2, STATE(6115), 1, sym_parameter_list, - [220767] = 3, + [221246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3452), 1, + STATE(3401), 1, sym_field_declaration_list, - [220777] = 3, + [221256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 1, + ACTIONS(5922), 1, anon_sym_RPAREN, - ACTIONS(5892), 1, + ACTIONS(5924), 1, anon_sym_SEMI, - [220787] = 3, + [221266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(576), 1, + ACTIONS(704), 1, anon_sym_LBRACE, - STATE(521), 1, + STATE(530), 1, sym_compound_statement, - [220797] = 2, - ACTIONS(7080), 1, + [221276] = 2, + ACTIONS(7086), 1, sym_comment, ACTIONS(9537), 2, anon_sym_LF, sym_preproc_arg, - [220805] = 3, + [221284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2123), 1, + STATE(2126), 1, sym_field_declaration_list, - [220815] = 3, + [221294] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, STATE(5871), 1, sym_compound_statement, - [220825] = 3, + [221304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(3503), 1, + STATE(3456), 1, sym_field_declaration_list, - [220835] = 3, + [221314] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9425), 1, anon_sym_LPAREN2, STATE(6952), 1, sym_parenthesized_expression, - [220845] = 3, + [221324] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, STATE(5877), 1, sym_compound_statement, - [220855] = 2, - ACTIONS(7080), 1, + [221334] = 2, + ACTIONS(7086), 1, sym_comment, ACTIONS(9539), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [220863] = 3, + [221342] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, STATE(6448), 1, sym_condition_clause, - [220873] = 3, + [221352] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9365), 1, sym_identifier, STATE(5861), 1, sym_attribute, - [220883] = 3, + [221362] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, anon_sym_LPAREN2, - STATE(171), 1, + STATE(195), 1, sym_condition_clause, - [220893] = 3, + [221372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2066), 1, + STATE(2161), 1, sym_field_declaration_list, - [220903] = 3, + [221382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2065), 1, + STATE(2160), 1, sym_field_declaration_list, - [220913] = 3, - ACTIONS(7080), 1, + [221392] = 3, + ACTIONS(7086), 1, sym_comment, ACTIONS(9541), 1, anon_sym_LF, ACTIONS(9543), 1, sym_preproc_arg, - [220923] = 2, + [221402] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9545), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [220931] = 3, + [221410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2061), 1, + STATE(2152), 1, sym_field_declaration_list, - [220941] = 3, + [221420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2057), 1, + STATE(2144), 1, sym_field_declaration_list, - [220951] = 3, + [221430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2056), 1, + STATE(2171), 1, sym_field_declaration_list, - [220961] = 3, + [221440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2054), 1, + STATE(2085), 1, sym_field_declaration_list, - [220971] = 3, + [221450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2052), 1, + STATE(2158), 1, sym_field_declaration_list, - [220981] = 3, - ACTIONS(7080), 1, + [221460] = 3, + ACTIONS(7086), 1, sym_comment, ACTIONS(9547), 1, anon_sym_LF, ACTIONS(9549), 1, sym_preproc_arg, - [220991] = 3, + [221470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2051), 1, + STATE(2092), 1, sym_field_declaration_list, - [221001] = 3, + [221480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2050), 1, + STATE(2094), 1, sym_field_declaration_list, - [221011] = 3, + [221490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2013), 1, + STATE(2136), 1, sym_field_declaration_list, - [221021] = 2, + [221500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6101), 2, + ACTIONS(6105), 2, anon_sym_COMMA, anon_sym_RPAREN, - [221029] = 3, + [221508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2012), 1, + STATE(2139), 1, sym_field_declaration_list, - [221039] = 3, + [221518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_LBRACE, - STATE(2009), 1, + STATE(2156), 1, sym_field_declaration_list, - [221049] = 3, + [221528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6863), 1, + ACTIONS(6847), 1, anon_sym_LT, - STATE(2343), 1, + STATE(2398), 1, sym_template_argument_list, - [221059] = 2, + [221538] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9158), 2, anon_sym_COMMA, anon_sym_RBRACE, - [221067] = 2, + [221546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6026), 1, + ACTIONS(6042), 1, anon_sym_RPAREN, - [221074] = 2, + [221553] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9551), 1, anon_sym_DOT_STAR, - [221081] = 2, + [221560] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9553), 1, anon_sym_RPAREN, - [221088] = 2, + [221567] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9555), 1, aux_sym_preproc_if_token2, - [221095] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6028), 1, - anon_sym_RPAREN, - [221102] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7747), 1, - sym_identifier, - [221109] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_PIPE_EQ, - [221116] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6030), 1, - anon_sym_RPAREN, - [221123] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_SEMI, - [221130] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6085), 1, - anon_sym_SEMI, - [221137] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7479), 1, - anon_sym_RPAREN, - [221144] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9557), 1, - anon_sym_SEMI, - [221151] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9559), 1, - sym_raw_string_delimiter, - [221158] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6095), 1, - anon_sym_SEMI, - [221165] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9561), 1, - aux_sym_preproc_if_token2, - [221172] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9563), 1, - anon_sym_DQUOTE, - [221179] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9565), 1, - sym_identifier, - [221186] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9567), 1, - anon_sym_RPAREN, - [221193] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6038), 1, - anon_sym_RPAREN, - [221200] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9569), 1, - anon_sym_SEMI, - [221207] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6040), 1, - anon_sym_RPAREN, - [221214] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9571), 1, - anon_sym_SEMI, - [221221] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9573), 1, - anon_sym_SEMI, - [221228] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6024), 1, - anon_sym_RPAREN, - [221235] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9575), 1, - anon_sym_RPAREN, - [221242] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9577), 1, - anon_sym_LF, - [221249] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9579), 1, - sym_identifier, - [221256] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5754), 1, - anon_sym_RBRACE, - [221263] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_DASH_GT_STAR, - [221270] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9581), 1, - anon_sym_SEMI, - [221277] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6012), 1, - anon_sym_SEMI, - [221284] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9583), 1, - anon_sym_COLON, - [221291] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9585), 1, - sym_identifier, - [221298] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9587), 1, - sym_identifier, - [221305] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9589), 1, - aux_sym_preproc_if_token2, - [221312] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9591), 1, - anon_sym_RPAREN, - [221319] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_CARET_EQ, - [221326] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9593), 1, - anon_sym_SEMI, - [221333] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9595), 1, - anon_sym_SEMI, - [221340] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9597), 1, - anon_sym_DQUOTE, - [221347] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9599), 1, - sym_identifier, - [221354] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9601), 1, - aux_sym_preproc_if_token2, - [221361] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9603), 1, - anon_sym_SEMI, - [221368] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9605), 1, - anon_sym_RPAREN, - [221375] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9607), 1, - anon_sym_SEMI, - [221382] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9609), 1, - anon_sym_SQUOTE, - [221389] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8538), 1, - anon_sym_SEMI, - [221396] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9611), 1, - anon_sym_STAR, - [221403] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6014), 1, - anon_sym_SEMI, - [221410] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9613), 1, - anon_sym_RPAREN, - [221417] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9615), 1, - anon_sym_RPAREN, - [221424] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9617), 1, - anon_sym_SEMI, - [221431] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9619), 1, - anon_sym_SEMI, - [221438] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9621), 1, - anon_sym_RPAREN, - [221445] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9623), 1, - sym_identifier, - [221452] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5990), 1, - anon_sym_SEMI, - [221459] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8408), 1, - anon_sym_SEMI, - [221466] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9625), 1, - anon_sym_LF, - [221473] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9627), 1, - sym_identifier, - [221480] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9629), 1, - anon_sym_LPAREN2, - [221487] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9631), 1, - anon_sym_LPAREN2, - [221494] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9633), 1, - anon_sym_RPAREN, - [221501] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9635), 1, - anon_sym_RPAREN, - [221508] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9637), 1, - anon_sym_EQ, - [221515] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9639), 1, - anon_sym_RPAREN, - [221522] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9641), 1, - anon_sym_SEMI, - [221529] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9643), 1, - anon_sym_RPAREN, - [221536] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6050), 1, - anon_sym_SEMI, - [221543] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9645), 1, - sym_identifier, - [221550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9647), 1, - sym_identifier, - [221557] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9649), 1, - sym_identifier, - [221564] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9651), 1, - anon_sym_LPAREN2, - [221571] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9653), 1, - sym_raw_string_content, - [221578] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5890), 1, - anon_sym_RPAREN, - [221585] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9655), 1, - anon_sym_while, - [221592] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9657), 1, - anon_sym_RPAREN, - [221599] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8450), 1, - anon_sym_SEMI, - [221606] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5980), 1, - anon_sym_SEMI, - [221613] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9659), 1, - anon_sym_SEMI, - [221620] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9661), 1, - anon_sym_LPAREN2, - [221627] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6036), 1, - anon_sym_SEMI, - [221634] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9663), 1, - aux_sym_preproc_if_token2, - [221641] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6034), 1, - anon_sym_SEMI, - [221648] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9665), 1, - anon_sym_SQUOTE, - [221655] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5070), 1, - sym_identifier, - [221662] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9667), 1, - aux_sym_preproc_if_token2, - [221669] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8432), 1, - anon_sym_SEMI, - [221676] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6032), 1, - anon_sym_SEMI, - [221683] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7497), 1, - anon_sym_RPAREN, - [221690] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9669), 1, - anon_sym_LF, - [221697] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9671), 1, - sym_raw_string_delimiter, - [221704] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5060), 1, - sym_identifier, - [221711] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9673), 1, - sym_identifier, - [221718] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9675), 1, - anon_sym_LF, - [221725] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9023), 1, - anon_sym_RBRACE, - [221732] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6022), 1, - anon_sym_RPAREN, - [221739] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6018), 1, - anon_sym_RPAREN, - [221746] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9677), 1, - sym_auto, - [221753] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3599), 1, - anon_sym_SEMI, - [221760] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9679), 1, - anon_sym_SQUOTE, - [221767] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9681), 1, - anon_sym_RPAREN, - [221774] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9683), 1, - anon_sym_COLON, - [221781] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8588), 1, - anon_sym_SEMI, - [221788] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_AMP_EQ, - [221795] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9685), 1, - anon_sym_RPAREN, - [221802] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9687), 1, - sym_identifier, - [221809] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_GT_GT_EQ, - [221816] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9689), 1, - anon_sym_STAR, - [221823] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9321), 1, - anon_sym_RBRACE, - [221830] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9691), 1, - sym_identifier, - [221837] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9693), 1, - sym_identifier, - [221844] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5898), 1, - anon_sym_RBRACE, - [221851] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9695), 1, - sym_identifier, - [221858] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9697), 1, - anon_sym_RPAREN, - [221865] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_LT_LT_EQ, - [221872] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5842), 1, - anon_sym_RBRACE, - [221879] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9699), 1, - anon_sym_STAR, - [221886] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9701), 1, - sym_identifier, - [221893] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5959), 1, - anon_sym_SEMI, - [221900] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9703), 1, - anon_sym_RPAREN, - [221907] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9705), 1, - anon_sym_RPAREN, - [221914] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8636), 1, - anon_sym_SEMI, - [221921] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9707), 1, - anon_sym_SEMI, - [221928] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9709), 1, - anon_sym_SEMI, - [221935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9711), 1, - sym_auto, - [221942] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9713), 1, - anon_sym_LPAREN2, - [221949] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9715), 1, - anon_sym_LF, - [221956] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9717), 1, - anon_sym_SEMI, - [221963] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8935), 1, - anon_sym_RBRACE, - [221970] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9719), 1, - anon_sym_RPAREN, - [221977] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9721), 1, - anon_sym_SEMI, - [221984] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9723), 1, - aux_sym_preproc_if_token2, - [221991] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9725), 1, - anon_sym_SEMI, - [221998] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5945), 1, - anon_sym_RPAREN, - [222005] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5943), 1, - anon_sym_RPAREN, - [222012] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9727), 1, - sym_identifier, - [222019] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5941), 1, - anon_sym_RPAREN, - [222026] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9729), 1, - anon_sym_LF, - [222033] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5935), 1, - anon_sym_RPAREN, - [222040] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9731), 1, - anon_sym_RPAREN, - [222047] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9733), 1, - anon_sym_RPAREN, - [222054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5933), 1, - anon_sym_RPAREN, - [222061] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9735), 1, - anon_sym_SEMI, - [222068] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9737), 1, - anon_sym_DQUOTE, - [222075] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5931), 1, - anon_sym_RPAREN, - [222082] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5967), 1, - anon_sym_SEMI, - [222089] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9739), 1, - anon_sym_RPAREN, - [222096] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5965), 1, - anon_sym_SEMI, - [222103] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9741), 1, - anon_sym_DQUOTE, - [222110] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8424), 1, - anon_sym_SEMI, - [222117] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9743), 1, - sym_identifier, - [222124] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4734), 1, - sym_identifier, - [222131] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5955), 1, - anon_sym_SEMI, - [222138] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7593), 1, - anon_sym_RPAREN, - [222145] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5892), 1, - anon_sym_SEMI, - [222152] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9745), 1, - sym_raw_string_delimiter, - [222159] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9747), 1, - anon_sym_LF, - [222166] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9749), 1, - sym_identifier, - [222173] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9751), 1, - anon_sym_RPAREN, - [222180] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9753), 1, - anon_sym_RPAREN, - [222187] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9755), 1, - anon_sym_SQUOTE, - [222194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9757), 1, - anon_sym_RPAREN, - [222201] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9759), 1, - anon_sym_SEMI, - [222208] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6073), 1, - anon_sym_SEMI, - [222215] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8646), 1, - anon_sym_SEMI, - [222222] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3487), 1, - anon_sym_DOT_DOT_DOT, - [222229] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9761), 1, - anon_sym_RPAREN, - [222236] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9763), 1, - sym_identifier, - [222243] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9765), 1, - anon_sym_LPAREN2, - [222250] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9767), 1, - anon_sym_COLON, - [222257] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7585), 1, - anon_sym_RPAREN, - [222264] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_STAR_EQ, - [222271] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9769), 1, - sym_identifier, - [222278] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9771), 1, - anon_sym_LBRACE, - [222285] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9773), 1, - anon_sym_DQUOTE, - [222292] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9775), 1, - sym_identifier, - [222299] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_DASH_EQ, - [222306] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9777), 1, - sym_raw_string_delimiter, - [222313] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9779), 1, - anon_sym_RPAREN, - [222320] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9781), 1, - anon_sym_LBRACE, - [222327] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9783), 1, - anon_sym_RPAREN, - [222334] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_PIPE_PIPE, - [222341] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9785), 1, - anon_sym_SQUOTE, - [222348] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9787), 1, - sym_raw_string_content, - [222355] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9789), 1, - anon_sym_SEMI, - [222362] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7583), 1, - anon_sym_RPAREN, - [222369] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5834), 1, - anon_sym_RBRACE, - [222376] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9791), 1, - sym_raw_string_delimiter, - [222383] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9793), 1, - sym_identifier, - [222390] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5253), 1, - sym_identifier, - [222397] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9795), 1, - anon_sym_RPAREN, - [222404] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9797), 1, - anon_sym_RPAREN, - [222411] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9799), 1, - sym_identifier, - [222418] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9801), 1, - anon_sym_RPAREN, - [222425] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9803), 1, - anon_sym_RPAREN, - [222432] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9805), 1, - anon_sym_RPAREN, - [222439] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9807), 1, - anon_sym_RPAREN, - [222446] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8446), 1, - anon_sym_SEMI, - [222453] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9809), 1, - anon_sym_RPAREN, - [222460] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9811), 1, - anon_sym_LPAREN2, - [222467] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9813), 1, - anon_sym_RPAREN, - [222474] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9815), 1, - anon_sym_SEMI, - [222481] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9817), 1, - anon_sym_LF, - [222488] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8598), 1, - anon_sym_SEMI, - [222495] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9819), 1, - anon_sym_RPAREN, - [222502] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(8820), 1, - anon_sym_LF, - [222509] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9821), 1, - sym_identifier, - [222516] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9823), 1, - anon_sym_RPAREN, - [222523] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9825), 1, - anon_sym_STAR, - [222530] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9827), 1, - sym_identifier, - [222537] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7563), 1, - anon_sym_RPAREN, - [222544] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6083), 1, - anon_sym_SEMI, - [222551] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6060), 1, - anon_sym_RPAREN, - [222558] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9829), 1, - anon_sym_LF, - [222565] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9831), 1, - anon_sym_RPAREN, - [222572] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_PLUS_EQ, - [222579] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9833), 1, - anon_sym_LPAREN2, - [222586] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9835), 1, - anon_sym_LBRACE, - [222593] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_PERCENT_EQ, - [222600] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6058), 1, - anon_sym_RPAREN, - [222607] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9837), 1, - anon_sym_SEMI, - [222614] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9839), 1, - anon_sym_SEMI, - [222621] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8706), 1, - anon_sym_SEMI, - [222628] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5188), 1, - anon_sym_RPAREN, - [222635] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9841), 1, - anon_sym_LPAREN2, - [222642] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9843), 1, - anon_sym_COLON, - [222649] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_SLASH_EQ, - [222656] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9845), 1, - anon_sym_RPAREN, - [222663] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_EQ, - [222670] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, - anon_sym_RBRACE, - [222677] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6056), 1, - anon_sym_RPAREN, - [222684] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9847), 1, - anon_sym_LPAREN2, - [222691] = 2, + [221574] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6044), 1, anon_sym_RPAREN, - [222698] = 2, + [221581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9849), 1, - anon_sym_LPAREN2, - [222705] = 2, + ACTIONS(7747), 1, + sym_identifier, + [221588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9851), 1, - sym_raw_string_delimiter, - [222712] = 2, + ACTIONS(9551), 1, + anon_sym_PIPE_EQ, + [221595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7505), 1, + ACTIONS(6050), 1, anon_sym_RPAREN, - [222719] = 2, + [221602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9853), 1, - anon_sym_RPAREN, - [222726] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6087), 1, - anon_sym_RPAREN, - [222733] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9855), 1, + ACTIONS(6101), 1, anon_sym_SEMI, - [222740] = 2, + [221609] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_SEMI, + [221616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7479), 1, + anon_sym_RPAREN, + [221623] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9557), 1, + anon_sym_SEMI, + [221630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9559), 1, + sym_raw_string_delimiter, + [221637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6103), 1, + anon_sym_SEMI, + [221644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9561), 1, + aux_sym_preproc_if_token2, + [221651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9563), 1, + anon_sym_DQUOTE, + [221658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9565), 1, + sym_identifier, + [221665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9567), 1, + anon_sym_RPAREN, + [221672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5954), 1, + anon_sym_RPAREN, + [221679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9569), 1, + anon_sym_SEMI, + [221686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6054), 1, + anon_sym_RPAREN, + [221693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9571), 1, + anon_sym_SEMI, + [221700] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9573), 1, + anon_sym_SEMI, + [221707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6040), 1, + anon_sym_RPAREN, + [221714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9575), 1, + anon_sym_RPAREN, + [221721] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9577), 1, + anon_sym_LF, + [221728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9579), 1, + sym_identifier, + [221735] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5752), 1, + anon_sym_RBRACE, + [221742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_DASH_GT_STAR, + [221749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9581), 1, + anon_sym_SEMI, + [221756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + anon_sym_SEMI, + [221763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9583), 1, + anon_sym_COLON, + [221770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9585), 1, + sym_identifier, + [221777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9587), 1, + sym_identifier, + [221784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9589), 1, + aux_sym_preproc_if_token2, + [221791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9591), 1, + anon_sym_RPAREN, + [221798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_CARET_EQ, + [221805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9593), 1, + anon_sym_SEMI, + [221812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9595), 1, + anon_sym_SEMI, + [221819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9597), 1, + anon_sym_DQUOTE, + [221826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9599), 1, + sym_identifier, + [221833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9601), 1, + aux_sym_preproc_if_token2, + [221840] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9603), 1, + anon_sym_SEMI, + [221847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9605), 1, + anon_sym_RPAREN, + [221854] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9607), 1, + anon_sym_SEMI, + [221861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9609), 1, + anon_sym_SQUOTE, + [221868] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8538), 1, + anon_sym_SEMI, + [221875] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9611), 1, + anon_sym_STAR, + [221882] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6020), 1, anon_sym_SEMI, - [222747] = 2, + [221889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9857), 1, - anon_sym_LPAREN2, - [222754] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5914), 1, - anon_sym_RBRACE, - [222761] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9859), 1, - anon_sym_SEMI, - [222768] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9861), 1, - aux_sym_preproc_if_token2, - [222775] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9863), 1, - anon_sym_DQUOTE, - [222782] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9865), 1, - anon_sym_SEMI, - [222789] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6091), 1, + ACTIONS(9613), 1, anon_sym_RPAREN, - [222796] = 2, + [221896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9867), 1, + ACTIONS(9615), 1, anon_sym_RPAREN, - [222803] = 2, + [221903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9869), 1, + ACTIONS(9617), 1, anon_sym_SEMI, - [222810] = 2, + [221910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9871), 1, + ACTIONS(9619), 1, + anon_sym_SEMI, + [221917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9621), 1, anon_sym_RPAREN, - [222817] = 2, + [221924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9873), 1, + ACTIONS(9623), 1, sym_identifier, - [222824] = 2, + [221931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6097), 1, - anon_sym_RPAREN, - [222831] = 2, + ACTIONS(6018), 1, + anon_sym_SEMI, + [221938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6099), 1, - anon_sym_RPAREN, - [222838] = 2, + ACTIONS(8408), 1, + anon_sym_SEMI, + [221945] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9625), 1, + anon_sym_LF, + [221952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9875), 1, - anon_sym_while, - [222845] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6295), 1, - anon_sym_RBRACK, - [222852] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9877), 1, - anon_sym_LPAREN2, - [222859] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9879), 1, - anon_sym_RPAREN, - [222866] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9881), 1, + ACTIONS(9627), 1, sym_identifier, - [222873] = 2, + [221959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6016), 1, + ACTIONS(9629), 1, + anon_sym_LPAREN2, + [221966] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9631), 1, + anon_sym_LPAREN2, + [221973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9633), 1, anon_sym_RPAREN, - [222880] = 2, + [221980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9883), 1, + ACTIONS(9635), 1, anon_sym_RPAREN, - [222887] = 2, + [221987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(9637), 1, anon_sym_EQ, - [222894] = 2, + [221994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9887), 1, - sym_raw_string_content, - [222901] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9889), 1, - anon_sym_LF, - [222908] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9891), 1, - anon_sym_SEMI, - [222915] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6010), 1, + ACTIONS(9639), 1, anon_sym_RPAREN, - [222922] = 2, + [222001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9893), 1, + ACTIONS(9641), 1, anon_sym_SEMI, - [222929] = 2, + [222008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9895), 1, - aux_sym_preproc_if_token2, - [222936] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9897), 1, - anon_sym_SEMI, - [222943] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9072), 1, - anon_sym_RBRACE, - [222950] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9899), 1, - aux_sym_preproc_if_token2, - [222957] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9901), 1, - sym_identifier, - [222964] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9903), 1, - aux_sym_preproc_if_token2, - [222971] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_GT_GT, - [222978] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8524), 1, - anon_sym_SEMI, - [222985] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6042), 1, - anon_sym_SEMI, - [222992] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9905), 1, + ACTIONS(9643), 1, anon_sym_RPAREN, - [222999] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_LT_LT, - [223006] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9907), 1, - aux_sym_preproc_if_token2, - [223013] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6116), 1, - anon_sym_RPAREN, - [223020] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - anon_sym_SEMI, - [223027] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9911), 1, - aux_sym_preproc_if_token2, - [223034] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_LT, - [223041] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6118), 1, - anon_sym_RPAREN, - [223048] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, - anon_sym_SEMI, - [223055] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9913), 1, - sym_auto, - [223062] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9915), 1, - anon_sym_LF, - [223069] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5984), 1, - anon_sym_SEMI, - [223076] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9917), 1, - anon_sym_EQ, - [223083] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9919), 1, - anon_sym_SEMI, - [223090] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6071), 1, - anon_sym_SEMI, - [223097] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9921), 1, - anon_sym_SEMI, - [223104] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6081), 1, - anon_sym_SEMI, - [223111] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5978), 1, - anon_sym_SEMI, - [223118] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8410), 1, - anon_sym_EQ, - [223125] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9923), 1, - anon_sym_STAR, - [223132] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9925), 1, - anon_sym_RPAREN, - [223139] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5752), 1, - anon_sym_SEMI, - [223146] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9927), 1, - anon_sym_SEMI, - [223153] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9929), 1, - anon_sym_SEMI, - [223160] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9931), 1, - anon_sym_SEMI, - [223167] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9933), 1, - anon_sym_SEMI, - [223174] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9935), 1, - anon_sym_RPAREN, - [223181] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9937), 1, - anon_sym_SEMI, - [223188] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6120), 1, - anon_sym_SEMI, - [223195] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9939), 1, - anon_sym_SEMI, - [223202] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9941), 1, - anon_sym_SEMI, - [223209] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9943), 1, - anon_sym_LF, - [223216] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9945), 1, - anon_sym_RPAREN, - [223223] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9947), 1, - anon_sym_RPAREN, - [223230] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9949), 1, - anon_sym_DQUOTE, - [223237] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(8882), 1, - anon_sym_LF, - [223244] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5929), 1, - anon_sym_SEMI, - [223251] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9951), 1, - aux_sym_preproc_if_token2, - [223258] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9953), 1, - aux_sym_preproc_if_token2, - [223265] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9955), 1, - anon_sym_LPAREN2, - [223272] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9957), 1, - aux_sym_preproc_if_token2, - [223279] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9055), 1, - anon_sym_RPAREN, - [223286] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6144), 1, - anon_sym_RPAREN, - [223293] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_LT_EQ, - [223300] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5927), 1, - anon_sym_SEMI, - [223307] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9959), 1, - aux_sym_preproc_if_token2, - [223314] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9961), 1, - anon_sym_DQUOTE, - [223321] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6146), 1, - anon_sym_RPAREN, - [223328] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9963), 1, - anon_sym_SEMI, - [223335] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9965), 1, - anon_sym_SEMI, - [223342] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9967), 1, - anon_sym_RPAREN, - [223349] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9969), 1, - anon_sym_RPAREN, - [223356] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9971), 1, - anon_sym_RPAREN, - [223363] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9973), 1, - anon_sym_RPAREN, - [223370] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9975), 1, - anon_sym_RPAREN, - [223377] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5082), 1, - anon_sym_RPAREN, - [223384] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6148), 1, - anon_sym_RPAREN, - [223391] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8628), 1, - anon_sym_SEMI, - [223398] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9977), 1, - anon_sym_LPAREN2, - [223405] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9979), 1, - anon_sym_SEMI, - [223412] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9981), 1, - anon_sym_LF, - [223419] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9983), 1, - anon_sym_RPAREN, - [223426] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9985), 1, - anon_sym_SEMI, - [223433] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9987), 1, - anon_sym_RPAREN, - [223440] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9989), 1, - sym_identifier, - [223447] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9991), 1, - anon_sym_SEMI, - [223454] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9993), 1, - anon_sym_DQUOTE, - [223461] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5921), 1, - anon_sym_RPAREN, - [223468] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9995), 1, - anon_sym_EQ, - [223475] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_SEMI, - [223482] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9997), 1, - sym_identifier, - [223489] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9999), 1, - anon_sym_LPAREN2, - [223496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10001), 1, - anon_sym_RPAREN, - [223503] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(8917), 1, - anon_sym_LF, - [223510] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10003), 1, - aux_sym_preproc_if_token2, - [223517] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10005), 1, - anon_sym_DQUOTE, - [223524] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(10007), 1, - anon_sym_LF, - [223531] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - [223538] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10009), 1, - sym_identifier, - [223545] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10011), 1, - anon_sym_SEMI, - [223552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10013), 1, - anon_sym_RPAREN, - [223559] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10015), 1, - anon_sym_SEMI, - [223566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10017), 1, - sym_auto, - [223573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5947), 1, - anon_sym_SEMI, - [223580] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10019), 1, - aux_sym_preproc_if_token2, - [223587] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10021), 1, - anon_sym_SEMI, - [223594] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10023), 1, - aux_sym_preproc_if_token2, - [223601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10025), 1, - aux_sym_preproc_if_token2, - [223608] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(10027), 1, - anon_sym_LF, - [223615] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10029), 1, - anon_sym_RPAREN, - [223622] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10031), 1, - anon_sym_SEMI, - [223629] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10033), 1, - sym_identifier, - [223636] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10035), 1, - anon_sym_STAR, - [223643] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_GT_EQ, - [223650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6247), 1, - anon_sym_RBRACK, - [223657] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10037), 1, - anon_sym_SEMI, - [223664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10039), 1, - sym_auto, - [223671] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10041), 1, - anon_sym_SEMI, - [223678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10043), 1, - anon_sym_SEMI, - [223685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10045), 1, - anon_sym_SEMI, - [223692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10047), 1, - anon_sym_SEMI, - [223699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10049), 1, - anon_sym_SEMI, - [223706] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8582), 1, - anon_sym_SEMI, - [223713] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10051), 1, - ts_builtin_sym_end, - [223720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10053), 1, - anon_sym_SEMI, - [223727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10055), 1, - anon_sym_RPAREN, - [223734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - anon_sym_RPAREN, - [223741] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10057), 1, - anon_sym_RPAREN, - [223748] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10059), 1, - anon_sym_SQUOTE, - [223755] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10061), 1, - sym_identifier, - [223762] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10063), 1, - anon_sym_LPAREN2, - [223769] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10065), 1, - anon_sym_RPAREN, - [223776] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10067), 1, - anon_sym_RPAREN, - [223783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10069), 1, - anon_sym_RPAREN, - [223790] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10071), 1, - anon_sym_SEMI, - [223797] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10073), 1, - anon_sym_RPAREN, - [223804] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8420), 1, - anon_sym_SEMI, - [223811] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10075), 1, - anon_sym_LPAREN2, - [223818] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10077), 1, - sym_identifier, - [223825] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10079), 1, - anon_sym_LPAREN2, - [223832] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(10081), 1, - anon_sym_LF, - [223839] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5814), 1, - anon_sym_RBRACE, - [223846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10083), 1, - anon_sym_LPAREN2, - [223853] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10085), 1, - aux_sym_preproc_if_token2, - [223860] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10087), 1, - sym_identifier, - [223867] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10089), 1, - anon_sym_LPAREN2, - [223874] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(10091), 1, - anon_sym_LF, - [223881] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10093), 1, - anon_sym_RPAREN, - [223888] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10095), 1, - anon_sym_LPAREN2, - [223895] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8722), 1, - anon_sym_RBRACE, - [223902] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10097), 1, - aux_sym_preproc_if_token2, - [223909] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10099), 1, - anon_sym_while, - [223916] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10101), 1, - anon_sym_RPAREN, - [223923] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10103), 1, - anon_sym_LPAREN2, - [223930] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10105), 1, - anon_sym_SEMI, - [223937] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8708), 1, - anon_sym_SEMI, - [223944] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10107), 1, - anon_sym_RPAREN, - [223951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10109), 1, - anon_sym_SEMI, - [223958] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10111), 1, - anon_sym_EQ, - [223965] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10113), 1, - sym_raw_string_content, - [223972] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10115), 1, - sym_identifier, - [223979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3667), 1, - anon_sym_SEMI, - [223986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10117), 1, - anon_sym_COLON, - [223993] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6054), 1, - anon_sym_SEMI, - [224000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10119), 1, - anon_sym_RPAREN, - [224007] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9123), 1, - anon_sym_RBRACE, - [224014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8452), 1, - anon_sym_EQ, - [224021] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10121), 1, - sym_auto, - [224028] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10123), 1, - anon_sym_RPAREN, - [224035] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10125), 1, - anon_sym_RPAREN, - [224042] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10127), 1, - sym_auto, - [224049] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10129), 1, - anon_sym_RPAREN, - [224056] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10131), 1, - sym_identifier, - [224063] = 2, - ACTIONS(3909), 1, - anon_sym_LF, - ACTIONS(7080), 1, - sym_comment, - [224070] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(10133), 1, - anon_sym_LF, - [224077] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10135), 1, - anon_sym_STAR, - [224084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10137), 1, - anon_sym_SEMI, - [224091] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10139), 1, - aux_sym_preproc_if_token2, - [224098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10141), 1, - anon_sym_SEMI, - [224105] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10143), 1, - sym_identifier, - [224112] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(10145), 1, - anon_sym_LF, - [224119] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10147), 1, - anon_sym_SEMI, - [224126] = 2, - ACTIONS(3925), 1, - anon_sym_LF, - ACTIONS(7080), 1, - sym_comment, - [224133] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10149), 1, - anon_sym_SEMI, - [224140] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10151), 1, - sym_identifier, - [224147] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10153), 1, - anon_sym_LPAREN2, - [224154] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10155), 1, - anon_sym_SEMI, - [224161] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10157), 1, - sym_identifier, - [224168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10159), 1, - anon_sym_while, - [224175] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10161), 1, - anon_sym_SEMI, - [224182] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10163), 1, - anon_sym_LPAREN2, - [224189] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10165), 1, - anon_sym_LPAREN2, - [224196] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10167), 1, - anon_sym_EQ, - [224203] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10169), 1, - sym_raw_string_content, - [224210] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10171), 1, - aux_sym_preproc_if_token2, - [224217] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6112), 1, - anon_sym_SEMI, - [224224] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8414), 1, - anon_sym_EQ, - [224231] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_GT, - [224238] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10173), 1, - anon_sym_SEMI, - [224245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10175), 1, - anon_sym_RPAREN, - [224252] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8412), 1, - anon_sym_SEMI, - [224259] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_BANG_EQ, - [224266] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_EQ_EQ, - [224273] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_AMP, - [224280] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4982), 1, - sym_identifier, - [224287] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10177), 1, - anon_sym_RPAREN, - [224294] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10179), 1, - anon_sym_SQUOTE, - [224301] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10181), 1, - anon_sym_SEMI, - [224308] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6110), 1, - anon_sym_SEMI, - [224315] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10183), 1, - anon_sym_SEMI, - [224322] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10185), 1, - anon_sym_RPAREN, - [224329] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10187), 1, - anon_sym_RPAREN, - [224336] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10189), 1, - anon_sym_RPAREN, - [224343] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10191), 1, - anon_sym_RPAREN, - [224350] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10193), 1, - anon_sym_LPAREN2, - [224357] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5953), 1, - anon_sym_RPAREN, - [224364] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6323), 1, - anon_sym_RBRACK, - [224371] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10195), 1, - anon_sym_while, - [224378] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10197), 1, - anon_sym_COLON, - [224385] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10199), 1, - anon_sym_LPAREN2, - [224392] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10201), 1, - anon_sym_STAR, - [224399] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10203), 1, - anon_sym_EQ, - [224406] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10205), 1, - sym_raw_string_content, - [224413] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_PIPE, - [224420] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6079), 1, - anon_sym_SEMI, - [224427] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8426), 1, - anon_sym_EQ, - [224434] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10207), 1, - anon_sym_SQUOTE, - [224441] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10209), 1, - sym_identifier, - [224448] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10211), 1, - anon_sym_RPAREN, - [224455] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10213), 1, - anon_sym_STAR, - [224462] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8980), 1, - anon_sym_RBRACE, - [224469] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10215), 1, - anon_sym_LPAREN2, - [224476] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8488), 1, - anon_sym_SEMI, - [224483] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10217), 1, - anon_sym_RPAREN, - [224490] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10219), 1, - anon_sym_LPAREN2, - [224497] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10221), 1, - anon_sym_RPAREN, - [224504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10223), 1, - anon_sym_EQ, - [224511] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10225), 1, - sym_raw_string_content, - [224518] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_EQ, - [224525] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10227), 1, - anon_sym_RPAREN, - [224532] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10229), 1, - anon_sym_RPAREN, - [224539] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10231), 1, - anon_sym_RPAREN, - [224546] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10233), 1, - anon_sym_LPAREN2, - [224553] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5186), 1, - anon_sym_RPAREN, - [224560] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10235), 1, - anon_sym_SEMI, - [224567] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10237), 1, - anon_sym_SEMI, - [224574] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10239), 1, - anon_sym_EQ, - [224581] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8448), 1, - anon_sym_EQ, - [224588] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10241), 1, - anon_sym_RPAREN, - [224595] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(10243), 1, - anon_sym_LF, - [224602] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10245), 1, - anon_sym_LPAREN2, - [224609] = 2, - ACTIONS(7080), 1, - sym_comment, - ACTIONS(9237), 1, - anon_sym_LF, - [224616] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8422), 1, - anon_sym_EQ, - [224623] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10247), 1, - anon_sym_SEMI, - [224630] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10249), 1, - anon_sym_LPAREN2, - [224637] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6069), 1, - anon_sym_SEMI, - [224644] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10251), 1, - anon_sym_DQUOTE, - [224651] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10253), 1, - anon_sym_LPAREN2, - [224658] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10255), 1, - anon_sym_LPAREN2, - [224665] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10257), 1, - sym_identifier, - [224672] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10259), 1, - sym_auto, - [224679] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_AMP_AMP, - [224686] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5961), 1, - anon_sym_RPAREN, - [224693] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10261), 1, - anon_sym_SEMI, - [224700] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10263), 1, - anon_sym_SEMI, - [224707] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_PERCENT, - [224714] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10265), 1, - anon_sym_SEMI, - [224721] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10267), 1, - anon_sym_COLON, - [224728] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10269), 1, - anon_sym_SLASH, - [224735] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10271), 1, - anon_sym_DOT_DOT_DOT, - [224742] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10274), 1, - anon_sym_DOT_DOT_DOT, - [224749] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10277), 1, - aux_sym_preproc_if_token2, - [224756] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_STAR, - [224763] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10279), 1, - aux_sym_preproc_if_token2, - [224770] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 1, - anon_sym_PLUS, - [224777] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10281), 1, - sym_identifier, - [224784] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10283), 1, - anon_sym_SEMI, - [224791] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10285), 1, - anon_sym_SEMI, - [224798] = 2, + [222015] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6052), 1, anon_sym_SEMI, - [224805] = 2, + [222022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9645), 1, + sym_identifier, + [222029] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9647), 1, + sym_identifier, + [222036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9649), 1, + sym_identifier, + [222043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9651), 1, + anon_sym_LPAREN2, + [222050] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9653), 1, + sym_raw_string_content, + [222057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5922), 1, + anon_sym_RPAREN, + [222064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9655), 1, + anon_sym_while, + [222071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9657), 1, + anon_sym_RPAREN, + [222078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8450), 1, + anon_sym_SEMI, + [222085] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5952), 1, + anon_sym_SEMI, + [222092] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9659), 1, + anon_sym_SEMI, + [222099] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9661), 1, + anon_sym_LPAREN2, + [222106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6036), 1, + anon_sym_SEMI, + [222113] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9663), 1, + aux_sym_preproc_if_token2, + [222120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6034), 1, + anon_sym_SEMI, + [222127] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9665), 1, + anon_sym_SQUOTE, + [222134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5070), 1, + sym_identifier, + [222141] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9667), 1, + aux_sym_preproc_if_token2, + [222148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8432), 1, + anon_sym_SEMI, + [222155] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6032), 1, + anon_sym_SEMI, + [222162] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7497), 1, + anon_sym_RPAREN, + [222169] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9669), 1, + anon_sym_LF, + [222176] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9671), 1, + sym_raw_string_delimiter, + [222183] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 1, + sym_identifier, + [222190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9673), 1, + sym_identifier, + [222197] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9675), 1, + anon_sym_LF, + [222204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9023), 1, + anon_sym_RBRACE, + [222211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6026), 1, + anon_sym_RPAREN, + [222218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6022), 1, + anon_sym_RPAREN, + [222225] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9677), 1, + sym_auto, + [222232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3591), 1, + anon_sym_SEMI, + [222239] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9679), 1, + anon_sym_SQUOTE, + [222246] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9681), 1, + anon_sym_RPAREN, + [222253] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9683), 1, + anon_sym_COLON, + [222260] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8588), 1, + anon_sym_SEMI, + [222267] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_AMP_EQ, + [222274] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9685), 1, + anon_sym_RPAREN, + [222281] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9687), 1, + sym_identifier, + [222288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_GT_GT_EQ, + [222295] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9689), 1, + anon_sym_STAR, + [222302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9321), 1, + anon_sym_RBRACE, + [222309] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9691), 1, + sym_identifier, + [222316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9693), 1, + sym_identifier, + [222323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5930), 1, + anon_sym_RBRACE, + [222330] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9695), 1, + sym_identifier, + [222337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9697), 1, + anon_sym_RPAREN, + [222344] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_LT_LT_EQ, + [222351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5881), 1, + anon_sym_RBRACE, + [222358] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9699), 1, + anon_sym_STAR, + [222365] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9701), 1, + sym_identifier, + [222372] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6002), 1, + anon_sym_SEMI, + [222379] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9703), 1, + anon_sym_RPAREN, + [222386] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9705), 1, + anon_sym_RPAREN, + [222393] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8636), 1, + anon_sym_SEMI, + [222400] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9707), 1, + anon_sym_SEMI, + [222407] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9709), 1, + anon_sym_SEMI, + [222414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9711), 1, + sym_auto, + [222421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9713), 1, + anon_sym_LPAREN2, + [222428] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9715), 1, + anon_sym_LF, + [222435] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9717), 1, + anon_sym_SEMI, + [222442] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8935), 1, + anon_sym_RBRACE, + [222449] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9719), 1, + anon_sym_RPAREN, + [222456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9721), 1, + anon_sym_SEMI, + [222463] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9723), 1, + aux_sym_preproc_if_token2, + [222470] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9725), 1, + anon_sym_SEMI, + [222477] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5988), 1, + anon_sym_RPAREN, + [222484] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5986), 1, + anon_sym_RPAREN, + [222491] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9727), 1, + sym_identifier, + [222498] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5978), 1, + anon_sym_RPAREN, + [222505] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9729), 1, + anon_sym_LF, + [222512] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5976), 1, + anon_sym_RPAREN, + [222519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9731), 1, + anon_sym_RPAREN, + [222526] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9733), 1, + anon_sym_RPAREN, + [222533] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5974), 1, + anon_sym_RPAREN, + [222540] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9735), 1, + anon_sym_SEMI, + [222547] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9737), 1, + anon_sym_DQUOTE, + [222554] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5968), 1, + anon_sym_RPAREN, + [222561] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5996), 1, + anon_sym_SEMI, + [222568] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9739), 1, + anon_sym_RPAREN, + [222575] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5994), 1, + anon_sym_SEMI, + [222582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9741), 1, + anon_sym_DQUOTE, + [222589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8424), 1, + anon_sym_SEMI, + [222596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9743), 1, + sym_identifier, + [222603] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4715), 1, + sym_identifier, + [222610] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5990), 1, + anon_sym_SEMI, + [222617] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7593), 1, + anon_sym_RPAREN, + [222624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5924), 1, + anon_sym_SEMI, + [222631] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9745), 1, + sym_raw_string_delimiter, + [222638] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9747), 1, + anon_sym_LF, + [222645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9749), 1, + sym_identifier, + [222652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9751), 1, + anon_sym_RPAREN, + [222659] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9753), 1, + anon_sym_RPAREN, + [222666] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9755), 1, + anon_sym_SQUOTE, + [222673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9757), 1, + anon_sym_RPAREN, + [222680] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9759), 1, + anon_sym_SEMI, + [222687] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6082), 1, + anon_sym_SEMI, + [222694] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8646), 1, + anon_sym_SEMI, + [222701] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3441), 1, + anon_sym_DOT_DOT_DOT, + [222708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9761), 1, + anon_sym_RPAREN, + [222715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9763), 1, + sym_identifier, + [222722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9765), 1, + anon_sym_LPAREN2, + [222729] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9767), 1, + anon_sym_COLON, + [222736] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7585), 1, + anon_sym_RPAREN, + [222743] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_STAR_EQ, + [222750] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9769), 1, + sym_identifier, + [222757] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9771), 1, + anon_sym_LBRACE, + [222764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9773), 1, + anon_sym_DQUOTE, + [222771] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9775), 1, + sym_identifier, + [222778] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_DASH_EQ, + [222785] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9777), 1, + sym_raw_string_delimiter, + [222792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9779), 1, + anon_sym_RPAREN, + [222799] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9781), 1, + anon_sym_LBRACE, + [222806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9783), 1, + anon_sym_RPAREN, + [222813] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_PIPE_PIPE, + [222820] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9785), 1, + anon_sym_SQUOTE, + [222827] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9787), 1, + sym_raw_string_content, + [222834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9789), 1, + anon_sym_SEMI, + [222841] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7583), 1, + anon_sym_RPAREN, + [222848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5873), 1, + anon_sym_RBRACE, + [222855] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9791), 1, + sym_raw_string_delimiter, + [222862] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9793), 1, + sym_identifier, + [222869] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5257), 1, + sym_identifier, + [222876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9795), 1, + anon_sym_RPAREN, + [222883] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9797), 1, + anon_sym_RPAREN, + [222890] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9799), 1, + sym_identifier, + [222897] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9801), 1, + anon_sym_RPAREN, + [222904] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9803), 1, + anon_sym_RPAREN, + [222911] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9805), 1, + anon_sym_RPAREN, + [222918] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9807), 1, + anon_sym_RPAREN, + [222925] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8446), 1, + anon_sym_SEMI, + [222932] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9809), 1, + anon_sym_RPAREN, + [222939] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9811), 1, + anon_sym_LPAREN2, + [222946] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9813), 1, + anon_sym_RPAREN, + [222953] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9815), 1, + anon_sym_SEMI, + [222960] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9817), 1, + anon_sym_LF, + [222967] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8598), 1, + anon_sym_SEMI, + [222974] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9819), 1, + anon_sym_RPAREN, + [222981] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(8820), 1, + anon_sym_LF, + [222988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9821), 1, + sym_identifier, + [222995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9823), 1, + anon_sym_RPAREN, + [223002] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9825), 1, + anon_sym_STAR, + [223009] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9827), 1, + sym_identifier, + [223016] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7563), 1, + anon_sym_RPAREN, + [223023] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6097), 1, + anon_sym_SEMI, + [223030] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6076), 1, + anon_sym_RPAREN, + [223037] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9829), 1, + anon_sym_LF, + [223044] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9831), 1, + anon_sym_RPAREN, + [223051] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_PLUS_EQ, + [223058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + anon_sym_LPAREN2, + [223065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9835), 1, + anon_sym_LBRACE, + [223072] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_PERCENT_EQ, + [223079] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6072), 1, + anon_sym_RPAREN, + [223086] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9837), 1, + anon_sym_SEMI, + [223093] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9839), 1, + anon_sym_SEMI, + [223100] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8706), 1, + anon_sym_SEMI, + [223107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + anon_sym_RPAREN, + [223114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9841), 1, + anon_sym_LPAREN2, + [223121] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9843), 1, + anon_sym_COLON, + [223128] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_SLASH_EQ, + [223135] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9845), 1, + anon_sym_RPAREN, + [223142] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_EQ, + [223149] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9033), 1, + anon_sym_RBRACE, + [223156] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6070), 1, + anon_sym_RPAREN, + [223163] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9847), 1, + anon_sym_LPAREN2, + [223170] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6062), 1, + anon_sym_RPAREN, + [223177] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9849), 1, + anon_sym_LPAREN2, + [223184] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9851), 1, + sym_raw_string_delimiter, + [223191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7505), 1, + anon_sym_RPAREN, + [223198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9853), 1, + anon_sym_RPAREN, + [223205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6107), 1, + anon_sym_RPAREN, + [223212] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9855), 1, + anon_sym_SEMI, + [223219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6038), 1, + anon_sym_SEMI, + [223226] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + anon_sym_LPAREN2, + [223233] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5939), 1, + anon_sym_RBRACE, + [223240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9859), 1, + anon_sym_SEMI, + [223247] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9861), 1, + aux_sym_preproc_if_token2, + [223254] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9863), 1, + anon_sym_DQUOTE, + [223261] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9865), 1, + anon_sym_SEMI, + [223268] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6109), 1, + anon_sym_RPAREN, + [223275] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9867), 1, + anon_sym_RPAREN, + [223282] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9869), 1, + anon_sym_SEMI, + [223289] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9871), 1, + anon_sym_RPAREN, + [223296] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9873), 1, + sym_identifier, + [223303] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6113), 1, + anon_sym_RPAREN, + [223310] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6115), 1, + anon_sym_RPAREN, + [223317] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9875), 1, + anon_sym_while, + [223324] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6281), 1, + anon_sym_RBRACK, + [223331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9877), 1, + anon_sym_LPAREN2, + [223338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9879), 1, + anon_sym_RPAREN, + [223345] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9881), 1, + sym_identifier, + [223352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6030), 1, + anon_sym_RPAREN, + [223359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9883), 1, + anon_sym_RPAREN, + [223366] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9885), 1, + anon_sym_EQ, + [223373] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9887), 1, + sym_raw_string_content, + [223380] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9889), 1, + anon_sym_LF, + [223387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9891), 1, + anon_sym_SEMI, + [223394] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6024), 1, + anon_sym_RPAREN, + [223401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9893), 1, + anon_sym_SEMI, + [223408] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9895), 1, + aux_sym_preproc_if_token2, + [223415] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9897), 1, + anon_sym_SEMI, + [223422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9072), 1, + anon_sym_RBRACE, + [223429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9899), 1, + aux_sym_preproc_if_token2, + [223436] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9901), 1, + sym_identifier, + [223443] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9903), 1, + aux_sym_preproc_if_token2, + [223450] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_GT_GT, + [223457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8524), 1, + anon_sym_SEMI, + [223464] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6068), 1, + anon_sym_SEMI, + [223471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9905), 1, + anon_sym_RPAREN, + [223478] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_LT_LT, + [223485] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9907), 1, + aux_sym_preproc_if_token2, + [223492] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6121), 1, + anon_sym_RPAREN, + [223499] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9909), 1, + anon_sym_SEMI, + [223506] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9911), 1, + aux_sym_preproc_if_token2, + [223513] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_LT, + [223520] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6123), 1, + anon_sym_RPAREN, + [223527] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3667), 1, + anon_sym_SEMI, + [223534] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9913), 1, + sym_auto, + [223541] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9915), 1, + anon_sym_LF, + [223548] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6012), 1, + anon_sym_SEMI, + [223555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9917), 1, + anon_sym_EQ, + [223562] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9919), 1, + anon_sym_SEMI, + [223569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6095), 1, + anon_sym_SEMI, + [223576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9921), 1, + anon_sym_SEMI, + [223583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6117), 1, + anon_sym_SEMI, + [223590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6010), 1, + anon_sym_SEMI, + [223597] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8410), 1, + anon_sym_EQ, + [223604] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9923), 1, + anon_sym_STAR, + [223611] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9925), 1, + anon_sym_RPAREN, + [223618] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5750), 1, + anon_sym_SEMI, + [223625] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9927), 1, + anon_sym_SEMI, + [223632] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9929), 1, + anon_sym_SEMI, + [223639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9931), 1, + anon_sym_SEMI, + [223646] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9933), 1, + anon_sym_SEMI, + [223653] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9935), 1, + anon_sym_RPAREN, + [223660] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9937), 1, + anon_sym_SEMI, + [223667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6151), 1, + anon_sym_SEMI, + [223674] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9939), 1, + anon_sym_SEMI, + [223681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9941), 1, + anon_sym_SEMI, + [223688] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9943), 1, + anon_sym_LF, + [223695] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9945), 1, + anon_sym_RPAREN, + [223702] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9947), 1, + anon_sym_RPAREN, + [223709] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9949), 1, + anon_sym_DQUOTE, + [223716] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(8882), 1, + anon_sym_LF, + [223723] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5966), 1, + anon_sym_SEMI, + [223730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9951), 1, + aux_sym_preproc_if_token2, + [223737] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9953), 1, + aux_sym_preproc_if_token2, + [223744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9955), 1, + anon_sym_LPAREN2, + [223751] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9957), 1, + aux_sym_preproc_if_token2, + [223758] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9055), 1, + anon_sym_RPAREN, + [223765] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6155), 1, + anon_sym_RPAREN, + [223772] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_LT_EQ, + [223779] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5964), 1, + anon_sym_SEMI, + [223786] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9959), 1, + aux_sym_preproc_if_token2, + [223793] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9961), 1, + anon_sym_DQUOTE, + [223800] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6161), 1, + anon_sym_RPAREN, + [223807] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9963), 1, + anon_sym_SEMI, + [223814] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9965), 1, + anon_sym_SEMI, + [223821] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9967), 1, + anon_sym_RPAREN, + [223828] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9969), 1, + anon_sym_RPAREN, + [223835] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9971), 1, + anon_sym_RPAREN, + [223842] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9973), 1, + anon_sym_RPAREN, + [223849] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9975), 1, + anon_sym_RPAREN, + [223856] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5082), 1, + anon_sym_RPAREN, + [223863] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6014), 1, + anon_sym_RPAREN, + [223870] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8628), 1, + anon_sym_SEMI, + [223877] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9977), 1, + anon_sym_LPAREN2, + [223884] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9979), 1, + anon_sym_SEMI, + [223891] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9981), 1, + anon_sym_LF, + [223898] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9983), 1, + anon_sym_RPAREN, + [223905] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9985), 1, + anon_sym_SEMI, + [223912] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9987), 1, + anon_sym_RPAREN, + [223919] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9989), 1, + sym_identifier, + [223926] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9991), 1, + anon_sym_SEMI, + [223933] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9993), 1, + anon_sym_DQUOTE, + [223940] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + anon_sym_RPAREN, + [223947] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9995), 1, + anon_sym_EQ, + [223954] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8904), 1, + anon_sym_SEMI, + [223961] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9997), 1, + sym_identifier, + [223968] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9999), 1, + anon_sym_LPAREN2, + [223975] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10001), 1, + anon_sym_RPAREN, + [223982] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(8917), 1, + anon_sym_LF, + [223989] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10003), 1, + aux_sym_preproc_if_token2, + [223996] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10005), 1, + anon_sym_DQUOTE, + [224003] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(10007), 1, + anon_sym_LF, + [224010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + [224017] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10009), 1, + sym_identifier, + [224024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10011), 1, + anon_sym_SEMI, + [224031] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10013), 1, + anon_sym_RPAREN, + [224038] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10015), 1, + anon_sym_SEMI, + [224045] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10017), 1, + sym_auto, + [224052] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5984), 1, + anon_sym_SEMI, + [224059] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10019), 1, + aux_sym_preproc_if_token2, + [224066] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10021), 1, + anon_sym_SEMI, + [224073] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10023), 1, + aux_sym_preproc_if_token2, + [224080] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10025), 1, + aux_sym_preproc_if_token2, + [224087] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(10027), 1, + anon_sym_LF, + [224094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10029), 1, + anon_sym_RPAREN, + [224101] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10031), 1, + anon_sym_SEMI, + [224108] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10033), 1, + sym_identifier, + [224115] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10035), 1, + anon_sym_STAR, + [224122] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_GT_EQ, + [224129] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6235), 1, + anon_sym_RBRACK, + [224136] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10037), 1, + anon_sym_SEMI, + [224143] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10039), 1, + sym_auto, + [224150] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10041), 1, + anon_sym_SEMI, + [224157] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10043), 1, + anon_sym_SEMI, + [224164] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10045), 1, + anon_sym_SEMI, + [224171] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10047), 1, + anon_sym_SEMI, + [224178] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10049), 1, + anon_sym_SEMI, + [224185] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8582), 1, + anon_sym_SEMI, + [224192] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10051), 1, + ts_builtin_sym_end, + [224199] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10053), 1, + anon_sym_SEMI, + [224206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10055), 1, + anon_sym_RPAREN, + [224213] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6004), 1, + anon_sym_RPAREN, + [224220] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_RPAREN, + [224227] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10059), 1, + anon_sym_SQUOTE, + [224234] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10061), 1, + sym_identifier, + [224241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10063), 1, + anon_sym_LPAREN2, + [224248] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10065), 1, + anon_sym_RPAREN, + [224255] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10067), 1, + anon_sym_RPAREN, + [224262] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10069), 1, + anon_sym_RPAREN, + [224269] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10071), 1, + anon_sym_SEMI, + [224276] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10073), 1, + anon_sym_RPAREN, + [224283] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8420), 1, + anon_sym_SEMI, + [224290] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10075), 1, + anon_sym_LPAREN2, + [224297] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10077), 1, + sym_identifier, + [224304] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10079), 1, + anon_sym_LPAREN2, + [224311] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(10081), 1, + anon_sym_LF, + [224318] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5842), 1, + anon_sym_RBRACE, + [224325] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10083), 1, + anon_sym_LPAREN2, + [224332] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10085), 1, + aux_sym_preproc_if_token2, + [224339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10087), 1, + sym_identifier, + [224346] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10089), 1, + anon_sym_LPAREN2, + [224353] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(10091), 1, + anon_sym_LF, + [224360] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10093), 1, + anon_sym_RPAREN, + [224367] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10095), 1, + anon_sym_LPAREN2, + [224374] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8722), 1, + anon_sym_RBRACE, + [224381] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10097), 1, + aux_sym_preproc_if_token2, + [224388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10099), 1, + anon_sym_while, + [224395] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10101), 1, + anon_sym_RPAREN, + [224402] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10103), 1, + anon_sym_LPAREN2, + [224409] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10105), 1, + anon_sym_SEMI, + [224416] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8708), 1, + anon_sym_SEMI, + [224423] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10107), 1, + anon_sym_RPAREN, + [224430] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10109), 1, + anon_sym_SEMI, + [224437] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10111), 1, + anon_sym_EQ, + [224444] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10113), 1, + sym_raw_string_content, + [224451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10115), 1, + sym_identifier, + [224458] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3570), 1, + anon_sym_SEMI, + [224465] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10117), 1, + anon_sym_COLON, + [224472] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6060), 1, + anon_sym_SEMI, + [224479] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10119), 1, + anon_sym_RPAREN, + [224486] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9123), 1, + anon_sym_RBRACE, + [224493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8452), 1, + anon_sym_EQ, + [224500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10121), 1, + sym_auto, + [224507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10123), 1, + anon_sym_RPAREN, + [224514] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10125), 1, + anon_sym_RPAREN, + [224521] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10127), 1, + sym_auto, + [224528] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10129), 1, + anon_sym_RPAREN, + [224535] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10131), 1, + sym_identifier, + [224542] = 2, + ACTIONS(3907), 1, + anon_sym_LF, + ACTIONS(7086), 1, + sym_comment, + [224549] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(10133), 1, + anon_sym_LF, + [224556] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10135), 1, + anon_sym_STAR, + [224563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10137), 1, + anon_sym_SEMI, + [224570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10139), 1, + aux_sym_preproc_if_token2, + [224577] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10141), 1, + anon_sym_SEMI, + [224584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10143), 1, + sym_identifier, + [224591] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(10145), 1, + anon_sym_LF, + [224598] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10147), 1, + anon_sym_SEMI, + [224605] = 2, + ACTIONS(3915), 1, + anon_sym_LF, + ACTIONS(7086), 1, + sym_comment, + [224612] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10149), 1, + anon_sym_SEMI, + [224619] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10151), 1, + sym_identifier, + [224626] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10153), 1, + anon_sym_LPAREN2, + [224633] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10155), 1, + anon_sym_SEMI, + [224640] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10157), 1, + sym_identifier, + [224647] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10159), 1, + anon_sym_while, + [224654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10161), 1, + anon_sym_SEMI, + [224661] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10163), 1, + anon_sym_LPAREN2, + [224668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10165), 1, + anon_sym_LPAREN2, + [224675] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10167), 1, + anon_sym_EQ, + [224682] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10169), 1, + sym_raw_string_content, + [224689] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10171), 1, + aux_sym_preproc_if_token2, + [224696] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6119), 1, + anon_sym_SEMI, + [224703] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8414), 1, + anon_sym_EQ, + [224710] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_GT, + [224717] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10173), 1, + anon_sym_SEMI, + [224724] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10175), 1, + anon_sym_RPAREN, + [224731] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8412), 1, + anon_sym_SEMI, + [224738] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_BANG_EQ, + [224745] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_EQ_EQ, + [224752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_AMP, + [224759] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 1, + sym_identifier, + [224766] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10177), 1, + anon_sym_RPAREN, + [224773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10179), 1, + anon_sym_SQUOTE, + [224780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10181), 1, + anon_sym_SEMI, + [224787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_SEMI, + [224794] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10183), 1, + anon_sym_SEMI, + [224801] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10185), 1, + anon_sym_RPAREN, + [224808] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10187), 1, + anon_sym_RPAREN, + [224815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10189), 1, + anon_sym_RPAREN, + [224822] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10191), 1, + anon_sym_RPAREN, + [224829] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10193), 1, + anon_sym_LPAREN2, + [224836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6016), 1, + anon_sym_RPAREN, + [224843] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6305), 1, + anon_sym_RBRACK, + [224850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10195), 1, + anon_sym_while, + [224857] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10197), 1, + anon_sym_COLON, + [224864] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10199), 1, + anon_sym_LPAREN2, + [224871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10201), 1, + anon_sym_STAR, + [224878] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10203), 1, + anon_sym_EQ, + [224885] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10205), 1, + sym_raw_string_content, + [224892] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_PIPE, + [224899] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6088), 1, + anon_sym_SEMI, + [224906] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8426), 1, + anon_sym_EQ, + [224913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10207), 1, + anon_sym_SQUOTE, + [224920] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10209), 1, + sym_identifier, + [224927] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10211), 1, + anon_sym_RPAREN, + [224934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10213), 1, + anon_sym_STAR, + [224941] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8980), 1, + anon_sym_RBRACE, + [224948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10215), 1, + anon_sym_LPAREN2, + [224955] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8488), 1, + anon_sym_SEMI, + [224962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10217), 1, + anon_sym_RPAREN, + [224969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10219), 1, + anon_sym_LPAREN2, + [224976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10221), 1, + anon_sym_RPAREN, + [224983] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10223), 1, + anon_sym_EQ, + [224990] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10225), 1, + sym_raw_string_content, + [224997] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_EQ, + [225004] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10227), 1, + anon_sym_RPAREN, + [225011] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10229), 1, + anon_sym_RPAREN, + [225018] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10231), 1, + anon_sym_RPAREN, + [225025] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10233), 1, + anon_sym_LPAREN2, + [225032] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5190), 1, + anon_sym_RPAREN, + [225039] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10235), 1, + anon_sym_SEMI, + [225046] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10237), 1, + anon_sym_SEMI, + [225053] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10239), 1, + anon_sym_EQ, + [225060] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8448), 1, + anon_sym_EQ, + [225067] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10241), 1, + anon_sym_RPAREN, + [225074] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(10243), 1, + anon_sym_LF, + [225081] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10245), 1, + anon_sym_LPAREN2, + [225088] = 2, + ACTIONS(7086), 1, + sym_comment, + ACTIONS(9237), 1, + anon_sym_LF, + [225095] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8422), 1, + anon_sym_EQ, + [225102] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10247), 1, + anon_sym_SEMI, + [225109] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10249), 1, + anon_sym_LPAREN2, + [225116] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6074), 1, + anon_sym_SEMI, + [225123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10251), 1, + anon_sym_DQUOTE, + [225130] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10253), 1, + anon_sym_LPAREN2, + [225137] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10255), 1, + anon_sym_LPAREN2, + [225144] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10257), 1, + sym_identifier, + [225151] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10259), 1, + sym_auto, + [225158] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_AMP_AMP, + [225165] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6056), 1, + anon_sym_RPAREN, + [225172] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10261), 1, + anon_sym_SEMI, + [225179] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10263), 1, + anon_sym_SEMI, + [225186] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_PERCENT, + [225193] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10265), 1, + anon_sym_SEMI, + [225200] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10267), 1, + anon_sym_COLON, + [225207] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10269), 1, + anon_sym_SLASH, + [225214] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10271), 1, + anon_sym_DOT_DOT_DOT, + [225221] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10274), 1, + anon_sym_DOT_DOT_DOT, + [225228] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10277), 1, + aux_sym_preproc_if_token2, + [225235] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_STAR, + [225242] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10279), 1, + aux_sym_preproc_if_token2, + [225249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_PLUS, + [225256] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10281), 1, + sym_identifier, + [225263] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10283), 1, + anon_sym_SEMI, + [225270] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10285), 1, + anon_sym_SEMI, + [225277] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6066), 1, + anon_sym_SEMI, + [225284] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10287), 1, sym_raw_string_content, - [224812] = 2, + [225291] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10289), 1, anon_sym_SEMI, - [224819] = 2, + [225298] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10291), 1, anon_sym_DOT_DOT_DOT, - [224826] = 2, + [225305] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10294), 1, anon_sym_SEMI, - [224833] = 2, + [225312] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10296), 1, anon_sym_DOT_DOT_DOT, - [224840] = 2, + [225319] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10299), 1, anon_sym_DOT_DOT_DOT, - [224847] = 2, + [225326] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10302), 1, anon_sym_DOT_DOT_DOT, - [224854] = 2, + [225333] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10305), 1, anon_sym_RPAREN, - [224861] = 2, + [225340] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10307), 1, anon_sym_LPAREN2, - [224868] = 2, + [225347] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10309), 1, anon_sym_RPAREN, - [224875] = 2, + [225354] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10311), 1, anon_sym_LPAREN2, - [224882] = 2, + [225361] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10313), 1, anon_sym_LPAREN2, - [224889] = 2, + [225368] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10315), 1, sym_identifier, - [224896] = 2, + [225375] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10317), 1, anon_sym_RPAREN, - [224903] = 2, + [225382] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9551), 1, anon_sym_CARET, - [224910] = 2, + [225389] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10319), 1, anon_sym_COLON, - [224917] = 2, + [225396] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10321), 1, anon_sym_DOT_DOT_DOT, - [224924] = 2, + [225403] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10324), 1, anon_sym_LPAREN2, - [224931] = 2, + [225410] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9551), 1, anon_sym_DASH, - [224938] = 2, + [225417] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10326), 1, sym_identifier, - [224945] = 2, + [225424] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9551), 1, anon_sym_COMMA, - [224952] = 2, + [225431] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10328), 1, sym_raw_string_content, - [224959] = 2, + [225438] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10330), 1, anon_sym_DOT_DOT_DOT, - [224966] = 2, + [225445] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9206), 1, anon_sym_RBRACE, - [224973] = 2, + [225452] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10333), 1, anon_sym_DOT_DOT_DOT, - [224980] = 2, + [225459] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10336), 1, anon_sym_RPAREN, - [224987] = 2, + [225466] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10338), 1, anon_sym_LPAREN2, - [224994] = 2, + [225473] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10340), 1, anon_sym_LPAREN2, - [225001] = 2, + [225480] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10342), 1, sym_identifier, - [225008] = 2, + [225487] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10344), 1, anon_sym_RPAREN, - [225015] = 2, + [225494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6142), 1, + ACTIONS(6153), 1, anon_sym_RPAREN, - [225022] = 2, + [225501] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10346), 1, anon_sym_DOT_DOT_DOT, - [225029] = 2, - ACTIONS(7080), 1, + [225508] = 2, + ACTIONS(7086), 1, sym_comment, ACTIONS(10349), 1, anon_sym_LF, - [225036] = 2, + [225515] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10351), 1, sym_identifier, - [225043] = 2, + [225522] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10353), 1, anon_sym_RPAREN, - [225050] = 2, + [225529] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10355), 1, sym_raw_string_content, - [225057] = 2, + [225536] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10357), 1, aux_sym_preproc_if_token2, - [225064] = 2, + [225543] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10359), 1, anon_sym_SEMI, - [225071] = 2, + [225550] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10361), 1, aux_sym_preproc_if_token2, - [225078] = 2, + [225557] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10363), 1, anon_sym_DQUOTE, - [225085] = 2, + [225564] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10365), 1, anon_sym_LPAREN2, - [225092] = 2, + [225571] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10367), 1, anon_sym_LPAREN2, - [225099] = 2, + [225578] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10369), 1, sym_identifier, - [225106] = 2, + [225585] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10371), 1, sym_auto, - [225113] = 2, + [225592] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10373), 1, sym_identifier, - [225120] = 2, + [225599] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10375), 1, anon_sym_SEMI, - [225127] = 2, + [225606] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10377), 1, sym_raw_string_content, - [225134] = 2, + [225613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6067), 1, + ACTIONS(6080), 1, anon_sym_RPAREN, - [225141] = 2, + [225620] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10379), 1, anon_sym_LPAREN2, - [225148] = 2, + [225627] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10381), 1, sym_identifier, - [225155] = 2, + [225634] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10383), 1, anon_sym_DOT_DOT_DOT, - [225162] = 2, + [225641] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10386), 1, sym_identifier, - [225169] = 2, + [225648] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10388), 1, sym_raw_string_content, - [225176] = 2, + [225655] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10390), 1, anon_sym_LPAREN2, - [225183] = 2, + [225662] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10392), 1, sym_identifier, - [225190] = 2, + [225669] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10394), 1, sym_identifier, - [225197] = 2, + [225676] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10396), 1, sym_identifier, - [225204] = 2, + [225683] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10398), 1, anon_sym_LPAREN2, - [225211] = 2, + [225690] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10400), 1, anon_sym_LPAREN2, - [225218] = 2, + [225697] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10402), 1, anon_sym_RPAREN, - [225225] = 2, + [225704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, + ACTIONS(6064), 1, anon_sym_RPAREN, - [225232] = 2, + [225711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6114), 1, + ACTIONS(6125), 1, anon_sym_RPAREN, - [225239] = 2, + [225718] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10404), 1, anon_sym_DOT_DOT_DOT, - [225246] = 2, + [225725] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10407), 1, anon_sym_DOT_DOT_DOT, - [225253] = 2, + [225732] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10410), 1, anon_sym_DOT_DOT_DOT, - [225260] = 2, + [225739] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10412), 1, anon_sym_SEMI, - [225267] = 2, + [225746] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10414), 1, anon_sym_SEMI, - [225274] = 2, + [225753] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10416), 1, anon_sym_STAR, - [225281] = 2, + [225760] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10418), 1, anon_sym_SEMI, - [225288] = 2, + [225767] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10420), 1, aux_sym_preproc_if_token2, - [225295] = 2, + [225774] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10422), 1, aux_sym_preproc_if_token2, - [225302] = 2, + [225781] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10424), 1, anon_sym_LPAREN2, - [225309] = 2, + [225788] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10426), 1, anon_sym_SEMI, - [225316] = 2, + [225795] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10428), 1, anon_sym_LPAREN2, - [225323] = 2, + [225802] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10430), 1, sym_identifier, - [225330] = 2, + [225809] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10432), 1, anon_sym_LPAREN2, - [225337] = 2, + [225816] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10434), 1, aux_sym_preproc_if_token2, - [225344] = 2, + [225823] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10436), 1, anon_sym_LPAREN2, - [225351] = 2, + [225830] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10438), 1, @@ -406288,5425 +407974,5424 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1812)] = 0, - [SMALL_STATE(1813)] = 71, - [SMALL_STATE(1814)] = 196, - [SMALL_STATE(1815)] = 267, - [SMALL_STATE(1816)] = 338, - [SMALL_STATE(1817)] = 409, - [SMALL_STATE(1818)] = 484, - [SMALL_STATE(1819)] = 561, - [SMALL_STATE(1820)] = 632, - [SMALL_STATE(1821)] = 711, - [SMALL_STATE(1822)] = 782, - [SMALL_STATE(1823)] = 861, - [SMALL_STATE(1824)] = 938, - [SMALL_STATE(1825)] = 1009, - [SMALL_STATE(1826)] = 1088, - [SMALL_STATE(1827)] = 1178, - [SMALL_STATE(1828)] = 1256, - [SMALL_STATE(1829)] = 1334, - [SMALL_STATE(1830)] = 1404, - [SMALL_STATE(1831)] = 1474, - [SMALL_STATE(1832)] = 1544, - [SMALL_STATE(1833)] = 1620, - [SMALL_STATE(1834)] = 1696, - [SMALL_STATE(1835)] = 1774, - [SMALL_STATE(1836)] = 1858, - [SMALL_STATE(1837)] = 1928, - [SMALL_STATE(1838)] = 2006, - [SMALL_STATE(1839)] = 2084, - [SMALL_STATE(1840)] = 2165, - [SMALL_STATE(1841)] = 2246, - [SMALL_STATE(1842)] = 2373, - [SMALL_STATE(1843)] = 2454, - [SMALL_STATE(1844)] = 2535, - [SMALL_STATE(1845)] = 2612, - [SMALL_STATE(1846)] = 2693, - [SMALL_STATE(1847)] = 2766, - [SMALL_STATE(1848)] = 2843, - [SMALL_STATE(1849)] = 2924, - [SMALL_STATE(1850)] = 3005, - [SMALL_STATE(1851)] = 3086, - [SMALL_STATE(1852)] = 3213, - [SMALL_STATE(1853)] = 3294, - [SMALL_STATE(1854)] = 3378, - [SMALL_STATE(1855)] = 3446, - [SMALL_STATE(1856)] = 3526, - [SMALL_STATE(1857)] = 3602, - [SMALL_STATE(1858)] = 3682, - [SMALL_STATE(1859)] = 3762, - [SMALL_STATE(1860)] = 3842, - [SMALL_STATE(1861)] = 3966, - [SMALL_STATE(1862)] = 4034, - [SMALL_STATE(1863)] = 4102, - [SMALL_STATE(1864)] = 4182, - [SMALL_STATE(1865)] = 4256, - [SMALL_STATE(1866)] = 4340, - [SMALL_STATE(1867)] = 4420, - [SMALL_STATE(1868)] = 4544, - [SMALL_STATE(1869)] = 4612, - [SMALL_STATE(1870)] = 4696, - [SMALL_STATE(1871)] = 4764, - [SMALL_STATE(1872)] = 4832, - [SMALL_STATE(1873)] = 4912, - [SMALL_STATE(1874)] = 4986, - [SMALL_STATE(1875)] = 5066, - [SMALL_STATE(1876)] = 5150, - [SMALL_STATE(1877)] = 5230, - [SMALL_STATE(1878)] = 5301, - [SMALL_STATE(1879)] = 5368, - [SMALL_STATE(1880)] = 5441, - [SMALL_STATE(1881)] = 5512, - [SMALL_STATE(1882)] = 5579, - [SMALL_STATE(1883)] = 5646, - [SMALL_STATE(1884)] = 5713, - [SMALL_STATE(1885)] = 5786, - [SMALL_STATE(1886)] = 5861, - [SMALL_STATE(1887)] = 5982, - [SMALL_STATE(1888)] = 6051, - [SMALL_STATE(1889)] = 6118, - [SMALL_STATE(1890)] = 6187, - [SMALL_STATE(1891)] = 6254, - [SMALL_STATE(1892)] = 6323, - [SMALL_STATE(1893)] = 6394, - [SMALL_STATE(1894)] = 6461, - [SMALL_STATE(1895)] = 6528, - [SMALL_STATE(1896)] = 6595, - [SMALL_STATE(1897)] = 6662, - [SMALL_STATE(1898)] = 6729, - [SMALL_STATE(1899)] = 6796, - [SMALL_STATE(1900)] = 6867, - [SMALL_STATE(1901)] = 6934, - [SMALL_STATE(1902)] = 7005, - [SMALL_STATE(1903)] = 7077, - [SMALL_STATE(1904)] = 7143, - [SMALL_STATE(1905)] = 7209, - [SMALL_STATE(1906)] = 7275, - [SMALL_STATE(1907)] = 7349, - [SMALL_STATE(1908)] = 7415, - [SMALL_STATE(1909)] = 7481, - [SMALL_STATE(1910)] = 7555, - [SMALL_STATE(1911)] = 7637, - [SMALL_STATE(1912)] = 7703, - [SMALL_STATE(1913)] = 7769, - [SMALL_STATE(1914)] = 7835, - [SMALL_STATE(1915)] = 7901, - [SMALL_STATE(1916)] = 7979, - [SMALL_STATE(1917)] = 8045, - [SMALL_STATE(1918)] = 8115, - [SMALL_STATE(1919)] = 8181, - [SMALL_STATE(1920)] = 8263, - [SMALL_STATE(1921)] = 8345, - [SMALL_STATE(1922)] = 8411, - [SMALL_STATE(1923)] = 8483, - [SMALL_STATE(1924)] = 8549, - [SMALL_STATE(1925)] = 8621, - [SMALL_STATE(1926)] = 8687, - [SMALL_STATE(1927)] = 8765, - [SMALL_STATE(1928)] = 8833, - [SMALL_STATE(1929)] = 8899, - [SMALL_STATE(1930)] = 8969, - [SMALL_STATE(1931)] = 9035, - [SMALL_STATE(1932)] = 9113, - [SMALL_STATE(1933)] = 9191, - [SMALL_STATE(1934)] = 9269, - [SMALL_STATE(1935)] = 9351, - [SMALL_STATE(1936)] = 9417, - [SMALL_STATE(1937)] = 9485, - [SMALL_STATE(1938)] = 9555, - [SMALL_STATE(1939)] = 9633, - [SMALL_STATE(1940)] = 9711, - [SMALL_STATE(1941)] = 9777, - [SMALL_STATE(1942)] = 9855, - [SMALL_STATE(1943)] = 9923, - [SMALL_STATE(1944)] = 9991, - [SMALL_STATE(1945)] = 10069, - [SMALL_STATE(1946)] = 10134, - [SMALL_STATE(1947)] = 10205, - [SMALL_STATE(1948)] = 10272, - [SMALL_STATE(1949)] = 10349, - [SMALL_STATE(1950)] = 10416, - [SMALL_STATE(1951)] = 10485, - [SMALL_STATE(1952)] = 10550, - [SMALL_STATE(1953)] = 10663, - [SMALL_STATE(1954)] = 10734, - [SMALL_STATE(1955)] = 10801, - [SMALL_STATE(1956)] = 10914, - [SMALL_STATE(1957)] = 10979, - [SMALL_STATE(1958)] = 11092, - [SMALL_STATE(1959)] = 11169, - [SMALL_STATE(1960)] = 11246, - [SMALL_STATE(1961)] = 11359, - [SMALL_STATE(1962)] = 11426, - [SMALL_STATE(1963)] = 11539, - [SMALL_STATE(1964)] = 11604, - [SMALL_STATE(1965)] = 11675, - [SMALL_STATE(1966)] = 11740, - [SMALL_STATE(1967)] = 11809, - [SMALL_STATE(1968)] = 11878, - [SMALL_STATE(1969)] = 11955, - [SMALL_STATE(1970)] = 12068, - [SMALL_STATE(1971)] = 12137, - [SMALL_STATE(1972)] = 12250, - [SMALL_STATE(1973)] = 12317, - [SMALL_STATE(1974)] = 12394, - [SMALL_STATE(1975)] = 12471, - [SMALL_STATE(1976)] = 12548, - [SMALL_STATE(1977)] = 12625, - [SMALL_STATE(1978)] = 12702, - [SMALL_STATE(1979)] = 12767, - [SMALL_STATE(1980)] = 12880, - [SMALL_STATE(1981)] = 12993, - [SMALL_STATE(1982)] = 13062, - [SMALL_STATE(1983)] = 13131, - [SMALL_STATE(1984)] = 13200, - [SMALL_STATE(1985)] = 13313, - [SMALL_STATE(1986)] = 13378, - [SMALL_STATE(1987)] = 13449, - [SMALL_STATE(1988)] = 13520, - [SMALL_STATE(1989)] = 13633, - [SMALL_STATE(1990)] = 13702, - [SMALL_STATE(1991)] = 13766, - [SMALL_STATE(1992)] = 13830, - [SMALL_STATE(1993)] = 13894, - [SMALL_STATE(1994)] = 13958, - [SMALL_STATE(1995)] = 14022, - [SMALL_STATE(1996)] = 14086, - [SMALL_STATE(1997)] = 14150, - [SMALL_STATE(1998)] = 14214, - [SMALL_STATE(1999)] = 14278, - [SMALL_STATE(2000)] = 14342, - [SMALL_STATE(2001)] = 14406, - [SMALL_STATE(2002)] = 14470, - [SMALL_STATE(2003)] = 14534, - [SMALL_STATE(2004)] = 14598, - [SMALL_STATE(2005)] = 14662, - [SMALL_STATE(2006)] = 14726, - [SMALL_STATE(2007)] = 14790, - [SMALL_STATE(2008)] = 14858, - [SMALL_STATE(2009)] = 14938, - [SMALL_STATE(2010)] = 15002, - [SMALL_STATE(2011)] = 15066, - [SMALL_STATE(2012)] = 15130, - [SMALL_STATE(2013)] = 15194, - [SMALL_STATE(2014)] = 15258, - [SMALL_STATE(2015)] = 15322, - [SMALL_STATE(2016)] = 15386, - [SMALL_STATE(2017)] = 15450, - [SMALL_STATE(2018)] = 15514, - [SMALL_STATE(2019)] = 15578, - [SMALL_STATE(2020)] = 15642, - [SMALL_STATE(2021)] = 15706, - [SMALL_STATE(2022)] = 15770, - [SMALL_STATE(2023)] = 15834, - [SMALL_STATE(2024)] = 15898, - [SMALL_STATE(2025)] = 15962, - [SMALL_STATE(2026)] = 16026, - [SMALL_STATE(2027)] = 16090, - [SMALL_STATE(2028)] = 16154, - [SMALL_STATE(2029)] = 16218, - [SMALL_STATE(2030)] = 16282, - [SMALL_STATE(2031)] = 16346, - [SMALL_STATE(2032)] = 16410, - [SMALL_STATE(2033)] = 16474, - [SMALL_STATE(2034)] = 16538, - [SMALL_STATE(2035)] = 16602, - [SMALL_STATE(2036)] = 16666, - [SMALL_STATE(2037)] = 16730, - [SMALL_STATE(2038)] = 16794, - [SMALL_STATE(2039)] = 16864, - [SMALL_STATE(2040)] = 16928, - [SMALL_STATE(2041)] = 16992, - [SMALL_STATE(2042)] = 17062, - [SMALL_STATE(2043)] = 17126, - [SMALL_STATE(2044)] = 17242, - [SMALL_STATE(2045)] = 17358, - [SMALL_STATE(2046)] = 17474, - [SMALL_STATE(2047)] = 17538, - [SMALL_STATE(2048)] = 17602, - [SMALL_STATE(2049)] = 17666, - [SMALL_STATE(2050)] = 17730, - [SMALL_STATE(2051)] = 17794, - [SMALL_STATE(2052)] = 17858, - [SMALL_STATE(2053)] = 17922, - [SMALL_STATE(2054)] = 17988, - [SMALL_STATE(2055)] = 18052, - [SMALL_STATE(2056)] = 18168, - [SMALL_STATE(2057)] = 18232, - [SMALL_STATE(2058)] = 18296, - [SMALL_STATE(2059)] = 18360, - [SMALL_STATE(2060)] = 18476, - [SMALL_STATE(2061)] = 18540, - [SMALL_STATE(2062)] = 18604, - [SMALL_STATE(2063)] = 18668, - [SMALL_STATE(2064)] = 18732, - [SMALL_STATE(2065)] = 18796, - [SMALL_STATE(2066)] = 18860, - [SMALL_STATE(2067)] = 18924, - [SMALL_STATE(2068)] = 19004, - [SMALL_STATE(2069)] = 19068, - [SMALL_STATE(2070)] = 19132, - [SMALL_STATE(2071)] = 19208, - [SMALL_STATE(2072)] = 19272, - [SMALL_STATE(2073)] = 19336, - [SMALL_STATE(2074)] = 19400, - [SMALL_STATE(2075)] = 19464, - [SMALL_STATE(2076)] = 19580, - [SMALL_STATE(2077)] = 19644, - [SMALL_STATE(2078)] = 19708, - [SMALL_STATE(2079)] = 19772, - [SMALL_STATE(2080)] = 19836, - [SMALL_STATE(2081)] = 19900, - [SMALL_STATE(2082)] = 19964, - [SMALL_STATE(2083)] = 20028, - [SMALL_STATE(2084)] = 20092, - [SMALL_STATE(2085)] = 20156, - [SMALL_STATE(2086)] = 20228, - [SMALL_STATE(2087)] = 20292, - [SMALL_STATE(2088)] = 20356, - [SMALL_STATE(2089)] = 20420, - [SMALL_STATE(2090)] = 20484, - [SMALL_STATE(2091)] = 20548, - [SMALL_STATE(2092)] = 20612, - [SMALL_STATE(2093)] = 20676, - [SMALL_STATE(2094)] = 20740, - [SMALL_STATE(2095)] = 20804, - [SMALL_STATE(2096)] = 20868, - [SMALL_STATE(2097)] = 20932, - [SMALL_STATE(2098)] = 20996, - [SMALL_STATE(2099)] = 21060, - [SMALL_STATE(2100)] = 21124, - [SMALL_STATE(2101)] = 21188, - [SMALL_STATE(2102)] = 21252, - [SMALL_STATE(2103)] = 21316, - [SMALL_STATE(2104)] = 21386, - [SMALL_STATE(2105)] = 21450, - [SMALL_STATE(2106)] = 21526, - [SMALL_STATE(2107)] = 21602, - [SMALL_STATE(2108)] = 21666, - [SMALL_STATE(2109)] = 21746, - [SMALL_STATE(2110)] = 21810, - [SMALL_STATE(2111)] = 21926, - [SMALL_STATE(2112)] = 21990, - [SMALL_STATE(2113)] = 22054, - [SMALL_STATE(2114)] = 22118, - [SMALL_STATE(2115)] = 22194, - [SMALL_STATE(2116)] = 22258, - [SMALL_STATE(2117)] = 22334, - [SMALL_STATE(2118)] = 22410, - [SMALL_STATE(2119)] = 22526, - [SMALL_STATE(2120)] = 22642, - [SMALL_STATE(2121)] = 22718, - [SMALL_STATE(2122)] = 22782, - [SMALL_STATE(2123)] = 22858, - [SMALL_STATE(2124)] = 22922, - [SMALL_STATE(2125)] = 22992, - [SMALL_STATE(2126)] = 23068, - [SMALL_STATE(2127)] = 23132, - [SMALL_STATE(2128)] = 23196, - [SMALL_STATE(2129)] = 23260, - [SMALL_STATE(2130)] = 23324, - [SMALL_STATE(2131)] = 23388, - [SMALL_STATE(2132)] = 23452, - [SMALL_STATE(2133)] = 23518, - [SMALL_STATE(2134)] = 23582, - [SMALL_STATE(2135)] = 23662, - [SMALL_STATE(2136)] = 23726, - [SMALL_STATE(2137)] = 23842, - [SMALL_STATE(2138)] = 23906, - [SMALL_STATE(2139)] = 23976, - [SMALL_STATE(2140)] = 24040, - [SMALL_STATE(2141)] = 24104, - [SMALL_STATE(2142)] = 24168, - [SMALL_STATE(2143)] = 24232, - [SMALL_STATE(2144)] = 24296, - [SMALL_STATE(2145)] = 24360, - [SMALL_STATE(2146)] = 24476, - [SMALL_STATE(2147)] = 24540, - [SMALL_STATE(2148)] = 24604, - [SMALL_STATE(2149)] = 24668, - [SMALL_STATE(2150)] = 24732, - [SMALL_STATE(2151)] = 24796, - [SMALL_STATE(2152)] = 24860, - [SMALL_STATE(2153)] = 24926, - [SMALL_STATE(2154)] = 24990, - [SMALL_STATE(2155)] = 25054, - [SMALL_STATE(2156)] = 25118, - [SMALL_STATE(2157)] = 25182, - [SMALL_STATE(2158)] = 25246, - [SMALL_STATE(2159)] = 25316, - [SMALL_STATE(2160)] = 25386, - [SMALL_STATE(2161)] = 25502, - [SMALL_STATE(2162)] = 25566, - [SMALL_STATE(2163)] = 25630, - [SMALL_STATE(2164)] = 25694, - [SMALL_STATE(2165)] = 25766, - [SMALL_STATE(2166)] = 25830, - [SMALL_STATE(2167)] = 25946, - [SMALL_STATE(2168)] = 26009, - [SMALL_STATE(2169)] = 26074, - [SMALL_STATE(2170)] = 26139, - [SMALL_STATE(2171)] = 26202, - [SMALL_STATE(2172)] = 26265, - [SMALL_STATE(2173)] = 26328, - [SMALL_STATE(2174)] = 26407, - [SMALL_STATE(2175)] = 26486, - [SMALL_STATE(2176)] = 26551, - [SMALL_STATE(2177)] = 26614, - [SMALL_STATE(2178)] = 26691, - [SMALL_STATE(2179)] = 26768, - [SMALL_STATE(2180)] = 26839, - [SMALL_STATE(2181)] = 26906, - [SMALL_STATE(2182)] = 27019, - [SMALL_STATE(2183)] = 27084, - [SMALL_STATE(2184)] = 27153, - [SMALL_STATE(2185)] = 27218, - [SMALL_STATE(2186)] = 27281, - [SMALL_STATE(2187)] = 27350, - [SMALL_STATE(2188)] = 27425, - [SMALL_STATE(2189)] = 27538, - [SMALL_STATE(2190)] = 27603, - [SMALL_STATE(2191)] = 27666, - [SMALL_STATE(2192)] = 27731, - [SMALL_STATE(2193)] = 27810, - [SMALL_STATE(2194)] = 27923, - [SMALL_STATE(2195)] = 28036, - [SMALL_STATE(2196)] = 28105, - [SMALL_STATE(2197)] = 28168, - [SMALL_STATE(2198)] = 28233, - [SMALL_STATE(2199)] = 28312, - [SMALL_STATE(2200)] = 28375, - [SMALL_STATE(2201)] = 28438, - [SMALL_STATE(2202)] = 28501, - [SMALL_STATE(2203)] = 28564, - [SMALL_STATE(2204)] = 28627, - [SMALL_STATE(2205)] = 28690, - [SMALL_STATE(2206)] = 28752, - [SMALL_STATE(2207)] = 28814, - [SMALL_STATE(2208)] = 28876, - [SMALL_STATE(2209)] = 28938, - [SMALL_STATE(2210)] = 29000, - [SMALL_STATE(2211)] = 29062, - [SMALL_STATE(2212)] = 29124, - [SMALL_STATE(2213)] = 29186, - [SMALL_STATE(2214)] = 29248, - [SMALL_STATE(2215)] = 29310, - [SMALL_STATE(2216)] = 29378, - [SMALL_STATE(2217)] = 29440, - [SMALL_STATE(2218)] = 29502, - [SMALL_STATE(2219)] = 29564, - [SMALL_STATE(2220)] = 29626, - [SMALL_STATE(2221)] = 29688, - [SMALL_STATE(2222)] = 29750, - [SMALL_STATE(2223)] = 29812, - [SMALL_STATE(2224)] = 29874, - [SMALL_STATE(2225)] = 29936, - [SMALL_STATE(2226)] = 29998, - [SMALL_STATE(2227)] = 30060, - [SMALL_STATE(2228)] = 30122, - [SMALL_STATE(2229)] = 30184, - [SMALL_STATE(2230)] = 30250, - [SMALL_STATE(2231)] = 30312, - [SMALL_STATE(2232)] = 30374, - [SMALL_STATE(2233)] = 30436, - [SMALL_STATE(2234)] = 30498, - [SMALL_STATE(2235)] = 30560, - [SMALL_STATE(2236)] = 30622, - [SMALL_STATE(2237)] = 30684, - [SMALL_STATE(2238)] = 30746, - [SMALL_STATE(2239)] = 30808, - [SMALL_STATE(2240)] = 30870, - [SMALL_STATE(2241)] = 30932, - [SMALL_STATE(2242)] = 30994, - [SMALL_STATE(2243)] = 31056, - [SMALL_STATE(2244)] = 31118, - [SMALL_STATE(2245)] = 31180, - [SMALL_STATE(2246)] = 31242, - [SMALL_STATE(2247)] = 31304, - [SMALL_STATE(2248)] = 31372, - [SMALL_STATE(2249)] = 31438, - [SMALL_STATE(2250)] = 31500, - [SMALL_STATE(2251)] = 31562, - [SMALL_STATE(2252)] = 31624, - [SMALL_STATE(2253)] = 31686, - [SMALL_STATE(2254)] = 31752, - [SMALL_STATE(2255)] = 31814, - [SMALL_STATE(2256)] = 31876, - [SMALL_STATE(2257)] = 31938, - [SMALL_STATE(2258)] = 32000, - [SMALL_STATE(2259)] = 32062, - [SMALL_STATE(2260)] = 32124, - [SMALL_STATE(2261)] = 32186, - [SMALL_STATE(2262)] = 32248, - [SMALL_STATE(2263)] = 32310, - [SMALL_STATE(2264)] = 32372, - [SMALL_STATE(2265)] = 32434, - [SMALL_STATE(2266)] = 32496, - [SMALL_STATE(2267)] = 32558, - [SMALL_STATE(2268)] = 32620, - [SMALL_STATE(2269)] = 32682, - [SMALL_STATE(2270)] = 32744, - [SMALL_STATE(2271)] = 32806, - [SMALL_STATE(2272)] = 32868, - [SMALL_STATE(2273)] = 32930, - [SMALL_STATE(2274)] = 32992, - [SMALL_STATE(2275)] = 33062, - [SMALL_STATE(2276)] = 33124, - [SMALL_STATE(2277)] = 33186, - [SMALL_STATE(2278)] = 33248, + [SMALL_STATE(1813)] = 0, + [SMALL_STATE(1814)] = 71, + [SMALL_STATE(1815)] = 150, + [SMALL_STATE(1816)] = 227, + [SMALL_STATE(1817)] = 302, + [SMALL_STATE(1818)] = 381, + [SMALL_STATE(1819)] = 460, + [SMALL_STATE(1820)] = 531, + [SMALL_STATE(1821)] = 610, + [SMALL_STATE(1822)] = 681, + [SMALL_STATE(1823)] = 752, + [SMALL_STATE(1824)] = 831, + [SMALL_STATE(1825)] = 902, + [SMALL_STATE(1826)] = 973, + [SMALL_STATE(1827)] = 1044, + [SMALL_STATE(1828)] = 1121, + [SMALL_STATE(1829)] = 1200, + [SMALL_STATE(1830)] = 1328, + [SMALL_STATE(1831)] = 1406, + [SMALL_STATE(1832)] = 1496, + [SMALL_STATE(1833)] = 1566, + [SMALL_STATE(1834)] = 1636, + [SMALL_STATE(1835)] = 1764, + [SMALL_STATE(1836)] = 1840, + [SMALL_STATE(1837)] = 1924, + [SMALL_STATE(1838)] = 2002, + [SMALL_STATE(1839)] = 2072, + [SMALL_STATE(1840)] = 2142, + [SMALL_STATE(1841)] = 2218, + [SMALL_STATE(1842)] = 2291, + [SMALL_STATE(1843)] = 2372, + [SMALL_STATE(1844)] = 2453, + [SMALL_STATE(1845)] = 2534, + [SMALL_STATE(1846)] = 2611, + [SMALL_STATE(1847)] = 2736, + [SMALL_STATE(1848)] = 2861, + [SMALL_STATE(1849)] = 2942, + [SMALL_STATE(1850)] = 3023, + [SMALL_STATE(1851)] = 3104, + [SMALL_STATE(1852)] = 3181, + [SMALL_STATE(1853)] = 3262, + [SMALL_STATE(1854)] = 3343, + [SMALL_STATE(1855)] = 3424, + [SMALL_STATE(1856)] = 3504, + [SMALL_STATE(1857)] = 3584, + [SMALL_STATE(1858)] = 3668, + [SMALL_STATE(1859)] = 3742, + [SMALL_STATE(1860)] = 3814, + [SMALL_STATE(1861)] = 3882, + [SMALL_STATE(1862)] = 3954, + [SMALL_STATE(1863)] = 4026, + [SMALL_STATE(1864)] = 4106, + [SMALL_STATE(1865)] = 4174, + [SMALL_STATE(1866)] = 4242, + [SMALL_STATE(1867)] = 4326, + [SMALL_STATE(1868)] = 4406, + [SMALL_STATE(1869)] = 4478, + [SMALL_STATE(1870)] = 4546, + [SMALL_STATE(1871)] = 4630, + [SMALL_STATE(1872)] = 4752, + [SMALL_STATE(1873)] = 4820, + [SMALL_STATE(1874)] = 4894, + [SMALL_STATE(1875)] = 4974, + [SMALL_STATE(1876)] = 5054, + [SMALL_STATE(1877)] = 5138, + [SMALL_STATE(1878)] = 5218, + [SMALL_STATE(1879)] = 5298, + [SMALL_STATE(1880)] = 5366, + [SMALL_STATE(1881)] = 5446, + [SMALL_STATE(1882)] = 5522, + [SMALL_STATE(1883)] = 5589, + [SMALL_STATE(1884)] = 5656, + [SMALL_STATE(1885)] = 5723, + [SMALL_STATE(1886)] = 5790, + [SMALL_STATE(1887)] = 5857, + [SMALL_STATE(1888)] = 5924, + [SMALL_STATE(1889)] = 5991, + [SMALL_STATE(1890)] = 6058, + [SMALL_STATE(1891)] = 6129, + [SMALL_STATE(1892)] = 6196, + [SMALL_STATE(1893)] = 6263, + [SMALL_STATE(1894)] = 6330, + [SMALL_STATE(1895)] = 6397, + [SMALL_STATE(1896)] = 6464, + [SMALL_STATE(1897)] = 6531, + [SMALL_STATE(1898)] = 6600, + [SMALL_STATE(1899)] = 6667, + [SMALL_STATE(1900)] = 6734, + [SMALL_STATE(1901)] = 6801, + [SMALL_STATE(1902)] = 6876, + [SMALL_STATE(1903)] = 6943, + [SMALL_STATE(1904)] = 7012, + [SMALL_STATE(1905)] = 7079, + [SMALL_STATE(1906)] = 7148, + [SMALL_STATE(1907)] = 7215, + [SMALL_STATE(1908)] = 7282, + [SMALL_STATE(1909)] = 7349, + [SMALL_STATE(1910)] = 7422, + [SMALL_STATE(1911)] = 7489, + [SMALL_STATE(1912)] = 7562, + [SMALL_STATE(1913)] = 7631, + [SMALL_STATE(1914)] = 7698, + [SMALL_STATE(1915)] = 7765, + [SMALL_STATE(1916)] = 7832, + [SMALL_STATE(1917)] = 7899, + [SMALL_STATE(1918)] = 7966, + [SMALL_STATE(1919)] = 8048, + [SMALL_STATE(1920)] = 8126, + [SMALL_STATE(1921)] = 8240, + [SMALL_STATE(1922)] = 8314, + [SMALL_STATE(1923)] = 8384, + [SMALL_STATE(1924)] = 8454, + [SMALL_STATE(1925)] = 8522, + [SMALL_STATE(1926)] = 8592, + [SMALL_STATE(1927)] = 8706, + [SMALL_STATE(1928)] = 8772, + [SMALL_STATE(1929)] = 8842, + [SMALL_STATE(1930)] = 8924, + [SMALL_STATE(1931)] = 9038, + [SMALL_STATE(1932)] = 9108, + [SMALL_STATE(1933)] = 9222, + [SMALL_STATE(1934)] = 9304, + [SMALL_STATE(1935)] = 9370, + [SMALL_STATE(1936)] = 9444, + [SMALL_STATE(1937)] = 9558, + [SMALL_STATE(1938)] = 9672, + [SMALL_STATE(1939)] = 9750, + [SMALL_STATE(1940)] = 9820, + [SMALL_STATE(1941)] = 9890, + [SMALL_STATE(1942)] = 9968, + [SMALL_STATE(1943)] = 10038, + [SMALL_STATE(1944)] = 10104, + [SMALL_STATE(1945)] = 10182, + [SMALL_STATE(1946)] = 10260, + [SMALL_STATE(1947)] = 10338, + [SMALL_STATE(1948)] = 10406, + [SMALL_STATE(1949)] = 10520, + [SMALL_STATE(1950)] = 10598, + [SMALL_STATE(1951)] = 10712, + [SMALL_STATE(1952)] = 10790, + [SMALL_STATE(1953)] = 10860, + [SMALL_STATE(1954)] = 10974, + [SMALL_STATE(1955)] = 11046, + [SMALL_STATE(1956)] = 11114, + [SMALL_STATE(1957)] = 11184, + [SMALL_STATE(1958)] = 11250, + [SMALL_STATE(1959)] = 11328, + [SMALL_STATE(1960)] = 11400, + [SMALL_STATE(1961)] = 11514, + [SMALL_STATE(1962)] = 11584, + [SMALL_STATE(1963)] = 11656, + [SMALL_STATE(1964)] = 11770, + [SMALL_STATE(1965)] = 11836, + [SMALL_STATE(1966)] = 11918, + [SMALL_STATE(1967)] = 11984, + [SMALL_STATE(1968)] = 12049, + [SMALL_STATE(1969)] = 12114, + [SMALL_STATE(1970)] = 12179, + [SMALL_STATE(1971)] = 12256, + [SMALL_STATE(1972)] = 12321, + [SMALL_STATE(1973)] = 12386, + [SMALL_STATE(1974)] = 12451, + [SMALL_STATE(1975)] = 12528, + [SMALL_STATE(1976)] = 12605, + [SMALL_STATE(1977)] = 12682, + [SMALL_STATE(1978)] = 12749, + [SMALL_STATE(1979)] = 12826, + [SMALL_STATE(1980)] = 12891, + [SMALL_STATE(1981)] = 12956, + [SMALL_STATE(1982)] = 13021, + [SMALL_STATE(1983)] = 13086, + [SMALL_STATE(1984)] = 13151, + [SMALL_STATE(1985)] = 13216, + [SMALL_STATE(1986)] = 13281, + [SMALL_STATE(1987)] = 13346, + [SMALL_STATE(1988)] = 13411, + [SMALL_STATE(1989)] = 13476, + [SMALL_STATE(1990)] = 13541, + [SMALL_STATE(1991)] = 13606, + [SMALL_STATE(1992)] = 13723, + [SMALL_STATE(1993)] = 13794, + [SMALL_STATE(1994)] = 13859, + [SMALL_STATE(1995)] = 13924, + [SMALL_STATE(1996)] = 13989, + [SMALL_STATE(1997)] = 14054, + [SMALL_STATE(1998)] = 14171, + [SMALL_STATE(1999)] = 14236, + [SMALL_STATE(2000)] = 14313, + [SMALL_STATE(2001)] = 14378, + [SMALL_STATE(2002)] = 14495, + [SMALL_STATE(2003)] = 14612, + [SMALL_STATE(2004)] = 14729, + [SMALL_STATE(2005)] = 14794, + [SMALL_STATE(2006)] = 14859, + [SMALL_STATE(2007)] = 14924, + [SMALL_STATE(2008)] = 14989, + [SMALL_STATE(2009)] = 15106, + [SMALL_STATE(2010)] = 15171, + [SMALL_STATE(2011)] = 15236, + [SMALL_STATE(2012)] = 15353, + [SMALL_STATE(2013)] = 15418, + [SMALL_STATE(2014)] = 15535, + [SMALL_STATE(2015)] = 15600, + [SMALL_STATE(2016)] = 15665, + [SMALL_STATE(2017)] = 15730, + [SMALL_STATE(2018)] = 15795, + [SMALL_STATE(2019)] = 15860, + [SMALL_STATE(2020)] = 15937, + [SMALL_STATE(2021)] = 16002, + [SMALL_STATE(2022)] = 16067, + [SMALL_STATE(2023)] = 16132, + [SMALL_STATE(2024)] = 16197, + [SMALL_STATE(2025)] = 16262, + [SMALL_STATE(2026)] = 16339, + [SMALL_STATE(2027)] = 16404, + [SMALL_STATE(2028)] = 16469, + [SMALL_STATE(2029)] = 16534, + [SMALL_STATE(2030)] = 16599, + [SMALL_STATE(2031)] = 16664, + [SMALL_STATE(2032)] = 16729, + [SMALL_STATE(2033)] = 16794, + [SMALL_STATE(2034)] = 16859, + [SMALL_STATE(2035)] = 16924, + [SMALL_STATE(2036)] = 16989, + [SMALL_STATE(2037)] = 17106, + [SMALL_STATE(2038)] = 17171, + [SMALL_STATE(2039)] = 17242, + [SMALL_STATE(2040)] = 17307, + [SMALL_STATE(2041)] = 17372, + [SMALL_STATE(2042)] = 17439, + [SMALL_STATE(2043)] = 17506, + [SMALL_STATE(2044)] = 17623, + [SMALL_STATE(2045)] = 17688, + [SMALL_STATE(2046)] = 17753, + [SMALL_STATE(2047)] = 17824, + [SMALL_STATE(2048)] = 17889, + [SMALL_STATE(2049)] = 17954, + [SMALL_STATE(2050)] = 18019, + [SMALL_STATE(2051)] = 18084, + [SMALL_STATE(2052)] = 18149, + [SMALL_STATE(2053)] = 18220, + [SMALL_STATE(2054)] = 18285, + [SMALL_STATE(2055)] = 18350, + [SMALL_STATE(2056)] = 18415, + [SMALL_STATE(2057)] = 18480, + [SMALL_STATE(2058)] = 18545, + [SMALL_STATE(2059)] = 18610, + [SMALL_STATE(2060)] = 18675, + [SMALL_STATE(2061)] = 18740, + [SMALL_STATE(2062)] = 18817, + [SMALL_STATE(2063)] = 18888, + [SMALL_STATE(2064)] = 18955, + [SMALL_STATE(2065)] = 19020, + [SMALL_STATE(2066)] = 19085, + [SMALL_STATE(2067)] = 19152, + [SMALL_STATE(2068)] = 19269, + [SMALL_STATE(2069)] = 19334, + [SMALL_STATE(2070)] = 19399, + [SMALL_STATE(2071)] = 19516, + [SMALL_STATE(2072)] = 19581, + [SMALL_STATE(2073)] = 19646, + [SMALL_STATE(2074)] = 19711, + [SMALL_STATE(2075)] = 19778, + [SMALL_STATE(2076)] = 19843, + [SMALL_STATE(2077)] = 19960, + [SMALL_STATE(2078)] = 20025, + [SMALL_STATE(2079)] = 20092, + [SMALL_STATE(2080)] = 20156, + [SMALL_STATE(2081)] = 20226, + [SMALL_STATE(2082)] = 20290, + [SMALL_STATE(2083)] = 20354, + [SMALL_STATE(2084)] = 20418, + [SMALL_STATE(2085)] = 20488, + [SMALL_STATE(2086)] = 20552, + [SMALL_STATE(2087)] = 20628, + [SMALL_STATE(2088)] = 20692, + [SMALL_STATE(2089)] = 20806, + [SMALL_STATE(2090)] = 20878, + [SMALL_STATE(2091)] = 20954, + [SMALL_STATE(2092)] = 21068, + [SMALL_STATE(2093)] = 21132, + [SMALL_STATE(2094)] = 21196, + [SMALL_STATE(2095)] = 21260, + [SMALL_STATE(2096)] = 21324, + [SMALL_STATE(2097)] = 21388, + [SMALL_STATE(2098)] = 21452, + [SMALL_STATE(2099)] = 21516, + [SMALL_STATE(2100)] = 21586, + [SMALL_STATE(2101)] = 21652, + [SMALL_STATE(2102)] = 21766, + [SMALL_STATE(2103)] = 21842, + [SMALL_STATE(2104)] = 21906, + [SMALL_STATE(2105)] = 21970, + [SMALL_STATE(2106)] = 22034, + [SMALL_STATE(2107)] = 22102, + [SMALL_STATE(2108)] = 22166, + [SMALL_STATE(2109)] = 22230, + [SMALL_STATE(2110)] = 22294, + [SMALL_STATE(2111)] = 22358, + [SMALL_STATE(2112)] = 22422, + [SMALL_STATE(2113)] = 22498, + [SMALL_STATE(2114)] = 22562, + [SMALL_STATE(2115)] = 22626, + [SMALL_STATE(2116)] = 22690, + [SMALL_STATE(2117)] = 22754, + [SMALL_STATE(2118)] = 22818, + [SMALL_STATE(2119)] = 22882, + [SMALL_STATE(2120)] = 22946, + [SMALL_STATE(2121)] = 23010, + [SMALL_STATE(2122)] = 23074, + [SMALL_STATE(2123)] = 23138, + [SMALL_STATE(2124)] = 23202, + [SMALL_STATE(2125)] = 23266, + [SMALL_STATE(2126)] = 23330, + [SMALL_STATE(2127)] = 23394, + [SMALL_STATE(2128)] = 23458, + [SMALL_STATE(2129)] = 23522, + [SMALL_STATE(2130)] = 23592, + [SMALL_STATE(2131)] = 23656, + [SMALL_STATE(2132)] = 23726, + [SMALL_STATE(2133)] = 23790, + [SMALL_STATE(2134)] = 23854, + [SMALL_STATE(2135)] = 23918, + [SMALL_STATE(2136)] = 23982, + [SMALL_STATE(2137)] = 24046, + [SMALL_STATE(2138)] = 24110, + [SMALL_STATE(2139)] = 24174, + [SMALL_STATE(2140)] = 24238, + [SMALL_STATE(2141)] = 24302, + [SMALL_STATE(2142)] = 24366, + [SMALL_STATE(2143)] = 24430, + [SMALL_STATE(2144)] = 24494, + [SMALL_STATE(2145)] = 24558, + [SMALL_STATE(2146)] = 24622, + [SMALL_STATE(2147)] = 24686, + [SMALL_STATE(2148)] = 24750, + [SMALL_STATE(2149)] = 24814, + [SMALL_STATE(2150)] = 24878, + [SMALL_STATE(2151)] = 24958, + [SMALL_STATE(2152)] = 25022, + [SMALL_STATE(2153)] = 25086, + [SMALL_STATE(2154)] = 25156, + [SMALL_STATE(2155)] = 25270, + [SMALL_STATE(2156)] = 25334, + [SMALL_STATE(2157)] = 25398, + [SMALL_STATE(2158)] = 25478, + [SMALL_STATE(2159)] = 25542, + [SMALL_STATE(2160)] = 25622, + [SMALL_STATE(2161)] = 25686, + [SMALL_STATE(2162)] = 25750, + [SMALL_STATE(2163)] = 25830, + [SMALL_STATE(2164)] = 25906, + [SMALL_STATE(2165)] = 25978, + [SMALL_STATE(2166)] = 26042, + [SMALL_STATE(2167)] = 26118, + [SMALL_STATE(2168)] = 26182, + [SMALL_STATE(2169)] = 26246, + [SMALL_STATE(2170)] = 26310, + [SMALL_STATE(2171)] = 26374, + [SMALL_STATE(2172)] = 26438, + [SMALL_STATE(2173)] = 26514, + [SMALL_STATE(2174)] = 26584, + [SMALL_STATE(2175)] = 26648, + [SMALL_STATE(2176)] = 26724, + [SMALL_STATE(2177)] = 26800, + [SMALL_STATE(2178)] = 26863, + [SMALL_STATE(2179)] = 26926, + [SMALL_STATE(2180)] = 26989, + [SMALL_STATE(2181)] = 27052, + [SMALL_STATE(2182)] = 27115, + [SMALL_STATE(2183)] = 27178, + [SMALL_STATE(2184)] = 27241, + [SMALL_STATE(2185)] = 27304, + [SMALL_STATE(2186)] = 27381, + [SMALL_STATE(2187)] = 27444, + [SMALL_STATE(2188)] = 27507, + [SMALL_STATE(2189)] = 27570, + [SMALL_STATE(2190)] = 27645, + [SMALL_STATE(2191)] = 27708, + [SMALL_STATE(2192)] = 27771, + [SMALL_STATE(2193)] = 27834, + [SMALL_STATE(2194)] = 27897, + [SMALL_STATE(2195)] = 27962, + [SMALL_STATE(2196)] = 28025, + [SMALL_STATE(2197)] = 28088, + [SMALL_STATE(2198)] = 28151, + [SMALL_STATE(2199)] = 28214, + [SMALL_STATE(2200)] = 28277, + [SMALL_STATE(2201)] = 28340, + [SMALL_STATE(2202)] = 28403, + [SMALL_STATE(2203)] = 28466, + [SMALL_STATE(2204)] = 28529, + [SMALL_STATE(2205)] = 28592, + [SMALL_STATE(2206)] = 28655, + [SMALL_STATE(2207)] = 28718, + [SMALL_STATE(2208)] = 28783, + [SMALL_STATE(2209)] = 28846, + [SMALL_STATE(2210)] = 28909, + [SMALL_STATE(2211)] = 28972, + [SMALL_STATE(2212)] = 29035, + [SMALL_STATE(2213)] = 29098, + [SMALL_STATE(2214)] = 29161, + [SMALL_STATE(2215)] = 29224, + [SMALL_STATE(2216)] = 29287, + [SMALL_STATE(2217)] = 29350, + [SMALL_STATE(2218)] = 29413, + [SMALL_STATE(2219)] = 29476, + [SMALL_STATE(2220)] = 29539, + [SMALL_STATE(2221)] = 29602, + [SMALL_STATE(2222)] = 29665, + [SMALL_STATE(2223)] = 29728, + [SMALL_STATE(2224)] = 29797, + [SMALL_STATE(2225)] = 29862, + [SMALL_STATE(2226)] = 29941, + [SMALL_STATE(2227)] = 30004, + [SMALL_STATE(2228)] = 30067, + [SMALL_STATE(2229)] = 30136, + [SMALL_STATE(2230)] = 30199, + [SMALL_STATE(2231)] = 30262, + [SMALL_STATE(2232)] = 30327, + [SMALL_STATE(2233)] = 30394, + [SMALL_STATE(2234)] = 30457, + [SMALL_STATE(2235)] = 30520, + [SMALL_STATE(2236)] = 30583, + [SMALL_STATE(2237)] = 30646, + [SMALL_STATE(2238)] = 30709, + [SMALL_STATE(2239)] = 30772, + [SMALL_STATE(2240)] = 30835, + [SMALL_STATE(2241)] = 30898, + [SMALL_STATE(2242)] = 30961, + [SMALL_STATE(2243)] = 31024, + [SMALL_STATE(2244)] = 31087, + [SMALL_STATE(2245)] = 31150, + [SMALL_STATE(2246)] = 31213, + [SMALL_STATE(2247)] = 31276, + [SMALL_STATE(2248)] = 31339, + [SMALL_STATE(2249)] = 31402, + [SMALL_STATE(2250)] = 31465, + [SMALL_STATE(2251)] = 31528, + [SMALL_STATE(2252)] = 31591, + [SMALL_STATE(2253)] = 31654, + [SMALL_STATE(2254)] = 31717, + [SMALL_STATE(2255)] = 31780, + [SMALL_STATE(2256)] = 31843, + [SMALL_STATE(2257)] = 31906, + [SMALL_STATE(2258)] = 31969, + [SMALL_STATE(2259)] = 32032, + [SMALL_STATE(2260)] = 32095, + [SMALL_STATE(2261)] = 32158, + [SMALL_STATE(2262)] = 32221, + [SMALL_STATE(2263)] = 32284, + [SMALL_STATE(2264)] = 32347, + [SMALL_STATE(2265)] = 32410, + [SMALL_STATE(2266)] = 32473, + [SMALL_STATE(2267)] = 32538, + [SMALL_STATE(2268)] = 32601, + [SMALL_STATE(2269)] = 32664, + [SMALL_STATE(2270)] = 32727, + [SMALL_STATE(2271)] = 32790, + [SMALL_STATE(2272)] = 32853, + [SMALL_STATE(2273)] = 32916, + [SMALL_STATE(2274)] = 32979, + [SMALL_STATE(2275)] = 33042, + [SMALL_STATE(2276)] = 33105, + [SMALL_STATE(2277)] = 33168, + [SMALL_STATE(2278)] = 33231, [SMALL_STATE(2279)] = 33310, - [SMALL_STATE(2280)] = 33372, - [SMALL_STATE(2281)] = 33434, - [SMALL_STATE(2282)] = 33496, - [SMALL_STATE(2283)] = 33558, - [SMALL_STATE(2284)] = 33620, - [SMALL_STATE(2285)] = 33684, - [SMALL_STATE(2286)] = 33746, - [SMALL_STATE(2287)] = 33816, - [SMALL_STATE(2288)] = 33878, + [SMALL_STATE(2280)] = 33373, + [SMALL_STATE(2281)] = 33436, + [SMALL_STATE(2282)] = 33499, + [SMALL_STATE(2283)] = 33562, + [SMALL_STATE(2284)] = 33625, + [SMALL_STATE(2285)] = 33688, + [SMALL_STATE(2286)] = 33751, + [SMALL_STATE(2287)] = 33814, + [SMALL_STATE(2288)] = 33877, [SMALL_STATE(2289)] = 33940, - [SMALL_STATE(2290)] = 34002, - [SMALL_STATE(2291)] = 34064, - [SMALL_STATE(2292)] = 34126, - [SMALL_STATE(2293)] = 34188, - [SMALL_STATE(2294)] = 34264, - [SMALL_STATE(2295)] = 34326, - [SMALL_STATE(2296)] = 34388, - [SMALL_STATE(2297)] = 34450, - [SMALL_STATE(2298)] = 34512, - [SMALL_STATE(2299)] = 34574, - [SMALL_STATE(2300)] = 34636, - [SMALL_STATE(2301)] = 34698, - [SMALL_STATE(2302)] = 34760, - [SMALL_STATE(2303)] = 34822, - [SMALL_STATE(2304)] = 34884, - [SMALL_STATE(2305)] = 34946, - [SMALL_STATE(2306)] = 35008, - [SMALL_STATE(2307)] = 35070, - [SMALL_STATE(2308)] = 35134, - [SMALL_STATE(2309)] = 35196, - [SMALL_STATE(2310)] = 35258, - [SMALL_STATE(2311)] = 35326, - [SMALL_STATE(2312)] = 35390, - [SMALL_STATE(2313)] = 35452, - [SMALL_STATE(2314)] = 35514, - [SMALL_STATE(2315)] = 35576, - [SMALL_STATE(2316)] = 35686, - [SMALL_STATE(2317)] = 35748, - [SMALL_STATE(2318)] = 35810, - [SMALL_STATE(2319)] = 35872, - [SMALL_STATE(2320)] = 35938, - [SMALL_STATE(2321)] = 36000, - [SMALL_STATE(2322)] = 36062, - [SMALL_STATE(2323)] = 36124, - [SMALL_STATE(2324)] = 36186, - [SMALL_STATE(2325)] = 36248, - [SMALL_STATE(2326)] = 36310, - [SMALL_STATE(2327)] = 36372, - [SMALL_STATE(2328)] = 36434, - [SMALL_STATE(2329)] = 36496, - [SMALL_STATE(2330)] = 36558, - [SMALL_STATE(2331)] = 36620, - [SMALL_STATE(2332)] = 36682, - [SMALL_STATE(2333)] = 36744, - [SMALL_STATE(2334)] = 36806, - [SMALL_STATE(2335)] = 36868, - [SMALL_STATE(2336)] = 36930, - [SMALL_STATE(2337)] = 36992, - [SMALL_STATE(2338)] = 37054, - [SMALL_STATE(2339)] = 37116, - [SMALL_STATE(2340)] = 37178, - [SMALL_STATE(2341)] = 37246, - [SMALL_STATE(2342)] = 37316, - [SMALL_STATE(2343)] = 37378, - [SMALL_STATE(2344)] = 37440, - [SMALL_STATE(2345)] = 37502, - [SMALL_STATE(2346)] = 37564, - [SMALL_STATE(2347)] = 37638, - [SMALL_STATE(2348)] = 37700, - [SMALL_STATE(2349)] = 37762, - [SMALL_STATE(2350)] = 37824, - [SMALL_STATE(2351)] = 37892, - [SMALL_STATE(2352)] = 37954, - [SMALL_STATE(2353)] = 38016, - [SMALL_STATE(2354)] = 38078, - [SMALL_STATE(2355)] = 38140, - [SMALL_STATE(2356)] = 38202, - [SMALL_STATE(2357)] = 38264, - [SMALL_STATE(2358)] = 38326, - [SMALL_STATE(2359)] = 38390, - [SMALL_STATE(2360)] = 38452, - [SMALL_STATE(2361)] = 38514, - [SMALL_STATE(2362)] = 38578, - [SMALL_STATE(2363)] = 38640, - [SMALL_STATE(2364)] = 38706, - [SMALL_STATE(2365)] = 38768, - [SMALL_STATE(2366)] = 38830, - [SMALL_STATE(2367)] = 38892, - [SMALL_STATE(2368)] = 38954, - [SMALL_STATE(2369)] = 39020, - [SMALL_STATE(2370)] = 39082, - [SMALL_STATE(2371)] = 39144, - [SMALL_STATE(2372)] = 39206, - [SMALL_STATE(2373)] = 39268, - [SMALL_STATE(2374)] = 39334, - [SMALL_STATE(2375)] = 39396, - [SMALL_STATE(2376)] = 39458, - [SMALL_STATE(2377)] = 39520, - [SMALL_STATE(2378)] = 39582, - [SMALL_STATE(2379)] = 39644, - [SMALL_STATE(2380)] = 39722, - [SMALL_STATE(2381)] = 39784, - [SMALL_STATE(2382)] = 39846, - [SMALL_STATE(2383)] = 39908, - [SMALL_STATE(2384)] = 39970, - [SMALL_STATE(2385)] = 40032, - [SMALL_STATE(2386)] = 40094, - [SMALL_STATE(2387)] = 40156, - [SMALL_STATE(2388)] = 40224, - [SMALL_STATE(2389)] = 40286, - [SMALL_STATE(2390)] = 40348, - [SMALL_STATE(2391)] = 40410, - [SMALL_STATE(2392)] = 40472, - [SMALL_STATE(2393)] = 40534, - [SMALL_STATE(2394)] = 40596, - [SMALL_STATE(2395)] = 40658, - [SMALL_STATE(2396)] = 40720, - [SMALL_STATE(2397)] = 40782, - [SMALL_STATE(2398)] = 40844, - [SMALL_STATE(2399)] = 40906, - [SMALL_STATE(2400)] = 40968, - [SMALL_STATE(2401)] = 41030, - [SMALL_STATE(2402)] = 41092, - [SMALL_STATE(2403)] = 41154, - [SMALL_STATE(2404)] = 41216, - [SMALL_STATE(2405)] = 41278, - [SMALL_STATE(2406)] = 41340, - [SMALL_STATE(2407)] = 41402, - [SMALL_STATE(2408)] = 41464, - [SMALL_STATE(2409)] = 41530, - [SMALL_STATE(2410)] = 41592, - [SMALL_STATE(2411)] = 41654, - [SMALL_STATE(2412)] = 41716, - [SMALL_STATE(2413)] = 41790, - [SMALL_STATE(2414)] = 41852, - [SMALL_STATE(2415)] = 41914, - [SMALL_STATE(2416)] = 41976, - [SMALL_STATE(2417)] = 42038, - [SMALL_STATE(2418)] = 42100, - [SMALL_STATE(2419)] = 42162, - [SMALL_STATE(2420)] = 42224, - [SMALL_STATE(2421)] = 42286, - [SMALL_STATE(2422)] = 42348, - [SMALL_STATE(2423)] = 42412, - [SMALL_STATE(2424)] = 42474, - [SMALL_STATE(2425)] = 42546, - [SMALL_STATE(2426)] = 42608, - [SMALL_STATE(2427)] = 42670, - [SMALL_STATE(2428)] = 42732, - [SMALL_STATE(2429)] = 42794, - [SMALL_STATE(2430)] = 42904, - [SMALL_STATE(2431)] = 42966, - [SMALL_STATE(2432)] = 43028, - [SMALL_STATE(2433)] = 43090, - [SMALL_STATE(2434)] = 43152, - [SMALL_STATE(2435)] = 43214, - [SMALL_STATE(2436)] = 43276, - [SMALL_STATE(2437)] = 43338, - [SMALL_STATE(2438)] = 43400, - [SMALL_STATE(2439)] = 43462, - [SMALL_STATE(2440)] = 43524, - [SMALL_STATE(2441)] = 43586, - [SMALL_STATE(2442)] = 43648, - [SMALL_STATE(2443)] = 43710, - [SMALL_STATE(2444)] = 43772, - [SMALL_STATE(2445)] = 43834, - [SMALL_STATE(2446)] = 43896, - [SMALL_STATE(2447)] = 43958, - [SMALL_STATE(2448)] = 44020, - [SMALL_STATE(2449)] = 44082, - [SMALL_STATE(2450)] = 44150, - [SMALL_STATE(2451)] = 44212, - [SMALL_STATE(2452)] = 44274, - [SMALL_STATE(2453)] = 44336, - [SMALL_STATE(2454)] = 44406, - [SMALL_STATE(2455)] = 44468, - [SMALL_STATE(2456)] = 44530, - [SMALL_STATE(2457)] = 44592, - [SMALL_STATE(2458)] = 44654, - [SMALL_STATE(2459)] = 44716, - [SMALL_STATE(2460)] = 44778, - [SMALL_STATE(2461)] = 44840, - [SMALL_STATE(2462)] = 44902, - [SMALL_STATE(2463)] = 44964, - [SMALL_STATE(2464)] = 45026, - [SMALL_STATE(2465)] = 45088, - [SMALL_STATE(2466)] = 45150, - [SMALL_STATE(2467)] = 45211, - [SMALL_STATE(2468)] = 45274, - [SMALL_STATE(2469)] = 45335, - [SMALL_STATE(2470)] = 45410, - [SMALL_STATE(2471)] = 45471, - [SMALL_STATE(2472)] = 45532, - [SMALL_STATE(2473)] = 45599, - [SMALL_STATE(2474)] = 45708, - [SMALL_STATE(2475)] = 45769, - [SMALL_STATE(2476)] = 45842, - [SMALL_STATE(2477)] = 45903, - [SMALL_STATE(2478)] = 45964, - [SMALL_STATE(2479)] = 46043, - [SMALL_STATE(2480)] = 46114, - [SMALL_STATE(2481)] = 46181, - [SMALL_STATE(2482)] = 46254, - [SMALL_STATE(2483)] = 46327, - [SMALL_STATE(2484)] = 46408, - [SMALL_STATE(2485)] = 46469, - [SMALL_STATE(2486)] = 46532, - [SMALL_STATE(2487)] = 46593, - [SMALL_STATE(2488)] = 46654, - [SMALL_STATE(2489)] = 46715, - [SMALL_STATE(2490)] = 46820, - [SMALL_STATE(2491)] = 46925, - [SMALL_STATE(2492)] = 47000, - [SMALL_STATE(2493)] = 47063, - [SMALL_STATE(2494)] = 47134, - [SMALL_STATE(2495)] = 47195, - [SMALL_STATE(2496)] = 47256, - [SMALL_STATE(2497)] = 47317, - [SMALL_STATE(2498)] = 47378, - [SMALL_STATE(2499)] = 47439, - [SMALL_STATE(2500)] = 47504, - [SMALL_STATE(2501)] = 47565, - [SMALL_STATE(2502)] = 47630, - [SMALL_STATE(2503)] = 47691, - [SMALL_STATE(2504)] = 47752, - [SMALL_STATE(2505)] = 47817, - [SMALL_STATE(2506)] = 47890, - [SMALL_STATE(2507)] = 47963, - [SMALL_STATE(2508)] = 48036, - [SMALL_STATE(2509)] = 48111, - [SMALL_STATE(2510)] = 48172, - [SMALL_STATE(2511)] = 48235, - [SMALL_STATE(2512)] = 48296, - [SMALL_STATE(2513)] = 48357, - [SMALL_STATE(2514)] = 48418, - [SMALL_STATE(2515)] = 48479, - [SMALL_STATE(2516)] = 48540, - [SMALL_STATE(2517)] = 48645, - [SMALL_STATE(2518)] = 48706, - [SMALL_STATE(2519)] = 48767, - [SMALL_STATE(2520)] = 48834, - [SMALL_STATE(2521)] = 48907, - [SMALL_STATE(2522)] = 48968, - [SMALL_STATE(2523)] = 49043, - [SMALL_STATE(2524)] = 49118, - [SMALL_STATE(2525)] = 49179, - [SMALL_STATE(2526)] = 49252, - [SMALL_STATE(2527)] = 49313, - [SMALL_STATE(2528)] = 49386, - [SMALL_STATE(2529)] = 49459, - [SMALL_STATE(2530)] = 49532, - [SMALL_STATE(2531)] = 49593, - [SMALL_STATE(2532)] = 49654, - [SMALL_STATE(2533)] = 49715, - [SMALL_STATE(2534)] = 49776, - [SMALL_STATE(2535)] = 49837, - [SMALL_STATE(2536)] = 49898, - [SMALL_STATE(2537)] = 49977, - [SMALL_STATE(2538)] = 50042, - [SMALL_STATE(2539)] = 50119, - [SMALL_STATE(2540)] = 50200, - [SMALL_STATE(2541)] = 50285, - [SMALL_STATE(2542)] = 50372, - [SMALL_STATE(2543)] = 50463, - [SMALL_STATE(2544)] = 50536, - [SMALL_STATE(2545)] = 50629, - [SMALL_STATE(2546)] = 50726, - [SMALL_STATE(2547)] = 50827, - [SMALL_STATE(2548)] = 50900, - [SMALL_STATE(2549)] = 50975, - [SMALL_STATE(2550)] = 51050, - [SMALL_STATE(2551)] = 51111, - [SMALL_STATE(2552)] = 51172, - [SMALL_STATE(2553)] = 51233, - [SMALL_STATE(2554)] = 51294, - [SMALL_STATE(2555)] = 51355, - [SMALL_STATE(2556)] = 51416, - [SMALL_STATE(2557)] = 51477, - [SMALL_STATE(2558)] = 51584, - [SMALL_STATE(2559)] = 51693, - [SMALL_STATE(2560)] = 51754, - [SMALL_STATE(2561)] = 51817, - [SMALL_STATE(2562)] = 51884, - [SMALL_STATE(2563)] = 51945, - [SMALL_STATE(2564)] = 52006, - [SMALL_STATE(2565)] = 52067, - [SMALL_STATE(2566)] = 52172, - [SMALL_STATE(2567)] = 52233, - [SMALL_STATE(2568)] = 52298, - [SMALL_STATE(2569)] = 52367, - [SMALL_STATE(2570)] = 52432, - [SMALL_STATE(2571)] = 52493, - [SMALL_STATE(2572)] = 52554, - [SMALL_STATE(2573)] = 52615, - [SMALL_STATE(2574)] = 52676, - [SMALL_STATE(2575)] = 52737, - [SMALL_STATE(2576)] = 52800, - [SMALL_STATE(2577)] = 52865, - [SMALL_STATE(2578)] = 52926, - [SMALL_STATE(2579)] = 52987, - [SMALL_STATE(2580)] = 53066, - [SMALL_STATE(2581)] = 53126, - [SMALL_STATE(2582)] = 53230, - [SMALL_STATE(2583)] = 53302, - [SMALL_STATE(2584)] = 53364, - [SMALL_STATE(2585)] = 53426, - [SMALL_STATE(2586)] = 53494, - [SMALL_STATE(2587)] = 53560, - [SMALL_STATE(2588)] = 53626, - [SMALL_STATE(2589)] = 53686, - [SMALL_STATE(2590)] = 53758, - [SMALL_STATE(2591)] = 53824, - [SMALL_STATE(2592)] = 53884, - [SMALL_STATE(2593)] = 53952, - [SMALL_STATE(2594)] = 54012, - [SMALL_STATE(2595)] = 54072, - [SMALL_STATE(2596)] = 54132, - [SMALL_STATE(2597)] = 54192, - [SMALL_STATE(2598)] = 54252, - [SMALL_STATE(2599)] = 54312, - [SMALL_STATE(2600)] = 54372, - [SMALL_STATE(2601)] = 54432, - [SMALL_STATE(2602)] = 54492, - [SMALL_STATE(2603)] = 54552, - [SMALL_STATE(2604)] = 54612, - [SMALL_STATE(2605)] = 54672, - [SMALL_STATE(2606)] = 54732, - [SMALL_STATE(2607)] = 54792, - [SMALL_STATE(2608)] = 54852, - [SMALL_STATE(2609)] = 54912, - [SMALL_STATE(2610)] = 54972, - [SMALL_STATE(2611)] = 55032, - [SMALL_STATE(2612)] = 55092, - [SMALL_STATE(2613)] = 55152, - [SMALL_STATE(2614)] = 55212, - [SMALL_STATE(2615)] = 55272, - [SMALL_STATE(2616)] = 55342, - [SMALL_STATE(2617)] = 55420, - [SMALL_STATE(2618)] = 55480, - [SMALL_STATE(2619)] = 55540, - [SMALL_STATE(2620)] = 55600, - [SMALL_STATE(2621)] = 55660, - [SMALL_STATE(2622)] = 55720, - [SMALL_STATE(2623)] = 55780, - [SMALL_STATE(2624)] = 55840, - [SMALL_STATE(2625)] = 55942, - [SMALL_STATE(2626)] = 56002, - [SMALL_STATE(2627)] = 56062, - [SMALL_STATE(2628)] = 56122, - [SMALL_STATE(2629)] = 56190, - [SMALL_STATE(2630)] = 56250, - [SMALL_STATE(2631)] = 56310, - [SMALL_STATE(2632)] = 56370, - [SMALL_STATE(2633)] = 56430, - [SMALL_STATE(2634)] = 56490, - [SMALL_STATE(2635)] = 56550, - [SMALL_STATE(2636)] = 56610, - [SMALL_STATE(2637)] = 56670, - [SMALL_STATE(2638)] = 56730, - [SMALL_STATE(2639)] = 56790, - [SMALL_STATE(2640)] = 56850, - [SMALL_STATE(2641)] = 56910, - [SMALL_STATE(2642)] = 56970, - [SMALL_STATE(2643)] = 57030, - [SMALL_STATE(2644)] = 57092, - [SMALL_STATE(2645)] = 57152, - [SMALL_STATE(2646)] = 57212, - [SMALL_STATE(2647)] = 57272, - [SMALL_STATE(2648)] = 57332, - [SMALL_STATE(2649)] = 57392, - [SMALL_STATE(2650)] = 57458, - [SMALL_STATE(2651)] = 57518, - [SMALL_STATE(2652)] = 57578, - [SMALL_STATE(2653)] = 57638, - [SMALL_STATE(2654)] = 57698, - [SMALL_STATE(2655)] = 57758, - [SMALL_STATE(2656)] = 57818, - [SMALL_STATE(2657)] = 57878, - [SMALL_STATE(2658)] = 57938, - [SMALL_STATE(2659)] = 57998, - [SMALL_STATE(2660)] = 58064, - [SMALL_STATE(2661)] = 58130, - [SMALL_STATE(2662)] = 58190, - [SMALL_STATE(2663)] = 58252, - [SMALL_STATE(2664)] = 58312, - [SMALL_STATE(2665)] = 58378, - [SMALL_STATE(2666)] = 58444, - [SMALL_STATE(2667)] = 58550, - [SMALL_STATE(2668)] = 58610, - [SMALL_STATE(2669)] = 58678, - [SMALL_STATE(2670)] = 58748, - [SMALL_STATE(2671)] = 58810, - [SMALL_STATE(2672)] = 58876, - [SMALL_STATE(2673)] = 58936, - [SMALL_STATE(2674)] = 58996, - [SMALL_STATE(2675)] = 59056, - [SMALL_STATE(2676)] = 59158, - [SMALL_STATE(2677)] = 59220, - [SMALL_STATE(2678)] = 59280, - [SMALL_STATE(2679)] = 59340, - [SMALL_STATE(2680)] = 59406, - [SMALL_STATE(2681)] = 59466, - [SMALL_STATE(2682)] = 59568, - [SMALL_STATE(2683)] = 59670, - [SMALL_STATE(2684)] = 59730, - [SMALL_STATE(2685)] = 59794, - [SMALL_STATE(2686)] = 59856, - [SMALL_STATE(2687)] = 59918, - [SMALL_STATE(2688)] = 59986, - [SMALL_STATE(2689)] = 60046, - [SMALL_STATE(2690)] = 60116, - [SMALL_STATE(2691)] = 60192, - [SMALL_STATE(2692)] = 60254, - [SMALL_STATE(2693)] = 60328, - [SMALL_STATE(2694)] = 60406, - [SMALL_STATE(2695)] = 60488, - [SMALL_STATE(2696)] = 60572, - [SMALL_STATE(2697)] = 60660, - [SMALL_STATE(2698)] = 60750, - [SMALL_STATE(2699)] = 60844, - [SMALL_STATE(2700)] = 60942, - [SMALL_STATE(2701)] = 61012, - [SMALL_STATE(2702)] = 61084, - [SMALL_STATE(2703)] = 61143, - [SMALL_STATE(2704)] = 61202, - [SMALL_STATE(2705)] = 61261, - [SMALL_STATE(2706)] = 61320, - [SMALL_STATE(2707)] = 61379, - [SMALL_STATE(2708)] = 61438, - [SMALL_STATE(2709)] = 61497, - [SMALL_STATE(2710)] = 61556, - [SMALL_STATE(2711)] = 61615, - [SMALL_STATE(2712)] = 61674, - [SMALL_STATE(2713)] = 61733, - [SMALL_STATE(2714)] = 61792, - [SMALL_STATE(2715)] = 61851, - [SMALL_STATE(2716)] = 61910, - [SMALL_STATE(2717)] = 61969, - [SMALL_STATE(2718)] = 62028, - [SMALL_STATE(2719)] = 62087, - [SMALL_STATE(2720)] = 62146, - [SMALL_STATE(2721)] = 62205, - [SMALL_STATE(2722)] = 62264, - [SMALL_STATE(2723)] = 62323, - [SMALL_STATE(2724)] = 62382, - [SMALL_STATE(2725)] = 62441, - [SMALL_STATE(2726)] = 62506, - [SMALL_STATE(2727)] = 62565, - [SMALL_STATE(2728)] = 62624, - [SMALL_STATE(2729)] = 62683, - [SMALL_STATE(2730)] = 62742, - [SMALL_STATE(2731)] = 62801, - [SMALL_STATE(2732)] = 62860, - [SMALL_STATE(2733)] = 62919, - [SMALL_STATE(2734)] = 62984, - [SMALL_STATE(2735)] = 63043, - [SMALL_STATE(2736)] = 63102, - [SMALL_STATE(2737)] = 63161, - [SMALL_STATE(2738)] = 63220, - [SMALL_STATE(2739)] = 63279, - [SMALL_STATE(2740)] = 63338, - [SMALL_STATE(2741)] = 63397, - [SMALL_STATE(2742)] = 63456, - [SMALL_STATE(2743)] = 63515, - [SMALL_STATE(2744)] = 63574, - [SMALL_STATE(2745)] = 63633, - [SMALL_STATE(2746)] = 63692, - [SMALL_STATE(2747)] = 63751, - [SMALL_STATE(2748)] = 63810, - [SMALL_STATE(2749)] = 63869, - [SMALL_STATE(2750)] = 63928, - [SMALL_STATE(2751)] = 63987, - [SMALL_STATE(2752)] = 64046, - [SMALL_STATE(2753)] = 64105, - [SMALL_STATE(2754)] = 64164, - [SMALL_STATE(2755)] = 64223, - [SMALL_STATE(2756)] = 64282, - [SMALL_STATE(2757)] = 64341, - [SMALL_STATE(2758)] = 64400, - [SMALL_STATE(2759)] = 64459, - [SMALL_STATE(2760)] = 64518, - [SMALL_STATE(2761)] = 64577, - [SMALL_STATE(2762)] = 64636, - [SMALL_STATE(2763)] = 64695, - [SMALL_STATE(2764)] = 64754, - [SMALL_STATE(2765)] = 64813, - [SMALL_STATE(2766)] = 64878, - [SMALL_STATE(2767)] = 64941, - [SMALL_STATE(2768)] = 65000, - [SMALL_STATE(2769)] = 65059, - [SMALL_STATE(2770)] = 65128, - [SMALL_STATE(2771)] = 65281, - [SMALL_STATE(2772)] = 65340, - [SMALL_STATE(2773)] = 65411, - [SMALL_STATE(2774)] = 65564, - [SMALL_STATE(2775)] = 65629, - [SMALL_STATE(2776)] = 65688, - [SMALL_STATE(2777)] = 65749, - [SMALL_STATE(2778)] = 65814, - [SMALL_STATE(2779)] = 65873, - [SMALL_STATE(2780)] = 65932, - [SMALL_STATE(2781)] = 65991, - [SMALL_STATE(2782)] = 66144, - [SMALL_STATE(2783)] = 66297, - [SMALL_STATE(2784)] = 66450, - [SMALL_STATE(2785)] = 66603, - [SMALL_STATE(2786)] = 66756, - [SMALL_STATE(2787)] = 66909, - [SMALL_STATE(2788)] = 67062, - [SMALL_STATE(2789)] = 67215, - [SMALL_STATE(2790)] = 67368, - [SMALL_STATE(2791)] = 67521, - [SMALL_STATE(2792)] = 67580, - [SMALL_STATE(2793)] = 67639, - [SMALL_STATE(2794)] = 67698, - [SMALL_STATE(2795)] = 67757, - [SMALL_STATE(2796)] = 67822, - [SMALL_STATE(2797)] = 67881, - [SMALL_STATE(2798)] = 67940, - [SMALL_STATE(2799)] = 67999, - [SMALL_STATE(2800)] = 68058, - [SMALL_STATE(2801)] = 68117, - [SMALL_STATE(2802)] = 68176, - [SMALL_STATE(2803)] = 68235, - [SMALL_STATE(2804)] = 68294, - [SMALL_STATE(2805)] = 68353, - [SMALL_STATE(2806)] = 68412, - [SMALL_STATE(2807)] = 68471, - [SMALL_STATE(2808)] = 68530, - [SMALL_STATE(2809)] = 68589, - [SMALL_STATE(2810)] = 68648, - [SMALL_STATE(2811)] = 68707, - [SMALL_STATE(2812)] = 68766, - [SMALL_STATE(2813)] = 68825, - [SMALL_STATE(2814)] = 68884, - [SMALL_STATE(2815)] = 68943, - [SMALL_STATE(2816)] = 69002, - [SMALL_STATE(2817)] = 69061, - [SMALL_STATE(2818)] = 69120, - [SMALL_STATE(2819)] = 69179, - [SMALL_STATE(2820)] = 69240, - [SMALL_STATE(2821)] = 69299, - [SMALL_STATE(2822)] = 69358, - [SMALL_STATE(2823)] = 69417, - [SMALL_STATE(2824)] = 69476, - [SMALL_STATE(2825)] = 69535, - [SMALL_STATE(2826)] = 69594, - [SMALL_STATE(2827)] = 69655, - [SMALL_STATE(2828)] = 69716, - [SMALL_STATE(2829)] = 69777, - [SMALL_STATE(2830)] = 69836, - [SMALL_STATE(2831)] = 69895, - [SMALL_STATE(2832)] = 69954, - [SMALL_STATE(2833)] = 70013, - [SMALL_STATE(2834)] = 70072, - [SMALL_STATE(2835)] = 70131, - [SMALL_STATE(2836)] = 70190, - [SMALL_STATE(2837)] = 70249, - [SMALL_STATE(2838)] = 70308, - [SMALL_STATE(2839)] = 70367, - [SMALL_STATE(2840)] = 70426, - [SMALL_STATE(2841)] = 70485, - [SMALL_STATE(2842)] = 70544, - [SMALL_STATE(2843)] = 70603, - [SMALL_STATE(2844)] = 70662, - [SMALL_STATE(2845)] = 70721, - [SMALL_STATE(2846)] = 70780, - [SMALL_STATE(2847)] = 70839, - [SMALL_STATE(2848)] = 70898, - [SMALL_STATE(2849)] = 70957, - [SMALL_STATE(2850)] = 71016, - [SMALL_STATE(2851)] = 71075, - [SMALL_STATE(2852)] = 71134, - [SMALL_STATE(2853)] = 71193, - [SMALL_STATE(2854)] = 71252, - [SMALL_STATE(2855)] = 71311, - [SMALL_STATE(2856)] = 71370, - [SMALL_STATE(2857)] = 71429, - [SMALL_STATE(2858)] = 71488, - [SMALL_STATE(2859)] = 71547, - [SMALL_STATE(2860)] = 71606, - [SMALL_STATE(2861)] = 71665, - [SMALL_STATE(2862)] = 71724, - [SMALL_STATE(2863)] = 71783, - [SMALL_STATE(2864)] = 71842, - [SMALL_STATE(2865)] = 71901, - [SMALL_STATE(2866)] = 71960, - [SMALL_STATE(2867)] = 72019, - [SMALL_STATE(2868)] = 72078, - [SMALL_STATE(2869)] = 72137, - [SMALL_STATE(2870)] = 72196, - [SMALL_STATE(2871)] = 72255, - [SMALL_STATE(2872)] = 72314, - [SMALL_STATE(2873)] = 72373, - [SMALL_STATE(2874)] = 72432, - [SMALL_STATE(2875)] = 72491, - [SMALL_STATE(2876)] = 72550, - [SMALL_STATE(2877)] = 72611, - [SMALL_STATE(2878)] = 72670, - [SMALL_STATE(2879)] = 72729, - [SMALL_STATE(2880)] = 72788, - [SMALL_STATE(2881)] = 72847, - [SMALL_STATE(2882)] = 72906, - [SMALL_STATE(2883)] = 72965, - [SMALL_STATE(2884)] = 73024, - [SMALL_STATE(2885)] = 73083, - [SMALL_STATE(2886)] = 73142, - [SMALL_STATE(2887)] = 73201, - [SMALL_STATE(2888)] = 73260, - [SMALL_STATE(2889)] = 73319, - [SMALL_STATE(2890)] = 73378, - [SMALL_STATE(2891)] = 73437, - [SMALL_STATE(2892)] = 73496, - [SMALL_STATE(2893)] = 73555, - [SMALL_STATE(2894)] = 73614, - [SMALL_STATE(2895)] = 73673, - [SMALL_STATE(2896)] = 73732, - [SMALL_STATE(2897)] = 73791, - [SMALL_STATE(2898)] = 73854, - [SMALL_STATE(2899)] = 73913, - [SMALL_STATE(2900)] = 73972, - [SMALL_STATE(2901)] = 74031, - [SMALL_STATE(2902)] = 74094, - [SMALL_STATE(2903)] = 74153, - [SMALL_STATE(2904)] = 74212, - [SMALL_STATE(2905)] = 74271, - [SMALL_STATE(2906)] = 74330, - [SMALL_STATE(2907)] = 74389, - [SMALL_STATE(2908)] = 74448, - [SMALL_STATE(2909)] = 74507, - [SMALL_STATE(2910)] = 74566, - [SMALL_STATE(2911)] = 74625, - [SMALL_STATE(2912)] = 74684, - [SMALL_STATE(2913)] = 74743, - [SMALL_STATE(2914)] = 74802, - [SMALL_STATE(2915)] = 74861, - [SMALL_STATE(2916)] = 74920, - [SMALL_STATE(2917)] = 74979, - [SMALL_STATE(2918)] = 75038, - [SMALL_STATE(2919)] = 75097, - [SMALL_STATE(2920)] = 75156, - [SMALL_STATE(2921)] = 75215, - [SMALL_STATE(2922)] = 75274, - [SMALL_STATE(2923)] = 75333, - [SMALL_STATE(2924)] = 75392, - [SMALL_STATE(2925)] = 75451, - [SMALL_STATE(2926)] = 75510, - [SMALL_STATE(2927)] = 75610, - [SMALL_STATE(2928)] = 75712, - [SMALL_STATE(2929)] = 75788, - [SMALL_STATE(2930)] = 75850, - [SMALL_STATE(2931)] = 75908, - [SMALL_STATE(2932)] = 75968, - [SMALL_STATE(2933)] = 76038, - [SMALL_STATE(2934)] = 76096, - [SMALL_STATE(2935)] = 76164, - [SMALL_STATE(2936)] = 76234, - [SMALL_STATE(2937)] = 76334, - [SMALL_STATE(2938)] = 76392, - [SMALL_STATE(2939)] = 76450, - [SMALL_STATE(2940)] = 76508, - [SMALL_STATE(2941)] = 76568, - [SMALL_STATE(2942)] = 76626, - [SMALL_STATE(2943)] = 76684, - [SMALL_STATE(2944)] = 76784, - [SMALL_STATE(2945)] = 76842, - [SMALL_STATE(2946)] = 76900, - [SMALL_STATE(2947)] = 76958, - [SMALL_STATE(2948)] = 77016, - [SMALL_STATE(2949)] = 77086, - [SMALL_STATE(2950)] = 77190, - [SMALL_STATE(2951)] = 77248, - [SMALL_STATE(2952)] = 77306, - [SMALL_STATE(2953)] = 77384, - [SMALL_STATE(2954)] = 77442, - [SMALL_STATE(2955)] = 77500, - [SMALL_STATE(2956)] = 77558, - [SMALL_STATE(2957)] = 77618, - [SMALL_STATE(2958)] = 77676, - [SMALL_STATE(2959)] = 77734, - [SMALL_STATE(2960)] = 77796, - [SMALL_STATE(2961)] = 77864, - [SMALL_STATE(2962)] = 77926, - [SMALL_STATE(2963)] = 78012, - [SMALL_STATE(2964)] = 78090, - [SMALL_STATE(2965)] = 78170, - [SMALL_STATE(2966)] = 78252, - [SMALL_STATE(2967)] = 78312, - [SMALL_STATE(2968)] = 78400, - [SMALL_STATE(2969)] = 78492, - [SMALL_STATE(2970)] = 78588, - [SMALL_STATE(2971)] = 78658, - [SMALL_STATE(2972)] = 78718, - [SMALL_STATE(2973)] = 78778, - [SMALL_STATE(2974)] = 78836, - [SMALL_STATE(2975)] = 78894, - [SMALL_STATE(2976)] = 78994, - [SMALL_STATE(2977)] = 79066, - [SMALL_STATE(2978)] = 79124, - [SMALL_STATE(2979)] = 79198, - [SMALL_STATE(2980)] = 79256, - [SMALL_STATE(2981)] = 79316, - [SMALL_STATE(2982)] = 79373, - [SMALL_STATE(2983)] = 79430, - [SMALL_STATE(2984)] = 79487, - [SMALL_STATE(2985)] = 79544, - [SMALL_STATE(2986)] = 79601, - [SMALL_STATE(2987)] = 79658, - [SMALL_STATE(2988)] = 79715, - [SMALL_STATE(2989)] = 79774, - [SMALL_STATE(2990)] = 79831, - [SMALL_STATE(2991)] = 79888, - [SMALL_STATE(2992)] = 79951, - [SMALL_STATE(2993)] = 80016, - [SMALL_STATE(2994)] = 80073, - [SMALL_STATE(2995)] = 80140, - [SMALL_STATE(2996)] = 80215, - [SMALL_STATE(2997)] = 80312, - [SMALL_STATE(2998)] = 80377, - [SMALL_STATE(2999)] = 80434, - [SMALL_STATE(3000)] = 80491, - [SMALL_STATE(3001)] = 80548, - [SMALL_STATE(3002)] = 80605, - [SMALL_STATE(3003)] = 80662, - [SMALL_STATE(3004)] = 80725, - [SMALL_STATE(3005)] = 80782, - [SMALL_STATE(3006)] = 80883, - [SMALL_STATE(3007)] = 80940, - [SMALL_STATE(3008)] = 81001, - [SMALL_STATE(3009)] = 81058, - [SMALL_STATE(3010)] = 81115, - [SMALL_STATE(3011)] = 81172, - [SMALL_STATE(3012)] = 81229, - [SMALL_STATE(3013)] = 81286, - [SMALL_STATE(3014)] = 81343, - [SMALL_STATE(3015)] = 81400, - [SMALL_STATE(3016)] = 81457, - [SMALL_STATE(3017)] = 81518, - [SMALL_STATE(3018)] = 81583, - [SMALL_STATE(3019)] = 81680, - [SMALL_STATE(3020)] = 81737, - [SMALL_STATE(3021)] = 81796, - [SMALL_STATE(3022)] = 81853, - [SMALL_STATE(3023)] = 81910, - [SMALL_STATE(3024)] = 82009, - [SMALL_STATE(3025)] = 82066, - [SMALL_STATE(3026)] = 82123, - [SMALL_STATE(3027)] = 82180, - [SMALL_STATE(3028)] = 82237, - [SMALL_STATE(3029)] = 82294, - [SMALL_STATE(3030)] = 82351, - [SMALL_STATE(3031)] = 82408, - [SMALL_STATE(3032)] = 82465, - [SMALL_STATE(3033)] = 82522, - [SMALL_STATE(3034)] = 82579, - [SMALL_STATE(3035)] = 82636, - [SMALL_STATE(3036)] = 82693, - [SMALL_STATE(3037)] = 82750, - [SMALL_STATE(3038)] = 82807, - [SMALL_STATE(3039)] = 82864, - [SMALL_STATE(3040)] = 82921, - [SMALL_STATE(3041)] = 82988, - [SMALL_STATE(3042)] = 83083, - [SMALL_STATE(3043)] = 83140, - [SMALL_STATE(3044)] = 83233, - [SMALL_STATE(3045)] = 83322, - [SMALL_STATE(3046)] = 83407, - [SMALL_STATE(3047)] = 83464, - [SMALL_STATE(3048)] = 83545, - [SMALL_STATE(3049)] = 83624, - [SMALL_STATE(3050)] = 83699, - [SMALL_STATE(3051)] = 83770, - [SMALL_STATE(3052)] = 83843, - [SMALL_STATE(3053)] = 83900, - [SMALL_STATE(3054)] = 83957, - [SMALL_STATE(3055)] = 84014, - [SMALL_STATE(3056)] = 84075, - [SMALL_STATE(3057)] = 84132, - [SMALL_STATE(3058)] = 84201, - [SMALL_STATE(3059)] = 84262, - [SMALL_STATE(3060)] = 84319, - [SMALL_STATE(3061)] = 84386, - [SMALL_STATE(3062)] = 84443, - [SMALL_STATE(3063)] = 84512, - [SMALL_STATE(3064)] = 84589, - [SMALL_STATE(3065)] = 84690, - [SMALL_STATE(3066)] = 84757, - [SMALL_STATE(3067)] = 84858, - [SMALL_STATE(3068)] = 84961, - [SMALL_STATE(3069)] = 85018, - [SMALL_STATE(3070)] = 85089, - [SMALL_STATE(3071)] = 85158, - [SMALL_STATE(3072)] = 85255, - [SMALL_STATE(3073)] = 85348, - [SMALL_STATE(3074)] = 85437, - [SMALL_STATE(3075)] = 85500, - [SMALL_STATE(3076)] = 85587, - [SMALL_STATE(3077)] = 85670, - [SMALL_STATE(3078)] = 85727, - [SMALL_STATE(3079)] = 85794, - [SMALL_STATE(3080)] = 85891, - [SMALL_STATE(3081)] = 85948, - [SMALL_STATE(3082)] = 86029, - [SMALL_STATE(3083)] = 86098, - [SMALL_STATE(3084)] = 86195, - [SMALL_STATE(3085)] = 86272, - [SMALL_STATE(3086)] = 86345, - [SMALL_STATE(3087)] = 86420, - [SMALL_STATE(3088)] = 86489, - [SMALL_STATE(3089)] = 86590, - [SMALL_STATE(3090)] = 86691, - [SMALL_STATE(3091)] = 86796, - [SMALL_STATE(3092)] = 86853, - [SMALL_STATE(3093)] = 86910, - [SMALL_STATE(3094)] = 86967, - [SMALL_STATE(3095)] = 87023, - [SMALL_STATE(3096)] = 87079, - [SMALL_STATE(3097)] = 87137, - [SMALL_STATE(3098)] = 87197, - [SMALL_STATE(3099)] = 87253, - [SMALL_STATE(3100)] = 87309, - [SMALL_STATE(3101)] = 87369, - [SMALL_STATE(3102)] = 87425, - [SMALL_STATE(3103)] = 87481, - [SMALL_STATE(3104)] = 87537, - [SMALL_STATE(3105)] = 87593, - [SMALL_STATE(3106)] = 87649, - [SMALL_STATE(3107)] = 87705, - [SMALL_STATE(3108)] = 87761, - [SMALL_STATE(3109)] = 87817, - [SMALL_STATE(3110)] = 87873, - [SMALL_STATE(3111)] = 87929, - [SMALL_STATE(3112)] = 87985, - [SMALL_STATE(3113)] = 88041, - [SMALL_STATE(3114)] = 88097, - [SMALL_STATE(3115)] = 88159, - [SMALL_STATE(3116)] = 88215, - [SMALL_STATE(3117)] = 88271, - [SMALL_STATE(3118)] = 88333, - [SMALL_STATE(3119)] = 88389, - [SMALL_STATE(3120)] = 88445, - [SMALL_STATE(3121)] = 88501, - [SMALL_STATE(3122)] = 88557, - [SMALL_STATE(3123)] = 88613, - [SMALL_STATE(3124)] = 88671, - [SMALL_STATE(3125)] = 88727, - [SMALL_STATE(3126)] = 88783, - [SMALL_STATE(3127)] = 88839, - [SMALL_STATE(3128)] = 88895, - [SMALL_STATE(3129)] = 88951, - [SMALL_STATE(3130)] = 89007, - [SMALL_STATE(3131)] = 89063, - [SMALL_STATE(3132)] = 89119, - [SMALL_STATE(3133)] = 89175, - [SMALL_STATE(3134)] = 89231, - [SMALL_STATE(3135)] = 89287, - [SMALL_STATE(3136)] = 89343, - [SMALL_STATE(3137)] = 89405, - [SMALL_STATE(3138)] = 89461, - [SMALL_STATE(3139)] = 89517, - [SMALL_STATE(3140)] = 89573, - [SMALL_STATE(3141)] = 89629, - [SMALL_STATE(3142)] = 89685, - [SMALL_STATE(3143)] = 89741, - [SMALL_STATE(3144)] = 89797, - [SMALL_STATE(3145)] = 89853, - [SMALL_STATE(3146)] = 89909, - [SMALL_STATE(3147)] = 89965, - [SMALL_STATE(3148)] = 90020, - [SMALL_STATE(3149)] = 90075, - [SMALL_STATE(3150)] = 90130, - [SMALL_STATE(3151)] = 90189, - [SMALL_STATE(3152)] = 90248, - [SMALL_STATE(3153)] = 90303, - [SMALL_STATE(3154)] = 90358, - [SMALL_STATE(3155)] = 90421, - [SMALL_STATE(3156)] = 90480, - [SMALL_STATE(3157)] = 90535, - [SMALL_STATE(3158)] = 90590, - [SMALL_STATE(3159)] = 90645, - [SMALL_STATE(3160)] = 90700, - [SMALL_STATE(3161)] = 90755, - [SMALL_STATE(3162)] = 90810, - [SMALL_STATE(3163)] = 90865, - [SMALL_STATE(3164)] = 90920, - [SMALL_STATE(3165)] = 90975, - [SMALL_STATE(3166)] = 91030, - [SMALL_STATE(3167)] = 91085, - [SMALL_STATE(3168)] = 91140, - [SMALL_STATE(3169)] = 91195, - [SMALL_STATE(3170)] = 91250, - [SMALL_STATE(3171)] = 91305, - [SMALL_STATE(3172)] = 91360, - [SMALL_STATE(3173)] = 91415, - [SMALL_STATE(3174)] = 91470, - [SMALL_STATE(3175)] = 91525, - [SMALL_STATE(3176)] = 91580, - [SMALL_STATE(3177)] = 91635, - [SMALL_STATE(3178)] = 91690, - [SMALL_STATE(3179)] = 91745, - [SMALL_STATE(3180)] = 91800, - [SMALL_STATE(3181)] = 91855, - [SMALL_STATE(3182)] = 91910, - [SMALL_STATE(3183)] = 91965, - [SMALL_STATE(3184)] = 92020, - [SMALL_STATE(3185)] = 92075, - [SMALL_STATE(3186)] = 92130, - [SMALL_STATE(3187)] = 92185, - [SMALL_STATE(3188)] = 92240, - [SMALL_STATE(3189)] = 92295, - [SMALL_STATE(3190)] = 92350, - [SMALL_STATE(3191)] = 92405, - [SMALL_STATE(3192)] = 92460, - [SMALL_STATE(3193)] = 92515, - [SMALL_STATE(3194)] = 92570, - [SMALL_STATE(3195)] = 92629, - [SMALL_STATE(3196)] = 92684, - [SMALL_STATE(3197)] = 92739, - [SMALL_STATE(3198)] = 92794, - [SMALL_STATE(3199)] = 92849, - [SMALL_STATE(3200)] = 92904, - [SMALL_STATE(3201)] = 92959, - [SMALL_STATE(3202)] = 93014, - [SMALL_STATE(3203)] = 93069, - [SMALL_STATE(3204)] = 93124, - [SMALL_STATE(3205)] = 93179, - [SMALL_STATE(3206)] = 93234, - [SMALL_STATE(3207)] = 93289, - [SMALL_STATE(3208)] = 93344, - [SMALL_STATE(3209)] = 93399, - [SMALL_STATE(3210)] = 93454, - [SMALL_STATE(3211)] = 93509, - [SMALL_STATE(3212)] = 93564, - [SMALL_STATE(3213)] = 93619, - [SMALL_STATE(3214)] = 93674, - [SMALL_STATE(3215)] = 93729, - [SMALL_STATE(3216)] = 93785, - [SMALL_STATE(3217)] = 93839, - [SMALL_STATE(3218)] = 93933, - [SMALL_STATE(3219)] = 93987, - [SMALL_STATE(3220)] = 94041, - [SMALL_STATE(3221)] = 94097, - [SMALL_STATE(3222)] = 94151, - [SMALL_STATE(3223)] = 94211, - [SMALL_STATE(3224)] = 94265, - [SMALL_STATE(3225)] = 94319, - [SMALL_STATE(3226)] = 94373, - [SMALL_STATE(3227)] = 94433, - [SMALL_STATE(3228)] = 94487, - [SMALL_STATE(3229)] = 94541, - [SMALL_STATE(3230)] = 94597, - [SMALL_STATE(3231)] = 94651, - [SMALL_STATE(3232)] = 94705, - [SMALL_STATE(3233)] = 94799, - [SMALL_STATE(3234)] = 94853, - [SMALL_STATE(3235)] = 94907, - [SMALL_STATE(3236)] = 94961, - [SMALL_STATE(3237)] = 95015, - [SMALL_STATE(3238)] = 95069, - [SMALL_STATE(3239)] = 95123, - [SMALL_STATE(3240)] = 95177, - [SMALL_STATE(3241)] = 95231, - [SMALL_STATE(3242)] = 95285, - [SMALL_STATE(3243)] = 95339, - [SMALL_STATE(3244)] = 95398, - [SMALL_STATE(3245)] = 95491, - [SMALL_STATE(3246)] = 95584, - [SMALL_STATE(3247)] = 95677, - [SMALL_STATE(3248)] = 95736, - [SMALL_STATE(3249)] = 95829, - [SMALL_STATE(3250)] = 95922, - [SMALL_STATE(3251)] = 96015, - [SMALL_STATE(3252)] = 96108, - [SMALL_STATE(3253)] = 96201, - [SMALL_STATE(3254)] = 96294, - [SMALL_STATE(3255)] = 96387, - [SMALL_STATE(3256)] = 96480, - [SMALL_STATE(3257)] = 96573, - [SMALL_STATE(3258)] = 96666, - [SMALL_STATE(3259)] = 96759, - [SMALL_STATE(3260)] = 96852, - [SMALL_STATE(3261)] = 96945, - [SMALL_STATE(3262)] = 97002, - [SMALL_STATE(3263)] = 97095, - [SMALL_STATE(3264)] = 97188, - [SMALL_STATE(3265)] = 97281, - [SMALL_STATE(3266)] = 97374, - [SMALL_STATE(3267)] = 97467, - [SMALL_STATE(3268)] = 97560, - [SMALL_STATE(3269)] = 97653, - [SMALL_STATE(3270)] = 97746, - [SMALL_STATE(3271)] = 97839, - [SMALL_STATE(3272)] = 97907, - [SMALL_STATE(3273)] = 97963, - [SMALL_STATE(3274)] = 98021, - [SMALL_STATE(3275)] = 98093, - [SMALL_STATE(3276)] = 98161, - [SMALL_STATE(3277)] = 98219, - [SMALL_STATE(3278)] = 98287, - [SMALL_STATE(3279)] = 98355, - [SMALL_STATE(3280)] = 98427, - [SMALL_STATE(3281)] = 98485, - [SMALL_STATE(3282)] = 98542, - [SMALL_STATE(3283)] = 98595, - [SMALL_STATE(3284)] = 98646, - [SMALL_STATE(3285)] = 98697, - [SMALL_STATE(3286)] = 98760, - [SMALL_STATE(3287)] = 98823, - [SMALL_STATE(3288)] = 98874, - [SMALL_STATE(3289)] = 98937, - [SMALL_STATE(3290)] = 98996, - [SMALL_STATE(3291)] = 99053, - [SMALL_STATE(3292)] = 99116, - [SMALL_STATE(3293)] = 99179, - [SMALL_STATE(3294)] = 99236, - [SMALL_STATE(3295)] = 99299, - [SMALL_STATE(3296)] = 99366, - [SMALL_STATE(3297)] = 99423, - [SMALL_STATE(3298)] = 99474, - [SMALL_STATE(3299)] = 99541, - [SMALL_STATE(3300)] = 99592, - [SMALL_STATE(3301)] = 99655, - [SMALL_STATE(3302)] = 99708, - [SMALL_STATE(3303)] = 99771, - [SMALL_STATE(3304)] = 99838, - [SMALL_STATE(3305)] = 99889, - [SMALL_STATE(3306)] = 99952, - [SMALL_STATE(3307)] = 100003, - [SMALL_STATE(3308)] = 100054, - [SMALL_STATE(3309)] = 100105, - [SMALL_STATE(3310)] = 100156, - [SMALL_STATE(3311)] = 100223, - [SMALL_STATE(3312)] = 100276, - [SMALL_STATE(3313)] = 100332, - [SMALL_STATE(3314)] = 100426, - [SMALL_STATE(3315)] = 100492, - [SMALL_STATE(3316)] = 100542, - [SMALL_STATE(3317)] = 100608, - [SMALL_STATE(3318)] = 100674, - [SMALL_STATE(3319)] = 100740, - [SMALL_STATE(3320)] = 100796, - [SMALL_STATE(3321)] = 100890, - [SMALL_STATE(3322)] = 100939, - [SMALL_STATE(3323)] = 101002, - [SMALL_STATE(3324)] = 101053, - [SMALL_STATE(3325)] = 101144, - [SMALL_STATE(3326)] = 101193, - [SMALL_STATE(3327)] = 101242, - [SMALL_STATE(3328)] = 101333, - [SMALL_STATE(3329)] = 101424, - [SMALL_STATE(3330)] = 101473, - [SMALL_STATE(3331)] = 101564, - [SMALL_STATE(3332)] = 101613, - [SMALL_STATE(3333)] = 101676, - [SMALL_STATE(3334)] = 101725, - [SMALL_STATE(3335)] = 101774, - [SMALL_STATE(3336)] = 101865, - [SMALL_STATE(3337)] = 101914, - [SMALL_STATE(3338)] = 101963, - [SMALL_STATE(3339)] = 102054, - [SMALL_STATE(3340)] = 102145, - [SMALL_STATE(3341)] = 102236, - [SMALL_STATE(3342)] = 102285, - [SMALL_STATE(3343)] = 102376, - [SMALL_STATE(3344)] = 102425, - [SMALL_STATE(3345)] = 102474, - [SMALL_STATE(3346)] = 102565, - [SMALL_STATE(3347)] = 102614, - [SMALL_STATE(3348)] = 102705, - [SMALL_STATE(3349)] = 102796, - [SMALL_STATE(3350)] = 102845, - [SMALL_STATE(3351)] = 102900, - [SMALL_STATE(3352)] = 102991, - [SMALL_STATE(3353)] = 103040, - [SMALL_STATE(3354)] = 103089, - [SMALL_STATE(3355)] = 103138, - [SMALL_STATE(3356)] = 103187, - [SMALL_STATE(3357)] = 103278, - [SMALL_STATE(3358)] = 103327, - [SMALL_STATE(3359)] = 103418, - [SMALL_STATE(3360)] = 103509, - [SMALL_STATE(3361)] = 103572, - [SMALL_STATE(3362)] = 103627, - [SMALL_STATE(3363)] = 103682, - [SMALL_STATE(3364)] = 103735, - [SMALL_STATE(3365)] = 103826, - [SMALL_STATE(3366)] = 103875, - [SMALL_STATE(3367)] = 103924, - [SMALL_STATE(3368)] = 103973, - [SMALL_STATE(3369)] = 104064, - [SMALL_STATE(3370)] = 104155, - [SMALL_STATE(3371)] = 104246, - [SMALL_STATE(3372)] = 104337, - [SMALL_STATE(3373)] = 104387, - [SMALL_STATE(3374)] = 104441, - [SMALL_STATE(3375)] = 104529, - [SMALL_STATE(3376)] = 104617, - [SMALL_STATE(3377)] = 104671, - [SMALL_STATE(3378)] = 104759, - [SMALL_STATE(3379)] = 104847, - [SMALL_STATE(3380)] = 104935, - [SMALL_STATE(3381)] = 105023, - [SMALL_STATE(3382)] = 105077, - [SMALL_STATE(3383)] = 105131, - [SMALL_STATE(3384)] = 105219, - [SMALL_STATE(3385)] = 105273, - [SMALL_STATE(3386)] = 105361, - [SMALL_STATE(3387)] = 105449, - [SMALL_STATE(3388)] = 105501, - [SMALL_STATE(3389)] = 105589, - [SMALL_STATE(3390)] = 105641, - [SMALL_STATE(3391)] = 105729, - [SMALL_STATE(3392)] = 105817, - [SMALL_STATE(3393)] = 105887, - [SMALL_STATE(3394)] = 105975, - [SMALL_STATE(3395)] = 106063, - [SMALL_STATE(3396)] = 106151, - [SMALL_STATE(3397)] = 106239, - [SMALL_STATE(3398)] = 106309, - [SMALL_STATE(3399)] = 106401, - [SMALL_STATE(3400)] = 106493, - [SMALL_STATE(3401)] = 106581, - [SMALL_STATE(3402)] = 106629, - [SMALL_STATE(3403)] = 106699, - [SMALL_STATE(3404)] = 106769, - [SMALL_STATE(3405)] = 106857, - [SMALL_STATE(3406)] = 106945, - [SMALL_STATE(3407)] = 107033, - [SMALL_STATE(3408)] = 107081, - [SMALL_STATE(3409)] = 107139, - [SMALL_STATE(3410)] = 107227, - [SMALL_STATE(3411)] = 107275, - [SMALL_STATE(3412)] = 107337, - [SMALL_STATE(3413)] = 107407, - [SMALL_STATE(3414)] = 107477, - [SMALL_STATE(3415)] = 107565, - [SMALL_STATE(3416)] = 107653, - [SMALL_STATE(3417)] = 107741, - [SMALL_STATE(3418)] = 107811, - [SMALL_STATE(3419)] = 107861, - [SMALL_STATE(3420)] = 107949, - [SMALL_STATE(3421)] = 108037, - [SMALL_STATE(3422)] = 108125, - [SMALL_STATE(3423)] = 108173, - [SMALL_STATE(3424)] = 108221, - [SMALL_STATE(3425)] = 108269, - [SMALL_STATE(3426)] = 108323, - [SMALL_STATE(3427)] = 108411, - [SMALL_STATE(3428)] = 108460, - [SMALL_STATE(3429)] = 108507, - [SMALL_STATE(3430)] = 108554, - [SMALL_STATE(3431)] = 108601, - [SMALL_STATE(3432)] = 108648, - [SMALL_STATE(3433)] = 108695, - [SMALL_STATE(3434)] = 108742, - [SMALL_STATE(3435)] = 108795, - [SMALL_STATE(3436)] = 108844, - [SMALL_STATE(3437)] = 108891, - [SMALL_STATE(3438)] = 108938, - [SMALL_STATE(3439)] = 108985, - [SMALL_STATE(3440)] = 109032, - [SMALL_STATE(3441)] = 109079, - [SMALL_STATE(3442)] = 109126, - [SMALL_STATE(3443)] = 109185, - [SMALL_STATE(3444)] = 109236, - [SMALL_STATE(3445)] = 109293, - [SMALL_STATE(3446)] = 109340, - [SMALL_STATE(3447)] = 109387, - [SMALL_STATE(3448)] = 109434, - [SMALL_STATE(3449)] = 109485, - [SMALL_STATE(3450)] = 109542, - [SMALL_STATE(3451)] = 109589, - [SMALL_STATE(3452)] = 109648, - [SMALL_STATE(3453)] = 109695, - [SMALL_STATE(3454)] = 109754, - [SMALL_STATE(3455)] = 109813, - [SMALL_STATE(3456)] = 109860, - [SMALL_STATE(3457)] = 109911, - [SMALL_STATE(3458)] = 109958, - [SMALL_STATE(3459)] = 110005, - [SMALL_STATE(3460)] = 110052, - [SMALL_STATE(3461)] = 110099, - [SMALL_STATE(3462)] = 110158, - [SMALL_STATE(3463)] = 110213, - [SMALL_STATE(3464)] = 110260, - [SMALL_STATE(3465)] = 110313, - [SMALL_STATE(3466)] = 110360, - [SMALL_STATE(3467)] = 110407, - [SMALL_STATE(3468)] = 110456, - [SMALL_STATE(3469)] = 110503, - [SMALL_STATE(3470)] = 110550, - [SMALL_STATE(3471)] = 110597, - [SMALL_STATE(3472)] = 110652, - [SMALL_STATE(3473)] = 110699, - [SMALL_STATE(3474)] = 110746, - [SMALL_STATE(3475)] = 110793, - [SMALL_STATE(3476)] = 110840, - [SMALL_STATE(3477)] = 110887, - [SMALL_STATE(3478)] = 110934, - [SMALL_STATE(3479)] = 110981, - [SMALL_STATE(3480)] = 111028, - [SMALL_STATE(3481)] = 111079, - [SMALL_STATE(3482)] = 111138, - [SMALL_STATE(3483)] = 111185, - [SMALL_STATE(3484)] = 111232, - [SMALL_STATE(3485)] = 111279, - [SMALL_STATE(3486)] = 111326, - [SMALL_STATE(3487)] = 111385, - [SMALL_STATE(3488)] = 111444, - [SMALL_STATE(3489)] = 111491, - [SMALL_STATE(3490)] = 111538, - [SMALL_STATE(3491)] = 111597, - [SMALL_STATE(3492)] = 111650, - [SMALL_STATE(3493)] = 111697, - [SMALL_STATE(3494)] = 111744, - [SMALL_STATE(3495)] = 111791, - [SMALL_STATE(3496)] = 111838, - [SMALL_STATE(3497)] = 111897, - [SMALL_STATE(3498)] = 111944, - [SMALL_STATE(3499)] = 112003, - [SMALL_STATE(3500)] = 112050, - [SMALL_STATE(3501)] = 112109, - [SMALL_STATE(3502)] = 112156, - [SMALL_STATE(3503)] = 112203, - [SMALL_STATE(3504)] = 112250, - [SMALL_STATE(3505)] = 112297, - [SMALL_STATE(3506)] = 112352, - [SMALL_STATE(3507)] = 112399, - [SMALL_STATE(3508)] = 112446, - [SMALL_STATE(3509)] = 112493, - [SMALL_STATE(3510)] = 112540, - [SMALL_STATE(3511)] = 112603, - [SMALL_STATE(3512)] = 112650, - [SMALL_STATE(3513)] = 112697, - [SMALL_STATE(3514)] = 112744, - [SMALL_STATE(3515)] = 112791, - [SMALL_STATE(3516)] = 112838, - [SMALL_STATE(3517)] = 112885, - [SMALL_STATE(3518)] = 112932, - [SMALL_STATE(3519)] = 112999, - [SMALL_STATE(3520)] = 113046, - [SMALL_STATE(3521)] = 113093, - [SMALL_STATE(3522)] = 113140, - [SMALL_STATE(3523)] = 113187, - [SMALL_STATE(3524)] = 113238, - [SMALL_STATE(3525)] = 113285, - [SMALL_STATE(3526)] = 113338, - [SMALL_STATE(3527)] = 113385, - [SMALL_STATE(3528)] = 113432, - [SMALL_STATE(3529)] = 113499, - [SMALL_STATE(3530)] = 113546, - [SMALL_STATE(3531)] = 113593, - [SMALL_STATE(3532)] = 113640, - [SMALL_STATE(3533)] = 113687, - [SMALL_STATE(3534)] = 113734, - [SMALL_STATE(3535)] = 113781, - [SMALL_STATE(3536)] = 113828, - [SMALL_STATE(3537)] = 113875, - [SMALL_STATE(3538)] = 113922, - [SMALL_STATE(3539)] = 113969, - [SMALL_STATE(3540)] = 114016, - [SMALL_STATE(3541)] = 114068, - [SMALL_STATE(3542)] = 114128, - [SMALL_STATE(3543)] = 114188, - [SMALL_STATE(3544)] = 114246, - [SMALL_STATE(3545)] = 114332, - [SMALL_STATE(3546)] = 114390, - [SMALL_STATE(3547)] = 114442, - [SMALL_STATE(3548)] = 114500, - [SMALL_STATE(3549)] = 114558, - [SMALL_STATE(3550)] = 114644, - [SMALL_STATE(3551)] = 114702, - [SMALL_STATE(3552)] = 114760, - [SMALL_STATE(3553)] = 114846, - [SMALL_STATE(3554)] = 114920, - [SMALL_STATE(3555)] = 114984, - [SMALL_STATE(3556)] = 115052, - [SMALL_STATE(3557)] = 115114, - [SMALL_STATE(3558)] = 115198, - [SMALL_STATE(3559)] = 115280, - [SMALL_STATE(3560)] = 115360, - [SMALL_STATE(3561)] = 115450, - [SMALL_STATE(3562)] = 115510, - [SMALL_STATE(3563)] = 115570, - [SMALL_STATE(3564)] = 115622, - [SMALL_STATE(3565)] = 115708, - [SMALL_STATE(3566)] = 115786, - [SMALL_STATE(3567)] = 115838, - [SMALL_STATE(3568)] = 115924, - [SMALL_STATE(3569)] = 115996, - [SMALL_STATE(3570)] = 116056, - [SMALL_STATE(3571)] = 116114, - [SMALL_STATE(3572)] = 116200, - [SMALL_STATE(3573)] = 116268, - [SMALL_STATE(3574)] = 116314, - [SMALL_STATE(3575)] = 116374, - [SMALL_STATE(3576)] = 116434, - [SMALL_STATE(3577)] = 116492, - [SMALL_STATE(3578)] = 116550, - [SMALL_STATE(3579)] = 116638, - [SMALL_STATE(3580)] = 116698, - [SMALL_STATE(3581)] = 116758, - [SMALL_STATE(3582)] = 116854, - [SMALL_STATE(3583)] = 116906, - [SMALL_STATE(3584)] = 116952, - [SMALL_STATE(3585)] = 116998, - [SMALL_STATE(3586)] = 117064, - [SMALL_STATE(3587)] = 117157, - [SMALL_STATE(3588)] = 117250, - [SMALL_STATE(3589)] = 117295, - [SMALL_STATE(3590)] = 117388, - [SMALL_STATE(3591)] = 117481, - [SMALL_STATE(3592)] = 117572, - [SMALL_STATE(3593)] = 117665, - [SMALL_STATE(3594)] = 117712, - [SMALL_STATE(3595)] = 117805, - [SMALL_STATE(3596)] = 117882, - [SMALL_STATE(3597)] = 117975, - [SMALL_STATE(3598)] = 118068, - [SMALL_STATE(3599)] = 118161, - [SMALL_STATE(3600)] = 118252, - [SMALL_STATE(3601)] = 118345, - [SMALL_STATE(3602)] = 118438, - [SMALL_STATE(3603)] = 118515, - [SMALL_STATE(3604)] = 118592, - [SMALL_STATE(3605)] = 118637, - [SMALL_STATE(3606)] = 118730, - [SMALL_STATE(3607)] = 118823, - [SMALL_STATE(3608)] = 118916, - [SMALL_STATE(3609)] = 118993, - [SMALL_STATE(3610)] = 119070, - [SMALL_STATE(3611)] = 119147, - [SMALL_STATE(3612)] = 119240, - [SMALL_STATE(3613)] = 119333, - [SMALL_STATE(3614)] = 119426, - [SMALL_STATE(3615)] = 119503, - [SMALL_STATE(3616)] = 119596, - [SMALL_STATE(3617)] = 119689, - [SMALL_STATE(3618)] = 119766, - [SMALL_STATE(3619)] = 119859, - [SMALL_STATE(3620)] = 119936, - [SMALL_STATE(3621)] = 120029, - [SMALL_STATE(3622)] = 120122, - [SMALL_STATE(3623)] = 120199, - [SMALL_STATE(3624)] = 120276, - [SMALL_STATE(3625)] = 120353, - [SMALL_STATE(3626)] = 120430, - [SMALL_STATE(3627)] = 120523, - [SMALL_STATE(3628)] = 120616, - [SMALL_STATE(3629)] = 120665, - [SMALL_STATE(3630)] = 120742, - [SMALL_STATE(3631)] = 120835, - [SMALL_STATE(3632)] = 120928, - [SMALL_STATE(3633)] = 121021, - [SMALL_STATE(3634)] = 121114, - [SMALL_STATE(3635)] = 121207, - [SMALL_STATE(3636)] = 121284, - [SMALL_STATE(3637)] = 121377, - [SMALL_STATE(3638)] = 121428, - [SMALL_STATE(3639)] = 121505, - [SMALL_STATE(3640)] = 121582, - [SMALL_STATE(3641)] = 121675, - [SMALL_STATE(3642)] = 121768, - [SMALL_STATE(3643)] = 121861, - [SMALL_STATE(3644)] = 121954, - [SMALL_STATE(3645)] = 122031, - [SMALL_STATE(3646)] = 122117, - [SMALL_STATE(3647)] = 122207, - [SMALL_STATE(3648)] = 122251, - [SMALL_STATE(3649)] = 122335, - [SMALL_STATE(3650)] = 122425, - [SMALL_STATE(3651)] = 122469, - [SMALL_STATE(3652)] = 122535, - [SMALL_STATE(3653)] = 122625, - [SMALL_STATE(3654)] = 122715, - [SMALL_STATE(3655)] = 122759, - [SMALL_STATE(3656)] = 122849, - [SMALL_STATE(3657)] = 122895, - [SMALL_STATE(3658)] = 122985, - [SMALL_STATE(3659)] = 123069, - [SMALL_STATE(3660)] = 123159, - [SMALL_STATE(3661)] = 123249, - [SMALL_STATE(3662)] = 123333, - [SMALL_STATE(3663)] = 123423, - [SMALL_STATE(3664)] = 123471, - [SMALL_STATE(3665)] = 123561, - [SMALL_STATE(3666)] = 123651, - [SMALL_STATE(3667)] = 123695, - [SMALL_STATE(3668)] = 123785, - [SMALL_STATE(3669)] = 123875, - [SMALL_STATE(3670)] = 123965, - [SMALL_STATE(3671)] = 124009, - [SMALL_STATE(3672)] = 124069, - [SMALL_STATE(3673)] = 124151, - [SMALL_STATE(3674)] = 124231, - [SMALL_STATE(3675)] = 124321, - [SMALL_STATE(3676)] = 124399, - [SMALL_STATE(3677)] = 124475, - [SMALL_STATE(3678)] = 124547, - [SMALL_STATE(3679)] = 124615, - [SMALL_STATE(3680)] = 124705, - [SMALL_STATE(3681)] = 124775, - [SMALL_STATE(3682)] = 124841, - [SMALL_STATE(3683)] = 124929, - [SMALL_STATE(3684)] = 124973, - [SMALL_STATE(3685)] = 125061, - [SMALL_STATE(3686)] = 125109, - [SMALL_STATE(3687)] = 125199, - [SMALL_STATE(3688)] = 125289, - [SMALL_STATE(3689)] = 125379, - [SMALL_STATE(3690)] = 125469, - [SMALL_STATE(3691)] = 125559, - [SMALL_STATE(3692)] = 125621, - [SMALL_STATE(3693)] = 125711, - [SMALL_STATE(3694)] = 125801, - [SMALL_STATE(3695)] = 125855, - [SMALL_STATE(3696)] = 125919, - [SMALL_STATE(3697)] = 126009, - [SMALL_STATE(3698)] = 126099, - [SMALL_STATE(3699)] = 126143, - [SMALL_STATE(3700)] = 126231, - [SMALL_STATE(3701)] = 126321, - [SMALL_STATE(3702)] = 126405, - [SMALL_STATE(3703)] = 126493, - [SMALL_STATE(3704)] = 126581, - [SMALL_STATE(3705)] = 126625, - [SMALL_STATE(3706)] = 126715, - [SMALL_STATE(3707)] = 126773, - [SMALL_STATE(3708)] = 126827, - [SMALL_STATE(3709)] = 126915, - [SMALL_STATE(3710)] = 126999, - [SMALL_STATE(3711)] = 127089, - [SMALL_STATE(3712)] = 127145, - [SMALL_STATE(3713)] = 127235, - [SMALL_STATE(3714)] = 127289, - [SMALL_STATE(3715)] = 127379, - [SMALL_STATE(3716)] = 127469, - [SMALL_STATE(3717)] = 127559, - [SMALL_STATE(3718)] = 127649, - [SMALL_STATE(3719)] = 127739, - [SMALL_STATE(3720)] = 127829, - [SMALL_STATE(3721)] = 127919, - [SMALL_STATE(3722)] = 128007, - [SMALL_STATE(3723)] = 128097, - [SMALL_STATE(3724)] = 128145, - [SMALL_STATE(3725)] = 128235, - [SMALL_STATE(3726)] = 128325, - [SMALL_STATE(3727)] = 128415, - [SMALL_STATE(3728)] = 128505, - [SMALL_STATE(3729)] = 128595, - [SMALL_STATE(3730)] = 128685, - [SMALL_STATE(3731)] = 128729, - [SMALL_STATE(3732)] = 128819, - [SMALL_STATE(3733)] = 128909, - [SMALL_STATE(3734)] = 128999, - [SMALL_STATE(3735)] = 129089, - [SMALL_STATE(3736)] = 129133, - [SMALL_STATE(3737)] = 129223, - [SMALL_STATE(3738)] = 129267, - [SMALL_STATE(3739)] = 129325, - [SMALL_STATE(3740)] = 129369, - [SMALL_STATE(3741)] = 129459, - [SMALL_STATE(3742)] = 129549, - [SMALL_STATE(3743)] = 129593, - [SMALL_STATE(3744)] = 129637, - [SMALL_STATE(3745)] = 129717, - [SMALL_STATE(3746)] = 129807, - [SMALL_STATE(3747)] = 129897, - [SMALL_STATE(3748)] = 129987, - [SMALL_STATE(3749)] = 130077, - [SMALL_STATE(3750)] = 130121, - [SMALL_STATE(3751)] = 130165, - [SMALL_STATE(3752)] = 130213, - [SMALL_STATE(3753)] = 130301, - [SMALL_STATE(3754)] = 130385, - [SMALL_STATE(3755)] = 130473, - [SMALL_STATE(3756)] = 130517, - [SMALL_STATE(3757)] = 130607, - [SMALL_STATE(3758)] = 130697, - [SMALL_STATE(3759)] = 130741, - [SMALL_STATE(3760)] = 130831, - [SMALL_STATE(3761)] = 130919, - [SMALL_STATE(3762)] = 130985, - [SMALL_STATE(3763)] = 131047, - [SMALL_STATE(3764)] = 131137, - [SMALL_STATE(3765)] = 131205, - [SMALL_STATE(3766)] = 131249, - [SMALL_STATE(3767)] = 131339, - [SMALL_STATE(3768)] = 131429, - [SMALL_STATE(3769)] = 131499, - [SMALL_STATE(3770)] = 131589, - [SMALL_STATE(3771)] = 131643, - [SMALL_STATE(3772)] = 131715, - [SMALL_STATE(3773)] = 131791, - [SMALL_STATE(3774)] = 131835, - [SMALL_STATE(3775)] = 131913, - [SMALL_STATE(3776)] = 132003, - [SMALL_STATE(3777)] = 132083, - [SMALL_STATE(3778)] = 132165, - [SMALL_STATE(3779)] = 132255, - [SMALL_STATE(3780)] = 132339, - [SMALL_STATE(3781)] = 132395, - [SMALL_STATE(3782)] = 132455, - [SMALL_STATE(3783)] = 132539, - [SMALL_STATE(3784)] = 132585, - [SMALL_STATE(3785)] = 132675, - [SMALL_STATE(3786)] = 132763, - [SMALL_STATE(3787)] = 132853, - [SMALL_STATE(3788)] = 132943, - [SMALL_STATE(3789)] = 133033, - [SMALL_STATE(3790)] = 133123, - [SMALL_STATE(3791)] = 133213, - [SMALL_STATE(3792)] = 133301, - [SMALL_STATE(3793)] = 133353, - [SMALL_STATE(3794)] = 133397, - [SMALL_STATE(3795)] = 133485, - [SMALL_STATE(3796)] = 133575, - [SMALL_STATE(3797)] = 133655, - [SMALL_STATE(3798)] = 133741, - [SMALL_STATE(3799)] = 133831, - [SMALL_STATE(3800)] = 133921, - [SMALL_STATE(3801)] = 134011, - [SMALL_STATE(3802)] = 134101, - [SMALL_STATE(3803)] = 134145, - [SMALL_STATE(3804)] = 134235, - [SMALL_STATE(3805)] = 134307, - [SMALL_STATE(3806)] = 134363, - [SMALL_STATE(3807)] = 134417, - [SMALL_STATE(3808)] = 134507, - [SMALL_STATE(3809)] = 134565, - [SMALL_STATE(3810)] = 134655, - [SMALL_STATE(3811)] = 134745, - [SMALL_STATE(3812)] = 134835, - [SMALL_STATE(3813)] = 134907, - [SMALL_STATE(3814)] = 134997, - [SMALL_STATE(3815)] = 135084, - [SMALL_STATE(3816)] = 135171, - [SMALL_STATE(3817)] = 135230, - [SMALL_STATE(3818)] = 135273, - [SMALL_STATE(3819)] = 135360, - [SMALL_STATE(3820)] = 135447, - [SMALL_STATE(3821)] = 135490, - [SMALL_STATE(3822)] = 135577, - [SMALL_STATE(3823)] = 135662, - [SMALL_STATE(3824)] = 135733, - [SMALL_STATE(3825)] = 135816, - [SMALL_STATE(3826)] = 135887, - [SMALL_STATE(3827)] = 135974, - [SMALL_STATE(3828)] = 136045, - [SMALL_STATE(3829)] = 136116, - [SMALL_STATE(3830)] = 136203, - [SMALL_STATE(3831)] = 136246, - [SMALL_STATE(3832)] = 136333, - [SMALL_STATE(3833)] = 136420, - [SMALL_STATE(3834)] = 136463, - [SMALL_STATE(3835)] = 136510, - [SMALL_STATE(3836)] = 136597, - [SMALL_STATE(3837)] = 136684, - [SMALL_STATE(3838)] = 136771, - [SMALL_STATE(3839)] = 136858, - [SMALL_STATE(3840)] = 136945, - [SMALL_STATE(3841)] = 137032, - [SMALL_STATE(3842)] = 137077, - [SMALL_STATE(3843)] = 137164, - [SMALL_STATE(3844)] = 137219, - [SMALL_STATE(3845)] = 137306, - [SMALL_STATE(3846)] = 137393, - [SMALL_STATE(3847)] = 137480, - [SMALL_STATE(3848)] = 137567, - [SMALL_STATE(3849)] = 137638, - [SMALL_STATE(3850)] = 137725, - [SMALL_STATE(3851)] = 137768, - [SMALL_STATE(3852)] = 137811, - [SMALL_STATE(3853)] = 137854, - [SMALL_STATE(3854)] = 137941, - [SMALL_STATE(3855)] = 138028, - [SMALL_STATE(3856)] = 138115, - [SMALL_STATE(3857)] = 138202, - [SMALL_STATE(3858)] = 138289, - [SMALL_STATE(3859)] = 138376, - [SMALL_STATE(3860)] = 138463, - [SMALL_STATE(3861)] = 138550, - [SMALL_STATE(3862)] = 138593, - [SMALL_STATE(3863)] = 138672, - [SMALL_STATE(3864)] = 138759, - [SMALL_STATE(3865)] = 138846, - [SMALL_STATE(3866)] = 138901, - [SMALL_STATE(3867)] = 138988, - [SMALL_STATE(3868)] = 139075, - [SMALL_STATE(3869)] = 139162, - [SMALL_STATE(3870)] = 139239, - [SMALL_STATE(3871)] = 139326, - [SMALL_STATE(3872)] = 139369, - [SMALL_STATE(3873)] = 139456, - [SMALL_STATE(3874)] = 139543, - [SMALL_STATE(3875)] = 139630, - [SMALL_STATE(3876)] = 139705, - [SMALL_STATE(3877)] = 139792, - [SMALL_STATE(3878)] = 139879, - [SMALL_STATE(3879)] = 139950, - [SMALL_STATE(3880)] = 140037, - [SMALL_STATE(3881)] = 140124, - [SMALL_STATE(3882)] = 140167, - [SMALL_STATE(3883)] = 140236, - [SMALL_STATE(3884)] = 140279, - [SMALL_STATE(3885)] = 140366, - [SMALL_STATE(3886)] = 140453, - [SMALL_STATE(3887)] = 140518, - [SMALL_STATE(3888)] = 140605, - [SMALL_STATE(3889)] = 140692, - [SMALL_STATE(3890)] = 140779, - [SMALL_STATE(3891)] = 140840, - [SMALL_STATE(3892)] = 140903, - [SMALL_STATE(3893)] = 140990, - [SMALL_STATE(3894)] = 141033, - [SMALL_STATE(3895)] = 141120, - [SMALL_STATE(3896)] = 141207, - [SMALL_STATE(3897)] = 141290, - [SMALL_STATE(3898)] = 141377, - [SMALL_STATE(3899)] = 141464, - [SMALL_STATE(3900)] = 141551, - [SMALL_STATE(3901)] = 141638, - [SMALL_STATE(3902)] = 141681, - [SMALL_STATE(3903)] = 141730, - [SMALL_STATE(3904)] = 141775, - [SMALL_STATE(3905)] = 141862, - [SMALL_STATE(3906)] = 141945, - [SMALL_STATE(3907)] = 142026, - [SMALL_STATE(3908)] = 142113, - [SMALL_STATE(3909)] = 142156, - [SMALL_STATE(3910)] = 142243, - [SMALL_STATE(3911)] = 142286, - [SMALL_STATE(3912)] = 142337, - [SMALL_STATE(3913)] = 142424, - [SMALL_STATE(3914)] = 142511, - [SMALL_STATE(3915)] = 142560, - [SMALL_STATE(3916)] = 142647, - [SMALL_STATE(3917)] = 142734, - [SMALL_STATE(3918)] = 142821, - [SMALL_STATE(3919)] = 142864, - [SMALL_STATE(3920)] = 142951, - [SMALL_STATE(3921)] = 143038, - [SMALL_STATE(3922)] = 143109, - [SMALL_STATE(3923)] = 143196, - [SMALL_STATE(3924)] = 143283, - [SMALL_STATE(3925)] = 143370, - [SMALL_STATE(3926)] = 143457, - [SMALL_STATE(3927)] = 143508, - [SMALL_STATE(3928)] = 143595, - [SMALL_STATE(3929)] = 143666, - [SMALL_STATE(3930)] = 143753, - [SMALL_STATE(3931)] = 143840, - [SMALL_STATE(3932)] = 143911, - [SMALL_STATE(3933)] = 143998, - [SMALL_STATE(3934)] = 144085, - [SMALL_STATE(3935)] = 144156, - [SMALL_STATE(3936)] = 144243, - [SMALL_STATE(3937)] = 144330, - [SMALL_STATE(3938)] = 144417, - [SMALL_STATE(3939)] = 144504, - [SMALL_STATE(3940)] = 144591, - [SMALL_STATE(3941)] = 144678, - [SMALL_STATE(3942)] = 144765, - [SMALL_STATE(3943)] = 144852, - [SMALL_STATE(3944)] = 144939, - [SMALL_STATE(3945)] = 145026, - [SMALL_STATE(3946)] = 145069, - [SMALL_STATE(3947)] = 145148, - [SMALL_STATE(3948)] = 145235, - [SMALL_STATE(3949)] = 145322, - [SMALL_STATE(3950)] = 145393, - [SMALL_STATE(3951)] = 145480, - [SMALL_STATE(3952)] = 145567, - [SMALL_STATE(3953)] = 145654, - [SMALL_STATE(3954)] = 145741, - [SMALL_STATE(3955)] = 145828, - [SMALL_STATE(3956)] = 145881, - [SMALL_STATE(3957)] = 145968, - [SMALL_STATE(3958)] = 146055, - [SMALL_STATE(3959)] = 146142, - [SMALL_STATE(3960)] = 146229, - [SMALL_STATE(3961)] = 146276, - [SMALL_STATE(3962)] = 146363, - [SMALL_STATE(3963)] = 146450, - [SMALL_STATE(3964)] = 146537, - [SMALL_STATE(3965)] = 146592, - [SMALL_STATE(3966)] = 146645, - [SMALL_STATE(3967)] = 146690, - [SMALL_STATE(3968)] = 146777, - [SMALL_STATE(3969)] = 146864, - [SMALL_STATE(3970)] = 146947, - [SMALL_STATE(3971)] = 147034, - [SMALL_STATE(3972)] = 147099, - [SMALL_STATE(3973)] = 147186, - [SMALL_STATE(3974)] = 147273, - [SMALL_STATE(3975)] = 147360, - [SMALL_STATE(3976)] = 147403, - [SMALL_STATE(3977)] = 147446, - [SMALL_STATE(3978)] = 147533, - [SMALL_STATE(3979)] = 147620, - [SMALL_STATE(3980)] = 147707, - [SMALL_STATE(3981)] = 147794, - [SMALL_STATE(3982)] = 147837, - [SMALL_STATE(3983)] = 147924, - [SMALL_STATE(3984)] = 147967, - [SMALL_STATE(3985)] = 148054, - [SMALL_STATE(3986)] = 148141, - [SMALL_STATE(3987)] = 148228, - [SMALL_STATE(3988)] = 148271, - [SMALL_STATE(3989)] = 148358, - [SMALL_STATE(3990)] = 148445, - [SMALL_STATE(3991)] = 148487, - [SMALL_STATE(3992)] = 148529, - [SMALL_STATE(3993)] = 148571, - [SMALL_STATE(3994)] = 148613, - [SMALL_STATE(3995)] = 148655, - [SMALL_STATE(3996)] = 148697, - [SMALL_STATE(3997)] = 148739, - [SMALL_STATE(3998)] = 148781, - [SMALL_STATE(3999)] = 148823, - [SMALL_STATE(4000)] = 148865, - [SMALL_STATE(4001)] = 148907, - [SMALL_STATE(4002)] = 148949, - [SMALL_STATE(4003)] = 148991, - [SMALL_STATE(4004)] = 149033, - [SMALL_STATE(4005)] = 149075, - [SMALL_STATE(4006)] = 149117, - [SMALL_STATE(4007)] = 149169, - [SMALL_STATE(4008)] = 149211, - [SMALL_STATE(4009)] = 149263, - [SMALL_STATE(4010)] = 149305, - [SMALL_STATE(4011)] = 149347, - [SMALL_STATE(4012)] = 149389, - [SMALL_STATE(4013)] = 149431, - [SMALL_STATE(4014)] = 149473, - [SMALL_STATE(4015)] = 149515, - [SMALL_STATE(4016)] = 149557, - [SMALL_STATE(4017)] = 149599, - [SMALL_STATE(4018)] = 149641, - [SMALL_STATE(4019)] = 149683, - [SMALL_STATE(4020)] = 149725, - [SMALL_STATE(4021)] = 149767, - [SMALL_STATE(4022)] = 149809, - [SMALL_STATE(4023)] = 149879, - [SMALL_STATE(4024)] = 149921, - [SMALL_STATE(4025)] = 149963, - [SMALL_STATE(4026)] = 150005, - [SMALL_STATE(4027)] = 150047, - [SMALL_STATE(4028)] = 150089, - [SMALL_STATE(4029)] = 150131, - [SMALL_STATE(4030)] = 150173, - [SMALL_STATE(4031)] = 150243, - [SMALL_STATE(4032)] = 150285, - [SMALL_STATE(4033)] = 150327, - [SMALL_STATE(4034)] = 150369, - [SMALL_STATE(4035)] = 150411, - [SMALL_STATE(4036)] = 150453, - [SMALL_STATE(4037)] = 150495, - [SMALL_STATE(4038)] = 150537, - [SMALL_STATE(4039)] = 150579, - [SMALL_STATE(4040)] = 150621, - [SMALL_STATE(4041)] = 150663, - [SMALL_STATE(4042)] = 150705, - [SMALL_STATE(4043)] = 150747, - [SMALL_STATE(4044)] = 150789, - [SMALL_STATE(4045)] = 150831, - [SMALL_STATE(4046)] = 150873, - [SMALL_STATE(4047)] = 150915, - [SMALL_STATE(4048)] = 150999, - [SMALL_STATE(4049)] = 151041, - [SMALL_STATE(4050)] = 151083, - [SMALL_STATE(4051)] = 151125, - [SMALL_STATE(4052)] = 151167, - [SMALL_STATE(4053)] = 151209, - [SMALL_STATE(4054)] = 151251, - [SMALL_STATE(4055)] = 151293, - [SMALL_STATE(4056)] = 151335, - [SMALL_STATE(4057)] = 151377, - [SMALL_STATE(4058)] = 151419, - [SMALL_STATE(4059)] = 151461, - [SMALL_STATE(4060)] = 151503, - [SMALL_STATE(4061)] = 151545, - [SMALL_STATE(4062)] = 151587, - [SMALL_STATE(4063)] = 151652, - [SMALL_STATE(4064)] = 151695, - [SMALL_STATE(4065)] = 151744, - [SMALL_STATE(4066)] = 151811, - [SMALL_STATE(4067)] = 151874, - [SMALL_STATE(4068)] = 151939, - [SMALL_STATE(4069)] = 152004, - [SMALL_STATE(4070)] = 152055, - [SMALL_STATE(4071)] = 152108, - [SMALL_STATE(4072)] = 152173, - [SMALL_STATE(4073)] = 152226, - [SMALL_STATE(4074)] = 152293, - [SMALL_STATE(4075)] = 152356, - [SMALL_STATE(4076)] = 152407, - [SMALL_STATE(4077)] = 152487, - [SMALL_STATE(4078)] = 152527, - [SMALL_STATE(4079)] = 152607, - [SMALL_STATE(4080)] = 152673, - [SMALL_STATE(4081)] = 152753, - [SMALL_STATE(4082)] = 152817, - [SMALL_STATE(4083)] = 152881, - [SMALL_STATE(4084)] = 152961, - [SMALL_STATE(4085)] = 153041, - [SMALL_STATE(4086)] = 153121, - [SMALL_STATE(4087)] = 153177, - [SMALL_STATE(4088)] = 153257, - [SMALL_STATE(4089)] = 153297, - [SMALL_STATE(4090)] = 153337, - [SMALL_STATE(4091)] = 153417, - [SMALL_STATE(4092)] = 153485, - [SMALL_STATE(4093)] = 153553, - [SMALL_STATE(4094)] = 153633, - [SMALL_STATE(4095)] = 153677, - [SMALL_STATE(4096)] = 153745, - [SMALL_STATE(4097)] = 153825, - [SMALL_STATE(4098)] = 153905, - [SMALL_STATE(4099)] = 153945, - [SMALL_STATE(4100)] = 154025, - [SMALL_STATE(4101)] = 154065, - [SMALL_STATE(4102)] = 154145, - [SMALL_STATE(4103)] = 154225, - [SMALL_STATE(4104)] = 154305, - [SMALL_STATE(4105)] = 154385, - [SMALL_STATE(4106)] = 154425, - [SMALL_STATE(4107)] = 154491, - [SMALL_STATE(4108)] = 154571, - [SMALL_STATE(4109)] = 154639, - [SMALL_STATE(4110)] = 154719, - [SMALL_STATE(4111)] = 154759, - [SMALL_STATE(4112)] = 154814, - [SMALL_STATE(4113)] = 154877, - [SMALL_STATE(4114)] = 154944, - [SMALL_STATE(4115)] = 154985, - [SMALL_STATE(4116)] = 155032, - [SMALL_STATE(4117)] = 155095, - [SMALL_STATE(4118)] = 155142, - [SMALL_STATE(4119)] = 155207, - [SMALL_STATE(4120)] = 155246, - [SMALL_STATE(4121)] = 155285, - [SMALL_STATE(4122)] = 155350, - [SMALL_STATE(4123)] = 155417, - [SMALL_STATE(4124)] = 155456, - [SMALL_STATE(4125)] = 155499, - [SMALL_STATE(4126)] = 155542, - [SMALL_STATE(4127)] = 155616, - [SMALL_STATE(4128)] = 155690, - [SMALL_STATE(4129)] = 155764, - [SMALL_STATE(4130)] = 155838, - [SMALL_STATE(4131)] = 155912, - [SMALL_STATE(4132)] = 155986, - [SMALL_STATE(4133)] = 156060, - [SMALL_STATE(4134)] = 156134, - [SMALL_STATE(4135)] = 156208, - [SMALL_STATE(4136)] = 156282, - [SMALL_STATE(4137)] = 156336, - [SMALL_STATE(4138)] = 156410, - [SMALL_STATE(4139)] = 156464, - [SMALL_STATE(4140)] = 156528, - [SMALL_STATE(4141)] = 156602, - [SMALL_STATE(4142)] = 156660, - [SMALL_STATE(4143)] = 156734, - [SMALL_STATE(4144)] = 156808, - [SMALL_STATE(4145)] = 156882, - [SMALL_STATE(4146)] = 156956, - [SMALL_STATE(4147)] = 157030, - [SMALL_STATE(4148)] = 157104, - [SMALL_STATE(4149)] = 157178, - [SMALL_STATE(4150)] = 157238, - [SMALL_STATE(4151)] = 157312, - [SMALL_STATE(4152)] = 157386, - [SMALL_STATE(4153)] = 157460, - [SMALL_STATE(4154)] = 157534, - [SMALL_STATE(4155)] = 157608, - [SMALL_STATE(4156)] = 157668, - [SMALL_STATE(4157)] = 157742, - [SMALL_STATE(4158)] = 157816, - [SMALL_STATE(4159)] = 157890, - [SMALL_STATE(4160)] = 157948, - [SMALL_STATE(4161)] = 158022, - [SMALL_STATE(4162)] = 158082, - [SMALL_STATE(4163)] = 158156, - [SMALL_STATE(4164)] = 158230, - [SMALL_STATE(4165)] = 158304, - [SMALL_STATE(4166)] = 158362, - [SMALL_STATE(4167)] = 158436, - [SMALL_STATE(4168)] = 158510, - [SMALL_STATE(4169)] = 158584, - [SMALL_STATE(4170)] = 158624, - [SMALL_STATE(4171)] = 158698, - [SMALL_STATE(4172)] = 158758, - [SMALL_STATE(4173)] = 158816, - [SMALL_STATE(4174)] = 158890, - [SMALL_STATE(4175)] = 158964, - [SMALL_STATE(4176)] = 159010, - [SMALL_STATE(4177)] = 159084, - [SMALL_STATE(4178)] = 159138, - [SMALL_STATE(4179)] = 159212, - [SMALL_STATE(4180)] = 159276, - [SMALL_STATE(4181)] = 159350, - [SMALL_STATE(4182)] = 159424, - [SMALL_STATE(4183)] = 159498, - [SMALL_STATE(4184)] = 159555, - [SMALL_STATE(4185)] = 159614, - [SMALL_STATE(4186)] = 159671, - [SMALL_STATE(4187)] = 159734, - [SMALL_STATE(4188)] = 159791, - [SMALL_STATE(4189)] = 159842, - [SMALL_STATE(4190)] = 159901, - [SMALL_STATE(4191)] = 159940, - [SMALL_STATE(4192)] = 160003, - [SMALL_STATE(4193)] = 160040, - [SMALL_STATE(4194)] = 160099, - [SMALL_STATE(4195)] = 160148, - [SMALL_STATE(4196)] = 160189, - [SMALL_STATE(4197)] = 160252, - [SMALL_STATE(4198)] = 160313, - [SMALL_STATE(4199)] = 160376, - [SMALL_STATE(4200)] = 160435, - [SMALL_STATE(4201)] = 160496, - [SMALL_STATE(4202)] = 160557, - [SMALL_STATE(4203)] = 160618, - [SMALL_STATE(4204)] = 160681, - [SMALL_STATE(4205)] = 160740, - [SMALL_STATE(4206)] = 160803, - [SMALL_STATE(4207)] = 160862, - [SMALL_STATE(4208)] = 160919, - [SMALL_STATE(4209)] = 160978, - [SMALL_STATE(4210)] = 161041, - [SMALL_STATE(4211)] = 161100, - [SMALL_STATE(4212)] = 161163, - [SMALL_STATE(4213)] = 161229, - [SMALL_STATE(4214)] = 161287, - [SMALL_STATE(4215)] = 161323, - [SMALL_STATE(4216)] = 161359, - [SMALL_STATE(4217)] = 161415, - [SMALL_STATE(4218)] = 161473, - [SMALL_STATE(4219)] = 161529, - [SMALL_STATE(4220)] = 161585, - [SMALL_STATE(4221)] = 161641, - [SMALL_STATE(4222)] = 161677, - [SMALL_STATE(4223)] = 161739, - [SMALL_STATE(4224)] = 161805, - [SMALL_STATE(4225)] = 161855, - [SMALL_STATE(4226)] = 161915, - [SMALL_STATE(4227)] = 161977, - [SMALL_STATE(4228)] = 162043, - [SMALL_STATE(4229)] = 162109, - [SMALL_STATE(4230)] = 162169, - [SMALL_STATE(4231)] = 162205, - [SMALL_STATE(4232)] = 162271, - [SMALL_STATE(4233)] = 162337, - [SMALL_STATE(4234)] = 162403, - [SMALL_STATE(4235)] = 162443, - [SMALL_STATE(4236)] = 162509, - [SMALL_STATE(4237)] = 162575, - [SMALL_STATE(4238)] = 162641, - [SMALL_STATE(4239)] = 162707, - [SMALL_STATE(4240)] = 162773, - [SMALL_STATE(4241)] = 162833, - [SMALL_STATE(4242)] = 162869, - [SMALL_STATE(4243)] = 162935, - [SMALL_STATE(4244)] = 162993, - [SMALL_STATE(4245)] = 163053, - [SMALL_STATE(4246)] = 163119, - [SMALL_STATE(4247)] = 163185, - [SMALL_STATE(4248)] = 163251, - [SMALL_STATE(4249)] = 163317, - [SMALL_STATE(4250)] = 163383, - [SMALL_STATE(4251)] = 163419, - [SMALL_STATE(4252)] = 163477, - [SMALL_STATE(4253)] = 163543, - [SMALL_STATE(4254)] = 163609, - [SMALL_STATE(4255)] = 163664, - [SMALL_STATE(4256)] = 163727, - [SMALL_STATE(4257)] = 163790, - [SMALL_STATE(4258)] = 163845, - [SMALL_STATE(4259)] = 163900, - [SMALL_STATE(4260)] = 163963, - [SMALL_STATE(4261)] = 164004, - [SMALL_STATE(4262)] = 164045, - [SMALL_STATE(4263)] = 164100, - [SMALL_STATE(4264)] = 164155, - [SMALL_STATE(4265)] = 164194, - [SMALL_STATE(4266)] = 164249, - [SMALL_STATE(4267)] = 164310, - [SMALL_STATE(4268)] = 164373, - [SMALL_STATE(4269)] = 164436, - [SMALL_STATE(4270)] = 164471, - [SMALL_STATE(4271)] = 164534, - [SMALL_STATE(4272)] = 164597, - [SMALL_STATE(4273)] = 164660, - [SMALL_STATE(4274)] = 164715, - [SMALL_STATE(4275)] = 164752, - [SMALL_STATE(4276)] = 164815, - [SMALL_STATE(4277)] = 164876, - [SMALL_STATE(4278)] = 164939, - [SMALL_STATE(4279)] = 164994, - [SMALL_STATE(4280)] = 165037, - [SMALL_STATE(4281)] = 165092, - [SMALL_STATE(4282)] = 165133, - [SMALL_STATE(4283)] = 165168, - [SMALL_STATE(4284)] = 165209, - [SMALL_STATE(4285)] = 165272, - [SMALL_STATE(4286)] = 165335, - [SMALL_STATE(4287)] = 165376, - [SMALL_STATE(4288)] = 165439, - [SMALL_STATE(4289)] = 165502, - [SMALL_STATE(4290)] = 165557, - [SMALL_STATE(4291)] = 165600, - [SMALL_STATE(4292)] = 165663, - [SMALL_STATE(4293)] = 165698, - [SMALL_STATE(4294)] = 165753, - [SMALL_STATE(4295)] = 165788, - [SMALL_STATE(4296)] = 165823, - [SMALL_STATE(4297)] = 165886, - [SMALL_STATE(4298)] = 165949, - [SMALL_STATE(4299)] = 166004, - [SMALL_STATE(4300)] = 166067, - [SMALL_STATE(4301)] = 166102, - [SMALL_STATE(4302)] = 166165, - [SMALL_STATE(4303)] = 166228, - [SMALL_STATE(4304)] = 166291, - [SMALL_STATE(4305)] = 166346, - [SMALL_STATE(4306)] = 166401, - [SMALL_STATE(4307)] = 166464, - [SMALL_STATE(4308)] = 166527, - [SMALL_STATE(4309)] = 166590, - [SMALL_STATE(4310)] = 166625, - [SMALL_STATE(4311)] = 166688, - [SMALL_STATE(4312)] = 166742, - [SMALL_STATE(4313)] = 166788, - [SMALL_STATE(4314)] = 166824, - [SMALL_STATE(4315)] = 166878, - [SMALL_STATE(4316)] = 166932, - [SMALL_STATE(4317)] = 166972, - [SMALL_STATE(4318)] = 167026, - [SMALL_STATE(4319)] = 167080, - [SMALL_STATE(4320)] = 167134, - [SMALL_STATE(4321)] = 167188, - [SMALL_STATE(4322)] = 167234, - [SMALL_STATE(4323)] = 167288, - [SMALL_STATE(4324)] = 167342, - [SMALL_STATE(4325)] = 167396, - [SMALL_STATE(4326)] = 167442, - [SMALL_STATE(4327)] = 167488, - [SMALL_STATE(4328)] = 167542, - [SMALL_STATE(4329)] = 167598, - [SMALL_STATE(4330)] = 167644, - [SMALL_STATE(4331)] = 167698, - [SMALL_STATE(4332)] = 167754, - [SMALL_STATE(4333)] = 167808, - [SMALL_STATE(4334)] = 167864, - [SMALL_STATE(4335)] = 167920, - [SMALL_STATE(4336)] = 167976, - [SMALL_STATE(4337)] = 168022, - [SMALL_STATE(4338)] = 168076, - [SMALL_STATE(4339)] = 168122, - [SMALL_STATE(4340)] = 168178, - [SMALL_STATE(4341)] = 168218, - [SMALL_STATE(4342)] = 168272, - [SMALL_STATE(4343)] = 168326, - [SMALL_STATE(4344)] = 168372, - [SMALL_STATE(4345)] = 168428, - [SMALL_STATE(4346)] = 168482, - [SMALL_STATE(4347)] = 168536, - [SMALL_STATE(4348)] = 168590, - [SMALL_STATE(4349)] = 168644, - [SMALL_STATE(4350)] = 168690, - [SMALL_STATE(4351)] = 168744, - [SMALL_STATE(4352)] = 168798, - [SMALL_STATE(4353)] = 168852, - [SMALL_STATE(4354)] = 168908, - [SMALL_STATE(4355)] = 168962, - [SMALL_STATE(4356)] = 168995, - [SMALL_STATE(4357)] = 169028, - [SMALL_STATE(4358)] = 169083, - [SMALL_STATE(4359)] = 169120, - [SMALL_STATE(4360)] = 169161, - [SMALL_STATE(4361)] = 169216, - [SMALL_STATE(4362)] = 169255, - [SMALL_STATE(4363)] = 169296, - [SMALL_STATE(4364)] = 169329, - [SMALL_STATE(4365)] = 169364, - [SMALL_STATE(4366)] = 169397, - [SMALL_STATE(4367)] = 169436, - [SMALL_STATE(4368)] = 169491, - [SMALL_STATE(4369)] = 169524, - [SMALL_STATE(4370)] = 169557, - [SMALL_STATE(4371)] = 169592, - [SMALL_STATE(4372)] = 169627, - [SMALL_STATE(4373)] = 169660, - [SMALL_STATE(4374)] = 169715, - [SMALL_STATE(4375)] = 169768, - [SMALL_STATE(4376)] = 169821, - [SMALL_STATE(4377)] = 169874, - [SMALL_STATE(4378)] = 169907, - [SMALL_STATE(4379)] = 169940, - [SMALL_STATE(4380)] = 169993, - [SMALL_STATE(4381)] = 170025, - [SMALL_STATE(4382)] = 170077, - [SMALL_STATE(4383)] = 170129, - [SMALL_STATE(4384)] = 170181, - [SMALL_STATE(4385)] = 170215, - [SMALL_STATE(4386)] = 170267, - [SMALL_STATE(4387)] = 170305, - [SMALL_STATE(4388)] = 170337, - [SMALL_STATE(4389)] = 170369, - [SMALL_STATE(4390)] = 170401, - [SMALL_STATE(4391)] = 170433, - [SMALL_STATE(4392)] = 170465, - [SMALL_STATE(4393)] = 170517, - [SMALL_STATE(4394)] = 170553, - [SMALL_STATE(4395)] = 170605, - [SMALL_STATE(4396)] = 170657, - [SMALL_STATE(4397)] = 170695, - [SMALL_STATE(4398)] = 170727, - [SMALL_STATE(4399)] = 170759, - [SMALL_STATE(4400)] = 170811, - [SMALL_STATE(4401)] = 170843, - [SMALL_STATE(4402)] = 170875, - [SMALL_STATE(4403)] = 170907, - [SMALL_STATE(4404)] = 170939, - [SMALL_STATE(4405)] = 170996, - [SMALL_STATE(4406)] = 171035, - [SMALL_STATE(4407)] = 171072, - [SMALL_STATE(4408)] = 171129, - [SMALL_STATE(4409)] = 171188, - [SMALL_STATE(4410)] = 171225, - [SMALL_STATE(4411)] = 171264, - [SMALL_STATE(4412)] = 171301, - [SMALL_STATE(4413)] = 171340, - [SMALL_STATE(4414)] = 171407, - [SMALL_STATE(4415)] = 171464, - [SMALL_STATE(4416)] = 171523, - [SMALL_STATE(4417)] = 171556, - [SMALL_STATE(4418)] = 171589, - [SMALL_STATE(4419)] = 171626, - [SMALL_STATE(4420)] = 171683, - [SMALL_STATE(4421)] = 171722, - [SMALL_STATE(4422)] = 171779, - [SMALL_STATE(4423)] = 171838, - [SMALL_STATE(4424)] = 171895, - [SMALL_STATE(4425)] = 171932, - [SMALL_STATE(4426)] = 171968, - [SMALL_STATE(4427)] = 172004, - [SMALL_STATE(4428)] = 172038, - [SMALL_STATE(4429)] = 172074, - [SMALL_STATE(4430)] = 172109, - [SMALL_STATE(4431)] = 172140, - [SMALL_STATE(4432)] = 172173, - [SMALL_STATE(4433)] = 172216, - [SMALL_STATE(4434)] = 172249, - [SMALL_STATE(4435)] = 172292, - [SMALL_STATE(4436)] = 172347, - [SMALL_STATE(4437)] = 172378, - [SMALL_STATE(4438)] = 172409, - [SMALL_STATE(4439)] = 172442, - [SMALL_STATE(4440)] = 172475, - [SMALL_STATE(4441)] = 172518, - [SMALL_STATE(4442)] = 172561, - [SMALL_STATE(4443)] = 172604, - [SMALL_STATE(4444)] = 172639, - [SMALL_STATE(4445)] = 172672, - [SMALL_STATE(4446)] = 172727, - [SMALL_STATE(4447)] = 172760, - [SMALL_STATE(4448)] = 172795, - [SMALL_STATE(4449)] = 172823, - [SMALL_STATE(4450)] = 172871, - [SMALL_STATE(4451)] = 172919, - [SMALL_STATE(4452)] = 172967, - [SMALL_STATE(4453)] = 173015, - [SMALL_STATE(4454)] = 173049, - [SMALL_STATE(4455)] = 173085, - [SMALL_STATE(4456)] = 173125, - [SMALL_STATE(4457)] = 173173, - [SMALL_STATE(4458)] = 173221, - [SMALL_STATE(4459)] = 173263, - [SMALL_STATE(4460)] = 173307, - [SMALL_STATE(4461)] = 173355, - [SMALL_STATE(4462)] = 173401, - [SMALL_STATE(4463)] = 173447, - [SMALL_STATE(4464)] = 173495, - [SMALL_STATE(4465)] = 173543, - [SMALL_STATE(4466)] = 173571, - [SMALL_STATE(4467)] = 173603, - [SMALL_STATE(4468)] = 173651, - [SMALL_STATE(4469)] = 173679, - [SMALL_STATE(4470)] = 173707, - [SMALL_STATE(4471)] = 173755, - [SMALL_STATE(4472)] = 173803, - [SMALL_STATE(4473)] = 173851, - [SMALL_STATE(4474)] = 173891, - [SMALL_STATE(4475)] = 173939, - [SMALL_STATE(4476)] = 173987, - [SMALL_STATE(4477)] = 174035, - [SMALL_STATE(4478)] = 174083, - [SMALL_STATE(4479)] = 174131, - [SMALL_STATE(4480)] = 174159, - [SMALL_STATE(4481)] = 174207, - [SMALL_STATE(4482)] = 174235, - [SMALL_STATE(4483)] = 174263, - [SMALL_STATE(4484)] = 174311, - [SMALL_STATE(4485)] = 174339, - [SMALL_STATE(4486)] = 174369, - [SMALL_STATE(4487)] = 174397, - [SMALL_STATE(4488)] = 174445, - [SMALL_STATE(4489)] = 174473, - [SMALL_STATE(4490)] = 174501, - [SMALL_STATE(4491)] = 174529, - [SMALL_STATE(4492)] = 174557, - [SMALL_STATE(4493)] = 174605, - [SMALL_STATE(4494)] = 174653, - [SMALL_STATE(4495)] = 174701, - [SMALL_STATE(4496)] = 174741, - [SMALL_STATE(4497)] = 174769, - [SMALL_STATE(4498)] = 174797, - [SMALL_STATE(4499)] = 174825, - [SMALL_STATE(4500)] = 174853, - [SMALL_STATE(4501)] = 174881, - [SMALL_STATE(4502)] = 174909, - [SMALL_STATE(4503)] = 174937, - [SMALL_STATE(4504)] = 174965, - [SMALL_STATE(4505)] = 174993, - [SMALL_STATE(4506)] = 175021, - [SMALL_STATE(4507)] = 175061, - [SMALL_STATE(4508)] = 175089, - [SMALL_STATE(4509)] = 175117, - [SMALL_STATE(4510)] = 175157, - [SMALL_STATE(4511)] = 175197, - [SMALL_STATE(4512)] = 175237, - [SMALL_STATE(4513)] = 175277, - [SMALL_STATE(4514)] = 175317, - [SMALL_STATE(4515)] = 175345, - [SMALL_STATE(4516)] = 175385, - [SMALL_STATE(4517)] = 175413, - [SMALL_STATE(4518)] = 175453, - [SMALL_STATE(4519)] = 175493, - [SMALL_STATE(4520)] = 175533, - [SMALL_STATE(4521)] = 175573, - [SMALL_STATE(4522)] = 175613, - [SMALL_STATE(4523)] = 175641, - [SMALL_STATE(4524)] = 175669, - [SMALL_STATE(4525)] = 175709, - [SMALL_STATE(4526)] = 175737, - [SMALL_STATE(4527)] = 175785, - [SMALL_STATE(4528)] = 175833, - [SMALL_STATE(4529)] = 175861, - [SMALL_STATE(4530)] = 175903, - [SMALL_STATE(4531)] = 175931, - [SMALL_STATE(4532)] = 175959, - [SMALL_STATE(4533)] = 175987, - [SMALL_STATE(4534)] = 176015, - [SMALL_STATE(4535)] = 176043, - [SMALL_STATE(4536)] = 176071, - [SMALL_STATE(4537)] = 176099, - [SMALL_STATE(4538)] = 176127, - [SMALL_STATE(4539)] = 176175, - [SMALL_STATE(4540)] = 176223, - [SMALL_STATE(4541)] = 176251, - [SMALL_STATE(4542)] = 176291, - [SMALL_STATE(4543)] = 176319, - [SMALL_STATE(4544)] = 176347, - [SMALL_STATE(4545)] = 176375, - [SMALL_STATE(4546)] = 176403, - [SMALL_STATE(4547)] = 176431, - [SMALL_STATE(4548)] = 176459, - [SMALL_STATE(4549)] = 176487, - [SMALL_STATE(4550)] = 176515, - [SMALL_STATE(4551)] = 176543, - [SMALL_STATE(4552)] = 176571, - [SMALL_STATE(4553)] = 176599, - [SMALL_STATE(4554)] = 176627, - [SMALL_STATE(4555)] = 176655, - [SMALL_STATE(4556)] = 176683, - [SMALL_STATE(4557)] = 176711, - [SMALL_STATE(4558)] = 176759, - [SMALL_STATE(4559)] = 176787, - [SMALL_STATE(4560)] = 176821, - [SMALL_STATE(4561)] = 176855, - [SMALL_STATE(4562)] = 176895, - [SMALL_STATE(4563)] = 176923, - [SMALL_STATE(4564)] = 176951, - [SMALL_STATE(4565)] = 176979, - [SMALL_STATE(4566)] = 177007, - [SMALL_STATE(4567)] = 177035, - [SMALL_STATE(4568)] = 177063, - [SMALL_STATE(4569)] = 177091, - [SMALL_STATE(4570)] = 177119, - [SMALL_STATE(4571)] = 177147, - [SMALL_STATE(4572)] = 177195, - [SMALL_STATE(4573)] = 177223, - [SMALL_STATE(4574)] = 177251, - [SMALL_STATE(4575)] = 177291, - [SMALL_STATE(4576)] = 177319, - [SMALL_STATE(4577)] = 177347, - [SMALL_STATE(4578)] = 177375, - [SMALL_STATE(4579)] = 177415, - [SMALL_STATE(4580)] = 177443, - [SMALL_STATE(4581)] = 177471, - [SMALL_STATE(4582)] = 177499, - [SMALL_STATE(4583)] = 177539, - [SMALL_STATE(4584)] = 177587, - [SMALL_STATE(4585)] = 177635, - [SMALL_STATE(4586)] = 177683, - [SMALL_STATE(4587)] = 177715, - [SMALL_STATE(4588)] = 177763, - [SMALL_STATE(4589)] = 177813, - [SMALL_STATE(4590)] = 177861, - [SMALL_STATE(4591)] = 177893, - [SMALL_STATE(4592)] = 177933, - [SMALL_STATE(4593)] = 177981, - [SMALL_STATE(4594)] = 178021, - [SMALL_STATE(4595)] = 178061, - [SMALL_STATE(4596)] = 178101, - [SMALL_STATE(4597)] = 178141, - [SMALL_STATE(4598)] = 178181, - [SMALL_STATE(4599)] = 178229, - [SMALL_STATE(4600)] = 178269, - [SMALL_STATE(4601)] = 178317, - [SMALL_STATE(4602)] = 178365, - [SMALL_STATE(4603)] = 178413, - [SMALL_STATE(4604)] = 178453, - [SMALL_STATE(4605)] = 178493, - [SMALL_STATE(4606)] = 178533, - [SMALL_STATE(4607)] = 178573, - [SMALL_STATE(4608)] = 178613, - [SMALL_STATE(4609)] = 178653, - [SMALL_STATE(4610)] = 178693, - [SMALL_STATE(4611)] = 178750, - [SMALL_STATE(4612)] = 178807, - [SMALL_STATE(4613)] = 178852, - [SMALL_STATE(4614)] = 178909, - [SMALL_STATE(4615)] = 178954, - [SMALL_STATE(4616)] = 178999, - [SMALL_STATE(4617)] = 179030, - [SMALL_STATE(4618)] = 179087, - [SMALL_STATE(4619)] = 179144, - [SMALL_STATE(4620)] = 179177, - [SMALL_STATE(4621)] = 179204, - [SMALL_STATE(4622)] = 179239, - [SMALL_STATE(4623)] = 179296, - [SMALL_STATE(4624)] = 179353, - [SMALL_STATE(4625)] = 179390, - [SMALL_STATE(4626)] = 179417, - [SMALL_STATE(4627)] = 179474, - [SMALL_STATE(4628)] = 179523, - [SMALL_STATE(4629)] = 179582, - [SMALL_STATE(4630)] = 179639, - [SMALL_STATE(4631)] = 179696, - [SMALL_STATE(4632)] = 179735, - [SMALL_STATE(4633)] = 179776, - [SMALL_STATE(4634)] = 179833, - [SMALL_STATE(4635)] = 179876, - [SMALL_STATE(4636)] = 179921, - [SMALL_STATE(4637)] = 179978, - [SMALL_STATE(4638)] = 180035, - [SMALL_STATE(4639)] = 180062, - [SMALL_STATE(4640)] = 180119, - [SMALL_STATE(4641)] = 180148, - [SMALL_STATE(4642)] = 180175, - [SMALL_STATE(4643)] = 180220, - [SMALL_STATE(4644)] = 180277, - [SMALL_STATE(4645)] = 180334, - [SMALL_STATE(4646)] = 180391, - [SMALL_STATE(4647)] = 180448, - [SMALL_STATE(4648)] = 180505, - [SMALL_STATE(4649)] = 180562, - [SMALL_STATE(4650)] = 180589, - [SMALL_STATE(4651)] = 180634, - [SMALL_STATE(4652)] = 180679, - [SMALL_STATE(4653)] = 180736, - [SMALL_STATE(4654)] = 180793, - [SMALL_STATE(4655)] = 180850, - [SMALL_STATE(4656)] = 180907, - [SMALL_STATE(4657)] = 180934, - [SMALL_STATE(4658)] = 180991, - [SMALL_STATE(4659)] = 181022, - [SMALL_STATE(4660)] = 181079, - [SMALL_STATE(4661)] = 181124, - [SMALL_STATE(4662)] = 181181, - [SMALL_STATE(4663)] = 181238, - [SMALL_STATE(4664)] = 181295, - [SMALL_STATE(4665)] = 181352, - [SMALL_STATE(4666)] = 181409, - [SMALL_STATE(4667)] = 181466, - [SMALL_STATE(4668)] = 181523, - [SMALL_STATE(4669)] = 181580, - [SMALL_STATE(4670)] = 181637, - [SMALL_STATE(4671)] = 181694, - [SMALL_STATE(4672)] = 181751, - [SMALL_STATE(4673)] = 181778, - [SMALL_STATE(4674)] = 181835, - [SMALL_STATE(4675)] = 181862, - [SMALL_STATE(4676)] = 181921, - [SMALL_STATE(4677)] = 181978, - [SMALL_STATE(4678)] = 182035, - [SMALL_STATE(4679)] = 182092, - [SMALL_STATE(4680)] = 182151, - [SMALL_STATE(4681)] = 182208, - [SMALL_STATE(4682)] = 182265, - [SMALL_STATE(4683)] = 182314, - [SMALL_STATE(4684)] = 182341, - [SMALL_STATE(4685)] = 182398, - [SMALL_STATE(4686)] = 182455, - [SMALL_STATE(4687)] = 182512, - [SMALL_STATE(4688)] = 182569, - [SMALL_STATE(4689)] = 182614, - [SMALL_STATE(4690)] = 182671, - [SMALL_STATE(4691)] = 182728, - [SMALL_STATE(4692)] = 182785, - [SMALL_STATE(4693)] = 182842, - [SMALL_STATE(4694)] = 182887, - [SMALL_STATE(4695)] = 182944, - [SMALL_STATE(4696)] = 183001, - [SMALL_STATE(4697)] = 183042, - [SMALL_STATE(4698)] = 183099, - [SMALL_STATE(4699)] = 183156, - [SMALL_STATE(4700)] = 183213, - [SMALL_STATE(4701)] = 183270, - [SMALL_STATE(4702)] = 183297, - [SMALL_STATE(4703)] = 183337, - [SMALL_STATE(4704)] = 183388, - [SMALL_STATE(4705)] = 183439, - [SMALL_STATE(4706)] = 183490, - [SMALL_STATE(4707)] = 183541, - [SMALL_STATE(4708)] = 183592, - [SMALL_STATE(4709)] = 183643, - [SMALL_STATE(4710)] = 183694, - [SMALL_STATE(4711)] = 183745, - [SMALL_STATE(4712)] = 183796, - [SMALL_STATE(4713)] = 183847, - [SMALL_STATE(4714)] = 183898, - [SMALL_STATE(4715)] = 183949, - [SMALL_STATE(4716)] = 184000, - [SMALL_STATE(4717)] = 184051, - [SMALL_STATE(4718)] = 184102, - [SMALL_STATE(4719)] = 184153, - [SMALL_STATE(4720)] = 184204, - [SMALL_STATE(4721)] = 184245, - [SMALL_STATE(4722)] = 184296, - [SMALL_STATE(4723)] = 184347, - [SMALL_STATE(4724)] = 184398, - [SMALL_STATE(4725)] = 184449, - [SMALL_STATE(4726)] = 184500, - [SMALL_STATE(4727)] = 184539, - [SMALL_STATE(4728)] = 184590, - [SMALL_STATE(4729)] = 184641, - [SMALL_STATE(4730)] = 184682, - [SMALL_STATE(4731)] = 184733, - [SMALL_STATE(4732)] = 184774, - [SMALL_STATE(4733)] = 184825, - [SMALL_STATE(4734)] = 184876, - [SMALL_STATE(4735)] = 184927, - [SMALL_STATE(4736)] = 184978, - [SMALL_STATE(4737)] = 185029, - [SMALL_STATE(4738)] = 185080, - [SMALL_STATE(4739)] = 185131, - [SMALL_STATE(4740)] = 185182, - [SMALL_STATE(4741)] = 185233, - [SMALL_STATE(4742)] = 185284, - [SMALL_STATE(4743)] = 185335, - [SMALL_STATE(4744)] = 185386, - [SMALL_STATE(4745)] = 185437, - [SMALL_STATE(4746)] = 185488, - [SMALL_STATE(4747)] = 185539, - [SMALL_STATE(4748)] = 185590, - [SMALL_STATE(4749)] = 185641, - [SMALL_STATE(4750)] = 185692, - [SMALL_STATE(4751)] = 185743, - [SMALL_STATE(4752)] = 185794, - [SMALL_STATE(4753)] = 185823, - [SMALL_STATE(4754)] = 185874, - [SMALL_STATE(4755)] = 185925, - [SMALL_STATE(4756)] = 185966, - [SMALL_STATE(4757)] = 186017, - [SMALL_STATE(4758)] = 186055, - [SMALL_STATE(4759)] = 186103, - [SMALL_STATE(4760)] = 186149, - [SMALL_STATE(4761)] = 186197, - [SMALL_STATE(4762)] = 186245, - [SMALL_STATE(4763)] = 186291, - [SMALL_STATE(4764)] = 186337, - [SMALL_STATE(4765)] = 186383, - [SMALL_STATE(4766)] = 186429, - [SMALL_STATE(4767)] = 186475, - [SMALL_STATE(4768)] = 186521, - [SMALL_STATE(4769)] = 186559, - [SMALL_STATE(4770)] = 186605, - [SMALL_STATE(4771)] = 186653, - [SMALL_STATE(4772)] = 186691, - [SMALL_STATE(4773)] = 186737, - [SMALL_STATE(4774)] = 186783, - [SMALL_STATE(4775)] = 186835, - [SMALL_STATE(4776)] = 186881, - [SMALL_STATE(4777)] = 186927, - [SMALL_STATE(4778)] = 186973, - [SMALL_STATE(4779)] = 187025, - [SMALL_STATE(4780)] = 187071, - [SMALL_STATE(4781)] = 187109, - [SMALL_STATE(4782)] = 187161, - [SMALL_STATE(4783)] = 187207, - [SMALL_STATE(4784)] = 187253, - [SMALL_STATE(4785)] = 187301, - [SMALL_STATE(4786)] = 187347, - [SMALL_STATE(4787)] = 187393, - [SMALL_STATE(4788)] = 187439, - [SMALL_STATE(4789)] = 187487, - [SMALL_STATE(4790)] = 187535, - [SMALL_STATE(4791)] = 187581, - [SMALL_STATE(4792)] = 187626, - [SMALL_STATE(4793)] = 187671, - [SMALL_STATE(4794)] = 187716, - [SMALL_STATE(4795)] = 187761, - [SMALL_STATE(4796)] = 187806, - [SMALL_STATE(4797)] = 187851, - [SMALL_STATE(4798)] = 187896, - [SMALL_STATE(4799)] = 187941, - [SMALL_STATE(4800)] = 187986, - [SMALL_STATE(4801)] = 188031, - [SMALL_STATE(4802)] = 188076, - [SMALL_STATE(4803)] = 188121, - [SMALL_STATE(4804)] = 188166, - [SMALL_STATE(4805)] = 188211, - [SMALL_STATE(4806)] = 188256, - [SMALL_STATE(4807)] = 188301, - [SMALL_STATE(4808)] = 188346, - [SMALL_STATE(4809)] = 188391, - [SMALL_STATE(4810)] = 188436, - [SMALL_STATE(4811)] = 188481, - [SMALL_STATE(4812)] = 188526, - [SMALL_STATE(4813)] = 188563, - [SMALL_STATE(4814)] = 188608, - [SMALL_STATE(4815)] = 188653, - [SMALL_STATE(4816)] = 188698, - [SMALL_STATE(4817)] = 188743, - [SMALL_STATE(4818)] = 188788, - [SMALL_STATE(4819)] = 188833, - [SMALL_STATE(4820)] = 188878, - [SMALL_STATE(4821)] = 188923, - [SMALL_STATE(4822)] = 188968, - [SMALL_STATE(4823)] = 189015, - [SMALL_STATE(4824)] = 189060, - [SMALL_STATE(4825)] = 189105, - [SMALL_STATE(4826)] = 189150, - [SMALL_STATE(4827)] = 189195, - [SMALL_STATE(4828)] = 189240, - [SMALL_STATE(4829)] = 189285, - [SMALL_STATE(4830)] = 189330, - [SMALL_STATE(4831)] = 189375, - [SMALL_STATE(4832)] = 189420, - [SMALL_STATE(4833)] = 189465, - [SMALL_STATE(4834)] = 189510, - [SMALL_STATE(4835)] = 189555, - [SMALL_STATE(4836)] = 189600, - [SMALL_STATE(4837)] = 189645, - [SMALL_STATE(4838)] = 189690, - [SMALL_STATE(4839)] = 189735, - [SMALL_STATE(4840)] = 189780, - [SMALL_STATE(4841)] = 189825, - [SMALL_STATE(4842)] = 189870, - [SMALL_STATE(4843)] = 189915, - [SMALL_STATE(4844)] = 189960, - [SMALL_STATE(4845)] = 190005, - [SMALL_STATE(4846)] = 190050, - [SMALL_STATE(4847)] = 190095, - [SMALL_STATE(4848)] = 190140, - [SMALL_STATE(4849)] = 190185, - [SMALL_STATE(4850)] = 190230, - [SMALL_STATE(4851)] = 190275, - [SMALL_STATE(4852)] = 190320, - [SMALL_STATE(4853)] = 190365, - [SMALL_STATE(4854)] = 190410, - [SMALL_STATE(4855)] = 190455, - [SMALL_STATE(4856)] = 190500, - [SMALL_STATE(4857)] = 190545, - [SMALL_STATE(4858)] = 190590, - [SMALL_STATE(4859)] = 190635, - [SMALL_STATE(4860)] = 190680, - [SMALL_STATE(4861)] = 190725, - [SMALL_STATE(4862)] = 190770, - [SMALL_STATE(4863)] = 190815, - [SMALL_STATE(4864)] = 190860, - [SMALL_STATE(4865)] = 190905, - [SMALL_STATE(4866)] = 190950, - [SMALL_STATE(4867)] = 190995, - [SMALL_STATE(4868)] = 191040, - [SMALL_STATE(4869)] = 191085, - [SMALL_STATE(4870)] = 191130, - [SMALL_STATE(4871)] = 191175, - [SMALL_STATE(4872)] = 191220, - [SMALL_STATE(4873)] = 191265, - [SMALL_STATE(4874)] = 191310, - [SMALL_STATE(4875)] = 191355, - [SMALL_STATE(4876)] = 191400, - [SMALL_STATE(4877)] = 191445, - [SMALL_STATE(4878)] = 191490, - [SMALL_STATE(4879)] = 191535, - [SMALL_STATE(4880)] = 191580, - [SMALL_STATE(4881)] = 191625, - [SMALL_STATE(4882)] = 191670, - [SMALL_STATE(4883)] = 191715, - [SMALL_STATE(4884)] = 191760, - [SMALL_STATE(4885)] = 191805, - [SMALL_STATE(4886)] = 191850, - [SMALL_STATE(4887)] = 191895, - [SMALL_STATE(4888)] = 191940, - [SMALL_STATE(4889)] = 191985, - [SMALL_STATE(4890)] = 192011, - [SMALL_STATE(4891)] = 192049, - [SMALL_STATE(4892)] = 192095, - [SMALL_STATE(4893)] = 192135, - [SMALL_STATE(4894)] = 192173, - [SMALL_STATE(4895)] = 192219, - [SMALL_STATE(4896)] = 192257, - [SMALL_STATE(4897)] = 192297, - [SMALL_STATE(4898)] = 192323, - [SMALL_STATE(4899)] = 192365, - [SMALL_STATE(4900)] = 192405, - [SMALL_STATE(4901)] = 192447, - [SMALL_STATE(4902)] = 192485, - [SMALL_STATE(4903)] = 192523, - [SMALL_STATE(4904)] = 192549, - [SMALL_STATE(4905)] = 192595, - [SMALL_STATE(4906)] = 192633, - [SMALL_STATE(4907)] = 192679, - [SMALL_STATE(4908)] = 192717, - [SMALL_STATE(4909)] = 192757, - [SMALL_STATE(4910)] = 192795, - [SMALL_STATE(4911)] = 192835, - [SMALL_STATE(4912)] = 192881, - [SMALL_STATE(4913)] = 192919, - [SMALL_STATE(4914)] = 192965, - [SMALL_STATE(4915)] = 193003, - [SMALL_STATE(4916)] = 193041, - [SMALL_STATE(4917)] = 193079, - [SMALL_STATE(4918)] = 193121, - [SMALL_STATE(4919)] = 193161, - [SMALL_STATE(4920)] = 193201, - [SMALL_STATE(4921)] = 193239, - [SMALL_STATE(4922)] = 193267, - [SMALL_STATE(4923)] = 193313, - [SMALL_STATE(4924)] = 193359, - [SMALL_STATE(4925)] = 193405, - [SMALL_STATE(4926)] = 193431, - [SMALL_STATE(4927)] = 193469, - [SMALL_STATE(4928)] = 193515, - [SMALL_STATE(4929)] = 193555, - [SMALL_STATE(4930)] = 193593, - [SMALL_STATE(4931)] = 193639, - [SMALL_STATE(4932)] = 193675, - [SMALL_STATE(4933)] = 193713, - [SMALL_STATE(4934)] = 193759, - [SMALL_STATE(4935)] = 193801, - [SMALL_STATE(4936)] = 193841, - [SMALL_STATE(4937)] = 193867, - [SMALL_STATE(4938)] = 193893, - [SMALL_STATE(4939)] = 193933, - [SMALL_STATE(4940)] = 193979, - [SMALL_STATE(4941)] = 194005, - [SMALL_STATE(4942)] = 194033, - [SMALL_STATE(4943)] = 194071, - [SMALL_STATE(4944)] = 194113, - [SMALL_STATE(4945)] = 194155, - [SMALL_STATE(4946)] = 194193, - [SMALL_STATE(4947)] = 194226, - [SMALL_STATE(4948)] = 194259, - [SMALL_STATE(4949)] = 194292, - [SMALL_STATE(4950)] = 194329, - [SMALL_STATE(4951)] = 194362, - [SMALL_STATE(4952)] = 194395, - [SMALL_STATE(4953)] = 194428, - [SMALL_STATE(4954)] = 194465, - [SMALL_STATE(4955)] = 194490, - [SMALL_STATE(4956)] = 194523, - [SMALL_STATE(4957)] = 194556, - [SMALL_STATE(4958)] = 194593, - [SMALL_STATE(4959)] = 194626, - [SMALL_STATE(4960)] = 194659, - [SMALL_STATE(4961)] = 194698, - [SMALL_STATE(4962)] = 194735, - [SMALL_STATE(4963)] = 194776, - [SMALL_STATE(4964)] = 194801, - [SMALL_STATE(4965)] = 194834, - [SMALL_STATE(4966)] = 194867, - [SMALL_STATE(4967)] = 194900, - [SMALL_STATE(4968)] = 194937, - [SMALL_STATE(4969)] = 194970, - [SMALL_STATE(4970)] = 195003, - [SMALL_STATE(4971)] = 195040, - [SMALL_STATE(4972)] = 195081, - [SMALL_STATE(4973)] = 195118, - [SMALL_STATE(4974)] = 195159, - [SMALL_STATE(4975)] = 195198, - [SMALL_STATE(4976)] = 195237, - [SMALL_STATE(4977)] = 195260, - [SMALL_STATE(4978)] = 195285, - [SMALL_STATE(4979)] = 195318, - [SMALL_STATE(4980)] = 195357, - [SMALL_STATE(4981)] = 195394, - [SMALL_STATE(4982)] = 195431, - [SMALL_STATE(4983)] = 195468, - [SMALL_STATE(4984)] = 195493, - [SMALL_STATE(4985)] = 195534, - [SMALL_STATE(4986)] = 195559, - [SMALL_STATE(4987)] = 195598, - [SMALL_STATE(4988)] = 195635, - [SMALL_STATE(4989)] = 195668, - [SMALL_STATE(4990)] = 195705, - [SMALL_STATE(4991)] = 195738, - [SMALL_STATE(4992)] = 195763, - [SMALL_STATE(4993)] = 195804, - [SMALL_STATE(4994)] = 195829, - [SMALL_STATE(4995)] = 195866, - [SMALL_STATE(4996)] = 195899, - [SMALL_STATE(4997)] = 195932, - [SMALL_STATE(4998)] = 195957, - [SMALL_STATE(4999)] = 195990, - [SMALL_STATE(5000)] = 196023, - [SMALL_STATE(5001)] = 196060, - [SMALL_STATE(5002)] = 196094, - [SMALL_STATE(5003)] = 196116, - [SMALL_STATE(5004)] = 196136, - [SMALL_STATE(5005)] = 196156, - [SMALL_STATE(5006)] = 196192, - [SMALL_STATE(5007)] = 196228, - [SMALL_STATE(5008)] = 196256, - [SMALL_STATE(5009)] = 196284, - [SMALL_STATE(5010)] = 196304, - [SMALL_STATE(5011)] = 196324, - [SMALL_STATE(5012)] = 196344, - [SMALL_STATE(5013)] = 196364, - [SMALL_STATE(5014)] = 196384, - [SMALL_STATE(5015)] = 196418, - [SMALL_STATE(5016)] = 196438, - [SMALL_STATE(5017)] = 196472, - [SMALL_STATE(5018)] = 196492, - [SMALL_STATE(5019)] = 196526, - [SMALL_STATE(5020)] = 196546, - [SMALL_STATE(5021)] = 196566, - [SMALL_STATE(5022)] = 196586, - [SMALL_STATE(5023)] = 196610, - [SMALL_STATE(5024)] = 196630, - [SMALL_STATE(5025)] = 196666, - [SMALL_STATE(5026)] = 196702, - [SMALL_STATE(5027)] = 196722, - [SMALL_STATE(5028)] = 196754, - [SMALL_STATE(5029)] = 196788, - [SMALL_STATE(5030)] = 196816, - [SMALL_STATE(5031)] = 196840, - [SMALL_STATE(5032)] = 196876, - [SMALL_STATE(5033)] = 196896, - [SMALL_STATE(5034)] = 196918, - [SMALL_STATE(5035)] = 196954, - [SMALL_STATE(5036)] = 196976, - [SMALL_STATE(5037)] = 196996, - [SMALL_STATE(5038)] = 197020, - [SMALL_STATE(5039)] = 197040, - [SMALL_STATE(5040)] = 197064, - [SMALL_STATE(5041)] = 197088, - [SMALL_STATE(5042)] = 197124, - [SMALL_STATE(5043)] = 197144, - [SMALL_STATE(5044)] = 197168, - [SMALL_STATE(5045)] = 197204, - [SMALL_STATE(5046)] = 197224, - [SMALL_STATE(5047)] = 197258, - [SMALL_STATE(5048)] = 197278, - [SMALL_STATE(5049)] = 197314, - [SMALL_STATE(5050)] = 197334, - [SMALL_STATE(5051)] = 197354, - [SMALL_STATE(5052)] = 197390, - [SMALL_STATE(5053)] = 197410, - [SMALL_STATE(5054)] = 197444, - [SMALL_STATE(5055)] = 197480, - [SMALL_STATE(5056)] = 197504, - [SMALL_STATE(5057)] = 197540, - [SMALL_STATE(5058)] = 197560, - [SMALL_STATE(5059)] = 197584, - [SMALL_STATE(5060)] = 197604, - [SMALL_STATE(5061)] = 197624, - [SMALL_STATE(5062)] = 197660, - [SMALL_STATE(5063)] = 197684, - [SMALL_STATE(5064)] = 197720, - [SMALL_STATE(5065)] = 197756, - [SMALL_STATE(5066)] = 197792, - [SMALL_STATE(5067)] = 197812, - [SMALL_STATE(5068)] = 197832, - [SMALL_STATE(5069)] = 197856, - [SMALL_STATE(5070)] = 197892, - [SMALL_STATE(5071)] = 197928, - [SMALL_STATE(5072)] = 197948, - [SMALL_STATE(5073)] = 197968, - [SMALL_STATE(5074)] = 198004, - [SMALL_STATE(5075)] = 198024, - [SMALL_STATE(5076)] = 198044, - [SMALL_STATE(5077)] = 198080, - [SMALL_STATE(5078)] = 198116, - [SMALL_STATE(5079)] = 198140, - [SMALL_STATE(5080)] = 198168, - [SMALL_STATE(5081)] = 198188, - [SMALL_STATE(5082)] = 198222, - [SMALL_STATE(5083)] = 198250, - [SMALL_STATE(5084)] = 198284, - [SMALL_STATE(5085)] = 198304, - [SMALL_STATE(5086)] = 198328, - [SMALL_STATE(5087)] = 198351, - [SMALL_STATE(5088)] = 198370, - [SMALL_STATE(5089)] = 198397, - [SMALL_STATE(5090)] = 198416, - [SMALL_STATE(5091)] = 198435, - [SMALL_STATE(5092)] = 198454, - [SMALL_STATE(5093)] = 198477, - [SMALL_STATE(5094)] = 198496, - [SMALL_STATE(5095)] = 198519, - [SMALL_STATE(5096)] = 198546, - [SMALL_STATE(5097)] = 198565, - [SMALL_STATE(5098)] = 198582, - [SMALL_STATE(5099)] = 198605, - [SMALL_STATE(5100)] = 198628, - [SMALL_STATE(5101)] = 198647, - [SMALL_STATE(5102)] = 198678, - [SMALL_STATE(5103)] = 198705, - [SMALL_STATE(5104)] = 198724, - [SMALL_STATE(5105)] = 198747, - [SMALL_STATE(5106)] = 198766, - [SMALL_STATE(5107)] = 198789, - [SMALL_STATE(5108)] = 198806, - [SMALL_STATE(5109)] = 198833, - [SMALL_STATE(5110)] = 198860, - [SMALL_STATE(5111)] = 198877, - [SMALL_STATE(5112)] = 198896, - [SMALL_STATE(5113)] = 198923, - [SMALL_STATE(5114)] = 198942, - [SMALL_STATE(5115)] = 198961, - [SMALL_STATE(5116)] = 198988, - [SMALL_STATE(5117)] = 199007, - [SMALL_STATE(5118)] = 199030, - [SMALL_STATE(5119)] = 199057, - [SMALL_STATE(5120)] = 199088, - [SMALL_STATE(5121)] = 199111, - [SMALL_STATE(5122)] = 199140, - [SMALL_STATE(5123)] = 199163, - [SMALL_STATE(5124)] = 199186, - [SMALL_STATE(5125)] = 199203, - [SMALL_STATE(5126)] = 199220, - [SMALL_STATE(5127)] = 199243, - [SMALL_STATE(5128)] = 199266, - [SMALL_STATE(5129)] = 199283, - [SMALL_STATE(5130)] = 199306, - [SMALL_STATE(5131)] = 199323, - [SMALL_STATE(5132)] = 199342, - [SMALL_STATE(5133)] = 199361, - [SMALL_STATE(5134)] = 199378, - [SMALL_STATE(5135)] = 199401, - [SMALL_STATE(5136)] = 199420, - [SMALL_STATE(5137)] = 199439, - [SMALL_STATE(5138)] = 199456, - [SMALL_STATE(5139)] = 199473, - [SMALL_STATE(5140)] = 199492, - [SMALL_STATE(5141)] = 199519, - [SMALL_STATE(5142)] = 199542, - [SMALL_STATE(5143)] = 199565, - [SMALL_STATE(5144)] = 199582, - [SMALL_STATE(5145)] = 199601, - [SMALL_STATE(5146)] = 199618, - [SMALL_STATE(5147)] = 199635, - [SMALL_STATE(5148)] = 199652, - [SMALL_STATE(5149)] = 199669, - [SMALL_STATE(5150)] = 199698, - [SMALL_STATE(5151)] = 199721, - [SMALL_STATE(5152)] = 199744, - [SMALL_STATE(5153)] = 199763, - [SMALL_STATE(5154)] = 199782, - [SMALL_STATE(5155)] = 199799, - [SMALL_STATE(5156)] = 199822, - [SMALL_STATE(5157)] = 199839, - [SMALL_STATE(5158)] = 199866, - [SMALL_STATE(5159)] = 199893, - [SMALL_STATE(5160)] = 199916, - [SMALL_STATE(5161)] = 199948, - [SMALL_STATE(5162)] = 199974, - [SMALL_STATE(5163)] = 200000, - [SMALL_STATE(5164)] = 200032, - [SMALL_STATE(5165)] = 200064, - [SMALL_STATE(5166)] = 200096, - [SMALL_STATE(5167)] = 200128, - [SMALL_STATE(5168)] = 200154, - [SMALL_STATE(5169)] = 200180, - [SMALL_STATE(5170)] = 200212, - [SMALL_STATE(5171)] = 200230, - [SMALL_STATE(5172)] = 200252, - [SMALL_STATE(5173)] = 200270, - [SMALL_STATE(5174)] = 200288, - [SMALL_STATE(5175)] = 200306, - [SMALL_STATE(5176)] = 200324, - [SMALL_STATE(5177)] = 200356, - [SMALL_STATE(5178)] = 200382, - [SMALL_STATE(5179)] = 200400, - [SMALL_STATE(5180)] = 200432, - [SMALL_STATE(5181)] = 200458, - [SMALL_STATE(5182)] = 200490, - [SMALL_STATE(5183)] = 200522, - [SMALL_STATE(5184)] = 200554, - [SMALL_STATE(5185)] = 200586, - [SMALL_STATE(5186)] = 200618, - [SMALL_STATE(5187)] = 200640, - [SMALL_STATE(5188)] = 200662, - [SMALL_STATE(5189)] = 200694, - [SMALL_STATE(5190)] = 200726, - [SMALL_STATE(5191)] = 200744, - [SMALL_STATE(5192)] = 200766, - [SMALL_STATE(5193)] = 200798, - [SMALL_STATE(5194)] = 200830, - [SMALL_STATE(5195)] = 200852, - [SMALL_STATE(5196)] = 200878, - [SMALL_STATE(5197)] = 200910, - [SMALL_STATE(5198)] = 200942, - [SMALL_STATE(5199)] = 200964, - [SMALL_STATE(5200)] = 200996, - [SMALL_STATE(5201)] = 201028, - [SMALL_STATE(5202)] = 201060, - [SMALL_STATE(5203)] = 201082, - [SMALL_STATE(5204)] = 201114, - [SMALL_STATE(5205)] = 201132, - [SMALL_STATE(5206)] = 201154, - [SMALL_STATE(5207)] = 201172, - [SMALL_STATE(5208)] = 201194, - [SMALL_STATE(5209)] = 201226, - [SMALL_STATE(5210)] = 201258, - [SMALL_STATE(5211)] = 201278, - [SMALL_STATE(5212)] = 201296, - [SMALL_STATE(5213)] = 201328, - [SMALL_STATE(5214)] = 201360, - [SMALL_STATE(5215)] = 201392, - [SMALL_STATE(5216)] = 201409, - [SMALL_STATE(5217)] = 201438, - [SMALL_STATE(5218)] = 201459, - [SMALL_STATE(5219)] = 201486, - [SMALL_STATE(5220)] = 201501, - [SMALL_STATE(5221)] = 201522, - [SMALL_STATE(5222)] = 201543, - [SMALL_STATE(5223)] = 201572, - [SMALL_STATE(5224)] = 201601, - [SMALL_STATE(5225)] = 201622, - [SMALL_STATE(5226)] = 201637, - [SMALL_STATE(5227)] = 201652, - [SMALL_STATE(5228)] = 201671, - [SMALL_STATE(5229)] = 201692, - [SMALL_STATE(5230)] = 201707, - [SMALL_STATE(5231)] = 201734, - [SMALL_STATE(5232)] = 201755, - [SMALL_STATE(5233)] = 201774, - [SMALL_STATE(5234)] = 201801, - [SMALL_STATE(5235)] = 201822, - [SMALL_STATE(5236)] = 201851, - [SMALL_STATE(5237)] = 201872, - [SMALL_STATE(5238)] = 201893, - [SMALL_STATE(5239)] = 201920, - [SMALL_STATE(5240)] = 201941, - [SMALL_STATE(5241)] = 201966, - [SMALL_STATE(5242)] = 201995, - [SMALL_STATE(5243)] = 202024, - [SMALL_STATE(5244)] = 202045, - [SMALL_STATE(5245)] = 202066, - [SMALL_STATE(5246)] = 202087, - [SMALL_STATE(5247)] = 202116, - [SMALL_STATE(5248)] = 202137, - [SMALL_STATE(5249)] = 202152, - [SMALL_STATE(5250)] = 202181, - [SMALL_STATE(5251)] = 202196, - [SMALL_STATE(5252)] = 202211, - [SMALL_STATE(5253)] = 202240, - [SMALL_STATE(5254)] = 202257, - [SMALL_STATE(5255)] = 202284, - [SMALL_STATE(5256)] = 202299, - [SMALL_STATE(5257)] = 202314, - [SMALL_STATE(5258)] = 202329, - [SMALL_STATE(5259)] = 202350, - [SMALL_STATE(5260)] = 202365, - [SMALL_STATE(5261)] = 202394, - [SMALL_STATE(5262)] = 202409, - [SMALL_STATE(5263)] = 202436, - [SMALL_STATE(5264)] = 202457, - [SMALL_STATE(5265)] = 202472, - [SMALL_STATE(5266)] = 202501, - [SMALL_STATE(5267)] = 202528, - [SMALL_STATE(5268)] = 202543, - [SMALL_STATE(5269)] = 202570, - [SMALL_STATE(5270)] = 202599, - [SMALL_STATE(5271)] = 202622, - [SMALL_STATE(5272)] = 202651, - [SMALL_STATE(5273)] = 202678, - [SMALL_STATE(5274)] = 202693, - [SMALL_STATE(5275)] = 202722, - [SMALL_STATE(5276)] = 202751, - [SMALL_STATE(5277)] = 202772, - [SMALL_STATE(5278)] = 202797, - [SMALL_STATE(5279)] = 202826, - [SMALL_STATE(5280)] = 202855, - [SMALL_STATE(5281)] = 202882, - [SMALL_STATE(5282)] = 202911, - [SMALL_STATE(5283)] = 202940, - [SMALL_STATE(5284)] = 202961, - [SMALL_STATE(5285)] = 202978, - [SMALL_STATE(5286)] = 203007, - [SMALL_STATE(5287)] = 203030, - [SMALL_STATE(5288)] = 203047, - [SMALL_STATE(5289)] = 203062, - [SMALL_STATE(5290)] = 203079, - [SMALL_STATE(5291)] = 203096, - [SMALL_STATE(5292)] = 203113, - [SMALL_STATE(5293)] = 203132, - [SMALL_STATE(5294)] = 203157, - [SMALL_STATE(5295)] = 203172, - [SMALL_STATE(5296)] = 203189, - [SMALL_STATE(5297)] = 203216, - [SMALL_STATE(5298)] = 203241, - [SMALL_STATE(5299)] = 203258, - [SMALL_STATE(5300)] = 203284, - [SMALL_STATE(5301)] = 203308, - [SMALL_STATE(5302)] = 203332, - [SMALL_STATE(5303)] = 203356, - [SMALL_STATE(5304)] = 203380, - [SMALL_STATE(5305)] = 203404, - [SMALL_STATE(5306)] = 203428, - [SMALL_STATE(5307)] = 203452, - [SMALL_STATE(5308)] = 203472, - [SMALL_STATE(5309)] = 203500, - [SMALL_STATE(5310)] = 203518, - [SMALL_STATE(5311)] = 203536, - [SMALL_STATE(5312)] = 203562, - [SMALL_STATE(5313)] = 203584, - [SMALL_STATE(5314)] = 203608, - [SMALL_STATE(5315)] = 203628, - [SMALL_STATE(5316)] = 203646, - [SMALL_STATE(5317)] = 203662, - [SMALL_STATE(5318)] = 203688, - [SMALL_STATE(5319)] = 203706, - [SMALL_STATE(5320)] = 203730, - [SMALL_STATE(5321)] = 203748, - [SMALL_STATE(5322)] = 203772, - [SMALL_STATE(5323)] = 203792, - [SMALL_STATE(5324)] = 203814, - [SMALL_STATE(5325)] = 203838, - [SMALL_STATE(5326)] = 203856, - [SMALL_STATE(5327)] = 203884, - [SMALL_STATE(5328)] = 203902, - [SMALL_STATE(5329)] = 203920, - [SMALL_STATE(5330)] = 203940, - [SMALL_STATE(5331)] = 203960, - [SMALL_STATE(5332)] = 203978, - [SMALL_STATE(5333)] = 203998, - [SMALL_STATE(5334)] = 204026, - [SMALL_STATE(5335)] = 204046, - [SMALL_STATE(5336)] = 204066, - [SMALL_STATE(5337)] = 204091, - [SMALL_STATE(5338)] = 204110, - [SMALL_STATE(5339)] = 204127, - [SMALL_STATE(5340)] = 204146, - [SMALL_STATE(5341)] = 204165, - [SMALL_STATE(5342)] = 204184, - [SMALL_STATE(5343)] = 204207, - [SMALL_STATE(5344)] = 204226, - [SMALL_STATE(5345)] = 204249, - [SMALL_STATE(5346)] = 204274, - [SMALL_STATE(5347)] = 204293, - [SMALL_STATE(5348)] = 204312, - [SMALL_STATE(5349)] = 204331, - [SMALL_STATE(5350)] = 204356, - [SMALL_STATE(5351)] = 204375, - [SMALL_STATE(5352)] = 204394, - [SMALL_STATE(5353)] = 204419, - [SMALL_STATE(5354)] = 204442, - [SMALL_STATE(5355)] = 204467, - [SMALL_STATE(5356)] = 204486, - [SMALL_STATE(5357)] = 204509, - [SMALL_STATE(5358)] = 204532, - [SMALL_STATE(5359)] = 204551, - [SMALL_STATE(5360)] = 204574, - [SMALL_STATE(5361)] = 204597, - [SMALL_STATE(5362)] = 204620, - [SMALL_STATE(5363)] = 204645, - [SMALL_STATE(5364)] = 204668, - [SMALL_STATE(5365)] = 204687, - [SMALL_STATE(5366)] = 204706, - [SMALL_STATE(5367)] = 204729, - [SMALL_STATE(5368)] = 204752, - [SMALL_STATE(5369)] = 204771, - [SMALL_STATE(5370)] = 204794, - [SMALL_STATE(5371)] = 204817, - [SMALL_STATE(5372)] = 204842, - [SMALL_STATE(5373)] = 204865, - [SMALL_STATE(5374)] = 204884, - [SMALL_STATE(5375)] = 204903, - [SMALL_STATE(5376)] = 204922, - [SMALL_STATE(5377)] = 204945, - [SMALL_STATE(5378)] = 204964, - [SMALL_STATE(5379)] = 204987, - [SMALL_STATE(5380)] = 205010, - [SMALL_STATE(5381)] = 205033, - [SMALL_STATE(5382)] = 205058, - [SMALL_STATE(5383)] = 205073, - [SMALL_STATE(5384)] = 205098, - [SMALL_STATE(5385)] = 205113, - [SMALL_STATE(5386)] = 205138, - [SMALL_STATE(5387)] = 205161, - [SMALL_STATE(5388)] = 205184, - [SMALL_STATE(5389)] = 205203, - [SMALL_STATE(5390)] = 205228, - [SMALL_STATE(5391)] = 205253, - [SMALL_STATE(5392)] = 205268, - [SMALL_STATE(5393)] = 205283, - [SMALL_STATE(5394)] = 205306, - [SMALL_STATE(5395)] = 205325, - [SMALL_STATE(5396)] = 205348, - [SMALL_STATE(5397)] = 205373, - [SMALL_STATE(5398)] = 205392, - [SMALL_STATE(5399)] = 205415, - [SMALL_STATE(5400)] = 205430, - [SMALL_STATE(5401)] = 205447, - [SMALL_STATE(5402)] = 205472, - [SMALL_STATE(5403)] = 205491, - [SMALL_STATE(5404)] = 205506, - [SMALL_STATE(5405)] = 205525, - [SMALL_STATE(5406)] = 205544, - [SMALL_STATE(5407)] = 205563, - [SMALL_STATE(5408)] = 205586, - [SMALL_STATE(5409)] = 205605, - [SMALL_STATE(5410)] = 205624, - [SMALL_STATE(5411)] = 205647, - [SMALL_STATE(5412)] = 205670, - [SMALL_STATE(5413)] = 205693, - [SMALL_STATE(5414)] = 205716, - [SMALL_STATE(5415)] = 205741, - [SMALL_STATE(5416)] = 205764, - [SMALL_STATE(5417)] = 205787, - [SMALL_STATE(5418)] = 205810, - [SMALL_STATE(5419)] = 205829, - [SMALL_STATE(5420)] = 205844, - [SMALL_STATE(5421)] = 205869, - [SMALL_STATE(5422)] = 205892, - [SMALL_STATE(5423)] = 205915, - [SMALL_STATE(5424)] = 205932, - [SMALL_STATE(5425)] = 205955, - [SMALL_STATE(5426)] = 205974, - [SMALL_STATE(5427)] = 205993, - [SMALL_STATE(5428)] = 206012, - [SMALL_STATE(5429)] = 206031, - [SMALL_STATE(5430)] = 206048, - [SMALL_STATE(5431)] = 206071, - [SMALL_STATE(5432)] = 206090, - [SMALL_STATE(5433)] = 206109, - [SMALL_STATE(5434)] = 206124, - [SMALL_STATE(5435)] = 206141, - [SMALL_STATE(5436)] = 206166, - [SMALL_STATE(5437)] = 206183, - [SMALL_STATE(5438)] = 206202, - [SMALL_STATE(5439)] = 206221, - [SMALL_STATE(5440)] = 206240, - [SMALL_STATE(5441)] = 206259, - [SMALL_STATE(5442)] = 206282, - [SMALL_STATE(5443)] = 206301, - [SMALL_STATE(5444)] = 206324, - [SMALL_STATE(5445)] = 206347, - [SMALL_STATE(5446)] = 206372, - [SMALL_STATE(5447)] = 206395, - [SMALL_STATE(5448)] = 206411, - [SMALL_STATE(5449)] = 206431, - [SMALL_STATE(5450)] = 206445, - [SMALL_STATE(5451)] = 206463, - [SMALL_STATE(5452)] = 206477, - [SMALL_STATE(5453)] = 206497, - [SMALL_STATE(5454)] = 206515, - [SMALL_STATE(5455)] = 206535, - [SMALL_STATE(5456)] = 206553, - [SMALL_STATE(5457)] = 206573, - [SMALL_STATE(5458)] = 206593, - [SMALL_STATE(5459)] = 206611, - [SMALL_STATE(5460)] = 206631, - [SMALL_STATE(5461)] = 206649, - [SMALL_STATE(5462)] = 206667, - [SMALL_STATE(5463)] = 206687, - [SMALL_STATE(5464)] = 206705, - [SMALL_STATE(5465)] = 206723, - [SMALL_STATE(5466)] = 206737, - [SMALL_STATE(5467)] = 206755, - [SMALL_STATE(5468)] = 206773, - [SMALL_STATE(5469)] = 206791, - [SMALL_STATE(5470)] = 206809, - [SMALL_STATE(5471)] = 206827, - [SMALL_STATE(5472)] = 206841, - [SMALL_STATE(5473)] = 206861, - [SMALL_STATE(5474)] = 206875, - [SMALL_STATE(5475)] = 206889, - [SMALL_STATE(5476)] = 206909, - [SMALL_STATE(5477)] = 206927, - [SMALL_STATE(5478)] = 206945, - [SMALL_STATE(5479)] = 206963, - [SMALL_STATE(5480)] = 206981, - [SMALL_STATE(5481)] = 207001, - [SMALL_STATE(5482)] = 207019, - [SMALL_STATE(5483)] = 207037, - [SMALL_STATE(5484)] = 207057, - [SMALL_STATE(5485)] = 207075, - [SMALL_STATE(5486)] = 207093, - [SMALL_STATE(5487)] = 207113, - [SMALL_STATE(5488)] = 207133, - [SMALL_STATE(5489)] = 207153, - [SMALL_STATE(5490)] = 207171, - [SMALL_STATE(5491)] = 207189, - [SMALL_STATE(5492)] = 207203, - [SMALL_STATE(5493)] = 207221, - [SMALL_STATE(5494)] = 207235, - [SMALL_STATE(5495)] = 207255, - [SMALL_STATE(5496)] = 207274, - [SMALL_STATE(5497)] = 207293, - [SMALL_STATE(5498)] = 207310, - [SMALL_STATE(5499)] = 207327, - [SMALL_STATE(5500)] = 207344, - [SMALL_STATE(5501)] = 207363, - [SMALL_STATE(5502)] = 207380, - [SMALL_STATE(5503)] = 207397, - [SMALL_STATE(5504)] = 207414, - [SMALL_STATE(5505)] = 207433, - [SMALL_STATE(5506)] = 207450, - [SMALL_STATE(5507)] = 207467, - [SMALL_STATE(5508)] = 207486, - [SMALL_STATE(5509)] = 207503, - [SMALL_STATE(5510)] = 207520, - [SMALL_STATE(5511)] = 207537, - [SMALL_STATE(5512)] = 207550, - [SMALL_STATE(5513)] = 207563, - [SMALL_STATE(5514)] = 207580, - [SMALL_STATE(5515)] = 207597, - [SMALL_STATE(5516)] = 207616, - [SMALL_STATE(5517)] = 207635, - [SMALL_STATE(5518)] = 207652, - [SMALL_STATE(5519)] = 207665, - [SMALL_STATE(5520)] = 207681, - [SMALL_STATE(5521)] = 207695, - [SMALL_STATE(5522)] = 207711, - [SMALL_STATE(5523)] = 207727, - [SMALL_STATE(5524)] = 207743, - [SMALL_STATE(5525)] = 207759, - [SMALL_STATE(5526)] = 207775, - [SMALL_STATE(5527)] = 207789, - [SMALL_STATE(5528)] = 207805, - [SMALL_STATE(5529)] = 207821, - [SMALL_STATE(5530)] = 207837, - [SMALL_STATE(5531)] = 207853, - [SMALL_STATE(5532)] = 207869, - [SMALL_STATE(5533)] = 207885, - [SMALL_STATE(5534)] = 207901, - [SMALL_STATE(5535)] = 207917, - [SMALL_STATE(5536)] = 207933, - [SMALL_STATE(5537)] = 207949, - [SMALL_STATE(5538)] = 207965, - [SMALL_STATE(5539)] = 207981, - [SMALL_STATE(5540)] = 207997, - [SMALL_STATE(5541)] = 208013, - [SMALL_STATE(5542)] = 208029, - [SMALL_STATE(5543)] = 208045, - [SMALL_STATE(5544)] = 208061, - [SMALL_STATE(5545)] = 208077, - [SMALL_STATE(5546)] = 208091, - [SMALL_STATE(5547)] = 208107, - [SMALL_STATE(5548)] = 208123, - [SMALL_STATE(5549)] = 208139, - [SMALL_STATE(5550)] = 208155, - [SMALL_STATE(5551)] = 208171, - [SMALL_STATE(5552)] = 208187, - [SMALL_STATE(5553)] = 208201, - [SMALL_STATE(5554)] = 208217, - [SMALL_STATE(5555)] = 208233, - [SMALL_STATE(5556)] = 208247, - [SMALL_STATE(5557)] = 208263, - [SMALL_STATE(5558)] = 208279, - [SMALL_STATE(5559)] = 208295, - [SMALL_STATE(5560)] = 208311, - [SMALL_STATE(5561)] = 208327, - [SMALL_STATE(5562)] = 208343, - [SMALL_STATE(5563)] = 208359, - [SMALL_STATE(5564)] = 208375, - [SMALL_STATE(5565)] = 208391, - [SMALL_STATE(5566)] = 208407, - [SMALL_STATE(5567)] = 208423, - [SMALL_STATE(5568)] = 208439, - [SMALL_STATE(5569)] = 208455, - [SMALL_STATE(5570)] = 208471, - [SMALL_STATE(5571)] = 208487, - [SMALL_STATE(5572)] = 208503, - [SMALL_STATE(5573)] = 208519, - [SMALL_STATE(5574)] = 208535, - [SMALL_STATE(5575)] = 208549, - [SMALL_STATE(5576)] = 208565, - [SMALL_STATE(5577)] = 208581, - [SMALL_STATE(5578)] = 208597, - [SMALL_STATE(5579)] = 208613, - [SMALL_STATE(5580)] = 208629, - [SMALL_STATE(5581)] = 208645, - [SMALL_STATE(5582)] = 208661, - [SMALL_STATE(5583)] = 208677, - [SMALL_STATE(5584)] = 208693, - [SMALL_STATE(5585)] = 208709, - [SMALL_STATE(5586)] = 208723, - [SMALL_STATE(5587)] = 208739, - [SMALL_STATE(5588)] = 208755, - [SMALL_STATE(5589)] = 208771, - [SMALL_STATE(5590)] = 208787, - [SMALL_STATE(5591)] = 208803, - [SMALL_STATE(5592)] = 208819, - [SMALL_STATE(5593)] = 208835, - [SMALL_STATE(5594)] = 208851, - [SMALL_STATE(5595)] = 208865, - [SMALL_STATE(5596)] = 208881, - [SMALL_STATE(5597)] = 208897, - [SMALL_STATE(5598)] = 208913, - [SMALL_STATE(5599)] = 208929, - [SMALL_STATE(5600)] = 208945, - [SMALL_STATE(5601)] = 208961, - [SMALL_STATE(5602)] = 208977, - [SMALL_STATE(5603)] = 208993, - [SMALL_STATE(5604)] = 209009, - [SMALL_STATE(5605)] = 209025, - [SMALL_STATE(5606)] = 209041, - [SMALL_STATE(5607)] = 209057, - [SMALL_STATE(5608)] = 209073, - [SMALL_STATE(5609)] = 209089, - [SMALL_STATE(5610)] = 209105, - [SMALL_STATE(5611)] = 209119, - [SMALL_STATE(5612)] = 209135, - [SMALL_STATE(5613)] = 209151, - [SMALL_STATE(5614)] = 209167, - [SMALL_STATE(5615)] = 209183, - [SMALL_STATE(5616)] = 209199, - [SMALL_STATE(5617)] = 209213, - [SMALL_STATE(5618)] = 209229, - [SMALL_STATE(5619)] = 209245, - [SMALL_STATE(5620)] = 209261, - [SMALL_STATE(5621)] = 209277, - [SMALL_STATE(5622)] = 209293, - [SMALL_STATE(5623)] = 209309, - [SMALL_STATE(5624)] = 209325, - [SMALL_STATE(5625)] = 209341, - [SMALL_STATE(5626)] = 209355, - [SMALL_STATE(5627)] = 209371, - [SMALL_STATE(5628)] = 209387, - [SMALL_STATE(5629)] = 209401, - [SMALL_STATE(5630)] = 209417, - [SMALL_STATE(5631)] = 209433, - [SMALL_STATE(5632)] = 209449, - [SMALL_STATE(5633)] = 209465, - [SMALL_STATE(5634)] = 209481, - [SMALL_STATE(5635)] = 209497, - [SMALL_STATE(5636)] = 209513, - [SMALL_STATE(5637)] = 209529, - [SMALL_STATE(5638)] = 209545, - [SMALL_STATE(5639)] = 209561, - [SMALL_STATE(5640)] = 209575, - [SMALL_STATE(5641)] = 209587, - [SMALL_STATE(5642)] = 209601, - [SMALL_STATE(5643)] = 209617, - [SMALL_STATE(5644)] = 209633, - [SMALL_STATE(5645)] = 209649, - [SMALL_STATE(5646)] = 209665, - [SMALL_STATE(5647)] = 209681, - [SMALL_STATE(5648)] = 209695, - [SMALL_STATE(5649)] = 209711, - [SMALL_STATE(5650)] = 209727, - [SMALL_STATE(5651)] = 209743, - [SMALL_STATE(5652)] = 209759, - [SMALL_STATE(5653)] = 209775, - [SMALL_STATE(5654)] = 209791, - [SMALL_STATE(5655)] = 209807, - [SMALL_STATE(5656)] = 209823, - [SMALL_STATE(5657)] = 209839, - [SMALL_STATE(5658)] = 209855, - [SMALL_STATE(5659)] = 209871, - [SMALL_STATE(5660)] = 209887, - [SMALL_STATE(5661)] = 209903, - [SMALL_STATE(5662)] = 209919, - [SMALL_STATE(5663)] = 209935, - [SMALL_STATE(5664)] = 209951, - [SMALL_STATE(5665)] = 209967, - [SMALL_STATE(5666)] = 209981, - [SMALL_STATE(5667)] = 209997, - [SMALL_STATE(5668)] = 210013, - [SMALL_STATE(5669)] = 210029, - [SMALL_STATE(5670)] = 210045, - [SMALL_STATE(5671)] = 210061, - [SMALL_STATE(5672)] = 210075, - [SMALL_STATE(5673)] = 210091, - [SMALL_STATE(5674)] = 210107, - [SMALL_STATE(5675)] = 210123, - [SMALL_STATE(5676)] = 210137, - [SMALL_STATE(5677)] = 210153, - [SMALL_STATE(5678)] = 210169, - [SMALL_STATE(5679)] = 210185, - [SMALL_STATE(5680)] = 210201, - [SMALL_STATE(5681)] = 210215, - [SMALL_STATE(5682)] = 210231, - [SMALL_STATE(5683)] = 210247, - [SMALL_STATE(5684)] = 210261, - [SMALL_STATE(5685)] = 210277, - [SMALL_STATE(5686)] = 210291, - [SMALL_STATE(5687)] = 210307, - [SMALL_STATE(5688)] = 210323, - [SMALL_STATE(5689)] = 210339, - [SMALL_STATE(5690)] = 210355, - [SMALL_STATE(5691)] = 210371, - [SMALL_STATE(5692)] = 210387, - [SMALL_STATE(5693)] = 210403, - [SMALL_STATE(5694)] = 210419, - [SMALL_STATE(5695)] = 210435, - [SMALL_STATE(5696)] = 210451, - [SMALL_STATE(5697)] = 210467, - [SMALL_STATE(5698)] = 210483, - [SMALL_STATE(5699)] = 210499, - [SMALL_STATE(5700)] = 210515, - [SMALL_STATE(5701)] = 210531, - [SMALL_STATE(5702)] = 210547, - [SMALL_STATE(5703)] = 210563, - [SMALL_STATE(5704)] = 210579, - [SMALL_STATE(5705)] = 210595, - [SMALL_STATE(5706)] = 210611, - [SMALL_STATE(5707)] = 210627, - [SMALL_STATE(5708)] = 210643, - [SMALL_STATE(5709)] = 210653, - [SMALL_STATE(5710)] = 210669, - [SMALL_STATE(5711)] = 210685, - [SMALL_STATE(5712)] = 210701, - [SMALL_STATE(5713)] = 210717, - [SMALL_STATE(5714)] = 210733, - [SMALL_STATE(5715)] = 210749, - [SMALL_STATE(5716)] = 210765, - [SMALL_STATE(5717)] = 210781, - [SMALL_STATE(5718)] = 210797, - [SMALL_STATE(5719)] = 210813, - [SMALL_STATE(5720)] = 210827, - [SMALL_STATE(5721)] = 210843, - [SMALL_STATE(5722)] = 210859, - [SMALL_STATE(5723)] = 210875, - [SMALL_STATE(5724)] = 210891, - [SMALL_STATE(5725)] = 210907, - [SMALL_STATE(5726)] = 210923, - [SMALL_STATE(5727)] = 210937, - [SMALL_STATE(5728)] = 210951, - [SMALL_STATE(5729)] = 210967, - [SMALL_STATE(5730)] = 210983, - [SMALL_STATE(5731)] = 210999, - [SMALL_STATE(5732)] = 211015, - [SMALL_STATE(5733)] = 211031, - [SMALL_STATE(5734)] = 211041, - [SMALL_STATE(5735)] = 211057, - [SMALL_STATE(5736)] = 211073, - [SMALL_STATE(5737)] = 211087, - [SMALL_STATE(5738)] = 211103, - [SMALL_STATE(5739)] = 211117, - [SMALL_STATE(5740)] = 211133, - [SMALL_STATE(5741)] = 211149, - [SMALL_STATE(5742)] = 211163, - [SMALL_STATE(5743)] = 211179, - [SMALL_STATE(5744)] = 211193, - [SMALL_STATE(5745)] = 211209, - [SMALL_STATE(5746)] = 211225, - [SMALL_STATE(5747)] = 211241, - [SMALL_STATE(5748)] = 211257, - [SMALL_STATE(5749)] = 211273, - [SMALL_STATE(5750)] = 211289, - [SMALL_STATE(5751)] = 211305, - [SMALL_STATE(5752)] = 211321, - [SMALL_STATE(5753)] = 211337, - [SMALL_STATE(5754)] = 211353, - [SMALL_STATE(5755)] = 211369, - [SMALL_STATE(5756)] = 211385, - [SMALL_STATE(5757)] = 211401, - [SMALL_STATE(5758)] = 211417, - [SMALL_STATE(5759)] = 211433, - [SMALL_STATE(5760)] = 211449, - [SMALL_STATE(5761)] = 211465, - [SMALL_STATE(5762)] = 211481, - [SMALL_STATE(5763)] = 211497, - [SMALL_STATE(5764)] = 211513, - [SMALL_STATE(5765)] = 211529, - [SMALL_STATE(5766)] = 211545, - [SMALL_STATE(5767)] = 211561, - [SMALL_STATE(5768)] = 211577, - [SMALL_STATE(5769)] = 211593, - [SMALL_STATE(5770)] = 211609, - [SMALL_STATE(5771)] = 211625, - [SMALL_STATE(5772)] = 211641, - [SMALL_STATE(5773)] = 211657, - [SMALL_STATE(5774)] = 211673, - [SMALL_STATE(5775)] = 211689, - [SMALL_STATE(5776)] = 211705, - [SMALL_STATE(5777)] = 211721, - [SMALL_STATE(5778)] = 211737, - [SMALL_STATE(5779)] = 211751, - [SMALL_STATE(5780)] = 211767, - [SMALL_STATE(5781)] = 211783, - [SMALL_STATE(5782)] = 211799, - [SMALL_STATE(5783)] = 211815, - [SMALL_STATE(5784)] = 211831, - [SMALL_STATE(5785)] = 211847, - [SMALL_STATE(5786)] = 211863, - [SMALL_STATE(5787)] = 211879, - [SMALL_STATE(5788)] = 211895, - [SMALL_STATE(5789)] = 211911, - [SMALL_STATE(5790)] = 211927, - [SMALL_STATE(5791)] = 211943, - [SMALL_STATE(5792)] = 211959, - [SMALL_STATE(5793)] = 211973, - [SMALL_STATE(5794)] = 211989, - [SMALL_STATE(5795)] = 212003, - [SMALL_STATE(5796)] = 212019, - [SMALL_STATE(5797)] = 212035, - [SMALL_STATE(5798)] = 212051, - [SMALL_STATE(5799)] = 212067, - [SMALL_STATE(5800)] = 212083, - [SMALL_STATE(5801)] = 212099, - [SMALL_STATE(5802)] = 212115, - [SMALL_STATE(5803)] = 212131, - [SMALL_STATE(5804)] = 212147, - [SMALL_STATE(5805)] = 212163, - [SMALL_STATE(5806)] = 212179, - [SMALL_STATE(5807)] = 212195, - [SMALL_STATE(5808)] = 212211, - [SMALL_STATE(5809)] = 212227, - [SMALL_STATE(5810)] = 212243, - [SMALL_STATE(5811)] = 212259, - [SMALL_STATE(5812)] = 212275, - [SMALL_STATE(5813)] = 212291, - [SMALL_STATE(5814)] = 212305, - [SMALL_STATE(5815)] = 212318, - [SMALL_STATE(5816)] = 212331, - [SMALL_STATE(5817)] = 212344, - [SMALL_STATE(5818)] = 212357, - [SMALL_STATE(5819)] = 212370, - [SMALL_STATE(5820)] = 212383, - [SMALL_STATE(5821)] = 212396, - [SMALL_STATE(5822)] = 212409, - [SMALL_STATE(5823)] = 212422, - [SMALL_STATE(5824)] = 212435, - [SMALL_STATE(5825)] = 212446, - [SMALL_STATE(5826)] = 212459, - [SMALL_STATE(5827)] = 212472, - [SMALL_STATE(5828)] = 212485, - [SMALL_STATE(5829)] = 212498, - [SMALL_STATE(5830)] = 212511, - [SMALL_STATE(5831)] = 212524, - [SMALL_STATE(5832)] = 212537, - [SMALL_STATE(5833)] = 212548, - [SMALL_STATE(5834)] = 212561, - [SMALL_STATE(5835)] = 212572, - [SMALL_STATE(5836)] = 212585, - [SMALL_STATE(5837)] = 212598, - [SMALL_STATE(5838)] = 212611, - [SMALL_STATE(5839)] = 212624, - [SMALL_STATE(5840)] = 212637, - [SMALL_STATE(5841)] = 212650, - [SMALL_STATE(5842)] = 212663, - [SMALL_STATE(5843)] = 212676, - [SMALL_STATE(5844)] = 212687, - [SMALL_STATE(5845)] = 212700, - [SMALL_STATE(5846)] = 212713, - [SMALL_STATE(5847)] = 212726, - [SMALL_STATE(5848)] = 212737, - [SMALL_STATE(5849)] = 212750, - [SMALL_STATE(5850)] = 212763, - [SMALL_STATE(5851)] = 212776, - [SMALL_STATE(5852)] = 212789, - [SMALL_STATE(5853)] = 212802, - [SMALL_STATE(5854)] = 212815, - [SMALL_STATE(5855)] = 212828, - [SMALL_STATE(5856)] = 212841, - [SMALL_STATE(5857)] = 212854, - [SMALL_STATE(5858)] = 212867, - [SMALL_STATE(5859)] = 212880, - [SMALL_STATE(5860)] = 212893, - [SMALL_STATE(5861)] = 212906, - [SMALL_STATE(5862)] = 212919, - [SMALL_STATE(5863)] = 212932, - [SMALL_STATE(5864)] = 212945, - [SMALL_STATE(5865)] = 212958, - [SMALL_STATE(5866)] = 212971, - [SMALL_STATE(5867)] = 212984, - [SMALL_STATE(5868)] = 212997, - [SMALL_STATE(5869)] = 213010, - [SMALL_STATE(5870)] = 213019, - [SMALL_STATE(5871)] = 213030, - [SMALL_STATE(5872)] = 213041, - [SMALL_STATE(5873)] = 213054, - [SMALL_STATE(5874)] = 213067, - [SMALL_STATE(5875)] = 213080, - [SMALL_STATE(5876)] = 213093, - [SMALL_STATE(5877)] = 213106, - [SMALL_STATE(5878)] = 213117, - [SMALL_STATE(5879)] = 213130, - [SMALL_STATE(5880)] = 213143, - [SMALL_STATE(5881)] = 213156, - [SMALL_STATE(5882)] = 213167, - [SMALL_STATE(5883)] = 213178, - [SMALL_STATE(5884)] = 213187, - [SMALL_STATE(5885)] = 213200, - [SMALL_STATE(5886)] = 213213, - [SMALL_STATE(5887)] = 213226, - [SMALL_STATE(5888)] = 213239, - [SMALL_STATE(5889)] = 213252, - [SMALL_STATE(5890)] = 213265, - [SMALL_STATE(5891)] = 213278, - [SMALL_STATE(5892)] = 213287, - [SMALL_STATE(5893)] = 213300, - [SMALL_STATE(5894)] = 213313, - [SMALL_STATE(5895)] = 213326, - [SMALL_STATE(5896)] = 213339, - [SMALL_STATE(5897)] = 213350, - [SMALL_STATE(5898)] = 213363, - [SMALL_STATE(5899)] = 213376, - [SMALL_STATE(5900)] = 213389, - [SMALL_STATE(5901)] = 213402, - [SMALL_STATE(5902)] = 213415, - [SMALL_STATE(5903)] = 213428, - [SMALL_STATE(5904)] = 213439, - [SMALL_STATE(5905)] = 213452, - [SMALL_STATE(5906)] = 213465, - [SMALL_STATE(5907)] = 213478, - [SMALL_STATE(5908)] = 213491, - [SMALL_STATE(5909)] = 213504, - [SMALL_STATE(5910)] = 213517, - [SMALL_STATE(5911)] = 213530, - [SMALL_STATE(5912)] = 213543, - [SMALL_STATE(5913)] = 213556, - [SMALL_STATE(5914)] = 213569, - [SMALL_STATE(5915)] = 213582, - [SMALL_STATE(5916)] = 213595, - [SMALL_STATE(5917)] = 213608, - [SMALL_STATE(5918)] = 213621, - [SMALL_STATE(5919)] = 213634, - [SMALL_STATE(5920)] = 213647, - [SMALL_STATE(5921)] = 213660, - [SMALL_STATE(5922)] = 213673, - [SMALL_STATE(5923)] = 213686, - [SMALL_STATE(5924)] = 213697, - [SMALL_STATE(5925)] = 213710, - [SMALL_STATE(5926)] = 213723, - [SMALL_STATE(5927)] = 213734, - [SMALL_STATE(5928)] = 213747, - [SMALL_STATE(5929)] = 213760, - [SMALL_STATE(5930)] = 213773, - [SMALL_STATE(5931)] = 213786, - [SMALL_STATE(5932)] = 213799, - [SMALL_STATE(5933)] = 213812, - [SMALL_STATE(5934)] = 213825, - [SMALL_STATE(5935)] = 213838, - [SMALL_STATE(5936)] = 213851, - [SMALL_STATE(5937)] = 213864, - [SMALL_STATE(5938)] = 213877, - [SMALL_STATE(5939)] = 213890, - [SMALL_STATE(5940)] = 213903, - [SMALL_STATE(5941)] = 213916, - [SMALL_STATE(5942)] = 213929, - [SMALL_STATE(5943)] = 213938, - [SMALL_STATE(5944)] = 213951, - [SMALL_STATE(5945)] = 213962, - [SMALL_STATE(5946)] = 213973, - [SMALL_STATE(5947)] = 213986, - [SMALL_STATE(5948)] = 213999, - [SMALL_STATE(5949)] = 214012, - [SMALL_STATE(5950)] = 214025, - [SMALL_STATE(5951)] = 214038, - [SMALL_STATE(5952)] = 214051, - [SMALL_STATE(5953)] = 214064, - [SMALL_STATE(5954)] = 214077, - [SMALL_STATE(5955)] = 214090, - [SMALL_STATE(5956)] = 214103, - [SMALL_STATE(5957)] = 214116, - [SMALL_STATE(5958)] = 214129, - [SMALL_STATE(5959)] = 214142, - [SMALL_STATE(5960)] = 214155, - [SMALL_STATE(5961)] = 214168, - [SMALL_STATE(5962)] = 214181, - [SMALL_STATE(5963)] = 214194, - [SMALL_STATE(5964)] = 214207, - [SMALL_STATE(5965)] = 214220, - [SMALL_STATE(5966)] = 214233, - [SMALL_STATE(5967)] = 214246, - [SMALL_STATE(5968)] = 214259, - [SMALL_STATE(5969)] = 214272, - [SMALL_STATE(5970)] = 214283, - [SMALL_STATE(5971)] = 214296, - [SMALL_STATE(5972)] = 214307, - [SMALL_STATE(5973)] = 214318, - [SMALL_STATE(5974)] = 214327, - [SMALL_STATE(5975)] = 214336, - [SMALL_STATE(5976)] = 214349, - [SMALL_STATE(5977)] = 214362, - [SMALL_STATE(5978)] = 214375, - [SMALL_STATE(5979)] = 214388, - [SMALL_STATE(5980)] = 214401, - [SMALL_STATE(5981)] = 214414, - [SMALL_STATE(5982)] = 214427, - [SMALL_STATE(5983)] = 214440, - [SMALL_STATE(5984)] = 214453, - [SMALL_STATE(5985)] = 214466, - [SMALL_STATE(5986)] = 214479, - [SMALL_STATE(5987)] = 214492, - [SMALL_STATE(5988)] = 214505, - [SMALL_STATE(5989)] = 214518, - [SMALL_STATE(5990)] = 214531, - [SMALL_STATE(5991)] = 214544, - [SMALL_STATE(5992)] = 214557, - [SMALL_STATE(5993)] = 214570, - [SMALL_STATE(5994)] = 214583, - [SMALL_STATE(5995)] = 214596, - [SMALL_STATE(5996)] = 214609, - [SMALL_STATE(5997)] = 214622, - [SMALL_STATE(5998)] = 214635, - [SMALL_STATE(5999)] = 214648, - [SMALL_STATE(6000)] = 214661, - [SMALL_STATE(6001)] = 214672, - [SMALL_STATE(6002)] = 214685, - [SMALL_STATE(6003)] = 214696, - [SMALL_STATE(6004)] = 214709, - [SMALL_STATE(6005)] = 214722, - [SMALL_STATE(6006)] = 214735, - [SMALL_STATE(6007)] = 214748, - [SMALL_STATE(6008)] = 214761, - [SMALL_STATE(6009)] = 214774, - [SMALL_STATE(6010)] = 214787, - [SMALL_STATE(6011)] = 214800, - [SMALL_STATE(6012)] = 214813, - [SMALL_STATE(6013)] = 214826, - [SMALL_STATE(6014)] = 214839, - [SMALL_STATE(6015)] = 214852, - [SMALL_STATE(6016)] = 214863, - [SMALL_STATE(6017)] = 214876, - [SMALL_STATE(6018)] = 214889, - [SMALL_STATE(6019)] = 214902, - [SMALL_STATE(6020)] = 214915, - [SMALL_STATE(6021)] = 214928, - [SMALL_STATE(6022)] = 214941, - [SMALL_STATE(6023)] = 214954, - [SMALL_STATE(6024)] = 214967, - [SMALL_STATE(6025)] = 214980, - [SMALL_STATE(6026)] = 214993, - [SMALL_STATE(6027)] = 215004, - [SMALL_STATE(6028)] = 215017, - [SMALL_STATE(6029)] = 215030, - [SMALL_STATE(6030)] = 215043, - [SMALL_STATE(6031)] = 215056, - [SMALL_STATE(6032)] = 215069, - [SMALL_STATE(6033)] = 215082, - [SMALL_STATE(6034)] = 215095, - [SMALL_STATE(6035)] = 215106, - [SMALL_STATE(6036)] = 215119, - [SMALL_STATE(6037)] = 215132, - [SMALL_STATE(6038)] = 215145, - [SMALL_STATE(6039)] = 215158, - [SMALL_STATE(6040)] = 215171, - [SMALL_STATE(6041)] = 215184, - [SMALL_STATE(6042)] = 215197, - [SMALL_STATE(6043)] = 215210, - [SMALL_STATE(6044)] = 215223, - [SMALL_STATE(6045)] = 215236, - [SMALL_STATE(6046)] = 215249, - [SMALL_STATE(6047)] = 215262, - [SMALL_STATE(6048)] = 215275, - [SMALL_STATE(6049)] = 215288, - [SMALL_STATE(6050)] = 215301, - [SMALL_STATE(6051)] = 215314, - [SMALL_STATE(6052)] = 215327, - [SMALL_STATE(6053)] = 215340, - [SMALL_STATE(6054)] = 215353, - [SMALL_STATE(6055)] = 215366, - [SMALL_STATE(6056)] = 215379, - [SMALL_STATE(6057)] = 215392, - [SMALL_STATE(6058)] = 215405, - [SMALL_STATE(6059)] = 215418, - [SMALL_STATE(6060)] = 215431, - [SMALL_STATE(6061)] = 215442, - [SMALL_STATE(6062)] = 215455, - [SMALL_STATE(6063)] = 215466, - [SMALL_STATE(6064)] = 215479, - [SMALL_STATE(6065)] = 215492, - [SMALL_STATE(6066)] = 215505, - [SMALL_STATE(6067)] = 215518, - [SMALL_STATE(6068)] = 215531, - [SMALL_STATE(6069)] = 215544, - [SMALL_STATE(6070)] = 215555, - [SMALL_STATE(6071)] = 215568, - [SMALL_STATE(6072)] = 215581, - [SMALL_STATE(6073)] = 215594, - [SMALL_STATE(6074)] = 215607, - [SMALL_STATE(6075)] = 215620, - [SMALL_STATE(6076)] = 215633, - [SMALL_STATE(6077)] = 215646, - [SMALL_STATE(6078)] = 215657, - [SMALL_STATE(6079)] = 215668, - [SMALL_STATE(6080)] = 215681, - [SMALL_STATE(6081)] = 215694, - [SMALL_STATE(6082)] = 215707, - [SMALL_STATE(6083)] = 215720, - [SMALL_STATE(6084)] = 215733, - [SMALL_STATE(6085)] = 215746, - [SMALL_STATE(6086)] = 215759, - [SMALL_STATE(6087)] = 215772, - [SMALL_STATE(6088)] = 215785, - [SMALL_STATE(6089)] = 215798, - [SMALL_STATE(6090)] = 215811, - [SMALL_STATE(6091)] = 215824, - [SMALL_STATE(6092)] = 215835, - [SMALL_STATE(6093)] = 215848, - [SMALL_STATE(6094)] = 215861, - [SMALL_STATE(6095)] = 215874, - [SMALL_STATE(6096)] = 215887, - [SMALL_STATE(6097)] = 215900, - [SMALL_STATE(6098)] = 215911, - [SMALL_STATE(6099)] = 215924, - [SMALL_STATE(6100)] = 215937, - [SMALL_STATE(6101)] = 215950, - [SMALL_STATE(6102)] = 215963, - [SMALL_STATE(6103)] = 215976, - [SMALL_STATE(6104)] = 215989, - [SMALL_STATE(6105)] = 216002, - [SMALL_STATE(6106)] = 216013, - [SMALL_STATE(6107)] = 216024, - [SMALL_STATE(6108)] = 216037, - [SMALL_STATE(6109)] = 216050, - [SMALL_STATE(6110)] = 216063, - [SMALL_STATE(6111)] = 216076, - [SMALL_STATE(6112)] = 216089, - [SMALL_STATE(6113)] = 216102, - [SMALL_STATE(6114)] = 216115, - [SMALL_STATE(6115)] = 216125, - [SMALL_STATE(6116)] = 216135, - [SMALL_STATE(6117)] = 216145, - [SMALL_STATE(6118)] = 216155, - [SMALL_STATE(6119)] = 216165, - [SMALL_STATE(6120)] = 216175, - [SMALL_STATE(6121)] = 216185, - [SMALL_STATE(6122)] = 216195, - [SMALL_STATE(6123)] = 216205, - [SMALL_STATE(6124)] = 216215, - [SMALL_STATE(6125)] = 216225, - [SMALL_STATE(6126)] = 216235, - [SMALL_STATE(6127)] = 216245, - [SMALL_STATE(6128)] = 216255, - [SMALL_STATE(6129)] = 216265, - [SMALL_STATE(6130)] = 216275, - [SMALL_STATE(6131)] = 216285, - [SMALL_STATE(6132)] = 216295, - [SMALL_STATE(6133)] = 216305, - [SMALL_STATE(6134)] = 216315, - [SMALL_STATE(6135)] = 216325, - [SMALL_STATE(6136)] = 216335, - [SMALL_STATE(6137)] = 216345, - [SMALL_STATE(6138)] = 216355, - [SMALL_STATE(6139)] = 216365, - [SMALL_STATE(6140)] = 216375, - [SMALL_STATE(6141)] = 216385, - [SMALL_STATE(6142)] = 216395, - [SMALL_STATE(6143)] = 216405, - [SMALL_STATE(6144)] = 216415, - [SMALL_STATE(6145)] = 216425, - [SMALL_STATE(6146)] = 216435, - [SMALL_STATE(6147)] = 216445, - [SMALL_STATE(6148)] = 216455, - [SMALL_STATE(6149)] = 216463, - [SMALL_STATE(6150)] = 216473, - [SMALL_STATE(6151)] = 216483, - [SMALL_STATE(6152)] = 216493, - [SMALL_STATE(6153)] = 216503, - [SMALL_STATE(6154)] = 216513, - [SMALL_STATE(6155)] = 216523, - [SMALL_STATE(6156)] = 216533, - [SMALL_STATE(6157)] = 216543, - [SMALL_STATE(6158)] = 216553, - [SMALL_STATE(6159)] = 216563, - [SMALL_STATE(6160)] = 216573, - [SMALL_STATE(6161)] = 216583, - [SMALL_STATE(6162)] = 216593, - [SMALL_STATE(6163)] = 216603, - [SMALL_STATE(6164)] = 216613, - [SMALL_STATE(6165)] = 216623, - [SMALL_STATE(6166)] = 216633, - [SMALL_STATE(6167)] = 216643, - [SMALL_STATE(6168)] = 216653, - [SMALL_STATE(6169)] = 216663, - [SMALL_STATE(6170)] = 216673, - [SMALL_STATE(6171)] = 216683, - [SMALL_STATE(6172)] = 216693, - [SMALL_STATE(6173)] = 216703, - [SMALL_STATE(6174)] = 216713, - [SMALL_STATE(6175)] = 216723, - [SMALL_STATE(6176)] = 216733, - [SMALL_STATE(6177)] = 216743, - [SMALL_STATE(6178)] = 216753, - [SMALL_STATE(6179)] = 216763, - [SMALL_STATE(6180)] = 216773, - [SMALL_STATE(6181)] = 216783, - [SMALL_STATE(6182)] = 216793, - [SMALL_STATE(6183)] = 216803, - [SMALL_STATE(6184)] = 216813, - [SMALL_STATE(6185)] = 216823, - [SMALL_STATE(6186)] = 216833, - [SMALL_STATE(6187)] = 216843, - [SMALL_STATE(6188)] = 216853, - [SMALL_STATE(6189)] = 216863, - [SMALL_STATE(6190)] = 216873, - [SMALL_STATE(6191)] = 216883, - [SMALL_STATE(6192)] = 216893, - [SMALL_STATE(6193)] = 216903, - [SMALL_STATE(6194)] = 216913, - [SMALL_STATE(6195)] = 216923, - [SMALL_STATE(6196)] = 216933, - [SMALL_STATE(6197)] = 216943, - [SMALL_STATE(6198)] = 216953, - [SMALL_STATE(6199)] = 216963, - [SMALL_STATE(6200)] = 216973, - [SMALL_STATE(6201)] = 216983, - [SMALL_STATE(6202)] = 216993, - [SMALL_STATE(6203)] = 217003, - [SMALL_STATE(6204)] = 217013, - [SMALL_STATE(6205)] = 217023, - [SMALL_STATE(6206)] = 217033, - [SMALL_STATE(6207)] = 217043, - [SMALL_STATE(6208)] = 217053, - [SMALL_STATE(6209)] = 217063, - [SMALL_STATE(6210)] = 217073, - [SMALL_STATE(6211)] = 217083, - [SMALL_STATE(6212)] = 217093, - [SMALL_STATE(6213)] = 217103, - [SMALL_STATE(6214)] = 217113, - [SMALL_STATE(6215)] = 217123, - [SMALL_STATE(6216)] = 217133, - [SMALL_STATE(6217)] = 217143, - [SMALL_STATE(6218)] = 217153, - [SMALL_STATE(6219)] = 217163, - [SMALL_STATE(6220)] = 217173, - [SMALL_STATE(6221)] = 217183, - [SMALL_STATE(6222)] = 217193, - [SMALL_STATE(6223)] = 217203, - [SMALL_STATE(6224)] = 217213, - [SMALL_STATE(6225)] = 217223, - [SMALL_STATE(6226)] = 217233, - [SMALL_STATE(6227)] = 217243, - [SMALL_STATE(6228)] = 217253, - [SMALL_STATE(6229)] = 217263, - [SMALL_STATE(6230)] = 217273, - [SMALL_STATE(6231)] = 217283, - [SMALL_STATE(6232)] = 217293, - [SMALL_STATE(6233)] = 217303, - [SMALL_STATE(6234)] = 217313, - [SMALL_STATE(6235)] = 217323, - [SMALL_STATE(6236)] = 217333, - [SMALL_STATE(6237)] = 217343, - [SMALL_STATE(6238)] = 217353, - [SMALL_STATE(6239)] = 217363, - [SMALL_STATE(6240)] = 217373, - [SMALL_STATE(6241)] = 217383, - [SMALL_STATE(6242)] = 217393, - [SMALL_STATE(6243)] = 217403, - [SMALL_STATE(6244)] = 217413, - [SMALL_STATE(6245)] = 217423, - [SMALL_STATE(6246)] = 217433, - [SMALL_STATE(6247)] = 217443, - [SMALL_STATE(6248)] = 217453, - [SMALL_STATE(6249)] = 217463, - [SMALL_STATE(6250)] = 217473, - [SMALL_STATE(6251)] = 217483, - [SMALL_STATE(6252)] = 217493, - [SMALL_STATE(6253)] = 217503, - [SMALL_STATE(6254)] = 217513, - [SMALL_STATE(6255)] = 217523, - [SMALL_STATE(6256)] = 217533, - [SMALL_STATE(6257)] = 217543, - [SMALL_STATE(6258)] = 217553, - [SMALL_STATE(6259)] = 217563, - [SMALL_STATE(6260)] = 217573, - [SMALL_STATE(6261)] = 217581, - [SMALL_STATE(6262)] = 217589, - [SMALL_STATE(6263)] = 217599, - [SMALL_STATE(6264)] = 217609, - [SMALL_STATE(6265)] = 217619, - [SMALL_STATE(6266)] = 217629, - [SMALL_STATE(6267)] = 217639, - [SMALL_STATE(6268)] = 217649, - [SMALL_STATE(6269)] = 217659, - [SMALL_STATE(6270)] = 217669, - [SMALL_STATE(6271)] = 217679, - [SMALL_STATE(6272)] = 217689, - [SMALL_STATE(6273)] = 217699, - [SMALL_STATE(6274)] = 217709, - [SMALL_STATE(6275)] = 217719, - [SMALL_STATE(6276)] = 217729, - [SMALL_STATE(6277)] = 217739, - [SMALL_STATE(6278)] = 217749, - [SMALL_STATE(6279)] = 217759, - [SMALL_STATE(6280)] = 217769, - [SMALL_STATE(6281)] = 217779, - [SMALL_STATE(6282)] = 217789, - [SMALL_STATE(6283)] = 217799, - [SMALL_STATE(6284)] = 217809, - [SMALL_STATE(6285)] = 217819, - [SMALL_STATE(6286)] = 217829, - [SMALL_STATE(6287)] = 217839, - [SMALL_STATE(6288)] = 217849, - [SMALL_STATE(6289)] = 217859, - [SMALL_STATE(6290)] = 217869, - [SMALL_STATE(6291)] = 217877, - [SMALL_STATE(6292)] = 217887, - [SMALL_STATE(6293)] = 217897, - [SMALL_STATE(6294)] = 217907, - [SMALL_STATE(6295)] = 217917, - [SMALL_STATE(6296)] = 217927, - [SMALL_STATE(6297)] = 217937, - [SMALL_STATE(6298)] = 217947, - [SMALL_STATE(6299)] = 217957, - [SMALL_STATE(6300)] = 217967, - [SMALL_STATE(6301)] = 217977, - [SMALL_STATE(6302)] = 217987, - [SMALL_STATE(6303)] = 217997, - [SMALL_STATE(6304)] = 218007, - [SMALL_STATE(6305)] = 218017, - [SMALL_STATE(6306)] = 218027, - [SMALL_STATE(6307)] = 218037, - [SMALL_STATE(6308)] = 218047, - [SMALL_STATE(6309)] = 218057, - [SMALL_STATE(6310)] = 218067, - [SMALL_STATE(6311)] = 218077, - [SMALL_STATE(6312)] = 218087, - [SMALL_STATE(6313)] = 218097, - [SMALL_STATE(6314)] = 218105, - [SMALL_STATE(6315)] = 218113, - [SMALL_STATE(6316)] = 218123, - [SMALL_STATE(6317)] = 218133, - [SMALL_STATE(6318)] = 218143, - [SMALL_STATE(6319)] = 218153, - [SMALL_STATE(6320)] = 218163, - [SMALL_STATE(6321)] = 218173, - [SMALL_STATE(6322)] = 218181, - [SMALL_STATE(6323)] = 218191, - [SMALL_STATE(6324)] = 218201, - [SMALL_STATE(6325)] = 218211, - [SMALL_STATE(6326)] = 218221, - [SMALL_STATE(6327)] = 218231, - [SMALL_STATE(6328)] = 218241, - [SMALL_STATE(6329)] = 218251, - [SMALL_STATE(6330)] = 218261, - [SMALL_STATE(6331)] = 218271, - [SMALL_STATE(6332)] = 218281, - [SMALL_STATE(6333)] = 218291, - [SMALL_STATE(6334)] = 218301, - [SMALL_STATE(6335)] = 218311, - [SMALL_STATE(6336)] = 218321, - [SMALL_STATE(6337)] = 218331, - [SMALL_STATE(6338)] = 218341, - [SMALL_STATE(6339)] = 218351, - [SMALL_STATE(6340)] = 218361, - [SMALL_STATE(6341)] = 218371, - [SMALL_STATE(6342)] = 218381, - [SMALL_STATE(6343)] = 218391, - [SMALL_STATE(6344)] = 218401, - [SMALL_STATE(6345)] = 218411, - [SMALL_STATE(6346)] = 218421, - [SMALL_STATE(6347)] = 218431, - [SMALL_STATE(6348)] = 218441, - [SMALL_STATE(6349)] = 218451, - [SMALL_STATE(6350)] = 218461, - [SMALL_STATE(6351)] = 218471, - [SMALL_STATE(6352)] = 218481, - [SMALL_STATE(6353)] = 218491, - [SMALL_STATE(6354)] = 218501, - [SMALL_STATE(6355)] = 218511, - [SMALL_STATE(6356)] = 218521, - [SMALL_STATE(6357)] = 218531, - [SMALL_STATE(6358)] = 218541, - [SMALL_STATE(6359)] = 218551, - [SMALL_STATE(6360)] = 218561, - [SMALL_STATE(6361)] = 218569, - [SMALL_STATE(6362)] = 218579, - [SMALL_STATE(6363)] = 218589, - [SMALL_STATE(6364)] = 218597, - [SMALL_STATE(6365)] = 218607, - [SMALL_STATE(6366)] = 218617, - [SMALL_STATE(6367)] = 218627, - [SMALL_STATE(6368)] = 218637, - [SMALL_STATE(6369)] = 218647, - [SMALL_STATE(6370)] = 218657, - [SMALL_STATE(6371)] = 218667, - [SMALL_STATE(6372)] = 218677, - [SMALL_STATE(6373)] = 218687, - [SMALL_STATE(6374)] = 218697, - [SMALL_STATE(6375)] = 218707, - [SMALL_STATE(6376)] = 218717, - [SMALL_STATE(6377)] = 218727, - [SMALL_STATE(6378)] = 218737, - [SMALL_STATE(6379)] = 218747, - [SMALL_STATE(6380)] = 218757, - [SMALL_STATE(6381)] = 218767, - [SMALL_STATE(6382)] = 218777, - [SMALL_STATE(6383)] = 218787, - [SMALL_STATE(6384)] = 218797, - [SMALL_STATE(6385)] = 218807, - [SMALL_STATE(6386)] = 218817, - [SMALL_STATE(6387)] = 218827, - [SMALL_STATE(6388)] = 218837, - [SMALL_STATE(6389)] = 218847, - [SMALL_STATE(6390)] = 218857, - [SMALL_STATE(6391)] = 218867, - [SMALL_STATE(6392)] = 218877, - [SMALL_STATE(6393)] = 218887, - [SMALL_STATE(6394)] = 218897, - [SMALL_STATE(6395)] = 218905, - [SMALL_STATE(6396)] = 218913, - [SMALL_STATE(6397)] = 218923, - [SMALL_STATE(6398)] = 218933, - [SMALL_STATE(6399)] = 218943, - [SMALL_STATE(6400)] = 218953, - [SMALL_STATE(6401)] = 218961, - [SMALL_STATE(6402)] = 218971, - [SMALL_STATE(6403)] = 218979, - [SMALL_STATE(6404)] = 218987, - [SMALL_STATE(6405)] = 218997, - [SMALL_STATE(6406)] = 219007, - [SMALL_STATE(6407)] = 219017, - [SMALL_STATE(6408)] = 219027, - [SMALL_STATE(6409)] = 219037, - [SMALL_STATE(6410)] = 219047, - [SMALL_STATE(6411)] = 219057, - [SMALL_STATE(6412)] = 219067, - [SMALL_STATE(6413)] = 219075, - [SMALL_STATE(6414)] = 219083, - [SMALL_STATE(6415)] = 219091, - [SMALL_STATE(6416)] = 219101, - [SMALL_STATE(6417)] = 219111, - [SMALL_STATE(6418)] = 219121, - [SMALL_STATE(6419)] = 219131, - [SMALL_STATE(6420)] = 219141, - [SMALL_STATE(6421)] = 219151, - [SMALL_STATE(6422)] = 219161, - [SMALL_STATE(6423)] = 219169, - [SMALL_STATE(6424)] = 219179, - [SMALL_STATE(6425)] = 219189, - [SMALL_STATE(6426)] = 219199, - [SMALL_STATE(6427)] = 219207, - [SMALL_STATE(6428)] = 219217, - [SMALL_STATE(6429)] = 219227, - [SMALL_STATE(6430)] = 219235, - [SMALL_STATE(6431)] = 219245, - [SMALL_STATE(6432)] = 219255, - [SMALL_STATE(6433)] = 219263, - [SMALL_STATE(6434)] = 219273, - [SMALL_STATE(6435)] = 219283, - [SMALL_STATE(6436)] = 219291, - [SMALL_STATE(6437)] = 219301, - [SMALL_STATE(6438)] = 219311, - [SMALL_STATE(6439)] = 219319, - [SMALL_STATE(6440)] = 219329, - [SMALL_STATE(6441)] = 219339, - [SMALL_STATE(6442)] = 219349, - [SMALL_STATE(6443)] = 219359, - [SMALL_STATE(6444)] = 219369, - [SMALL_STATE(6445)] = 219379, - [SMALL_STATE(6446)] = 219389, - [SMALL_STATE(6447)] = 219399, - [SMALL_STATE(6448)] = 219409, - [SMALL_STATE(6449)] = 219419, - [SMALL_STATE(6450)] = 219429, - [SMALL_STATE(6451)] = 219437, - [SMALL_STATE(6452)] = 219445, - [SMALL_STATE(6453)] = 219455, - [SMALL_STATE(6454)] = 219463, - [SMALL_STATE(6455)] = 219473, - [SMALL_STATE(6456)] = 219483, - [SMALL_STATE(6457)] = 219491, - [SMALL_STATE(6458)] = 219501, - [SMALL_STATE(6459)] = 219511, - [SMALL_STATE(6460)] = 219521, - [SMALL_STATE(6461)] = 219531, - [SMALL_STATE(6462)] = 219539, - [SMALL_STATE(6463)] = 219549, - [SMALL_STATE(6464)] = 219559, - [SMALL_STATE(6465)] = 219569, - [SMALL_STATE(6466)] = 219579, - [SMALL_STATE(6467)] = 219589, - [SMALL_STATE(6468)] = 219599, - [SMALL_STATE(6469)] = 219607, - [SMALL_STATE(6470)] = 219615, - [SMALL_STATE(6471)] = 219625, - [SMALL_STATE(6472)] = 219635, - [SMALL_STATE(6473)] = 219645, - [SMALL_STATE(6474)] = 219655, - [SMALL_STATE(6475)] = 219665, - [SMALL_STATE(6476)] = 219675, - [SMALL_STATE(6477)] = 219685, - [SMALL_STATE(6478)] = 219693, - [SMALL_STATE(6479)] = 219701, - [SMALL_STATE(6480)] = 219711, - [SMALL_STATE(6481)] = 219721, - [SMALL_STATE(6482)] = 219731, - [SMALL_STATE(6483)] = 219741, - [SMALL_STATE(6484)] = 219751, - [SMALL_STATE(6485)] = 219761, - [SMALL_STATE(6486)] = 219771, - [SMALL_STATE(6487)] = 219781, - [SMALL_STATE(6488)] = 219791, - [SMALL_STATE(6489)] = 219801, - [SMALL_STATE(6490)] = 219811, - [SMALL_STATE(6491)] = 219821, - [SMALL_STATE(6492)] = 219831, - [SMALL_STATE(6493)] = 219841, - [SMALL_STATE(6494)] = 219851, - [SMALL_STATE(6495)] = 219861, - [SMALL_STATE(6496)] = 219871, - [SMALL_STATE(6497)] = 219881, - [SMALL_STATE(6498)] = 219891, - [SMALL_STATE(6499)] = 219901, - [SMALL_STATE(6500)] = 219911, - [SMALL_STATE(6501)] = 219921, - [SMALL_STATE(6502)] = 219931, - [SMALL_STATE(6503)] = 219941, - [SMALL_STATE(6504)] = 219951, - [SMALL_STATE(6505)] = 219961, - [SMALL_STATE(6506)] = 219971, - [SMALL_STATE(6507)] = 219981, - [SMALL_STATE(6508)] = 219991, - [SMALL_STATE(6509)] = 220001, - [SMALL_STATE(6510)] = 220011, - [SMALL_STATE(6511)] = 220021, - [SMALL_STATE(6512)] = 220031, - [SMALL_STATE(6513)] = 220039, - [SMALL_STATE(6514)] = 220049, - [SMALL_STATE(6515)] = 220059, - [SMALL_STATE(6516)] = 220069, - [SMALL_STATE(6517)] = 220079, - [SMALL_STATE(6518)] = 220089, - [SMALL_STATE(6519)] = 220099, - [SMALL_STATE(6520)] = 220107, - [SMALL_STATE(6521)] = 220117, - [SMALL_STATE(6522)] = 220125, - [SMALL_STATE(6523)] = 220135, - [SMALL_STATE(6524)] = 220145, - [SMALL_STATE(6525)] = 220155, - [SMALL_STATE(6526)] = 220165, - [SMALL_STATE(6527)] = 220175, - [SMALL_STATE(6528)] = 220185, - [SMALL_STATE(6529)] = 220193, - [SMALL_STATE(6530)] = 220203, - [SMALL_STATE(6531)] = 220213, - [SMALL_STATE(6532)] = 220223, - [SMALL_STATE(6533)] = 220233, - [SMALL_STATE(6534)] = 220243, - [SMALL_STATE(6535)] = 220253, - [SMALL_STATE(6536)] = 220263, - [SMALL_STATE(6537)] = 220273, - [SMALL_STATE(6538)] = 220283, - [SMALL_STATE(6539)] = 220293, - [SMALL_STATE(6540)] = 220303, - [SMALL_STATE(6541)] = 220313, - [SMALL_STATE(6542)] = 220323, - [SMALL_STATE(6543)] = 220333, - [SMALL_STATE(6544)] = 220343, - [SMALL_STATE(6545)] = 220353, - [SMALL_STATE(6546)] = 220361, - [SMALL_STATE(6547)] = 220371, - [SMALL_STATE(6548)] = 220379, - [SMALL_STATE(6549)] = 220387, - [SMALL_STATE(6550)] = 220397, - [SMALL_STATE(6551)] = 220407, - [SMALL_STATE(6552)] = 220417, - [SMALL_STATE(6553)] = 220427, - [SMALL_STATE(6554)] = 220437, - [SMALL_STATE(6555)] = 220447, - [SMALL_STATE(6556)] = 220457, - [SMALL_STATE(6557)] = 220467, - [SMALL_STATE(6558)] = 220477, - [SMALL_STATE(6559)] = 220487, - [SMALL_STATE(6560)] = 220497, - [SMALL_STATE(6561)] = 220507, - [SMALL_STATE(6562)] = 220517, - [SMALL_STATE(6563)] = 220527, - [SMALL_STATE(6564)] = 220537, - [SMALL_STATE(6565)] = 220547, - [SMALL_STATE(6566)] = 220557, - [SMALL_STATE(6567)] = 220567, - [SMALL_STATE(6568)] = 220577, - [SMALL_STATE(6569)] = 220587, - [SMALL_STATE(6570)] = 220597, - [SMALL_STATE(6571)] = 220607, - [SMALL_STATE(6572)] = 220617, - [SMALL_STATE(6573)] = 220627, - [SMALL_STATE(6574)] = 220637, - [SMALL_STATE(6575)] = 220647, - [SMALL_STATE(6576)] = 220657, - [SMALL_STATE(6577)] = 220667, - [SMALL_STATE(6578)] = 220677, - [SMALL_STATE(6579)] = 220687, - [SMALL_STATE(6580)] = 220697, - [SMALL_STATE(6581)] = 220707, - [SMALL_STATE(6582)] = 220717, - [SMALL_STATE(6583)] = 220727, - [SMALL_STATE(6584)] = 220737, - [SMALL_STATE(6585)] = 220747, - [SMALL_STATE(6586)] = 220757, - [SMALL_STATE(6587)] = 220767, - [SMALL_STATE(6588)] = 220777, - [SMALL_STATE(6589)] = 220787, - [SMALL_STATE(6590)] = 220797, - [SMALL_STATE(6591)] = 220805, - [SMALL_STATE(6592)] = 220815, - [SMALL_STATE(6593)] = 220825, - [SMALL_STATE(6594)] = 220835, - [SMALL_STATE(6595)] = 220845, - [SMALL_STATE(6596)] = 220855, - [SMALL_STATE(6597)] = 220863, - [SMALL_STATE(6598)] = 220873, - [SMALL_STATE(6599)] = 220883, - [SMALL_STATE(6600)] = 220893, - [SMALL_STATE(6601)] = 220903, - [SMALL_STATE(6602)] = 220913, - [SMALL_STATE(6603)] = 220923, - [SMALL_STATE(6604)] = 220931, - [SMALL_STATE(6605)] = 220941, - [SMALL_STATE(6606)] = 220951, - [SMALL_STATE(6607)] = 220961, - [SMALL_STATE(6608)] = 220971, - [SMALL_STATE(6609)] = 220981, - [SMALL_STATE(6610)] = 220991, - [SMALL_STATE(6611)] = 221001, - [SMALL_STATE(6612)] = 221011, - [SMALL_STATE(6613)] = 221021, - [SMALL_STATE(6614)] = 221029, - [SMALL_STATE(6615)] = 221039, - [SMALL_STATE(6616)] = 221049, - [SMALL_STATE(6617)] = 221059, - [SMALL_STATE(6618)] = 221067, - [SMALL_STATE(6619)] = 221074, - [SMALL_STATE(6620)] = 221081, - [SMALL_STATE(6621)] = 221088, - [SMALL_STATE(6622)] = 221095, - [SMALL_STATE(6623)] = 221102, - [SMALL_STATE(6624)] = 221109, - [SMALL_STATE(6625)] = 221116, - [SMALL_STATE(6626)] = 221123, - [SMALL_STATE(6627)] = 221130, - [SMALL_STATE(6628)] = 221137, - [SMALL_STATE(6629)] = 221144, - [SMALL_STATE(6630)] = 221151, - [SMALL_STATE(6631)] = 221158, - [SMALL_STATE(6632)] = 221165, - [SMALL_STATE(6633)] = 221172, - [SMALL_STATE(6634)] = 221179, - [SMALL_STATE(6635)] = 221186, - [SMALL_STATE(6636)] = 221193, - [SMALL_STATE(6637)] = 221200, - [SMALL_STATE(6638)] = 221207, - [SMALL_STATE(6639)] = 221214, - [SMALL_STATE(6640)] = 221221, - [SMALL_STATE(6641)] = 221228, - [SMALL_STATE(6642)] = 221235, - [SMALL_STATE(6643)] = 221242, - [SMALL_STATE(6644)] = 221249, - [SMALL_STATE(6645)] = 221256, - [SMALL_STATE(6646)] = 221263, - [SMALL_STATE(6647)] = 221270, - [SMALL_STATE(6648)] = 221277, - [SMALL_STATE(6649)] = 221284, - [SMALL_STATE(6650)] = 221291, - [SMALL_STATE(6651)] = 221298, - [SMALL_STATE(6652)] = 221305, - [SMALL_STATE(6653)] = 221312, - [SMALL_STATE(6654)] = 221319, - [SMALL_STATE(6655)] = 221326, - [SMALL_STATE(6656)] = 221333, - [SMALL_STATE(6657)] = 221340, - [SMALL_STATE(6658)] = 221347, - [SMALL_STATE(6659)] = 221354, - [SMALL_STATE(6660)] = 221361, - [SMALL_STATE(6661)] = 221368, - [SMALL_STATE(6662)] = 221375, - [SMALL_STATE(6663)] = 221382, - [SMALL_STATE(6664)] = 221389, - [SMALL_STATE(6665)] = 221396, - [SMALL_STATE(6666)] = 221403, - [SMALL_STATE(6667)] = 221410, - [SMALL_STATE(6668)] = 221417, - [SMALL_STATE(6669)] = 221424, - [SMALL_STATE(6670)] = 221431, - [SMALL_STATE(6671)] = 221438, - [SMALL_STATE(6672)] = 221445, - [SMALL_STATE(6673)] = 221452, - [SMALL_STATE(6674)] = 221459, - [SMALL_STATE(6675)] = 221466, - [SMALL_STATE(6676)] = 221473, - [SMALL_STATE(6677)] = 221480, - [SMALL_STATE(6678)] = 221487, - [SMALL_STATE(6679)] = 221494, - [SMALL_STATE(6680)] = 221501, - [SMALL_STATE(6681)] = 221508, - [SMALL_STATE(6682)] = 221515, - [SMALL_STATE(6683)] = 221522, - [SMALL_STATE(6684)] = 221529, - [SMALL_STATE(6685)] = 221536, - [SMALL_STATE(6686)] = 221543, - [SMALL_STATE(6687)] = 221550, - [SMALL_STATE(6688)] = 221557, - [SMALL_STATE(6689)] = 221564, - [SMALL_STATE(6690)] = 221571, - [SMALL_STATE(6691)] = 221578, - [SMALL_STATE(6692)] = 221585, - [SMALL_STATE(6693)] = 221592, - [SMALL_STATE(6694)] = 221599, - [SMALL_STATE(6695)] = 221606, - [SMALL_STATE(6696)] = 221613, - [SMALL_STATE(6697)] = 221620, - [SMALL_STATE(6698)] = 221627, - [SMALL_STATE(6699)] = 221634, - [SMALL_STATE(6700)] = 221641, - [SMALL_STATE(6701)] = 221648, - [SMALL_STATE(6702)] = 221655, - [SMALL_STATE(6703)] = 221662, - [SMALL_STATE(6704)] = 221669, - [SMALL_STATE(6705)] = 221676, - [SMALL_STATE(6706)] = 221683, - [SMALL_STATE(6707)] = 221690, - [SMALL_STATE(6708)] = 221697, - [SMALL_STATE(6709)] = 221704, - [SMALL_STATE(6710)] = 221711, - [SMALL_STATE(6711)] = 221718, - [SMALL_STATE(6712)] = 221725, - [SMALL_STATE(6713)] = 221732, - [SMALL_STATE(6714)] = 221739, - [SMALL_STATE(6715)] = 221746, - [SMALL_STATE(6716)] = 221753, - [SMALL_STATE(6717)] = 221760, - [SMALL_STATE(6718)] = 221767, - [SMALL_STATE(6719)] = 221774, - [SMALL_STATE(6720)] = 221781, - [SMALL_STATE(6721)] = 221788, - [SMALL_STATE(6722)] = 221795, - [SMALL_STATE(6723)] = 221802, - [SMALL_STATE(6724)] = 221809, - [SMALL_STATE(6725)] = 221816, - [SMALL_STATE(6726)] = 221823, - [SMALL_STATE(6727)] = 221830, - [SMALL_STATE(6728)] = 221837, - [SMALL_STATE(6729)] = 221844, - [SMALL_STATE(6730)] = 221851, - [SMALL_STATE(6731)] = 221858, - [SMALL_STATE(6732)] = 221865, - [SMALL_STATE(6733)] = 221872, - [SMALL_STATE(6734)] = 221879, - [SMALL_STATE(6735)] = 221886, - [SMALL_STATE(6736)] = 221893, - [SMALL_STATE(6737)] = 221900, - [SMALL_STATE(6738)] = 221907, - [SMALL_STATE(6739)] = 221914, - [SMALL_STATE(6740)] = 221921, - [SMALL_STATE(6741)] = 221928, - [SMALL_STATE(6742)] = 221935, - [SMALL_STATE(6743)] = 221942, - [SMALL_STATE(6744)] = 221949, - [SMALL_STATE(6745)] = 221956, - [SMALL_STATE(6746)] = 221963, - [SMALL_STATE(6747)] = 221970, - [SMALL_STATE(6748)] = 221977, - [SMALL_STATE(6749)] = 221984, - [SMALL_STATE(6750)] = 221991, - [SMALL_STATE(6751)] = 221998, - [SMALL_STATE(6752)] = 222005, - [SMALL_STATE(6753)] = 222012, - [SMALL_STATE(6754)] = 222019, - [SMALL_STATE(6755)] = 222026, - [SMALL_STATE(6756)] = 222033, - [SMALL_STATE(6757)] = 222040, - [SMALL_STATE(6758)] = 222047, - [SMALL_STATE(6759)] = 222054, - [SMALL_STATE(6760)] = 222061, - [SMALL_STATE(6761)] = 222068, - [SMALL_STATE(6762)] = 222075, - [SMALL_STATE(6763)] = 222082, - [SMALL_STATE(6764)] = 222089, - [SMALL_STATE(6765)] = 222096, - [SMALL_STATE(6766)] = 222103, - [SMALL_STATE(6767)] = 222110, - [SMALL_STATE(6768)] = 222117, - [SMALL_STATE(6769)] = 222124, - [SMALL_STATE(6770)] = 222131, - [SMALL_STATE(6771)] = 222138, - [SMALL_STATE(6772)] = 222145, - [SMALL_STATE(6773)] = 222152, - [SMALL_STATE(6774)] = 222159, - [SMALL_STATE(6775)] = 222166, - [SMALL_STATE(6776)] = 222173, - [SMALL_STATE(6777)] = 222180, - [SMALL_STATE(6778)] = 222187, - [SMALL_STATE(6779)] = 222194, - [SMALL_STATE(6780)] = 222201, - [SMALL_STATE(6781)] = 222208, - [SMALL_STATE(6782)] = 222215, - [SMALL_STATE(6783)] = 222222, - [SMALL_STATE(6784)] = 222229, - [SMALL_STATE(6785)] = 222236, - [SMALL_STATE(6786)] = 222243, - [SMALL_STATE(6787)] = 222250, - [SMALL_STATE(6788)] = 222257, - [SMALL_STATE(6789)] = 222264, - [SMALL_STATE(6790)] = 222271, - [SMALL_STATE(6791)] = 222278, - [SMALL_STATE(6792)] = 222285, - [SMALL_STATE(6793)] = 222292, - [SMALL_STATE(6794)] = 222299, - [SMALL_STATE(6795)] = 222306, - [SMALL_STATE(6796)] = 222313, - [SMALL_STATE(6797)] = 222320, - [SMALL_STATE(6798)] = 222327, - [SMALL_STATE(6799)] = 222334, - [SMALL_STATE(6800)] = 222341, - [SMALL_STATE(6801)] = 222348, - [SMALL_STATE(6802)] = 222355, - [SMALL_STATE(6803)] = 222362, - [SMALL_STATE(6804)] = 222369, - [SMALL_STATE(6805)] = 222376, - [SMALL_STATE(6806)] = 222383, - [SMALL_STATE(6807)] = 222390, - [SMALL_STATE(6808)] = 222397, - [SMALL_STATE(6809)] = 222404, - [SMALL_STATE(6810)] = 222411, - [SMALL_STATE(6811)] = 222418, - [SMALL_STATE(6812)] = 222425, - [SMALL_STATE(6813)] = 222432, - [SMALL_STATE(6814)] = 222439, - [SMALL_STATE(6815)] = 222446, - [SMALL_STATE(6816)] = 222453, - [SMALL_STATE(6817)] = 222460, - [SMALL_STATE(6818)] = 222467, - [SMALL_STATE(6819)] = 222474, - [SMALL_STATE(6820)] = 222481, - [SMALL_STATE(6821)] = 222488, - [SMALL_STATE(6822)] = 222495, - [SMALL_STATE(6823)] = 222502, - [SMALL_STATE(6824)] = 222509, - [SMALL_STATE(6825)] = 222516, - [SMALL_STATE(6826)] = 222523, - [SMALL_STATE(6827)] = 222530, - [SMALL_STATE(6828)] = 222537, - [SMALL_STATE(6829)] = 222544, - [SMALL_STATE(6830)] = 222551, - [SMALL_STATE(6831)] = 222558, - [SMALL_STATE(6832)] = 222565, - [SMALL_STATE(6833)] = 222572, - [SMALL_STATE(6834)] = 222579, - [SMALL_STATE(6835)] = 222586, - [SMALL_STATE(6836)] = 222593, - [SMALL_STATE(6837)] = 222600, - [SMALL_STATE(6838)] = 222607, - [SMALL_STATE(6839)] = 222614, - [SMALL_STATE(6840)] = 222621, - [SMALL_STATE(6841)] = 222628, - [SMALL_STATE(6842)] = 222635, - [SMALL_STATE(6843)] = 222642, - [SMALL_STATE(6844)] = 222649, - [SMALL_STATE(6845)] = 222656, - [SMALL_STATE(6846)] = 222663, - [SMALL_STATE(6847)] = 222670, - [SMALL_STATE(6848)] = 222677, - [SMALL_STATE(6849)] = 222684, - [SMALL_STATE(6850)] = 222691, - [SMALL_STATE(6851)] = 222698, - [SMALL_STATE(6852)] = 222705, - [SMALL_STATE(6853)] = 222712, - [SMALL_STATE(6854)] = 222719, - [SMALL_STATE(6855)] = 222726, - [SMALL_STATE(6856)] = 222733, - [SMALL_STATE(6857)] = 222740, - [SMALL_STATE(6858)] = 222747, - [SMALL_STATE(6859)] = 222754, - [SMALL_STATE(6860)] = 222761, - [SMALL_STATE(6861)] = 222768, - [SMALL_STATE(6862)] = 222775, - [SMALL_STATE(6863)] = 222782, - [SMALL_STATE(6864)] = 222789, - [SMALL_STATE(6865)] = 222796, - [SMALL_STATE(6866)] = 222803, - [SMALL_STATE(6867)] = 222810, - [SMALL_STATE(6868)] = 222817, - [SMALL_STATE(6869)] = 222824, - [SMALL_STATE(6870)] = 222831, - [SMALL_STATE(6871)] = 222838, - [SMALL_STATE(6872)] = 222845, - [SMALL_STATE(6873)] = 222852, - [SMALL_STATE(6874)] = 222859, - [SMALL_STATE(6875)] = 222866, - [SMALL_STATE(6876)] = 222873, - [SMALL_STATE(6877)] = 222880, - [SMALL_STATE(6878)] = 222887, - [SMALL_STATE(6879)] = 222894, - [SMALL_STATE(6880)] = 222901, - [SMALL_STATE(6881)] = 222908, - [SMALL_STATE(6882)] = 222915, - [SMALL_STATE(6883)] = 222922, - [SMALL_STATE(6884)] = 222929, - [SMALL_STATE(6885)] = 222936, - [SMALL_STATE(6886)] = 222943, - [SMALL_STATE(6887)] = 222950, - [SMALL_STATE(6888)] = 222957, - [SMALL_STATE(6889)] = 222964, - [SMALL_STATE(6890)] = 222971, - [SMALL_STATE(6891)] = 222978, - [SMALL_STATE(6892)] = 222985, - [SMALL_STATE(6893)] = 222992, - [SMALL_STATE(6894)] = 222999, - [SMALL_STATE(6895)] = 223006, - [SMALL_STATE(6896)] = 223013, - [SMALL_STATE(6897)] = 223020, - [SMALL_STATE(6898)] = 223027, - [SMALL_STATE(6899)] = 223034, - [SMALL_STATE(6900)] = 223041, - [SMALL_STATE(6901)] = 223048, - [SMALL_STATE(6902)] = 223055, - [SMALL_STATE(6903)] = 223062, - [SMALL_STATE(6904)] = 223069, - [SMALL_STATE(6905)] = 223076, - [SMALL_STATE(6906)] = 223083, - [SMALL_STATE(6907)] = 223090, - [SMALL_STATE(6908)] = 223097, - [SMALL_STATE(6909)] = 223104, - [SMALL_STATE(6910)] = 223111, - [SMALL_STATE(6911)] = 223118, - [SMALL_STATE(6912)] = 223125, - [SMALL_STATE(6913)] = 223132, - [SMALL_STATE(6914)] = 223139, - [SMALL_STATE(6915)] = 223146, - [SMALL_STATE(6916)] = 223153, - [SMALL_STATE(6917)] = 223160, - [SMALL_STATE(6918)] = 223167, - [SMALL_STATE(6919)] = 223174, - [SMALL_STATE(6920)] = 223181, - [SMALL_STATE(6921)] = 223188, - [SMALL_STATE(6922)] = 223195, - [SMALL_STATE(6923)] = 223202, - [SMALL_STATE(6924)] = 223209, - [SMALL_STATE(6925)] = 223216, - [SMALL_STATE(6926)] = 223223, - [SMALL_STATE(6927)] = 223230, - [SMALL_STATE(6928)] = 223237, - [SMALL_STATE(6929)] = 223244, - [SMALL_STATE(6930)] = 223251, - [SMALL_STATE(6931)] = 223258, - [SMALL_STATE(6932)] = 223265, - [SMALL_STATE(6933)] = 223272, - [SMALL_STATE(6934)] = 223279, - [SMALL_STATE(6935)] = 223286, - [SMALL_STATE(6936)] = 223293, - [SMALL_STATE(6937)] = 223300, - [SMALL_STATE(6938)] = 223307, - [SMALL_STATE(6939)] = 223314, - [SMALL_STATE(6940)] = 223321, - [SMALL_STATE(6941)] = 223328, - [SMALL_STATE(6942)] = 223335, - [SMALL_STATE(6943)] = 223342, - [SMALL_STATE(6944)] = 223349, - [SMALL_STATE(6945)] = 223356, - [SMALL_STATE(6946)] = 223363, - [SMALL_STATE(6947)] = 223370, - [SMALL_STATE(6948)] = 223377, - [SMALL_STATE(6949)] = 223384, - [SMALL_STATE(6950)] = 223391, - [SMALL_STATE(6951)] = 223398, - [SMALL_STATE(6952)] = 223405, - [SMALL_STATE(6953)] = 223412, - [SMALL_STATE(6954)] = 223419, - [SMALL_STATE(6955)] = 223426, - [SMALL_STATE(6956)] = 223433, - [SMALL_STATE(6957)] = 223440, - [SMALL_STATE(6958)] = 223447, - [SMALL_STATE(6959)] = 223454, - [SMALL_STATE(6960)] = 223461, - [SMALL_STATE(6961)] = 223468, - [SMALL_STATE(6962)] = 223475, - [SMALL_STATE(6963)] = 223482, - [SMALL_STATE(6964)] = 223489, - [SMALL_STATE(6965)] = 223496, - [SMALL_STATE(6966)] = 223503, - [SMALL_STATE(6967)] = 223510, - [SMALL_STATE(6968)] = 223517, - [SMALL_STATE(6969)] = 223524, - [SMALL_STATE(6970)] = 223531, - [SMALL_STATE(6971)] = 223538, - [SMALL_STATE(6972)] = 223545, - [SMALL_STATE(6973)] = 223552, - [SMALL_STATE(6974)] = 223559, - [SMALL_STATE(6975)] = 223566, - [SMALL_STATE(6976)] = 223573, - [SMALL_STATE(6977)] = 223580, - [SMALL_STATE(6978)] = 223587, - [SMALL_STATE(6979)] = 223594, - [SMALL_STATE(6980)] = 223601, - [SMALL_STATE(6981)] = 223608, - [SMALL_STATE(6982)] = 223615, - [SMALL_STATE(6983)] = 223622, - [SMALL_STATE(6984)] = 223629, - [SMALL_STATE(6985)] = 223636, - [SMALL_STATE(6986)] = 223643, - [SMALL_STATE(6987)] = 223650, - [SMALL_STATE(6988)] = 223657, - [SMALL_STATE(6989)] = 223664, - [SMALL_STATE(6990)] = 223671, - [SMALL_STATE(6991)] = 223678, - [SMALL_STATE(6992)] = 223685, - [SMALL_STATE(6993)] = 223692, - [SMALL_STATE(6994)] = 223699, - [SMALL_STATE(6995)] = 223706, - [SMALL_STATE(6996)] = 223713, - [SMALL_STATE(6997)] = 223720, - [SMALL_STATE(6998)] = 223727, - [SMALL_STATE(6999)] = 223734, - [SMALL_STATE(7000)] = 223741, - [SMALL_STATE(7001)] = 223748, - [SMALL_STATE(7002)] = 223755, - [SMALL_STATE(7003)] = 223762, - [SMALL_STATE(7004)] = 223769, - [SMALL_STATE(7005)] = 223776, - [SMALL_STATE(7006)] = 223783, - [SMALL_STATE(7007)] = 223790, - [SMALL_STATE(7008)] = 223797, - [SMALL_STATE(7009)] = 223804, - [SMALL_STATE(7010)] = 223811, - [SMALL_STATE(7011)] = 223818, - [SMALL_STATE(7012)] = 223825, - [SMALL_STATE(7013)] = 223832, - [SMALL_STATE(7014)] = 223839, - [SMALL_STATE(7015)] = 223846, - [SMALL_STATE(7016)] = 223853, - [SMALL_STATE(7017)] = 223860, - [SMALL_STATE(7018)] = 223867, - [SMALL_STATE(7019)] = 223874, - [SMALL_STATE(7020)] = 223881, - [SMALL_STATE(7021)] = 223888, - [SMALL_STATE(7022)] = 223895, - [SMALL_STATE(7023)] = 223902, - [SMALL_STATE(7024)] = 223909, - [SMALL_STATE(7025)] = 223916, - [SMALL_STATE(7026)] = 223923, - [SMALL_STATE(7027)] = 223930, - [SMALL_STATE(7028)] = 223937, - [SMALL_STATE(7029)] = 223944, - [SMALL_STATE(7030)] = 223951, - [SMALL_STATE(7031)] = 223958, - [SMALL_STATE(7032)] = 223965, - [SMALL_STATE(7033)] = 223972, - [SMALL_STATE(7034)] = 223979, - [SMALL_STATE(7035)] = 223986, - [SMALL_STATE(7036)] = 223993, - [SMALL_STATE(7037)] = 224000, - [SMALL_STATE(7038)] = 224007, - [SMALL_STATE(7039)] = 224014, - [SMALL_STATE(7040)] = 224021, - [SMALL_STATE(7041)] = 224028, - [SMALL_STATE(7042)] = 224035, - [SMALL_STATE(7043)] = 224042, - [SMALL_STATE(7044)] = 224049, - [SMALL_STATE(7045)] = 224056, - [SMALL_STATE(7046)] = 224063, - [SMALL_STATE(7047)] = 224070, - [SMALL_STATE(7048)] = 224077, - [SMALL_STATE(7049)] = 224084, - [SMALL_STATE(7050)] = 224091, - [SMALL_STATE(7051)] = 224098, - [SMALL_STATE(7052)] = 224105, - [SMALL_STATE(7053)] = 224112, - [SMALL_STATE(7054)] = 224119, - [SMALL_STATE(7055)] = 224126, - [SMALL_STATE(7056)] = 224133, - [SMALL_STATE(7057)] = 224140, - [SMALL_STATE(7058)] = 224147, - [SMALL_STATE(7059)] = 224154, - [SMALL_STATE(7060)] = 224161, - [SMALL_STATE(7061)] = 224168, - [SMALL_STATE(7062)] = 224175, - [SMALL_STATE(7063)] = 224182, - [SMALL_STATE(7064)] = 224189, - [SMALL_STATE(7065)] = 224196, - [SMALL_STATE(7066)] = 224203, - [SMALL_STATE(7067)] = 224210, - [SMALL_STATE(7068)] = 224217, - [SMALL_STATE(7069)] = 224224, - [SMALL_STATE(7070)] = 224231, - [SMALL_STATE(7071)] = 224238, - [SMALL_STATE(7072)] = 224245, - [SMALL_STATE(7073)] = 224252, - [SMALL_STATE(7074)] = 224259, - [SMALL_STATE(7075)] = 224266, - [SMALL_STATE(7076)] = 224273, - [SMALL_STATE(7077)] = 224280, - [SMALL_STATE(7078)] = 224287, - [SMALL_STATE(7079)] = 224294, - [SMALL_STATE(7080)] = 224301, - [SMALL_STATE(7081)] = 224308, - [SMALL_STATE(7082)] = 224315, - [SMALL_STATE(7083)] = 224322, - [SMALL_STATE(7084)] = 224329, - [SMALL_STATE(7085)] = 224336, - [SMALL_STATE(7086)] = 224343, - [SMALL_STATE(7087)] = 224350, - [SMALL_STATE(7088)] = 224357, - [SMALL_STATE(7089)] = 224364, - [SMALL_STATE(7090)] = 224371, - [SMALL_STATE(7091)] = 224378, - [SMALL_STATE(7092)] = 224385, - [SMALL_STATE(7093)] = 224392, - [SMALL_STATE(7094)] = 224399, - [SMALL_STATE(7095)] = 224406, - [SMALL_STATE(7096)] = 224413, - [SMALL_STATE(7097)] = 224420, - [SMALL_STATE(7098)] = 224427, - [SMALL_STATE(7099)] = 224434, - [SMALL_STATE(7100)] = 224441, - [SMALL_STATE(7101)] = 224448, - [SMALL_STATE(7102)] = 224455, - [SMALL_STATE(7103)] = 224462, - [SMALL_STATE(7104)] = 224469, - [SMALL_STATE(7105)] = 224476, - [SMALL_STATE(7106)] = 224483, - [SMALL_STATE(7107)] = 224490, - [SMALL_STATE(7108)] = 224497, - [SMALL_STATE(7109)] = 224504, - [SMALL_STATE(7110)] = 224511, - [SMALL_STATE(7111)] = 224518, - [SMALL_STATE(7112)] = 224525, - [SMALL_STATE(7113)] = 224532, - [SMALL_STATE(7114)] = 224539, - [SMALL_STATE(7115)] = 224546, - [SMALL_STATE(7116)] = 224553, - [SMALL_STATE(7117)] = 224560, - [SMALL_STATE(7118)] = 224567, - [SMALL_STATE(7119)] = 224574, - [SMALL_STATE(7120)] = 224581, - [SMALL_STATE(7121)] = 224588, - [SMALL_STATE(7122)] = 224595, - [SMALL_STATE(7123)] = 224602, - [SMALL_STATE(7124)] = 224609, - [SMALL_STATE(7125)] = 224616, - [SMALL_STATE(7126)] = 224623, - [SMALL_STATE(7127)] = 224630, - [SMALL_STATE(7128)] = 224637, - [SMALL_STATE(7129)] = 224644, - [SMALL_STATE(7130)] = 224651, - [SMALL_STATE(7131)] = 224658, - [SMALL_STATE(7132)] = 224665, - [SMALL_STATE(7133)] = 224672, - [SMALL_STATE(7134)] = 224679, - [SMALL_STATE(7135)] = 224686, - [SMALL_STATE(7136)] = 224693, - [SMALL_STATE(7137)] = 224700, - [SMALL_STATE(7138)] = 224707, - [SMALL_STATE(7139)] = 224714, - [SMALL_STATE(7140)] = 224721, - [SMALL_STATE(7141)] = 224728, - [SMALL_STATE(7142)] = 224735, - [SMALL_STATE(7143)] = 224742, - [SMALL_STATE(7144)] = 224749, - [SMALL_STATE(7145)] = 224756, - [SMALL_STATE(7146)] = 224763, - [SMALL_STATE(7147)] = 224770, - [SMALL_STATE(7148)] = 224777, - [SMALL_STATE(7149)] = 224784, - [SMALL_STATE(7150)] = 224791, - [SMALL_STATE(7151)] = 224798, - [SMALL_STATE(7152)] = 224805, - [SMALL_STATE(7153)] = 224812, - [SMALL_STATE(7154)] = 224819, - [SMALL_STATE(7155)] = 224826, - [SMALL_STATE(7156)] = 224833, - [SMALL_STATE(7157)] = 224840, - [SMALL_STATE(7158)] = 224847, - [SMALL_STATE(7159)] = 224854, - [SMALL_STATE(7160)] = 224861, - [SMALL_STATE(7161)] = 224868, - [SMALL_STATE(7162)] = 224875, - [SMALL_STATE(7163)] = 224882, - [SMALL_STATE(7164)] = 224889, - [SMALL_STATE(7165)] = 224896, - [SMALL_STATE(7166)] = 224903, - [SMALL_STATE(7167)] = 224910, - [SMALL_STATE(7168)] = 224917, - [SMALL_STATE(7169)] = 224924, - [SMALL_STATE(7170)] = 224931, - [SMALL_STATE(7171)] = 224938, - [SMALL_STATE(7172)] = 224945, - [SMALL_STATE(7173)] = 224952, - [SMALL_STATE(7174)] = 224959, - [SMALL_STATE(7175)] = 224966, - [SMALL_STATE(7176)] = 224973, - [SMALL_STATE(7177)] = 224980, - [SMALL_STATE(7178)] = 224987, - [SMALL_STATE(7179)] = 224994, - [SMALL_STATE(7180)] = 225001, - [SMALL_STATE(7181)] = 225008, - [SMALL_STATE(7182)] = 225015, - [SMALL_STATE(7183)] = 225022, - [SMALL_STATE(7184)] = 225029, - [SMALL_STATE(7185)] = 225036, - [SMALL_STATE(7186)] = 225043, - [SMALL_STATE(7187)] = 225050, - [SMALL_STATE(7188)] = 225057, - [SMALL_STATE(7189)] = 225064, - [SMALL_STATE(7190)] = 225071, - [SMALL_STATE(7191)] = 225078, - [SMALL_STATE(7192)] = 225085, - [SMALL_STATE(7193)] = 225092, - [SMALL_STATE(7194)] = 225099, - [SMALL_STATE(7195)] = 225106, - [SMALL_STATE(7196)] = 225113, - [SMALL_STATE(7197)] = 225120, - [SMALL_STATE(7198)] = 225127, - [SMALL_STATE(7199)] = 225134, - [SMALL_STATE(7200)] = 225141, - [SMALL_STATE(7201)] = 225148, - [SMALL_STATE(7202)] = 225155, - [SMALL_STATE(7203)] = 225162, - [SMALL_STATE(7204)] = 225169, - [SMALL_STATE(7205)] = 225176, - [SMALL_STATE(7206)] = 225183, - [SMALL_STATE(7207)] = 225190, - [SMALL_STATE(7208)] = 225197, - [SMALL_STATE(7209)] = 225204, - [SMALL_STATE(7210)] = 225211, - [SMALL_STATE(7211)] = 225218, - [SMALL_STATE(7212)] = 225225, - [SMALL_STATE(7213)] = 225232, - [SMALL_STATE(7214)] = 225239, - [SMALL_STATE(7215)] = 225246, - [SMALL_STATE(7216)] = 225253, - [SMALL_STATE(7217)] = 225260, - [SMALL_STATE(7218)] = 225267, - [SMALL_STATE(7219)] = 225274, - [SMALL_STATE(7220)] = 225281, - [SMALL_STATE(7221)] = 225288, - [SMALL_STATE(7222)] = 225295, - [SMALL_STATE(7223)] = 225302, - [SMALL_STATE(7224)] = 225309, - [SMALL_STATE(7225)] = 225316, - [SMALL_STATE(7226)] = 225323, - [SMALL_STATE(7227)] = 225330, - [SMALL_STATE(7228)] = 225337, - [SMALL_STATE(7229)] = 225344, - [SMALL_STATE(7230)] = 225351, + [SMALL_STATE(2290)] = 34003, + [SMALL_STATE(2291)] = 34066, + [SMALL_STATE(2292)] = 34129, + [SMALL_STATE(2293)] = 34192, + [SMALL_STATE(2294)] = 34255, + [SMALL_STATE(2295)] = 34318, + [SMALL_STATE(2296)] = 34387, + [SMALL_STATE(2297)] = 34452, + [SMALL_STATE(2298)] = 34515, + [SMALL_STATE(2299)] = 34580, + [SMALL_STATE(2300)] = 34643, + [SMALL_STATE(2301)] = 34706, + [SMALL_STATE(2302)] = 34769, + [SMALL_STATE(2303)] = 34832, + [SMALL_STATE(2304)] = 34895, + [SMALL_STATE(2305)] = 34958, + [SMALL_STATE(2306)] = 35021, + [SMALL_STATE(2307)] = 35084, + [SMALL_STATE(2308)] = 35147, + [SMALL_STATE(2309)] = 35210, + [SMALL_STATE(2310)] = 35289, + [SMALL_STATE(2311)] = 35352, + [SMALL_STATE(2312)] = 35415, + [SMALL_STATE(2313)] = 35478, + [SMALL_STATE(2314)] = 35541, + [SMALL_STATE(2315)] = 35604, + [SMALL_STATE(2316)] = 35667, + [SMALL_STATE(2317)] = 35730, + [SMALL_STATE(2318)] = 35793, + [SMALL_STATE(2319)] = 35856, + [SMALL_STATE(2320)] = 35919, + [SMALL_STATE(2321)] = 35996, + [SMALL_STATE(2322)] = 36059, + [SMALL_STATE(2323)] = 36122, + [SMALL_STATE(2324)] = 36185, + [SMALL_STATE(2325)] = 36256, + [SMALL_STATE(2326)] = 36319, + [SMALL_STATE(2327)] = 36382, + [SMALL_STATE(2328)] = 36445, + [SMALL_STATE(2329)] = 36508, + [SMALL_STATE(2330)] = 36571, + [SMALL_STATE(2331)] = 36634, + [SMALL_STATE(2332)] = 36697, + [SMALL_STATE(2333)] = 36760, + [SMALL_STATE(2334)] = 36823, + [SMALL_STATE(2335)] = 36886, + [SMALL_STATE(2336)] = 36949, + [SMALL_STATE(2337)] = 37012, + [SMALL_STATE(2338)] = 37075, + [SMALL_STATE(2339)] = 37138, + [SMALL_STATE(2340)] = 37201, + [SMALL_STATE(2341)] = 37264, + [SMALL_STATE(2342)] = 37327, + [SMALL_STATE(2343)] = 37390, + [SMALL_STATE(2344)] = 37469, + [SMALL_STATE(2345)] = 37532, + [SMALL_STATE(2346)] = 37595, + [SMALL_STATE(2347)] = 37658, + [SMALL_STATE(2348)] = 37721, + [SMALL_STATE(2349)] = 37784, + [SMALL_STATE(2350)] = 37849, + [SMALL_STATE(2351)] = 37912, + [SMALL_STATE(2352)] = 37975, + [SMALL_STATE(2353)] = 38038, + [SMALL_STATE(2354)] = 38101, + [SMALL_STATE(2355)] = 38164, + [SMALL_STATE(2356)] = 38230, + [SMALL_STATE(2357)] = 38292, + [SMALL_STATE(2358)] = 38354, + [SMALL_STATE(2359)] = 38420, + [SMALL_STATE(2360)] = 38482, + [SMALL_STATE(2361)] = 38544, + [SMALL_STATE(2362)] = 38606, + [SMALL_STATE(2363)] = 38668, + [SMALL_STATE(2364)] = 38730, + [SMALL_STATE(2365)] = 38792, + [SMALL_STATE(2366)] = 38854, + [SMALL_STATE(2367)] = 38916, + [SMALL_STATE(2368)] = 38978, + [SMALL_STATE(2369)] = 39046, + [SMALL_STATE(2370)] = 39112, + [SMALL_STATE(2371)] = 39186, + [SMALL_STATE(2372)] = 39248, + [SMALL_STATE(2373)] = 39310, + [SMALL_STATE(2374)] = 39380, + [SMALL_STATE(2375)] = 39448, + [SMALL_STATE(2376)] = 39510, + [SMALL_STATE(2377)] = 39572, + [SMALL_STATE(2378)] = 39634, + [SMALL_STATE(2379)] = 39696, + [SMALL_STATE(2380)] = 39758, + [SMALL_STATE(2381)] = 39820, + [SMALL_STATE(2382)] = 39882, + [SMALL_STATE(2383)] = 39944, + [SMALL_STATE(2384)] = 40020, + [SMALL_STATE(2385)] = 40082, + [SMALL_STATE(2386)] = 40148, + [SMALL_STATE(2387)] = 40210, + [SMALL_STATE(2388)] = 40272, + [SMALL_STATE(2389)] = 40336, + [SMALL_STATE(2390)] = 40398, + [SMALL_STATE(2391)] = 40460, + [SMALL_STATE(2392)] = 40522, + [SMALL_STATE(2393)] = 40584, + [SMALL_STATE(2394)] = 40654, + [SMALL_STATE(2395)] = 40722, + [SMALL_STATE(2396)] = 40784, + [SMALL_STATE(2397)] = 40848, + [SMALL_STATE(2398)] = 40920, + [SMALL_STATE(2399)] = 40982, + [SMALL_STATE(2400)] = 41044, + [SMALL_STATE(2401)] = 41106, + [SMALL_STATE(2402)] = 41168, + [SMALL_STATE(2403)] = 41234, + [SMALL_STATE(2404)] = 41296, + [SMALL_STATE(2405)] = 41358, + [SMALL_STATE(2406)] = 41422, + [SMALL_STATE(2407)] = 41484, + [SMALL_STATE(2408)] = 41546, + [SMALL_STATE(2409)] = 41612, + [SMALL_STATE(2410)] = 41674, + [SMALL_STATE(2411)] = 41742, + [SMALL_STATE(2412)] = 41804, + [SMALL_STATE(2413)] = 41868, + [SMALL_STATE(2414)] = 41936, + [SMALL_STATE(2415)] = 41998, + [SMALL_STATE(2416)] = 42062, + [SMALL_STATE(2417)] = 42124, + [SMALL_STATE(2418)] = 42186, + [SMALL_STATE(2419)] = 42248, + [SMALL_STATE(2420)] = 42310, + [SMALL_STATE(2421)] = 42372, + [SMALL_STATE(2422)] = 42434, + [SMALL_STATE(2423)] = 42496, + [SMALL_STATE(2424)] = 42558, + [SMALL_STATE(2425)] = 42624, + [SMALL_STATE(2426)] = 42686, + [SMALL_STATE(2427)] = 42748, + [SMALL_STATE(2428)] = 42810, + [SMALL_STATE(2429)] = 42872, + [SMALL_STATE(2430)] = 42934, + [SMALL_STATE(2431)] = 42996, + [SMALL_STATE(2432)] = 43070, + [SMALL_STATE(2433)] = 43180, + [SMALL_STATE(2434)] = 43242, + [SMALL_STATE(2435)] = 43304, + [SMALL_STATE(2436)] = 43366, + [SMALL_STATE(2437)] = 43428, + [SMALL_STATE(2438)] = 43490, + [SMALL_STATE(2439)] = 43552, + [SMALL_STATE(2440)] = 43662, + [SMALL_STATE(2441)] = 43724, + [SMALL_STATE(2442)] = 43794, + [SMALL_STATE(2443)] = 43856, + [SMALL_STATE(2444)] = 43918, + [SMALL_STATE(2445)] = 43980, + [SMALL_STATE(2446)] = 44042, + [SMALL_STATE(2447)] = 44104, + [SMALL_STATE(2448)] = 44170, + [SMALL_STATE(2449)] = 44234, + [SMALL_STATE(2450)] = 44296, + [SMALL_STATE(2451)] = 44358, + [SMALL_STATE(2452)] = 44420, + [SMALL_STATE(2453)] = 44482, + [SMALL_STATE(2454)] = 44544, + [SMALL_STATE(2455)] = 44606, + [SMALL_STATE(2456)] = 44684, + [SMALL_STATE(2457)] = 44746, + [SMALL_STATE(2458)] = 44814, + [SMALL_STATE(2459)] = 44876, + [SMALL_STATE(2460)] = 44938, + [SMALL_STATE(2461)] = 45000, + [SMALL_STATE(2462)] = 45062, + [SMALL_STATE(2463)] = 45130, + [SMALL_STATE(2464)] = 45200, + [SMALL_STATE(2465)] = 45262, + [SMALL_STATE(2466)] = 45324, + [SMALL_STATE(2467)] = 45385, + [SMALL_STATE(2468)] = 45446, + [SMALL_STATE(2469)] = 45507, + [SMALL_STATE(2470)] = 45568, + [SMALL_STATE(2471)] = 45629, + [SMALL_STATE(2472)] = 45694, + [SMALL_STATE(2473)] = 45755, + [SMALL_STATE(2474)] = 45816, + [SMALL_STATE(2475)] = 45887, + [SMALL_STATE(2476)] = 45950, + [SMALL_STATE(2477)] = 46011, + [SMALL_STATE(2478)] = 46072, + [SMALL_STATE(2479)] = 46133, + [SMALL_STATE(2480)] = 46194, + [SMALL_STATE(2481)] = 46299, + [SMALL_STATE(2482)] = 46360, + [SMALL_STATE(2483)] = 46427, + [SMALL_STATE(2484)] = 46490, + [SMALL_STATE(2485)] = 46551, + [SMALL_STATE(2486)] = 46612, + [SMALL_STATE(2487)] = 46677, + [SMALL_STATE(2488)] = 46738, + [SMALL_STATE(2489)] = 46799, + [SMALL_STATE(2490)] = 46880, + [SMALL_STATE(2491)] = 46953, + [SMALL_STATE(2492)] = 47014, + [SMALL_STATE(2493)] = 47075, + [SMALL_STATE(2494)] = 47136, + [SMALL_STATE(2495)] = 47201, + [SMALL_STATE(2496)] = 47306, + [SMALL_STATE(2497)] = 47373, + [SMALL_STATE(2498)] = 47434, + [SMALL_STATE(2499)] = 47499, + [SMALL_STATE(2500)] = 47564, + [SMALL_STATE(2501)] = 47625, + [SMALL_STATE(2502)] = 47688, + [SMALL_STATE(2503)] = 47749, + [SMALL_STATE(2504)] = 47810, + [SMALL_STATE(2505)] = 47877, + [SMALL_STATE(2506)] = 47938, + [SMALL_STATE(2507)] = 48047, + [SMALL_STATE(2508)] = 48122, + [SMALL_STATE(2509)] = 48193, + [SMALL_STATE(2510)] = 48254, + [SMALL_STATE(2511)] = 48361, + [SMALL_STATE(2512)] = 48422, + [SMALL_STATE(2513)] = 48483, + [SMALL_STATE(2514)] = 48544, + [SMALL_STATE(2515)] = 48605, + [SMALL_STATE(2516)] = 48678, + [SMALL_STATE(2517)] = 48751, + [SMALL_STATE(2518)] = 48812, + [SMALL_STATE(2519)] = 48873, + [SMALL_STATE(2520)] = 48946, + [SMALL_STATE(2521)] = 49021, + [SMALL_STATE(2522)] = 49082, + [SMALL_STATE(2523)] = 49157, + [SMALL_STATE(2524)] = 49230, + [SMALL_STATE(2525)] = 49331, + [SMALL_STATE(2526)] = 49440, + [SMALL_STATE(2527)] = 49503, + [SMALL_STATE(2528)] = 49600, + [SMALL_STATE(2529)] = 49693, + [SMALL_STATE(2530)] = 49784, + [SMALL_STATE(2531)] = 49871, + [SMALL_STATE(2532)] = 49944, + [SMALL_STATE(2533)] = 50017, + [SMALL_STATE(2534)] = 50090, + [SMALL_STATE(2535)] = 50155, + [SMALL_STATE(2536)] = 50236, + [SMALL_STATE(2537)] = 50313, + [SMALL_STATE(2538)] = 50374, + [SMALL_STATE(2539)] = 50453, + [SMALL_STATE(2540)] = 50526, + [SMALL_STATE(2541)] = 50599, + [SMALL_STATE(2542)] = 50672, + [SMALL_STATE(2543)] = 50739, + [SMALL_STATE(2544)] = 50800, + [SMALL_STATE(2545)] = 50861, + [SMALL_STATE(2546)] = 50922, + [SMALL_STATE(2547)] = 50983, + [SMALL_STATE(2548)] = 51058, + [SMALL_STATE(2549)] = 51131, + [SMALL_STATE(2550)] = 51192, + [SMALL_STATE(2551)] = 51253, + [SMALL_STATE(2552)] = 51314, + [SMALL_STATE(2553)] = 51393, + [SMALL_STATE(2554)] = 51458, + [SMALL_STATE(2555)] = 51521, + [SMALL_STATE(2556)] = 51582, + [SMALL_STATE(2557)] = 51643, + [SMALL_STATE(2558)] = 51704, + [SMALL_STATE(2559)] = 51765, + [SMALL_STATE(2560)] = 51826, + [SMALL_STATE(2561)] = 51931, + [SMALL_STATE(2562)] = 52016, + [SMALL_STATE(2563)] = 52083, + [SMALL_STATE(2564)] = 52144, + [SMALL_STATE(2565)] = 52205, + [SMALL_STATE(2566)] = 52266, + [SMALL_STATE(2567)] = 52333, + [SMALL_STATE(2568)] = 52408, + [SMALL_STATE(2569)] = 52471, + [SMALL_STATE(2570)] = 52532, + [SMALL_STATE(2571)] = 52593, + [SMALL_STATE(2572)] = 52662, + [SMALL_STATE(2573)] = 52723, + [SMALL_STATE(2574)] = 52784, + [SMALL_STATE(2575)] = 52845, + [SMALL_STATE(2576)] = 52918, + [SMALL_STATE(2577)] = 52979, + [SMALL_STATE(2578)] = 53040, + [SMALL_STATE(2579)] = 53115, + [SMALL_STATE(2580)] = 53190, + [SMALL_STATE(2581)] = 53295, + [SMALL_STATE(2582)] = 53374, + [SMALL_STATE(2583)] = 53434, + [SMALL_STATE(2584)] = 53538, + [SMALL_STATE(2585)] = 53610, + [SMALL_STATE(2586)] = 53672, + [SMALL_STATE(2587)] = 53738, + [SMALL_STATE(2588)] = 53804, + [SMALL_STATE(2589)] = 53866, + [SMALL_STATE(2590)] = 53934, + [SMALL_STATE(2591)] = 53994, + [SMALL_STATE(2592)] = 54066, + [SMALL_STATE(2593)] = 54134, + [SMALL_STATE(2594)] = 54194, + [SMALL_STATE(2595)] = 54254, + [SMALL_STATE(2596)] = 54314, + [SMALL_STATE(2597)] = 54374, + [SMALL_STATE(2598)] = 54434, + [SMALL_STATE(2599)] = 54494, + [SMALL_STATE(2600)] = 54554, + [SMALL_STATE(2601)] = 54614, + [SMALL_STATE(2602)] = 54674, + [SMALL_STATE(2603)] = 54734, + [SMALL_STATE(2604)] = 54794, + [SMALL_STATE(2605)] = 54854, + [SMALL_STATE(2606)] = 54914, + [SMALL_STATE(2607)] = 54974, + [SMALL_STATE(2608)] = 55034, + [SMALL_STATE(2609)] = 55094, + [SMALL_STATE(2610)] = 55154, + [SMALL_STATE(2611)] = 55214, + [SMALL_STATE(2612)] = 55274, + [SMALL_STATE(2613)] = 55334, + [SMALL_STATE(2614)] = 55394, + [SMALL_STATE(2615)] = 55454, + [SMALL_STATE(2616)] = 55524, + [SMALL_STATE(2617)] = 55602, + [SMALL_STATE(2618)] = 55662, + [SMALL_STATE(2619)] = 55722, + [SMALL_STATE(2620)] = 55782, + [SMALL_STATE(2621)] = 55842, + [SMALL_STATE(2622)] = 55902, + [SMALL_STATE(2623)] = 55962, + [SMALL_STATE(2624)] = 56022, + [SMALL_STATE(2625)] = 56124, + [SMALL_STATE(2626)] = 56184, + [SMALL_STATE(2627)] = 56244, + [SMALL_STATE(2628)] = 56304, + [SMALL_STATE(2629)] = 56372, + [SMALL_STATE(2630)] = 56432, + [SMALL_STATE(2631)] = 56492, + [SMALL_STATE(2632)] = 56552, + [SMALL_STATE(2633)] = 56612, + [SMALL_STATE(2634)] = 56672, + [SMALL_STATE(2635)] = 56732, + [SMALL_STATE(2636)] = 56792, + [SMALL_STATE(2637)] = 56852, + [SMALL_STATE(2638)] = 56912, + [SMALL_STATE(2639)] = 56972, + [SMALL_STATE(2640)] = 57032, + [SMALL_STATE(2641)] = 57092, + [SMALL_STATE(2642)] = 57152, + [SMALL_STATE(2643)] = 57212, + [SMALL_STATE(2644)] = 57272, + [SMALL_STATE(2645)] = 57332, + [SMALL_STATE(2646)] = 57392, + [SMALL_STATE(2647)] = 57454, + [SMALL_STATE(2648)] = 57514, + [SMALL_STATE(2649)] = 57574, + [SMALL_STATE(2650)] = 57634, + [SMALL_STATE(2651)] = 57694, + [SMALL_STATE(2652)] = 57754, + [SMALL_STATE(2653)] = 57814, + [SMALL_STATE(2654)] = 57874, + [SMALL_STATE(2655)] = 57934, + [SMALL_STATE(2656)] = 57994, + [SMALL_STATE(2657)] = 58054, + [SMALL_STATE(2658)] = 58114, + [SMALL_STATE(2659)] = 58174, + [SMALL_STATE(2660)] = 58240, + [SMALL_STATE(2661)] = 58306, + [SMALL_STATE(2662)] = 58366, + [SMALL_STATE(2663)] = 58426, + [SMALL_STATE(2664)] = 58492, + [SMALL_STATE(2665)] = 58554, + [SMALL_STATE(2666)] = 58620, + [SMALL_STATE(2667)] = 58680, + [SMALL_STATE(2668)] = 58786, + [SMALL_STATE(2669)] = 58854, + [SMALL_STATE(2670)] = 58924, + [SMALL_STATE(2671)] = 58986, + [SMALL_STATE(2672)] = 59052, + [SMALL_STATE(2673)] = 59112, + [SMALL_STATE(2674)] = 59172, + [SMALL_STATE(2675)] = 59232, + [SMALL_STATE(2676)] = 59292, + [SMALL_STATE(2677)] = 59352, + [SMALL_STATE(2678)] = 59454, + [SMALL_STATE(2679)] = 59514, + [SMALL_STATE(2680)] = 59576, + [SMALL_STATE(2681)] = 59678, + [SMALL_STATE(2682)] = 59780, + [SMALL_STATE(2683)] = 59846, + [SMALL_STATE(2684)] = 59906, + [SMALL_STATE(2685)] = 59970, + [SMALL_STATE(2686)] = 60032, + [SMALL_STATE(2687)] = 60094, + [SMALL_STATE(2688)] = 60162, + [SMALL_STATE(2689)] = 60222, + [SMALL_STATE(2690)] = 60292, + [SMALL_STATE(2691)] = 60368, + [SMALL_STATE(2692)] = 60430, + [SMALL_STATE(2693)] = 60504, + [SMALL_STATE(2694)] = 60582, + [SMALL_STATE(2695)] = 60664, + [SMALL_STATE(2696)] = 60748, + [SMALL_STATE(2697)] = 60836, + [SMALL_STATE(2698)] = 60926, + [SMALL_STATE(2699)] = 61020, + [SMALL_STATE(2700)] = 61118, + [SMALL_STATE(2701)] = 61188, + [SMALL_STATE(2702)] = 61260, + [SMALL_STATE(2703)] = 61319, + [SMALL_STATE(2704)] = 61378, + [SMALL_STATE(2705)] = 61437, + [SMALL_STATE(2706)] = 61496, + [SMALL_STATE(2707)] = 61555, + [SMALL_STATE(2708)] = 61614, + [SMALL_STATE(2709)] = 61673, + [SMALL_STATE(2710)] = 61732, + [SMALL_STATE(2711)] = 61791, + [SMALL_STATE(2712)] = 61850, + [SMALL_STATE(2713)] = 61909, + [SMALL_STATE(2714)] = 61968, + [SMALL_STATE(2715)] = 62027, + [SMALL_STATE(2716)] = 62086, + [SMALL_STATE(2717)] = 62145, + [SMALL_STATE(2718)] = 62204, + [SMALL_STATE(2719)] = 62263, + [SMALL_STATE(2720)] = 62322, + [SMALL_STATE(2721)] = 62381, + [SMALL_STATE(2722)] = 62440, + [SMALL_STATE(2723)] = 62499, + [SMALL_STATE(2724)] = 62558, + [SMALL_STATE(2725)] = 62617, + [SMALL_STATE(2726)] = 62676, + [SMALL_STATE(2727)] = 62735, + [SMALL_STATE(2728)] = 62800, + [SMALL_STATE(2729)] = 62859, + [SMALL_STATE(2730)] = 62918, + [SMALL_STATE(2731)] = 62977, + [SMALL_STATE(2732)] = 63036, + [SMALL_STATE(2733)] = 63095, + [SMALL_STATE(2734)] = 63154, + [SMALL_STATE(2735)] = 63213, + [SMALL_STATE(2736)] = 63272, + [SMALL_STATE(2737)] = 63337, + [SMALL_STATE(2738)] = 63396, + [SMALL_STATE(2739)] = 63455, + [SMALL_STATE(2740)] = 63514, + [SMALL_STATE(2741)] = 63573, + [SMALL_STATE(2742)] = 63632, + [SMALL_STATE(2743)] = 63691, + [SMALL_STATE(2744)] = 63750, + [SMALL_STATE(2745)] = 63809, + [SMALL_STATE(2746)] = 63868, + [SMALL_STATE(2747)] = 63927, + [SMALL_STATE(2748)] = 63986, + [SMALL_STATE(2749)] = 64045, + [SMALL_STATE(2750)] = 64104, + [SMALL_STATE(2751)] = 64163, + [SMALL_STATE(2752)] = 64222, + [SMALL_STATE(2753)] = 64281, + [SMALL_STATE(2754)] = 64340, + [SMALL_STATE(2755)] = 64399, + [SMALL_STATE(2756)] = 64458, + [SMALL_STATE(2757)] = 64517, + [SMALL_STATE(2758)] = 64576, + [SMALL_STATE(2759)] = 64635, + [SMALL_STATE(2760)] = 64694, + [SMALL_STATE(2761)] = 64753, + [SMALL_STATE(2762)] = 64812, + [SMALL_STATE(2763)] = 64871, + [SMALL_STATE(2764)] = 64930, + [SMALL_STATE(2765)] = 64989, + [SMALL_STATE(2766)] = 65048, + [SMALL_STATE(2767)] = 65107, + [SMALL_STATE(2768)] = 65172, + [SMALL_STATE(2769)] = 65231, + [SMALL_STATE(2770)] = 65296, + [SMALL_STATE(2771)] = 65359, + [SMALL_STATE(2772)] = 65418, + [SMALL_STATE(2773)] = 65487, + [SMALL_STATE(2774)] = 65640, + [SMALL_STATE(2775)] = 65711, + [SMALL_STATE(2776)] = 65776, + [SMALL_STATE(2777)] = 65929, + [SMALL_STATE(2778)] = 65988, + [SMALL_STATE(2779)] = 66047, + [SMALL_STATE(2780)] = 66108, + [SMALL_STATE(2781)] = 66167, + [SMALL_STATE(2782)] = 66226, + [SMALL_STATE(2783)] = 66285, + [SMALL_STATE(2784)] = 66344, + [SMALL_STATE(2785)] = 66497, + [SMALL_STATE(2786)] = 66650, + [SMALL_STATE(2787)] = 66803, + [SMALL_STATE(2788)] = 66956, + [SMALL_STATE(2789)] = 67109, + [SMALL_STATE(2790)] = 67168, + [SMALL_STATE(2791)] = 67321, + [SMALL_STATE(2792)] = 67474, + [SMALL_STATE(2793)] = 67627, + [SMALL_STATE(2794)] = 67780, + [SMALL_STATE(2795)] = 67839, + [SMALL_STATE(2796)] = 67992, + [SMALL_STATE(2797)] = 68051, + [SMALL_STATE(2798)] = 68116, + [SMALL_STATE(2799)] = 68175, + [SMALL_STATE(2800)] = 68234, + [SMALL_STATE(2801)] = 68293, + [SMALL_STATE(2802)] = 68352, + [SMALL_STATE(2803)] = 68411, + [SMALL_STATE(2804)] = 68470, + [SMALL_STATE(2805)] = 68529, + [SMALL_STATE(2806)] = 68588, + [SMALL_STATE(2807)] = 68647, + [SMALL_STATE(2808)] = 68706, + [SMALL_STATE(2809)] = 68765, + [SMALL_STATE(2810)] = 68824, + [SMALL_STATE(2811)] = 68887, + [SMALL_STATE(2812)] = 68946, + [SMALL_STATE(2813)] = 69005, + [SMALL_STATE(2814)] = 69064, + [SMALL_STATE(2815)] = 69123, + [SMALL_STATE(2816)] = 69182, + [SMALL_STATE(2817)] = 69241, + [SMALL_STATE(2818)] = 69300, + [SMALL_STATE(2819)] = 69359, + [SMALL_STATE(2820)] = 69420, + [SMALL_STATE(2821)] = 69479, + [SMALL_STATE(2822)] = 69538, + [SMALL_STATE(2823)] = 69597, + [SMALL_STATE(2824)] = 69656, + [SMALL_STATE(2825)] = 69715, + [SMALL_STATE(2826)] = 69774, + [SMALL_STATE(2827)] = 69833, + [SMALL_STATE(2828)] = 69892, + [SMALL_STATE(2829)] = 69951, + [SMALL_STATE(2830)] = 70012, + [SMALL_STATE(2831)] = 70071, + [SMALL_STATE(2832)] = 70130, + [SMALL_STATE(2833)] = 70189, + [SMALL_STATE(2834)] = 70248, + [SMALL_STATE(2835)] = 70307, + [SMALL_STATE(2836)] = 70366, + [SMALL_STATE(2837)] = 70425, + [SMALL_STATE(2838)] = 70486, + [SMALL_STATE(2839)] = 70545, + [SMALL_STATE(2840)] = 70604, + [SMALL_STATE(2841)] = 70663, + [SMALL_STATE(2842)] = 70722, + [SMALL_STATE(2843)] = 70781, + [SMALL_STATE(2844)] = 70840, + [SMALL_STATE(2845)] = 70899, + [SMALL_STATE(2846)] = 70958, + [SMALL_STATE(2847)] = 71017, + [SMALL_STATE(2848)] = 71076, + [SMALL_STATE(2849)] = 71135, + [SMALL_STATE(2850)] = 71194, + [SMALL_STATE(2851)] = 71253, + [SMALL_STATE(2852)] = 71312, + [SMALL_STATE(2853)] = 71371, + [SMALL_STATE(2854)] = 71430, + [SMALL_STATE(2855)] = 71489, + [SMALL_STATE(2856)] = 71548, + [SMALL_STATE(2857)] = 71609, + [SMALL_STATE(2858)] = 71670, + [SMALL_STATE(2859)] = 71729, + [SMALL_STATE(2860)] = 71790, + [SMALL_STATE(2861)] = 71849, + [SMALL_STATE(2862)] = 71908, + [SMALL_STATE(2863)] = 71967, + [SMALL_STATE(2864)] = 72026, + [SMALL_STATE(2865)] = 72085, + [SMALL_STATE(2866)] = 72144, + [SMALL_STATE(2867)] = 72203, + [SMALL_STATE(2868)] = 72262, + [SMALL_STATE(2869)] = 72321, + [SMALL_STATE(2870)] = 72380, + [SMALL_STATE(2871)] = 72439, + [SMALL_STATE(2872)] = 72498, + [SMALL_STATE(2873)] = 72557, + [SMALL_STATE(2874)] = 72616, + [SMALL_STATE(2875)] = 72675, + [SMALL_STATE(2876)] = 72734, + [SMALL_STATE(2877)] = 72793, + [SMALL_STATE(2878)] = 72852, + [SMALL_STATE(2879)] = 72913, + [SMALL_STATE(2880)] = 72972, + [SMALL_STATE(2881)] = 73031, + [SMALL_STATE(2882)] = 73090, + [SMALL_STATE(2883)] = 73149, + [SMALL_STATE(2884)] = 73208, + [SMALL_STATE(2885)] = 73267, + [SMALL_STATE(2886)] = 73326, + [SMALL_STATE(2887)] = 73385, + [SMALL_STATE(2888)] = 73444, + [SMALL_STATE(2889)] = 73503, + [SMALL_STATE(2890)] = 73562, + [SMALL_STATE(2891)] = 73621, + [SMALL_STATE(2892)] = 73680, + [SMALL_STATE(2893)] = 73739, + [SMALL_STATE(2894)] = 73798, + [SMALL_STATE(2895)] = 73857, + [SMALL_STATE(2896)] = 73916, + [SMALL_STATE(2897)] = 73975, + [SMALL_STATE(2898)] = 74034, + [SMALL_STATE(2899)] = 74093, + [SMALL_STATE(2900)] = 74152, + [SMALL_STATE(2901)] = 74211, + [SMALL_STATE(2902)] = 74270, + [SMALL_STATE(2903)] = 74329, + [SMALL_STATE(2904)] = 74388, + [SMALL_STATE(2905)] = 74447, + [SMALL_STATE(2906)] = 74506, + [SMALL_STATE(2907)] = 74565, + [SMALL_STATE(2908)] = 74624, + [SMALL_STATE(2909)] = 74683, + [SMALL_STATE(2910)] = 74742, + [SMALL_STATE(2911)] = 74801, + [SMALL_STATE(2912)] = 74860, + [SMALL_STATE(2913)] = 74919, + [SMALL_STATE(2914)] = 74978, + [SMALL_STATE(2915)] = 75037, + [SMALL_STATE(2916)] = 75100, + [SMALL_STATE(2917)] = 75159, + [SMALL_STATE(2918)] = 75218, + [SMALL_STATE(2919)] = 75277, + [SMALL_STATE(2920)] = 75336, + [SMALL_STATE(2921)] = 75397, + [SMALL_STATE(2922)] = 75456, + [SMALL_STATE(2923)] = 75515, + [SMALL_STATE(2924)] = 75574, + [SMALL_STATE(2925)] = 75633, + [SMALL_STATE(2926)] = 75692, + [SMALL_STATE(2927)] = 75751, + [SMALL_STATE(2928)] = 75810, + [SMALL_STATE(2929)] = 75869, + [SMALL_STATE(2930)] = 75932, + [SMALL_STATE(2931)] = 75991, + [SMALL_STATE(2932)] = 76050, + [SMALL_STATE(2933)] = 76109, + [SMALL_STATE(2934)] = 76168, + [SMALL_STATE(2935)] = 76227, + [SMALL_STATE(2936)] = 76286, + [SMALL_STATE(2937)] = 76345, + [SMALL_STATE(2938)] = 76404, + [SMALL_STATE(2939)] = 76463, + [SMALL_STATE(2940)] = 76522, + [SMALL_STATE(2941)] = 76583, + [SMALL_STATE(2942)] = 76642, + [SMALL_STATE(2943)] = 76701, + [SMALL_STATE(2944)] = 76760, + [SMALL_STATE(2945)] = 76819, + [SMALL_STATE(2946)] = 76878, + [SMALL_STATE(2947)] = 76952, + [SMALL_STATE(2948)] = 77014, + [SMALL_STATE(2949)] = 77076, + [SMALL_STATE(2950)] = 77136, + [SMALL_STATE(2951)] = 77194, + [SMALL_STATE(2952)] = 77252, + [SMALL_STATE(2953)] = 77310, + [SMALL_STATE(2954)] = 77380, + [SMALL_STATE(2955)] = 77448, + [SMALL_STATE(2956)] = 77552, + [SMALL_STATE(2957)] = 77610, + [SMALL_STATE(2958)] = 77680, + [SMALL_STATE(2959)] = 77758, + [SMALL_STATE(2960)] = 77858, + [SMALL_STATE(2961)] = 77926, + [SMALL_STATE(2962)] = 78026, + [SMALL_STATE(2963)] = 78084, + [SMALL_STATE(2964)] = 78162, + [SMALL_STATE(2965)] = 78242, + [SMALL_STATE(2966)] = 78324, + [SMALL_STATE(2967)] = 78410, + [SMALL_STATE(2968)] = 78510, + [SMALL_STATE(2969)] = 78598, + [SMALL_STATE(2970)] = 78690, + [SMALL_STATE(2971)] = 78786, + [SMALL_STATE(2972)] = 78856, + [SMALL_STATE(2973)] = 78928, + [SMALL_STATE(2974)] = 78986, + [SMALL_STATE(2975)] = 79046, + [SMALL_STATE(2976)] = 79146, + [SMALL_STATE(2977)] = 79216, + [SMALL_STATE(2978)] = 79276, + [SMALL_STATE(2979)] = 79334, + [SMALL_STATE(2980)] = 79436, + [SMALL_STATE(2981)] = 79512, + [SMALL_STATE(2982)] = 79571, + [SMALL_STATE(2983)] = 79628, + [SMALL_STATE(2984)] = 79685, + [SMALL_STATE(2985)] = 79742, + [SMALL_STATE(2986)] = 79799, + [SMALL_STATE(2987)] = 79856, + [SMALL_STATE(2988)] = 79913, + [SMALL_STATE(2989)] = 79970, + [SMALL_STATE(2990)] = 80027, + [SMALL_STATE(2991)] = 80084, + [SMALL_STATE(2992)] = 80141, + [SMALL_STATE(2993)] = 80198, + [SMALL_STATE(2994)] = 80255, + [SMALL_STATE(2995)] = 80312, + [SMALL_STATE(2996)] = 80369, + [SMALL_STATE(2997)] = 80426, + [SMALL_STATE(2998)] = 80483, + [SMALL_STATE(2999)] = 80540, + [SMALL_STATE(3000)] = 80599, + [SMALL_STATE(3001)] = 80656, + [SMALL_STATE(3002)] = 80719, + [SMALL_STATE(3003)] = 80784, + [SMALL_STATE(3004)] = 80841, + [SMALL_STATE(3005)] = 80908, + [SMALL_STATE(3006)] = 80983, + [SMALL_STATE(3007)] = 81044, + [SMALL_STATE(3008)] = 81141, + [SMALL_STATE(3009)] = 81198, + [SMALL_STATE(3010)] = 81263, + [SMALL_STATE(3011)] = 81320, + [SMALL_STATE(3012)] = 81377, + [SMALL_STATE(3013)] = 81434, + [SMALL_STATE(3014)] = 81491, + [SMALL_STATE(3015)] = 81548, + [SMALL_STATE(3016)] = 81605, + [SMALL_STATE(3017)] = 81666, + [SMALL_STATE(3018)] = 81731, + [SMALL_STATE(3019)] = 81794, + [SMALL_STATE(3020)] = 81851, + [SMALL_STATE(3021)] = 81908, + [SMALL_STATE(3022)] = 81965, + [SMALL_STATE(3023)] = 82022, + [SMALL_STATE(3024)] = 82079, + [SMALL_STATE(3025)] = 82136, + [SMALL_STATE(3026)] = 82193, + [SMALL_STATE(3027)] = 82250, + [SMALL_STATE(3028)] = 82307, + [SMALL_STATE(3029)] = 82364, + [SMALL_STATE(3030)] = 82421, + [SMALL_STATE(3031)] = 82478, + [SMALL_STATE(3032)] = 82535, + [SMALL_STATE(3033)] = 82592, + [SMALL_STATE(3034)] = 82689, + [SMALL_STATE(3035)] = 82746, + [SMALL_STATE(3036)] = 82803, + [SMALL_STATE(3037)] = 82860, + [SMALL_STATE(3038)] = 82959, + [SMALL_STATE(3039)] = 83016, + [SMALL_STATE(3040)] = 83073, + [SMALL_STATE(3041)] = 83130, + [SMALL_STATE(3042)] = 83197, + [SMALL_STATE(3043)] = 83254, + [SMALL_STATE(3044)] = 83349, + [SMALL_STATE(3045)] = 83442, + [SMALL_STATE(3046)] = 83531, + [SMALL_STATE(3047)] = 83616, + [SMALL_STATE(3048)] = 83697, + [SMALL_STATE(3049)] = 83776, + [SMALL_STATE(3050)] = 83851, + [SMALL_STATE(3051)] = 83922, + [SMALL_STATE(3052)] = 83995, + [SMALL_STATE(3053)] = 84052, + [SMALL_STATE(3054)] = 84109, + [SMALL_STATE(3055)] = 84166, + [SMALL_STATE(3056)] = 84227, + [SMALL_STATE(3057)] = 84284, + [SMALL_STATE(3058)] = 84353, + [SMALL_STATE(3059)] = 84414, + [SMALL_STATE(3060)] = 84471, + [SMALL_STATE(3061)] = 84538, + [SMALL_STATE(3062)] = 84595, + [SMALL_STATE(3063)] = 84664, + [SMALL_STATE(3064)] = 84741, + [SMALL_STATE(3065)] = 84842, + [SMALL_STATE(3066)] = 84909, + [SMALL_STATE(3067)] = 85010, + [SMALL_STATE(3068)] = 85113, + [SMALL_STATE(3069)] = 85170, + [SMALL_STATE(3070)] = 85241, + [SMALL_STATE(3071)] = 85310, + [SMALL_STATE(3072)] = 85407, + [SMALL_STATE(3073)] = 85500, + [SMALL_STATE(3074)] = 85589, + [SMALL_STATE(3075)] = 85652, + [SMALL_STATE(3076)] = 85739, + [SMALL_STATE(3077)] = 85822, + [SMALL_STATE(3078)] = 85889, + [SMALL_STATE(3079)] = 85946, + [SMALL_STATE(3080)] = 86003, + [SMALL_STATE(3081)] = 86100, + [SMALL_STATE(3082)] = 86181, + [SMALL_STATE(3083)] = 86250, + [SMALL_STATE(3084)] = 86307, + [SMALL_STATE(3085)] = 86384, + [SMALL_STATE(3086)] = 86457, + [SMALL_STATE(3087)] = 86532, + [SMALL_STATE(3088)] = 86601, + [SMALL_STATE(3089)] = 86702, + [SMALL_STATE(3090)] = 86803, + [SMALL_STATE(3091)] = 86908, + [SMALL_STATE(3092)] = 87005, + [SMALL_STATE(3093)] = 87062, + [SMALL_STATE(3094)] = 87163, + [SMALL_STATE(3095)] = 87219, + [SMALL_STATE(3096)] = 87281, + [SMALL_STATE(3097)] = 87337, + [SMALL_STATE(3098)] = 87393, + [SMALL_STATE(3099)] = 87449, + [SMALL_STATE(3100)] = 87505, + [SMALL_STATE(3101)] = 87563, + [SMALL_STATE(3102)] = 87619, + [SMALL_STATE(3103)] = 87675, + [SMALL_STATE(3104)] = 87731, + [SMALL_STATE(3105)] = 87791, + [SMALL_STATE(3106)] = 87853, + [SMALL_STATE(3107)] = 87913, + [SMALL_STATE(3108)] = 87969, + [SMALL_STATE(3109)] = 88029, + [SMALL_STATE(3110)] = 88085, + [SMALL_STATE(3111)] = 88141, + [SMALL_STATE(3112)] = 88197, + [SMALL_STATE(3113)] = 88253, + [SMALL_STATE(3114)] = 88309, + [SMALL_STATE(3115)] = 88365, + [SMALL_STATE(3116)] = 88421, + [SMALL_STATE(3117)] = 88477, + [SMALL_STATE(3118)] = 88533, + [SMALL_STATE(3119)] = 88593, + [SMALL_STATE(3120)] = 88653, + [SMALL_STATE(3121)] = 88709, + [SMALL_STATE(3122)] = 88765, + [SMALL_STATE(3123)] = 88821, + [SMALL_STATE(3124)] = 88877, + [SMALL_STATE(3125)] = 88933, + [SMALL_STATE(3126)] = 88989, + [SMALL_STATE(3127)] = 89045, + [SMALL_STATE(3128)] = 89101, + [SMALL_STATE(3129)] = 89157, + [SMALL_STATE(3130)] = 89213, + [SMALL_STATE(3131)] = 89269, + [SMALL_STATE(3132)] = 89325, + [SMALL_STATE(3133)] = 89381, + [SMALL_STATE(3134)] = 89441, + [SMALL_STATE(3135)] = 89499, + [SMALL_STATE(3136)] = 89555, + [SMALL_STATE(3137)] = 89611, + [SMALL_STATE(3138)] = 89667, + [SMALL_STATE(3139)] = 89723, + [SMALL_STATE(3140)] = 89779, + [SMALL_STATE(3141)] = 89835, + [SMALL_STATE(3142)] = 89891, + [SMALL_STATE(3143)] = 89947, + [SMALL_STATE(3144)] = 90003, + [SMALL_STATE(3145)] = 90059, + [SMALL_STATE(3146)] = 90115, + [SMALL_STATE(3147)] = 90171, + [SMALL_STATE(3148)] = 90233, + [SMALL_STATE(3149)] = 90289, + [SMALL_STATE(3150)] = 90345, + [SMALL_STATE(3151)] = 90401, + [SMALL_STATE(3152)] = 90456, + [SMALL_STATE(3153)] = 90511, + [SMALL_STATE(3154)] = 90566, + [SMALL_STATE(3155)] = 90621, + [SMALL_STATE(3156)] = 90676, + [SMALL_STATE(3157)] = 90731, + [SMALL_STATE(3158)] = 90786, + [SMALL_STATE(3159)] = 90841, + [SMALL_STATE(3160)] = 90896, + [SMALL_STATE(3161)] = 90951, + [SMALL_STATE(3162)] = 91006, + [SMALL_STATE(3163)] = 91061, + [SMALL_STATE(3164)] = 91116, + [SMALL_STATE(3165)] = 91179, + [SMALL_STATE(3166)] = 91234, + [SMALL_STATE(3167)] = 91289, + [SMALL_STATE(3168)] = 91344, + [SMALL_STATE(3169)] = 91399, + [SMALL_STATE(3170)] = 91454, + [SMALL_STATE(3171)] = 91509, + [SMALL_STATE(3172)] = 91564, + [SMALL_STATE(3173)] = 91619, + [SMALL_STATE(3174)] = 91674, + [SMALL_STATE(3175)] = 91729, + [SMALL_STATE(3176)] = 91784, + [SMALL_STATE(3177)] = 91839, + [SMALL_STATE(3178)] = 91894, + [SMALL_STATE(3179)] = 91949, + [SMALL_STATE(3180)] = 92004, + [SMALL_STATE(3181)] = 92059, + [SMALL_STATE(3182)] = 92114, + [SMALL_STATE(3183)] = 92169, + [SMALL_STATE(3184)] = 92224, + [SMALL_STATE(3185)] = 92279, + [SMALL_STATE(3186)] = 92334, + [SMALL_STATE(3187)] = 92389, + [SMALL_STATE(3188)] = 92444, + [SMALL_STATE(3189)] = 92499, + [SMALL_STATE(3190)] = 92554, + [SMALL_STATE(3191)] = 92609, + [SMALL_STATE(3192)] = 92664, + [SMALL_STATE(3193)] = 92719, + [SMALL_STATE(3194)] = 92774, + [SMALL_STATE(3195)] = 92829, + [SMALL_STATE(3196)] = 92884, + [SMALL_STATE(3197)] = 92939, + [SMALL_STATE(3198)] = 92994, + [SMALL_STATE(3199)] = 93049, + [SMALL_STATE(3200)] = 93104, + [SMALL_STATE(3201)] = 93159, + [SMALL_STATE(3202)] = 93214, + [SMALL_STATE(3203)] = 93269, + [SMALL_STATE(3204)] = 93324, + [SMALL_STATE(3205)] = 93379, + [SMALL_STATE(3206)] = 93434, + [SMALL_STATE(3207)] = 93489, + [SMALL_STATE(3208)] = 93544, + [SMALL_STATE(3209)] = 93599, + [SMALL_STATE(3210)] = 93654, + [SMALL_STATE(3211)] = 93709, + [SMALL_STATE(3212)] = 93764, + [SMALL_STATE(3213)] = 93819, + [SMALL_STATE(3214)] = 93874, + [SMALL_STATE(3215)] = 93929, + [SMALL_STATE(3216)] = 93983, + [SMALL_STATE(3217)] = 94043, + [SMALL_STATE(3218)] = 94097, + [SMALL_STATE(3219)] = 94157, + [SMALL_STATE(3220)] = 94251, + [SMALL_STATE(3221)] = 94311, + [SMALL_STATE(3222)] = 94365, + [SMALL_STATE(3223)] = 94419, + [SMALL_STATE(3224)] = 94473, + [SMALL_STATE(3225)] = 94529, + [SMALL_STATE(3226)] = 94583, + [SMALL_STATE(3227)] = 94637, + [SMALL_STATE(3228)] = 94691, + [SMALL_STATE(3229)] = 94747, + [SMALL_STATE(3230)] = 94801, + [SMALL_STATE(3231)] = 94855, + [SMALL_STATE(3232)] = 94911, + [SMALL_STATE(3233)] = 94965, + [SMALL_STATE(3234)] = 95019, + [SMALL_STATE(3235)] = 95073, + [SMALL_STATE(3236)] = 95131, + [SMALL_STATE(3237)] = 95225, + [SMALL_STATE(3238)] = 95279, + [SMALL_STATE(3239)] = 95333, + [SMALL_STATE(3240)] = 95387, + [SMALL_STATE(3241)] = 95447, + [SMALL_STATE(3242)] = 95501, + [SMALL_STATE(3243)] = 95555, + [SMALL_STATE(3244)] = 95609, + [SMALL_STATE(3245)] = 95663, + [SMALL_STATE(3246)] = 95717, + [SMALL_STATE(3247)] = 95810, + [SMALL_STATE(3248)] = 95903, + [SMALL_STATE(3249)] = 95996, + [SMALL_STATE(3250)] = 96089, + [SMALL_STATE(3251)] = 96182, + [SMALL_STATE(3252)] = 96275, + [SMALL_STATE(3253)] = 96368, + [SMALL_STATE(3254)] = 96461, + [SMALL_STATE(3255)] = 96554, + [SMALL_STATE(3256)] = 96647, + [SMALL_STATE(3257)] = 96740, + [SMALL_STATE(3258)] = 96833, + [SMALL_STATE(3259)] = 96926, + [SMALL_STATE(3260)] = 97019, + [SMALL_STATE(3261)] = 97112, + [SMALL_STATE(3262)] = 97205, + [SMALL_STATE(3263)] = 97298, + [SMALL_STATE(3264)] = 97371, + [SMALL_STATE(3265)] = 97464, + [SMALL_STATE(3266)] = 97557, + [SMALL_STATE(3267)] = 97650, + [SMALL_STATE(3268)] = 97743, + [SMALL_STATE(3269)] = 97836, + [SMALL_STATE(3270)] = 97929, + [SMALL_STATE(3271)] = 98022, + [SMALL_STATE(3272)] = 98115, + [SMALL_STATE(3273)] = 98188, + [SMALL_STATE(3274)] = 98256, + [SMALL_STATE(3275)] = 98324, + [SMALL_STATE(3276)] = 98378, + [SMALL_STATE(3277)] = 98442, + [SMALL_STATE(3278)] = 98502, + [SMALL_STATE(3279)] = 98558, + [SMALL_STATE(3280)] = 98616, + [SMALL_STATE(3281)] = 98668, + [SMALL_STATE(3282)] = 98720, + [SMALL_STATE(3283)] = 98772, + [SMALL_STATE(3284)] = 98824, + [SMALL_STATE(3285)] = 98876, + [SMALL_STATE(3286)] = 98928, + [SMALL_STATE(3287)] = 98992, + [SMALL_STATE(3288)] = 99056, + [SMALL_STATE(3289)] = 99120, + [SMALL_STATE(3290)] = 99184, + [SMALL_STATE(3291)] = 99236, + [SMALL_STATE(3292)] = 99300, + [SMALL_STATE(3293)] = 99358, + [SMALL_STATE(3294)] = 99410, + [SMALL_STATE(3295)] = 99468, + [SMALL_STATE(3296)] = 99526, + [SMALL_STATE(3297)] = 99594, + [SMALL_STATE(3298)] = 99658, + [SMALL_STATE(3299)] = 99722, + [SMALL_STATE(3300)] = 99790, + [SMALL_STATE(3301)] = 99842, + [SMALL_STATE(3302)] = 99896, + [SMALL_STATE(3303)] = 99948, + [SMALL_STATE(3304)] = 100006, + [SMALL_STATE(3305)] = 100070, + [SMALL_STATE(3306)] = 100124, + [SMALL_STATE(3307)] = 100191, + [SMALL_STATE(3308)] = 100258, + [SMALL_STATE(3309)] = 100315, + [SMALL_STATE(3310)] = 100382, + [SMALL_STATE(3311)] = 100449, + [SMALL_STATE(3312)] = 100506, + [SMALL_STATE(3313)] = 100563, + [SMALL_STATE(3314)] = 100620, + [SMALL_STATE(3315)] = 100684, + [SMALL_STATE(3316)] = 100748, + [SMALL_STATE(3317)] = 100798, + [SMALL_STATE(3318)] = 100848, + [SMALL_STATE(3319)] = 100904, + [SMALL_STATE(3320)] = 100998, + [SMALL_STATE(3321)] = 101064, + [SMALL_STATE(3322)] = 101114, + [SMALL_STATE(3323)] = 101164, + [SMALL_STATE(3324)] = 101230, + [SMALL_STATE(3325)] = 101294, + [SMALL_STATE(3326)] = 101388, + [SMALL_STATE(3327)] = 101438, + [SMALL_STATE(3328)] = 101504, + [SMALL_STATE(3329)] = 101554, + [SMALL_STATE(3330)] = 101620, + [SMALL_STATE(3331)] = 101711, + [SMALL_STATE(3332)] = 101760, + [SMALL_STATE(3333)] = 101819, + [SMALL_STATE(3334)] = 101868, + [SMALL_STATE(3335)] = 101917, + [SMALL_STATE(3336)] = 102008, + [SMALL_STATE(3337)] = 102059, + [SMALL_STATE(3338)] = 102110, + [SMALL_STATE(3339)] = 102201, + [SMALL_STATE(3340)] = 102292, + [SMALL_STATE(3341)] = 102383, + [SMALL_STATE(3342)] = 102474, + [SMALL_STATE(3343)] = 102565, + [SMALL_STATE(3344)] = 102656, + [SMALL_STATE(3345)] = 102709, + [SMALL_STATE(3346)] = 102780, + [SMALL_STATE(3347)] = 102871, + [SMALL_STATE(3348)] = 102926, + [SMALL_STATE(3349)] = 102979, + [SMALL_STATE(3350)] = 103028, + [SMALL_STATE(3351)] = 103119, + [SMALL_STATE(3352)] = 103174, + [SMALL_STATE(3353)] = 103265, + [SMALL_STATE(3354)] = 103314, + [SMALL_STATE(3355)] = 103369, + [SMALL_STATE(3356)] = 103418, + [SMALL_STATE(3357)] = 103489, + [SMALL_STATE(3358)] = 103580, + [SMALL_STATE(3359)] = 103671, + [SMALL_STATE(3360)] = 103720, + [SMALL_STATE(3361)] = 103769, + [SMALL_STATE(3362)] = 103818, + [SMALL_STATE(3363)] = 103867, + [SMALL_STATE(3364)] = 103916, + [SMALL_STATE(3365)] = 103987, + [SMALL_STATE(3366)] = 104078, + [SMALL_STATE(3367)] = 104169, + [SMALL_STATE(3368)] = 104260, + [SMALL_STATE(3369)] = 104309, + [SMALL_STATE(3370)] = 104380, + [SMALL_STATE(3371)] = 104451, + [SMALL_STATE(3372)] = 104500, + [SMALL_STATE(3373)] = 104591, + [SMALL_STATE(3374)] = 104682, + [SMALL_STATE(3375)] = 104731, + [SMALL_STATE(3376)] = 104794, + [SMALL_STATE(3377)] = 104843, + [SMALL_STATE(3378)] = 104914, + [SMALL_STATE(3379)] = 104963, + [SMALL_STATE(3380)] = 105054, + [SMALL_STATE(3381)] = 105103, + [SMALL_STATE(3382)] = 105174, + [SMALL_STATE(3383)] = 105265, + [SMALL_STATE(3384)] = 105356, + [SMALL_STATE(3385)] = 105416, + [SMALL_STATE(3386)] = 105504, + [SMALL_STATE(3387)] = 105592, + [SMALL_STATE(3388)] = 105680, + [SMALL_STATE(3389)] = 105768, + [SMALL_STATE(3390)] = 105816, + [SMALL_STATE(3391)] = 105904, + [SMALL_STATE(3392)] = 105992, + [SMALL_STATE(3393)] = 106040, + [SMALL_STATE(3394)] = 106088, + [SMALL_STATE(3395)] = 106176, + [SMALL_STATE(3396)] = 106224, + [SMALL_STATE(3397)] = 106276, + [SMALL_STATE(3398)] = 106364, + [SMALL_STATE(3399)] = 106412, + [SMALL_STATE(3400)] = 106500, + [SMALL_STATE(3401)] = 106588, + [SMALL_STATE(3402)] = 106636, + [SMALL_STATE(3403)] = 106724, + [SMALL_STATE(3404)] = 106812, + [SMALL_STATE(3405)] = 106866, + [SMALL_STATE(3406)] = 106914, + [SMALL_STATE(3407)] = 106962, + [SMALL_STATE(3408)] = 107010, + [SMALL_STATE(3409)] = 107064, + [SMALL_STATE(3410)] = 107112, + [SMALL_STATE(3411)] = 107160, + [SMALL_STATE(3412)] = 107208, + [SMALL_STATE(3413)] = 107256, + [SMALL_STATE(3414)] = 107304, + [SMALL_STATE(3415)] = 107352, + [SMALL_STATE(3416)] = 107400, + [SMALL_STATE(3417)] = 107448, + [SMALL_STATE(3418)] = 107496, + [SMALL_STATE(3419)] = 107544, + [SMALL_STATE(3420)] = 107592, + [SMALL_STATE(3421)] = 107640, + [SMALL_STATE(3422)] = 107688, + [SMALL_STATE(3423)] = 107756, + [SMALL_STATE(3424)] = 107804, + [SMALL_STATE(3425)] = 107896, + [SMALL_STATE(3426)] = 107984, + [SMALL_STATE(3427)] = 108032, + [SMALL_STATE(3428)] = 108088, + [SMALL_STATE(3429)] = 108176, + [SMALL_STATE(3430)] = 108230, + [SMALL_STATE(3431)] = 108278, + [SMALL_STATE(3432)] = 108326, + [SMALL_STATE(3433)] = 108418, + [SMALL_STATE(3434)] = 108472, + [SMALL_STATE(3435)] = 108540, + [SMALL_STATE(3436)] = 108628, + [SMALL_STATE(3437)] = 108716, + [SMALL_STATE(3438)] = 108776, + [SMALL_STATE(3439)] = 108864, + [SMALL_STATE(3440)] = 108920, + [SMALL_STATE(3441)] = 108968, + [SMALL_STATE(3442)] = 109056, + [SMALL_STATE(3443)] = 109104, + [SMALL_STATE(3444)] = 109152, + [SMALL_STATE(3445)] = 109240, + [SMALL_STATE(3446)] = 109328, + [SMALL_STATE(3447)] = 109376, + [SMALL_STATE(3448)] = 109424, + [SMALL_STATE(3449)] = 109472, + [SMALL_STATE(3450)] = 109520, + [SMALL_STATE(3451)] = 109568, + [SMALL_STATE(3452)] = 109616, + [SMALL_STATE(3453)] = 109664, + [SMALL_STATE(3454)] = 109712, + [SMALL_STATE(3455)] = 109760, + [SMALL_STATE(3456)] = 109820, + [SMALL_STATE(3457)] = 109868, + [SMALL_STATE(3458)] = 109956, + [SMALL_STATE(3459)] = 110004, + [SMALL_STATE(3460)] = 110064, + [SMALL_STATE(3461)] = 110112, + [SMALL_STATE(3462)] = 110160, + [SMALL_STATE(3463)] = 110208, + [SMALL_STATE(3464)] = 110256, + [SMALL_STATE(3465)] = 110316, + [SMALL_STATE(3466)] = 110364, + [SMALL_STATE(3467)] = 110412, + [SMALL_STATE(3468)] = 110460, + [SMALL_STATE(3469)] = 110508, + [SMALL_STATE(3470)] = 110568, + [SMALL_STATE(3471)] = 110616, + [SMALL_STATE(3472)] = 110704, + [SMALL_STATE(3473)] = 110764, + [SMALL_STATE(3474)] = 110818, + [SMALL_STATE(3475)] = 110866, + [SMALL_STATE(3476)] = 110914, + [SMALL_STATE(3477)] = 110962, + [SMALL_STATE(3478)] = 111010, + [SMALL_STATE(3479)] = 111058, + [SMALL_STATE(3480)] = 111114, + [SMALL_STATE(3481)] = 111162, + [SMALL_STATE(3482)] = 111210, + [SMALL_STATE(3483)] = 111298, + [SMALL_STATE(3484)] = 111346, + [SMALL_STATE(3485)] = 111398, + [SMALL_STATE(3486)] = 111486, + [SMALL_STATE(3487)] = 111538, + [SMALL_STATE(3488)] = 111626, + [SMALL_STATE(3489)] = 111674, + [SMALL_STATE(3490)] = 111734, + [SMALL_STATE(3491)] = 111782, + [SMALL_STATE(3492)] = 111870, + [SMALL_STATE(3493)] = 111918, + [SMALL_STATE(3494)] = 111978, + [SMALL_STATE(3495)] = 112026, + [SMALL_STATE(3496)] = 112090, + [SMALL_STATE(3497)] = 112138, + [SMALL_STATE(3498)] = 112186, + [SMALL_STATE(3499)] = 112234, + [SMALL_STATE(3500)] = 112282, + [SMALL_STATE(3501)] = 112330, + [SMALL_STATE(3502)] = 112378, + [SMALL_STATE(3503)] = 112426, + [SMALL_STATE(3504)] = 112474, + [SMALL_STATE(3505)] = 112524, + [SMALL_STATE(3506)] = 112572, + [SMALL_STATE(3507)] = 112620, + [SMALL_STATE(3508)] = 112708, + [SMALL_STATE(3509)] = 112756, + [SMALL_STATE(3510)] = 112844, + [SMALL_STATE(3511)] = 112897, + [SMALL_STATE(3512)] = 112944, + [SMALL_STATE(3513)] = 113005, + [SMALL_STATE(3514)] = 113064, + [SMALL_STATE(3515)] = 113111, + [SMALL_STATE(3516)] = 113172, + [SMALL_STATE(3517)] = 113219, + [SMALL_STATE(3518)] = 113266, + [SMALL_STATE(3519)] = 113319, + [SMALL_STATE(3520)] = 113378, + [SMALL_STATE(3521)] = 113431, + [SMALL_STATE(3522)] = 113478, + [SMALL_STATE(3523)] = 113525, + [SMALL_STATE(3524)] = 113586, + [SMALL_STATE(3525)] = 113645, + [SMALL_STATE(3526)] = 113706, + [SMALL_STATE(3527)] = 113753, + [SMALL_STATE(3528)] = 113800, + [SMALL_STATE(3529)] = 113847, + [SMALL_STATE(3530)] = 113894, + [SMALL_STATE(3531)] = 113951, + [SMALL_STATE(3532)] = 114000, + [SMALL_STATE(3533)] = 114047, + [SMALL_STATE(3534)] = 114106, + [SMALL_STATE(3535)] = 114165, + [SMALL_STATE(3536)] = 114214, + [SMALL_STATE(3537)] = 114275, + [SMALL_STATE(3538)] = 114334, + [SMALL_STATE(3539)] = 114381, + [SMALL_STATE(3540)] = 114440, + [SMALL_STATE(3541)] = 114487, + [SMALL_STATE(3542)] = 114534, + [SMALL_STATE(3543)] = 114593, + [SMALL_STATE(3544)] = 114640, + [SMALL_STATE(3545)] = 114691, + [SMALL_STATE(3546)] = 114742, + [SMALL_STATE(3547)] = 114789, + [SMALL_STATE(3548)] = 114836, + [SMALL_STATE(3549)] = 114885, + [SMALL_STATE(3550)] = 114946, + [SMALL_STATE(3551)] = 115007, + [SMALL_STATE(3552)] = 115054, + [SMALL_STATE(3553)] = 115113, + [SMALL_STATE(3554)] = 115172, + [SMALL_STATE(3555)] = 115233, + [SMALL_STATE(3556)] = 115286, + [SMALL_STATE(3557)] = 115345, + [SMALL_STATE(3558)] = 115402, + [SMALL_STATE(3559)] = 115461, + [SMALL_STATE(3560)] = 115514, + [SMALL_STATE(3561)] = 115575, + [SMALL_STATE(3562)] = 115626, + [SMALL_STATE(3563)] = 115704, + [SMALL_STATE(3564)] = 115790, + [SMALL_STATE(3565)] = 115874, + [SMALL_STATE(3566)] = 115920, + [SMALL_STATE(3567)] = 115972, + [SMALL_STATE(3568)] = 116034, + [SMALL_STATE(3569)] = 116108, + [SMALL_STATE(3570)] = 116154, + [SMALL_STATE(3571)] = 116250, + [SMALL_STATE(3572)] = 116336, + [SMALL_STATE(3573)] = 116418, + [SMALL_STATE(3574)] = 116482, + [SMALL_STATE(3575)] = 116534, + [SMALL_STATE(3576)] = 116624, + [SMALL_STATE(3577)] = 116696, + [SMALL_STATE(3578)] = 116784, + [SMALL_STATE(3579)] = 116852, + [SMALL_STATE(3580)] = 116938, + [SMALL_STATE(3581)] = 116990, + [SMALL_STATE(3582)] = 117076, + [SMALL_STATE(3583)] = 117128, + [SMALL_STATE(3584)] = 117214, + [SMALL_STATE(3585)] = 117282, + [SMALL_STATE(3586)] = 117348, + [SMALL_STATE(3587)] = 117434, + [SMALL_STATE(3588)] = 117514, + [SMALL_STATE(3589)] = 117607, + [SMALL_STATE(3590)] = 117700, + [SMALL_STATE(3591)] = 117793, + [SMALL_STATE(3592)] = 117870, + [SMALL_STATE(3593)] = 117961, + [SMALL_STATE(3594)] = 118020, + [SMALL_STATE(3595)] = 118113, + [SMALL_STATE(3596)] = 118206, + [SMALL_STATE(3597)] = 118299, + [SMALL_STATE(3598)] = 118392, + [SMALL_STATE(3599)] = 118439, + [SMALL_STATE(3600)] = 118530, + [SMALL_STATE(3601)] = 118623, + [SMALL_STATE(3602)] = 118716, + [SMALL_STATE(3603)] = 118793, + [SMALL_STATE(3604)] = 118870, + [SMALL_STATE(3605)] = 118963, + [SMALL_STATE(3606)] = 119056, + [SMALL_STATE(3607)] = 119109, + [SMALL_STATE(3608)] = 119202, + [SMALL_STATE(3609)] = 119295, + [SMALL_STATE(3610)] = 119372, + [SMALL_STATE(3611)] = 119465, + [SMALL_STATE(3612)] = 119542, + [SMALL_STATE(3613)] = 119635, + [SMALL_STATE(3614)] = 119728, + [SMALL_STATE(3615)] = 119805, + [SMALL_STATE(3616)] = 119898, + [SMALL_STATE(3617)] = 119991, + [SMALL_STATE(3618)] = 120084, + [SMALL_STATE(3619)] = 120177, + [SMALL_STATE(3620)] = 120226, + [SMALL_STATE(3621)] = 120275, + [SMALL_STATE(3622)] = 120352, + [SMALL_STATE(3623)] = 120445, + [SMALL_STATE(3624)] = 120538, + [SMALL_STATE(3625)] = 120615, + [SMALL_STATE(3626)] = 120674, + [SMALL_STATE(3627)] = 120751, + [SMALL_STATE(3628)] = 120844, + [SMALL_STATE(3629)] = 120937, + [SMALL_STATE(3630)] = 121014, + [SMALL_STATE(3631)] = 121091, + [SMALL_STATE(3632)] = 121146, + [SMALL_STATE(3633)] = 121195, + [SMALL_STATE(3634)] = 121288, + [SMALL_STATE(3635)] = 121347, + [SMALL_STATE(3636)] = 121440, + [SMALL_STATE(3637)] = 121495, + [SMALL_STATE(3638)] = 121572, + [SMALL_STATE(3639)] = 121665, + [SMALL_STATE(3640)] = 121742, + [SMALL_STATE(3641)] = 121835, + [SMALL_STATE(3642)] = 121884, + [SMALL_STATE(3643)] = 121931, + [SMALL_STATE(3644)] = 121986, + [SMALL_STATE(3645)] = 122079, + [SMALL_STATE(3646)] = 122172, + [SMALL_STATE(3647)] = 122249, + [SMALL_STATE(3648)] = 122342, + [SMALL_STATE(3649)] = 122435, + [SMALL_STATE(3650)] = 122528, + [SMALL_STATE(3651)] = 122605, + [SMALL_STATE(3652)] = 122656, + [SMALL_STATE(3653)] = 122749, + [SMALL_STATE(3654)] = 122826, + [SMALL_STATE(3655)] = 122875, + [SMALL_STATE(3656)] = 122952, + [SMALL_STATE(3657)] = 123029, + [SMALL_STATE(3658)] = 123119, + [SMALL_STATE(3659)] = 123209, + [SMALL_STATE(3660)] = 123275, + [SMALL_STATE(3661)] = 123319, + [SMALL_STATE(3662)] = 123363, + [SMALL_STATE(3663)] = 123447, + [SMALL_STATE(3664)] = 123491, + [SMALL_STATE(3665)] = 123575, + [SMALL_STATE(3666)] = 123621, + [SMALL_STATE(3667)] = 123707, + [SMALL_STATE(3668)] = 123751, + [SMALL_STATE(3669)] = 123841, + [SMALL_STATE(3670)] = 123931, + [SMALL_STATE(3671)] = 123983, + [SMALL_STATE(3672)] = 124073, + [SMALL_STATE(3673)] = 124163, + [SMALL_STATE(3674)] = 124247, + [SMALL_STATE(3675)] = 124337, + [SMALL_STATE(3676)] = 124427, + [SMALL_STATE(3677)] = 124517, + [SMALL_STATE(3678)] = 124607, + [SMALL_STATE(3679)] = 124697, + [SMALL_STATE(3680)] = 124787, + [SMALL_STATE(3681)] = 124877, + [SMALL_STATE(3682)] = 124967, + [SMALL_STATE(3683)] = 125057, + [SMALL_STATE(3684)] = 125147, + [SMALL_STATE(3685)] = 125199, + [SMALL_STATE(3686)] = 125259, + [SMALL_STATE(3687)] = 125327, + [SMALL_STATE(3688)] = 125409, + [SMALL_STATE(3689)] = 125499, + [SMALL_STATE(3690)] = 125579, + [SMALL_STATE(3691)] = 125667, + [SMALL_STATE(3692)] = 125745, + [SMALL_STATE(3693)] = 125821, + [SMALL_STATE(3694)] = 125893, + [SMALL_STATE(3695)] = 125963, + [SMALL_STATE(3696)] = 126029, + [SMALL_STATE(3697)] = 126119, + [SMALL_STATE(3698)] = 126209, + [SMALL_STATE(3699)] = 126299, + [SMALL_STATE(3700)] = 126389, + [SMALL_STATE(3701)] = 126479, + [SMALL_STATE(3702)] = 126567, + [SMALL_STATE(3703)] = 126629, + [SMALL_STATE(3704)] = 126693, + [SMALL_STATE(3705)] = 126781, + [SMALL_STATE(3706)] = 126871, + [SMALL_STATE(3707)] = 126915, + [SMALL_STATE(3708)] = 127005, + [SMALL_STATE(3709)] = 127093, + [SMALL_STATE(3710)] = 127183, + [SMALL_STATE(3711)] = 127273, + [SMALL_STATE(3712)] = 127317, + [SMALL_STATE(3713)] = 127401, + [SMALL_STATE(3714)] = 127491, + [SMALL_STATE(3715)] = 127581, + [SMALL_STATE(3716)] = 127665, + [SMALL_STATE(3717)] = 127755, + [SMALL_STATE(3718)] = 127845, + [SMALL_STATE(3719)] = 127935, + [SMALL_STATE(3720)] = 128025, + [SMALL_STATE(3721)] = 128115, + [SMALL_STATE(3722)] = 128171, + [SMALL_STATE(3723)] = 128215, + [SMALL_STATE(3724)] = 128303, + [SMALL_STATE(3725)] = 128347, + [SMALL_STATE(3726)] = 128437, + [SMALL_STATE(3727)] = 128527, + [SMALL_STATE(3728)] = 128617, + [SMALL_STATE(3729)] = 128707, + [SMALL_STATE(3730)] = 128797, + [SMALL_STATE(3731)] = 128887, + [SMALL_STATE(3732)] = 128975, + [SMALL_STATE(3733)] = 129065, + [SMALL_STATE(3734)] = 129155, + [SMALL_STATE(3735)] = 129245, + [SMALL_STATE(3736)] = 129335, + [SMALL_STATE(3737)] = 129425, + [SMALL_STATE(3738)] = 129469, + [SMALL_STATE(3739)] = 129553, + [SMALL_STATE(3740)] = 129643, + [SMALL_STATE(3741)] = 129733, + [SMALL_STATE(3742)] = 129821, + [SMALL_STATE(3743)] = 129867, + [SMALL_STATE(3744)] = 129957, + [SMALL_STATE(3745)] = 130047, + [SMALL_STATE(3746)] = 130091, + [SMALL_STATE(3747)] = 130181, + [SMALL_STATE(3748)] = 130271, + [SMALL_STATE(3749)] = 130361, + [SMALL_STATE(3750)] = 130405, + [SMALL_STATE(3751)] = 130495, + [SMALL_STATE(3752)] = 130585, + [SMALL_STATE(3753)] = 130629, + [SMALL_STATE(3754)] = 130673, + [SMALL_STATE(3755)] = 130763, + [SMALL_STATE(3756)] = 130853, + [SMALL_STATE(3757)] = 130943, + [SMALL_STATE(3758)] = 130987, + [SMALL_STATE(3759)] = 131075, + [SMALL_STATE(3760)] = 131119, + [SMALL_STATE(3761)] = 131207, + [SMALL_STATE(3762)] = 131287, + [SMALL_STATE(3763)] = 131331, + [SMALL_STATE(3764)] = 131419, + [SMALL_STATE(3765)] = 131463, + [SMALL_STATE(3766)] = 131507, + [SMALL_STATE(3767)] = 131597, + [SMALL_STATE(3768)] = 131641, + [SMALL_STATE(3769)] = 131707, + [SMALL_STATE(3770)] = 131797, + [SMALL_STATE(3771)] = 131851, + [SMALL_STATE(3772)] = 131913, + [SMALL_STATE(3773)] = 132003, + [SMALL_STATE(3774)] = 132093, + [SMALL_STATE(3775)] = 132161, + [SMALL_STATE(3776)] = 132209, + [SMALL_STATE(3777)] = 132279, + [SMALL_STATE(3778)] = 132351, + [SMALL_STATE(3779)] = 132441, + [SMALL_STATE(3780)] = 132531, + [SMALL_STATE(3781)] = 132607, + [SMALL_STATE(3782)] = 132691, + [SMALL_STATE(3783)] = 132781, + [SMALL_STATE(3784)] = 132859, + [SMALL_STATE(3785)] = 132909, + [SMALL_STATE(3786)] = 132997, + [SMALL_STATE(3787)] = 133077, + [SMALL_STATE(3788)] = 133167, + [SMALL_STATE(3789)] = 133257, + [SMALL_STATE(3790)] = 133339, + [SMALL_STATE(3791)] = 133395, + [SMALL_STATE(3792)] = 133483, + [SMALL_STATE(3793)] = 133543, + [SMALL_STATE(3794)] = 133589, + [SMALL_STATE(3795)] = 133679, + [SMALL_STATE(3796)] = 133729, + [SMALL_STATE(3797)] = 133819, + [SMALL_STATE(3798)] = 133909, + [SMALL_STATE(3799)] = 133999, + [SMALL_STATE(3800)] = 134089, + [SMALL_STATE(3801)] = 134179, + [SMALL_STATE(3802)] = 134269, + [SMALL_STATE(3803)] = 134313, + [SMALL_STATE(3804)] = 134401, + [SMALL_STATE(3805)] = 134481, + [SMALL_STATE(3806)] = 134567, + [SMALL_STATE(3807)] = 134657, + [SMALL_STATE(3808)] = 134741, + [SMALL_STATE(3809)] = 134831, + [SMALL_STATE(3810)] = 134875, + [SMALL_STATE(3811)] = 134931, + [SMALL_STATE(3812)] = 135021, + [SMALL_STATE(3813)] = 135093, + [SMALL_STATE(3814)] = 135183, + [SMALL_STATE(3815)] = 135237, + [SMALL_STATE(3816)] = 135327, + [SMALL_STATE(3817)] = 135417, + [SMALL_STATE(3818)] = 135507, + [SMALL_STATE(3819)] = 135579, + [SMALL_STATE(3820)] = 135669, + [SMALL_STATE(3821)] = 135713, + [SMALL_STATE(3822)] = 135800, + [SMALL_STATE(3823)] = 135887, + [SMALL_STATE(3824)] = 135958, + [SMALL_STATE(3825)] = 136041, + [SMALL_STATE(3826)] = 136128, + [SMALL_STATE(3827)] = 136215, + [SMALL_STATE(3828)] = 136258, + [SMALL_STATE(3829)] = 136301, + [SMALL_STATE(3830)] = 136344, + [SMALL_STATE(3831)] = 136387, + [SMALL_STATE(3832)] = 136474, + [SMALL_STATE(3833)] = 136561, + [SMALL_STATE(3834)] = 136632, + [SMALL_STATE(3835)] = 136675, + [SMALL_STATE(3836)] = 136762, + [SMALL_STATE(3837)] = 136833, + [SMALL_STATE(3838)] = 136920, + [SMALL_STATE(3839)] = 137007, + [SMALL_STATE(3840)] = 137078, + [SMALL_STATE(3841)] = 137121, + [SMALL_STATE(3842)] = 137208, + [SMALL_STATE(3843)] = 137251, + [SMALL_STATE(3844)] = 137294, + [SMALL_STATE(3845)] = 137337, + [SMALL_STATE(3846)] = 137424, + [SMALL_STATE(3847)] = 137467, + [SMALL_STATE(3848)] = 137554, + [SMALL_STATE(3849)] = 137597, + [SMALL_STATE(3850)] = 137684, + [SMALL_STATE(3851)] = 137771, + [SMALL_STATE(3852)] = 137858, + [SMALL_STATE(3853)] = 137945, + [SMALL_STATE(3854)] = 138032, + [SMALL_STATE(3855)] = 138075, + [SMALL_STATE(3856)] = 138162, + [SMALL_STATE(3857)] = 138205, + [SMALL_STATE(3858)] = 138292, + [SMALL_STATE(3859)] = 138379, + [SMALL_STATE(3860)] = 138466, + [SMALL_STATE(3861)] = 138553, + [SMALL_STATE(3862)] = 138640, + [SMALL_STATE(3863)] = 138727, + [SMALL_STATE(3864)] = 138770, + [SMALL_STATE(3865)] = 138857, + [SMALL_STATE(3866)] = 138944, + [SMALL_STATE(3867)] = 139031, + [SMALL_STATE(3868)] = 139118, + [SMALL_STATE(3869)] = 139205, + [SMALL_STATE(3870)] = 139248, + [SMALL_STATE(3871)] = 139303, + [SMALL_STATE(3872)] = 139374, + [SMALL_STATE(3873)] = 139417, + [SMALL_STATE(3874)] = 139504, + [SMALL_STATE(3875)] = 139547, + [SMALL_STATE(3876)] = 139606, + [SMALL_STATE(3877)] = 139687, + [SMALL_STATE(3878)] = 139774, + [SMALL_STATE(3879)] = 139817, + [SMALL_STATE(3880)] = 139904, + [SMALL_STATE(3881)] = 139991, + [SMALL_STATE(3882)] = 140034, + [SMALL_STATE(3883)] = 140113, + [SMALL_STATE(3884)] = 140156, + [SMALL_STATE(3885)] = 140243, + [SMALL_STATE(3886)] = 140320, + [SMALL_STATE(3887)] = 140407, + [SMALL_STATE(3888)] = 140494, + [SMALL_STATE(3889)] = 140581, + [SMALL_STATE(3890)] = 140668, + [SMALL_STATE(3891)] = 140711, + [SMALL_STATE(3892)] = 140798, + [SMALL_STATE(3893)] = 140873, + [SMALL_STATE(3894)] = 140944, + [SMALL_STATE(3895)] = 141031, + [SMALL_STATE(3896)] = 141074, + [SMALL_STATE(3897)] = 141161, + [SMALL_STATE(3898)] = 141204, + [SMALL_STATE(3899)] = 141247, + [SMALL_STATE(3900)] = 141334, + [SMALL_STATE(3901)] = 141379, + [SMALL_STATE(3902)] = 141422, + [SMALL_STATE(3903)] = 141465, + [SMALL_STATE(3904)] = 141508, + [SMALL_STATE(3905)] = 141551, + [SMALL_STATE(3906)] = 141620, + [SMALL_STATE(3907)] = 141685, + [SMALL_STATE(3908)] = 141772, + [SMALL_STATE(3909)] = 141859, + [SMALL_STATE(3910)] = 141920, + [SMALL_STATE(3911)] = 141983, + [SMALL_STATE(3912)] = 142070, + [SMALL_STATE(3913)] = 142113, + [SMALL_STATE(3914)] = 142156, + [SMALL_STATE(3915)] = 142243, + [SMALL_STATE(3916)] = 142330, + [SMALL_STATE(3917)] = 142413, + [SMALL_STATE(3918)] = 142500, + [SMALL_STATE(3919)] = 142543, + [SMALL_STATE(3920)] = 142614, + [SMALL_STATE(3921)] = 142657, + [SMALL_STATE(3922)] = 142700, + [SMALL_STATE(3923)] = 142783, + [SMALL_STATE(3924)] = 142870, + [SMALL_STATE(3925)] = 142913, + [SMALL_STATE(3926)] = 142956, + [SMALL_STATE(3927)] = 143043, + [SMALL_STATE(3928)] = 143130, + [SMALL_STATE(3929)] = 143173, + [SMALL_STATE(3930)] = 143216, + [SMALL_STATE(3931)] = 143303, + [SMALL_STATE(3932)] = 143358, + [SMALL_STATE(3933)] = 143445, + [SMALL_STATE(3934)] = 143532, + [SMALL_STATE(3935)] = 143619, + [SMALL_STATE(3936)] = 143706, + [SMALL_STATE(3937)] = 143793, + [SMALL_STATE(3938)] = 143880, + [SMALL_STATE(3939)] = 143967, + [SMALL_STATE(3940)] = 144038, + [SMALL_STATE(3941)] = 144125, + [SMALL_STATE(3942)] = 144212, + [SMALL_STATE(3943)] = 144299, + [SMALL_STATE(3944)] = 144386, + [SMALL_STATE(3945)] = 144473, + [SMALL_STATE(3946)] = 144560, + [SMALL_STATE(3947)] = 144603, + [SMALL_STATE(3948)] = 144690, + [SMALL_STATE(3949)] = 144777, + [SMALL_STATE(3950)] = 144864, + [SMALL_STATE(3951)] = 144935, + [SMALL_STATE(3952)] = 144978, + [SMALL_STATE(3953)] = 145049, + [SMALL_STATE(3954)] = 145092, + [SMALL_STATE(3955)] = 145135, + [SMALL_STATE(3956)] = 145222, + [SMALL_STATE(3957)] = 145301, + [SMALL_STATE(3958)] = 145344, + [SMALL_STATE(3959)] = 145397, + [SMALL_STATE(3960)] = 145484, + [SMALL_STATE(3961)] = 145527, + [SMALL_STATE(3962)] = 145614, + [SMALL_STATE(3963)] = 145657, + [SMALL_STATE(3964)] = 145744, + [SMALL_STATE(3965)] = 145831, + [SMALL_STATE(3966)] = 145918, + [SMALL_STATE(3967)] = 145961, + [SMALL_STATE(3968)] = 146004, + [SMALL_STATE(3969)] = 146091, + [SMALL_STATE(3970)] = 146178, + [SMALL_STATE(3971)] = 146265, + [SMALL_STATE(3972)] = 146308, + [SMALL_STATE(3973)] = 146395, + [SMALL_STATE(3974)] = 146438, + [SMALL_STATE(3975)] = 146525, + [SMALL_STATE(3976)] = 146568, + [SMALL_STATE(3977)] = 146621, + [SMALL_STATE(3978)] = 146676, + [SMALL_STATE(3979)] = 146719, + [SMALL_STATE(3980)] = 146772, + [SMALL_STATE(3981)] = 146859, + [SMALL_STATE(3982)] = 146902, + [SMALL_STATE(3983)] = 146945, + [SMALL_STATE(3984)] = 146988, + [SMALL_STATE(3985)] = 147031, + [SMALL_STATE(3986)] = 147118, + [SMALL_STATE(3987)] = 147205, + [SMALL_STATE(3988)] = 147292, + [SMALL_STATE(3989)] = 147379, + [SMALL_STATE(3990)] = 147466, + [SMALL_STATE(3991)] = 147513, + [SMALL_STATE(3992)] = 147600, + [SMALL_STATE(3993)] = 147643, + [SMALL_STATE(3994)] = 147686, + [SMALL_STATE(3995)] = 147769, + [SMALL_STATE(3996)] = 147812, + [SMALL_STATE(3997)] = 147855, + [SMALL_STATE(3998)] = 147920, + [SMALL_STATE(3999)] = 148007, + [SMALL_STATE(4000)] = 148094, + [SMALL_STATE(4001)] = 148181, + [SMALL_STATE(4002)] = 148224, + [SMALL_STATE(4003)] = 148311, + [SMALL_STATE(4004)] = 148398, + [SMALL_STATE(4005)] = 148485, + [SMALL_STATE(4006)] = 148528, + [SMALL_STATE(4007)] = 148615, + [SMALL_STATE(4008)] = 148658, + [SMALL_STATE(4009)] = 148711, + [SMALL_STATE(4010)] = 148754, + [SMALL_STATE(4011)] = 148797, + [SMALL_STATE(4012)] = 148840, + [SMALL_STATE(4013)] = 148927, + [SMALL_STATE(4014)] = 149014, + [SMALL_STATE(4015)] = 149057, + [SMALL_STATE(4016)] = 149144, + [SMALL_STATE(4017)] = 149187, + [SMALL_STATE(4018)] = 149230, + [SMALL_STATE(4019)] = 149315, + [SMALL_STATE(4020)] = 149358, + [SMALL_STATE(4021)] = 149401, + [SMALL_STATE(4022)] = 149444, + [SMALL_STATE(4023)] = 149487, + [SMALL_STATE(4024)] = 149574, + [SMALL_STATE(4025)] = 149661, + [SMALL_STATE(4026)] = 149748, + [SMALL_STATE(4027)] = 149791, + [SMALL_STATE(4028)] = 149834, + [SMALL_STATE(4029)] = 149877, + [SMALL_STATE(4030)] = 149920, + [SMALL_STATE(4031)] = 150007, + [SMALL_STATE(4032)] = 150050, + [SMALL_STATE(4033)] = 150137, + [SMALL_STATE(4034)] = 150224, + [SMALL_STATE(4035)] = 150267, + [SMALL_STATE(4036)] = 150354, + [SMALL_STATE(4037)] = 150397, + [SMALL_STATE(4038)] = 150440, + [SMALL_STATE(4039)] = 150527, + [SMALL_STATE(4040)] = 150570, + [SMALL_STATE(4041)] = 150657, + [SMALL_STATE(4042)] = 150744, + [SMALL_STATE(4043)] = 150815, + [SMALL_STATE(4044)] = 150858, + [SMALL_STATE(4045)] = 150945, + [SMALL_STATE(4046)] = 151032, + [SMALL_STATE(4047)] = 151119, + [SMALL_STATE(4048)] = 151162, + [SMALL_STATE(4049)] = 151249, + [SMALL_STATE(4050)] = 151292, + [SMALL_STATE(4051)] = 151379, + [SMALL_STATE(4052)] = 151422, + [SMALL_STATE(4053)] = 151465, + [SMALL_STATE(4054)] = 151508, + [SMALL_STATE(4055)] = 151551, + [SMALL_STATE(4056)] = 151594, + [SMALL_STATE(4057)] = 151681, + [SMALL_STATE(4058)] = 151724, + [SMALL_STATE(4059)] = 151811, + [SMALL_STATE(4060)] = 151865, + [SMALL_STATE(4061)] = 151915, + [SMALL_STATE(4062)] = 151985, + [SMALL_STATE(4063)] = 152037, + [SMALL_STATE(4064)] = 152107, + [SMALL_STATE(4065)] = 152161, + [SMALL_STATE(4066)] = 152225, + [SMALL_STATE(4067)] = 152289, + [SMALL_STATE(4068)] = 152341, + [SMALL_STATE(4069)] = 152425, + [SMALL_STATE(4070)] = 152492, + [SMALL_STATE(4071)] = 152535, + [SMALL_STATE(4072)] = 152576, + [SMALL_STATE(4073)] = 152617, + [SMALL_STATE(4074)] = 152682, + [SMALL_STATE(4075)] = 152723, + [SMALL_STATE(4076)] = 152764, + [SMALL_STATE(4077)] = 152805, + [SMALL_STATE(4078)] = 152850, + [SMALL_STATE(4079)] = 152891, + [SMALL_STATE(4080)] = 152956, + [SMALL_STATE(4081)] = 152997, + [SMALL_STATE(4082)] = 153062, + [SMALL_STATE(4083)] = 153127, + [SMALL_STATE(4084)] = 153194, + [SMALL_STATE(4085)] = 153274, + [SMALL_STATE(4086)] = 153322, + [SMALL_STATE(4087)] = 153386, + [SMALL_STATE(4088)] = 153452, + [SMALL_STATE(4089)] = 153516, + [SMALL_STATE(4090)] = 153560, + [SMALL_STATE(4091)] = 153640, + [SMALL_STATE(4092)] = 153720, + [SMALL_STATE(4093)] = 153800, + [SMALL_STATE(4094)] = 153840, + [SMALL_STATE(4095)] = 153920, + [SMALL_STATE(4096)] = 153988, + [SMALL_STATE(4097)] = 154068, + [SMALL_STATE(4098)] = 154148, + [SMALL_STATE(4099)] = 154228, + [SMALL_STATE(4100)] = 154296, + [SMALL_STATE(4101)] = 154376, + [SMALL_STATE(4102)] = 154456, + [SMALL_STATE(4103)] = 154498, + [SMALL_STATE(4104)] = 154578, + [SMALL_STATE(4105)] = 154658, + [SMALL_STATE(4106)] = 154724, + [SMALL_STATE(4107)] = 154804, + [SMALL_STATE(4108)] = 154852, + [SMALL_STATE(4109)] = 154896, + [SMALL_STATE(4110)] = 154964, + [SMALL_STATE(4111)] = 155032, + [SMALL_STATE(4112)] = 155112, + [SMALL_STATE(4113)] = 155192, + [SMALL_STATE(4114)] = 155232, + [SMALL_STATE(4115)] = 155288, + [SMALL_STATE(4116)] = 155368, + [SMALL_STATE(4117)] = 155448, + [SMALL_STATE(4118)] = 155528, + [SMALL_STATE(4119)] = 155593, + [SMALL_STATE(4120)] = 155658, + [SMALL_STATE(4121)] = 155725, + [SMALL_STATE(4122)] = 155788, + [SMALL_STATE(4123)] = 155829, + [SMALL_STATE(4124)] = 155884, + [SMALL_STATE(4125)] = 155947, + [SMALL_STATE(4126)] = 156002, + [SMALL_STATE(4127)] = 156041, + [SMALL_STATE(4128)] = 156096, + [SMALL_STATE(4129)] = 156163, + [SMALL_STATE(4130)] = 156218, + [SMALL_STATE(4131)] = 156292, + [SMALL_STATE(4132)] = 156366, + [SMALL_STATE(4133)] = 156440, + [SMALL_STATE(4134)] = 156514, + [SMALL_STATE(4135)] = 156554, + [SMALL_STATE(4136)] = 156628, + [SMALL_STATE(4137)] = 156702, + [SMALL_STATE(4138)] = 156776, + [SMALL_STATE(4139)] = 156850, + [SMALL_STATE(4140)] = 156924, + [SMALL_STATE(4141)] = 156970, + [SMALL_STATE(4142)] = 157044, + [SMALL_STATE(4143)] = 157118, + [SMALL_STATE(4144)] = 157192, + [SMALL_STATE(4145)] = 157266, + [SMALL_STATE(4146)] = 157340, + [SMALL_STATE(4147)] = 157404, + [SMALL_STATE(4148)] = 157462, + [SMALL_STATE(4149)] = 157536, + [SMALL_STATE(4150)] = 157610, + [SMALL_STATE(4151)] = 157684, + [SMALL_STATE(4152)] = 157758, + [SMALL_STATE(4153)] = 157832, + [SMALL_STATE(4154)] = 157906, + [SMALL_STATE(4155)] = 157964, + [SMALL_STATE(4156)] = 158038, + [SMALL_STATE(4157)] = 158076, + [SMALL_STATE(4158)] = 158150, + [SMALL_STATE(4159)] = 158224, + [SMALL_STATE(4160)] = 158288, + [SMALL_STATE(4161)] = 158362, + [SMALL_STATE(4162)] = 158436, + [SMALL_STATE(4163)] = 158510, + [SMALL_STATE(4164)] = 158570, + [SMALL_STATE(4165)] = 158644, + [SMALL_STATE(4166)] = 158718, + [SMALL_STATE(4167)] = 158792, + [SMALL_STATE(4168)] = 158852, + [SMALL_STATE(4169)] = 158910, + [SMALL_STATE(4170)] = 158984, + [SMALL_STATE(4171)] = 159058, + [SMALL_STATE(4172)] = 159132, + [SMALL_STATE(4173)] = 159206, + [SMALL_STATE(4174)] = 159266, + [SMALL_STATE(4175)] = 159340, + [SMALL_STATE(4176)] = 159414, + [SMALL_STATE(4177)] = 159488, + [SMALL_STATE(4178)] = 159562, + [SMALL_STATE(4179)] = 159622, + [SMALL_STATE(4180)] = 159696, + [SMALL_STATE(4181)] = 159770, + [SMALL_STATE(4182)] = 159828, + [SMALL_STATE(4183)] = 159902, + [SMALL_STATE(4184)] = 159976, + [SMALL_STATE(4185)] = 160050, + [SMALL_STATE(4186)] = 160109, + [SMALL_STATE(4187)] = 160168, + [SMALL_STATE(4188)] = 160205, + [SMALL_STATE(4189)] = 160264, + [SMALL_STATE(4190)] = 160325, + [SMALL_STATE(4191)] = 160388, + [SMALL_STATE(4192)] = 160451, + [SMALL_STATE(4193)] = 160510, + [SMALL_STATE(4194)] = 160569, + [SMALL_STATE(4195)] = 160628, + [SMALL_STATE(4196)] = 160691, + [SMALL_STATE(4197)] = 160728, + [SMALL_STATE(4198)] = 160779, + [SMALL_STATE(4199)] = 160842, + [SMALL_STATE(4200)] = 160903, + [SMALL_STATE(4201)] = 160966, + [SMALL_STATE(4202)] = 161025, + [SMALL_STATE(4203)] = 161082, + [SMALL_STATE(4204)] = 161143, + [SMALL_STATE(4205)] = 161184, + [SMALL_STATE(4206)] = 161247, + [SMALL_STATE(4207)] = 161304, + [SMALL_STATE(4208)] = 161341, + [SMALL_STATE(4209)] = 161398, + [SMALL_STATE(4210)] = 161459, + [SMALL_STATE(4211)] = 161518, + [SMALL_STATE(4212)] = 161575, + [SMALL_STATE(4213)] = 161624, + [SMALL_STATE(4214)] = 161687, + [SMALL_STATE(4215)] = 161750, + [SMALL_STATE(4216)] = 161816, + [SMALL_STATE(4217)] = 161882, + [SMALL_STATE(4218)] = 161918, + [SMALL_STATE(4219)] = 161976, + [SMALL_STATE(4220)] = 162034, + [SMALL_STATE(4221)] = 162100, + [SMALL_STATE(4222)] = 162166, + [SMALL_STATE(4223)] = 162228, + [SMALL_STATE(4224)] = 162288, + [SMALL_STATE(4225)] = 162354, + [SMALL_STATE(4226)] = 162390, + [SMALL_STATE(4227)] = 162456, + [SMALL_STATE(4228)] = 162514, + [SMALL_STATE(4229)] = 162570, + [SMALL_STATE(4230)] = 162628, + [SMALL_STATE(4231)] = 162684, + [SMALL_STATE(4232)] = 162750, + [SMALL_STATE(4233)] = 162816, + [SMALL_STATE(4234)] = 162852, + [SMALL_STATE(4235)] = 162908, + [SMALL_STATE(4236)] = 162974, + [SMALL_STATE(4237)] = 163030, + [SMALL_STATE(4238)] = 163096, + [SMALL_STATE(4239)] = 163162, + [SMALL_STATE(4240)] = 163228, + [SMALL_STATE(4241)] = 163294, + [SMALL_STATE(4242)] = 163344, + [SMALL_STATE(4243)] = 163406, + [SMALL_STATE(4244)] = 163472, + [SMALL_STATE(4245)] = 163532, + [SMALL_STATE(4246)] = 163598, + [SMALL_STATE(4247)] = 163658, + [SMALL_STATE(4248)] = 163718, + [SMALL_STATE(4249)] = 163784, + [SMALL_STATE(4250)] = 163850, + [SMALL_STATE(4251)] = 163916, + [SMALL_STATE(4252)] = 163956, + [SMALL_STATE(4253)] = 164022, + [SMALL_STATE(4254)] = 164088, + [SMALL_STATE(4255)] = 164127, + [SMALL_STATE(4256)] = 164162, + [SMALL_STATE(4257)] = 164217, + [SMALL_STATE(4258)] = 164280, + [SMALL_STATE(4259)] = 164343, + [SMALL_STATE(4260)] = 164406, + [SMALL_STATE(4261)] = 164447, + [SMALL_STATE(4262)] = 164510, + [SMALL_STATE(4263)] = 164571, + [SMALL_STATE(4264)] = 164612, + [SMALL_STATE(4265)] = 164675, + [SMALL_STATE(4266)] = 164730, + [SMALL_STATE(4267)] = 164785, + [SMALL_STATE(4268)] = 164840, + [SMALL_STATE(4269)] = 164881, + [SMALL_STATE(4270)] = 164924, + [SMALL_STATE(4271)] = 164979, + [SMALL_STATE(4272)] = 165022, + [SMALL_STATE(4273)] = 165085, + [SMALL_STATE(4274)] = 165148, + [SMALL_STATE(4275)] = 165203, + [SMALL_STATE(4276)] = 165266, + [SMALL_STATE(4277)] = 165307, + [SMALL_STATE(4278)] = 165370, + [SMALL_STATE(4279)] = 165425, + [SMALL_STATE(4280)] = 165486, + [SMALL_STATE(4281)] = 165549, + [SMALL_STATE(4282)] = 165612, + [SMALL_STATE(4283)] = 165667, + [SMALL_STATE(4284)] = 165722, + [SMALL_STATE(4285)] = 165757, + [SMALL_STATE(4286)] = 165820, + [SMALL_STATE(4287)] = 165855, + [SMALL_STATE(4288)] = 165918, + [SMALL_STATE(4289)] = 165953, + [SMALL_STATE(4290)] = 166016, + [SMALL_STATE(4291)] = 166079, + [SMALL_STATE(4292)] = 166142, + [SMALL_STATE(4293)] = 166197, + [SMALL_STATE(4294)] = 166260, + [SMALL_STATE(4295)] = 166323, + [SMALL_STATE(4296)] = 166386, + [SMALL_STATE(4297)] = 166449, + [SMALL_STATE(4298)] = 166484, + [SMALL_STATE(4299)] = 166525, + [SMALL_STATE(4300)] = 166562, + [SMALL_STATE(4301)] = 166617, + [SMALL_STATE(4302)] = 166672, + [SMALL_STATE(4303)] = 166707, + [SMALL_STATE(4304)] = 166770, + [SMALL_STATE(4305)] = 166833, + [SMALL_STATE(4306)] = 166896, + [SMALL_STATE(4307)] = 166931, + [SMALL_STATE(4308)] = 166986, + [SMALL_STATE(4309)] = 167049, + [SMALL_STATE(4310)] = 167112, + [SMALL_STATE(4311)] = 167167, + [SMALL_STATE(4312)] = 167221, + [SMALL_STATE(4313)] = 167267, + [SMALL_STATE(4314)] = 167321, + [SMALL_STATE(4315)] = 167375, + [SMALL_STATE(4316)] = 167429, + [SMALL_STATE(4317)] = 167483, + [SMALL_STATE(4318)] = 167537, + [SMALL_STATE(4319)] = 167591, + [SMALL_STATE(4320)] = 167645, + [SMALL_STATE(4321)] = 167699, + [SMALL_STATE(4322)] = 167739, + [SMALL_STATE(4323)] = 167795, + [SMALL_STATE(4324)] = 167849, + [SMALL_STATE(4325)] = 167903, + [SMALL_STATE(4326)] = 167949, + [SMALL_STATE(4327)] = 168003, + [SMALL_STATE(4328)] = 168057, + [SMALL_STATE(4329)] = 168111, + [SMALL_STATE(4330)] = 168157, + [SMALL_STATE(4331)] = 168193, + [SMALL_STATE(4332)] = 168239, + [SMALL_STATE(4333)] = 168293, + [SMALL_STATE(4334)] = 168347, + [SMALL_STATE(4335)] = 168403, + [SMALL_STATE(4336)] = 168459, + [SMALL_STATE(4337)] = 168515, + [SMALL_STATE(4338)] = 168569, + [SMALL_STATE(4339)] = 168609, + [SMALL_STATE(4340)] = 168663, + [SMALL_STATE(4341)] = 168717, + [SMALL_STATE(4342)] = 168771, + [SMALL_STATE(4343)] = 168827, + [SMALL_STATE(4344)] = 168883, + [SMALL_STATE(4345)] = 168929, + [SMALL_STATE(4346)] = 168983, + [SMALL_STATE(4347)] = 169029, + [SMALL_STATE(4348)] = 169075, + [SMALL_STATE(4349)] = 169129, + [SMALL_STATE(4350)] = 169175, + [SMALL_STATE(4351)] = 169229, + [SMALL_STATE(4352)] = 169275, + [SMALL_STATE(4353)] = 169329, + [SMALL_STATE(4354)] = 169385, + [SMALL_STATE(4355)] = 169441, + [SMALL_STATE(4356)] = 169474, + [SMALL_STATE(4357)] = 169507, + [SMALL_STATE(4358)] = 169548, + [SMALL_STATE(4359)] = 169589, + [SMALL_STATE(4360)] = 169624, + [SMALL_STATE(4361)] = 169657, + [SMALL_STATE(4362)] = 169690, + [SMALL_STATE(4363)] = 169745, + [SMALL_STATE(4364)] = 169778, + [SMALL_STATE(4365)] = 169833, + [SMALL_STATE(4366)] = 169888, + [SMALL_STATE(4367)] = 169921, + [SMALL_STATE(4368)] = 169954, + [SMALL_STATE(4369)] = 169987, + [SMALL_STATE(4370)] = 170026, + [SMALL_STATE(4371)] = 170063, + [SMALL_STATE(4372)] = 170116, + [SMALL_STATE(4373)] = 170169, + [SMALL_STATE(4374)] = 170202, + [SMALL_STATE(4375)] = 170241, + [SMALL_STATE(4376)] = 170276, + [SMALL_STATE(4377)] = 170311, + [SMALL_STATE(4378)] = 170364, + [SMALL_STATE(4379)] = 170419, + [SMALL_STATE(4380)] = 170472, + [SMALL_STATE(4381)] = 170504, + [SMALL_STATE(4382)] = 170556, + [SMALL_STATE(4383)] = 170594, + [SMALL_STATE(4384)] = 170626, + [SMALL_STATE(4385)] = 170660, + [SMALL_STATE(4386)] = 170692, + [SMALL_STATE(4387)] = 170724, + [SMALL_STATE(4388)] = 170762, + [SMALL_STATE(4389)] = 170814, + [SMALL_STATE(4390)] = 170866, + [SMALL_STATE(4391)] = 170898, + [SMALL_STATE(4392)] = 170930, + [SMALL_STATE(4393)] = 170982, + [SMALL_STATE(4394)] = 171034, + [SMALL_STATE(4395)] = 171086, + [SMALL_STATE(4396)] = 171118, + [SMALL_STATE(4397)] = 171150, + [SMALL_STATE(4398)] = 171182, + [SMALL_STATE(4399)] = 171214, + [SMALL_STATE(4400)] = 171266, + [SMALL_STATE(4401)] = 171298, + [SMALL_STATE(4402)] = 171334, + [SMALL_STATE(4403)] = 171386, + [SMALL_STATE(4404)] = 171418, + [SMALL_STATE(4405)] = 171451, + [SMALL_STATE(4406)] = 171508, + [SMALL_STATE(4407)] = 171567, + [SMALL_STATE(4408)] = 171624, + [SMALL_STATE(4409)] = 171661, + [SMALL_STATE(4410)] = 171720, + [SMALL_STATE(4411)] = 171757, + [SMALL_STATE(4412)] = 171796, + [SMALL_STATE(4413)] = 171829, + [SMALL_STATE(4414)] = 171868, + [SMALL_STATE(4415)] = 171905, + [SMALL_STATE(4416)] = 171962, + [SMALL_STATE(4417)] = 172001, + [SMALL_STATE(4418)] = 172038, + [SMALL_STATE(4419)] = 172105, + [SMALL_STATE(4420)] = 172162, + [SMALL_STATE(4421)] = 172221, + [SMALL_STATE(4422)] = 172260, + [SMALL_STATE(4423)] = 172317, + [SMALL_STATE(4424)] = 172374, + [SMALL_STATE(4425)] = 172411, + [SMALL_STATE(4426)] = 172445, + [SMALL_STATE(4427)] = 172481, + [SMALL_STATE(4428)] = 172517, + [SMALL_STATE(4429)] = 172553, + [SMALL_STATE(4430)] = 172588, + [SMALL_STATE(4431)] = 172621, + [SMALL_STATE(4432)] = 172664, + [SMALL_STATE(4433)] = 172697, + [SMALL_STATE(4434)] = 172740, + [SMALL_STATE(4435)] = 172771, + [SMALL_STATE(4436)] = 172802, + [SMALL_STATE(4437)] = 172835, + [SMALL_STATE(4438)] = 172866, + [SMALL_STATE(4439)] = 172921, + [SMALL_STATE(4440)] = 172956, + [SMALL_STATE(4441)] = 172999, + [SMALL_STATE(4442)] = 173032, + [SMALL_STATE(4443)] = 173065, + [SMALL_STATE(4444)] = 173120, + [SMALL_STATE(4445)] = 173163, + [SMALL_STATE(4446)] = 173198, + [SMALL_STATE(4447)] = 173241, + [SMALL_STATE(4448)] = 173274, + [SMALL_STATE(4449)] = 173322, + [SMALL_STATE(4450)] = 173356, + [SMALL_STATE(4451)] = 173404, + [SMALL_STATE(4452)] = 173452, + [SMALL_STATE(4453)] = 173500, + [SMALL_STATE(4454)] = 173548, + [SMALL_STATE(4455)] = 173584, + [SMALL_STATE(4456)] = 173624, + [SMALL_STATE(4457)] = 173672, + [SMALL_STATE(4458)] = 173720, + [SMALL_STATE(4459)] = 173762, + [SMALL_STATE(4460)] = 173806, + [SMALL_STATE(4461)] = 173852, + [SMALL_STATE(4462)] = 173898, + [SMALL_STATE(4463)] = 173946, + [SMALL_STATE(4464)] = 173994, + [SMALL_STATE(4465)] = 174042, + [SMALL_STATE(4466)] = 174070, + [SMALL_STATE(4467)] = 174102, + [SMALL_STATE(4468)] = 174130, + [SMALL_STATE(4469)] = 174158, + [SMALL_STATE(4470)] = 174206, + [SMALL_STATE(4471)] = 174254, + [SMALL_STATE(4472)] = 174302, + [SMALL_STATE(4473)] = 174342, + [SMALL_STATE(4474)] = 174390, + [SMALL_STATE(4475)] = 174438, + [SMALL_STATE(4476)] = 174486, + [SMALL_STATE(4477)] = 174534, + [SMALL_STATE(4478)] = 174582, + [SMALL_STATE(4479)] = 174630, + [SMALL_STATE(4480)] = 174658, + [SMALL_STATE(4481)] = 174706, + [SMALL_STATE(4482)] = 174734, + [SMALL_STATE(4483)] = 174782, + [SMALL_STATE(4484)] = 174810, + [SMALL_STATE(4485)] = 174858, + [SMALL_STATE(4486)] = 174886, + [SMALL_STATE(4487)] = 174914, + [SMALL_STATE(4488)] = 174954, + [SMALL_STATE(4489)] = 174982, + [SMALL_STATE(4490)] = 175010, + [SMALL_STATE(4491)] = 175038, + [SMALL_STATE(4492)] = 175066, + [SMALL_STATE(4493)] = 175114, + [SMALL_STATE(4494)] = 175162, + [SMALL_STATE(4495)] = 175210, + [SMALL_STATE(4496)] = 175238, + [SMALL_STATE(4497)] = 175266, + [SMALL_STATE(4498)] = 175294, + [SMALL_STATE(4499)] = 175322, + [SMALL_STATE(4500)] = 175350, + [SMALL_STATE(4501)] = 175378, + [SMALL_STATE(4502)] = 175406, + [SMALL_STATE(4503)] = 175434, + [SMALL_STATE(4504)] = 175462, + [SMALL_STATE(4505)] = 175490, + [SMALL_STATE(4506)] = 175530, + [SMALL_STATE(4507)] = 175558, + [SMALL_STATE(4508)] = 175586, + [SMALL_STATE(4509)] = 175626, + [SMALL_STATE(4510)] = 175654, + [SMALL_STATE(4511)] = 175694, + [SMALL_STATE(4512)] = 175734, + [SMALL_STATE(4513)] = 175774, + [SMALL_STATE(4514)] = 175814, + [SMALL_STATE(4515)] = 175854, + [SMALL_STATE(4516)] = 175894, + [SMALL_STATE(4517)] = 175922, + [SMALL_STATE(4518)] = 175970, + [SMALL_STATE(4519)] = 176010, + [SMALL_STATE(4520)] = 176050, + [SMALL_STATE(4521)] = 176090, + [SMALL_STATE(4522)] = 176130, + [SMALL_STATE(4523)] = 176158, + [SMALL_STATE(4524)] = 176186, + [SMALL_STATE(4525)] = 176214, + [SMALL_STATE(4526)] = 176254, + [SMALL_STATE(4527)] = 176302, + [SMALL_STATE(4528)] = 176330, + [SMALL_STATE(4529)] = 176372, + [SMALL_STATE(4530)] = 176400, + [SMALL_STATE(4531)] = 176428, + [SMALL_STATE(4532)] = 176456, + [SMALL_STATE(4533)] = 176484, + [SMALL_STATE(4534)] = 176512, + [SMALL_STATE(4535)] = 176540, + [SMALL_STATE(4536)] = 176568, + [SMALL_STATE(4537)] = 176616, + [SMALL_STATE(4538)] = 176644, + [SMALL_STATE(4539)] = 176692, + [SMALL_STATE(4540)] = 176732, + [SMALL_STATE(4541)] = 176760, + [SMALL_STATE(4542)] = 176788, + [SMALL_STATE(4543)] = 176816, + [SMALL_STATE(4544)] = 176846, + [SMALL_STATE(4545)] = 176874, + [SMALL_STATE(4546)] = 176902, + [SMALL_STATE(4547)] = 176930, + [SMALL_STATE(4548)] = 176958, + [SMALL_STATE(4549)] = 176986, + [SMALL_STATE(4550)] = 177014, + [SMALL_STATE(4551)] = 177042, + [SMALL_STATE(4552)] = 177090, + [SMALL_STATE(4553)] = 177118, + [SMALL_STATE(4554)] = 177146, + [SMALL_STATE(4555)] = 177174, + [SMALL_STATE(4556)] = 177202, + [SMALL_STATE(4557)] = 177250, + [SMALL_STATE(4558)] = 177278, + [SMALL_STATE(4559)] = 177306, + [SMALL_STATE(4560)] = 177340, + [SMALL_STATE(4561)] = 177374, + [SMALL_STATE(4562)] = 177402, + [SMALL_STATE(4563)] = 177430, + [SMALL_STATE(4564)] = 177458, + [SMALL_STATE(4565)] = 177486, + [SMALL_STATE(4566)] = 177514, + [SMALL_STATE(4567)] = 177542, + [SMALL_STATE(4568)] = 177570, + [SMALL_STATE(4569)] = 177598, + [SMALL_STATE(4570)] = 177626, + [SMALL_STATE(4571)] = 177654, + [SMALL_STATE(4572)] = 177702, + [SMALL_STATE(4573)] = 177730, + [SMALL_STATE(4574)] = 177758, + [SMALL_STATE(4575)] = 177786, + [SMALL_STATE(4576)] = 177814, + [SMALL_STATE(4577)] = 177854, + [SMALL_STATE(4578)] = 177894, + [SMALL_STATE(4579)] = 177922, + [SMALL_STATE(4580)] = 177950, + [SMALL_STATE(4581)] = 177978, + [SMALL_STATE(4582)] = 178006, + [SMALL_STATE(4583)] = 178034, + [SMALL_STATE(4584)] = 178074, + [SMALL_STATE(4585)] = 178122, + [SMALL_STATE(4586)] = 178162, + [SMALL_STATE(4587)] = 178210, + [SMALL_STATE(4588)] = 178258, + [SMALL_STATE(4589)] = 178298, + [SMALL_STATE(4590)] = 178348, + [SMALL_STATE(4591)] = 178380, + [SMALL_STATE(4592)] = 178428, + [SMALL_STATE(4593)] = 178476, + [SMALL_STATE(4594)] = 178508, + [SMALL_STATE(4595)] = 178548, + [SMALL_STATE(4596)] = 178588, + [SMALL_STATE(4597)] = 178628, + [SMALL_STATE(4598)] = 178668, + [SMALL_STATE(4599)] = 178708, + [SMALL_STATE(4600)] = 178748, + [SMALL_STATE(4601)] = 178796, + [SMALL_STATE(4602)] = 178844, + [SMALL_STATE(4603)] = 178892, + [SMALL_STATE(4604)] = 178932, + [SMALL_STATE(4605)] = 178972, + [SMALL_STATE(4606)] = 179012, + [SMALL_STATE(4607)] = 179052, + [SMALL_STATE(4608)] = 179092, + [SMALL_STATE(4609)] = 179132, + [SMALL_STATE(4610)] = 179172, + [SMALL_STATE(4611)] = 179229, + [SMALL_STATE(4612)] = 179286, + [SMALL_STATE(4613)] = 179331, + [SMALL_STATE(4614)] = 179388, + [SMALL_STATE(4615)] = 179433, + [SMALL_STATE(4616)] = 179478, + [SMALL_STATE(4617)] = 179509, + [SMALL_STATE(4618)] = 179566, + [SMALL_STATE(4619)] = 179623, + [SMALL_STATE(4620)] = 179656, + [SMALL_STATE(4621)] = 179683, + [SMALL_STATE(4622)] = 179718, + [SMALL_STATE(4623)] = 179775, + [SMALL_STATE(4624)] = 179832, + [SMALL_STATE(4625)] = 179869, + [SMALL_STATE(4626)] = 179896, + [SMALL_STATE(4627)] = 179953, + [SMALL_STATE(4628)] = 180002, + [SMALL_STATE(4629)] = 180061, + [SMALL_STATE(4630)] = 180118, + [SMALL_STATE(4631)] = 180175, + [SMALL_STATE(4632)] = 180214, + [SMALL_STATE(4633)] = 180255, + [SMALL_STATE(4634)] = 180312, + [SMALL_STATE(4635)] = 180355, + [SMALL_STATE(4636)] = 180400, + [SMALL_STATE(4637)] = 180457, + [SMALL_STATE(4638)] = 180514, + [SMALL_STATE(4639)] = 180541, + [SMALL_STATE(4640)] = 180598, + [SMALL_STATE(4641)] = 180627, + [SMALL_STATE(4642)] = 180654, + [SMALL_STATE(4643)] = 180699, + [SMALL_STATE(4644)] = 180756, + [SMALL_STATE(4645)] = 180813, + [SMALL_STATE(4646)] = 180870, + [SMALL_STATE(4647)] = 180927, + [SMALL_STATE(4648)] = 180984, + [SMALL_STATE(4649)] = 181041, + [SMALL_STATE(4650)] = 181068, + [SMALL_STATE(4651)] = 181113, + [SMALL_STATE(4652)] = 181158, + [SMALL_STATE(4653)] = 181215, + [SMALL_STATE(4654)] = 181272, + [SMALL_STATE(4655)] = 181329, + [SMALL_STATE(4656)] = 181386, + [SMALL_STATE(4657)] = 181413, + [SMALL_STATE(4658)] = 181470, + [SMALL_STATE(4659)] = 181501, + [SMALL_STATE(4660)] = 181558, + [SMALL_STATE(4661)] = 181603, + [SMALL_STATE(4662)] = 181660, + [SMALL_STATE(4663)] = 181717, + [SMALL_STATE(4664)] = 181774, + [SMALL_STATE(4665)] = 181831, + [SMALL_STATE(4666)] = 181888, + [SMALL_STATE(4667)] = 181945, + [SMALL_STATE(4668)] = 182002, + [SMALL_STATE(4669)] = 182059, + [SMALL_STATE(4670)] = 182116, + [SMALL_STATE(4671)] = 182173, + [SMALL_STATE(4672)] = 182230, + [SMALL_STATE(4673)] = 182257, + [SMALL_STATE(4674)] = 182314, + [SMALL_STATE(4675)] = 182341, + [SMALL_STATE(4676)] = 182400, + [SMALL_STATE(4677)] = 182457, + [SMALL_STATE(4678)] = 182514, + [SMALL_STATE(4679)] = 182571, + [SMALL_STATE(4680)] = 182630, + [SMALL_STATE(4681)] = 182687, + [SMALL_STATE(4682)] = 182744, + [SMALL_STATE(4683)] = 182793, + [SMALL_STATE(4684)] = 182820, + [SMALL_STATE(4685)] = 182877, + [SMALL_STATE(4686)] = 182934, + [SMALL_STATE(4687)] = 182991, + [SMALL_STATE(4688)] = 183048, + [SMALL_STATE(4689)] = 183093, + [SMALL_STATE(4690)] = 183150, + [SMALL_STATE(4691)] = 183207, + [SMALL_STATE(4692)] = 183264, + [SMALL_STATE(4693)] = 183321, + [SMALL_STATE(4694)] = 183366, + [SMALL_STATE(4695)] = 183423, + [SMALL_STATE(4696)] = 183480, + [SMALL_STATE(4697)] = 183521, + [SMALL_STATE(4698)] = 183578, + [SMALL_STATE(4699)] = 183635, + [SMALL_STATE(4700)] = 183692, + [SMALL_STATE(4701)] = 183749, + [SMALL_STATE(4702)] = 183776, + [SMALL_STATE(4703)] = 183816, + [SMALL_STATE(4704)] = 183867, + [SMALL_STATE(4705)] = 183918, + [SMALL_STATE(4706)] = 183969, + [SMALL_STATE(4707)] = 184020, + [SMALL_STATE(4708)] = 184071, + [SMALL_STATE(4709)] = 184122, + [SMALL_STATE(4710)] = 184173, + [SMALL_STATE(4711)] = 184224, + [SMALL_STATE(4712)] = 184275, + [SMALL_STATE(4713)] = 184326, + [SMALL_STATE(4714)] = 184377, + [SMALL_STATE(4715)] = 184428, + [SMALL_STATE(4716)] = 184479, + [SMALL_STATE(4717)] = 184530, + [SMALL_STATE(4718)] = 184581, + [SMALL_STATE(4719)] = 184632, + [SMALL_STATE(4720)] = 184683, + [SMALL_STATE(4721)] = 184724, + [SMALL_STATE(4722)] = 184775, + [SMALL_STATE(4723)] = 184826, + [SMALL_STATE(4724)] = 184877, + [SMALL_STATE(4725)] = 184928, + [SMALL_STATE(4726)] = 184979, + [SMALL_STATE(4727)] = 185018, + [SMALL_STATE(4728)] = 185069, + [SMALL_STATE(4729)] = 185120, + [SMALL_STATE(4730)] = 185161, + [SMALL_STATE(4731)] = 185212, + [SMALL_STATE(4732)] = 185253, + [SMALL_STATE(4733)] = 185304, + [SMALL_STATE(4734)] = 185355, + [SMALL_STATE(4735)] = 185406, + [SMALL_STATE(4736)] = 185457, + [SMALL_STATE(4737)] = 185508, + [SMALL_STATE(4738)] = 185559, + [SMALL_STATE(4739)] = 185610, + [SMALL_STATE(4740)] = 185661, + [SMALL_STATE(4741)] = 185712, + [SMALL_STATE(4742)] = 185763, + [SMALL_STATE(4743)] = 185814, + [SMALL_STATE(4744)] = 185865, + [SMALL_STATE(4745)] = 185916, + [SMALL_STATE(4746)] = 185967, + [SMALL_STATE(4747)] = 186018, + [SMALL_STATE(4748)] = 186069, + [SMALL_STATE(4749)] = 186120, + [SMALL_STATE(4750)] = 186171, + [SMALL_STATE(4751)] = 186222, + [SMALL_STATE(4752)] = 186273, + [SMALL_STATE(4753)] = 186302, + [SMALL_STATE(4754)] = 186353, + [SMALL_STATE(4755)] = 186404, + [SMALL_STATE(4756)] = 186445, + [SMALL_STATE(4757)] = 186496, + [SMALL_STATE(4758)] = 186534, + [SMALL_STATE(4759)] = 186582, + [SMALL_STATE(4760)] = 186628, + [SMALL_STATE(4761)] = 186676, + [SMALL_STATE(4762)] = 186724, + [SMALL_STATE(4763)] = 186770, + [SMALL_STATE(4764)] = 186816, + [SMALL_STATE(4765)] = 186862, + [SMALL_STATE(4766)] = 186908, + [SMALL_STATE(4767)] = 186954, + [SMALL_STATE(4768)] = 187000, + [SMALL_STATE(4769)] = 187038, + [SMALL_STATE(4770)] = 187084, + [SMALL_STATE(4771)] = 187132, + [SMALL_STATE(4772)] = 187170, + [SMALL_STATE(4773)] = 187216, + [SMALL_STATE(4774)] = 187262, + [SMALL_STATE(4775)] = 187314, + [SMALL_STATE(4776)] = 187360, + [SMALL_STATE(4777)] = 187406, + [SMALL_STATE(4778)] = 187452, + [SMALL_STATE(4779)] = 187504, + [SMALL_STATE(4780)] = 187550, + [SMALL_STATE(4781)] = 187588, + [SMALL_STATE(4782)] = 187640, + [SMALL_STATE(4783)] = 187686, + [SMALL_STATE(4784)] = 187732, + [SMALL_STATE(4785)] = 187780, + [SMALL_STATE(4786)] = 187826, + [SMALL_STATE(4787)] = 187872, + [SMALL_STATE(4788)] = 187918, + [SMALL_STATE(4789)] = 187966, + [SMALL_STATE(4790)] = 188014, + [SMALL_STATE(4791)] = 188060, + [SMALL_STATE(4792)] = 188105, + [SMALL_STATE(4793)] = 188150, + [SMALL_STATE(4794)] = 188195, + [SMALL_STATE(4795)] = 188240, + [SMALL_STATE(4796)] = 188285, + [SMALL_STATE(4797)] = 188330, + [SMALL_STATE(4798)] = 188375, + [SMALL_STATE(4799)] = 188420, + [SMALL_STATE(4800)] = 188465, + [SMALL_STATE(4801)] = 188510, + [SMALL_STATE(4802)] = 188555, + [SMALL_STATE(4803)] = 188600, + [SMALL_STATE(4804)] = 188645, + [SMALL_STATE(4805)] = 188690, + [SMALL_STATE(4806)] = 188735, + [SMALL_STATE(4807)] = 188780, + [SMALL_STATE(4808)] = 188825, + [SMALL_STATE(4809)] = 188870, + [SMALL_STATE(4810)] = 188915, + [SMALL_STATE(4811)] = 188960, + [SMALL_STATE(4812)] = 189005, + [SMALL_STATE(4813)] = 189042, + [SMALL_STATE(4814)] = 189087, + [SMALL_STATE(4815)] = 189132, + [SMALL_STATE(4816)] = 189177, + [SMALL_STATE(4817)] = 189222, + [SMALL_STATE(4818)] = 189267, + [SMALL_STATE(4819)] = 189312, + [SMALL_STATE(4820)] = 189357, + [SMALL_STATE(4821)] = 189402, + [SMALL_STATE(4822)] = 189447, + [SMALL_STATE(4823)] = 189494, + [SMALL_STATE(4824)] = 189539, + [SMALL_STATE(4825)] = 189584, + [SMALL_STATE(4826)] = 189629, + [SMALL_STATE(4827)] = 189674, + [SMALL_STATE(4828)] = 189719, + [SMALL_STATE(4829)] = 189764, + [SMALL_STATE(4830)] = 189809, + [SMALL_STATE(4831)] = 189854, + [SMALL_STATE(4832)] = 189899, + [SMALL_STATE(4833)] = 189944, + [SMALL_STATE(4834)] = 189989, + [SMALL_STATE(4835)] = 190034, + [SMALL_STATE(4836)] = 190079, + [SMALL_STATE(4837)] = 190124, + [SMALL_STATE(4838)] = 190169, + [SMALL_STATE(4839)] = 190214, + [SMALL_STATE(4840)] = 190259, + [SMALL_STATE(4841)] = 190304, + [SMALL_STATE(4842)] = 190349, + [SMALL_STATE(4843)] = 190394, + [SMALL_STATE(4844)] = 190439, + [SMALL_STATE(4845)] = 190484, + [SMALL_STATE(4846)] = 190529, + [SMALL_STATE(4847)] = 190574, + [SMALL_STATE(4848)] = 190619, + [SMALL_STATE(4849)] = 190664, + [SMALL_STATE(4850)] = 190709, + [SMALL_STATE(4851)] = 190754, + [SMALL_STATE(4852)] = 190799, + [SMALL_STATE(4853)] = 190844, + [SMALL_STATE(4854)] = 190889, + [SMALL_STATE(4855)] = 190934, + [SMALL_STATE(4856)] = 190979, + [SMALL_STATE(4857)] = 191024, + [SMALL_STATE(4858)] = 191069, + [SMALL_STATE(4859)] = 191114, + [SMALL_STATE(4860)] = 191159, + [SMALL_STATE(4861)] = 191204, + [SMALL_STATE(4862)] = 191249, + [SMALL_STATE(4863)] = 191294, + [SMALL_STATE(4864)] = 191339, + [SMALL_STATE(4865)] = 191384, + [SMALL_STATE(4866)] = 191429, + [SMALL_STATE(4867)] = 191474, + [SMALL_STATE(4868)] = 191519, + [SMALL_STATE(4869)] = 191564, + [SMALL_STATE(4870)] = 191609, + [SMALL_STATE(4871)] = 191654, + [SMALL_STATE(4872)] = 191699, + [SMALL_STATE(4873)] = 191744, + [SMALL_STATE(4874)] = 191789, + [SMALL_STATE(4875)] = 191834, + [SMALL_STATE(4876)] = 191879, + [SMALL_STATE(4877)] = 191924, + [SMALL_STATE(4878)] = 191969, + [SMALL_STATE(4879)] = 192014, + [SMALL_STATE(4880)] = 192059, + [SMALL_STATE(4881)] = 192104, + [SMALL_STATE(4882)] = 192149, + [SMALL_STATE(4883)] = 192194, + [SMALL_STATE(4884)] = 192239, + [SMALL_STATE(4885)] = 192284, + [SMALL_STATE(4886)] = 192329, + [SMALL_STATE(4887)] = 192374, + [SMALL_STATE(4888)] = 192419, + [SMALL_STATE(4889)] = 192464, + [SMALL_STATE(4890)] = 192490, + [SMALL_STATE(4891)] = 192528, + [SMALL_STATE(4892)] = 192574, + [SMALL_STATE(4893)] = 192614, + [SMALL_STATE(4894)] = 192652, + [SMALL_STATE(4895)] = 192698, + [SMALL_STATE(4896)] = 192736, + [SMALL_STATE(4897)] = 192776, + [SMALL_STATE(4898)] = 192802, + [SMALL_STATE(4899)] = 192844, + [SMALL_STATE(4900)] = 192884, + [SMALL_STATE(4901)] = 192926, + [SMALL_STATE(4902)] = 192964, + [SMALL_STATE(4903)] = 193002, + [SMALL_STATE(4904)] = 193028, + [SMALL_STATE(4905)] = 193074, + [SMALL_STATE(4906)] = 193112, + [SMALL_STATE(4907)] = 193158, + [SMALL_STATE(4908)] = 193196, + [SMALL_STATE(4909)] = 193236, + [SMALL_STATE(4910)] = 193274, + [SMALL_STATE(4911)] = 193314, + [SMALL_STATE(4912)] = 193360, + [SMALL_STATE(4913)] = 193398, + [SMALL_STATE(4914)] = 193444, + [SMALL_STATE(4915)] = 193482, + [SMALL_STATE(4916)] = 193520, + [SMALL_STATE(4917)] = 193558, + [SMALL_STATE(4918)] = 193600, + [SMALL_STATE(4919)] = 193640, + [SMALL_STATE(4920)] = 193680, + [SMALL_STATE(4921)] = 193718, + [SMALL_STATE(4922)] = 193746, + [SMALL_STATE(4923)] = 193792, + [SMALL_STATE(4924)] = 193838, + [SMALL_STATE(4925)] = 193884, + [SMALL_STATE(4926)] = 193910, + [SMALL_STATE(4927)] = 193948, + [SMALL_STATE(4928)] = 193994, + [SMALL_STATE(4929)] = 194034, + [SMALL_STATE(4930)] = 194072, + [SMALL_STATE(4931)] = 194118, + [SMALL_STATE(4932)] = 194154, + [SMALL_STATE(4933)] = 194192, + [SMALL_STATE(4934)] = 194238, + [SMALL_STATE(4935)] = 194280, + [SMALL_STATE(4936)] = 194320, + [SMALL_STATE(4937)] = 194346, + [SMALL_STATE(4938)] = 194372, + [SMALL_STATE(4939)] = 194412, + [SMALL_STATE(4940)] = 194458, + [SMALL_STATE(4941)] = 194484, + [SMALL_STATE(4942)] = 194512, + [SMALL_STATE(4943)] = 194550, + [SMALL_STATE(4944)] = 194592, + [SMALL_STATE(4945)] = 194634, + [SMALL_STATE(4946)] = 194672, + [SMALL_STATE(4947)] = 194705, + [SMALL_STATE(4948)] = 194738, + [SMALL_STATE(4949)] = 194771, + [SMALL_STATE(4950)] = 194808, + [SMALL_STATE(4951)] = 194841, + [SMALL_STATE(4952)] = 194874, + [SMALL_STATE(4953)] = 194907, + [SMALL_STATE(4954)] = 194944, + [SMALL_STATE(4955)] = 194969, + [SMALL_STATE(4956)] = 195002, + [SMALL_STATE(4957)] = 195035, + [SMALL_STATE(4958)] = 195072, + [SMALL_STATE(4959)] = 195105, + [SMALL_STATE(4960)] = 195138, + [SMALL_STATE(4961)] = 195177, + [SMALL_STATE(4962)] = 195214, + [SMALL_STATE(4963)] = 195255, + [SMALL_STATE(4964)] = 195280, + [SMALL_STATE(4965)] = 195313, + [SMALL_STATE(4966)] = 195346, + [SMALL_STATE(4967)] = 195379, + [SMALL_STATE(4968)] = 195416, + [SMALL_STATE(4969)] = 195449, + [SMALL_STATE(4970)] = 195482, + [SMALL_STATE(4971)] = 195519, + [SMALL_STATE(4972)] = 195560, + [SMALL_STATE(4973)] = 195597, + [SMALL_STATE(4974)] = 195638, + [SMALL_STATE(4975)] = 195677, + [SMALL_STATE(4976)] = 195716, + [SMALL_STATE(4977)] = 195739, + [SMALL_STATE(4978)] = 195764, + [SMALL_STATE(4979)] = 195797, + [SMALL_STATE(4980)] = 195836, + [SMALL_STATE(4981)] = 195873, + [SMALL_STATE(4982)] = 195910, + [SMALL_STATE(4983)] = 195947, + [SMALL_STATE(4984)] = 195972, + [SMALL_STATE(4985)] = 196013, + [SMALL_STATE(4986)] = 196038, + [SMALL_STATE(4987)] = 196077, + [SMALL_STATE(4988)] = 196114, + [SMALL_STATE(4989)] = 196147, + [SMALL_STATE(4990)] = 196184, + [SMALL_STATE(4991)] = 196217, + [SMALL_STATE(4992)] = 196242, + [SMALL_STATE(4993)] = 196283, + [SMALL_STATE(4994)] = 196308, + [SMALL_STATE(4995)] = 196345, + [SMALL_STATE(4996)] = 196378, + [SMALL_STATE(4997)] = 196411, + [SMALL_STATE(4998)] = 196436, + [SMALL_STATE(4999)] = 196469, + [SMALL_STATE(5000)] = 196502, + [SMALL_STATE(5001)] = 196539, + [SMALL_STATE(5002)] = 196573, + [SMALL_STATE(5003)] = 196595, + [SMALL_STATE(5004)] = 196615, + [SMALL_STATE(5005)] = 196635, + [SMALL_STATE(5006)] = 196671, + [SMALL_STATE(5007)] = 196707, + [SMALL_STATE(5008)] = 196735, + [SMALL_STATE(5009)] = 196763, + [SMALL_STATE(5010)] = 196783, + [SMALL_STATE(5011)] = 196803, + [SMALL_STATE(5012)] = 196823, + [SMALL_STATE(5013)] = 196843, + [SMALL_STATE(5014)] = 196863, + [SMALL_STATE(5015)] = 196897, + [SMALL_STATE(5016)] = 196917, + [SMALL_STATE(5017)] = 196951, + [SMALL_STATE(5018)] = 196971, + [SMALL_STATE(5019)] = 197005, + [SMALL_STATE(5020)] = 197025, + [SMALL_STATE(5021)] = 197045, + [SMALL_STATE(5022)] = 197065, + [SMALL_STATE(5023)] = 197089, + [SMALL_STATE(5024)] = 197109, + [SMALL_STATE(5025)] = 197145, + [SMALL_STATE(5026)] = 197181, + [SMALL_STATE(5027)] = 197201, + [SMALL_STATE(5028)] = 197233, + [SMALL_STATE(5029)] = 197267, + [SMALL_STATE(5030)] = 197295, + [SMALL_STATE(5031)] = 197319, + [SMALL_STATE(5032)] = 197355, + [SMALL_STATE(5033)] = 197375, + [SMALL_STATE(5034)] = 197397, + [SMALL_STATE(5035)] = 197433, + [SMALL_STATE(5036)] = 197455, + [SMALL_STATE(5037)] = 197475, + [SMALL_STATE(5038)] = 197499, + [SMALL_STATE(5039)] = 197519, + [SMALL_STATE(5040)] = 197543, + [SMALL_STATE(5041)] = 197567, + [SMALL_STATE(5042)] = 197603, + [SMALL_STATE(5043)] = 197623, + [SMALL_STATE(5044)] = 197647, + [SMALL_STATE(5045)] = 197683, + [SMALL_STATE(5046)] = 197703, + [SMALL_STATE(5047)] = 197737, + [SMALL_STATE(5048)] = 197757, + [SMALL_STATE(5049)] = 197793, + [SMALL_STATE(5050)] = 197813, + [SMALL_STATE(5051)] = 197833, + [SMALL_STATE(5052)] = 197869, + [SMALL_STATE(5053)] = 197889, + [SMALL_STATE(5054)] = 197923, + [SMALL_STATE(5055)] = 197959, + [SMALL_STATE(5056)] = 197983, + [SMALL_STATE(5057)] = 198019, + [SMALL_STATE(5058)] = 198039, + [SMALL_STATE(5059)] = 198063, + [SMALL_STATE(5060)] = 198083, + [SMALL_STATE(5061)] = 198103, + [SMALL_STATE(5062)] = 198139, + [SMALL_STATE(5063)] = 198163, + [SMALL_STATE(5064)] = 198199, + [SMALL_STATE(5065)] = 198235, + [SMALL_STATE(5066)] = 198271, + [SMALL_STATE(5067)] = 198291, + [SMALL_STATE(5068)] = 198311, + [SMALL_STATE(5069)] = 198335, + [SMALL_STATE(5070)] = 198371, + [SMALL_STATE(5071)] = 198407, + [SMALL_STATE(5072)] = 198427, + [SMALL_STATE(5073)] = 198447, + [SMALL_STATE(5074)] = 198483, + [SMALL_STATE(5075)] = 198503, + [SMALL_STATE(5076)] = 198523, + [SMALL_STATE(5077)] = 198559, + [SMALL_STATE(5078)] = 198595, + [SMALL_STATE(5079)] = 198619, + [SMALL_STATE(5080)] = 198647, + [SMALL_STATE(5081)] = 198667, + [SMALL_STATE(5082)] = 198701, + [SMALL_STATE(5083)] = 198729, + [SMALL_STATE(5084)] = 198763, + [SMALL_STATE(5085)] = 198783, + [SMALL_STATE(5086)] = 198807, + [SMALL_STATE(5087)] = 198830, + [SMALL_STATE(5088)] = 198849, + [SMALL_STATE(5089)] = 198876, + [SMALL_STATE(5090)] = 198895, + [SMALL_STATE(5091)] = 198914, + [SMALL_STATE(5092)] = 198933, + [SMALL_STATE(5093)] = 198956, + [SMALL_STATE(5094)] = 198975, + [SMALL_STATE(5095)] = 198998, + [SMALL_STATE(5096)] = 199025, + [SMALL_STATE(5097)] = 199044, + [SMALL_STATE(5098)] = 199061, + [SMALL_STATE(5099)] = 199084, + [SMALL_STATE(5100)] = 199107, + [SMALL_STATE(5101)] = 199126, + [SMALL_STATE(5102)] = 199157, + [SMALL_STATE(5103)] = 199184, + [SMALL_STATE(5104)] = 199203, + [SMALL_STATE(5105)] = 199226, + [SMALL_STATE(5106)] = 199245, + [SMALL_STATE(5107)] = 199268, + [SMALL_STATE(5108)] = 199285, + [SMALL_STATE(5109)] = 199312, + [SMALL_STATE(5110)] = 199339, + [SMALL_STATE(5111)] = 199356, + [SMALL_STATE(5112)] = 199375, + [SMALL_STATE(5113)] = 199402, + [SMALL_STATE(5114)] = 199421, + [SMALL_STATE(5115)] = 199440, + [SMALL_STATE(5116)] = 199467, + [SMALL_STATE(5117)] = 199486, + [SMALL_STATE(5118)] = 199509, + [SMALL_STATE(5119)] = 199536, + [SMALL_STATE(5120)] = 199567, + [SMALL_STATE(5121)] = 199590, + [SMALL_STATE(5122)] = 199619, + [SMALL_STATE(5123)] = 199642, + [SMALL_STATE(5124)] = 199665, + [SMALL_STATE(5125)] = 199682, + [SMALL_STATE(5126)] = 199699, + [SMALL_STATE(5127)] = 199722, + [SMALL_STATE(5128)] = 199745, + [SMALL_STATE(5129)] = 199762, + [SMALL_STATE(5130)] = 199785, + [SMALL_STATE(5131)] = 199802, + [SMALL_STATE(5132)] = 199821, + [SMALL_STATE(5133)] = 199840, + [SMALL_STATE(5134)] = 199857, + [SMALL_STATE(5135)] = 199880, + [SMALL_STATE(5136)] = 199899, + [SMALL_STATE(5137)] = 199918, + [SMALL_STATE(5138)] = 199935, + [SMALL_STATE(5139)] = 199952, + [SMALL_STATE(5140)] = 199971, + [SMALL_STATE(5141)] = 199998, + [SMALL_STATE(5142)] = 200021, + [SMALL_STATE(5143)] = 200044, + [SMALL_STATE(5144)] = 200061, + [SMALL_STATE(5145)] = 200080, + [SMALL_STATE(5146)] = 200097, + [SMALL_STATE(5147)] = 200114, + [SMALL_STATE(5148)] = 200131, + [SMALL_STATE(5149)] = 200148, + [SMALL_STATE(5150)] = 200177, + [SMALL_STATE(5151)] = 200200, + [SMALL_STATE(5152)] = 200223, + [SMALL_STATE(5153)] = 200242, + [SMALL_STATE(5154)] = 200261, + [SMALL_STATE(5155)] = 200278, + [SMALL_STATE(5156)] = 200301, + [SMALL_STATE(5157)] = 200318, + [SMALL_STATE(5158)] = 200345, + [SMALL_STATE(5159)] = 200372, + [SMALL_STATE(5160)] = 200395, + [SMALL_STATE(5161)] = 200427, + [SMALL_STATE(5162)] = 200453, + [SMALL_STATE(5163)] = 200479, + [SMALL_STATE(5164)] = 200511, + [SMALL_STATE(5165)] = 200543, + [SMALL_STATE(5166)] = 200575, + [SMALL_STATE(5167)] = 200607, + [SMALL_STATE(5168)] = 200633, + [SMALL_STATE(5169)] = 200659, + [SMALL_STATE(5170)] = 200691, + [SMALL_STATE(5171)] = 200709, + [SMALL_STATE(5172)] = 200731, + [SMALL_STATE(5173)] = 200749, + [SMALL_STATE(5174)] = 200767, + [SMALL_STATE(5175)] = 200785, + [SMALL_STATE(5176)] = 200803, + [SMALL_STATE(5177)] = 200835, + [SMALL_STATE(5178)] = 200861, + [SMALL_STATE(5179)] = 200879, + [SMALL_STATE(5180)] = 200911, + [SMALL_STATE(5181)] = 200937, + [SMALL_STATE(5182)] = 200969, + [SMALL_STATE(5183)] = 201001, + [SMALL_STATE(5184)] = 201033, + [SMALL_STATE(5185)] = 201065, + [SMALL_STATE(5186)] = 201097, + [SMALL_STATE(5187)] = 201119, + [SMALL_STATE(5188)] = 201141, + [SMALL_STATE(5189)] = 201173, + [SMALL_STATE(5190)] = 201205, + [SMALL_STATE(5191)] = 201223, + [SMALL_STATE(5192)] = 201245, + [SMALL_STATE(5193)] = 201277, + [SMALL_STATE(5194)] = 201309, + [SMALL_STATE(5195)] = 201331, + [SMALL_STATE(5196)] = 201357, + [SMALL_STATE(5197)] = 201389, + [SMALL_STATE(5198)] = 201421, + [SMALL_STATE(5199)] = 201443, + [SMALL_STATE(5200)] = 201475, + [SMALL_STATE(5201)] = 201507, + [SMALL_STATE(5202)] = 201539, + [SMALL_STATE(5203)] = 201561, + [SMALL_STATE(5204)] = 201593, + [SMALL_STATE(5205)] = 201611, + [SMALL_STATE(5206)] = 201633, + [SMALL_STATE(5207)] = 201651, + [SMALL_STATE(5208)] = 201673, + [SMALL_STATE(5209)] = 201705, + [SMALL_STATE(5210)] = 201737, + [SMALL_STATE(5211)] = 201757, + [SMALL_STATE(5212)] = 201775, + [SMALL_STATE(5213)] = 201807, + [SMALL_STATE(5214)] = 201839, + [SMALL_STATE(5215)] = 201871, + [SMALL_STATE(5216)] = 201888, + [SMALL_STATE(5217)] = 201917, + [SMALL_STATE(5218)] = 201938, + [SMALL_STATE(5219)] = 201965, + [SMALL_STATE(5220)] = 201980, + [SMALL_STATE(5221)] = 202001, + [SMALL_STATE(5222)] = 202022, + [SMALL_STATE(5223)] = 202051, + [SMALL_STATE(5224)] = 202080, + [SMALL_STATE(5225)] = 202101, + [SMALL_STATE(5226)] = 202116, + [SMALL_STATE(5227)] = 202131, + [SMALL_STATE(5228)] = 202150, + [SMALL_STATE(5229)] = 202171, + [SMALL_STATE(5230)] = 202186, + [SMALL_STATE(5231)] = 202213, + [SMALL_STATE(5232)] = 202234, + [SMALL_STATE(5233)] = 202253, + [SMALL_STATE(5234)] = 202280, + [SMALL_STATE(5235)] = 202301, + [SMALL_STATE(5236)] = 202330, + [SMALL_STATE(5237)] = 202351, + [SMALL_STATE(5238)] = 202372, + [SMALL_STATE(5239)] = 202399, + [SMALL_STATE(5240)] = 202420, + [SMALL_STATE(5241)] = 202445, + [SMALL_STATE(5242)] = 202474, + [SMALL_STATE(5243)] = 202503, + [SMALL_STATE(5244)] = 202524, + [SMALL_STATE(5245)] = 202545, + [SMALL_STATE(5246)] = 202566, + [SMALL_STATE(5247)] = 202595, + [SMALL_STATE(5248)] = 202616, + [SMALL_STATE(5249)] = 202631, + [SMALL_STATE(5250)] = 202660, + [SMALL_STATE(5251)] = 202675, + [SMALL_STATE(5252)] = 202690, + [SMALL_STATE(5253)] = 202719, + [SMALL_STATE(5254)] = 202736, + [SMALL_STATE(5255)] = 202763, + [SMALL_STATE(5256)] = 202778, + [SMALL_STATE(5257)] = 202793, + [SMALL_STATE(5258)] = 202808, + [SMALL_STATE(5259)] = 202829, + [SMALL_STATE(5260)] = 202844, + [SMALL_STATE(5261)] = 202873, + [SMALL_STATE(5262)] = 202888, + [SMALL_STATE(5263)] = 202915, + [SMALL_STATE(5264)] = 202936, + [SMALL_STATE(5265)] = 202951, + [SMALL_STATE(5266)] = 202980, + [SMALL_STATE(5267)] = 203007, + [SMALL_STATE(5268)] = 203022, + [SMALL_STATE(5269)] = 203049, + [SMALL_STATE(5270)] = 203078, + [SMALL_STATE(5271)] = 203101, + [SMALL_STATE(5272)] = 203130, + [SMALL_STATE(5273)] = 203157, + [SMALL_STATE(5274)] = 203172, + [SMALL_STATE(5275)] = 203201, + [SMALL_STATE(5276)] = 203230, + [SMALL_STATE(5277)] = 203251, + [SMALL_STATE(5278)] = 203276, + [SMALL_STATE(5279)] = 203305, + [SMALL_STATE(5280)] = 203334, + [SMALL_STATE(5281)] = 203361, + [SMALL_STATE(5282)] = 203390, + [SMALL_STATE(5283)] = 203419, + [SMALL_STATE(5284)] = 203440, + [SMALL_STATE(5285)] = 203457, + [SMALL_STATE(5286)] = 203486, + [SMALL_STATE(5287)] = 203509, + [SMALL_STATE(5288)] = 203526, + [SMALL_STATE(5289)] = 203541, + [SMALL_STATE(5290)] = 203558, + [SMALL_STATE(5291)] = 203575, + [SMALL_STATE(5292)] = 203592, + [SMALL_STATE(5293)] = 203611, + [SMALL_STATE(5294)] = 203636, + [SMALL_STATE(5295)] = 203651, + [SMALL_STATE(5296)] = 203668, + [SMALL_STATE(5297)] = 203695, + [SMALL_STATE(5298)] = 203720, + [SMALL_STATE(5299)] = 203737, + [SMALL_STATE(5300)] = 203763, + [SMALL_STATE(5301)] = 203787, + [SMALL_STATE(5302)] = 203811, + [SMALL_STATE(5303)] = 203835, + [SMALL_STATE(5304)] = 203859, + [SMALL_STATE(5305)] = 203883, + [SMALL_STATE(5306)] = 203907, + [SMALL_STATE(5307)] = 203931, + [SMALL_STATE(5308)] = 203951, + [SMALL_STATE(5309)] = 203979, + [SMALL_STATE(5310)] = 203997, + [SMALL_STATE(5311)] = 204015, + [SMALL_STATE(5312)] = 204041, + [SMALL_STATE(5313)] = 204063, + [SMALL_STATE(5314)] = 204087, + [SMALL_STATE(5315)] = 204107, + [SMALL_STATE(5316)] = 204125, + [SMALL_STATE(5317)] = 204141, + [SMALL_STATE(5318)] = 204167, + [SMALL_STATE(5319)] = 204185, + [SMALL_STATE(5320)] = 204209, + [SMALL_STATE(5321)] = 204227, + [SMALL_STATE(5322)] = 204251, + [SMALL_STATE(5323)] = 204271, + [SMALL_STATE(5324)] = 204293, + [SMALL_STATE(5325)] = 204317, + [SMALL_STATE(5326)] = 204335, + [SMALL_STATE(5327)] = 204363, + [SMALL_STATE(5328)] = 204381, + [SMALL_STATE(5329)] = 204399, + [SMALL_STATE(5330)] = 204419, + [SMALL_STATE(5331)] = 204439, + [SMALL_STATE(5332)] = 204457, + [SMALL_STATE(5333)] = 204477, + [SMALL_STATE(5334)] = 204505, + [SMALL_STATE(5335)] = 204525, + [SMALL_STATE(5336)] = 204545, + [SMALL_STATE(5337)] = 204570, + [SMALL_STATE(5338)] = 204589, + [SMALL_STATE(5339)] = 204606, + [SMALL_STATE(5340)] = 204625, + [SMALL_STATE(5341)] = 204644, + [SMALL_STATE(5342)] = 204663, + [SMALL_STATE(5343)] = 204686, + [SMALL_STATE(5344)] = 204705, + [SMALL_STATE(5345)] = 204728, + [SMALL_STATE(5346)] = 204753, + [SMALL_STATE(5347)] = 204772, + [SMALL_STATE(5348)] = 204791, + [SMALL_STATE(5349)] = 204810, + [SMALL_STATE(5350)] = 204835, + [SMALL_STATE(5351)] = 204854, + [SMALL_STATE(5352)] = 204873, + [SMALL_STATE(5353)] = 204898, + [SMALL_STATE(5354)] = 204921, + [SMALL_STATE(5355)] = 204946, + [SMALL_STATE(5356)] = 204965, + [SMALL_STATE(5357)] = 204988, + [SMALL_STATE(5358)] = 205011, + [SMALL_STATE(5359)] = 205030, + [SMALL_STATE(5360)] = 205053, + [SMALL_STATE(5361)] = 205076, + [SMALL_STATE(5362)] = 205099, + [SMALL_STATE(5363)] = 205124, + [SMALL_STATE(5364)] = 205147, + [SMALL_STATE(5365)] = 205166, + [SMALL_STATE(5366)] = 205185, + [SMALL_STATE(5367)] = 205208, + [SMALL_STATE(5368)] = 205231, + [SMALL_STATE(5369)] = 205250, + [SMALL_STATE(5370)] = 205273, + [SMALL_STATE(5371)] = 205296, + [SMALL_STATE(5372)] = 205321, + [SMALL_STATE(5373)] = 205344, + [SMALL_STATE(5374)] = 205363, + [SMALL_STATE(5375)] = 205382, + [SMALL_STATE(5376)] = 205401, + [SMALL_STATE(5377)] = 205424, + [SMALL_STATE(5378)] = 205443, + [SMALL_STATE(5379)] = 205466, + [SMALL_STATE(5380)] = 205489, + [SMALL_STATE(5381)] = 205512, + [SMALL_STATE(5382)] = 205537, + [SMALL_STATE(5383)] = 205552, + [SMALL_STATE(5384)] = 205577, + [SMALL_STATE(5385)] = 205592, + [SMALL_STATE(5386)] = 205617, + [SMALL_STATE(5387)] = 205640, + [SMALL_STATE(5388)] = 205663, + [SMALL_STATE(5389)] = 205682, + [SMALL_STATE(5390)] = 205707, + [SMALL_STATE(5391)] = 205732, + [SMALL_STATE(5392)] = 205747, + [SMALL_STATE(5393)] = 205762, + [SMALL_STATE(5394)] = 205785, + [SMALL_STATE(5395)] = 205804, + [SMALL_STATE(5396)] = 205827, + [SMALL_STATE(5397)] = 205852, + [SMALL_STATE(5398)] = 205871, + [SMALL_STATE(5399)] = 205894, + [SMALL_STATE(5400)] = 205909, + [SMALL_STATE(5401)] = 205926, + [SMALL_STATE(5402)] = 205951, + [SMALL_STATE(5403)] = 205970, + [SMALL_STATE(5404)] = 205985, + [SMALL_STATE(5405)] = 206004, + [SMALL_STATE(5406)] = 206023, + [SMALL_STATE(5407)] = 206042, + [SMALL_STATE(5408)] = 206065, + [SMALL_STATE(5409)] = 206084, + [SMALL_STATE(5410)] = 206103, + [SMALL_STATE(5411)] = 206126, + [SMALL_STATE(5412)] = 206149, + [SMALL_STATE(5413)] = 206172, + [SMALL_STATE(5414)] = 206195, + [SMALL_STATE(5415)] = 206220, + [SMALL_STATE(5416)] = 206243, + [SMALL_STATE(5417)] = 206266, + [SMALL_STATE(5418)] = 206289, + [SMALL_STATE(5419)] = 206308, + [SMALL_STATE(5420)] = 206323, + [SMALL_STATE(5421)] = 206348, + [SMALL_STATE(5422)] = 206371, + [SMALL_STATE(5423)] = 206394, + [SMALL_STATE(5424)] = 206411, + [SMALL_STATE(5425)] = 206434, + [SMALL_STATE(5426)] = 206453, + [SMALL_STATE(5427)] = 206472, + [SMALL_STATE(5428)] = 206491, + [SMALL_STATE(5429)] = 206510, + [SMALL_STATE(5430)] = 206527, + [SMALL_STATE(5431)] = 206550, + [SMALL_STATE(5432)] = 206569, + [SMALL_STATE(5433)] = 206588, + [SMALL_STATE(5434)] = 206603, + [SMALL_STATE(5435)] = 206620, + [SMALL_STATE(5436)] = 206645, + [SMALL_STATE(5437)] = 206662, + [SMALL_STATE(5438)] = 206681, + [SMALL_STATE(5439)] = 206700, + [SMALL_STATE(5440)] = 206719, + [SMALL_STATE(5441)] = 206738, + [SMALL_STATE(5442)] = 206761, + [SMALL_STATE(5443)] = 206780, + [SMALL_STATE(5444)] = 206803, + [SMALL_STATE(5445)] = 206826, + [SMALL_STATE(5446)] = 206851, + [SMALL_STATE(5447)] = 206874, + [SMALL_STATE(5448)] = 206890, + [SMALL_STATE(5449)] = 206910, + [SMALL_STATE(5450)] = 206924, + [SMALL_STATE(5451)] = 206942, + [SMALL_STATE(5452)] = 206956, + [SMALL_STATE(5453)] = 206976, + [SMALL_STATE(5454)] = 206994, + [SMALL_STATE(5455)] = 207014, + [SMALL_STATE(5456)] = 207032, + [SMALL_STATE(5457)] = 207052, + [SMALL_STATE(5458)] = 207072, + [SMALL_STATE(5459)] = 207090, + [SMALL_STATE(5460)] = 207110, + [SMALL_STATE(5461)] = 207128, + [SMALL_STATE(5462)] = 207146, + [SMALL_STATE(5463)] = 207166, + [SMALL_STATE(5464)] = 207184, + [SMALL_STATE(5465)] = 207202, + [SMALL_STATE(5466)] = 207216, + [SMALL_STATE(5467)] = 207234, + [SMALL_STATE(5468)] = 207252, + [SMALL_STATE(5469)] = 207270, + [SMALL_STATE(5470)] = 207288, + [SMALL_STATE(5471)] = 207306, + [SMALL_STATE(5472)] = 207320, + [SMALL_STATE(5473)] = 207340, + [SMALL_STATE(5474)] = 207354, + [SMALL_STATE(5475)] = 207368, + [SMALL_STATE(5476)] = 207388, + [SMALL_STATE(5477)] = 207406, + [SMALL_STATE(5478)] = 207424, + [SMALL_STATE(5479)] = 207442, + [SMALL_STATE(5480)] = 207460, + [SMALL_STATE(5481)] = 207480, + [SMALL_STATE(5482)] = 207498, + [SMALL_STATE(5483)] = 207516, + [SMALL_STATE(5484)] = 207536, + [SMALL_STATE(5485)] = 207554, + [SMALL_STATE(5486)] = 207572, + [SMALL_STATE(5487)] = 207592, + [SMALL_STATE(5488)] = 207612, + [SMALL_STATE(5489)] = 207632, + [SMALL_STATE(5490)] = 207650, + [SMALL_STATE(5491)] = 207668, + [SMALL_STATE(5492)] = 207682, + [SMALL_STATE(5493)] = 207700, + [SMALL_STATE(5494)] = 207714, + [SMALL_STATE(5495)] = 207734, + [SMALL_STATE(5496)] = 207753, + [SMALL_STATE(5497)] = 207772, + [SMALL_STATE(5498)] = 207789, + [SMALL_STATE(5499)] = 207806, + [SMALL_STATE(5500)] = 207823, + [SMALL_STATE(5501)] = 207842, + [SMALL_STATE(5502)] = 207859, + [SMALL_STATE(5503)] = 207876, + [SMALL_STATE(5504)] = 207893, + [SMALL_STATE(5505)] = 207912, + [SMALL_STATE(5506)] = 207929, + [SMALL_STATE(5507)] = 207946, + [SMALL_STATE(5508)] = 207965, + [SMALL_STATE(5509)] = 207982, + [SMALL_STATE(5510)] = 207999, + [SMALL_STATE(5511)] = 208016, + [SMALL_STATE(5512)] = 208029, + [SMALL_STATE(5513)] = 208042, + [SMALL_STATE(5514)] = 208059, + [SMALL_STATE(5515)] = 208076, + [SMALL_STATE(5516)] = 208095, + [SMALL_STATE(5517)] = 208114, + [SMALL_STATE(5518)] = 208131, + [SMALL_STATE(5519)] = 208144, + [SMALL_STATE(5520)] = 208160, + [SMALL_STATE(5521)] = 208174, + [SMALL_STATE(5522)] = 208190, + [SMALL_STATE(5523)] = 208206, + [SMALL_STATE(5524)] = 208222, + [SMALL_STATE(5525)] = 208238, + [SMALL_STATE(5526)] = 208254, + [SMALL_STATE(5527)] = 208268, + [SMALL_STATE(5528)] = 208284, + [SMALL_STATE(5529)] = 208300, + [SMALL_STATE(5530)] = 208316, + [SMALL_STATE(5531)] = 208332, + [SMALL_STATE(5532)] = 208348, + [SMALL_STATE(5533)] = 208364, + [SMALL_STATE(5534)] = 208380, + [SMALL_STATE(5535)] = 208396, + [SMALL_STATE(5536)] = 208412, + [SMALL_STATE(5537)] = 208428, + [SMALL_STATE(5538)] = 208444, + [SMALL_STATE(5539)] = 208460, + [SMALL_STATE(5540)] = 208476, + [SMALL_STATE(5541)] = 208492, + [SMALL_STATE(5542)] = 208508, + [SMALL_STATE(5543)] = 208524, + [SMALL_STATE(5544)] = 208540, + [SMALL_STATE(5545)] = 208556, + [SMALL_STATE(5546)] = 208570, + [SMALL_STATE(5547)] = 208586, + [SMALL_STATE(5548)] = 208602, + [SMALL_STATE(5549)] = 208618, + [SMALL_STATE(5550)] = 208634, + [SMALL_STATE(5551)] = 208650, + [SMALL_STATE(5552)] = 208666, + [SMALL_STATE(5553)] = 208680, + [SMALL_STATE(5554)] = 208696, + [SMALL_STATE(5555)] = 208712, + [SMALL_STATE(5556)] = 208726, + [SMALL_STATE(5557)] = 208742, + [SMALL_STATE(5558)] = 208758, + [SMALL_STATE(5559)] = 208774, + [SMALL_STATE(5560)] = 208790, + [SMALL_STATE(5561)] = 208806, + [SMALL_STATE(5562)] = 208822, + [SMALL_STATE(5563)] = 208838, + [SMALL_STATE(5564)] = 208854, + [SMALL_STATE(5565)] = 208870, + [SMALL_STATE(5566)] = 208886, + [SMALL_STATE(5567)] = 208902, + [SMALL_STATE(5568)] = 208918, + [SMALL_STATE(5569)] = 208934, + [SMALL_STATE(5570)] = 208950, + [SMALL_STATE(5571)] = 208966, + [SMALL_STATE(5572)] = 208982, + [SMALL_STATE(5573)] = 208998, + [SMALL_STATE(5574)] = 209014, + [SMALL_STATE(5575)] = 209028, + [SMALL_STATE(5576)] = 209044, + [SMALL_STATE(5577)] = 209060, + [SMALL_STATE(5578)] = 209076, + [SMALL_STATE(5579)] = 209092, + [SMALL_STATE(5580)] = 209108, + [SMALL_STATE(5581)] = 209124, + [SMALL_STATE(5582)] = 209140, + [SMALL_STATE(5583)] = 209156, + [SMALL_STATE(5584)] = 209172, + [SMALL_STATE(5585)] = 209188, + [SMALL_STATE(5586)] = 209202, + [SMALL_STATE(5587)] = 209218, + [SMALL_STATE(5588)] = 209234, + [SMALL_STATE(5589)] = 209250, + [SMALL_STATE(5590)] = 209266, + [SMALL_STATE(5591)] = 209282, + [SMALL_STATE(5592)] = 209298, + [SMALL_STATE(5593)] = 209314, + [SMALL_STATE(5594)] = 209330, + [SMALL_STATE(5595)] = 209344, + [SMALL_STATE(5596)] = 209360, + [SMALL_STATE(5597)] = 209376, + [SMALL_STATE(5598)] = 209392, + [SMALL_STATE(5599)] = 209408, + [SMALL_STATE(5600)] = 209424, + [SMALL_STATE(5601)] = 209440, + [SMALL_STATE(5602)] = 209456, + [SMALL_STATE(5603)] = 209472, + [SMALL_STATE(5604)] = 209488, + [SMALL_STATE(5605)] = 209504, + [SMALL_STATE(5606)] = 209520, + [SMALL_STATE(5607)] = 209536, + [SMALL_STATE(5608)] = 209552, + [SMALL_STATE(5609)] = 209568, + [SMALL_STATE(5610)] = 209584, + [SMALL_STATE(5611)] = 209598, + [SMALL_STATE(5612)] = 209614, + [SMALL_STATE(5613)] = 209630, + [SMALL_STATE(5614)] = 209646, + [SMALL_STATE(5615)] = 209662, + [SMALL_STATE(5616)] = 209678, + [SMALL_STATE(5617)] = 209692, + [SMALL_STATE(5618)] = 209708, + [SMALL_STATE(5619)] = 209724, + [SMALL_STATE(5620)] = 209740, + [SMALL_STATE(5621)] = 209756, + [SMALL_STATE(5622)] = 209772, + [SMALL_STATE(5623)] = 209788, + [SMALL_STATE(5624)] = 209804, + [SMALL_STATE(5625)] = 209820, + [SMALL_STATE(5626)] = 209834, + [SMALL_STATE(5627)] = 209850, + [SMALL_STATE(5628)] = 209866, + [SMALL_STATE(5629)] = 209880, + [SMALL_STATE(5630)] = 209896, + [SMALL_STATE(5631)] = 209912, + [SMALL_STATE(5632)] = 209928, + [SMALL_STATE(5633)] = 209944, + [SMALL_STATE(5634)] = 209960, + [SMALL_STATE(5635)] = 209976, + [SMALL_STATE(5636)] = 209992, + [SMALL_STATE(5637)] = 210008, + [SMALL_STATE(5638)] = 210024, + [SMALL_STATE(5639)] = 210040, + [SMALL_STATE(5640)] = 210054, + [SMALL_STATE(5641)] = 210066, + [SMALL_STATE(5642)] = 210080, + [SMALL_STATE(5643)] = 210096, + [SMALL_STATE(5644)] = 210112, + [SMALL_STATE(5645)] = 210128, + [SMALL_STATE(5646)] = 210144, + [SMALL_STATE(5647)] = 210160, + [SMALL_STATE(5648)] = 210174, + [SMALL_STATE(5649)] = 210190, + [SMALL_STATE(5650)] = 210206, + [SMALL_STATE(5651)] = 210222, + [SMALL_STATE(5652)] = 210238, + [SMALL_STATE(5653)] = 210254, + [SMALL_STATE(5654)] = 210270, + [SMALL_STATE(5655)] = 210286, + [SMALL_STATE(5656)] = 210302, + [SMALL_STATE(5657)] = 210318, + [SMALL_STATE(5658)] = 210334, + [SMALL_STATE(5659)] = 210350, + [SMALL_STATE(5660)] = 210366, + [SMALL_STATE(5661)] = 210382, + [SMALL_STATE(5662)] = 210398, + [SMALL_STATE(5663)] = 210414, + [SMALL_STATE(5664)] = 210430, + [SMALL_STATE(5665)] = 210446, + [SMALL_STATE(5666)] = 210460, + [SMALL_STATE(5667)] = 210476, + [SMALL_STATE(5668)] = 210492, + [SMALL_STATE(5669)] = 210508, + [SMALL_STATE(5670)] = 210524, + [SMALL_STATE(5671)] = 210540, + [SMALL_STATE(5672)] = 210554, + [SMALL_STATE(5673)] = 210570, + [SMALL_STATE(5674)] = 210586, + [SMALL_STATE(5675)] = 210602, + [SMALL_STATE(5676)] = 210616, + [SMALL_STATE(5677)] = 210632, + [SMALL_STATE(5678)] = 210648, + [SMALL_STATE(5679)] = 210664, + [SMALL_STATE(5680)] = 210680, + [SMALL_STATE(5681)] = 210694, + [SMALL_STATE(5682)] = 210710, + [SMALL_STATE(5683)] = 210726, + [SMALL_STATE(5684)] = 210740, + [SMALL_STATE(5685)] = 210756, + [SMALL_STATE(5686)] = 210770, + [SMALL_STATE(5687)] = 210786, + [SMALL_STATE(5688)] = 210802, + [SMALL_STATE(5689)] = 210818, + [SMALL_STATE(5690)] = 210834, + [SMALL_STATE(5691)] = 210850, + [SMALL_STATE(5692)] = 210866, + [SMALL_STATE(5693)] = 210882, + [SMALL_STATE(5694)] = 210898, + [SMALL_STATE(5695)] = 210914, + [SMALL_STATE(5696)] = 210930, + [SMALL_STATE(5697)] = 210946, + [SMALL_STATE(5698)] = 210962, + [SMALL_STATE(5699)] = 210978, + [SMALL_STATE(5700)] = 210994, + [SMALL_STATE(5701)] = 211010, + [SMALL_STATE(5702)] = 211026, + [SMALL_STATE(5703)] = 211042, + [SMALL_STATE(5704)] = 211058, + [SMALL_STATE(5705)] = 211074, + [SMALL_STATE(5706)] = 211090, + [SMALL_STATE(5707)] = 211106, + [SMALL_STATE(5708)] = 211122, + [SMALL_STATE(5709)] = 211132, + [SMALL_STATE(5710)] = 211148, + [SMALL_STATE(5711)] = 211164, + [SMALL_STATE(5712)] = 211180, + [SMALL_STATE(5713)] = 211196, + [SMALL_STATE(5714)] = 211212, + [SMALL_STATE(5715)] = 211228, + [SMALL_STATE(5716)] = 211244, + [SMALL_STATE(5717)] = 211260, + [SMALL_STATE(5718)] = 211276, + [SMALL_STATE(5719)] = 211292, + [SMALL_STATE(5720)] = 211306, + [SMALL_STATE(5721)] = 211322, + [SMALL_STATE(5722)] = 211338, + [SMALL_STATE(5723)] = 211354, + [SMALL_STATE(5724)] = 211370, + [SMALL_STATE(5725)] = 211386, + [SMALL_STATE(5726)] = 211402, + [SMALL_STATE(5727)] = 211416, + [SMALL_STATE(5728)] = 211430, + [SMALL_STATE(5729)] = 211446, + [SMALL_STATE(5730)] = 211462, + [SMALL_STATE(5731)] = 211478, + [SMALL_STATE(5732)] = 211494, + [SMALL_STATE(5733)] = 211510, + [SMALL_STATE(5734)] = 211520, + [SMALL_STATE(5735)] = 211536, + [SMALL_STATE(5736)] = 211552, + [SMALL_STATE(5737)] = 211566, + [SMALL_STATE(5738)] = 211582, + [SMALL_STATE(5739)] = 211596, + [SMALL_STATE(5740)] = 211612, + [SMALL_STATE(5741)] = 211628, + [SMALL_STATE(5742)] = 211642, + [SMALL_STATE(5743)] = 211658, + [SMALL_STATE(5744)] = 211672, + [SMALL_STATE(5745)] = 211688, + [SMALL_STATE(5746)] = 211704, + [SMALL_STATE(5747)] = 211720, + [SMALL_STATE(5748)] = 211736, + [SMALL_STATE(5749)] = 211752, + [SMALL_STATE(5750)] = 211768, + [SMALL_STATE(5751)] = 211784, + [SMALL_STATE(5752)] = 211800, + [SMALL_STATE(5753)] = 211816, + [SMALL_STATE(5754)] = 211832, + [SMALL_STATE(5755)] = 211848, + [SMALL_STATE(5756)] = 211864, + [SMALL_STATE(5757)] = 211880, + [SMALL_STATE(5758)] = 211896, + [SMALL_STATE(5759)] = 211912, + [SMALL_STATE(5760)] = 211928, + [SMALL_STATE(5761)] = 211944, + [SMALL_STATE(5762)] = 211960, + [SMALL_STATE(5763)] = 211976, + [SMALL_STATE(5764)] = 211992, + [SMALL_STATE(5765)] = 212008, + [SMALL_STATE(5766)] = 212024, + [SMALL_STATE(5767)] = 212040, + [SMALL_STATE(5768)] = 212056, + [SMALL_STATE(5769)] = 212072, + [SMALL_STATE(5770)] = 212088, + [SMALL_STATE(5771)] = 212104, + [SMALL_STATE(5772)] = 212120, + [SMALL_STATE(5773)] = 212136, + [SMALL_STATE(5774)] = 212152, + [SMALL_STATE(5775)] = 212168, + [SMALL_STATE(5776)] = 212184, + [SMALL_STATE(5777)] = 212200, + [SMALL_STATE(5778)] = 212216, + [SMALL_STATE(5779)] = 212230, + [SMALL_STATE(5780)] = 212246, + [SMALL_STATE(5781)] = 212262, + [SMALL_STATE(5782)] = 212278, + [SMALL_STATE(5783)] = 212294, + [SMALL_STATE(5784)] = 212310, + [SMALL_STATE(5785)] = 212326, + [SMALL_STATE(5786)] = 212342, + [SMALL_STATE(5787)] = 212358, + [SMALL_STATE(5788)] = 212374, + [SMALL_STATE(5789)] = 212390, + [SMALL_STATE(5790)] = 212406, + [SMALL_STATE(5791)] = 212422, + [SMALL_STATE(5792)] = 212438, + [SMALL_STATE(5793)] = 212452, + [SMALL_STATE(5794)] = 212468, + [SMALL_STATE(5795)] = 212482, + [SMALL_STATE(5796)] = 212498, + [SMALL_STATE(5797)] = 212514, + [SMALL_STATE(5798)] = 212530, + [SMALL_STATE(5799)] = 212546, + [SMALL_STATE(5800)] = 212562, + [SMALL_STATE(5801)] = 212578, + [SMALL_STATE(5802)] = 212594, + [SMALL_STATE(5803)] = 212610, + [SMALL_STATE(5804)] = 212626, + [SMALL_STATE(5805)] = 212642, + [SMALL_STATE(5806)] = 212658, + [SMALL_STATE(5807)] = 212674, + [SMALL_STATE(5808)] = 212690, + [SMALL_STATE(5809)] = 212706, + [SMALL_STATE(5810)] = 212722, + [SMALL_STATE(5811)] = 212738, + [SMALL_STATE(5812)] = 212754, + [SMALL_STATE(5813)] = 212770, + [SMALL_STATE(5814)] = 212784, + [SMALL_STATE(5815)] = 212797, + [SMALL_STATE(5816)] = 212810, + [SMALL_STATE(5817)] = 212823, + [SMALL_STATE(5818)] = 212836, + [SMALL_STATE(5819)] = 212849, + [SMALL_STATE(5820)] = 212862, + [SMALL_STATE(5821)] = 212875, + [SMALL_STATE(5822)] = 212888, + [SMALL_STATE(5823)] = 212901, + [SMALL_STATE(5824)] = 212914, + [SMALL_STATE(5825)] = 212925, + [SMALL_STATE(5826)] = 212938, + [SMALL_STATE(5827)] = 212951, + [SMALL_STATE(5828)] = 212964, + [SMALL_STATE(5829)] = 212977, + [SMALL_STATE(5830)] = 212990, + [SMALL_STATE(5831)] = 213003, + [SMALL_STATE(5832)] = 213016, + [SMALL_STATE(5833)] = 213027, + [SMALL_STATE(5834)] = 213040, + [SMALL_STATE(5835)] = 213051, + [SMALL_STATE(5836)] = 213064, + [SMALL_STATE(5837)] = 213077, + [SMALL_STATE(5838)] = 213090, + [SMALL_STATE(5839)] = 213103, + [SMALL_STATE(5840)] = 213116, + [SMALL_STATE(5841)] = 213129, + [SMALL_STATE(5842)] = 213142, + [SMALL_STATE(5843)] = 213155, + [SMALL_STATE(5844)] = 213166, + [SMALL_STATE(5845)] = 213179, + [SMALL_STATE(5846)] = 213192, + [SMALL_STATE(5847)] = 213205, + [SMALL_STATE(5848)] = 213216, + [SMALL_STATE(5849)] = 213229, + [SMALL_STATE(5850)] = 213242, + [SMALL_STATE(5851)] = 213255, + [SMALL_STATE(5852)] = 213268, + [SMALL_STATE(5853)] = 213281, + [SMALL_STATE(5854)] = 213294, + [SMALL_STATE(5855)] = 213307, + [SMALL_STATE(5856)] = 213320, + [SMALL_STATE(5857)] = 213333, + [SMALL_STATE(5858)] = 213346, + [SMALL_STATE(5859)] = 213359, + [SMALL_STATE(5860)] = 213372, + [SMALL_STATE(5861)] = 213385, + [SMALL_STATE(5862)] = 213398, + [SMALL_STATE(5863)] = 213411, + [SMALL_STATE(5864)] = 213424, + [SMALL_STATE(5865)] = 213437, + [SMALL_STATE(5866)] = 213450, + [SMALL_STATE(5867)] = 213463, + [SMALL_STATE(5868)] = 213476, + [SMALL_STATE(5869)] = 213489, + [SMALL_STATE(5870)] = 213498, + [SMALL_STATE(5871)] = 213509, + [SMALL_STATE(5872)] = 213520, + [SMALL_STATE(5873)] = 213533, + [SMALL_STATE(5874)] = 213546, + [SMALL_STATE(5875)] = 213559, + [SMALL_STATE(5876)] = 213572, + [SMALL_STATE(5877)] = 213585, + [SMALL_STATE(5878)] = 213596, + [SMALL_STATE(5879)] = 213609, + [SMALL_STATE(5880)] = 213622, + [SMALL_STATE(5881)] = 213635, + [SMALL_STATE(5882)] = 213646, + [SMALL_STATE(5883)] = 213657, + [SMALL_STATE(5884)] = 213666, + [SMALL_STATE(5885)] = 213679, + [SMALL_STATE(5886)] = 213692, + [SMALL_STATE(5887)] = 213705, + [SMALL_STATE(5888)] = 213718, + [SMALL_STATE(5889)] = 213731, + [SMALL_STATE(5890)] = 213744, + [SMALL_STATE(5891)] = 213757, + [SMALL_STATE(5892)] = 213766, + [SMALL_STATE(5893)] = 213779, + [SMALL_STATE(5894)] = 213792, + [SMALL_STATE(5895)] = 213805, + [SMALL_STATE(5896)] = 213818, + [SMALL_STATE(5897)] = 213829, + [SMALL_STATE(5898)] = 213842, + [SMALL_STATE(5899)] = 213855, + [SMALL_STATE(5900)] = 213868, + [SMALL_STATE(5901)] = 213881, + [SMALL_STATE(5902)] = 213894, + [SMALL_STATE(5903)] = 213907, + [SMALL_STATE(5904)] = 213918, + [SMALL_STATE(5905)] = 213931, + [SMALL_STATE(5906)] = 213944, + [SMALL_STATE(5907)] = 213957, + [SMALL_STATE(5908)] = 213970, + [SMALL_STATE(5909)] = 213983, + [SMALL_STATE(5910)] = 213996, + [SMALL_STATE(5911)] = 214009, + [SMALL_STATE(5912)] = 214022, + [SMALL_STATE(5913)] = 214035, + [SMALL_STATE(5914)] = 214048, + [SMALL_STATE(5915)] = 214061, + [SMALL_STATE(5916)] = 214074, + [SMALL_STATE(5917)] = 214087, + [SMALL_STATE(5918)] = 214100, + [SMALL_STATE(5919)] = 214113, + [SMALL_STATE(5920)] = 214126, + [SMALL_STATE(5921)] = 214139, + [SMALL_STATE(5922)] = 214152, + [SMALL_STATE(5923)] = 214165, + [SMALL_STATE(5924)] = 214176, + [SMALL_STATE(5925)] = 214189, + [SMALL_STATE(5926)] = 214202, + [SMALL_STATE(5927)] = 214213, + [SMALL_STATE(5928)] = 214226, + [SMALL_STATE(5929)] = 214239, + [SMALL_STATE(5930)] = 214252, + [SMALL_STATE(5931)] = 214265, + [SMALL_STATE(5932)] = 214278, + [SMALL_STATE(5933)] = 214291, + [SMALL_STATE(5934)] = 214304, + [SMALL_STATE(5935)] = 214317, + [SMALL_STATE(5936)] = 214330, + [SMALL_STATE(5937)] = 214343, + [SMALL_STATE(5938)] = 214356, + [SMALL_STATE(5939)] = 214369, + [SMALL_STATE(5940)] = 214382, + [SMALL_STATE(5941)] = 214395, + [SMALL_STATE(5942)] = 214408, + [SMALL_STATE(5943)] = 214417, + [SMALL_STATE(5944)] = 214430, + [SMALL_STATE(5945)] = 214441, + [SMALL_STATE(5946)] = 214452, + [SMALL_STATE(5947)] = 214465, + [SMALL_STATE(5948)] = 214478, + [SMALL_STATE(5949)] = 214491, + [SMALL_STATE(5950)] = 214504, + [SMALL_STATE(5951)] = 214517, + [SMALL_STATE(5952)] = 214530, + [SMALL_STATE(5953)] = 214543, + [SMALL_STATE(5954)] = 214556, + [SMALL_STATE(5955)] = 214569, + [SMALL_STATE(5956)] = 214582, + [SMALL_STATE(5957)] = 214595, + [SMALL_STATE(5958)] = 214608, + [SMALL_STATE(5959)] = 214621, + [SMALL_STATE(5960)] = 214634, + [SMALL_STATE(5961)] = 214647, + [SMALL_STATE(5962)] = 214660, + [SMALL_STATE(5963)] = 214673, + [SMALL_STATE(5964)] = 214686, + [SMALL_STATE(5965)] = 214699, + [SMALL_STATE(5966)] = 214712, + [SMALL_STATE(5967)] = 214725, + [SMALL_STATE(5968)] = 214738, + [SMALL_STATE(5969)] = 214751, + [SMALL_STATE(5970)] = 214762, + [SMALL_STATE(5971)] = 214775, + [SMALL_STATE(5972)] = 214786, + [SMALL_STATE(5973)] = 214797, + [SMALL_STATE(5974)] = 214806, + [SMALL_STATE(5975)] = 214815, + [SMALL_STATE(5976)] = 214828, + [SMALL_STATE(5977)] = 214841, + [SMALL_STATE(5978)] = 214854, + [SMALL_STATE(5979)] = 214867, + [SMALL_STATE(5980)] = 214880, + [SMALL_STATE(5981)] = 214893, + [SMALL_STATE(5982)] = 214906, + [SMALL_STATE(5983)] = 214919, + [SMALL_STATE(5984)] = 214932, + [SMALL_STATE(5985)] = 214945, + [SMALL_STATE(5986)] = 214958, + [SMALL_STATE(5987)] = 214971, + [SMALL_STATE(5988)] = 214984, + [SMALL_STATE(5989)] = 214997, + [SMALL_STATE(5990)] = 215010, + [SMALL_STATE(5991)] = 215023, + [SMALL_STATE(5992)] = 215036, + [SMALL_STATE(5993)] = 215049, + [SMALL_STATE(5994)] = 215062, + [SMALL_STATE(5995)] = 215075, + [SMALL_STATE(5996)] = 215088, + [SMALL_STATE(5997)] = 215101, + [SMALL_STATE(5998)] = 215114, + [SMALL_STATE(5999)] = 215127, + [SMALL_STATE(6000)] = 215140, + [SMALL_STATE(6001)] = 215151, + [SMALL_STATE(6002)] = 215164, + [SMALL_STATE(6003)] = 215175, + [SMALL_STATE(6004)] = 215188, + [SMALL_STATE(6005)] = 215201, + [SMALL_STATE(6006)] = 215214, + [SMALL_STATE(6007)] = 215227, + [SMALL_STATE(6008)] = 215240, + [SMALL_STATE(6009)] = 215253, + [SMALL_STATE(6010)] = 215266, + [SMALL_STATE(6011)] = 215279, + [SMALL_STATE(6012)] = 215292, + [SMALL_STATE(6013)] = 215305, + [SMALL_STATE(6014)] = 215318, + [SMALL_STATE(6015)] = 215331, + [SMALL_STATE(6016)] = 215342, + [SMALL_STATE(6017)] = 215355, + [SMALL_STATE(6018)] = 215368, + [SMALL_STATE(6019)] = 215381, + [SMALL_STATE(6020)] = 215394, + [SMALL_STATE(6021)] = 215407, + [SMALL_STATE(6022)] = 215420, + [SMALL_STATE(6023)] = 215433, + [SMALL_STATE(6024)] = 215446, + [SMALL_STATE(6025)] = 215459, + [SMALL_STATE(6026)] = 215472, + [SMALL_STATE(6027)] = 215483, + [SMALL_STATE(6028)] = 215496, + [SMALL_STATE(6029)] = 215509, + [SMALL_STATE(6030)] = 215522, + [SMALL_STATE(6031)] = 215535, + [SMALL_STATE(6032)] = 215548, + [SMALL_STATE(6033)] = 215561, + [SMALL_STATE(6034)] = 215574, + [SMALL_STATE(6035)] = 215585, + [SMALL_STATE(6036)] = 215598, + [SMALL_STATE(6037)] = 215611, + [SMALL_STATE(6038)] = 215624, + [SMALL_STATE(6039)] = 215637, + [SMALL_STATE(6040)] = 215650, + [SMALL_STATE(6041)] = 215663, + [SMALL_STATE(6042)] = 215676, + [SMALL_STATE(6043)] = 215689, + [SMALL_STATE(6044)] = 215702, + [SMALL_STATE(6045)] = 215715, + [SMALL_STATE(6046)] = 215728, + [SMALL_STATE(6047)] = 215741, + [SMALL_STATE(6048)] = 215754, + [SMALL_STATE(6049)] = 215767, + [SMALL_STATE(6050)] = 215780, + [SMALL_STATE(6051)] = 215793, + [SMALL_STATE(6052)] = 215806, + [SMALL_STATE(6053)] = 215819, + [SMALL_STATE(6054)] = 215832, + [SMALL_STATE(6055)] = 215845, + [SMALL_STATE(6056)] = 215858, + [SMALL_STATE(6057)] = 215871, + [SMALL_STATE(6058)] = 215884, + [SMALL_STATE(6059)] = 215897, + [SMALL_STATE(6060)] = 215910, + [SMALL_STATE(6061)] = 215921, + [SMALL_STATE(6062)] = 215934, + [SMALL_STATE(6063)] = 215945, + [SMALL_STATE(6064)] = 215958, + [SMALL_STATE(6065)] = 215971, + [SMALL_STATE(6066)] = 215984, + [SMALL_STATE(6067)] = 215997, + [SMALL_STATE(6068)] = 216010, + [SMALL_STATE(6069)] = 216023, + [SMALL_STATE(6070)] = 216034, + [SMALL_STATE(6071)] = 216047, + [SMALL_STATE(6072)] = 216060, + [SMALL_STATE(6073)] = 216073, + [SMALL_STATE(6074)] = 216086, + [SMALL_STATE(6075)] = 216099, + [SMALL_STATE(6076)] = 216112, + [SMALL_STATE(6077)] = 216125, + [SMALL_STATE(6078)] = 216136, + [SMALL_STATE(6079)] = 216147, + [SMALL_STATE(6080)] = 216160, + [SMALL_STATE(6081)] = 216173, + [SMALL_STATE(6082)] = 216186, + [SMALL_STATE(6083)] = 216199, + [SMALL_STATE(6084)] = 216212, + [SMALL_STATE(6085)] = 216225, + [SMALL_STATE(6086)] = 216238, + [SMALL_STATE(6087)] = 216251, + [SMALL_STATE(6088)] = 216264, + [SMALL_STATE(6089)] = 216277, + [SMALL_STATE(6090)] = 216290, + [SMALL_STATE(6091)] = 216303, + [SMALL_STATE(6092)] = 216314, + [SMALL_STATE(6093)] = 216327, + [SMALL_STATE(6094)] = 216340, + [SMALL_STATE(6095)] = 216353, + [SMALL_STATE(6096)] = 216366, + [SMALL_STATE(6097)] = 216379, + [SMALL_STATE(6098)] = 216390, + [SMALL_STATE(6099)] = 216403, + [SMALL_STATE(6100)] = 216416, + [SMALL_STATE(6101)] = 216429, + [SMALL_STATE(6102)] = 216442, + [SMALL_STATE(6103)] = 216455, + [SMALL_STATE(6104)] = 216468, + [SMALL_STATE(6105)] = 216481, + [SMALL_STATE(6106)] = 216492, + [SMALL_STATE(6107)] = 216503, + [SMALL_STATE(6108)] = 216516, + [SMALL_STATE(6109)] = 216529, + [SMALL_STATE(6110)] = 216542, + [SMALL_STATE(6111)] = 216555, + [SMALL_STATE(6112)] = 216568, + [SMALL_STATE(6113)] = 216581, + [SMALL_STATE(6114)] = 216594, + [SMALL_STATE(6115)] = 216604, + [SMALL_STATE(6116)] = 216614, + [SMALL_STATE(6117)] = 216624, + [SMALL_STATE(6118)] = 216634, + [SMALL_STATE(6119)] = 216644, + [SMALL_STATE(6120)] = 216654, + [SMALL_STATE(6121)] = 216664, + [SMALL_STATE(6122)] = 216674, + [SMALL_STATE(6123)] = 216684, + [SMALL_STATE(6124)] = 216694, + [SMALL_STATE(6125)] = 216704, + [SMALL_STATE(6126)] = 216714, + [SMALL_STATE(6127)] = 216724, + [SMALL_STATE(6128)] = 216734, + [SMALL_STATE(6129)] = 216744, + [SMALL_STATE(6130)] = 216754, + [SMALL_STATE(6131)] = 216764, + [SMALL_STATE(6132)] = 216774, + [SMALL_STATE(6133)] = 216784, + [SMALL_STATE(6134)] = 216794, + [SMALL_STATE(6135)] = 216804, + [SMALL_STATE(6136)] = 216814, + [SMALL_STATE(6137)] = 216824, + [SMALL_STATE(6138)] = 216834, + [SMALL_STATE(6139)] = 216844, + [SMALL_STATE(6140)] = 216854, + [SMALL_STATE(6141)] = 216864, + [SMALL_STATE(6142)] = 216874, + [SMALL_STATE(6143)] = 216884, + [SMALL_STATE(6144)] = 216894, + [SMALL_STATE(6145)] = 216904, + [SMALL_STATE(6146)] = 216914, + [SMALL_STATE(6147)] = 216924, + [SMALL_STATE(6148)] = 216934, + [SMALL_STATE(6149)] = 216942, + [SMALL_STATE(6150)] = 216952, + [SMALL_STATE(6151)] = 216962, + [SMALL_STATE(6152)] = 216972, + [SMALL_STATE(6153)] = 216982, + [SMALL_STATE(6154)] = 216992, + [SMALL_STATE(6155)] = 217002, + [SMALL_STATE(6156)] = 217012, + [SMALL_STATE(6157)] = 217022, + [SMALL_STATE(6158)] = 217032, + [SMALL_STATE(6159)] = 217042, + [SMALL_STATE(6160)] = 217052, + [SMALL_STATE(6161)] = 217062, + [SMALL_STATE(6162)] = 217072, + [SMALL_STATE(6163)] = 217082, + [SMALL_STATE(6164)] = 217092, + [SMALL_STATE(6165)] = 217102, + [SMALL_STATE(6166)] = 217112, + [SMALL_STATE(6167)] = 217122, + [SMALL_STATE(6168)] = 217132, + [SMALL_STATE(6169)] = 217142, + [SMALL_STATE(6170)] = 217152, + [SMALL_STATE(6171)] = 217162, + [SMALL_STATE(6172)] = 217172, + [SMALL_STATE(6173)] = 217182, + [SMALL_STATE(6174)] = 217192, + [SMALL_STATE(6175)] = 217202, + [SMALL_STATE(6176)] = 217212, + [SMALL_STATE(6177)] = 217222, + [SMALL_STATE(6178)] = 217232, + [SMALL_STATE(6179)] = 217242, + [SMALL_STATE(6180)] = 217252, + [SMALL_STATE(6181)] = 217262, + [SMALL_STATE(6182)] = 217272, + [SMALL_STATE(6183)] = 217282, + [SMALL_STATE(6184)] = 217292, + [SMALL_STATE(6185)] = 217302, + [SMALL_STATE(6186)] = 217312, + [SMALL_STATE(6187)] = 217322, + [SMALL_STATE(6188)] = 217332, + [SMALL_STATE(6189)] = 217342, + [SMALL_STATE(6190)] = 217352, + [SMALL_STATE(6191)] = 217362, + [SMALL_STATE(6192)] = 217372, + [SMALL_STATE(6193)] = 217382, + [SMALL_STATE(6194)] = 217392, + [SMALL_STATE(6195)] = 217402, + [SMALL_STATE(6196)] = 217412, + [SMALL_STATE(6197)] = 217422, + [SMALL_STATE(6198)] = 217432, + [SMALL_STATE(6199)] = 217442, + [SMALL_STATE(6200)] = 217452, + [SMALL_STATE(6201)] = 217462, + [SMALL_STATE(6202)] = 217472, + [SMALL_STATE(6203)] = 217482, + [SMALL_STATE(6204)] = 217492, + [SMALL_STATE(6205)] = 217502, + [SMALL_STATE(6206)] = 217512, + [SMALL_STATE(6207)] = 217522, + [SMALL_STATE(6208)] = 217532, + [SMALL_STATE(6209)] = 217542, + [SMALL_STATE(6210)] = 217552, + [SMALL_STATE(6211)] = 217562, + [SMALL_STATE(6212)] = 217572, + [SMALL_STATE(6213)] = 217582, + [SMALL_STATE(6214)] = 217592, + [SMALL_STATE(6215)] = 217602, + [SMALL_STATE(6216)] = 217612, + [SMALL_STATE(6217)] = 217622, + [SMALL_STATE(6218)] = 217632, + [SMALL_STATE(6219)] = 217642, + [SMALL_STATE(6220)] = 217652, + [SMALL_STATE(6221)] = 217662, + [SMALL_STATE(6222)] = 217672, + [SMALL_STATE(6223)] = 217682, + [SMALL_STATE(6224)] = 217692, + [SMALL_STATE(6225)] = 217702, + [SMALL_STATE(6226)] = 217712, + [SMALL_STATE(6227)] = 217722, + [SMALL_STATE(6228)] = 217732, + [SMALL_STATE(6229)] = 217742, + [SMALL_STATE(6230)] = 217752, + [SMALL_STATE(6231)] = 217762, + [SMALL_STATE(6232)] = 217772, + [SMALL_STATE(6233)] = 217782, + [SMALL_STATE(6234)] = 217792, + [SMALL_STATE(6235)] = 217802, + [SMALL_STATE(6236)] = 217812, + [SMALL_STATE(6237)] = 217822, + [SMALL_STATE(6238)] = 217832, + [SMALL_STATE(6239)] = 217842, + [SMALL_STATE(6240)] = 217852, + [SMALL_STATE(6241)] = 217862, + [SMALL_STATE(6242)] = 217872, + [SMALL_STATE(6243)] = 217882, + [SMALL_STATE(6244)] = 217892, + [SMALL_STATE(6245)] = 217902, + [SMALL_STATE(6246)] = 217912, + [SMALL_STATE(6247)] = 217922, + [SMALL_STATE(6248)] = 217932, + [SMALL_STATE(6249)] = 217942, + [SMALL_STATE(6250)] = 217952, + [SMALL_STATE(6251)] = 217962, + [SMALL_STATE(6252)] = 217972, + [SMALL_STATE(6253)] = 217982, + [SMALL_STATE(6254)] = 217992, + [SMALL_STATE(6255)] = 218002, + [SMALL_STATE(6256)] = 218012, + [SMALL_STATE(6257)] = 218022, + [SMALL_STATE(6258)] = 218032, + [SMALL_STATE(6259)] = 218042, + [SMALL_STATE(6260)] = 218052, + [SMALL_STATE(6261)] = 218060, + [SMALL_STATE(6262)] = 218068, + [SMALL_STATE(6263)] = 218078, + [SMALL_STATE(6264)] = 218088, + [SMALL_STATE(6265)] = 218098, + [SMALL_STATE(6266)] = 218108, + [SMALL_STATE(6267)] = 218118, + [SMALL_STATE(6268)] = 218128, + [SMALL_STATE(6269)] = 218138, + [SMALL_STATE(6270)] = 218148, + [SMALL_STATE(6271)] = 218158, + [SMALL_STATE(6272)] = 218168, + [SMALL_STATE(6273)] = 218178, + [SMALL_STATE(6274)] = 218188, + [SMALL_STATE(6275)] = 218198, + [SMALL_STATE(6276)] = 218208, + [SMALL_STATE(6277)] = 218218, + [SMALL_STATE(6278)] = 218228, + [SMALL_STATE(6279)] = 218238, + [SMALL_STATE(6280)] = 218248, + [SMALL_STATE(6281)] = 218258, + [SMALL_STATE(6282)] = 218268, + [SMALL_STATE(6283)] = 218278, + [SMALL_STATE(6284)] = 218288, + [SMALL_STATE(6285)] = 218298, + [SMALL_STATE(6286)] = 218308, + [SMALL_STATE(6287)] = 218318, + [SMALL_STATE(6288)] = 218328, + [SMALL_STATE(6289)] = 218338, + [SMALL_STATE(6290)] = 218348, + [SMALL_STATE(6291)] = 218356, + [SMALL_STATE(6292)] = 218366, + [SMALL_STATE(6293)] = 218376, + [SMALL_STATE(6294)] = 218386, + [SMALL_STATE(6295)] = 218396, + [SMALL_STATE(6296)] = 218406, + [SMALL_STATE(6297)] = 218416, + [SMALL_STATE(6298)] = 218426, + [SMALL_STATE(6299)] = 218436, + [SMALL_STATE(6300)] = 218446, + [SMALL_STATE(6301)] = 218456, + [SMALL_STATE(6302)] = 218466, + [SMALL_STATE(6303)] = 218476, + [SMALL_STATE(6304)] = 218486, + [SMALL_STATE(6305)] = 218496, + [SMALL_STATE(6306)] = 218506, + [SMALL_STATE(6307)] = 218516, + [SMALL_STATE(6308)] = 218526, + [SMALL_STATE(6309)] = 218536, + [SMALL_STATE(6310)] = 218546, + [SMALL_STATE(6311)] = 218556, + [SMALL_STATE(6312)] = 218566, + [SMALL_STATE(6313)] = 218576, + [SMALL_STATE(6314)] = 218584, + [SMALL_STATE(6315)] = 218592, + [SMALL_STATE(6316)] = 218602, + [SMALL_STATE(6317)] = 218612, + [SMALL_STATE(6318)] = 218622, + [SMALL_STATE(6319)] = 218632, + [SMALL_STATE(6320)] = 218642, + [SMALL_STATE(6321)] = 218652, + [SMALL_STATE(6322)] = 218660, + [SMALL_STATE(6323)] = 218670, + [SMALL_STATE(6324)] = 218680, + [SMALL_STATE(6325)] = 218690, + [SMALL_STATE(6326)] = 218700, + [SMALL_STATE(6327)] = 218710, + [SMALL_STATE(6328)] = 218720, + [SMALL_STATE(6329)] = 218730, + [SMALL_STATE(6330)] = 218740, + [SMALL_STATE(6331)] = 218750, + [SMALL_STATE(6332)] = 218760, + [SMALL_STATE(6333)] = 218770, + [SMALL_STATE(6334)] = 218780, + [SMALL_STATE(6335)] = 218790, + [SMALL_STATE(6336)] = 218800, + [SMALL_STATE(6337)] = 218810, + [SMALL_STATE(6338)] = 218820, + [SMALL_STATE(6339)] = 218830, + [SMALL_STATE(6340)] = 218840, + [SMALL_STATE(6341)] = 218850, + [SMALL_STATE(6342)] = 218860, + [SMALL_STATE(6343)] = 218870, + [SMALL_STATE(6344)] = 218880, + [SMALL_STATE(6345)] = 218890, + [SMALL_STATE(6346)] = 218900, + [SMALL_STATE(6347)] = 218910, + [SMALL_STATE(6348)] = 218920, + [SMALL_STATE(6349)] = 218930, + [SMALL_STATE(6350)] = 218940, + [SMALL_STATE(6351)] = 218950, + [SMALL_STATE(6352)] = 218960, + [SMALL_STATE(6353)] = 218970, + [SMALL_STATE(6354)] = 218980, + [SMALL_STATE(6355)] = 218990, + [SMALL_STATE(6356)] = 219000, + [SMALL_STATE(6357)] = 219010, + [SMALL_STATE(6358)] = 219020, + [SMALL_STATE(6359)] = 219030, + [SMALL_STATE(6360)] = 219040, + [SMALL_STATE(6361)] = 219048, + [SMALL_STATE(6362)] = 219058, + [SMALL_STATE(6363)] = 219068, + [SMALL_STATE(6364)] = 219076, + [SMALL_STATE(6365)] = 219086, + [SMALL_STATE(6366)] = 219096, + [SMALL_STATE(6367)] = 219106, + [SMALL_STATE(6368)] = 219116, + [SMALL_STATE(6369)] = 219126, + [SMALL_STATE(6370)] = 219136, + [SMALL_STATE(6371)] = 219146, + [SMALL_STATE(6372)] = 219156, + [SMALL_STATE(6373)] = 219166, + [SMALL_STATE(6374)] = 219176, + [SMALL_STATE(6375)] = 219186, + [SMALL_STATE(6376)] = 219196, + [SMALL_STATE(6377)] = 219206, + [SMALL_STATE(6378)] = 219216, + [SMALL_STATE(6379)] = 219226, + [SMALL_STATE(6380)] = 219236, + [SMALL_STATE(6381)] = 219246, + [SMALL_STATE(6382)] = 219256, + [SMALL_STATE(6383)] = 219266, + [SMALL_STATE(6384)] = 219276, + [SMALL_STATE(6385)] = 219286, + [SMALL_STATE(6386)] = 219296, + [SMALL_STATE(6387)] = 219306, + [SMALL_STATE(6388)] = 219316, + [SMALL_STATE(6389)] = 219326, + [SMALL_STATE(6390)] = 219336, + [SMALL_STATE(6391)] = 219346, + [SMALL_STATE(6392)] = 219356, + [SMALL_STATE(6393)] = 219366, + [SMALL_STATE(6394)] = 219376, + [SMALL_STATE(6395)] = 219384, + [SMALL_STATE(6396)] = 219392, + [SMALL_STATE(6397)] = 219402, + [SMALL_STATE(6398)] = 219412, + [SMALL_STATE(6399)] = 219422, + [SMALL_STATE(6400)] = 219432, + [SMALL_STATE(6401)] = 219440, + [SMALL_STATE(6402)] = 219450, + [SMALL_STATE(6403)] = 219458, + [SMALL_STATE(6404)] = 219466, + [SMALL_STATE(6405)] = 219476, + [SMALL_STATE(6406)] = 219486, + [SMALL_STATE(6407)] = 219496, + [SMALL_STATE(6408)] = 219506, + [SMALL_STATE(6409)] = 219516, + [SMALL_STATE(6410)] = 219526, + [SMALL_STATE(6411)] = 219536, + [SMALL_STATE(6412)] = 219546, + [SMALL_STATE(6413)] = 219554, + [SMALL_STATE(6414)] = 219562, + [SMALL_STATE(6415)] = 219570, + [SMALL_STATE(6416)] = 219580, + [SMALL_STATE(6417)] = 219590, + [SMALL_STATE(6418)] = 219600, + [SMALL_STATE(6419)] = 219610, + [SMALL_STATE(6420)] = 219620, + [SMALL_STATE(6421)] = 219630, + [SMALL_STATE(6422)] = 219640, + [SMALL_STATE(6423)] = 219648, + [SMALL_STATE(6424)] = 219658, + [SMALL_STATE(6425)] = 219668, + [SMALL_STATE(6426)] = 219678, + [SMALL_STATE(6427)] = 219686, + [SMALL_STATE(6428)] = 219696, + [SMALL_STATE(6429)] = 219706, + [SMALL_STATE(6430)] = 219714, + [SMALL_STATE(6431)] = 219724, + [SMALL_STATE(6432)] = 219734, + [SMALL_STATE(6433)] = 219742, + [SMALL_STATE(6434)] = 219752, + [SMALL_STATE(6435)] = 219762, + [SMALL_STATE(6436)] = 219770, + [SMALL_STATE(6437)] = 219780, + [SMALL_STATE(6438)] = 219790, + [SMALL_STATE(6439)] = 219798, + [SMALL_STATE(6440)] = 219808, + [SMALL_STATE(6441)] = 219818, + [SMALL_STATE(6442)] = 219828, + [SMALL_STATE(6443)] = 219838, + [SMALL_STATE(6444)] = 219848, + [SMALL_STATE(6445)] = 219858, + [SMALL_STATE(6446)] = 219868, + [SMALL_STATE(6447)] = 219878, + [SMALL_STATE(6448)] = 219888, + [SMALL_STATE(6449)] = 219898, + [SMALL_STATE(6450)] = 219908, + [SMALL_STATE(6451)] = 219916, + [SMALL_STATE(6452)] = 219924, + [SMALL_STATE(6453)] = 219934, + [SMALL_STATE(6454)] = 219942, + [SMALL_STATE(6455)] = 219952, + [SMALL_STATE(6456)] = 219962, + [SMALL_STATE(6457)] = 219970, + [SMALL_STATE(6458)] = 219980, + [SMALL_STATE(6459)] = 219990, + [SMALL_STATE(6460)] = 220000, + [SMALL_STATE(6461)] = 220010, + [SMALL_STATE(6462)] = 220018, + [SMALL_STATE(6463)] = 220028, + [SMALL_STATE(6464)] = 220038, + [SMALL_STATE(6465)] = 220048, + [SMALL_STATE(6466)] = 220058, + [SMALL_STATE(6467)] = 220068, + [SMALL_STATE(6468)] = 220078, + [SMALL_STATE(6469)] = 220086, + [SMALL_STATE(6470)] = 220094, + [SMALL_STATE(6471)] = 220104, + [SMALL_STATE(6472)] = 220114, + [SMALL_STATE(6473)] = 220124, + [SMALL_STATE(6474)] = 220134, + [SMALL_STATE(6475)] = 220144, + [SMALL_STATE(6476)] = 220154, + [SMALL_STATE(6477)] = 220164, + [SMALL_STATE(6478)] = 220172, + [SMALL_STATE(6479)] = 220180, + [SMALL_STATE(6480)] = 220190, + [SMALL_STATE(6481)] = 220200, + [SMALL_STATE(6482)] = 220210, + [SMALL_STATE(6483)] = 220220, + [SMALL_STATE(6484)] = 220230, + [SMALL_STATE(6485)] = 220240, + [SMALL_STATE(6486)] = 220250, + [SMALL_STATE(6487)] = 220260, + [SMALL_STATE(6488)] = 220270, + [SMALL_STATE(6489)] = 220280, + [SMALL_STATE(6490)] = 220290, + [SMALL_STATE(6491)] = 220300, + [SMALL_STATE(6492)] = 220310, + [SMALL_STATE(6493)] = 220320, + [SMALL_STATE(6494)] = 220330, + [SMALL_STATE(6495)] = 220340, + [SMALL_STATE(6496)] = 220350, + [SMALL_STATE(6497)] = 220360, + [SMALL_STATE(6498)] = 220370, + [SMALL_STATE(6499)] = 220380, + [SMALL_STATE(6500)] = 220390, + [SMALL_STATE(6501)] = 220400, + [SMALL_STATE(6502)] = 220410, + [SMALL_STATE(6503)] = 220420, + [SMALL_STATE(6504)] = 220430, + [SMALL_STATE(6505)] = 220440, + [SMALL_STATE(6506)] = 220450, + [SMALL_STATE(6507)] = 220460, + [SMALL_STATE(6508)] = 220470, + [SMALL_STATE(6509)] = 220480, + [SMALL_STATE(6510)] = 220490, + [SMALL_STATE(6511)] = 220500, + [SMALL_STATE(6512)] = 220510, + [SMALL_STATE(6513)] = 220518, + [SMALL_STATE(6514)] = 220528, + [SMALL_STATE(6515)] = 220538, + [SMALL_STATE(6516)] = 220548, + [SMALL_STATE(6517)] = 220558, + [SMALL_STATE(6518)] = 220568, + [SMALL_STATE(6519)] = 220578, + [SMALL_STATE(6520)] = 220586, + [SMALL_STATE(6521)] = 220596, + [SMALL_STATE(6522)] = 220604, + [SMALL_STATE(6523)] = 220614, + [SMALL_STATE(6524)] = 220624, + [SMALL_STATE(6525)] = 220634, + [SMALL_STATE(6526)] = 220644, + [SMALL_STATE(6527)] = 220654, + [SMALL_STATE(6528)] = 220664, + [SMALL_STATE(6529)] = 220672, + [SMALL_STATE(6530)] = 220682, + [SMALL_STATE(6531)] = 220692, + [SMALL_STATE(6532)] = 220702, + [SMALL_STATE(6533)] = 220712, + [SMALL_STATE(6534)] = 220722, + [SMALL_STATE(6535)] = 220732, + [SMALL_STATE(6536)] = 220742, + [SMALL_STATE(6537)] = 220752, + [SMALL_STATE(6538)] = 220762, + [SMALL_STATE(6539)] = 220772, + [SMALL_STATE(6540)] = 220782, + [SMALL_STATE(6541)] = 220792, + [SMALL_STATE(6542)] = 220802, + [SMALL_STATE(6543)] = 220812, + [SMALL_STATE(6544)] = 220822, + [SMALL_STATE(6545)] = 220832, + [SMALL_STATE(6546)] = 220840, + [SMALL_STATE(6547)] = 220850, + [SMALL_STATE(6548)] = 220858, + [SMALL_STATE(6549)] = 220866, + [SMALL_STATE(6550)] = 220876, + [SMALL_STATE(6551)] = 220886, + [SMALL_STATE(6552)] = 220896, + [SMALL_STATE(6553)] = 220906, + [SMALL_STATE(6554)] = 220916, + [SMALL_STATE(6555)] = 220926, + [SMALL_STATE(6556)] = 220936, + [SMALL_STATE(6557)] = 220946, + [SMALL_STATE(6558)] = 220956, + [SMALL_STATE(6559)] = 220966, + [SMALL_STATE(6560)] = 220976, + [SMALL_STATE(6561)] = 220986, + [SMALL_STATE(6562)] = 220996, + [SMALL_STATE(6563)] = 221006, + [SMALL_STATE(6564)] = 221016, + [SMALL_STATE(6565)] = 221026, + [SMALL_STATE(6566)] = 221036, + [SMALL_STATE(6567)] = 221046, + [SMALL_STATE(6568)] = 221056, + [SMALL_STATE(6569)] = 221066, + [SMALL_STATE(6570)] = 221076, + [SMALL_STATE(6571)] = 221086, + [SMALL_STATE(6572)] = 221096, + [SMALL_STATE(6573)] = 221106, + [SMALL_STATE(6574)] = 221116, + [SMALL_STATE(6575)] = 221126, + [SMALL_STATE(6576)] = 221136, + [SMALL_STATE(6577)] = 221146, + [SMALL_STATE(6578)] = 221156, + [SMALL_STATE(6579)] = 221166, + [SMALL_STATE(6580)] = 221176, + [SMALL_STATE(6581)] = 221186, + [SMALL_STATE(6582)] = 221196, + [SMALL_STATE(6583)] = 221206, + [SMALL_STATE(6584)] = 221216, + [SMALL_STATE(6585)] = 221226, + [SMALL_STATE(6586)] = 221236, + [SMALL_STATE(6587)] = 221246, + [SMALL_STATE(6588)] = 221256, + [SMALL_STATE(6589)] = 221266, + [SMALL_STATE(6590)] = 221276, + [SMALL_STATE(6591)] = 221284, + [SMALL_STATE(6592)] = 221294, + [SMALL_STATE(6593)] = 221304, + [SMALL_STATE(6594)] = 221314, + [SMALL_STATE(6595)] = 221324, + [SMALL_STATE(6596)] = 221334, + [SMALL_STATE(6597)] = 221342, + [SMALL_STATE(6598)] = 221352, + [SMALL_STATE(6599)] = 221362, + [SMALL_STATE(6600)] = 221372, + [SMALL_STATE(6601)] = 221382, + [SMALL_STATE(6602)] = 221392, + [SMALL_STATE(6603)] = 221402, + [SMALL_STATE(6604)] = 221410, + [SMALL_STATE(6605)] = 221420, + [SMALL_STATE(6606)] = 221430, + [SMALL_STATE(6607)] = 221440, + [SMALL_STATE(6608)] = 221450, + [SMALL_STATE(6609)] = 221460, + [SMALL_STATE(6610)] = 221470, + [SMALL_STATE(6611)] = 221480, + [SMALL_STATE(6612)] = 221490, + [SMALL_STATE(6613)] = 221500, + [SMALL_STATE(6614)] = 221508, + [SMALL_STATE(6615)] = 221518, + [SMALL_STATE(6616)] = 221528, + [SMALL_STATE(6617)] = 221538, + [SMALL_STATE(6618)] = 221546, + [SMALL_STATE(6619)] = 221553, + [SMALL_STATE(6620)] = 221560, + [SMALL_STATE(6621)] = 221567, + [SMALL_STATE(6622)] = 221574, + [SMALL_STATE(6623)] = 221581, + [SMALL_STATE(6624)] = 221588, + [SMALL_STATE(6625)] = 221595, + [SMALL_STATE(6626)] = 221602, + [SMALL_STATE(6627)] = 221609, + [SMALL_STATE(6628)] = 221616, + [SMALL_STATE(6629)] = 221623, + [SMALL_STATE(6630)] = 221630, + [SMALL_STATE(6631)] = 221637, + [SMALL_STATE(6632)] = 221644, + [SMALL_STATE(6633)] = 221651, + [SMALL_STATE(6634)] = 221658, + [SMALL_STATE(6635)] = 221665, + [SMALL_STATE(6636)] = 221672, + [SMALL_STATE(6637)] = 221679, + [SMALL_STATE(6638)] = 221686, + [SMALL_STATE(6639)] = 221693, + [SMALL_STATE(6640)] = 221700, + [SMALL_STATE(6641)] = 221707, + [SMALL_STATE(6642)] = 221714, + [SMALL_STATE(6643)] = 221721, + [SMALL_STATE(6644)] = 221728, + [SMALL_STATE(6645)] = 221735, + [SMALL_STATE(6646)] = 221742, + [SMALL_STATE(6647)] = 221749, + [SMALL_STATE(6648)] = 221756, + [SMALL_STATE(6649)] = 221763, + [SMALL_STATE(6650)] = 221770, + [SMALL_STATE(6651)] = 221777, + [SMALL_STATE(6652)] = 221784, + [SMALL_STATE(6653)] = 221791, + [SMALL_STATE(6654)] = 221798, + [SMALL_STATE(6655)] = 221805, + [SMALL_STATE(6656)] = 221812, + [SMALL_STATE(6657)] = 221819, + [SMALL_STATE(6658)] = 221826, + [SMALL_STATE(6659)] = 221833, + [SMALL_STATE(6660)] = 221840, + [SMALL_STATE(6661)] = 221847, + [SMALL_STATE(6662)] = 221854, + [SMALL_STATE(6663)] = 221861, + [SMALL_STATE(6664)] = 221868, + [SMALL_STATE(6665)] = 221875, + [SMALL_STATE(6666)] = 221882, + [SMALL_STATE(6667)] = 221889, + [SMALL_STATE(6668)] = 221896, + [SMALL_STATE(6669)] = 221903, + [SMALL_STATE(6670)] = 221910, + [SMALL_STATE(6671)] = 221917, + [SMALL_STATE(6672)] = 221924, + [SMALL_STATE(6673)] = 221931, + [SMALL_STATE(6674)] = 221938, + [SMALL_STATE(6675)] = 221945, + [SMALL_STATE(6676)] = 221952, + [SMALL_STATE(6677)] = 221959, + [SMALL_STATE(6678)] = 221966, + [SMALL_STATE(6679)] = 221973, + [SMALL_STATE(6680)] = 221980, + [SMALL_STATE(6681)] = 221987, + [SMALL_STATE(6682)] = 221994, + [SMALL_STATE(6683)] = 222001, + [SMALL_STATE(6684)] = 222008, + [SMALL_STATE(6685)] = 222015, + [SMALL_STATE(6686)] = 222022, + [SMALL_STATE(6687)] = 222029, + [SMALL_STATE(6688)] = 222036, + [SMALL_STATE(6689)] = 222043, + [SMALL_STATE(6690)] = 222050, + [SMALL_STATE(6691)] = 222057, + [SMALL_STATE(6692)] = 222064, + [SMALL_STATE(6693)] = 222071, + [SMALL_STATE(6694)] = 222078, + [SMALL_STATE(6695)] = 222085, + [SMALL_STATE(6696)] = 222092, + [SMALL_STATE(6697)] = 222099, + [SMALL_STATE(6698)] = 222106, + [SMALL_STATE(6699)] = 222113, + [SMALL_STATE(6700)] = 222120, + [SMALL_STATE(6701)] = 222127, + [SMALL_STATE(6702)] = 222134, + [SMALL_STATE(6703)] = 222141, + [SMALL_STATE(6704)] = 222148, + [SMALL_STATE(6705)] = 222155, + [SMALL_STATE(6706)] = 222162, + [SMALL_STATE(6707)] = 222169, + [SMALL_STATE(6708)] = 222176, + [SMALL_STATE(6709)] = 222183, + [SMALL_STATE(6710)] = 222190, + [SMALL_STATE(6711)] = 222197, + [SMALL_STATE(6712)] = 222204, + [SMALL_STATE(6713)] = 222211, + [SMALL_STATE(6714)] = 222218, + [SMALL_STATE(6715)] = 222225, + [SMALL_STATE(6716)] = 222232, + [SMALL_STATE(6717)] = 222239, + [SMALL_STATE(6718)] = 222246, + [SMALL_STATE(6719)] = 222253, + [SMALL_STATE(6720)] = 222260, + [SMALL_STATE(6721)] = 222267, + [SMALL_STATE(6722)] = 222274, + [SMALL_STATE(6723)] = 222281, + [SMALL_STATE(6724)] = 222288, + [SMALL_STATE(6725)] = 222295, + [SMALL_STATE(6726)] = 222302, + [SMALL_STATE(6727)] = 222309, + [SMALL_STATE(6728)] = 222316, + [SMALL_STATE(6729)] = 222323, + [SMALL_STATE(6730)] = 222330, + [SMALL_STATE(6731)] = 222337, + [SMALL_STATE(6732)] = 222344, + [SMALL_STATE(6733)] = 222351, + [SMALL_STATE(6734)] = 222358, + [SMALL_STATE(6735)] = 222365, + [SMALL_STATE(6736)] = 222372, + [SMALL_STATE(6737)] = 222379, + [SMALL_STATE(6738)] = 222386, + [SMALL_STATE(6739)] = 222393, + [SMALL_STATE(6740)] = 222400, + [SMALL_STATE(6741)] = 222407, + [SMALL_STATE(6742)] = 222414, + [SMALL_STATE(6743)] = 222421, + [SMALL_STATE(6744)] = 222428, + [SMALL_STATE(6745)] = 222435, + [SMALL_STATE(6746)] = 222442, + [SMALL_STATE(6747)] = 222449, + [SMALL_STATE(6748)] = 222456, + [SMALL_STATE(6749)] = 222463, + [SMALL_STATE(6750)] = 222470, + [SMALL_STATE(6751)] = 222477, + [SMALL_STATE(6752)] = 222484, + [SMALL_STATE(6753)] = 222491, + [SMALL_STATE(6754)] = 222498, + [SMALL_STATE(6755)] = 222505, + [SMALL_STATE(6756)] = 222512, + [SMALL_STATE(6757)] = 222519, + [SMALL_STATE(6758)] = 222526, + [SMALL_STATE(6759)] = 222533, + [SMALL_STATE(6760)] = 222540, + [SMALL_STATE(6761)] = 222547, + [SMALL_STATE(6762)] = 222554, + [SMALL_STATE(6763)] = 222561, + [SMALL_STATE(6764)] = 222568, + [SMALL_STATE(6765)] = 222575, + [SMALL_STATE(6766)] = 222582, + [SMALL_STATE(6767)] = 222589, + [SMALL_STATE(6768)] = 222596, + [SMALL_STATE(6769)] = 222603, + [SMALL_STATE(6770)] = 222610, + [SMALL_STATE(6771)] = 222617, + [SMALL_STATE(6772)] = 222624, + [SMALL_STATE(6773)] = 222631, + [SMALL_STATE(6774)] = 222638, + [SMALL_STATE(6775)] = 222645, + [SMALL_STATE(6776)] = 222652, + [SMALL_STATE(6777)] = 222659, + [SMALL_STATE(6778)] = 222666, + [SMALL_STATE(6779)] = 222673, + [SMALL_STATE(6780)] = 222680, + [SMALL_STATE(6781)] = 222687, + [SMALL_STATE(6782)] = 222694, + [SMALL_STATE(6783)] = 222701, + [SMALL_STATE(6784)] = 222708, + [SMALL_STATE(6785)] = 222715, + [SMALL_STATE(6786)] = 222722, + [SMALL_STATE(6787)] = 222729, + [SMALL_STATE(6788)] = 222736, + [SMALL_STATE(6789)] = 222743, + [SMALL_STATE(6790)] = 222750, + [SMALL_STATE(6791)] = 222757, + [SMALL_STATE(6792)] = 222764, + [SMALL_STATE(6793)] = 222771, + [SMALL_STATE(6794)] = 222778, + [SMALL_STATE(6795)] = 222785, + [SMALL_STATE(6796)] = 222792, + [SMALL_STATE(6797)] = 222799, + [SMALL_STATE(6798)] = 222806, + [SMALL_STATE(6799)] = 222813, + [SMALL_STATE(6800)] = 222820, + [SMALL_STATE(6801)] = 222827, + [SMALL_STATE(6802)] = 222834, + [SMALL_STATE(6803)] = 222841, + [SMALL_STATE(6804)] = 222848, + [SMALL_STATE(6805)] = 222855, + [SMALL_STATE(6806)] = 222862, + [SMALL_STATE(6807)] = 222869, + [SMALL_STATE(6808)] = 222876, + [SMALL_STATE(6809)] = 222883, + [SMALL_STATE(6810)] = 222890, + [SMALL_STATE(6811)] = 222897, + [SMALL_STATE(6812)] = 222904, + [SMALL_STATE(6813)] = 222911, + [SMALL_STATE(6814)] = 222918, + [SMALL_STATE(6815)] = 222925, + [SMALL_STATE(6816)] = 222932, + [SMALL_STATE(6817)] = 222939, + [SMALL_STATE(6818)] = 222946, + [SMALL_STATE(6819)] = 222953, + [SMALL_STATE(6820)] = 222960, + [SMALL_STATE(6821)] = 222967, + [SMALL_STATE(6822)] = 222974, + [SMALL_STATE(6823)] = 222981, + [SMALL_STATE(6824)] = 222988, + [SMALL_STATE(6825)] = 222995, + [SMALL_STATE(6826)] = 223002, + [SMALL_STATE(6827)] = 223009, + [SMALL_STATE(6828)] = 223016, + [SMALL_STATE(6829)] = 223023, + [SMALL_STATE(6830)] = 223030, + [SMALL_STATE(6831)] = 223037, + [SMALL_STATE(6832)] = 223044, + [SMALL_STATE(6833)] = 223051, + [SMALL_STATE(6834)] = 223058, + [SMALL_STATE(6835)] = 223065, + [SMALL_STATE(6836)] = 223072, + [SMALL_STATE(6837)] = 223079, + [SMALL_STATE(6838)] = 223086, + [SMALL_STATE(6839)] = 223093, + [SMALL_STATE(6840)] = 223100, + [SMALL_STATE(6841)] = 223107, + [SMALL_STATE(6842)] = 223114, + [SMALL_STATE(6843)] = 223121, + [SMALL_STATE(6844)] = 223128, + [SMALL_STATE(6845)] = 223135, + [SMALL_STATE(6846)] = 223142, + [SMALL_STATE(6847)] = 223149, + [SMALL_STATE(6848)] = 223156, + [SMALL_STATE(6849)] = 223163, + [SMALL_STATE(6850)] = 223170, + [SMALL_STATE(6851)] = 223177, + [SMALL_STATE(6852)] = 223184, + [SMALL_STATE(6853)] = 223191, + [SMALL_STATE(6854)] = 223198, + [SMALL_STATE(6855)] = 223205, + [SMALL_STATE(6856)] = 223212, + [SMALL_STATE(6857)] = 223219, + [SMALL_STATE(6858)] = 223226, + [SMALL_STATE(6859)] = 223233, + [SMALL_STATE(6860)] = 223240, + [SMALL_STATE(6861)] = 223247, + [SMALL_STATE(6862)] = 223254, + [SMALL_STATE(6863)] = 223261, + [SMALL_STATE(6864)] = 223268, + [SMALL_STATE(6865)] = 223275, + [SMALL_STATE(6866)] = 223282, + [SMALL_STATE(6867)] = 223289, + [SMALL_STATE(6868)] = 223296, + [SMALL_STATE(6869)] = 223303, + [SMALL_STATE(6870)] = 223310, + [SMALL_STATE(6871)] = 223317, + [SMALL_STATE(6872)] = 223324, + [SMALL_STATE(6873)] = 223331, + [SMALL_STATE(6874)] = 223338, + [SMALL_STATE(6875)] = 223345, + [SMALL_STATE(6876)] = 223352, + [SMALL_STATE(6877)] = 223359, + [SMALL_STATE(6878)] = 223366, + [SMALL_STATE(6879)] = 223373, + [SMALL_STATE(6880)] = 223380, + [SMALL_STATE(6881)] = 223387, + [SMALL_STATE(6882)] = 223394, + [SMALL_STATE(6883)] = 223401, + [SMALL_STATE(6884)] = 223408, + [SMALL_STATE(6885)] = 223415, + [SMALL_STATE(6886)] = 223422, + [SMALL_STATE(6887)] = 223429, + [SMALL_STATE(6888)] = 223436, + [SMALL_STATE(6889)] = 223443, + [SMALL_STATE(6890)] = 223450, + [SMALL_STATE(6891)] = 223457, + [SMALL_STATE(6892)] = 223464, + [SMALL_STATE(6893)] = 223471, + [SMALL_STATE(6894)] = 223478, + [SMALL_STATE(6895)] = 223485, + [SMALL_STATE(6896)] = 223492, + [SMALL_STATE(6897)] = 223499, + [SMALL_STATE(6898)] = 223506, + [SMALL_STATE(6899)] = 223513, + [SMALL_STATE(6900)] = 223520, + [SMALL_STATE(6901)] = 223527, + [SMALL_STATE(6902)] = 223534, + [SMALL_STATE(6903)] = 223541, + [SMALL_STATE(6904)] = 223548, + [SMALL_STATE(6905)] = 223555, + [SMALL_STATE(6906)] = 223562, + [SMALL_STATE(6907)] = 223569, + [SMALL_STATE(6908)] = 223576, + [SMALL_STATE(6909)] = 223583, + [SMALL_STATE(6910)] = 223590, + [SMALL_STATE(6911)] = 223597, + [SMALL_STATE(6912)] = 223604, + [SMALL_STATE(6913)] = 223611, + [SMALL_STATE(6914)] = 223618, + [SMALL_STATE(6915)] = 223625, + [SMALL_STATE(6916)] = 223632, + [SMALL_STATE(6917)] = 223639, + [SMALL_STATE(6918)] = 223646, + [SMALL_STATE(6919)] = 223653, + [SMALL_STATE(6920)] = 223660, + [SMALL_STATE(6921)] = 223667, + [SMALL_STATE(6922)] = 223674, + [SMALL_STATE(6923)] = 223681, + [SMALL_STATE(6924)] = 223688, + [SMALL_STATE(6925)] = 223695, + [SMALL_STATE(6926)] = 223702, + [SMALL_STATE(6927)] = 223709, + [SMALL_STATE(6928)] = 223716, + [SMALL_STATE(6929)] = 223723, + [SMALL_STATE(6930)] = 223730, + [SMALL_STATE(6931)] = 223737, + [SMALL_STATE(6932)] = 223744, + [SMALL_STATE(6933)] = 223751, + [SMALL_STATE(6934)] = 223758, + [SMALL_STATE(6935)] = 223765, + [SMALL_STATE(6936)] = 223772, + [SMALL_STATE(6937)] = 223779, + [SMALL_STATE(6938)] = 223786, + [SMALL_STATE(6939)] = 223793, + [SMALL_STATE(6940)] = 223800, + [SMALL_STATE(6941)] = 223807, + [SMALL_STATE(6942)] = 223814, + [SMALL_STATE(6943)] = 223821, + [SMALL_STATE(6944)] = 223828, + [SMALL_STATE(6945)] = 223835, + [SMALL_STATE(6946)] = 223842, + [SMALL_STATE(6947)] = 223849, + [SMALL_STATE(6948)] = 223856, + [SMALL_STATE(6949)] = 223863, + [SMALL_STATE(6950)] = 223870, + [SMALL_STATE(6951)] = 223877, + [SMALL_STATE(6952)] = 223884, + [SMALL_STATE(6953)] = 223891, + [SMALL_STATE(6954)] = 223898, + [SMALL_STATE(6955)] = 223905, + [SMALL_STATE(6956)] = 223912, + [SMALL_STATE(6957)] = 223919, + [SMALL_STATE(6958)] = 223926, + [SMALL_STATE(6959)] = 223933, + [SMALL_STATE(6960)] = 223940, + [SMALL_STATE(6961)] = 223947, + [SMALL_STATE(6962)] = 223954, + [SMALL_STATE(6963)] = 223961, + [SMALL_STATE(6964)] = 223968, + [SMALL_STATE(6965)] = 223975, + [SMALL_STATE(6966)] = 223982, + [SMALL_STATE(6967)] = 223989, + [SMALL_STATE(6968)] = 223996, + [SMALL_STATE(6969)] = 224003, + [SMALL_STATE(6970)] = 224010, + [SMALL_STATE(6971)] = 224017, + [SMALL_STATE(6972)] = 224024, + [SMALL_STATE(6973)] = 224031, + [SMALL_STATE(6974)] = 224038, + [SMALL_STATE(6975)] = 224045, + [SMALL_STATE(6976)] = 224052, + [SMALL_STATE(6977)] = 224059, + [SMALL_STATE(6978)] = 224066, + [SMALL_STATE(6979)] = 224073, + [SMALL_STATE(6980)] = 224080, + [SMALL_STATE(6981)] = 224087, + [SMALL_STATE(6982)] = 224094, + [SMALL_STATE(6983)] = 224101, + [SMALL_STATE(6984)] = 224108, + [SMALL_STATE(6985)] = 224115, + [SMALL_STATE(6986)] = 224122, + [SMALL_STATE(6987)] = 224129, + [SMALL_STATE(6988)] = 224136, + [SMALL_STATE(6989)] = 224143, + [SMALL_STATE(6990)] = 224150, + [SMALL_STATE(6991)] = 224157, + [SMALL_STATE(6992)] = 224164, + [SMALL_STATE(6993)] = 224171, + [SMALL_STATE(6994)] = 224178, + [SMALL_STATE(6995)] = 224185, + [SMALL_STATE(6996)] = 224192, + [SMALL_STATE(6997)] = 224199, + [SMALL_STATE(6998)] = 224206, + [SMALL_STATE(6999)] = 224213, + [SMALL_STATE(7000)] = 224220, + [SMALL_STATE(7001)] = 224227, + [SMALL_STATE(7002)] = 224234, + [SMALL_STATE(7003)] = 224241, + [SMALL_STATE(7004)] = 224248, + [SMALL_STATE(7005)] = 224255, + [SMALL_STATE(7006)] = 224262, + [SMALL_STATE(7007)] = 224269, + [SMALL_STATE(7008)] = 224276, + [SMALL_STATE(7009)] = 224283, + [SMALL_STATE(7010)] = 224290, + [SMALL_STATE(7011)] = 224297, + [SMALL_STATE(7012)] = 224304, + [SMALL_STATE(7013)] = 224311, + [SMALL_STATE(7014)] = 224318, + [SMALL_STATE(7015)] = 224325, + [SMALL_STATE(7016)] = 224332, + [SMALL_STATE(7017)] = 224339, + [SMALL_STATE(7018)] = 224346, + [SMALL_STATE(7019)] = 224353, + [SMALL_STATE(7020)] = 224360, + [SMALL_STATE(7021)] = 224367, + [SMALL_STATE(7022)] = 224374, + [SMALL_STATE(7023)] = 224381, + [SMALL_STATE(7024)] = 224388, + [SMALL_STATE(7025)] = 224395, + [SMALL_STATE(7026)] = 224402, + [SMALL_STATE(7027)] = 224409, + [SMALL_STATE(7028)] = 224416, + [SMALL_STATE(7029)] = 224423, + [SMALL_STATE(7030)] = 224430, + [SMALL_STATE(7031)] = 224437, + [SMALL_STATE(7032)] = 224444, + [SMALL_STATE(7033)] = 224451, + [SMALL_STATE(7034)] = 224458, + [SMALL_STATE(7035)] = 224465, + [SMALL_STATE(7036)] = 224472, + [SMALL_STATE(7037)] = 224479, + [SMALL_STATE(7038)] = 224486, + [SMALL_STATE(7039)] = 224493, + [SMALL_STATE(7040)] = 224500, + [SMALL_STATE(7041)] = 224507, + [SMALL_STATE(7042)] = 224514, + [SMALL_STATE(7043)] = 224521, + [SMALL_STATE(7044)] = 224528, + [SMALL_STATE(7045)] = 224535, + [SMALL_STATE(7046)] = 224542, + [SMALL_STATE(7047)] = 224549, + [SMALL_STATE(7048)] = 224556, + [SMALL_STATE(7049)] = 224563, + [SMALL_STATE(7050)] = 224570, + [SMALL_STATE(7051)] = 224577, + [SMALL_STATE(7052)] = 224584, + [SMALL_STATE(7053)] = 224591, + [SMALL_STATE(7054)] = 224598, + [SMALL_STATE(7055)] = 224605, + [SMALL_STATE(7056)] = 224612, + [SMALL_STATE(7057)] = 224619, + [SMALL_STATE(7058)] = 224626, + [SMALL_STATE(7059)] = 224633, + [SMALL_STATE(7060)] = 224640, + [SMALL_STATE(7061)] = 224647, + [SMALL_STATE(7062)] = 224654, + [SMALL_STATE(7063)] = 224661, + [SMALL_STATE(7064)] = 224668, + [SMALL_STATE(7065)] = 224675, + [SMALL_STATE(7066)] = 224682, + [SMALL_STATE(7067)] = 224689, + [SMALL_STATE(7068)] = 224696, + [SMALL_STATE(7069)] = 224703, + [SMALL_STATE(7070)] = 224710, + [SMALL_STATE(7071)] = 224717, + [SMALL_STATE(7072)] = 224724, + [SMALL_STATE(7073)] = 224731, + [SMALL_STATE(7074)] = 224738, + [SMALL_STATE(7075)] = 224745, + [SMALL_STATE(7076)] = 224752, + [SMALL_STATE(7077)] = 224759, + [SMALL_STATE(7078)] = 224766, + [SMALL_STATE(7079)] = 224773, + [SMALL_STATE(7080)] = 224780, + [SMALL_STATE(7081)] = 224787, + [SMALL_STATE(7082)] = 224794, + [SMALL_STATE(7083)] = 224801, + [SMALL_STATE(7084)] = 224808, + [SMALL_STATE(7085)] = 224815, + [SMALL_STATE(7086)] = 224822, + [SMALL_STATE(7087)] = 224829, + [SMALL_STATE(7088)] = 224836, + [SMALL_STATE(7089)] = 224843, + [SMALL_STATE(7090)] = 224850, + [SMALL_STATE(7091)] = 224857, + [SMALL_STATE(7092)] = 224864, + [SMALL_STATE(7093)] = 224871, + [SMALL_STATE(7094)] = 224878, + [SMALL_STATE(7095)] = 224885, + [SMALL_STATE(7096)] = 224892, + [SMALL_STATE(7097)] = 224899, + [SMALL_STATE(7098)] = 224906, + [SMALL_STATE(7099)] = 224913, + [SMALL_STATE(7100)] = 224920, + [SMALL_STATE(7101)] = 224927, + [SMALL_STATE(7102)] = 224934, + [SMALL_STATE(7103)] = 224941, + [SMALL_STATE(7104)] = 224948, + [SMALL_STATE(7105)] = 224955, + [SMALL_STATE(7106)] = 224962, + [SMALL_STATE(7107)] = 224969, + [SMALL_STATE(7108)] = 224976, + [SMALL_STATE(7109)] = 224983, + [SMALL_STATE(7110)] = 224990, + [SMALL_STATE(7111)] = 224997, + [SMALL_STATE(7112)] = 225004, + [SMALL_STATE(7113)] = 225011, + [SMALL_STATE(7114)] = 225018, + [SMALL_STATE(7115)] = 225025, + [SMALL_STATE(7116)] = 225032, + [SMALL_STATE(7117)] = 225039, + [SMALL_STATE(7118)] = 225046, + [SMALL_STATE(7119)] = 225053, + [SMALL_STATE(7120)] = 225060, + [SMALL_STATE(7121)] = 225067, + [SMALL_STATE(7122)] = 225074, + [SMALL_STATE(7123)] = 225081, + [SMALL_STATE(7124)] = 225088, + [SMALL_STATE(7125)] = 225095, + [SMALL_STATE(7126)] = 225102, + [SMALL_STATE(7127)] = 225109, + [SMALL_STATE(7128)] = 225116, + [SMALL_STATE(7129)] = 225123, + [SMALL_STATE(7130)] = 225130, + [SMALL_STATE(7131)] = 225137, + [SMALL_STATE(7132)] = 225144, + [SMALL_STATE(7133)] = 225151, + [SMALL_STATE(7134)] = 225158, + [SMALL_STATE(7135)] = 225165, + [SMALL_STATE(7136)] = 225172, + [SMALL_STATE(7137)] = 225179, + [SMALL_STATE(7138)] = 225186, + [SMALL_STATE(7139)] = 225193, + [SMALL_STATE(7140)] = 225200, + [SMALL_STATE(7141)] = 225207, + [SMALL_STATE(7142)] = 225214, + [SMALL_STATE(7143)] = 225221, + [SMALL_STATE(7144)] = 225228, + [SMALL_STATE(7145)] = 225235, + [SMALL_STATE(7146)] = 225242, + [SMALL_STATE(7147)] = 225249, + [SMALL_STATE(7148)] = 225256, + [SMALL_STATE(7149)] = 225263, + [SMALL_STATE(7150)] = 225270, + [SMALL_STATE(7151)] = 225277, + [SMALL_STATE(7152)] = 225284, + [SMALL_STATE(7153)] = 225291, + [SMALL_STATE(7154)] = 225298, + [SMALL_STATE(7155)] = 225305, + [SMALL_STATE(7156)] = 225312, + [SMALL_STATE(7157)] = 225319, + [SMALL_STATE(7158)] = 225326, + [SMALL_STATE(7159)] = 225333, + [SMALL_STATE(7160)] = 225340, + [SMALL_STATE(7161)] = 225347, + [SMALL_STATE(7162)] = 225354, + [SMALL_STATE(7163)] = 225361, + [SMALL_STATE(7164)] = 225368, + [SMALL_STATE(7165)] = 225375, + [SMALL_STATE(7166)] = 225382, + [SMALL_STATE(7167)] = 225389, + [SMALL_STATE(7168)] = 225396, + [SMALL_STATE(7169)] = 225403, + [SMALL_STATE(7170)] = 225410, + [SMALL_STATE(7171)] = 225417, + [SMALL_STATE(7172)] = 225424, + [SMALL_STATE(7173)] = 225431, + [SMALL_STATE(7174)] = 225438, + [SMALL_STATE(7175)] = 225445, + [SMALL_STATE(7176)] = 225452, + [SMALL_STATE(7177)] = 225459, + [SMALL_STATE(7178)] = 225466, + [SMALL_STATE(7179)] = 225473, + [SMALL_STATE(7180)] = 225480, + [SMALL_STATE(7181)] = 225487, + [SMALL_STATE(7182)] = 225494, + [SMALL_STATE(7183)] = 225501, + [SMALL_STATE(7184)] = 225508, + [SMALL_STATE(7185)] = 225515, + [SMALL_STATE(7186)] = 225522, + [SMALL_STATE(7187)] = 225529, + [SMALL_STATE(7188)] = 225536, + [SMALL_STATE(7189)] = 225543, + [SMALL_STATE(7190)] = 225550, + [SMALL_STATE(7191)] = 225557, + [SMALL_STATE(7192)] = 225564, + [SMALL_STATE(7193)] = 225571, + [SMALL_STATE(7194)] = 225578, + [SMALL_STATE(7195)] = 225585, + [SMALL_STATE(7196)] = 225592, + [SMALL_STATE(7197)] = 225599, + [SMALL_STATE(7198)] = 225606, + [SMALL_STATE(7199)] = 225613, + [SMALL_STATE(7200)] = 225620, + [SMALL_STATE(7201)] = 225627, + [SMALL_STATE(7202)] = 225634, + [SMALL_STATE(7203)] = 225641, + [SMALL_STATE(7204)] = 225648, + [SMALL_STATE(7205)] = 225655, + [SMALL_STATE(7206)] = 225662, + [SMALL_STATE(7207)] = 225669, + [SMALL_STATE(7208)] = 225676, + [SMALL_STATE(7209)] = 225683, + [SMALL_STATE(7210)] = 225690, + [SMALL_STATE(7211)] = 225697, + [SMALL_STATE(7212)] = 225704, + [SMALL_STATE(7213)] = 225711, + [SMALL_STATE(7214)] = 225718, + [SMALL_STATE(7215)] = 225725, + [SMALL_STATE(7216)] = 225732, + [SMALL_STATE(7217)] = 225739, + [SMALL_STATE(7218)] = 225746, + [SMALL_STATE(7219)] = 225753, + [SMALL_STATE(7220)] = 225760, + [SMALL_STATE(7221)] = 225767, + [SMALL_STATE(7222)] = 225774, + [SMALL_STATE(7223)] = 225781, + [SMALL_STATE(7224)] = 225788, + [SMALL_STATE(7225)] = 225795, + [SMALL_STATE(7226)] = 225802, + [SMALL_STATE(7227)] = 225809, + [SMALL_STATE(7228)] = 225816, + [SMALL_STATE(7229)] = 225823, + [SMALL_STATE(7230)] = 225830, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -411714,438 +413399,438 @@ 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(1684), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7169), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7130), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7162), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 66), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 66), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1678), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 66), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 66), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1513), [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5224), [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6735), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4561), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4598), [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6730), [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6201), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(117), - [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1718), - [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1673), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1718), - [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(924), - [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4284), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1099), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(435), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3409), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3151), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(116), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1725), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1741), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1725), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1058), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4291), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1100), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(448), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3471), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3133), [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7169), [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5437), [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6170), [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7160), [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6199), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4088), - [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(74), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1299), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3341), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2413), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3289), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3751), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4075), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(76), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1330), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3322), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2249), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3277), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3619), [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5054), [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4648), [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4646), [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4645), [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6092), [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6525), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1662), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1594), [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6843), [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6202), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(275), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(259), [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7162), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1293), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1283), [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7137), [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7136), [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6727), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1644), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1435), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3372), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1736), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1483), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3504), [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6290), [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5612), [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3521), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3522), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3481), [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7018), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3337), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4190), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4156), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1347), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(759), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3326), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4134), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4132), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1343), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(724), [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6530), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1585), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1478), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1645), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1509), [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5603), [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5230), [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7163), [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7164), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1436), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1500), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1505), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1689), [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6316), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1707), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4087), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4419), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1421), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5283), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7060), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4578), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7057), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6129), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(687), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3415), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3194), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6038), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6256), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1717), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7167), - [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6209), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(268), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7130), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1283), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7126), - [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7027), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7052), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1375), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6262), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1461), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5740), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5296), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7131), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7132), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1455), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1708), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1495), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5276), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6723), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4473), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6651), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6602), - [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(652), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3394), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3150), - [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(54), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5835), - [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6597), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1637), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6649), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6416), - [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(278), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7178), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1287), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6839), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6838), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6658), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1369), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6592), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1482), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5785), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5218), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7193), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7180), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1447), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1690), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1684), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5258), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7230), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4495), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7226), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6118), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(878), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3414), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3155), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5920), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6225), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1548), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7091), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6226), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(263), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7064), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1281), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7062), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7059), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7033), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1402), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6310), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1453), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5629), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5268), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7003), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7002), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1470), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1720), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1584), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4098), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4415), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1444), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5276), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6723), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4472), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6651), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6602), + [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(667), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3394), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3119), + [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5835), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6597), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1572), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6649), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6416), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(272), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7178), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1291), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6839), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6838), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6658), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1297), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6592), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1445), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5785), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5218), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7193), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7180), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1446), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1590), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1473), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5258), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7230), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4487), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7226), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6118), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(885), + [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3457), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3104), + [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(54), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5920), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6225), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1726), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7091), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6226), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(202), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7064), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1292), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7062), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7059), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7033), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1318), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6310), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1482), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5629), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5268), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7003), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7002), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1500), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1595), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1390), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5283), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7060), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4577), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7057), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6129), + [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(557), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3445), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3106), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6038), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6256), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1632), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7167), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6209), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(256), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7130), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1287), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7126), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7027), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7052), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1300), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6262), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1465), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5740), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5296), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7131), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7132), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1450), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1652), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 10), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 10), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 10), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 10), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1603), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 10), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 10), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1507), [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(326), - [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1718), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1718), - [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1693), + [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(316), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1725), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1725), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1677), [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1693), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(435), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3409), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3341), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1677), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(448), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3471), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3322), [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7169), [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5437), [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6524), [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7160), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(74), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1337), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2413), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3289), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3751), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(76), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1302), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2249), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3277), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3619), [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5054), [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4648), [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4646), @@ -412153,867 +413838,867 @@ static const TSParseActionEntry ts_parse_actions[] = { [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6092), [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6525), [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6202), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(275), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(259), [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7162), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1293), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1283), [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7137), [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7136), [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6727), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1644), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1435), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3372), + [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1736), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1483), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3504), [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6290), [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5612), [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3521), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3522), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3481), [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7018), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3337), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4156), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3326), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4132), [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6349), [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6530), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1585), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1478), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1436), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1500), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1645), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1509), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1505), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1689), [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6316), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1707), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4087), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4419), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1728), - [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(878), - [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3414), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5920), - [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6225), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6226), - [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(263), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7064), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1281), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7062), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7059), - [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7033), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6310), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1453), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1470), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1720), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1491), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(652), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3394), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(54), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5835), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6597), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6416), - [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(278), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7178), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1584), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4098), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4415), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1474), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(885), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3457), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(54), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5920), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6225), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6226), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(202), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7064), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1292), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7062), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7059), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7033), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6310), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1482), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1500), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1595), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1484), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(557), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3445), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6038), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6256), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6209), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(256), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7130), [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1287), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6839), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6838), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6658), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6592), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1482), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1447), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1690), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1656), - [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(687), - [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3415), - [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6038), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6256), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6209), - [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(268), - [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7130), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1283), - [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7126), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7027), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7052), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6262), - [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1461), - [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1455), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1708), - [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1661), - [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1140), - [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3379), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6041), - [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6534), - [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6599), - [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(281), - [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7192), - [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1284), - [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6655), - [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6656), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6728), - [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6452), - [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1449), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1448), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1641), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7126), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7027), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7052), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6262), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1465), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1450), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1652), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1472), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(667), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3394), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5835), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6597), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6416), + [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(272), + [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7178), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1291), + [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6839), + [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6838), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6658), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6592), + [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1445), + [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1446), + [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1590), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1429), + [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1114), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3403), + [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(43), + [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6041), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6534), + [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6599), + [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(294), + [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7192), + [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1282), + [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6655), + [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6656), + [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6728), + [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6452), + [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1451), + [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1458), + [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1571), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7148), [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 36), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 36), [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 66), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 66), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 66), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 66), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4006), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6775), - [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4597), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6971), - [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6418), - [1746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4272), - [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6875), - [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3252), - [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4284), - [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4284), - [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3396), - [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3341), - [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7169), - [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4778), - [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6598), - [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7160), - [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6199), - [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6868), - [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2413), - [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3792), - [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4019), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5041), - [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4690), - [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4689), - [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4685), - [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4026), - [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7087), - [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3337), - [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4190), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6719), - [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4132), - [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5609), - [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(759), - [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1783), - [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5272), - [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7200), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), - [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2523), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(326), - [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1718), - [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1718), - [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1693), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(878), - [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5437), - [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6524), - [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(31), - [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1337), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6361), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5875), - [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6225), - [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1498), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7140), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6258), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(263), - [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7209), - [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1281), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7062), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7059), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7033), - [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1644), - [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1435), - [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3372), - [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6290), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5612), - [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3521), - [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6349), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6310), - [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1585), - [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1453), - [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1470), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1720), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6316), - [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1707), - [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4087), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4419), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2491), - [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(687), - [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(40), - [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6038), - [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6256), - [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1717), - [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7167), - [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6209), - [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(268), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7130), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1283), - [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7126), - [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7027), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7052), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6262), - [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1461), - [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1455), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1708), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2522), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1140), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(34), - [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6041), - [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6534), - [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6599), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(281), - [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7192), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1284), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6655), - [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6656), - [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6728), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6452), - [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1449), - [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1448), - [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1641), - [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2469), - [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(435), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(74), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6092), - [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6525), - [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1662), - [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6843), - [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6202), - [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(275), - [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7162), - [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1293), - [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7137), - [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7136), - [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6727), - [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6530), - [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1478), - [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1436), - [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1500), - [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2549), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(652), - [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(54), - [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5835), - [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6597), - [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1637), - [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6649), - [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6416), - [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(278), - [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7178), - [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1287), - [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6839), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6838), - [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6658), - [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6592), - [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1482), - [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1447), - [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1690), - [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2508), - [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5920), - [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1548), - [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7091), - [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6226), - [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7064), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6650), - [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4574), - [2235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6790), - [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6411), - [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3380), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6787), - [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5590), - [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1790), - [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5266), - [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7179), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6806), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4541), - [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6676), - [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6331), - [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3393), - [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7035), - [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5753), - [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1782), - [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5280), - [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7205), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 8), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 8), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6586), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3976), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6775), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4597), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6971), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6418), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4264), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6875), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3268), + [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4291), + [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4291), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3388), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3322), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7169), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4778), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6598), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7160), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6199), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6868), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2249), + [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3606), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3854), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5041), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4690), + [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4689), + [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4685), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3901), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7087), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3326), + [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4134), + [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6719), + [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4176), + [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5609), + [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(724), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1781), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5272), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7200), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2547), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(316), + [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1725), + [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1725), + [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1677), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1114), + [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5437), + [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6524), + [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(43), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1302), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6361), + [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6041), + [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6534), + [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1699), + [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7140), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6599), + [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(294), + [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7192), + [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1282), + [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6655), + [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6656), + [1946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6728), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1736), + [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1483), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3504), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6290), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5612), + [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3521), + [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6349), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6452), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1645), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1451), + [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1458), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1571), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6316), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1584), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4098), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4415), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2520), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(885), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(54), + [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5875), + [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6225), + [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6258), + [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(202), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7209), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1292), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7062), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7059), + [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7033), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6310), + [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1482), + [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1500), + [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1595), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6650), + [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4576), + [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6790), + [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6411), + [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3436), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6787), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5590), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1780), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5266), + [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7179), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2578), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(557), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(29), + [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6038), + [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6256), + [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1632), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7167), + [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6209), + [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(256), + [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7130), + [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1287), + [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7126), + [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7027), + [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7052), + [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6262), + [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1465), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1450), + [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1652), + [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6806), + [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4539), + [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6676), + [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6331), + [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3386), + [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7035), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5753), + [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1782), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5280), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7205), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2579), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5920), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1726), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7091), + [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6226), + [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7064), + [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2567), + [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(667), + [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(30), + [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5835), + [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6597), + [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1572), + [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6649), + [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6416), + [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(272), + [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7178), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1291), + [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6839), + [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6838), + [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6658), + [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6592), + [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1445), + [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1446), + [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1590), + [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2507), + [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(448), + [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(76), + [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6092), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6525), + [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1594), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6843), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6202), + [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(259), + [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7162), + [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1283), + [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7137), + [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7136), + [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6727), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6530), + [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1509), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1505), + [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1689), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 8), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 8), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), + [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6586), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 8), [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 8), [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 37), [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 37), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6340), - [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6458), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, .production_id = 129), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, .production_id = 129), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), - [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6569), + [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6569), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, .production_id = 129), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, .production_id = 129), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6340), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), + [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6458), [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 43), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 43), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 85), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 85), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 8, .production_id = 164), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 8, .production_id = 164), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 163), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 163), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 162), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 162), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 158), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 158), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 157), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 157), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 156), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 156), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 155), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 155), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 154), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 154), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 149), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 149), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 146), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 146), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 148), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 148), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 141), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 141), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 9, .production_id = 168), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 9, .production_id = 168), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 123), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 123), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 122), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 122), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 73), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 73), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 109), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 109), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 165), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 165), - [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 92), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 92), - [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 166), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 166), - [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 167), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 167), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 50), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 50), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2), - [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 54), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 54), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 45), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 45), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 42), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 42), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 42), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 42), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 41), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 41), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, .production_id = 47), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, .production_id = 47), - [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 8), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 8), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 35), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 35), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 39), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 39), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 9), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 9), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 9), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 9), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 30), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 30), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 55), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 55), - [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 57), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 57), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 18), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 18), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 19), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 19), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 63), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 63), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 19), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 19), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 18), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 18), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 8, .production_id = 164), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 8, .production_id = 164), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 45), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 45), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 54), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 54), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 50), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 50), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 85), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 85), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 92), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 92), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 109), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 109), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 73), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 73), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 122), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 122), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 123), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 123), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 141), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 141), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 148), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 148), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 146), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 146), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 149), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 149), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 154), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 154), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 155), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 155), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 156), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 156), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 157), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 157), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 158), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 158), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 162), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 162), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 163), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 163), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 43), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 43), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 165), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 165), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 42), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 42), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 166), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 166), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 167), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 167), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 9, .production_id = 168), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 9, .production_id = 168), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 42), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 42), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 41), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 41), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 159), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 159), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 140), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 140), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 139), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 139), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, .production_id = 9), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, .production_id = 9), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 131), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 131), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, .production_id = 130), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, .production_id = 130), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 9), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 9), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 106), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 106), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 66), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 66), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 105), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 105), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 104), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 104), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 103), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 103), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 99), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 99), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 94), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 94), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, .production_id = 47), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, .production_id = 47), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, .production_id = 48), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, .production_id = 48), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 9), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 9), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 67), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 67), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 66), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 66), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 65), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 65), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 64), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 64), [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 63), [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 63), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, .production_id = 48), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, .production_id = 48), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 64), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 64), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 65), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 65), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 66), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 66), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 67), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 67), - [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 9), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 9), - [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 31), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 31), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, .production_id = 47), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, .production_id = 47), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 94), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 94), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 99), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 99), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 19), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 19), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 103), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 103), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 104), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 104), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 105), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 105), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 66), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 66), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 106), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 106), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 9), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 9), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, .production_id = 130), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, .production_id = 130), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 131), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 131), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, .production_id = 9), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, .production_id = 9), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 139), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 139), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 140), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 140), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 159), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 159), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 63), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 63), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 57), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 57), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 55), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 55), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 39), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 39), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, .production_id = 47), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, .production_id = 47), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 35), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 35), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 31), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 31), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 9), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 9), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 9), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 9), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 30), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 30), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 18), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 18), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 19), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 19), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 19), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 19), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 18), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 18), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 8), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 8), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 19), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 19), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [2915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(2346), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1), - [2922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1), SHIFT(5437), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1), - [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(6361), - [2930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(6349), - [2933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(2346), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2), SHIFT(5437), - [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(6361), - [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(6349), - [2947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(2346), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1), SHIFT(5437), - [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(6361), - [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(6349), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(2370), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1), SHIFT(5437), + [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(6361), + [2924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(6349), + [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(2370), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2), SHIFT(5437), + [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(6361), + [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(6349), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(2370), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1), SHIFT(5437), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1), + [2957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(6361), + [2960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(6349), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7207), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7207), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), @@ -413026,970 +414711,970 @@ static const TSParseActionEntry ts_parse_actions[] = { [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6439), [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [3208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2346), - [3211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(326), - [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1718), - [3217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1718), - [3220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1693), - [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3240), - [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5437), - [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1497), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1337), - [3237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6361), - [3240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1644), - [3243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1435), - [3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3372), - [3249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6290), - [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5612), - [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3521), - [3258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5311), - [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6349), - [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1585), - [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6316), - [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1707), - [3273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4087), - [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4419), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [3200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2370), + [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(316), + [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1725), + [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1725), + [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1677), + [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3234), + [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5437), + [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1543), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), + [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1302), + [3229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6361), + [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1736), + [3235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1483), + [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3504), + [3241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6290), + [3244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5612), + [3247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3521), + [3250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5311), + [3253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6349), + [3256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1645), + [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6316), + [3262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1584), + [3265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4098), + [3268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4415), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2), + [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7172), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [3512] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(409), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, .production_id = 1), - [3536] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7141), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7147), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7145), - [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), - [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7138), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6799), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7170), - [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6894), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(449), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7134), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7096), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7166), - [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7076), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), - [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7075), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), - [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), - [3688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), - [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(442), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7070), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6986), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6936), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6899), - [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6890), - [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7074), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), - [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), - [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 12), - [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 12), REDUCE(sym_template_function, 2, .production_id = 13), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 12), - [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, .production_id = 13), - [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 12), REDUCE(sym_template_function, 2, .production_id = 13), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, .production_id = 13), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(386), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5791), - [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6169), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5578), - [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6150), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5), - [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(464), - [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(411), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, .production_id = 160), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, .production_id = 160), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1817), - [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5698), - [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6146), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(420), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5714), - [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6208), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [3969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(404), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 83), - [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 83), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 38), - [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 38), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 83), - [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 83), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 38), - [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 38), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 38), - [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 38), - [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1846), - [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 83), - [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 83), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 9), - [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 9), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 9), - [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 9), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 9), - [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 9), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 14), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 14), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, .production_id = 10), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 10), - [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, .production_id = 1), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 36), - [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 36), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 74), - [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 74), - [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, .production_id = 121), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 121), - [4059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(429), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 51), - [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 51), - [4066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1877), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2), - [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), - [4077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(411), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 27), - [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 27), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1), - [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1), - [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6430), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 61), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 61), - [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 62), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 62), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 138), - [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 138), - [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 102), - [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 102), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, .production_id = 33), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, .production_id = 33), - [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, .production_id = 25), - [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, .production_id = 25), - [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 101), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 101), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 44), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 44), - [4153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1917), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 38), - [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 38), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), - [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2), - [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3), - [4178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1929), - [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, .production_id = 15), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, .production_id = 15), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 78), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 78), - [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, .production_id = 53), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, .production_id = 53), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 40), - [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 40), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6851), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), - [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 77), - [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 77), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), - [4235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6470), - [4238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(404), - [4241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6417), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 114), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 114), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 106), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 106), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 151), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 151), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 92), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 92), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 140), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 140), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 161), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 161), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 152), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 152), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 37), - [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 37), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 39), - [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 39), - [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 29), - [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 29), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 7, .production_id = 153), - [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 7, .production_id = 153), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 105), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 105), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 66), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 66), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, .production_id = 153), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, .production_id = 153), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 7, .production_id = 153), - [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 7, .production_id = 153), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 39), - [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 39), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 37), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 37), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 39), - [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 39), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 37), - [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 37), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 39), - [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 39), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 92), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 92), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 143), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 143), - [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 54), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 54), - [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 128), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 128), - [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4), - [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 9), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 9), - [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 67), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 67), - [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 66), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 66), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [4376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(464), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 80), - [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 80), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 146), - [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 146), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 145), - [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 145), - [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 144), - [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 144), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 146), - [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 146), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 145), - [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 145), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 144), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 144), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 146), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 146), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 145), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 145), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 144), - [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 144), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 115), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 115), - [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 46), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 46), - [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 55), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 55), - [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 54), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 54), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 84), - [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 84), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 37), - [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 37), - [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 54), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 54), - [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3), - [4461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(429), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 82), - [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 82), - [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 9), - [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 9), - [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 76), - [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 76), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 76), - [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 76), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4), - [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4), - [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 84), - [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 84), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 79), - [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 79), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 8), - [4508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 8), - [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 119), - [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 119), - [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 112), - [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 112), - [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 46), - [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 46), - [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2), - [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 82), - [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 82), - [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 2), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 2), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 118), - [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 118), - [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 117), - [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 117), - [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 116), - [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 116), - [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 119), - [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 119), - [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 118), - [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 118), - [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 90), - [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 90), - [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 117), - [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 117), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 76), - [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 76), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 84), - [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 84), - [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 116), - [4580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 116), - [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 119), - [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 119), - [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 118), - [4588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 118), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 117), - [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 117), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 116), - [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 116), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 20), - [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 20), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 82), - [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 82), - [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 76), - [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 76), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 73), - [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 73), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 50), - [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 50), - [4626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(429), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), - [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), - [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(442), - [4647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), - [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2), - [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, .production_id = 132), - [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, .production_id = 132), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [4662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(411), - [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2), - [4667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2), - [4669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [4695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(386), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2319), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [4723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(414), - [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2), - [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [4746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), - [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7172), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [3452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [3459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [3464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(469), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, .production_id = 1), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3497] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [3501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(471), + [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3507] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), + [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), + [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), + [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(542), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6936), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6986), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6899), + [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7070), + [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7074), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), + [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6894), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), + [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7075), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7076), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7166), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(470), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7096), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7134), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 12), + [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 12), REDUCE(sym_template_function, 2, .production_id = 13), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 12), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, .production_id = 13), + [3731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 12), REDUCE(sym_template_function, 2, .production_id = 13), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, .production_id = 13), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6799), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [3745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7138), + [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7141), + [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7145), + [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7147), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [3761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6890), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7170), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5791), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6169), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5578), + [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6150), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, .production_id = 160), + [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, .production_id = 160), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [3919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(539), + [3922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(473), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5), + [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5), + [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5698), + [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6146), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1816), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(540), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5714), + [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6208), + [3969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(536), + [3972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1841), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 38), + [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 38), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 38), + [3987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 38), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 83), + [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 83), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 9), + [3997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 9), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 9), + [4001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 9), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 9), + [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 9), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 38), + [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 38), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 83), + [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 83), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 83), + [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 83), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 74), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 74), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [4039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(541), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, .production_id = 121), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 121), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 51), + [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 51), + [4052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6430), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 14), + [4057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 14), + [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, .production_id = 10), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 10), + [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, .production_id = 1), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 36), + [4069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 36), + [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2), + [4075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1890), + [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 138), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 138), + [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 44), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 44), + [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3), + [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 102), + [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 102), + [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 101), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 101), + [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3), + [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, .production_id = 15), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, .production_id = 15), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 27), + [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 27), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, .production_id = 25), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, .production_id = 25), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, .production_id = 53), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, .production_id = 53), + [4134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(539), + [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 61), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 61), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, .production_id = 33), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, .production_id = 33), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 62), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 62), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6851), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [4183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1922), + [4186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6417), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 78), + [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 78), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 38), + [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 38), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [4209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1956), + [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6470), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), + [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), + [4219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 151), + [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 151), + [4223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 106), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 106), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 92), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 92), + [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 152), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 152), + [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 40), + [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 40), + [4241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 140), + [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 140), + [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 161), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 161), + [4249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 2), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 2), + [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2), + [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 46), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 46), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 55), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 55), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 54), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 54), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3), + [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 54), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 54), + [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 9), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 9), + [4283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 105), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 105), + [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 66), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 66), + [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 46), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 46), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 92), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 92), + [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 143), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 143), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 115), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 115), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 54), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 54), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 128), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 128), + [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(536), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 9), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 9), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 67), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 67), + [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 66), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 66), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 77), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 77), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 116), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 116), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1), + [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 146), + [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 146), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 39), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 39), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [4374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(541), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 145), + [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 145), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 37), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 37), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 146), + [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 146), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 84), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 84), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 90), + [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 90), + [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [4403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 114), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 114), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 20), + [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 20), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 82), + [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 82), + [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 76), + [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 76), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 84), + [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 84), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 82), + [4427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 82), + [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 116), + [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 116), + [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 76), + [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 76), + [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 84), + [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 84), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 82), + [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 82), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 117), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 117), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 118), + [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 118), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 76), + [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 76), + [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 119), + [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 119), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 80), + [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 80), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 119), + [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 119), + [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 116), + [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 116), + [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 79), + [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 79), + [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 73), + [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 73), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 117), + [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 117), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 112), + [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 112), + [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 76), + [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 76), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 7, .production_id = 153), + [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 7, .production_id = 153), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 118), + [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 118), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 39), + [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 39), + [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, .production_id = 153), + [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, .production_id = 153), + [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 37), + [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 37), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 39), + [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 39), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 118), + [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 118), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 37), + [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 37), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 144), + [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 144), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 39), + [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 39), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 37), + [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 37), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 119), + [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 119), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 8), + [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 8), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 146), + [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 146), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 50), + [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 50), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 117), + [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 117), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 7, .production_id = 153), + [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 7, .production_id = 153), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 144), + [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 144), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 145), + [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 145), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 144), + [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 144), + [4601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(541), + [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4), + [4606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4), + [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [4610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 29), + [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 29), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [4618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 145), + [4622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 145), + [4624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(473), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4), + [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4), + [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), + [4634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(542), + [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2), + [4642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(539), + [4645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, .production_id = 132), + [4659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, .production_id = 132), + [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2), + [4667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2), + [4669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [4689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(543), + [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [4694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [4702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(470), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [4707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2), + [4713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2), + [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2), + [4721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2402), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), + [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, .production_id = 132), [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, .production_id = 132), [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 23), [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 23), - [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, .production_id = 142), - [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, .production_id = 142), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 136), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 136), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 133), - [4834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 133), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 72), - [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 72), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), - [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(5105), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [4857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 10), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 10), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2), - [4869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 111), - [4877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 111), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 110), - [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 110), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5), - [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5), - [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2), - [4889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), - [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, .production_id = 16), - [4897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, .production_id = 16), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 59), - [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), - [4907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(429), - [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 44), - [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 44), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 89), - [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 89), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 88), - [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 88), - [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 21), - [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 21), - [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4), - [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4), - [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 60), - [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 60), - [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [4938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5612), - [4941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6316), - [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 22), - [4946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 22), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, .production_id = 125), - [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, .production_id = 125), - [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 70), - [4956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 70), - [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 70), - [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 70), - [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 44), - [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 44), - [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 49), - [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 49), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), - [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 7), - [4986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 7), - [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [4990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 98), - [4994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 98), - [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3), - [4998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3), - [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3), - [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [5006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [5010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2775), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 96), - [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 96), - [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(6957), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 21), + [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 21), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, .production_id = 16), + [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, .production_id = 16), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [4794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), + [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 7), + [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 7), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 22), + [4850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 22), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2), + [4854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 10), + [4858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 10), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [4862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [4864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2777), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3), + [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3), + [4875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5612), + [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6316), + [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 60), + [4883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 60), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 59), + [4887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), + [4889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(541), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, .production_id = 142), + [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, .production_id = 142), + [4896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 136), + [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 136), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 133), + [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 133), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, .production_id = 125), + [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, .production_id = 125), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 49), + [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 49), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 44), + [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 44), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 98), + [4946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 98), + [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 96), + [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 96), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 70), + [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 70), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 70), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 70), + [4960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(6957), + [4963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(5105), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 72), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 72), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 111), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 111), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 110), + [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 110), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5), + [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3), + [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 44), + [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 44), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 89), + [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 89), + [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [5006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 88), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 88), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4), + [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [5072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(411), - [5075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(404), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(539), + [5075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(536), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), @@ -414006,1039 +415691,1039 @@ static const TSParseActionEntry ts_parse_actions[] = { [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [5236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2), - [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4), - [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4), - [5248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(404), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5756), - [5278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6147), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [5287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(406), + [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2), + [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3), + [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4), + [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [5224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(536), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [5281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5756), + [5284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6147), + [5287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(537), [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [5338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2), - [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [5350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(414), - [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, .production_id = 52), - [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, .production_id = 52), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [5359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6), - [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6), - [5363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5), - [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5), - [5367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4), - [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [5409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3261), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [5416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [5426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [5428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [5430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(420), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [5439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3536), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [5464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 107), - [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 107), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [5470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [5474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4003), - [5477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6849), - [5480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6254), - [5483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6851), - [5486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4004), - [5489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4002), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [5502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [5506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_function_specifier, 1), - [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_function_specifier, 1), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [5536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [5540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), - [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), - [5547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [5550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), - [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [5598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3387), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 46), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 87), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [5629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3341), - [5632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7169), - [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6598), - [5638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7160), - [5641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2413), - [5644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3337), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [5667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), - [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), - [5671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4003), - [5674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6849), - [5677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6254), - [5680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6851), - [5683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4004), - [5686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4002), - [5689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4190), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), - [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [5712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), + [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [5346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4), + [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [5354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(543), + [5357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5), + [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5), + [5361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6), + [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6), + [5365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, .production_id = 52), + [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, .production_id = 52), + [5369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3235), + [5372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2), + [5374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [5412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), + [5420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [5434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3468), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [5447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(540), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [5452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [5456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [5460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), + [5465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), + [5467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [5470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 107), + [5486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 107), + [5488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [5492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4010), + [5495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6849), + [5498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6254), + [5501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6851), + [5504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3966), + [5507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4009), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [5512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_function_specifier, 1), + [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_function_specifier, 1), + [5516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 87), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [5528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3348), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), + [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [5601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3322), + [5604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7169), + [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6598), + [5610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7160), + [5613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2249), + [5616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3326), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 46), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [5677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), + [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), + [5681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4010), + [5684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6849), + [5687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6254), + [5690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6851), + [5693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(3966), + [5696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4009), + [5699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4134), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 58), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 91), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, .production_id = 147), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(1462), - [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, .production_id = 128), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [5975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 1), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 124), - [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, .production_id = 151), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4241), - [5995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7010), - [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6535), - [6001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7012), - [6004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3604), - [6007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4230), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 58), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 91), + [5852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, .production_id = 147), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [5862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(4031), + [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1319), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4187), + [5907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7010), + [5910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6535), + [5913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7012), + [5916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3569), + [5919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4207), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [5932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [5941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(1452), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, .production_id = 128), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 1), + [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 124), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1325), - [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 113), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [6103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(4043), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .dynamic_precedence = 1, .production_id = 17), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), - [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .dynamic_precedence = 1, .production_id = 17), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 17), - [6152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 17), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), - [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1340), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, .production_id = 44), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [6343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, .production_id = 69), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [6419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), - [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 3, .dynamic_precedence = 1, .production_id = 17), - [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 3, .dynamic_precedence = 1, .production_id = 17), - [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .dynamic_precedence = 1, .production_id = 17), - [6467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .dynamic_precedence = 1, .production_id = 17), - [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 17), - [6471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 17), - [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), - [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), - [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), - [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), - [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), - [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), - [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), - [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), - [6563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4269), - [6566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4269), - [6569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), - [6571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(2413), - [6574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(2413), - [6577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4300), - [6580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4274), - [6583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(6932), - [6586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), - [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), - [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), - [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [6640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(3604), - [6643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(3604), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [6658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3341), - [6661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7169), - [6664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6170), - [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7160), - [6670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2413), - [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3337), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), - [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 17), - [6692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 17), - [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 26), - [6696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 26), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, .production_id = 151), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [6078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1328), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 113), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .dynamic_precedence = 1, .production_id = 17), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .dynamic_precedence = 1, .production_id = 17), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 17), + [6159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 17), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, .production_id = 44), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [6391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, .production_id = 69), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 17), + [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 17), + [6465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .dynamic_precedence = 1, .production_id = 17), + [6471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .dynamic_precedence = 1, .production_id = 17), + [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 3, .dynamic_precedence = 1, .production_id = 17), + [6475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 3, .dynamic_precedence = 1, .production_id = 17), + [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), + [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), + [6619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4302), + [6622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4302), + [6625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), + [6627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(2249), + [6630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(2249), + [6633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4297), + [6636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4299), + [6639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(6932), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [6652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3322), + [6655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7169), + [6658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6170), + [6661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7160), + [6664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2249), + [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3326), + [6670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(3569), + [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(3569), + [6676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), [6698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 17), - [6702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 17), - [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 26), - [6706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 26), - [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [6718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), - [6720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4269), - [6723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4269), - [6726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), - [6728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2413), - [6731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2413), - [6734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4274), - [6737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(6932), - [6740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [6744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), - [6752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4), - [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4), - [6756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4387), - [6759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4387), - [6762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4123), - [6765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4123), - [6768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4384), - [6771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(6951), - [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [6776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [6778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(7169), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [6700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4), + [6702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4), + [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 17), + [6706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 17), + [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 17), + [6710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 17), + [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), + [6714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 26), + [6716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 26), + [6718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 26), + [6720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 26), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [6734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), + [6736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4302), + [6739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4302), + [6742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), + [6744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2249), + [6747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2249), + [6750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4299), + [6753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(6932), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [6764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [6766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(7169), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [6775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4385), + [6778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4385), + [6781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4126), + [6784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4126), + [6787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4384), + [6790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(6951), [6793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), [6795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [6799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), - [6807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3604), - [6810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3604), - [6813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(7010), - [6816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [6818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [6834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4264), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), - [6843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1), - [6845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1), - [6847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1), - [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), - [6859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4), - [6861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [6865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [6867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [6869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4390), - [6872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4401), - [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4), - [6877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4), - [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3), - [6881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3), - [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3), - [6885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3), - [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1), - [6889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [6805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [6807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [6809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [6811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3569), + [6814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3569), + [6817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(7010), + [6820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4254), + [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4), + [6825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [6855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [6859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4383), + [6862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4391), + [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4), + [6867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4), + [6869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3), + [6871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3), + [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3), + [6875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3), + [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1), + [6879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1), + [6881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [6885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1), + [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1), + [6889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1), [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5), [6893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [6901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [6910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2413), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [6919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4123), - [6922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4123), - [6925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [6927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [6929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2413), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [6907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [6912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2249), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [6917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2249), + [6920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [6926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4126), + [6929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4126), [6932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), [6934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), - [7022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3604), - [7025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3604), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [6976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3569), + [6979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3569), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), [7032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), - [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 44), - [7108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 44), - [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), - [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), - [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [7128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [7130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [7132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [7134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [7180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), - [7184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [7186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [7190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [7192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), + [7100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 44), + [7102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 44), + [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [7130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [7132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [7136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), + [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [7182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), + [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [7188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [7196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [7234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [7236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [7238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [7240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), - [7246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [7240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [7242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [7246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [7248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), + [7250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), - [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), - [7278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [7280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), @@ -415046,197 +416731,197 @@ static const TSParseActionEntry ts_parse_actions[] = { [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1302), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [7366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1308), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), - [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), - [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), - [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), - [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), - [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), @@ -415249,7 +416934,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 100), [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), [7727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 19), [7729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 19), [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), @@ -415313,7 +416998,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [7848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 4, .dynamic_precedence = 1, .production_id = 17), [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, .dynamic_precedence = 1), [7852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 50), - [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 135), [7858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 135), [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), @@ -415346,7 +417031,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [7915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 19), [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 5), [7919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 81), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), [7923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 81), [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 95), [7927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 95), @@ -415357,8 +417042,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 19), [7939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 19), [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 135), [7949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 135), [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 5, .dynamic_precedence = 1, .production_id = 17), @@ -415366,17 +417051,17 @@ static const TSParseActionEntry ts_parse_actions[] = { [7955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), [7957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), [7987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3), @@ -415384,44 +417069,44 @@ static const TSParseActionEntry ts_parse_actions[] = { [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 54), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 134), [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 71), [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), @@ -415430,69 +417115,69 @@ static const TSParseActionEntry ts_parse_actions[] = { [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 5), [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), [8087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), [8119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1), [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1), - [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), - [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), - [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), - [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), - [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), - [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, .production_id = 48), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), - [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), [8217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4), [8219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 4), @@ -415501,119 +417186,119 @@ static const TSParseActionEntry ts_parse_actions[] = { [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5), [8241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 5), - [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), [8285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 93), SHIFT_REPEAT(4720), [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 93), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 19), [8296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 19), [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), [8302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 95), [8304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 95), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 17), [8332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 17), - [8334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1691), + [8334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1685), [8337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), [8339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(6644), [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), [8344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), [8350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 135), [8352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 135), [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), [8356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), [8392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), [8394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 19), [8402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 19), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), [8430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, .production_id = 127), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, .production_id = 150), [8438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 24), [8440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 24), [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), [8444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 97), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), [8454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 11), [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 11), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), @@ -415621,147 +417306,147 @@ static const TSParseActionEntry ts_parse_actions[] = { [8468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), [8470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(5532), [8473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(5532), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), - [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 75), - [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), [8580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), - [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), - [8622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [8622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7013), [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, .production_id = 27), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), [8634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), [8642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), [8656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3), [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [8662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [8662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), [8732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(5238), [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [8737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(489), + [8737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(878), [8740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [8748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(4509), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [8748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(4511), [8751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(6468), [8754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), [8764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3), [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), @@ -415770,202 +417455,202 @@ static const TSParseActionEntry ts_parse_actions[] = { [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), [8774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), SHIFT_REPEAT(6957), [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [8815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(1867), + [8815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(1847), [8818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), [8828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [8832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), SHIFT_REPEAT(1886), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [8832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), SHIFT_REPEAT(1871), [8835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [8851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(1813), + [8851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(1801), [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), [8856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2), [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), [8876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 3), [8878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 86), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [8908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), SHIFT_REPEAT(1595), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [8908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), SHIFT_REPEAT(1564), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), [8959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1280), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), [8988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), [8994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), [9006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), [9012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(6315), [9015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), [9049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), [9053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, .production_id = 56), [9055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, .production_id = 120), [9057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, .production_id = 54), [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [9061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), SHIFT_REPEAT(3364), + [9061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), SHIFT_REPEAT(3338), [9064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), [9088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), [9108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), SHIFT_REPEAT(5101), [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), [9135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), [9155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(6392), [9158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [9166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1388), + [9166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1415), [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), [9185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 93), SHIFT_REPEAT(5121), @@ -415975,137 +417660,137 @@ static const TSParseActionEntry ts_parse_actions[] = { [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [9218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 93), SHIFT_REPEAT(4228), + [9218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 93), SHIFT_REPEAT(4250), [9221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 93), [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), [9285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2), [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), [9311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, .production_id = 81), [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), - [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), [9351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7122), [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), - [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), [9391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), - [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), - [9401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [9401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), [9403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7184), [9405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), [9411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4), [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), [9443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), [9447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), - [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), [9453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, .production_id = 21), [9455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 81), - [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), - [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), [9467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition_name, 3), @@ -416113,7 +417798,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), [9483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition_name, 4), @@ -416125,7 +417810,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [9495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, .production_id = 47), [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), [9499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, .production_id = 126), - [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), [9505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 2), [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), @@ -416135,7 +417820,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [9521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [9521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 27), [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), @@ -416145,447 +417830,447 @@ static const TSParseActionEntry ts_parse_actions[] = { [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), [9537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), [9539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), - [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), [9545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 75), - [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), [9621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, .production_id = 44), [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), [9771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), [9781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4), [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), [9825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), [9835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), [9895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 105), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), [10003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 140), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), [10051] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), [10085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 105), [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), [10097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 140), [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), - [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), - [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), - [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), - [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), - [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), - [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), - [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), - [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), - [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), [10271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6789), [10274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6844), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), - [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), [10291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6836), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), [10296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6833), [10299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6794), [10302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6732), [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), [10321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6724), [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), [10330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6721), [10333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6654), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), [10346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6624), - [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), - [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), [10383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6619), [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), [10404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6846), [10407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6646), [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), }; diff --git a/test/corpus/mql5.txt b/test/corpus/mql5.txt new file mode 100644 index 0000000..fd15901 --- /dev/null +++ b/test/corpus/mql5.txt @@ -0,0 +1,14 @@ +========================================== +input storage class +========================================== + +int a; +input int b; +input double c; + +--- + +(translation_unit + (declaration (primitive_type) (identifier)) + (declaration (storage_class_specifier) (primitive_type) (identifier)) + (declaration (storage_class_specifier) (primitive_type) (identifier)))